diff --git a/web/public/mtg/importCards.py b/web/public/mtg/importCards.py index 2ae69640..343cba1a 100644 --- a/web/public/mtg/importCards.py +++ b/web/public/mtg/importCards.py @@ -18,10 +18,10 @@ def generate_initial_query(category): elif category == 'wrath': string_query += 'otag%3Asweeper-creature+%28t%3Ainstant+or+t%3Asorcery%29+not%3Aadventure' elif category == 'burn': - string_query += '%28o%3A%2Fdamage+to+them%2F+or+%28o%3Adeals+o%3Adamage+o%3A%2Fcontroller%28%5C.%7C+%29%2F%29' \ - '+or+o%3A%2F~+deals+%28.%7C..%29+damage+to+%28any+target%7C.%2Aplayer%28%5C.%7C+or' \ - '+planeswalker%29%7C.%2Aopponent%28%5C.%7C+or+planeswalker%29%29%2F%29+%28type%3Ainstant+or' \ - '+type%3Asorcery%29+not%3Aadventure' + string_query += '%28c>%3Dr+or+mana>%3Dr%29+%28o%3A%2Fdamage+to+them%2F+or+%28o%3Adeals+o%3Adamage+o%3A' \ + '%2Fcontroller%28%5C.%7C+%29%2F%29+or+o%3A%2F~+deals+%28.%7C..%29+damage+to+%28any+target%7C' \ + '.*player%28%5C.%7C+or+planeswalker%29%7C.*opponent%28%5C.%7C+or+planeswalker%29%29%2F%29' \ + '+%28type%3Ainstant+or+type%3Asorcery%29+not%3Aadventure' # add category string query here string_query += '+-%28set%3Asld+%28%28cn>%3D231+cn<%3D233%29+or+%28cn>%3D321+cn<%3D324%29+or+%28cn>%3D185+cn' \ '<%3D189%29+or+%28cn>%3D138+cn<%3D142%29+or+%28cn>%3D364+cn<%3D368%29+or+cn%3A669+or+cn%3A670%29' \ @@ -44,10 +44,48 @@ def fetch_and_write(category, query, count): response = requests.get(f"{query}").json() time.sleep(0.1) with open('jsons/' + category + str(count) + '.json', 'w') as f: - json.dump(response, f) + json.dump(to_compact_write_form(response), f) return response['has_more'] +def to_compact_write_form(response): + fieldsToUse = ['has_more'] + fieldsInCard = ['name', 'image_uris', 'content_warning', 'flavor_name', 'reprint', 'frame_effects', 'digital', + 'set_type'] + smallJson = dict() + data = [] + # write all fields needed in response + for field in fieldsToUse: + smallJson[field] = response[field] + # write all fields needed in card + for card in response['data']: + write_card = dict() + for field in fieldsInCard: + if field == 'name' and 'card_faces' in card: + write_card['name'] = card['card_faces'][0]['name'] + elif field == 'image_uris': + write_card['image_uris'] = write_image_uris(card['image_uris']) + elif field in card: + write_card[field] = card[field] + data.append(write_card) + smallJson['data'] = data + return smallJson + + +# only write images needed +def write_image_uris(card_image_uris): + image_uris = dict() + if 'normal' in card_image_uris: + image_uris['normal'] = card_image_uris['normal'] + elif 'large' in card_image_uris: + image_uris['normal'] = card_image_uris['large'] + elif 'small' in card_image_uris: + image_uris['normal'] = card_image_uris['small'] + if card_image_uris: + image_uris['art_crop'] = card_image_uris['art_crop'] + return image_uris + + if __name__ == "__main__": for category in allCategories: print(category) diff --git a/web/public/mtg/jsons/beast1.json b/web/public/mtg/jsons/beast1.json index 32439bcc..6a5b26c0 100644 --- a/web/public/mtg/jsons/beast1.json +++ b/web/public/mtg/jsons/beast1.json @@ -1 +1 @@ -{"object": "list", "total_cards": 497, "has_more": true, "next_page": "https://api.scryfall.com/cards/search?format=json&include_extras=true&include_multilingual=false&order=name&page=2&q=-type%3Alegendary+type%3Abeast+-type%3Atoken+-%28set%3Asld+%28%28cn%3E%3D231+cn%3C%3D233%29+or+%28cn%3E%3D321+cn%3C%3D324%29+or+%28cn%3E%3D185+cn%3C%3D189%29+or+%28cn%3E%3D138+cn%3C%3D142%29+or+%28cn%3E%3D364+cn%3C%3D368%29+or+cn%3A669+or+cn%3A670%29%29+-name%3A%2F%5Ea-%2F+not%3Adfc+not%3Asplit+-set%3Acmb2+-set%3Acmb1+-set%3Aplist+-set%3Adbl+-frame%3Aextendedart+language%3Aenglish&unique=art", "data": [{"object": "card", "id": "0d3c0c43-2d6d-49b8-a112-07611a23ae69", "oracle_id": "0a56e2ad-684d-45a7-9145-479d1505bba2", "multiverse_ids": [366290], "mtgo_id": 47571, "mtgo_foil_id": 47572, "tcgplayer_id": 67471, "cardmarket_id": 260051, "name": "Adaptive Snapjaw", "lang": "en", "released_at": "2013-02-01", "uri": "https://api.scryfall.com/cards/0d3c0c43-2d6d-49b8-a112-07611a23ae69", "scryfall_uri": "https://scryfall.com/card/gtc/113/adaptive-snapjaw?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/0/d/0d3c0c43-2d6d-49b8-a112-07611a23ae69.jpg?1561815740", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/d/0d3c0c43-2d6d-49b8-a112-07611a23ae69.jpg?1561815740", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/0/d/0d3c0c43-2d6d-49b8-a112-07611a23ae69.jpg?1561815740", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/0/d/0d3c0c43-2d6d-49b8-a112-07611a23ae69.png?1561815740", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/d/0d3c0c43-2d6d-49b8-a112-07611a23ae69.jpg?1561815740", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/0/d/0d3c0c43-2d6d-49b8-a112-07611a23ae69.jpg?1561815740"}, "mana_cost": "{4}{G}", "cmc": 5.0, "type_line": "Creature \u2014 Lizard Beast", "oracle_text": "Evolve (Whenever a creature enters the battlefield under your control, if that creature has greater power or toughness than this creature, put a +1/+1 counter on this creature.)", "power": "6", "toughness": "2", "colors": ["G"], "color_identity": ["G"], "keywords": ["Evolve"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "035a05f7-e020-4f50-a141-ed16ba704bd2", "set": "gtc", "set_name": "Gatecrash", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/035a05f7-e020-4f50-a141-ed16ba704bd2", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Agtc&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/gtc?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/0d3c0c43-2d6d-49b8-a112-07611a23ae69/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A0a56e2ad-684d-45a7-9145-479d1505bba2&unique=prints", "collector_number": "113", "digital": false, "rarity": "common", "watermark": "simic", "flavor_text": "\"Eh, needs more toad.\"\n\u2014Gulistan, Simic biomancer", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Tomasz Jedruszek", "artist_ids": ["bba69285-2445-4a4b-a847-59397be972ea"], "illustration_id": "44bbb37b-f1e8-44b9-9908-3eafebe2f4b2", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 17510, "prices": {"usd": "0.02", "usd_foil": "0.13", "usd_etched": null, "eur": "0.02", "eur_foil": "0.24", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=366290", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Adaptive+Snapjaw&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Adaptive+Snapjaw&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Adaptive+Snapjaw"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/67471?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Adaptive+Snapjaw&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/47571?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "2a304f7e-0b9e-4ef6-9ad8-34350839f7d9", "oracle_id": "1e276998-9c54-4d68-a901-657853312d06", "multiverse_ids": [522113], "mtgo_id": 90443, "tcgplayer_id": 239949, "cardmarket_id": 566471, "name": "Aeromoeba", "lang": "en", "released_at": "2021-06-18", "uri": "https://api.scryfall.com/cards/2a304f7e-0b9e-4ef6-9ad8-34350839f7d9", "scryfall_uri": "https://scryfall.com/card/mh2/37/aeromoeba?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/2/a/2a304f7e-0b9e-4ef6-9ad8-34350839f7d9.jpg?1626094228", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/a/2a304f7e-0b9e-4ef6-9ad8-34350839f7d9.jpg?1626094228", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/2/a/2a304f7e-0b9e-4ef6-9ad8-34350839f7d9.jpg?1626094228", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/2/a/2a304f7e-0b9e-4ef6-9ad8-34350839f7d9.png?1626094228", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/a/2a304f7e-0b9e-4ef6-9ad8-34350839f7d9.jpg?1626094228", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/2/a/2a304f7e-0b9e-4ef6-9ad8-34350839f7d9.jpg?1626094228"}, "mana_cost": "{3}{U}", "cmc": 4.0, "type_line": "Creature \u2014 Elemental Beast", "oracle_text": "Flying\nDiscard a card: Switch Aeromoeba's power and toughness until end of turn.", "power": "2", "toughness": "4", "colors": ["U"], "color_identity": ["U"], "keywords": ["Flying"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "c1c7eb8c-f205-40ab-a609-767cb296544e", "set": "mh2", "set_name": "Modern Horizons 2", "set_type": "draft_innovation", "set_uri": "https://api.scryfall.com/sets/c1c7eb8c-f205-40ab-a609-767cb296544e", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Amh2&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/mh2?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/2a304f7e-0b9e-4ef6-9ad8-34350839f7d9/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A1e276998-9c54-4d68-a901-657853312d06&unique=prints", "collector_number": "37", "digital": false, "rarity": "common", "flavor_text": "Some clouds heed no wind.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Victor Adame Minguez", "artist_ids": ["bd8f7368-5b10-4554-b6b8-d052c6aca89f"], "illustration_id": "5dcfb9b2-cbd9-4365-ae94-92a04082a220", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 19090, "preview": {"source": "Wizards of the Coast", "source_uri": "https://www.instagram.com/p/CPYw7h5Aw7Y/", "previewed_at": "2021-05-27"}, "prices": {"usd": "0.01", "usd_foil": "0.02", "usd_etched": null, "eur": "0.02", "eur_foil": "0.02", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=522113", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Aeromoeba&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Aeromoeba&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Aeromoeba"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/239949?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Aeromoeba&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/90443?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "b4c8ddc1-d95c-499f-b1d1-f608f8f07b02", "oracle_id": "88aa032d-dc11-4cae-81f3-ce66353963e0", "multiverse_ids": [452871], "mtgo_id": 69615, "arena_id": 68582, "tcgplayer_id": 176678, "cardmarket_id": 364122, "name": "Affectionate Indrik", "lang": "en", "released_at": "2018-10-05", "uri": "https://api.scryfall.com/cards/b4c8ddc1-d95c-499f-b1d1-f608f8f07b02", "scryfall_uri": "https://scryfall.com/card/grn/121/affectionate-indrik?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/b/4/b4c8ddc1-d95c-499f-b1d1-f608f8f07b02.jpg?1572893293", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/4/b4c8ddc1-d95c-499f-b1d1-f608f8f07b02.jpg?1572893293", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/b/4/b4c8ddc1-d95c-499f-b1d1-f608f8f07b02.jpg?1572893293", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/b/4/b4c8ddc1-d95c-499f-b1d1-f608f8f07b02.png?1572893293", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/4/b4c8ddc1-d95c-499f-b1d1-f608f8f07b02.jpg?1572893293", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/b/4/b4c8ddc1-d95c-499f-b1d1-f608f8f07b02.jpg?1572893293"}, "mana_cost": "{5}{G}", "cmc": 6.0, "type_line": "Creature \u2014 Beast", "oracle_text": "When Affectionate Indrik enters the battlefield, you may have it fight target creature you don't control. (Each deals damage equal to its power to the other.)", "power": "4", "toughness": "4", "colors": ["G"], "color_identity": ["G"], "keywords": ["Fight"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "restricted", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "597c6d4a-8212-4903-a6af-12c4ae9e13f0", "set": "grn", "set_name": "Guilds of Ravnica", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/597c6d4a-8212-4903-a6af-12c4ae9e13f0", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Agrn&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/grn?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/b4c8ddc1-d95c-499f-b1d1-f608f8f07b02/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A88aa032d-dc11-4cae-81f3-ce66353963e0&unique=prints", "collector_number": "121", "digital": false, "rarity": "uncommon", "flavor_text": "The problem isn't the indrik's enthusiasm, it's Ravnica's lack of guardrails.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Steve Prescott", "artist_ids": ["a1139fb8-41f5-4a9e-9a74-f662e1a23b35"], "illustration_id": "005a5eae-3b13-4ba2-bf12-779df63efba0", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 14903, "penny_rank": 8558, "prices": {"usd": "0.06", "usd_foil": "0.19", "usd_etched": null, "eur": "0.02", "eur_foil": "0.19", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=452871", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Affectionate+Indrik&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Affectionate+Indrik&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Affectionate+Indrik"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/176678?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Affectionate+Indrik&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/69615?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "ce441759-cd4c-4bcc-925e-08e8b60853c0", "oracle_id": "b221939c-93e7-4ffc-b995-5b67e173ee15", "multiverse_ids": [366402], "mtgo_id": 47819, "mtgo_foil_id": 47820, "tcgplayer_id": 67374, "cardmarket_id": 259849, "name": "Alms Beast", "lang": "en", "released_at": "2013-02-01", "uri": "https://api.scryfall.com/cards/ce441759-cd4c-4bcc-925e-08e8b60853c0", "scryfall_uri": "https://scryfall.com/card/gtc/141/alms-beast?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/c/e/ce441759-cd4c-4bcc-925e-08e8b60853c0.jpg?1561846666", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/e/ce441759-cd4c-4bcc-925e-08e8b60853c0.jpg?1561846666", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/c/e/ce441759-cd4c-4bcc-925e-08e8b60853c0.jpg?1561846666", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/c/e/ce441759-cd4c-4bcc-925e-08e8b60853c0.png?1561846666", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/e/ce441759-cd4c-4bcc-925e-08e8b60853c0.jpg?1561846666", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/c/e/ce441759-cd4c-4bcc-925e-08e8b60853c0.jpg?1561846666"}, "mana_cost": "{2}{W}{B}", "cmc": 4.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Creatures blocking or blocked by Alms Beast have lifelink.", "power": "6", "toughness": "6", "colors": ["B", "W"], "color_identity": ["B", "W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "035a05f7-e020-4f50-a141-ed16ba704bd2", "set": "gtc", "set_name": "Gatecrash", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/035a05f7-e020-4f50-a141-ed16ba704bd2", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Agtc&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/gtc?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/ce441759-cd4c-4bcc-925e-08e8b60853c0/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ab221939c-93e7-4ffc-b995-5b67e173ee15&unique=prints", "collector_number": "141", "digital": false, "rarity": "rare", "watermark": "orzhov", "flavor_text": "Alms-coins are only redeemable at Orzhov businesses.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Dan Scott", "artist_ids": ["f852fa13-137e-40f2-bbc1-0f01df09c0e0"], "illustration_id": "9a9aeaa6-38e0-4f71-8262-4188e539254f", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 20084, "penny_rank": 6077, "prices": {"usd": "0.13", "usd_foil": "0.18", "usd_etched": null, "eur": "0.10", "eur_foil": "0.35", "tix": "0.01"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=366402", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Alms+Beast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Alms+Beast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Alms+Beast"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/67374?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Alms+Beast&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/47819?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "4a2e5279-f28c-4a78-9f8a-16c9f72f8d38", "oracle_id": "8bed1349-4d0a-4544-ba66-c38e72cd2863", "multiverse_ids": [202651], "mtgo_id": 38117, "mtgo_foil_id": 38118, "tcgplayer_id": 36483, "cardmarket_id": 242800, "name": "Alpha Tyrranax", "lang": "en", "released_at": "2010-10-01", "uri": "https://api.scryfall.com/cards/4a2e5279-f28c-4a78-9f8a-16c9f72f8d38", "scryfall_uri": "https://scryfall.com/card/som/109/alpha-tyrranax?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/4/a/4a2e5279-f28c-4a78-9f8a-16c9f72f8d38.jpg?1562817224", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/a/4a2e5279-f28c-4a78-9f8a-16c9f72f8d38.jpg?1562817224", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/4/a/4a2e5279-f28c-4a78-9f8a-16c9f72f8d38.jpg?1562817224", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/4/a/4a2e5279-f28c-4a78-9f8a-16c9f72f8d38.png?1562817224", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/a/4a2e5279-f28c-4a78-9f8a-16c9f72f8d38.jpg?1562817224", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/4/a/4a2e5279-f28c-4a78-9f8a-16c9f72f8d38.jpg?1562817224"}, "mana_cost": "{4}{G}{G}", "cmc": 6.0, "type_line": "Creature \u2014 Dinosaur Beast", "oracle_text": "", "power": "6", "toughness": "5", "colors": ["G"], "color_identity": ["G"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "8f403072-9b22-4e69-8d59-22dc4c97fd8d", "set": "som", "set_name": "Scars of Mirrodin", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/8f403072-9b22-4e69-8d59-22dc4c97fd8d", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Asom&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/som?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/4a2e5279-f28c-4a78-9f8a-16c9f72f8d38/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A8bed1349-4d0a-4544-ba66-c38e72cd2863&unique=prints", "collector_number": "109", "digital": false, "rarity": "common", "watermark": "mirran", "flavor_text": "Hunger seized the tyrranax, and the Sylvok's vision quest ended in disaster.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Dave Kendall", "artist_ids": ["8a5540a8-18c9-4fa9-802c-59d6866114d5"], "illustration_id": "8a64e576-4570-492d-b067-516eedab54df", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 18655, "prices": {"usd": "0.04", "usd_foil": "0.25", "usd_etched": null, "eur": "0.01", "eur_foil": "0.20", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=202651", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Alpha+Tyrranax&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Alpha+Tyrranax&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Alpha+Tyrranax"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/36483?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Alpha+Tyrranax&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/38117?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "33255dfd-f8a9-4a15-aac5-c53dc0257859", "oracle_id": "2cdd85c8-fa60-44ca-bc96-d38f029d2184", "multiverse_ids": [36039], "mtgo_id": 17560, "mtgo_foil_id": 17561, "tcgplayer_id": 10264, "cardmarket_id": 2230, "name": "Anurid Barkripper", "lang": "en", "released_at": "2002-05-27", "uri": "https://api.scryfall.com/cards/33255dfd-f8a9-4a15-aac5-c53dc0257859", "scryfall_uri": "https://scryfall.com/card/jud/104/anurid-barkripper?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/3/3/33255dfd-f8a9-4a15-aac5-c53dc0257859.jpg?1562629272", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/3/33255dfd-f8a9-4a15-aac5-c53dc0257859.jpg?1562629272", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/3/3/33255dfd-f8a9-4a15-aac5-c53dc0257859.jpg?1562629272", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/3/3/33255dfd-f8a9-4a15-aac5-c53dc0257859.png?1562629272", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/3/33255dfd-f8a9-4a15-aac5-c53dc0257859.jpg?1562629272", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/3/3/33255dfd-f8a9-4a15-aac5-c53dc0257859.jpg?1562629272"}, "mana_cost": "{1}{G}{G}", "cmc": 3.0, "type_line": "Creature \u2014 Frog Beast", "oracle_text": "Threshold \u2014 Anurid Barkripper gets +2/+2 as long as seven or more cards are in your graveyard.", "power": "2", "toughness": "2", "colors": ["G"], "color_identity": ["G"], "keywords": ["Threshold"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "cd82de1a-36fd-4618-bfe8-b45532a582d9", "set": "jud", "set_name": "Judgment", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/cd82de1a-36fd-4618-bfe8-b45532a582d9", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ajud&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/jud?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/33255dfd-f8a9-4a15-aac5-c53dc0257859/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A2cdd85c8-fa60-44ca-bc96-d38f029d2184&unique=prints", "collector_number": "104", "digital": false, "rarity": "common", "flavor_text": "When it croaks, so do you.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Randy Gallegos", "artist_ids": ["a5048cc7-438a-4378-98e4-da99b78e1db0"], "illustration_id": "ab8c721f-4e60-410c-93ad-94a2834a8852", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 13389, "penny_rank": 10651, "prices": {"usd": "0.12", "usd_foil": "0.51", "usd_etched": null, "eur": "0.05", "eur_foil": "1.59", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=36039", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Anurid+Barkripper&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Anurid+Barkripper&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Anurid+Barkripper"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/10264?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Anurid+Barkripper&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/17560?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "b09204c7-3e3d-484a-a4f7-da1b818e3884", "oracle_id": "bdecf59c-f8bd-4003-9058-685b70c08837", "multiverse_ids": [35059], "mtgo_id": 17616, "mtgo_foil_id": 17617, "tcgplayer_id": 10187, "cardmarket_id": 2263, "name": "Anurid Brushhopper", "lang": "en", "released_at": "2002-05-27", "uri": "https://api.scryfall.com/cards/b09204c7-3e3d-484a-a4f7-da1b818e3884", "scryfall_uri": "https://scryfall.com/card/jud/137/anurid-brushhopper?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/b/0/b09204c7-3e3d-484a-a4f7-da1b818e3884.jpg?1562631503", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/0/b09204c7-3e3d-484a-a4f7-da1b818e3884.jpg?1562631503", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/b/0/b09204c7-3e3d-484a-a4f7-da1b818e3884.jpg?1562631503", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/b/0/b09204c7-3e3d-484a-a4f7-da1b818e3884.png?1562631503", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/0/b09204c7-3e3d-484a-a4f7-da1b818e3884.jpg?1562631503", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/b/0/b09204c7-3e3d-484a-a4f7-da1b818e3884.jpg?1562631503"}, "mana_cost": "{1}{G}{W}", "cmc": 3.0, "type_line": "Creature \u2014 Frog Beast", "oracle_text": "Discard two cards: Exile Anurid Brushhopper. Return it to the battlefield under its owner's control at the beginning of the next end step.", "power": "3", "toughness": "4", "colors": ["G", "W"], "color_identity": ["G", "W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "cd82de1a-36fd-4618-bfe8-b45532a582d9", "set": "jud", "set_name": "Judgment", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/cd82de1a-36fd-4618-bfe8-b45532a582d9", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ajud&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/jud?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/b09204c7-3e3d-484a-a4f7-da1b818e3884/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Abdecf59c-f8bd-4003-9058-685b70c08837&unique=prints", "collector_number": "137", "digital": false, "rarity": "rare", "flavor_text": "It's so tough it can frighten *itself* into hiding.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Arnie Swekel", "artist_ids": ["af10ecf2-eb82-4100-97b2-6c236b0fa644"], "illustration_id": "b385200d-db22-488e-afed-f370e44a7d5c", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 20889, "penny_rank": 5585, "prices": {"usd": "0.40", "usd_foil": "11.00", "usd_etched": null, "eur": "0.25", "eur_foil": "19.99", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=35059", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Anurid+Brushhopper&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Anurid+Brushhopper&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Anurid+Brushhopper"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/10187?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Anurid+Brushhopper&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/17616?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "9e43d62c-488a-4c8d-b193-bacbf8037761", "oracle_id": "e7dc3d8b-2c79-463d-b862-9f01ccea05fd", "multiverse_ids": [43638], "mtgo_id": 18317, "mtgo_foil_id": 18318, "tcgplayer_id": 10532, "cardmarket_id": 1755, "name": "Anurid Murkdiver", "lang": "en", "released_at": "2002-10-07", "uri": "https://api.scryfall.com/cards/9e43d62c-488a-4c8d-b193-bacbf8037761", "scryfall_uri": "https://scryfall.com/card/ons/124/anurid-murkdiver?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/9/e/9e43d62c-488a-4c8d-b193-bacbf8037761.jpg?1562932427", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/e/9e43d62c-488a-4c8d-b193-bacbf8037761.jpg?1562932427", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/9/e/9e43d62c-488a-4c8d-b193-bacbf8037761.jpg?1562932427", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/9/e/9e43d62c-488a-4c8d-b193-bacbf8037761.png?1562932427", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/e/9e43d62c-488a-4c8d-b193-bacbf8037761.jpg?1562932427", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/9/e/9e43d62c-488a-4c8d-b193-bacbf8037761.jpg?1562932427"}, "mana_cost": "{4}{B}{B}", "cmc": 6.0, "type_line": "Creature \u2014 Zombie Frog Beast", "oracle_text": "Swampwalk (This creature can't be blocked as long as defending player controls a Swamp.)", "power": "4", "toughness": "3", "colors": ["B"], "color_identity": ["B"], "keywords": ["Landwalk", "Swampwalk"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "914a6c6d-cb3b-45e8-a2db-9978a2339faf", "set": "ons", "set_name": "Onslaught", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/914a6c6d-cb3b-45e8-a2db-9978a2339faf", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aons&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ons?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/9e43d62c-488a-4c8d-b193-bacbf8037761/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ae7dc3d8b-2c79-463d-b862-9f01ccea05fd&unique=prints", "collector_number": "124", "digital": false, "rarity": "common", "flavor_text": "Aphetto's swamps are alive with the dead.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Dany Orizio", "artist_ids": ["fcd5ea36-64e0-4af0-992a-3c68a34a400f"], "illustration_id": "3f1bce1c-c43d-45bd-bde6-bd1cf4c62e34", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 17788, "prices": {"usd": "0.06", "usd_foil": "0.29", "usd_etched": null, "eur": "0.02", "eur_foil": "0.15", "tix": "0.04"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=43638", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Anurid+Murkdiver&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Anurid+Murkdiver&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Anurid+Murkdiver"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/10532?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Anurid+Murkdiver&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/18317?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "21a21190-3c05-40fe-9310-493ed0f9e42e", "oracle_id": "8d4d70c4-0490-4239-ac8f-dd1d1a008f08", "multiverse_ids": [33687], "mtgo_id": 17303, "mtgo_foil_id": 17304, "tcgplayer_id": 9761, "cardmarket_id": 2388, "name": "Anurid Scavenger", "lang": "en", "released_at": "2002-02-04", "uri": "https://api.scryfall.com/cards/21a21190-3c05-40fe-9310-493ed0f9e42e", "scryfall_uri": "https://scryfall.com/card/tor/119/anurid-scavenger?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/2/1/21a21190-3c05-40fe-9310-493ed0f9e42e.jpg?1562628898", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/1/21a21190-3c05-40fe-9310-493ed0f9e42e.jpg?1562628898", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/2/1/21a21190-3c05-40fe-9310-493ed0f9e42e.jpg?1562628898", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/2/1/21a21190-3c05-40fe-9310-493ed0f9e42e.png?1562628898", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/1/21a21190-3c05-40fe-9310-493ed0f9e42e.jpg?1562628898", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/2/1/21a21190-3c05-40fe-9310-493ed0f9e42e.jpg?1562628898"}, "mana_cost": "{2}{G}", "cmc": 3.0, "type_line": "Creature \u2014 Frog Beast", "oracle_text": "Protection from black\nAt the beginning of your upkeep, sacrifice Anurid Scavenger unless you put a card from your graveyard on the bottom of your library.", "power": "3", "toughness": "3", "colors": ["G"], "color_identity": ["G"], "keywords": ["Protection"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "restricted", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "e0b3fda1-a6ca-4996-849b-08b463d39484", "set": "tor", "set_name": "Torment", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/e0b3fda1-a6ca-4996-849b-08b463d39484", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ator&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/tor?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/21a21190-3c05-40fe-9310-493ed0f9e42e/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A8d4d70c4-0490-4239-ac8f-dd1d1a008f08&unique=prints", "collector_number": "119", "digital": false, "rarity": "uncommon", "flavor_text": "Krosa's topmost bottom feeder.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Bob Petillo", "artist_ids": ["a2e47e0e-68e6-4b7a-b91e-0ded197b94d1"], "illustration_id": "1b4ef165-5f20-435c-80e3-87ef8248f3b8", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 12193, "penny_rank": 12260, "prices": {"usd": "0.23", "usd_foil": "1.55", "usd_etched": null, "eur": "0.05", "eur_foil": "1.50", "tix": "0.04"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=33687", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Anurid+Scavenger&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Anurid+Scavenger&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Anurid+Scavenger"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/9761?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Anurid+Scavenger&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/17303?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "3636a9f8-d1d7-4452-8a53-788b514fdb97", "oracle_id": "fd275ea7-9ccc-4148-9b33-392a612486dd", "multiverse_ids": [36453], "mtgo_id": 17592, "mtgo_foil_id": 17593, "tcgplayer_id": 10265, "cardmarket_id": 2231, "name": "Anurid Swarmsnapper", "lang": "en", "released_at": "2002-05-27", "uri": "https://api.scryfall.com/cards/3636a9f8-d1d7-4452-8a53-788b514fdb97", "scryfall_uri": "https://scryfall.com/card/jud/105/anurid-swarmsnapper?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/3/6/3636a9f8-d1d7-4452-8a53-788b514fdb97.jpg?1562629337", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/6/3636a9f8-d1d7-4452-8a53-788b514fdb97.jpg?1562629337", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/3/6/3636a9f8-d1d7-4452-8a53-788b514fdb97.jpg?1562629337", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/3/6/3636a9f8-d1d7-4452-8a53-788b514fdb97.png?1562629337", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/6/3636a9f8-d1d7-4452-8a53-788b514fdb97.jpg?1562629337", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/3/6/3636a9f8-d1d7-4452-8a53-788b514fdb97.jpg?1562629337"}, "mana_cost": "{2}{G}", "cmc": 3.0, "type_line": "Creature \u2014 Frog Beast", "oracle_text": "Reach (This creature can block creatures with flying.)\n{1}{G}: Anurid Swarmsnapper can block an additional creature this turn.", "power": "1", "toughness": "4", "colors": ["G"], "color_identity": ["G"], "keywords": ["Reach"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "restricted", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "cd82de1a-36fd-4618-bfe8-b45532a582d9", "set": "jud", "set_name": "Judgment", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/cd82de1a-36fd-4618-bfe8-b45532a582d9", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ajud&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/jud?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/3636a9f8-d1d7-4452-8a53-788b514fdb97/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Afd275ea7-9ccc-4148-9b33-392a612486dd&unique=prints", "collector_number": "105", "digital": false, "rarity": "uncommon", "flavor_text": "Anurids have the problem of airborne invaders licked.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "John Matson", "artist_ids": ["a1685587-4b55-446b-b420-c37b202ed3f1"], "illustration_id": "d94f5bba-b7cd-4c68-824f-77927ece99f1", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 12273, "prices": {"usd": "0.24", "usd_foil": "0.86", "usd_etched": null, "eur": "0.05", "eur_foil": "0.50", "tix": "0.06"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=36453", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Anurid+Swarmsnapper&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Anurid+Swarmsnapper&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Anurid+Swarmsnapper"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/10265?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Anurid+Swarmsnapper&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/17592?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "1243552a-ca57-42ce-817e-d6268fc673e0", "oracle_id": "55de434c-0fb9-4127-81b6-47c1c0b088fe", "multiverse_ids": [34465], "mtgo_id": 17119, "mtgo_foil_id": 17120, "tcgplayer_id": 9719, "cardmarket_id": 2293, "name": "Aquamoeba", "lang": "en", "released_at": "2002-02-04", "uri": "https://api.scryfall.com/cards/1243552a-ca57-42ce-817e-d6268fc673e0", "scryfall_uri": "https://scryfall.com/card/tor/24/aquamoeba?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/1/2/1243552a-ca57-42ce-817e-d6268fc673e0.jpg?1562628647", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/2/1243552a-ca57-42ce-817e-d6268fc673e0.jpg?1562628647", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/1/2/1243552a-ca57-42ce-817e-d6268fc673e0.jpg?1562628647", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/1/2/1243552a-ca57-42ce-817e-d6268fc673e0.png?1562628647", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/2/1243552a-ca57-42ce-817e-d6268fc673e0.jpg?1562628647", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/1/2/1243552a-ca57-42ce-817e-d6268fc673e0.jpg?1562628647"}, "mana_cost": "{1}{U}", "cmc": 2.0, "type_line": "Creature \u2014 Elemental Beast", "oracle_text": "Discard a card: Switch Aquamoeba's power and toughness until end of turn.", "power": "1", "toughness": "3", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "e0b3fda1-a6ca-4996-849b-08b463d39484", "set": "tor", "set_name": "Torment", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/e0b3fda1-a6ca-4996-849b-08b463d39484", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ator&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/tor?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/1243552a-ca57-42ce-817e-d6268fc673e0/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A55de434c-0fb9-4127-81b6-47c1c0b088fe&unique=prints", "collector_number": "24", "digital": false, "rarity": "common", "flavor_text": "Some tides need no moon.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Arnie Swekel", "artist_ids": ["af10ecf2-eb82-4100-97b2-6c236b0fa644"], "illustration_id": "71bab8db-54a8-4a90-b79b-8a5dc28a1851", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 16982, "penny_rank": 3124, "prices": {"usd": "0.13", "usd_foil": "2.92", "usd_etched": null, "eur": "0.20", "eur_foil": "3.30", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=34465", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Aquamoeba&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Aquamoeba&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Aquamoeba"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/9719?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Aquamoeba&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/17119?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "af643949-7a9b-4195-8ab8-d43b1928b85a", "oracle_id": "3517abe3-eb18-49af-9f1c-b372d2039d99", "multiverse_ids": [270361], "mtgo_id": 46273, "mtgo_foil_id": 46274, "tcgplayer_id": 66519, "cardmarket_id": 258406, "name": "Aquus Steed", "lang": "en", "released_at": "2012-10-05", "uri": "https://api.scryfall.com/cards/af643949-7a9b-4195-8ab8-d43b1928b85a", "scryfall_uri": "https://scryfall.com/card/rtr/29/aquus-steed?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/a/f/af643949-7a9b-4195-8ab8-d43b1928b85a.jpg?1562791584", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/f/af643949-7a9b-4195-8ab8-d43b1928b85a.jpg?1562791584", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/a/f/af643949-7a9b-4195-8ab8-d43b1928b85a.jpg?1562791584", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/a/f/af643949-7a9b-4195-8ab8-d43b1928b85a.png?1562791584", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/f/af643949-7a9b-4195-8ab8-d43b1928b85a.jpg?1562791584", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/a/f/af643949-7a9b-4195-8ab8-d43b1928b85a.jpg?1562791584"}, "mana_cost": "{3}{U}", "cmc": 4.0, "type_line": "Creature \u2014 Beast", "oracle_text": "{2}{U}, {T}: Target creature gets -2/-0 until end of turn.", "power": "1", "toughness": "3", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "restricted", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "80b2374d-c5f1-403e-9772-f6c806fd275e", "set": "rtr", "set_name": "Return to Ravnica", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/80b2374d-c5f1-403e-9772-f6c806fd275e", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Artr&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/rtr?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/af643949-7a9b-4195-8ab8-d43b1928b85a/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A3517abe3-eb18-49af-9f1c-b372d2039d99&unique=prints", "collector_number": "29", "digital": false, "rarity": "uncommon", "flavor_text": "In water, it's as graceful as a dolphin. On land, it darts and jerks so unpredictably that few can ride it for long.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Warren Mahy", "artist_ids": ["002c739e-aa1f-4c1d-921b-37cb2d1b1c5b"], "illustration_id": "ba585d7a-18ea-43b3-b22e-3ffa01093b91", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 22909, "prices": {"usd": "0.04", "usd_foil": "0.21", "usd_etched": null, "eur": "0.02", "eur_foil": "0.21", "tix": "0.04"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=270361", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Aquus+Steed&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Aquus+Steed&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Aquus+Steed"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/66519?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Aquus+Steed&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/46273?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "66aed11a-0831-4619-931f-7dfded999c66", "oracle_id": "75c81ce4-ca1d-464a-bb39-e568f8ebf71f", "multiverse_ids": [391792], "mtgo_id": 55400, "mtgo_foil_id": 55401, "tcgplayer_id": 95286, "cardmarket_id": 271700, "name": "Arashin War Beast", "lang": "en", "released_at": "2015-01-23", "uri": "https://api.scryfall.com/cards/66aed11a-0831-4619-931f-7dfded999c66", "scryfall_uri": "https://scryfall.com/card/frf/123/arashin-war-beast?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/6/6/66aed11a-0831-4619-931f-7dfded999c66.jpg?1562826029", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/6/66aed11a-0831-4619-931f-7dfded999c66.jpg?1562826029", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/6/6/66aed11a-0831-4619-931f-7dfded999c66.jpg?1562826029", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/6/6/66aed11a-0831-4619-931f-7dfded999c66.png?1562826029", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/6/66aed11a-0831-4619-931f-7dfded999c66.jpg?1562826029", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/6/6/66aed11a-0831-4619-931f-7dfded999c66.jpg?1562826029"}, "mana_cost": "{5}{G}{G}", "cmc": 7.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Whenever Arashin War Beast deals combat damage to one or more blocking creatures, manifest the top card of your library. (Put it onto the battlefield face down as a 2/2 creature. Turn it face up any time for its mana cost if it's a creature card.)", "power": "6", "toughness": "6", "colors": ["G"], "color_identity": ["G"], "keywords": ["Manifest"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "restricted", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "7bb5cb2b-081a-4c8c-b7e1-494046e6baa1", "set": "frf", "set_name": "Fate Reforged", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/7bb5cb2b-081a-4c8c-b7e1-494046e6baa1", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Afrf&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/frf?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/66aed11a-0831-4619-931f-7dfded999c66/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A75c81ce4-ca1d-464a-bb39-e568f8ebf71f&unique=prints", "collector_number": "123", "digital": false, "rarity": "uncommon", "watermark": "abzan", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Eric Deschamps", "artist_ids": ["37970e22-9cee-44c1-af44-5ee27cf26b76"], "illustration_id": "9e537d0c-ca98-4a8c-ace6-916acda13c0a", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 18144, "penny_rank": 11983, "prices": {"usd": "0.04", "usd_foil": "0.12", "usd_etched": null, "eur": "0.02", "eur_foil": "0.15", "tix": "0.05"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=391792", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Arashin+War+Beast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Arashin+War+Beast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Arashin+War+Beast"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/95286?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Arashin+War+Beast&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/55400?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "70fd6e2c-201d-436b-ad54-c9403295ec85", "oracle_id": "75c81ce4-ca1d-464a-bb39-e568f8ebf71f", "multiverse_ids": [394067], "tcgplayer_id": 95587, "cardmarket_id": 272048, "name": "Arashin War Beast", "lang": "en", "released_at": "2015-01-17", "uri": "https://api.scryfall.com/cards/70fd6e2c-201d-436b-ad54-c9403295ec85", "scryfall_uri": "https://scryfall.com/card/ugin/123/arashin-war-beast?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/7/0/70fd6e2c-201d-436b-ad54-c9403295ec85.jpg?1562634168", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/0/70fd6e2c-201d-436b-ad54-c9403295ec85.jpg?1562634168", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/7/0/70fd6e2c-201d-436b-ad54-c9403295ec85.jpg?1562634168", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/7/0/70fd6e2c-201d-436b-ad54-c9403295ec85.png?1562634168", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/0/70fd6e2c-201d-436b-ad54-c9403295ec85.jpg?1562634168", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/7/0/70fd6e2c-201d-436b-ad54-c9403295ec85.jpg?1562634168"}, "mana_cost": "{5}{G}{G}", "cmc": 7.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Whenever Arashin War Beast deals combat damage to one or more blocking creatures, manifest the top card of your library. (Put it onto the battlefield face down as a 2/2 creature. Turn it face up any time for its mana cost if it's a creature card.)", "power": "6", "toughness": "6", "colors": ["G"], "color_identity": ["G"], "keywords": ["Manifest"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "restricted", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": true, "reprint": true, "variation": false, "set_id": "fc7ea025-628e-45f4-9e0b-73681b1f68b7", "set": "ugin", "set_name": "Ugin's Fate", "set_type": "promo", "set_uri": "https://api.scryfall.com/sets/fc7ea025-628e-45f4-9e0b-73681b1f68b7", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Augin&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ugin?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/70fd6e2c-201d-436b-ad54-c9403295ec85/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A75c81ce4-ca1d-464a-bb39-e568f8ebf71f&unique=prints", "collector_number": "123", "digital": false, "rarity": "uncommon", "watermark": "abzan", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Eric Deschamps", "artist_ids": ["37970e22-9cee-44c1-af44-5ee27cf26b76"], "illustration_id": "9d84b4f4-e1b6-4eb9-bfee-a04a82d74e5f", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "promo_types": ["setpromo"], "edhrec_rank": 18144, "penny_rank": 11983, "prices": {"usd": "0.16", "usd_foil": null, "usd_etched": null, "eur": "0.15", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=394067", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Arashin+War+Beast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Arashin+War+Beast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Arashin+War+Beast"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/95587?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Arashin+War+Beast&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Arashin+War+Beast&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "788b9d55-6679-4fcc-a3af-11d31e477421", "oracle_id": "a3f35e0f-bf7a-42bf-b612-ac3af3a33727", "multiverse_ids": [417715], "mtgo_id": 61731, "mtgo_foil_id": 61732, "tcgplayer_id": 122707, "cardmarket_id": 292510, "name": "Arborback Stomper", "lang": "en", "released_at": "2016-09-30", "uri": "https://api.scryfall.com/cards/788b9d55-6679-4fcc-a3af-11d31e477421", "scryfall_uri": "https://scryfall.com/card/kld/142/arborback-stomper?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/7/8/788b9d55-6679-4fcc-a3af-11d31e477421.jpg?1576382341", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/8/788b9d55-6679-4fcc-a3af-11d31e477421.jpg?1576382341", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/7/8/788b9d55-6679-4fcc-a3af-11d31e477421.jpg?1576382341", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/7/8/788b9d55-6679-4fcc-a3af-11d31e477421.png?1576382341", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/8/788b9d55-6679-4fcc-a3af-11d31e477421.jpg?1576382341", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/7/8/788b9d55-6679-4fcc-a3af-11d31e477421.jpg?1576382341"}, "mana_cost": "{3}{G}{G}", "cmc": 5.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Trample\nWhen Arborback Stomper enters the battlefield, you gain 5 life.", "power": "5", "toughness": "4", "colors": ["G"], "color_identity": ["G"], "keywords": ["Trample"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "restricted", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "d667e468-be8f-411f-a030-473d148deb74", "set": "kld", "set_name": "Kaladesh", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/d667e468-be8f-411f-a030-473d148deb74", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Akld&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/kld?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/788b9d55-6679-4fcc-a3af-11d31e477421/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aa3f35e0f-bf7a-42bf-b612-ac3af3a33727&unique=prints", "collector_number": "142", "digital": false, "rarity": "uncommon", "flavor_text": "The power of aether draws creatures to it like a magnetic force, and those that are touched by it are forever altered.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Dan Scott", "artist_ids": ["f852fa13-137e-40f2-bbc1-0f01df09c0e0"], "illustration_id": "a55a4a34-89c8-4a9f-b8c3-ed61211b793a", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 14933, "penny_rank": 583, "prices": {"usd": "0.05", "usd_foil": "0.24", "usd_etched": null, "eur": "0.03", "eur_foil": "0.14", "tix": "0.04"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=417715", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Arborback+Stomper&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Arborback+Stomper&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Arborback+Stomper"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/122707?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Arborback+Stomper&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/61731?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "c4a5f86f-44a8-4735-909a-770586d33a15", "oracle_id": "d18a0815-59d3-4667-b52b-9acda741215e", "multiverse_ids": [461076], "mtgo_id": 71904, "arena_id": 69600, "tcgplayer_id": 188872, "cardmarket_id": 372529, "name": "Arboreal Grazer", "lang": "en", "released_at": "2019-05-03", "uri": "https://api.scryfall.com/cards/c4a5f86f-44a8-4735-909a-770586d33a15", "scryfall_uri": "https://scryfall.com/card/war/149/arboreal-grazer?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/c/4/c4a5f86f-44a8-4735-909a-770586d33a15.jpg?1586962989", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/4/c4a5f86f-44a8-4735-909a-770586d33a15.jpg?1586962989", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/c/4/c4a5f86f-44a8-4735-909a-770586d33a15.jpg?1586962989", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/c/4/c4a5f86f-44a8-4735-909a-770586d33a15.png?1586962989", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/4/c4a5f86f-44a8-4735-909a-770586d33a15.jpg?1586962989", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/c/4/c4a5f86f-44a8-4735-909a-770586d33a15.jpg?1586962989"}, "mana_cost": "{G}", "cmc": 1.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Reach\nWhen Arboreal Grazer enters the battlefield, you may put a land card from your hand onto the battlefield tapped.", "power": "0", "toughness": "3", "colors": ["G"], "color_identity": ["G"], "keywords": ["Reach"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "ee044f0b-e101-4ead-8d0e-aa510aad4277", "set": "war", "set_name": "War of the Spark", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/ee044f0b-e101-4ead-8d0e-aa510aad4277", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Awar&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/war?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/c4a5f86f-44a8-4735-909a-770586d33a15/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ad18a0815-59d3-4667-b52b-9acda741215e&unique=prints", "collector_number": "149", "digital": false, "rarity": "common", "flavor_text": "\"We fight to stop a tyrant, but we also fight for the gentle creatures who have no concept of what befalls their world.\"\n\u2014Vivien Reid", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Jason Rainville", "artist_ids": ["6ed7e669-579b-443d-b223-e5cbcb2a7483"], "illustration_id": "813dd35a-2baa-44be-8688-504490e481a3", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 4146, "penny_rank": 159, "preview": {"source": "Luis Scott-Vargas", "source_uri": "https://twitter.com/lsv/status/1118908041347231745", "previewed_at": "2019-04-18"}, "prices": {"usd": "0.17", "usd_foil": "15.97", "usd_etched": null, "eur": "0.05", "eur_foil": "15.95", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=461076", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Arboreal+Grazer&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Arboreal+Grazer&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Arboreal+Grazer"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/188872?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Arboreal+Grazer&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/71904?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "a2f33f9d-dffd-4742-92c6-be7fe6463dca", "oracle_id": "4bd7b380-ed4b-46a1-8211-1c4b651a52c6", "multiverse_ids": [46101], "mtgo_id": 20389, "mtgo_foil_id": 20390, "tcgplayer_id": 11614, "cardmarket_id": 313, "name": "Arcbound Hybrid", "lang": "en", "released_at": "2004-02-06", "uri": "https://api.scryfall.com/cards/a2f33f9d-dffd-4742-92c6-be7fe6463dca", "scryfall_uri": "https://scryfall.com/card/dst/97/arcbound-hybrid?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/a/2/a2f33f9d-dffd-4742-92c6-be7fe6463dca.jpg?1562638550", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/2/a2f33f9d-dffd-4742-92c6-be7fe6463dca.jpg?1562638550", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/a/2/a2f33f9d-dffd-4742-92c6-be7fe6463dca.jpg?1562638550", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/a/2/a2f33f9d-dffd-4742-92c6-be7fe6463dca.png?1562638550", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/2/a2f33f9d-dffd-4742-92c6-be7fe6463dca.jpg?1562638550", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/a/2/a2f33f9d-dffd-4742-92c6-be7fe6463dca.jpg?1562638550"}, "mana_cost": "{4}", "cmc": 4.0, "type_line": "Artifact Creature \u2014 Beast", "oracle_text": "Haste\nModular 2 (This creature enters the battlefield with two +1/+1 counters on it. When it dies, you may put its +1/+1 counters on target artifact creature.)", "power": "0", "toughness": "0", "colors": [], "color_identity": [], "keywords": ["Modular", "Haste"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "e29cb2dd-1345-4032-abfe-e52e8c8ce074", "set": "dst", "set_name": "Darksteel", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/e29cb2dd-1345-4032-abfe-e52e8c8ce074", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Adst&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/dst?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/a2f33f9d-dffd-4742-92c6-be7fe6463dca/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A4bd7b380-ed4b-46a1-8211-1c4b651a52c6&unique=prints", "collector_number": "97", "digital": false, "rarity": "common", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Alan Pollack", "artist_ids": ["70c20ea3-5ad6-4082-a337-6e994ae5828e"], "illustration_id": "335dddf2-d140-49b2-a204-e9307da381c4", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 8685, "penny_rank": 5675, "prices": {"usd": "0.12", "usd_foil": "3.01", "usd_etched": null, "eur": "0.05", "eur_foil": "0.22", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=46101", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Arcbound+Hybrid&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Arcbound+Hybrid&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Arcbound+Hybrid"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/11614?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Arcbound+Hybrid&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/20389?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "7ff3241b-49ba-4243-b8fc-fef600836c8c", "oracle_id": "fd6ffa00-170b-46d2-810a-f255de62b9d7", "multiverse_ids": [46130], "mtgo_id": 20393, "mtgo_foil_id": 20394, "tcgplayer_id": 11615, "cardmarket_id": 314, "name": "Arcbound Lancer", "lang": "en", "released_at": "2004-02-06", "uri": "https://api.scryfall.com/cards/7ff3241b-49ba-4243-b8fc-fef600836c8c", "scryfall_uri": "https://scryfall.com/card/dst/98/arcbound-lancer?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/7/f/7ff3241b-49ba-4243-b8fc-fef600836c8c.jpg?1562637774", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/f/7ff3241b-49ba-4243-b8fc-fef600836c8c.jpg?1562637774", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/7/f/7ff3241b-49ba-4243-b8fc-fef600836c8c.jpg?1562637774", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/7/f/7ff3241b-49ba-4243-b8fc-fef600836c8c.png?1562637774", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/f/7ff3241b-49ba-4243-b8fc-fef600836c8c.jpg?1562637774", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/7/f/7ff3241b-49ba-4243-b8fc-fef600836c8c.jpg?1562637774"}, "mana_cost": "{7}", "cmc": 7.0, "type_line": "Artifact Creature \u2014 Beast", "oracle_text": "First strike\nModular 4 (This creature enters the battlefield with four +1/+1 counters on it. When it dies, you may put its +1/+1 counters on target artifact creature.)", "power": "0", "toughness": "0", "colors": [], "color_identity": [], "keywords": ["First strike", "Modular"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "restricted", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "e29cb2dd-1345-4032-abfe-e52e8c8ce074", "set": "dst", "set_name": "Darksteel", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/e29cb2dd-1345-4032-abfe-e52e8c8ce074", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Adst&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/dst?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/7ff3241b-49ba-4243-b8fc-fef600836c8c/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Afd6ffa00-170b-46d2-810a-f255de62b9d7&unique=prints", "collector_number": "98", "digital": false, "rarity": "uncommon", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "John Avon", "artist_ids": ["798f3932-30e0-4420-aa3f-db4d613f89ca"], "illustration_id": "de4cc41f-16a3-4b05-80ad-e6103214f0e3", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 10648, "penny_rank": 4645, "prices": {"usd": "0.24", "usd_foil": "1.99", "usd_etched": null, "eur": "0.14", "eur_foil": "1.00", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=46130", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Arcbound+Lancer&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Arcbound+Lancer&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Arcbound+Lancer"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/11615?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Arcbound+Lancer&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/20393?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "c0c33a92-5621-40b4-a3a2-b67893edbc01", "oracle_id": "62e7e7b1-9887-4d15-b0e5-a8ddc711bd88", "multiverse_ids": [370510], "mtgo_id": 48872, "mtgo_foil_id": 48873, "tcgplayer_id": 68267, "cardmarket_id": 261952, "name": "Arcbound Ravager", "lang": "en", "released_at": "2013-06-07", "uri": "https://api.scryfall.com/cards/c0c33a92-5621-40b4-a3a2-b67893edbc01", "scryfall_uri": "https://scryfall.com/card/mma/198/arcbound-ravager?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/c/0/c0c33a92-5621-40b4-a3a2-b67893edbc01.jpg?1561968545", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/0/c0c33a92-5621-40b4-a3a2-b67893edbc01.jpg?1561968545", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/c/0/c0c33a92-5621-40b4-a3a2-b67893edbc01.jpg?1561968545", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/c/0/c0c33a92-5621-40b4-a3a2-b67893edbc01.png?1561968545", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/0/c0c33a92-5621-40b4-a3a2-b67893edbc01.jpg?1561968545", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/c/0/c0c33a92-5621-40b4-a3a2-b67893edbc01.jpg?1561968545"}, "mana_cost": "{2}", "cmc": 2.0, "type_line": "Artifact Creature \u2014 Beast", "oracle_text": "Sacrifice an artifact: Put a +1/+1 counter on Arcbound Ravager.\nModular 1 (This creature enters the battlefield with a +1/+1 counter on it. When it dies, you may put its +1/+1 counters on target artifact creature.)", "power": "0", "toughness": "0", "colors": [], "color_identity": [], "keywords": ["Modular"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "0b7020f2-336d-4706-9ce6-f6710b9ebd5c", "set": "mma", "set_name": "Modern Masters", "set_type": "masters", "set_uri": "https://api.scryfall.com/sets/0b7020f2-336d-4706-9ce6-f6710b9ebd5c", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Amma&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/mma?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/c0c33a92-5621-40b4-a3a2-b67893edbc01/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A62e7e7b1-9887-4d15-b0e5-a8ddc711bd88&unique=prints", "collector_number": "198", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Kev Walker", "artist_ids": ["f366a0ee-a0cd-466d-ba6a-90058c7a31a6"], "illustration_id": "a90e5e6d-afa4-4cdc-82fe-23901406f7c0", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 3446, "penny_rank": 226, "prices": {"usd": "14.61", "usd_foil": "27.23", "usd_etched": null, "eur": "10.99", "eur_foil": "17.50", "tix": "0.20"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=370510", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Arcbound+Ravager&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Arcbound+Ravager&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Arcbound+Ravager"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/68267?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Arcbound+Ravager&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/48872?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "72c1a731-7854-42b1-8719-ac3c2a269c1f", "oracle_id": "62e7e7b1-9887-4d15-b0e5-a8ddc711bd88", "multiverse_ids": [50943], "mtgo_id": 20597, "mtgo_foil_id": 20598, "tcgplayer_id": 11617, "cardmarket_id": 316, "name": "Arcbound Ravager", "lang": "en", "released_at": "2004-02-06", "uri": "https://api.scryfall.com/cards/72c1a731-7854-42b1-8719-ac3c2a269c1f", "scryfall_uri": "https://scryfall.com/card/dst/100/arcbound-ravager?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/7/2/72c1a731-7854-42b1-8719-ac3c2a269c1f.jpg?1562637545", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/2/72c1a731-7854-42b1-8719-ac3c2a269c1f.jpg?1562637545", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/7/2/72c1a731-7854-42b1-8719-ac3c2a269c1f.jpg?1562637545", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/7/2/72c1a731-7854-42b1-8719-ac3c2a269c1f.png?1562637545", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/2/72c1a731-7854-42b1-8719-ac3c2a269c1f.jpg?1562637545", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/7/2/72c1a731-7854-42b1-8719-ac3c2a269c1f.jpg?1562637545"}, "mana_cost": "{2}", "cmc": 2.0, "type_line": "Artifact Creature \u2014 Beast", "oracle_text": "Sacrifice an artifact: Put a +1/+1 counter on Arcbound Ravager.\nModular 1 (This creature enters the battlefield with a +1/+1 counter on it. When it dies, you may put its +1/+1 counters on target artifact creature.)", "power": "0", "toughness": "0", "colors": [], "color_identity": [], "keywords": ["Modular"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "e29cb2dd-1345-4032-abfe-e52e8c8ce074", "set": "dst", "set_name": "Darksteel", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/e29cb2dd-1345-4032-abfe-e52e8c8ce074", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Adst&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/dst?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/72c1a731-7854-42b1-8719-ac3c2a269c1f/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A62e7e7b1-9887-4d15-b0e5-a8ddc711bd88&unique=prints", "collector_number": "100", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Carl Critchlow", "artist_ids": ["17948f16-611a-44b8-8d10-9895a0bdfff1"], "illustration_id": "168fa025-e223-4f1b-981d-abe8b1926888", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 3446, "penny_rank": 226, "prices": {"usd": "15.38", "usd_foil": "106.92", "usd_etched": null, "eur": "9.75", "eur_foil": "54.00", "tix": "0.05"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=50943", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Arcbound+Ravager&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Arcbound+Ravager&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Arcbound+Ravager"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/11617?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Arcbound+Ravager&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/20597?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "6a898fbf-5c73-4a50-8bf5-126051747659", "oracle_id": "62e7e7b1-9887-4d15-b0e5-a8ddc711bd88", "multiverse_ids": [485303], "tcgplayer_id": 214892, "cardmarket_id": 464559, "name": "Arcbound Ravager", "lang": "en", "released_at": "2020-06-02", "uri": "https://api.scryfall.com/cards/6a898fbf-5c73-4a50-8bf5-126051747659", "scryfall_uri": "https://scryfall.com/card/sld/56/arcbound-ravager?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/6/a/6a898fbf-5c73-4a50-8bf5-126051747659.jpg?1599332547", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/a/6a898fbf-5c73-4a50-8bf5-126051747659.jpg?1599332547", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/6/a/6a898fbf-5c73-4a50-8bf5-126051747659.jpg?1599332547", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/6/a/6a898fbf-5c73-4a50-8bf5-126051747659.png?1599332547", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/a/6a898fbf-5c73-4a50-8bf5-126051747659.jpg?1599332547", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/6/a/6a898fbf-5c73-4a50-8bf5-126051747659.jpg?1599332547"}, "mana_cost": "{2}", "cmc": 2.0, "type_line": "Artifact Creature \u2014 Beast", "oracle_text": "Sacrifice an artifact: Put a +1/+1 counter on Arcbound Ravager.\nModular 1 (This creature enters the battlefield with a +1/+1 counter on it. When it dies, you may put its +1/+1 counters on target artifact creature.)", "power": "0", "toughness": "0", "colors": [], "color_identity": [], "keywords": ["Modular"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": true, "nonfoil": false, "finishes": ["foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "4d92a8a7-ccb0-437d-abdc-9d70fc5ed672", "set": "sld", "set_name": "Secret Lair Drop", "set_type": "box", "set_uri": "https://api.scryfall.com/sets/4d92a8a7-ccb0-437d-abdc-9d70fc5ed672", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Asld&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/sld?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/6a898fbf-5c73-4a50-8bf5-126051747659/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A62e7e7b1-9887-4d15-b0e5-a8ddc711bd88&unique=prints", "collector_number": "56", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Danny Miller", "artist_ids": ["0e1cb038-c983-4291-9759-bfd71fb6afb0"], "illustration_id": "7a3f43dc-0a00-46ea-a46d-90d3bf668875", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "edhrec_rank": 3446, "penny_rank": 226, "preview": {"source": "Kyle Hill", "source_uri": "https://twitter.com/Sci_Phile/status/1264995211391819776", "previewed_at": "2020-05-25"}, "prices": {"usd": null, "usd_foil": "9.02", "usd_etched": null, "eur": null, "eur_foil": "13.25", "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=485303", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Arcbound+Ravager&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Arcbound+Ravager&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Arcbound+Ravager"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/214892?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Arcbound+Ravager&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Arcbound+Ravager&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "211b1279-0f37-47a9-8eb5-db91159d0cf2", "oracle_id": "62e7e7b1-9887-4d15-b0e5-a8ddc711bd88", "multiverse_ids": [], "tcgplayer_id": 188711, "cardmarket_id": 373108, "name": "Arcbound Ravager", "lang": "en", "released_at": "2019-01-01", "uri": "https://api.scryfall.com/cards/211b1279-0f37-47a9-8eb5-db91159d0cf2", "scryfall_uri": "https://scryfall.com/card/ppro/2019/arcbound-ravager?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/2/1/211b1279-0f37-47a9-8eb5-db91159d0cf2.jpg?1562636700", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/1/211b1279-0f37-47a9-8eb5-db91159d0cf2.jpg?1562636700", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/2/1/211b1279-0f37-47a9-8eb5-db91159d0cf2.jpg?1562636700", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/2/1/211b1279-0f37-47a9-8eb5-db91159d0cf2.png?1562636700", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/1/211b1279-0f37-47a9-8eb5-db91159d0cf2.jpg?1562636700", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/2/1/211b1279-0f37-47a9-8eb5-db91159d0cf2.jpg?1562636700"}, "mana_cost": "{2}", "cmc": 2.0, "type_line": "Artifact Creature \u2014 Beast", "oracle_text": "Sacrifice an artifact: Put a +1/+1 counter on Arcbound Ravager.\nModular 1 (This creature enters the battlefield with a +1/+1 counter on it. When it dies, you may put its +1/+1 counters on target artifact creature.)", "power": "0", "toughness": "0", "colors": [], "color_identity": [], "keywords": ["Modular"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": true, "nonfoil": false, "finishes": ["foil"], "oversized": false, "promo": true, "reprint": true, "variation": false, "set_id": "e82b640d-bacf-41a5-8cf9-85e1ffeee71e", "set": "ppro", "set_name": "Pro Tour Promos", "set_type": "promo", "set_uri": "https://api.scryfall.com/sets/e82b640d-bacf-41a5-8cf9-85e1ffeee71e", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Appro&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ppro?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/211b1279-0f37-47a9-8eb5-db91159d0cf2/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A62e7e7b1-9887-4d15-b0e5-a8ddc711bd88&unique=prints", "collector_number": "2019", "digital": false, "rarity": "rare", "watermark": "wotc", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Chase Stone", "artist_ids": ["2d753f61-5f5b-468e-97ea-8e0fdd347340"], "illustration_id": "68be6699-2938-4187-a6c3-fb79dc8d5d53", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "promo_types": ["tourney"], "edhrec_rank": 3446, "penny_rank": 226, "prices": {"usd": null, "usd_foil": "10.10", "usd_etched": null, "eur": null, "eur_foil": "7.15", "tix": null}, "related_uris": {"tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Arcbound+Ravager&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Arcbound+Ravager&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Arcbound+Ravager"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/188711?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Arcbound+Ravager&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Arcbound+Ravager&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "eda7bda4-51cf-4648-8489-352d28d591fb", "oracle_id": "62e7e7b1-9887-4d15-b0e5-a8ddc711bd88", "multiverse_ids": [425802], "mtgo_id": 62931, "mtgo_foil_id": 62932, "tcgplayer_id": 126279, "cardmarket_id": 294714, "name": "Arcbound Ravager", "lang": "en", "released_at": "2016-09-30", "uri": "https://api.scryfall.com/cards/eda7bda4-51cf-4648-8489-352d28d591fb", "scryfall_uri": "https://scryfall.com/card/mps/31/arcbound-ravager?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/e/d/eda7bda4-51cf-4648-8489-352d28d591fb.jpg?1562945052", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/d/eda7bda4-51cf-4648-8489-352d28d591fb.jpg?1562945052", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/e/d/eda7bda4-51cf-4648-8489-352d28d591fb.jpg?1562945052", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/e/d/eda7bda4-51cf-4648-8489-352d28d591fb.png?1562945052", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/d/eda7bda4-51cf-4648-8489-352d28d591fb.jpg?1562945052", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/e/d/eda7bda4-51cf-4648-8489-352d28d591fb.jpg?1562945052"}, "mana_cost": "{2}", "cmc": 2.0, "type_line": "Artifact Creature \u2014 Beast", "oracle_text": "Sacrifice an artifact: Put a +1/+1 counter on Arcbound Ravager.\nModular 1 (This creature enters the battlefield with a +1/+1 counter on it. When it dies, you may put its +1/+1 counters on target artifact creature.)", "power": "0", "toughness": "0", "colors": [], "color_identity": [], "keywords": ["Modular"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": false, "finishes": ["foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "910ea2a2-9f6a-4665-98f6-165ea7928952", "set": "mps", "set_name": "Kaladesh Inventions", "set_type": "masterpiece", "set_uri": "https://api.scryfall.com/sets/910ea2a2-9f6a-4665-98f6-165ea7928952", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Amps&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/mps?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/eda7bda4-51cf-4648-8489-352d28d591fb/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A62e7e7b1-9887-4d15-b0e5-a8ddc711bd88&unique=prints", "collector_number": "31", "digital": false, "rarity": "mythic", "flavor_text": "\"Top-performing automaton combatants are to be seized and modified for service.\"\n\u2014Confiscation directive", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Daarken", "artist_ids": ["e607a0d4-fc12-4c01-9e3f-501f5269b9cb"], "illustration_id": "115716b0-74a4-45ff-816d-2c83a71a2a2e", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 3446, "penny_rank": 226, "prices": {"usd": null, "usd_foil": "88.04", "usd_etched": null, "eur": null, "eur_foil": "72.00", "tix": "0.80"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=425802", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Arcbound+Ravager&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Arcbound+Ravager&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Arcbound+Ravager"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/126279?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Arcbound+Ravager&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/62931?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "d3dd67e0-72b4-4c55-b49b-c69950feccb1", "oracle_id": "a28fc506-a98c-4b4d-a0f4-7d971489ccbb", "multiverse_ids": [48436], "mtgo_id": 20139, "mtgo_foil_id": 20140, "tcgplayer_id": 11406, "cardmarket_id": 85, "name": "Arc-Slogger", "lang": "en", "released_at": "2003-10-02", "uri": "https://api.scryfall.com/cards/d3dd67e0-72b4-4c55-b49b-c69950feccb1", "scryfall_uri": "https://scryfall.com/card/mrd/85/arc-slogger?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/d/3/d3dd67e0-72b4-4c55-b49b-c69950feccb1.jpg?1562158892", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/3/d3dd67e0-72b4-4c55-b49b-c69950feccb1.jpg?1562158892", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/d/3/d3dd67e0-72b4-4c55-b49b-c69950feccb1.jpg?1562158892", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/d/3/d3dd67e0-72b4-4c55-b49b-c69950feccb1.png?1562158892", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/3/d3dd67e0-72b4-4c55-b49b-c69950feccb1.jpg?1562158892", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/d/3/d3dd67e0-72b4-4c55-b49b-c69950feccb1.jpg?1562158892"}, "mana_cost": "{3}{R}{R}", "cmc": 5.0, "type_line": "Creature \u2014 Beast", "oracle_text": "{R}, Exile the top ten cards of your library: Arc-Slogger deals 2 damage to any target.", "power": "4", "toughness": "5", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "1d4f90ba-8d4a-4ee5-bc2f-e2d6bffe4955", "set": "mrd", "set_name": "Mirrodin", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/1d4f90ba-8d4a-4ee5-bc2f-e2d6bffe4955", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Amrd&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/mrd?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/d3dd67e0-72b4-4c55-b49b-c69950feccb1/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aa28fc506-a98c-4b4d-a0f4-7d971489ccbb&unique=prints", "collector_number": "85", "digital": false, "rarity": "rare", "flavor_text": "A shuffling sound and the smell of ozone follow the slogger as surely as its electric tail.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Jeff Easley", "artist_ids": ["da17055e-693c-461a-b132-67dd88b42ca6"], "illustration_id": "9770fd45-a804-4136-856b-c67e5e4715fa", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 19615, "penny_rank": 2649, "prices": {"usd": "0.29", "usd_foil": "3.14", "usd_etched": null, "eur": "0.10", "eur_foil": "1.00", "tix": "0.01"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=48436", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Arc-Slogger&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Arc-Slogger&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Arc-Slogger"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/11406?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Arc-Slogger&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/20139?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "7497f147-146d-4a76-b670-bd84e07352b3", "oracle_id": "a7955f10-f502-4893-88ad-f36e7ff0af4f", "multiverse_ids": [548341], "mtgo_id": 97006, "arena_id": 79468, "tcgplayer_id": 262191, "cardmarket_id": 607357, "name": "Armguard Familiar", "lang": "en", "released_at": "2022-02-18", "uri": "https://api.scryfall.com/cards/7497f147-146d-4a76-b670-bd84e07352b3", "scryfall_uri": "https://scryfall.com/card/neo/46/armguard-familiar?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/7/4/7497f147-146d-4a76-b670-bd84e07352b3.jpg?1654566610", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/4/7497f147-146d-4a76-b670-bd84e07352b3.jpg?1654566610", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/7/4/7497f147-146d-4a76-b670-bd84e07352b3.jpg?1654566610", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/7/4/7497f147-146d-4a76-b670-bd84e07352b3.png?1654566610", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/4/7497f147-146d-4a76-b670-bd84e07352b3.jpg?1654566610", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/7/4/7497f147-146d-4a76-b670-bd84e07352b3.jpg?1654566610"}, "mana_cost": "{1}{U}", "cmc": 2.0, "type_line": "Artifact Creature \u2014 Equipment Beast", "oracle_text": "Ward {2} (Whenever this creature becomes the target of a spell or ability an opponent controls, counter it unless that player pays {2}.)\nEquipped creature gets +2/+1 and has ward {2}.\nReconfigure {4} ({4}: Attach to target creature you control; or unattach from a creature. Reconfigure only as a sorcery. While attached, this isn't a creature.)", "power": "2", "toughness": "1", "colors": ["U"], "color_identity": ["U"], "keywords": ["Ward", "Reconfigure"], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo", "arena"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "59a2059f-5482-433f-8761-eb2e17859b71", "set": "neo", "set_name": "Kamigawa: Neon Dynasty", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/59a2059f-5482-433f-8761-eb2e17859b71", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aneo&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/neo?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/7497f147-146d-4a76-b670-bd84e07352b3/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aa7955f10-f502-4893-88ad-f36e7ff0af4f&unique=prints", "collector_number": "46", "digital": false, "rarity": "common", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Joshua Raphael", "artist_ids": ["553b2a73-780f-414b-b2d7-3b7888821082"], "illustration_id": "e5bd2e95-bbdb-49cb-ad90-c68fcea49355", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 12436, "penny_rank": 10364, "preview": {"source": "Nizzahon Magic", "source_uri": "https://www.youtube.com/watch?v=K2hXMriWF_4&t=108s", "previewed_at": "2022-01-30"}, "prices": {"usd": "0.02", "usd_foil": "0.04", "usd_etched": null, "eur": "0.13", "eur_foil": "0.15", "tix": "0.01"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=548341", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Armguard+Familiar&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Armguard+Familiar&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Armguard+Familiar"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/262191?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Armguard+Familiar&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/97006?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "ebaef0bd-8288-49ba-a889-d897a4aae64c", "oracle_id": "7246e3a0-f8b7-4c1b-ae75-a1eb8990a728", "multiverse_ids": [29965], "mtgo_id": 16659, "mtgo_foil_id": 16660, "tcgplayer_id": 9449, "cardmarket_id": 2586, "name": "Ashen Firebeast", "lang": "en", "released_at": "2001-10-01", "uri": "https://api.scryfall.com/cards/ebaef0bd-8288-49ba-a889-d897a4aae64c", "scryfall_uri": "https://scryfall.com/card/ody/174/ashen-firebeast?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/e/b/ebaef0bd-8288-49ba-a889-d897a4aae64c.jpg?1562939159", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/b/ebaef0bd-8288-49ba-a889-d897a4aae64c.jpg?1562939159", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/e/b/ebaef0bd-8288-49ba-a889-d897a4aae64c.jpg?1562939159", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/e/b/ebaef0bd-8288-49ba-a889-d897a4aae64c.png?1562939159", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/b/ebaef0bd-8288-49ba-a889-d897a4aae64c.jpg?1562939159", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/e/b/ebaef0bd-8288-49ba-a889-d897a4aae64c.jpg?1562939159"}, "mana_cost": "{6}{R}{R}", "cmc": 8.0, "type_line": "Creature \u2014 Elemental Beast", "oracle_text": "{1}{R}: Ashen Firebeast deals 1 damage to each creature without flying.", "power": "6", "toughness": "6", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "b0d90d2d-494a-4224-bfa0-36ce5ee281b1", "set": "ody", "set_name": "Odyssey", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/b0d90d2d-494a-4224-bfa0-36ce5ee281b1", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aody&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ody?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/ebaef0bd-8288-49ba-a889-d897a4aae64c/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A7246e3a0-f8b7-4c1b-ae75-a1eb8990a728&unique=prints", "collector_number": "174", "digital": false, "rarity": "rare", "flavor_text": "\"I'm not sure which impresses me most, its thoroughness or its intensity.\"\n\u2014Matoc, lavamancer", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Mark Tedin", "artist_ids": ["9ee9a9cc-c09e-486f-918b-69f80cbc4188"], "illustration_id": "71d1660a-4a34-4e59-9ab2-dc4ebbfc9aec", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 19285, "prices": {"usd": "0.24", "usd_foil": "5.97", "usd_etched": null, "eur": "0.44", "eur_foil": "7.99", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=29965", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Ashen+Firebeast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Ashen+Firebeast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Ashen+Firebeast"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/9449?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Ashen+Firebeast&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/16659?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "12bf6443-c941-418a-a766-05bba088a117", "oracle_id": "8049dbff-6b57-454a-a2e6-7e2ae39bb606", "multiverse_ids": [97107], "mtgo_id": 24061, "mtgo_foil_id": 24062, "tcgplayer_id": 13818, "cardmarket_id": 12954, "name": "Assault Zeppelid", "lang": "en", "released_at": "2006-05-05", "uri": "https://api.scryfall.com/cards/12bf6443-c941-418a-a766-05bba088a117", "scryfall_uri": "https://scryfall.com/card/dis/103/assault-zeppelid?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/1/2/12bf6443-c941-418a-a766-05bba088a117.jpg?1593273548", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/2/12bf6443-c941-418a-a766-05bba088a117.jpg?1593273548", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/1/2/12bf6443-c941-418a-a766-05bba088a117.jpg?1593273548", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/1/2/12bf6443-c941-418a-a766-05bba088a117.png?1593273548", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/2/12bf6443-c941-418a-a766-05bba088a117.jpg?1593273548", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/1/2/12bf6443-c941-418a-a766-05bba088a117.jpg?1593273548"}, "mana_cost": "{2}{G}{U}", "cmc": 4.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Flying, trample", "power": "3", "toughness": "3", "colors": ["G", "U"], "color_identity": ["G", "U"], "keywords": ["Flying", "Trample"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "fdebeda1-b95f-4343-8a94-d125821e6b5c", "set": "dis", "set_name": "Dissension", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/fdebeda1-b95f-4343-8a94-d125821e6b5c", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Adis&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/dis?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/12bf6443-c941-418a-a766-05bba088a117/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A8049dbff-6b57-454a-a2e6-7e2ae39bb606&unique=prints", "collector_number": "103", "digital": false, "rarity": "common", "watermark": "simic", "flavor_text": "\"Show them to Razia and then to the Azorius sky marshals. We could create a fine bidding war\u2014enough to fund the final stages of Project Kraj.\"\n\u2014Momir Vig", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Jeremy Jarvis", "artist_ids": ["b40ac320-89b4-4c51-a85f-4a4b63ae614e"], "illustration_id": "5a9ec1d8-e241-46c6-854c-425db2df2404", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 20562, "prices": {"usd": "0.13", "usd_foil": "0.35", "usd_etched": null, "eur": "0.02", "eur_foil": "0.45", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=97107", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Assault+Zeppelid&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Assault+Zeppelid&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Assault+Zeppelid"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/13818?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Assault+Zeppelid&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/24061?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "8f8dbb4f-4b01-4666-b62f-a2323dac7a19", "oracle_id": "586aebf2-4653-49fa-8425-13bd1f511bf0", "multiverse_ids": [193478], "mtgo_id": 36432, "mtgo_foil_id": 36433, "tcgplayer_id": 34869, "cardmarket_id": 22437, "name": "Aura Gnarlid", "lang": "en", "released_at": "2010-04-23", "uri": "https://api.scryfall.com/cards/8f8dbb4f-4b01-4666-b62f-a2323dac7a19", "scryfall_uri": "https://scryfall.com/card/roe/175/aura-gnarlid?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/8/f/8f8dbb4f-4b01-4666-b62f-a2323dac7a19.jpg?1562706262", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/f/8f8dbb4f-4b01-4666-b62f-a2323dac7a19.jpg?1562706262", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/8/f/8f8dbb4f-4b01-4666-b62f-a2323dac7a19.jpg?1562706262", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/8/f/8f8dbb4f-4b01-4666-b62f-a2323dac7a19.png?1562706262", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/f/8f8dbb4f-4b01-4666-b62f-a2323dac7a19.jpg?1562706262", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/8/f/8f8dbb4f-4b01-4666-b62f-a2323dac7a19.jpg?1562706262"}, "mana_cost": "{2}{G}", "cmc": 3.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Creatures with power less than Aura Gnarlid's power can't block it.\nAura Gnarlid gets +1/+1 for each Aura on the battlefield.", "power": "2", "toughness": "2", "colors": ["G"], "color_identity": ["G"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "eadb8a82-ec56-4623-b50e-42e7e60cb535", "set": "roe", "set_name": "Rise of the Eldrazi", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/eadb8a82-ec56-4623-b50e-42e7e60cb535", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aroe&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/roe?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/8f8dbb4f-4b01-4666-b62f-a2323dac7a19/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A586aebf2-4653-49fa-8425-13bd1f511bf0&unique=prints", "collector_number": "175", "digital": false, "rarity": "common", "flavor_text": "Kill a gnarlid with your first blow, or it'll cheerfully show you how it's done.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Lars Grant-West", "artist_ids": ["21ed6499-c4d3-4965-ab02-6c7228275bec"], "illustration_id": "81d72a9e-5f04-4d99-bddb-4903ba3f673f", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 8866, "penny_rank": 5359, "prices": {"usd": "0.10", "usd_foil": "1.02", "usd_etched": null, "eur": "0.24", "eur_foil": "1.00", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=193478", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Aura+Gnarlid&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Aura+Gnarlid&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Aura+Gnarlid"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/34869?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Aura+Gnarlid&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/36432?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "a39ae1e4-d4dd-4691-af5a-5fa25ace4ebe", "oracle_id": "8432df19-dbf4-457b-8c0b-1f4b3a0a37d2", "multiverse_ids": [479664], "mtgo_id": 80297, "arena_id": 71211, "tcgplayer_id": 212089, "cardmarket_id": 451343, "name": "Auspicious Starrix", "lang": "en", "released_at": "2020-04-24", "uri": "https://api.scryfall.com/cards/a39ae1e4-d4dd-4691-af5a-5fa25ace4ebe", "scryfall_uri": "https://scryfall.com/card/iko/144/auspicious-starrix?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/a/3/a39ae1e4-d4dd-4691-af5a-5fa25ace4ebe.jpg?1591227516", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/3/a39ae1e4-d4dd-4691-af5a-5fa25ace4ebe.jpg?1591227516", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/a/3/a39ae1e4-d4dd-4691-af5a-5fa25ace4ebe.jpg?1591227516", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/a/3/a39ae1e4-d4dd-4691-af5a-5fa25ace4ebe.png?1591227516", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/3/a39ae1e4-d4dd-4691-af5a-5fa25ace4ebe.jpg?1591227516", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/a/3/a39ae1e4-d4dd-4691-af5a-5fa25ace4ebe.jpg?1591227516"}, "mana_cost": "{4}{G}", "cmc": 5.0, "type_line": "Creature \u2014 Elk Beast", "oracle_text": "Mutate {5}{G} (If you cast this spell for its mutate cost, put it over or under target non-Human creature you own. They mutate into the creature on top plus all abilities from under it.)\nWhenever this creature mutates, exile cards from the top of your library until you exile X permanent cards, where X is the number of times this creature has mutated. Put those permanent cards onto the battlefield.", "power": "6", "toughness": "6", "colors": ["G"], "color_identity": ["G"], "keywords": ["Mutate"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "restricted", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "19feda43-15ab-427e-a0e4-148a4bf2b03a", "set": "iko", "set_name": "Ikoria: Lair of Behemoths", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/19feda43-15ab-427e-a0e4-148a4bf2b03a", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aiko&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/iko?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/a39ae1e4-d4dd-4691-af5a-5fa25ace4ebe/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A8432df19-dbf4-457b-8c0b-1f4b3a0a37d2&unique=prints", "collector_number": "144", "digital": false, "rarity": "uncommon", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Lucas Graciano", "artist_ids": ["ce98f39c-7cdd-47e6-a520-6c50443bb4c2"], "illustration_id": "df9c7ee6-55db-4a57-874f-926f59dfae36", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 3111, "penny_rank": 5117, "preview": {"source": "GameSpot", "source_uri": "https://www.gamespot.com/articles/magic-the-gathering-heres-another-new-card-from-ik/1100-6475525/", "previewed_at": "2020-04-03"}, "prices": {"usd": "0.07", "usd_foil": "0.10", "usd_etched": null, "eur": "0.07", "eur_foil": "0.10", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=479664", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Auspicious+Starrix&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Auspicious+Starrix&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Auspicious+Starrix"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/212089?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Auspicious+Starrix&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/80297?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "f7b41cfa-b22e-4d34-bfe9-68c9d8740704", "oracle_id": "8432df19-dbf4-457b-8c0b-1f4b3a0a37d2", "multiverse_ids": [], "arena_id": 73667, "tcgplayer_id": 212244, "cardmarket_id": 451348, "name": "Auspicious Starrix", "lang": "en", "released_at": "2020-04-24", "uri": "https://api.scryfall.com/cards/f7b41cfa-b22e-4d34-bfe9-68c9d8740704", "scryfall_uri": "https://scryfall.com/card/iko/294/auspicious-starrix?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/f/7/f7b41cfa-b22e-4d34-bfe9-68c9d8740704.jpg?1604781846", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/7/f7b41cfa-b22e-4d34-bfe9-68c9d8740704.jpg?1604781846", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/f/7/f7b41cfa-b22e-4d34-bfe9-68c9d8740704.jpg?1604781846", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/f/7/f7b41cfa-b22e-4d34-bfe9-68c9d8740704.png?1604781846", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/7/f7b41cfa-b22e-4d34-bfe9-68c9d8740704.jpg?1604781846", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/f/7/f7b41cfa-b22e-4d34-bfe9-68c9d8740704.jpg?1604781846"}, "mana_cost": "{4}{G}", "cmc": 5.0, "type_line": "Creature \u2014 Elk Beast", "oracle_text": "Mutate {5}{G} (If you cast this spell for its mutate cost, put it over or under target non-Human creature you own. They mutate into the creature on top plus all abilities from under it.)\nWhenever this creature mutates, exile cards from the top of your library until you exile X permanent cards, where X is the number of times this creature has mutated. Put those permanent cards onto the battlefield.", "power": "6", "toughness": "6", "colors": ["G"], "color_identity": ["G"], "keywords": ["Mutate"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "restricted", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "19feda43-15ab-427e-a0e4-148a4bf2b03a", "set": "iko", "set_name": "Ikoria: Lair of Behemoths", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/19feda43-15ab-427e-a0e4-148a4bf2b03a", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aiko&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/iko?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/f7b41cfa-b22e-4d34-bfe9-68c9d8740704/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A8432df19-dbf4-457b-8c0b-1f4b3a0a37d2&unique=prints", "collector_number": "294", "digital": false, "rarity": "uncommon", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Justine Mara Andersen", "artist_ids": ["792963b0-5dec-4b79-9035-71ce48bf77e9"], "illustration_id": "1c32504c-1c9b-4e24-99db-094fb3c800c6", "border_color": "black", "frame": "2015", "frame_effects": ["showcase"], "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "promo_types": ["boosterfun"], "edhrec_rank": 3111, "penny_rank": 5117, "prices": {"usd": "0.21", "usd_foil": "0.35", "usd_etched": null, "eur": "0.13", "eur_foil": "1.93", "tix": null}, "related_uris": {"tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Auspicious+Starrix&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Auspicious+Starrix&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Auspicious+Starrix"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/212244?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Auspicious+Starrix&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Auspicious+Starrix&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "ae76705f-ec95-48b0-9e26-84ce40c9514b", "oracle_id": "2e1deb7e-d40d-437e-b817-b66132d2d1d6", "multiverse_ids": [43331], "mtgo_id": 18315, "mtgo_foil_id": 18316, "tcgplayer_id": 10581, "cardmarket_id": 1818, "name": "Avarax", "lang": "en", "released_at": "2002-10-07", "uri": "https://api.scryfall.com/cards/ae76705f-ec95-48b0-9e26-84ce40c9514b", "scryfall_uri": "https://scryfall.com/card/ons/187/avarax?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/a/e/ae76705f-ec95-48b0-9e26-84ce40c9514b.jpg?1562936224", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/e/ae76705f-ec95-48b0-9e26-84ce40c9514b.jpg?1562936224", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/a/e/ae76705f-ec95-48b0-9e26-84ce40c9514b.jpg?1562936224", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/a/e/ae76705f-ec95-48b0-9e26-84ce40c9514b.png?1562936224", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/e/ae76705f-ec95-48b0-9e26-84ce40c9514b.jpg?1562936224", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/a/e/ae76705f-ec95-48b0-9e26-84ce40c9514b.jpg?1562936224"}, "mana_cost": "{3}{R}{R}", "cmc": 5.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Haste\nWhen Avarax enters the battlefield, you may search your library for a card named Avarax, reveal it, put it into your hand, then shuffle.\n{1}{R}: Avarax gets +1/+0 until end of turn.", "power": "3", "toughness": "3", "colors": ["R"], "color_identity": ["R"], "keywords": ["Haste"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "914a6c6d-cb3b-45e8-a2db-9978a2339faf", "set": "ons", "set_name": "Onslaught", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/914a6c6d-cb3b-45e8-a2db-9978a2339faf", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aons&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ons?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/ae76705f-ec95-48b0-9e26-84ce40c9514b/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A2e1deb7e-d40d-437e-b817-b66132d2d1d6&unique=prints", "collector_number": "187", "digital": false, "rarity": "uncommon", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Greg Staples", "artist_ids": ["93d65564-bf00-447b-8406-e2031f03b6b1"], "illustration_id": "c50c4f66-9acc-45d0-97ac-c7e36c31a7c0", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 23120, "penny_rank": 12745, "prices": {"usd": "0.18", "usd_foil": "0.49", "usd_etched": null, "eur": "0.08", "eur_foil": "0.40", "tix": "0.06"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=43331", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Avarax&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Avarax&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Avarax"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/10581?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Avarax&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/18315?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "2f420b35-1f73-41c8-a15f-1aee4af0999c", "oracle_id": "8f1d5c8d-98e1-47b7-8347-38887253e34a", "multiverse_ids": [457265], "mtgo_id": 71242, "arena_id": 69249, "tcgplayer_id": 183412, "cardmarket_id": 368598, "name": "Axebane Beast", "lang": "en", "released_at": "2019-01-25", "uri": "https://api.scryfall.com/cards/2f420b35-1f73-41c8-a15f-1aee4af0999c", "scryfall_uri": "https://scryfall.com/card/rna/121/axebane-beast?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/2/f/2f420b35-1f73-41c8-a15f-1aee4af0999c.jpg?1584831084", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/f/2f420b35-1f73-41c8-a15f-1aee4af0999c.jpg?1584831084", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/2/f/2f420b35-1f73-41c8-a15f-1aee4af0999c.jpg?1584831084", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/2/f/2f420b35-1f73-41c8-a15f-1aee4af0999c.png?1584831084", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/f/2f420b35-1f73-41c8-a15f-1aee4af0999c.jpg?1584831084", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/2/f/2f420b35-1f73-41c8-a15f-1aee4af0999c.jpg?1584831084"}, "mana_cost": "{3}{G}", "cmc": 4.0, "type_line": "Creature \u2014 Beast", "oracle_text": "", "power": "3", "toughness": "4", "colors": ["G"], "color_identity": ["G"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "97a7fd84-8d89-45a3-b48b-c951f6a3f9f1", "set": "rna", "set_name": "Ravnica Allegiance", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/97a7fd84-8d89-45a3-b48b-c951f6a3f9f1", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Arna&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/rna?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/2f420b35-1f73-41c8-a15f-1aee4af0999c/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A8f1d5c8d-98e1-47b7-8347-38887253e34a&unique=prints", "collector_number": "121", "digital": false, "rarity": "common", "flavor_text": "\"Imagine a gigantic pine cone that's extremely territorial and always in a foul mood.\"\n\u2014Zhosmir, urban huntmaster", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Sam Rowan", "artist_ids": ["22dbb488-6195-43cc-9927-73bfd239fe30"], "illustration_id": "9998d958-9060-407d-beba-dab066c16cba", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 19165, "prices": {"usd": "0.07", "usd_foil": "0.11", "usd_etched": null, "eur": "0.02", "eur_foil": "0.15", "tix": "0.04"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=457265", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Axebane+Beast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Axebane+Beast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Axebane+Beast"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/183412?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Axebane+Beast&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/71242?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "504090bb-d183-4833-aea5-d4193b5c57a1", "oracle_id": "7f9bc0c9-0333-4c02-bc14-e6affe848b5d", "multiverse_ids": [443044], "mtgo_id": 67777, "arena_id": 67416, "tcgplayer_id": 162218, "cardmarket_id": 319741, "name": "Baloth Gorger", "lang": "en", "released_at": "2018-04-27", "uri": "https://api.scryfall.com/cards/504090bb-d183-4833-aea5-d4193b5c57a1", "scryfall_uri": "https://scryfall.com/card/dom/156/baloth-gorger?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/5/0/504090bb-d183-4833-aea5-d4193b5c57a1.jpg?1562735490", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/0/504090bb-d183-4833-aea5-d4193b5c57a1.jpg?1562735490", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/5/0/504090bb-d183-4833-aea5-d4193b5c57a1.jpg?1562735490", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/5/0/504090bb-d183-4833-aea5-d4193b5c57a1.png?1562735490", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/0/504090bb-d183-4833-aea5-d4193b5c57a1.jpg?1562735490", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/5/0/504090bb-d183-4833-aea5-d4193b5c57a1.jpg?1562735490"}, "mana_cost": "{2}{G}{G}", "cmc": 4.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Kicker {4} (You may pay an additional {4} as you cast this spell.)\nIf Baloth Gorger was kicked, it enters the battlefield with three +1/+1 counters on it.", "power": "4", "toughness": "4", "colors": ["G"], "color_identity": ["G"], "keywords": ["Kicker"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "be1daba3-51c9-4e7e-9212-36e68addc26c", "set": "dom", "set_name": "Dominaria", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/be1daba3-51c9-4e7e-9212-36e68addc26c", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Adom&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/dom?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/504090bb-d183-4833-aea5-d4193b5c57a1/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A7f9bc0c9-0333-4c02-bc14-e6affe848b5d&unique=prints", "collector_number": "156", "digital": false, "rarity": "common", "flavor_text": "A baloth only cares about the many things it eats and the few things that eat it.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Zezhou Chen", "artist_ids": ["810677e5-a502-4c03-b726-78cd808a75d4"], "illustration_id": "8aff6e23-dc2a-4df4-b981-d150b7618177", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 14655, "penny_rank": 6046, "prices": {"usd": "0.02", "usd_foil": "0.23", "usd_etched": null, "eur": "0.04", "eur_foil": "0.05", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=443044", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Baloth+Gorger&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Baloth+Gorger&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Baloth+Gorger"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/162218?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Baloth+Gorger&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/67777?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "8811d210-23e2-4318-9730-7ee3b2021c68", "oracle_id": "55a0a40c-cb40-469d-9bf3-9c33b378f4f7", "multiverse_ids": [407662], "mtgo_id": 59585, "mtgo_foil_id": 59586, "tcgplayer_id": 110857, "cardmarket_id": 287303, "name": "Baloth Null", "lang": "en", "released_at": "2016-01-22", "uri": "https://api.scryfall.com/cards/8811d210-23e2-4318-9730-7ee3b2021c68", "scryfall_uri": "https://scryfall.com/card/ogw/152/baloth-null?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/8/8/8811d210-23e2-4318-9730-7ee3b2021c68.jpg?1562922516", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/8/8811d210-23e2-4318-9730-7ee3b2021c68.jpg?1562922516", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/8/8/8811d210-23e2-4318-9730-7ee3b2021c68.jpg?1562922516", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/8/8/8811d210-23e2-4318-9730-7ee3b2021c68.png?1562922516", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/8/8811d210-23e2-4318-9730-7ee3b2021c68.jpg?1562922516", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/8/8/8811d210-23e2-4318-9730-7ee3b2021c68.jpg?1562922516"}, "mana_cost": "{4}{B}{G}", "cmc": 6.0, "type_line": "Creature \u2014 Zombie Beast", "oracle_text": "When Baloth Null enters the battlefield, return up to two target creature cards from your graveyard to your hand.", "power": "4", "toughness": "5", "colors": ["B", "G"], "color_identity": ["B", "G"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "restricted", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "cd51d245-8f95-45b0-ab5f-e2b3a3eb5dfe", "set": "ogw", "set_name": "Oath of the Gatewatch", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/cd51d245-8f95-45b0-ab5f-e2b3a3eb5dfe", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aogw&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ogw?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/8811d210-23e2-4318-9730-7ee3b2021c68/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A55a0a40c-cb40-469d-9bf3-9c33b378f4f7&unique=prints", "collector_number": "152", "digital": false, "rarity": "uncommon", "flavor_text": "\"Humans use pigs to hunt for mushrooms, don't they? It's like that.\"\n\u2014Harak, Malakir bloodwitch", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Jakub Kasper", "artist_ids": ["36901417-ce61-4636-8b77-6db14a9cb68a"], "illustration_id": "673c3857-d644-4ab5-83d1-018e74f234f1", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 12633, "penny_rank": 6164, "prices": {"usd": "0.09", "usd_foil": "0.28", "usd_etched": null, "eur": "0.05", "eur_foil": "0.30", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=407662", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Baloth+Null&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Baloth+Null&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Baloth+Null"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/110857?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Baloth+Null&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/59585?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "61b22c5d-3b29-47c1-8a04-13586461a143", "oracle_id": "ee4c29c3-f790-4e5e-a0d1-d47af7b62753", "multiverse_ids": [], "arena_id": 75531, "name": "Baloth Packhunter", "lang": "en", "released_at": "2020-08-13", "uri": "https://api.scryfall.com/cards/61b22c5d-3b29-47c1-8a04-13586461a143", "scryfall_uri": "https://scryfall.com/card/anb/90/baloth-packhunter?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/6/1/61b22c5d-3b29-47c1-8a04-13586461a143.jpg?1597684060", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/1/61b22c5d-3b29-47c1-8a04-13586461a143.jpg?1597684060", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/6/1/61b22c5d-3b29-47c1-8a04-13586461a143.jpg?1597684060", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/6/1/61b22c5d-3b29-47c1-8a04-13586461a143.png?1597684060", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/1/61b22c5d-3b29-47c1-8a04-13586461a143.jpg?1597684060", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/6/1/61b22c5d-3b29-47c1-8a04-13586461a143.jpg?1597684060"}, "mana_cost": "{3}{G}", "cmc": 4.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Trample\nWhen Baloth Packhunter enters the battlefield, put two +1/+1 counters on each other creature you control named Baloth Packhunter.", "power": "3", "toughness": "3", "colors": ["G"], "color_identity": ["G"], "keywords": ["Trample"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "not_legal", "pauper": "not_legal", "vintage": "not_legal", "penny": "not_legal", "commander": "not_legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "not_legal", "duel": "not_legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "fb2d12a7-a385-4ec0-b7fd-e2ff1796d7a8", "set": "anb", "set_name": "Arena Beginner Set", "set_type": "starter", "set_uri": "https://api.scryfall.com/sets/fb2d12a7-a385-4ec0-b7fd-e2ff1796d7a8", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aanb&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/anb?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/61b22c5d-3b29-47c1-8a04-13586461a143/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aee4c29c3-f790-4e5e-a0d1-d47af7b62753&unique=prints", "collector_number": "90", "digital": true, "rarity": "common", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Nestor Ossandon Leal", "artist_ids": ["7a6f1667-a8ac-47f5-a302-f71cb54b2adf"], "illustration_id": "f5578f88-e4cb-4c60-ac18-7f694483d44f", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "prices": {"usd": null, "usd_foil": null, "usd_etched": null, "eur": null, "eur_foil": null, "tix": null}, "related_uris": {"tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Baloth+Packhunter&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Baloth+Packhunter&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Baloth+Packhunter"}}, {"object": "card", "id": "3f9c87f4-4fa5-4c97-9654-c4acd250f850", "oracle_id": "cb06cf58-3cc6-429a-9bb0-be4b1c53de30", "multiverse_ids": [407637], "mtgo_id": 59575, "mtgo_foil_id": 59576, "tcgplayer_id": 111015, "cardmarket_id": 287394, "name": "Baloth Pup", "lang": "en", "released_at": "2016-01-22", "uri": "https://api.scryfall.com/cards/3f9c87f4-4fa5-4c97-9654-c4acd250f850", "scryfall_uri": "https://scryfall.com/card/ogw/127/baloth-pup?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/3/f/3f9c87f4-4fa5-4c97-9654-c4acd250f850.jpg?1562907761", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/f/3f9c87f4-4fa5-4c97-9654-c4acd250f850.jpg?1562907761", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/3/f/3f9c87f4-4fa5-4c97-9654-c4acd250f850.jpg?1562907761", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/3/f/3f9c87f4-4fa5-4c97-9654-c4acd250f850.png?1562907761", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/f/3f9c87f4-4fa5-4c97-9654-c4acd250f850.jpg?1562907761", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/3/f/3f9c87f4-4fa5-4c97-9654-c4acd250f850.jpg?1562907761"}, "mana_cost": "{1}{G}", "cmc": 2.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Baloth Pup has trample as long as it has a +1/+1 counter on it.", "power": "3", "toughness": "1", "colors": ["G"], "color_identity": ["G"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "restricted", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "cd51d245-8f95-45b0-ab5f-e2b3a3eb5dfe", "set": "ogw", "set_name": "Oath of the Gatewatch", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/cd51d245-8f95-45b0-ab5f-e2b3a3eb5dfe", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aogw&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ogw?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/3f9c87f4-4fa5-4c97-9654-c4acd250f850/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Acb06cf58-3cc6-429a-9bb0-be4b1c53de30&unique=prints", "collector_number": "127", "digital": false, "rarity": "uncommon", "flavor_text": "A young baloth channels its energy into playful destructiveness. Over time, it becomes less playful but no less destructive.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Steve Prescott", "artist_ids": ["a1139fb8-41f5-4a9e-9a74-f662e1a23b35"], "illustration_id": "406df97a-b13e-454d-b4e4-438e9d706a66", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 18888, "penny_rank": 8323, "prices": {"usd": "0.07", "usd_foil": "0.24", "usd_etched": null, "eur": "0.04", "eur_foil": "0.20", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=407637", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Baloth+Pup&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Baloth+Pup&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Baloth+Pup"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/111015?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Baloth+Pup&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/59575?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "8223dc6a-2bee-4be9-86d5-f0a17a24c33e", "oracle_id": "faaf9975-74df-4e9d-be0c-19a446cd507c", "multiverse_ids": [192231], "mtgo_id": 34348, "mtgo_foil_id": 34349, "tcgplayer_id": 33257, "cardmarket_id": 21776, "name": "Baloth Woodcrasher", "lang": "en", "released_at": "2009-10-02", "uri": "https://api.scryfall.com/cards/8223dc6a-2bee-4be9-86d5-f0a17a24c33e", "scryfall_uri": "https://scryfall.com/card/zen/157/baloth-woodcrasher?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/8/2/8223dc6a-2bee-4be9-86d5-f0a17a24c33e.jpg?1562613874", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/2/8223dc6a-2bee-4be9-86d5-f0a17a24c33e.jpg?1562613874", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/8/2/8223dc6a-2bee-4be9-86d5-f0a17a24c33e.jpg?1562613874", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/8/2/8223dc6a-2bee-4be9-86d5-f0a17a24c33e.png?1562613874", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/2/8223dc6a-2bee-4be9-86d5-f0a17a24c33e.jpg?1562613874", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/8/2/8223dc6a-2bee-4be9-86d5-f0a17a24c33e.jpg?1562613874"}, "mana_cost": "{4}{G}{G}", "cmc": 6.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Landfall \u2014 Whenever a land enters the battlefield under your control, Baloth Woodcrasher gets +4/+4 and gains trample until end of turn.", "power": "4", "toughness": "4", "colors": ["G"], "color_identity": ["G"], "keywords": ["Landfall"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "restricted", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "eb16a2bd-a218-4e4e-8339-4aa1afc0c8d2", "set": "zen", "set_name": "Zendikar", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/eb16a2bd-a218-4e4e-8339-4aa1afc0c8d2", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Azen&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/zen?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/8223dc6a-2bee-4be9-86d5-f0a17a24c33e/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Afaaf9975-74df-4e9d-be0c-19a446cd507c&unique=prints", "collector_number": "157", "digital": false, "rarity": "uncommon", "flavor_text": "Its insatiable hunger quickly depletes a region of prey. It must migrate from place to place to feed its massive bulk.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Zoltan Boros & Gabor Szikszai", "artist_ids": ["1885e6cb-c827-4896-994e-3d0a027d602f", "44c3877f-8771-43dc-9e40-f4c765f59d2e"], "illustration_id": "6379172b-8b67-42ba-84a9-d7e4e2f6a5e5", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 7837, "penny_rank": 11160, "prices": {"usd": "0.12", "usd_foil": "1.07", "usd_etched": null, "eur": "0.10", "eur_foil": "0.35", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=192231", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Baloth+Woodcrasher&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Baloth+Woodcrasher&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Baloth+Woodcrasher"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/33257?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Baloth+Woodcrasher&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/34348?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "1271251b-7d79-4cb4-80bb-98574aa63249", "oracle_id": "e3191093-1aaa-4002-a603-7c8d132b6a31", "multiverse_ids": [522225], "mtgo_id": 90675, "tcgplayer_id": 240465, "cardmarket_id": 566916, "name": "Bannerhide Krushok", "lang": "en", "released_at": "2021-06-18", "uri": "https://api.scryfall.com/cards/1271251b-7d79-4cb4-80bb-98574aa63249", "scryfall_uri": "https://scryfall.com/card/mh2/149/bannerhide-krushok?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/1/2/1271251b-7d79-4cb4-80bb-98574aa63249.jpg?1626097186", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/2/1271251b-7d79-4cb4-80bb-98574aa63249.jpg?1626097186", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/1/2/1271251b-7d79-4cb4-80bb-98574aa63249.jpg?1626097186", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/1/2/1271251b-7d79-4cb4-80bb-98574aa63249.png?1626097186", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/2/1271251b-7d79-4cb4-80bb-98574aa63249.jpg?1626097186", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/1/2/1271251b-7d79-4cb4-80bb-98574aa63249.jpg?1626097186"}, "mana_cost": "{3}{G}", "cmc": 4.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Trample\nReinforce 2\u2014{1}{G} ({1}{G}, Discard this card: Put two +1/+1 counters on target creature.)\nScavenge {5}{G}{G} ({5}{G}{G}, Exile this card from your graveyard: Put a number of +1/+1 counters equal to this card's power on target creature. Scavenge only as a sorcery.)", "power": "4", "toughness": "4", "colors": ["G"], "color_identity": ["G"], "keywords": ["Scavenge", "Trample", "Reinforce"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "c1c7eb8c-f205-40ab-a609-767cb296544e", "set": "mh2", "set_name": "Modern Horizons 2", "set_type": "draft_innovation", "set_uri": "https://api.scryfall.com/sets/c1c7eb8c-f205-40ab-a609-767cb296544e", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Amh2&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/mh2?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/1271251b-7d79-4cb4-80bb-98574aa63249/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ae3191093-1aaa-4002-a603-7c8d132b6a31&unique=prints", "collector_number": "149", "digital": false, "rarity": "common", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Joe Slucher", "artist_ids": ["13b6c9ee-f7a8-46a4-934f-ea6b4a1b14b2"], "illustration_id": "3ddef0c3-433f-4f2d-b0bd-e1312dc21cdd", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 15051, "prices": {"usd": "0.01", "usd_foil": "0.02", "usd_etched": null, "eur": "0.04", "eur_foil": "0.10", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=522225", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Bannerhide+Krushok&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Bannerhide+Krushok&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Bannerhide+Krushok"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/240465?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Bannerhide+Krushok&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/90675?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "b9d67b5c-ab20-456e-8ff5-7521be8273b2", "oracle_id": "49d44e89-b94e-43f7-a996-f50651df9264", "multiverse_ids": [26726], "mtgo_id": 17235, "mtgo_foil_id": 17236, "tcgplayer_id": 9691, "cardmarket_id": 2361, "name": "Barbarian Outcast", "lang": "en", "released_at": "2002-02-04", "uri": "https://api.scryfall.com/cards/b9d67b5c-ab20-456e-8ff5-7521be8273b2", "scryfall_uri": "https://scryfall.com/card/tor/92/barbarian-outcast?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/b/9/b9d67b5c-ab20-456e-8ff5-7521be8273b2.jpg?1562631722", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/9/b9d67b5c-ab20-456e-8ff5-7521be8273b2.jpg?1562631722", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/b/9/b9d67b5c-ab20-456e-8ff5-7521be8273b2.jpg?1562631722", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/b/9/b9d67b5c-ab20-456e-8ff5-7521be8273b2.png?1562631722", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/9/b9d67b5c-ab20-456e-8ff5-7521be8273b2.jpg?1562631722", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/b/9/b9d67b5c-ab20-456e-8ff5-7521be8273b2.jpg?1562631722"}, "mana_cost": "{1}{R}", "cmc": 2.0, "type_line": "Creature \u2014 Human Barbarian Beast", "oracle_text": "When you control no Swamps, sacrifice Barbarian Outcast.", "power": "2", "toughness": "2", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "e0b3fda1-a6ca-4996-849b-08b463d39484", "set": "tor", "set_name": "Torment", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/e0b3fda1-a6ca-4996-849b-08b463d39484", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ator&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/tor?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/b9d67b5c-ab20-456e-8ff5-7521be8273b2/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A49d44e89-b94e-43f7-a996-f50651df9264&unique=prints", "collector_number": "92", "digital": false, "rarity": "common", "flavor_text": "\"We offer power to anyone willing to take it. Sadly, few are unburdened enough by their prejudices to accept.\"\n\u2014Cabal surgeon", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Mark Tedin", "artist_ids": ["9ee9a9cc-c09e-486f-918b-69f80cbc4188"], "illustration_id": "d6adc39e-abe9-4c2d-b532-83d2131a1280", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 22766, "prices": {"usd": "0.05", "usd_foil": "0.24", "usd_etched": null, "eur": "0.05", "eur_foil": "0.19", "tix": "0.06"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=26726", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Barbarian+Outcast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Barbarian+Outcast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Barbarian+Outcast"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/9691?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Barbarian+Outcast&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/17235?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "b9196ce7-3ff4-4dda-a628-559ada11c9ba", "oracle_id": "84a18b1f-5f9f-4e2b-87cd-c437bdf4d278", "multiverse_ids": [34196], "mtgo_id": 18131, "mtgo_foil_id": 18132, "tcgplayer_id": 10632, "cardmarket_id": 1877, "name": "Barkhide Mauler", "lang": "en", "released_at": "2002-10-07", "uri": "https://api.scryfall.com/cards/b9196ce7-3ff4-4dda-a628-559ada11c9ba", "scryfall_uri": "https://scryfall.com/card/ons/246/barkhide-mauler?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/b/9/b9196ce7-3ff4-4dda-a628-559ada11c9ba.jpg?1562938641", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/9/b9196ce7-3ff4-4dda-a628-559ada11c9ba.jpg?1562938641", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/b/9/b9196ce7-3ff4-4dda-a628-559ada11c9ba.jpg?1562938641", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/b/9/b9196ce7-3ff4-4dda-a628-559ada11c9ba.png?1562938641", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/9/b9196ce7-3ff4-4dda-a628-559ada11c9ba.jpg?1562938641", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/b/9/b9196ce7-3ff4-4dda-a628-559ada11c9ba.jpg?1562938641"}, "mana_cost": "{4}{G}", "cmc": 5.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Cycling {2} ({2}, Discard this card: Draw a card.)", "power": "4", "toughness": "4", "colors": ["G"], "color_identity": ["G"], "keywords": ["Cycling"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "914a6c6d-cb3b-45e8-a2db-9978a2339faf", "set": "ons", "set_name": "Onslaught", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/914a6c6d-cb3b-45e8-a2db-9978a2339faf", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aons&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ons?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/b9196ce7-3ff4-4dda-a628-559ada11c9ba/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A84a18b1f-5f9f-4e2b-87cd-c437bdf4d278&unique=prints", "collector_number": "246", "digital": false, "rarity": "common", "flavor_text": "Anywhere else they would be hunted for their skins, but in Wirewood, they are safe.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Iain McCaig", "artist_ids": ["8d244b88-ef56-4523-8c0c-9fecccc4ab9d"], "illustration_id": "501aeb6d-840e-45b1-8882-9487ebe0ee88", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 17400, "penny_rank": 12966, "prices": {"usd": "0.08", "usd_foil": "0.31", "usd_etched": null, "eur": "0.07", "eur_foil": "0.15", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=34196", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Barkhide+Mauler&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Barkhide+Mauler&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Barkhide+Mauler"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/10632?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Barkhide+Mauler&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/18131?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "a7b40f74-893f-4bfc-87b2-7f8df4c912d8", "oracle_id": "b9dd5841-7e4b-40bf-9969-e8fb5df46763", "multiverse_ids": [265399], "mtgo_id": 46611, "mtgo_foil_id": 46612, "tcgplayer_id": 66526, "cardmarket_id": 258446, "name": "Batterhorn", "lang": "en", "released_at": "2012-10-05", "uri": "https://api.scryfall.com/cards/a7b40f74-893f-4bfc-87b2-7f8df4c912d8", "scryfall_uri": "https://scryfall.com/card/rtr/87/batterhorn?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/a/7/a7b40f74-893f-4bfc-87b2-7f8df4c912d8.jpg?1562791147", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/7/a7b40f74-893f-4bfc-87b2-7f8df4c912d8.jpg?1562791147", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/a/7/a7b40f74-893f-4bfc-87b2-7f8df4c912d8.jpg?1562791147", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/a/7/a7b40f74-893f-4bfc-87b2-7f8df4c912d8.png?1562791147", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/7/a7b40f74-893f-4bfc-87b2-7f8df4c912d8.jpg?1562791147", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/a/7/a7b40f74-893f-4bfc-87b2-7f8df4c912d8.jpg?1562791147"}, "mana_cost": "{4}{R}", "cmc": 5.0, "type_line": "Creature \u2014 Beast", "oracle_text": "When Batterhorn enters the battlefield, you may destroy target artifact.", "power": "4", "toughness": "3", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "80b2374d-c5f1-403e-9772-f6c806fd275e", "set": "rtr", "set_name": "Return to Ravnica", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/80b2374d-c5f1-403e-9772-f6c806fd275e", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Artr&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/rtr?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/a7b40f74-893f-4bfc-87b2-7f8df4c912d8/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ab9dd5841-7e4b-40bf-9969-e8fb5df46763&unique=prints", "collector_number": "87", "digital": false, "rarity": "common", "flavor_text": "Novice shopkeeps spend hours deciding how best to display their wares. Veterans focus on portability.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Dave Kendall", "artist_ids": ["8a5540a8-18c9-4fa9-802c-59d6866114d5"], "illustration_id": "16d6e535-9505-4bec-81e0-e7ba37a53997", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 19202, "penny_rank": 11781, "prices": {"usd": "0.04", "usd_foil": "0.06", "usd_etched": null, "eur": "0.01", "eur_foil": "0.22", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=265399", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Batterhorn&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Batterhorn&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Batterhorn"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/66526?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Batterhorn&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/46611?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "9ef71f42-87e5-4b1d-aac1-3752b81cee7c", "oracle_id": "a084bca4-fe72-443e-adf4-ab5456c7e699", "multiverse_ids": [39486], "mtgo_id": 18003, "mtgo_foil_id": 18004, "tcgplayer_id": 10582, "cardmarket_id": 1819, "name": "Battering Craghorn", "lang": "en", "released_at": "2002-10-07", "uri": "https://api.scryfall.com/cards/9ef71f42-87e5-4b1d-aac1-3752b81cee7c", "scryfall_uri": "https://scryfall.com/card/ons/188/battering-craghorn?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/9/e/9ef71f42-87e5-4b1d-aac1-3752b81cee7c.jpg?1562932547", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/e/9ef71f42-87e5-4b1d-aac1-3752b81cee7c.jpg?1562932547", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/9/e/9ef71f42-87e5-4b1d-aac1-3752b81cee7c.jpg?1562932547", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/9/e/9ef71f42-87e5-4b1d-aac1-3752b81cee7c.png?1562932547", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/e/9ef71f42-87e5-4b1d-aac1-3752b81cee7c.jpg?1562932547", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/9/e/9ef71f42-87e5-4b1d-aac1-3752b81cee7c.jpg?1562932547"}, "mana_cost": "{2}{R}{R}", "cmc": 4.0, "type_line": "Creature \u2014 Goat Beast", "oracle_text": "First strike\nMorph {1}{R}{R} (You may cast this card face down as a 2/2 creature for {3}. Turn it face up any time for its morph cost.)", "power": "3", "toughness": "1", "colors": ["R"], "color_identity": ["R"], "keywords": ["Morph", "First strike"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "914a6c6d-cb3b-45e8-a2db-9978a2339faf", "set": "ons", "set_name": "Onslaught", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/914a6c6d-cb3b-45e8-a2db-9978a2339faf", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aons&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ons?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/9ef71f42-87e5-4b1d-aac1-3752b81cee7c/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aa084bca4-fe72-443e-adf4-ab5456c7e699&unique=prints", "collector_number": "188", "digital": false, "rarity": "common", "flavor_text": "Their skeletons can be found all over Skirk Ridge, tangled in each other's horns.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Matt Cavotta", "artist_ids": ["2e6a0611-9411-4ba4-98e3-c0e18cbf9f83"], "illustration_id": "6247cdc5-020e-4139-adfe-60ec7d8dc069", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 20356, "prices": {"usd": "0.05", "usd_foil": "0.28", "usd_etched": null, "eur": "0.02", "eur_foil": "0.35", "tix": "0.06"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=39486", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Battering+Craghorn&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Battering+Craghorn&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Battering+Craghorn"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/10582?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Battering+Craghorn&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/18003?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "5d9aa740-9adf-412a-b6ec-0b9bb1b4618b", "oracle_id": "3d0c1301-4fa7-4245-a13f-f613188eb638", "multiverse_ids": [368984], "mtgo_id": 48406, "mtgo_foil_id": 48407, "tcgplayer_id": 67982, "cardmarket_id": 261524, "name": "Battering Krasis", "lang": "en", "released_at": "2013-05-03", "uri": "https://api.scryfall.com/cards/5d9aa740-9adf-412a-b6ec-0b9bb1b4618b", "scryfall_uri": "https://scryfall.com/card/dgm/41/battering-krasis?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/5/d/5d9aa740-9adf-412a-b6ec-0b9bb1b4618b.jpg?1587306439", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/d/5d9aa740-9adf-412a-b6ec-0b9bb1b4618b.jpg?1587306439", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/5/d/5d9aa740-9adf-412a-b6ec-0b9bb1b4618b.jpg?1587306439", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/5/d/5d9aa740-9adf-412a-b6ec-0b9bb1b4618b.png?1587306439", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/d/5d9aa740-9adf-412a-b6ec-0b9bb1b4618b.jpg?1587306439", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/5/d/5d9aa740-9adf-412a-b6ec-0b9bb1b4618b.jpg?1587306439"}, "mana_cost": "{2}{G}", "cmc": 3.0, "type_line": "Creature \u2014 Shark Beast", "oracle_text": "Trample\nEvolve (Whenever a creature enters the battlefield under your control, if that creature has greater power or toughness than this creature, put a +1/+1 counter on this creature.)", "power": "2", "toughness": "1", "colors": ["G"], "color_identity": ["G"], "keywords": ["Evolve", "Trample"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "c8bd8520-cd98-45cd-b533-8d40c2087426", "set": "dgm", "set_name": "Dragon's Maze", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/c8bd8520-cd98-45cd-b533-8d40c2087426", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Adgm&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/dgm?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/5d9aa740-9adf-412a-b6ec-0b9bb1b4618b/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A3d0c1301-4fa7-4245-a13f-f613188eb638&unique=prints", "collector_number": "41", "digital": false, "rarity": "common", "watermark": "simic", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Jack Wang", "artist_ids": ["331942ac-401c-4af3-9d70-85f67717496c"], "illustration_id": "26b29cb3-762b-4f17-bf73-8424b133ecca", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 15899, "penny_rank": 10993, "prices": {"usd": "0.03", "usd_foil": "0.18", "usd_etched": null, "eur": "0.01", "eur_foil": "0.15", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=368984", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Battering+Krasis&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Battering+Krasis&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Battering+Krasis"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/67982?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Battering+Krasis&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/48406?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "e3b425cd-c5a5-48e9-b697-3860dfa6d5d3", "oracle_id": "6a003988-f126-4309-9166-50f3fbf0f30c", "multiverse_ids": [391801], "mtgo_id": 55566, "mtgo_foil_id": 55567, "tcgplayer_id": 95421, "cardmarket_id": 271702, "name": "Battlefront Krushok", "lang": "en", "released_at": "2015-01-23", "uri": "https://api.scryfall.com/cards/e3b425cd-c5a5-48e9-b697-3860dfa6d5d3", "scryfall_uri": "https://scryfall.com/card/frf/125/battlefront-krushok?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/e/3/e3b425cd-c5a5-48e9-b697-3860dfa6d5d3.jpg?1562830855", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/3/e3b425cd-c5a5-48e9-b697-3860dfa6d5d3.jpg?1562830855", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/e/3/e3b425cd-c5a5-48e9-b697-3860dfa6d5d3.jpg?1562830855", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/e/3/e3b425cd-c5a5-48e9-b697-3860dfa6d5d3.png?1562830855", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/3/e3b425cd-c5a5-48e9-b697-3860dfa6d5d3.jpg?1562830855", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/e/3/e3b425cd-c5a5-48e9-b697-3860dfa6d5d3.jpg?1562830855"}, "mana_cost": "{4}{G}", "cmc": 5.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Battlefront Krushok can't be blocked by more than one creature.\nEach creature you control with a +1/+1 counter on it can't be blocked by more than one creature.", "power": "3", "toughness": "4", "colors": ["G"], "color_identity": ["G"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "restricted", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "7bb5cb2b-081a-4c8c-b7e1-494046e6baa1", "set": "frf", "set_name": "Fate Reforged", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/7bb5cb2b-081a-4c8c-b7e1-494046e6baa1", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Afrf&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/frf?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/e3b425cd-c5a5-48e9-b697-3860dfa6d5d3/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A6a003988-f126-4309-9166-50f3fbf0f30c&unique=prints", "collector_number": "125", "digital": false, "rarity": "uncommon", "watermark": "abzan", "flavor_text": "Krushoks clear debris from fertile fields, fallow fields, and battlefields.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Steve Prescott", "artist_ids": ["a1139fb8-41f5-4a9e-9a74-f662e1a23b35"], "illustration_id": "e293f797-457f-4976-8dc9-fe25f69c41fe", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 12052, "penny_rank": 12849, "prices": {"usd": "0.13", "usd_foil": "0.35", "usd_etched": null, "eur": "0.04", "eur_foil": "0.15", "tix": "0.04"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=391801", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Battlefront+Krushok&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Battlefront+Krushok&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Battlefront+Krushok"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/95421?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Battlefront+Krushok&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/55566?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "b07bb2fe-3a9b-47d0-864b-99a662d9544b", "oracle_id": "1de561c7-4ff4-4eb9-8cbe-a29f568e786a", "multiverse_ids": [253589], "mtgo_id": 46663, "mtgo_foil_id": 46664, "tcgplayer_id": 66527, "cardmarket_id": 258389, "name": "Bazaar Krovod", "lang": "en", "released_at": "2012-10-05", "uri": "https://api.scryfall.com/cards/b07bb2fe-3a9b-47d0-864b-99a662d9544b", "scryfall_uri": "https://scryfall.com/card/rtr/7/bazaar-krovod?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/b/0/b07bb2fe-3a9b-47d0-864b-99a662d9544b.jpg?1562791650", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/0/b07bb2fe-3a9b-47d0-864b-99a662d9544b.jpg?1562791650", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/b/0/b07bb2fe-3a9b-47d0-864b-99a662d9544b.jpg?1562791650", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/b/0/b07bb2fe-3a9b-47d0-864b-99a662d9544b.png?1562791650", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/0/b07bb2fe-3a9b-47d0-864b-99a662d9544b.jpg?1562791650", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/b/0/b07bb2fe-3a9b-47d0-864b-99a662d9544b.jpg?1562791650"}, "mana_cost": "{4}{W}", "cmc": 5.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Whenever Bazaar Krovod attacks, another target attacking creature gets +0/+2 until end of turn. Untap that creature.", "power": "2", "toughness": "5", "colors": ["W"], "color_identity": ["W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "restricted", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "80b2374d-c5f1-403e-9772-f6c806fd275e", "set": "rtr", "set_name": "Return to Ravnica", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/80b2374d-c5f1-403e-9772-f6c806fd275e", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Artr&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/rtr?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/b07bb2fe-3a9b-47d0-864b-99a662d9544b/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A1de561c7-4ff4-4eb9-8cbe-a29f568e786a&unique=prints", "collector_number": "7", "digital": false, "rarity": "uncommon", "flavor_text": "The Hauler's Collective wields great influence over the Ravnican merchant class. Without it, little moves in the city.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Lars Grant-West", "artist_ids": ["21ed6499-c4d3-4965-ab02-6c7228275bec"], "illustration_id": "4b763d77-9b08-4ee0-a4de-fdb0b827db38", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 20825, "penny_rank": 12543, "prices": {"usd": "0.02", "usd_foil": "0.18", "usd_etched": null, "eur": "0.02", "eur_foil": "0.05", "tix": "0.04"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=253589", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Bazaar+Krovod&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Bazaar+Krovod&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Bazaar+Krovod"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/66527?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Bazaar+Krovod&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/46663?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "0cc42e33-7489-4a32-bb30-adc80ec13521", "oracle_id": "25571850-d5c6-460f-b212-9fc9aa705277", "multiverse_ids": [177931], "mtgo_id": 31811, "mtgo_foil_id": 31812, "tcgplayer_id": 28503, "cardmarket_id": 20721, "name": "Beacon Behemoth", "lang": "en", "released_at": "2009-02-06", "uri": "https://api.scryfall.com/cards/0cc42e33-7489-4a32-bb30-adc80ec13521", "scryfall_uri": "https://scryfall.com/card/con/78/beacon-behemoth?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/0/c/0cc42e33-7489-4a32-bb30-adc80ec13521.jpg?1562799353", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/c/0cc42e33-7489-4a32-bb30-adc80ec13521.jpg?1562799353", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/0/c/0cc42e33-7489-4a32-bb30-adc80ec13521.jpg?1562799353", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/0/c/0cc42e33-7489-4a32-bb30-adc80ec13521.png?1562799353", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/c/0cc42e33-7489-4a32-bb30-adc80ec13521.jpg?1562799353", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/0/c/0cc42e33-7489-4a32-bb30-adc80ec13521.jpg?1562799353"}, "mana_cost": "{3}{G}{G}", "cmc": 5.0, "type_line": "Creature \u2014 Beast", "oracle_text": "{1}: Target creature with power 5 or greater gains vigilance until end of turn.", "power": "5", "toughness": "3", "colors": ["G"], "color_identity": ["G"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "76b2db58-904c-4e49-8580-9f62f7b3cca4", "set": "con", "set_name": "Conflux", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/76b2db58-904c-4e49-8580-9f62f7b3cca4", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Acon&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/con?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/0cc42e33-7489-4a32-bb30-adc80ec13521/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A25571850-d5c6-460f-b212-9fc9aa705277&unique=prints", "collector_number": "78", "digital": false, "rarity": "common", "flavor_text": "When its smoky plumes light Naya's sky, every creature from the smallest pip fawn to the largest rannet heeds the warning.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Jesper Ejsing", "artist_ids": ["a5f8354a-8b51-4e59-96b2-0e3aeae4fa1d"], "illustration_id": "5f2bf964-5309-4c53-9927-32b8cf62f80d", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 16663, "penny_rank": 7707, "prices": {"usd": "0.08", "usd_foil": "0.17", "usd_etched": null, "eur": "0.15", "eur_foil": "0.25", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=177931", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Beacon+Behemoth&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Beacon+Behemoth&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Beacon+Behemoth"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/28503?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Beacon+Behemoth&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/31811?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "35ed069c-410f-4b30-afd1-8d04742068e7", "oracle_id": "4c7f54be-70f6-4fc4-b1e0-e46766c37d01", "multiverse_ids": [439492], "tcgplayer_id": 152912, "cardmarket_id": 313807, "name": "Beast in Show", "lang": "en", "released_at": "2017-12-08", "uri": "https://api.scryfall.com/cards/35ed069c-410f-4b30-afd1-8d04742068e7", "scryfall_uri": "https://scryfall.com/card/ust/103a/beast-in-show?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/3/5/35ed069c-410f-4b30-afd1-8d04742068e7.jpg?1562906387", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/5/35ed069c-410f-4b30-afd1-8d04742068e7.jpg?1562906387", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/3/5/35ed069c-410f-4b30-afd1-8d04742068e7.jpg?1562906387", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/3/5/35ed069c-410f-4b30-afd1-8d04742068e7.png?1562906387", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/5/35ed069c-410f-4b30-afd1-8d04742068e7.jpg?1562906387", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/3/5/35ed069c-410f-4b30-afd1-8d04742068e7.jpg?1562906387"}, "mana_cost": "{4}{G}{G}", "cmc": 6.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Trample", "power": "6", "toughness": "4", "colors": ["G"], "color_identity": ["G"], "keywords": ["Trample"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "not_legal", "pauper": "not_legal", "vintage": "not_legal", "penny": "not_legal", "commander": "not_legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "not_legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "83491685-880d-41dd-a4af-47d2b3b17c10", "set": "ust", "set_name": "Unstable", "set_type": "funny", "set_uri": "https://api.scryfall.com/sets/83491685-880d-41dd-a4af-47d2b3b17c10", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aust&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ust?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/35ed069c-410f-4b30-afd1-8d04742068e7/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A4c7f54be-70f6-4fc4-b1e0-e46766c37d01&unique=prints", "collector_number": "103a", "digital": false, "rarity": "common", "flavor_text": "\"A stunning example of the breed! Flawless plating, ruthlessly efficient death stroke, and an excellent drool shimmer.\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Mike Burns", "artist_ids": ["184b88b1-b679-4907-91b0-b2f2a458ae20"], "illustration_id": "94a08062-e1a4-420a-a56b-ed8792d5c437", "border_color": "silver", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "prices": {"usd": "0.10", "usd_foil": "1.95", "usd_etched": null, "eur": "0.02", "eur_foil": "1.23", "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=439492", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Beast+in+Show&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Beast+in+Show&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Beast+in+Show"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/152912?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Beast+in+Show&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Beast+in+Show&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "7693877c-958f-4c67-93d5-7db8f2dd87e7", "oracle_id": "4c7f54be-70f6-4fc4-b1e0-e46766c37d01", "multiverse_ids": [439619], "tcgplayer_id": 154434, "cardmarket_id": 314439, "name": "Beast in Show", "lang": "en", "released_at": "2017-12-08", "uri": "https://api.scryfall.com/cards/7693877c-958f-4c67-93d5-7db8f2dd87e7", "scryfall_uri": "https://scryfall.com/card/ust/103b/beast-in-show?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/7/6/7693877c-958f-4c67-93d5-7db8f2dd87e7.jpg?1562919934", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/6/7693877c-958f-4c67-93d5-7db8f2dd87e7.jpg?1562919934", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/7/6/7693877c-958f-4c67-93d5-7db8f2dd87e7.jpg?1562919934", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/7/6/7693877c-958f-4c67-93d5-7db8f2dd87e7.png?1562919934", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/6/7693877c-958f-4c67-93d5-7db8f2dd87e7.jpg?1562919934", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/7/6/7693877c-958f-4c67-93d5-7db8f2dd87e7.jpg?1562919934"}, "mana_cost": "{4}{G}{G}", "cmc": 6.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Trample", "power": "6", "toughness": "4", "colors": ["G"], "color_identity": ["G"], "keywords": ["Trample"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "not_legal", "pauper": "not_legal", "vintage": "not_legal", "penny": "not_legal", "commander": "not_legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "not_legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "83491685-880d-41dd-a4af-47d2b3b17c10", "set": "ust", "set_name": "Unstable", "set_type": "funny", "set_uri": "https://api.scryfall.com/sets/83491685-880d-41dd-a4af-47d2b3b17c10", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aust&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ust?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/7693877c-958f-4c67-93d5-7db8f2dd87e7/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A4c7f54be-70f6-4fc4-b1e0-e46766c37d01&unique=prints", "collector_number": "103b", "digital": false, "rarity": "common", "flavor_text": "\"We've not seen one of these on the podium for many seasons. Such magnificent posture and the perfect amount of telltale odor.\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Mike Burns", "artist_ids": ["184b88b1-b679-4907-91b0-b2f2a458ae20"], "illustration_id": "03ac7aa8-4b71-4ce4-b015-d1c9f5251bc1", "border_color": "silver", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "prices": {"usd": "0.13", "usd_foil": "3.50", "usd_etched": null, "eur": "0.07", "eur_foil": "0.99", "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=439619", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Beast+in+Show&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Beast+in+Show&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Beast+in+Show"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/154434?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Beast+in+Show&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Beast+in+Show&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "c90b6269-7406-40c9-8d4c-3448698a1fdd", "oracle_id": "4c7f54be-70f6-4fc4-b1e0-e46766c37d01", "multiverse_ids": [439620], "tcgplayer_id": 154436, "cardmarket_id": 314438, "name": "Beast in Show", "lang": "en", "released_at": "2017-12-08", "uri": "https://api.scryfall.com/cards/c90b6269-7406-40c9-8d4c-3448698a1fdd", "scryfall_uri": "https://scryfall.com/card/ust/103c/beast-in-show?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/c/9/c90b6269-7406-40c9-8d4c-3448698a1fdd.jpg?1562937465", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/9/c90b6269-7406-40c9-8d4c-3448698a1fdd.jpg?1562937465", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/c/9/c90b6269-7406-40c9-8d4c-3448698a1fdd.jpg?1562937465", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/c/9/c90b6269-7406-40c9-8d4c-3448698a1fdd.png?1562937465", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/9/c90b6269-7406-40c9-8d4c-3448698a1fdd.jpg?1562937465", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/c/9/c90b6269-7406-40c9-8d4c-3448698a1fdd.jpg?1562937465"}, "mana_cost": "{4}{G}{G}", "cmc": 6.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Trample", "power": "6", "toughness": "4", "colors": ["G"], "color_identity": ["G"], "keywords": ["Trample"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "not_legal", "pauper": "not_legal", "vintage": "not_legal", "penny": "not_legal", "commander": "not_legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "not_legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "83491685-880d-41dd-a4af-47d2b3b17c10", "set": "ust", "set_name": "Unstable", "set_type": "funny", "set_uri": "https://api.scryfall.com/sets/83491685-880d-41dd-a4af-47d2b3b17c10", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aust&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ust?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/c90b6269-7406-40c9-8d4c-3448698a1fdd/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A4c7f54be-70f6-4fc4-b1e0-e46766c37d01&unique=prints", "collector_number": "103c", "digital": false, "rarity": "common", "flavor_text": "\"Something really special in the baloth category this season, in terms of spike density and quality. We'd like to get a word with the handler, but are unable to locate her at this time.\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Mike Burns", "artist_ids": ["184b88b1-b679-4907-91b0-b2f2a458ae20"], "illustration_id": "a6e70fca-281d-4c5a-bd01-8cacbbd50238", "border_color": "silver", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "prices": {"usd": "0.10", "usd_foil": "0.87", "usd_etched": null, "eur": "0.05", "eur_foil": "0.86", "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=439620", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Beast+in+Show&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Beast+in+Show&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Beast+in+Show"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/154436?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Beast+in+Show&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Beast+in+Show&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "9f7191d7-2c2c-470e-a2b6-eeb8f3031cc2", "oracle_id": "4c7f54be-70f6-4fc4-b1e0-e46766c37d01", "multiverse_ids": [439621], "tcgplayer_id": 154437, "cardmarket_id": 314440, "name": "Beast in Show", "lang": "en", "released_at": "2017-12-08", "uri": "https://api.scryfall.com/cards/9f7191d7-2c2c-470e-a2b6-eeb8f3031cc2", "scryfall_uri": "https://scryfall.com/card/ust/103d/beast-in-show?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/9/f/9f7191d7-2c2c-470e-a2b6-eeb8f3031cc2.jpg?1562928685", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/f/9f7191d7-2c2c-470e-a2b6-eeb8f3031cc2.jpg?1562928685", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/9/f/9f7191d7-2c2c-470e-a2b6-eeb8f3031cc2.jpg?1562928685", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/9/f/9f7191d7-2c2c-470e-a2b6-eeb8f3031cc2.png?1562928685", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/f/9f7191d7-2c2c-470e-a2b6-eeb8f3031cc2.jpg?1562928685", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/9/f/9f7191d7-2c2c-470e-a2b6-eeb8f3031cc2.jpg?1562928685"}, "mana_cost": "{4}{G}{G}", "cmc": 6.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Trample", "power": "6", "toughness": "4", "colors": ["G"], "color_identity": ["G"], "keywords": ["Trample"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "not_legal", "pauper": "not_legal", "vintage": "not_legal", "penny": "not_legal", "commander": "not_legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "not_legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "83491685-880d-41dd-a4af-47d2b3b17c10", "set": "ust", "set_name": "Unstable", "set_type": "funny", "set_uri": "https://api.scryfall.com/sets/83491685-880d-41dd-a4af-47d2b3b17c10", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aust&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ust?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/9f7191d7-2c2c-470e-a2b6-eeb8f3031cc2/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A4c7f54be-70f6-4fc4-b1e0-e46766c37d01&unique=prints", "collector_number": "103d", "digital": false, "rarity": "common", "flavor_text": "\"Not a surprise to see her on the podium. This paragon of tusk curvature is just the latest addition to the long championship lineage of Wildspeaker Ranch.\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Mike Burns", "artist_ids": ["184b88b1-b679-4907-91b0-b2f2a458ae20"], "illustration_id": "ed537ee0-de9a-4cad-a6d9-5aa4531958f5", "border_color": "silver", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "prices": {"usd": "0.13", "usd_foil": "1.31", "usd_etched": null, "eur": "0.09", "eur_foil": "0.76", "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=439621", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Beast+in+Show&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Beast+in+Show&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Beast+in+Show"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/154437?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Beast+in+Show&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Beast+in+Show&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "f885d776-2953-4ed4-b63f-91dc2b42783b", "oracle_id": "9b0bc2d3-d64b-455a-a258-d3c91892f1a7", "multiverse_ids": [1559], "tcgplayer_id": 3810, "cardmarket_id": 7104, "name": "Beasts of Bogardan", "lang": "en", "released_at": "1994-06-01", "uri": "https://api.scryfall.com/cards/f885d776-2953-4ed4-b63f-91dc2b42783b", "scryfall_uri": "https://scryfall.com/card/leg/133/beasts-of-bogardan?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/f/8/f885d776-2953-4ed4-b63f-91dc2b42783b.jpg?1562861851", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/8/f885d776-2953-4ed4-b63f-91dc2b42783b.jpg?1562861851", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/f/8/f885d776-2953-4ed4-b63f-91dc2b42783b.jpg?1562861851", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/f/8/f885d776-2953-4ed4-b63f-91dc2b42783b.png?1562861851", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/8/f885d776-2953-4ed4-b63f-91dc2b42783b.jpg?1562861851", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/f/8/f885d776-2953-4ed4-b63f-91dc2b42783b.jpg?1562861851"}, "mana_cost": "{4}{R}", "cmc": 5.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Protection from red\nBeasts of Bogardan gets +1/+1 as long as an opponent controls a nontoken white permanent.", "power": "3", "toughness": "3", "colors": ["R"], "color_identity": ["R"], "keywords": ["Protection"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "restricted", "duel": "legal", "oldschool": "legal", "premodern": "legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "78c50b4b-b220-455b-a2d5-cee458fa56f3", "set": "leg", "set_name": "Legends", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/78c50b4b-b220-455b-a2d5-cee458fa56f3", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aleg&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/leg?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/f885d776-2953-4ed4-b63f-91dc2b42783b/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A9b0bc2d3-d64b-455a-a258-d3c91892f1a7&unique=prints", "collector_number": "133", "digital": false, "rarity": "uncommon", "flavor_text": "Bogardan is a land as volatile as the creatures who live there.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Daniel Gelon", "artist_ids": ["63ac31a8-dd1a-4679-9f82-ece89429a084"], "illustration_id": "3d486fc4-3eae-465c-b58f-a3fde449fa67", "border_color": "black", "frame": "1993", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 22542, "prices": {"usd": "3.12", "usd_foil": null, "usd_etched": null, "eur": "7.70", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=1559", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Beasts+of+Bogardan&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Beasts+of+Bogardan&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Beasts+of+Bogardan"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/3810?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Beasts+of+Bogardan&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Beasts+of+Bogardan&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "99b42f6c-5c7e-4ba8-b0fb-ac8564aaf825", "oracle_id": "68dfc626-66d5-4a40-9410-2b15676ebcec", "multiverse_ids": [3017], "tcgplayer_id": 4462, "cardmarket_id": 7820, "name": "Beast Walkers", "lang": "en", "released_at": "1995-10-01", "uri": "https://api.scryfall.com/cards/99b42f6c-5c7e-4ba8-b0fb-ac8564aaf825", "scryfall_uri": "https://scryfall.com/card/hml/6/beast-walkers?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/9/9/99b42f6c-5c7e-4ba8-b0fb-ac8564aaf825.jpg?1562587770", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/9/99b42f6c-5c7e-4ba8-b0fb-ac8564aaf825.jpg?1562587770", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/9/9/99b42f6c-5c7e-4ba8-b0fb-ac8564aaf825.jpg?1562587770", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/9/9/99b42f6c-5c7e-4ba8-b0fb-ac8564aaf825.png?1562587770", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/9/99b42f6c-5c7e-4ba8-b0fb-ac8564aaf825.jpg?1562587770", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/9/9/99b42f6c-5c7e-4ba8-b0fb-ac8564aaf825.jpg?1562587770"}, "mana_cost": "{1}{W}{W}", "cmc": 3.0, "type_line": "Creature \u2014 Human Beast Soldier", "oracle_text": "{G}: Beast Walkers gains banding until end of turn. (Any creatures with banding, and up to one without, can attack in a band. Bands are blocked as a group. If any creatures with banding you control are blocking or being blocked by a creature, you divide that creature's combat damage, not its controller, among any of the creatures it's being blocked by or is blocking.)", "power": "2", "toughness": "2", "colors": ["W"], "color_identity": ["G", "W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper"], "reserved": true, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "5ac1f606-e682-46e9-ad0f-122a3783581b", "set": "hml", "set_name": "Homelands", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/5ac1f606-e682-46e9-ad0f-122a3783581b", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ahml&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/hml?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/99b42f6c-5c7e-4ba8-b0fb-ac8564aaf825/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A68dfc626-66d5-4a40-9410-2b15676ebcec&unique=prints", "collector_number": "6", "digital": false, "rarity": "rare", "flavor_text": "\"The Beast Walkers do a great service to Aysen. As humans or as beasts, their heart is yet to Serra true.\"\n\u2014Baris, Serra Inquisitor", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Heather Hudson", "artist_ids": ["4441fe52-9e41-40c1-9b74-8510426279ab"], "illustration_id": "7a34035f-fab8-4ef0-90d3-745dc40755ed", "border_color": "black", "frame": "1993", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 21775, "prices": {"usd": "0.81", "usd_foil": null, "usd_etched": null, "eur": "1.75", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=3017", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Beast+Walkers&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Beast+Walkers&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Beast+Walkers"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/4462?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Beast+Walkers&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Beast+Walkers&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "499c4674-dd9f-4848-8447-721f842a0213", "oracle_id": "a762e8cb-9d33-41fc-b2e8-0c5ad4d7268e", "multiverse_ids": [44334], "mtgo_id": 18579, "mtgo_foil_id": 18580, "tcgplayer_id": 10793, "cardmarket_id": 2098, "name": "Berserk Murlodont", "lang": "en", "released_at": "2003-02-03", "uri": "https://api.scryfall.com/cards/499c4674-dd9f-4848-8447-721f842a0213", "scryfall_uri": "https://scryfall.com/card/lgn/117/berserk-murlodont?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/4/9/499c4674-dd9f-4848-8447-721f842a0213.jpg?1562909903", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/9/499c4674-dd9f-4848-8447-721f842a0213.jpg?1562909903", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/4/9/499c4674-dd9f-4848-8447-721f842a0213.jpg?1562909903", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/4/9/499c4674-dd9f-4848-8447-721f842a0213.png?1562909903", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/9/499c4674-dd9f-4848-8447-721f842a0213.jpg?1562909903", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/4/9/499c4674-dd9f-4848-8447-721f842a0213.jpg?1562909903"}, "mana_cost": "{4}{G}", "cmc": 5.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Whenever a Beast becomes blocked, it gets +1/+1 until end of turn for each creature blocking it.", "power": "3", "toughness": "3", "colors": ["G"], "color_identity": ["G"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "c2d60a18-1a81-4784-8e0c-e1de2f43c5cf", "set": "lgn", "set_name": "Legions", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/c2d60a18-1a81-4784-8e0c-e1de2f43c5cf", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Algn&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/lgn?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/499c4674-dd9f-4848-8447-721f842a0213/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aa762e8cb-9d33-41fc-b2e8-0c5ad4d7268e&unique=prints", "collector_number": "117", "digital": false, "rarity": "common", "flavor_text": "\"The harder we press forward, the harder Krosa pushes us back.\"\n\u2014Aven scout", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Arnie Swekel", "artist_ids": ["af10ecf2-eb82-4100-97b2-6c236b0fa644"], "illustration_id": "a9e5a0fb-d779-4f21-889d-12b437b6406d", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 20949, "prices": {"usd": "0.10", "usd_foil": "0.30", "usd_etched": null, "eur": "0.02", "eur_foil": "0.14", "tix": "0.06"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=44334", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Berserk+Murlodont&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Berserk+Murlodont&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Berserk+Murlodont"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/10793?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Berserk+Murlodont&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/18579?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "1354ca60-7183-47ae-ba7b-0871311cba66", "oracle_id": "d6ee8bd6-0207-46ee-9892-c1d1b23b934e", "multiverse_ids": [201831], "mtgo_id": 34950, "mtgo_foil_id": 34951, "tcgplayer_id": 37651, "cardmarket_id": 22008, "name": "Blastoderm", "lang": "en", "released_at": "2009-10-30", "uri": "https://api.scryfall.com/cards/1354ca60-7183-47ae-ba7b-0871311cba66", "scryfall_uri": "https://scryfall.com/card/ddd/7/blastoderm?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/1/3/1354ca60-7183-47ae-ba7b-0871311cba66.jpg?1562089277", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/3/1354ca60-7183-47ae-ba7b-0871311cba66.jpg?1562089277", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/1/3/1354ca60-7183-47ae-ba7b-0871311cba66.jpg?1562089277", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/1/3/1354ca60-7183-47ae-ba7b-0871311cba66.png?1562089277", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/3/1354ca60-7183-47ae-ba7b-0871311cba66.jpg?1562089277", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/1/3/1354ca60-7183-47ae-ba7b-0871311cba66.jpg?1562089277"}, "mana_cost": "{2}{G}{G}", "cmc": 4.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Shroud (This creature can't be the target of spells or abilities.)\nFading 3 (This creature enters the battlefield with three fade counters on it. At the beginning of your upkeep, remove a fade counter from it. If you can't, sacrifice it.)", "power": "5", "toughness": "5", "colors": ["G"], "color_identity": ["G"], "keywords": ["Shroud", "Fading"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "15f41db6-1810-475b-bf2c-24a488050a37", "set": "ddd", "set_name": "Duel Decks: Garruk vs. Liliana", "set_type": "duel_deck", "set_uri": "https://api.scryfall.com/sets/15f41db6-1810-475b-bf2c-24a488050a37", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Addd&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ddd?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/1354ca60-7183-47ae-ba7b-0871311cba66/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ad6ee8bd6-0207-46ee-9892-c1d1b23b934e&unique=prints", "collector_number": "7", "digital": false, "rarity": "common", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Nils Hamm", "artist_ids": ["c540d1fc-1500-457f-93cf-d6069ee66546"], "illustration_id": "73115fb1-8eef-4105-bae2-b566324bdaee", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "edhrec_rank": 20450, "penny_rank": 4526, "prices": {"usd": "0.11", "usd_foil": null, "usd_etched": null, "eur": "0.02", "eur_foil": null, "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=201831", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Blastoderm&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Blastoderm&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Blastoderm"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/37651?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Blastoderm&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/34950?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "9db5d6c2-b11f-442a-b172-c0c99c9bec07", "oracle_id": "d6ee8bd6-0207-46ee-9892-c1d1b23b934e", "multiverse_ids": [21363], "mtgo_id": 13935, "mtgo_foil_id": 13936, "tcgplayer_id": 7133, "cardmarket_id": 11825, "name": "Blastoderm", "lang": "en", "released_at": "2000-02-14", "uri": "https://api.scryfall.com/cards/9db5d6c2-b11f-442a-b172-c0c99c9bec07", "scryfall_uri": "https://scryfall.com/card/nem/102/blastoderm?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/9/d/9db5d6c2-b11f-442a-b172-c0c99c9bec07.jpg?1562631252", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/d/9db5d6c2-b11f-442a-b172-c0c99c9bec07.jpg?1562631252", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/9/d/9db5d6c2-b11f-442a-b172-c0c99c9bec07.jpg?1562631252", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/9/d/9db5d6c2-b11f-442a-b172-c0c99c9bec07.png?1562631252", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/d/9db5d6c2-b11f-442a-b172-c0c99c9bec07.jpg?1562631252", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/9/d/9db5d6c2-b11f-442a-b172-c0c99c9bec07.jpg?1562631252"}, "mana_cost": "{2}{G}{G}", "cmc": 4.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Shroud (This creature can't be the target of spells or abilities.)\nFading 3 (This creature enters the battlefield with three fade counters on it. At the beginning of your upkeep, remove a fade counter from it. If you can't, sacrifice it.)", "power": "5", "toughness": "5", "colors": ["G"], "color_identity": ["G"], "keywords": ["Shroud", "Fading"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "fa5d1fdb-f781-473d-b14d-50396d40d43f", "set": "nem", "set_name": "Nemesis", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/fa5d1fdb-f781-473d-b14d-50396d40d43f", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Anem&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/nem?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/9db5d6c2-b11f-442a-b172-c0c99c9bec07/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ad6ee8bd6-0207-46ee-9892-c1d1b23b934e&unique=prints", "collector_number": "102", "digital": false, "rarity": "common", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Eric Peterson", "artist_ids": ["0fc26d3b-4c0e-41d1-8eb3-286ab55a2328"], "illustration_id": "d321cae6-892f-4915-97f8-fe21dfa5d7cd", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 20450, "penny_rank": 4526, "prices": {"usd": "0.14", "usd_foil": "7.98", "usd_etched": null, "eur": "0.29", "eur_foil": "14.55", "tix": "0.05"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=21363", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Blastoderm&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Blastoderm&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Blastoderm"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/7133?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Blastoderm&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/13935?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "7865c079-1d91-48d4-852d-d104b6e0c157", "oracle_id": "4098ab29-bf90-4ec9-b547-05d304fc7798", "multiverse_ids": [476337], "mtgo_id": 79296, "arena_id": 70597, "tcgplayer_id": 207130, "cardmarket_id": 432189, "name": "Blight-Breath Catoblepas", "lang": "en", "released_at": "2020-01-24", "uri": "https://api.scryfall.com/cards/7865c079-1d91-48d4-852d-d104b6e0c157", "scryfall_uri": "https://scryfall.com/card/thb/86/blight-breath-catoblepas?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/7/8/7865c079-1d91-48d4-852d-d104b6e0c157.jpg?1616399490", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/8/7865c079-1d91-48d4-852d-d104b6e0c157.jpg?1616399490", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/7/8/7865c079-1d91-48d4-852d-d104b6e0c157.jpg?1616399490", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/7/8/7865c079-1d91-48d4-852d-d104b6e0c157.png?1616399490", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/8/7865c079-1d91-48d4-852d-d104b6e0c157.jpg?1616399490", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/7/8/7865c079-1d91-48d4-852d-d104b6e0c157.jpg?1616399490"}, "mana_cost": "{4}{B}{B}", "cmc": 6.0, "type_line": "Creature \u2014 Beast", "oracle_text": "When Blight-Breath Catoblepas enters the battlefield, target creature an opponent controls gets -X/-X until end of turn, where X is your devotion to black. (Each {B} in the mana costs of permanents you control counts toward your devotion to black.)", "power": "3", "toughness": "2", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "5f23a78d-cda1-462a-8be3-a62b40c34913", "set": "thb", "set_name": "Theros Beyond Death", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/5f23a78d-cda1-462a-8be3-a62b40c34913", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Athb&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/thb?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/7865c079-1d91-48d4-852d-d104b6e0c157/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A4098ab29-bf90-4ec9-b547-05d304fc7798&unique=prints", "collector_number": "86", "digital": false, "rarity": "common", "flavor_text": "Wherever it walks, famine follows behind.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Antonio Jos\u00e9 Manzanedo", "artist_ids": ["74986d28-0001-4a78-827c-e490b325d0e3"], "illustration_id": "dfee1d5b-f87e-44f5-b05f-ffafaf06c786", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 14813, "preview": {"source": "Wizards of the Coast", "source_uri": "https://twitter.com/Wizards_MagicBR/status/1215421211527843840?s=09", "previewed_at": "2020-01-09"}, "prices": {"usd": "0.02", "usd_foil": "0.04", "usd_etched": null, "eur": "0.05", "eur_foil": "0.10", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=476337", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Blight-Breath+Catoblepas&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Blight-Breath+Catoblepas&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Blight-Breath+Catoblepas"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/207130?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Blight-Breath+Catoblepas&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/79296?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "86d5440a-7460-4b4f-a167-a6c4fb2d855e", "oracle_id": "02d4c3a8-c733-45c1-bca5-51eed47c9230", "multiverse_ids": [50212], "mtgo_id": 20634, "mtgo_foil_id": 20635, "tcgplayer_id": 11837, "cardmarket_id": 538, "name": "Blind Creeper", "lang": "en", "released_at": "2004-06-04", "uri": "https://api.scryfall.com/cards/86d5440a-7460-4b4f-a167-a6c4fb2d855e", "scryfall_uri": "https://scryfall.com/card/5dn/42/blind-creeper?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/8/6/86d5440a-7460-4b4f-a167-a6c4fb2d855e.jpg?1562878236", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/6/86d5440a-7460-4b4f-a167-a6c4fb2d855e.jpg?1562878236", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/8/6/86d5440a-7460-4b4f-a167-a6c4fb2d855e.jpg?1562878236", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/8/6/86d5440a-7460-4b4f-a167-a6c4fb2d855e.png?1562878236", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/6/86d5440a-7460-4b4f-a167-a6c4fb2d855e.jpg?1562878236", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/8/6/86d5440a-7460-4b4f-a167-a6c4fb2d855e.jpg?1562878236"}, "mana_cost": "{1}{B}", "cmc": 2.0, "type_line": "Creature \u2014 Zombie Beast", "oracle_text": "Whenever a player casts a spell, Blind Creeper gets -1/-1 until end of turn.", "power": "3", "toughness": "3", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "e4bc1b87-5476-463c-8640-4c414ecf1763", "set": "5dn", "set_name": "Fifth Dawn", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/e4bc1b87-5476-463c-8640-4c414ecf1763", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3A5dn&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/5dn?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/86d5440a-7460-4b4f-a167-a6c4fb2d855e/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A02d4c3a8-c733-45c1-bca5-51eed47c9230&unique=prints", "collector_number": "42", "digital": false, "rarity": "common", "flavor_text": "It shuns everything except its next meal.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Carl Critchlow", "artist_ids": ["17948f16-611a-44b8-8d10-9895a0bdfff1"], "illustration_id": "2368cd72-cb20-414b-a0f2-e23672534725", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 23182, "penny_rank": 10268, "prices": {"usd": "0.08", "usd_foil": "0.03", "usd_etched": null, "eur": "0.07", "eur_foil": "0.15", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=50212", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Blind+Creeper&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Blind+Creeper&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Blind+Creeper"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/11837?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Blind+Creeper&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/20634?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "743779d4-fee8-4b8d-a5ac-27f355e006e5", "oracle_id": "41fa3954-119b-4ff2-ad56-9105482f6b7c", "multiverse_ids": [44209], "mtgo_id": 18457, "mtgo_foil_id": 18458, "tcgplayer_id": 10770, "cardmarket_id": 2070, "name": "Bloodstoke Howler", "lang": "en", "released_at": "2003-02-03", "uri": "https://api.scryfall.com/cards/743779d4-fee8-4b8d-a5ac-27f355e006e5", "scryfall_uri": "https://scryfall.com/card/lgn/89/bloodstoke-howler?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/7/4/743779d4-fee8-4b8d-a5ac-27f355e006e5.jpg?1562918274", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/4/743779d4-fee8-4b8d-a5ac-27f355e006e5.jpg?1562918274", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/7/4/743779d4-fee8-4b8d-a5ac-27f355e006e5.jpg?1562918274", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/7/4/743779d4-fee8-4b8d-a5ac-27f355e006e5.png?1562918274", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/4/743779d4-fee8-4b8d-a5ac-27f355e006e5.jpg?1562918274", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/7/4/743779d4-fee8-4b8d-a5ac-27f355e006e5.jpg?1562918274"}, "mana_cost": "{5}{R}", "cmc": 6.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Morph {6}{R} (You may cast this card face down as a 2/2 creature for {3}. Turn it face up any time for its morph cost.)\nWhen Bloodstoke Howler is turned face up, Beast creatures you control get +3/+0 until end of turn.", "power": "3", "toughness": "4", "colors": ["R"], "color_identity": ["R"], "keywords": ["Morph"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "c2d60a18-1a81-4784-8e0c-e1de2f43c5cf", "set": "lgn", "set_name": "Legions", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/c2d60a18-1a81-4784-8e0c-e1de2f43c5cf", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Algn&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/lgn?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/743779d4-fee8-4b8d-a5ac-27f355e006e5/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A41fa3954-119b-4ff2-ad56-9105482f6b7c&unique=prints", "collector_number": "89", "digital": false, "rarity": "common", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Christopher Moeller", "artist_ids": ["21e10012-06ae-44f2-b38d-3824dd2e73d4"], "illustration_id": "659fe6ff-13da-4066-94cf-b457e43eb1e0", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 22912, "prices": {"usd": "0.09", "usd_foil": "0.31", "usd_etched": null, "eur": "0.02", "eur_foil": "0.10", "tix": "0.06"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=44209", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Bloodstoke+Howler&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Bloodstoke+Howler&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Bloodstoke+Howler"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/10770?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Bloodstoke+Howler&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/18457?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "332153ab-1b8e-40a8-b0b4-01f94866d368", "oracle_id": "30f3c3be-0fe9-463d-a245-e44701aec7f2", "multiverse_ids": [518455], "mtgo_id": 89861, "tcgplayer_id": 236534, "cardmarket_id": 559662, "name": "Blossoming Bogbeast", "lang": "en", "released_at": "2021-04-23", "uri": "https://api.scryfall.com/cards/332153ab-1b8e-40a8-b0b4-01f94866d368", "scryfall_uri": "https://scryfall.com/card/c21/59/blossoming-bogbeast?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/3/3/332153ab-1b8e-40a8-b0b4-01f94866d368.jpg?1625192204", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/3/332153ab-1b8e-40a8-b0b4-01f94866d368.jpg?1625192204", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/3/3/332153ab-1b8e-40a8-b0b4-01f94866d368.jpg?1625192204", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/3/3/332153ab-1b8e-40a8-b0b4-01f94866d368.png?1625192204", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/3/332153ab-1b8e-40a8-b0b4-01f94866d368.jpg?1625192204", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/3/3/332153ab-1b8e-40a8-b0b4-01f94866d368.jpg?1625192204"}, "mana_cost": "{4}{G}", "cmc": 5.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Whenever Blossoming Bogbeast attacks, you gain 2 life. Then creatures you control gain trample and get +X/+X until end of turn, where X is the amount of life you gained this turn.", "power": "3", "toughness": "3", "colors": ["G"], "color_identity": ["G"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "27bf6dbd-a9e1-4904-afa7-d28fc7745c4f", "set": "c21", "set_name": "Commander 2021", "set_type": "commander", "set_uri": "https://api.scryfall.com/sets/27bf6dbd-a9e1-4904-afa7-d28fc7745c4f", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ac21&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/c21?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/332153ab-1b8e-40a8-b0b4-01f94866d368/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A30f3c3be-0fe9-463d-a245-e44701aec7f2&unique=prints", "collector_number": "59", "digital": false, "rarity": "rare", "flavor_text": "As subtle as a bogbeast\n\u2014Witherbloom expression meaning\n\"crude and clumsy\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Aaron Miller", "artist_ids": ["fc021f3d-773a-4706-bbe7-f602324f511f"], "illustration_id": "abd02d17-d579-457f-a54d-784e5db55f49", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "edhrec_rank": 2493, "prices": {"usd": "0.58", "usd_foil": null, "usd_etched": null, "eur": "0.75", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=518455", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Blossoming+Bogbeast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Blossoming+Bogbeast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Blossoming+Bogbeast"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/236534?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Blossoming+Bogbeast&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/89861?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "3f230831-023c-41aa-832e-16ac81e68588", "oracle_id": "537ebea5-f805-4f78-9151-58eb43c4a62d", "multiverse_ids": [27153], "mtgo_id": 16150, "mtgo_foil_id": 16151, "tcgplayer_id": 7917, "cardmarket_id": 3188, "name": "Bog Gnarr", "lang": "en", "released_at": "2001-06-04", "uri": "https://api.scryfall.com/cards/3f230831-023c-41aa-832e-16ac81e68588", "scryfall_uri": "https://scryfall.com/card/apc/76/bog-gnarr?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/3/f/3f230831-023c-41aa-832e-16ac81e68588.jpg?1562909815", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/f/3f230831-023c-41aa-832e-16ac81e68588.jpg?1562909815", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/3/f/3f230831-023c-41aa-832e-16ac81e68588.jpg?1562909815", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/3/f/3f230831-023c-41aa-832e-16ac81e68588.png?1562909815", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/f/3f230831-023c-41aa-832e-16ac81e68588.jpg?1562909815", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/3/f/3f230831-023c-41aa-832e-16ac81e68588.jpg?1562909815"}, "mana_cost": "{4}{G}", "cmc": 5.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Whenever a player casts a black spell, Bog Gnarr gets +2/+2 until end of turn.", "power": "2", "toughness": "2", "colors": ["G"], "color_identity": ["G"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "e4e00913-d08d-4899-86ea-5cf631e09ce0", "set": "apc", "set_name": "Apocalypse", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/e4e00913-d08d-4899-86ea-5cf631e09ce0", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aapc&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/apc?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/3f230831-023c-41aa-832e-16ac81e68588/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A537ebea5-f805-4f78-9151-58eb43c4a62d&unique=prints", "collector_number": "76", "digital": false, "rarity": "common", "flavor_text": "Not all of Dominaria's defenders were nourished by the light.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Daren Bader", "artist_ids": ["7da1a585-c875-45e4-b322-5da9e8e1f651"], "illustration_id": "93899db6-aa76-4190-8c4e-6eb0a905f6de", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 23303, "prices": {"usd": "0.09", "usd_foil": "0.33", "usd_etched": null, "eur": "0.05", "eur_foil": "0.50", "tix": "0.07"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=27153", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Bog+Gnarr&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Bog+Gnarr&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Bog+Gnarr"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/7917?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Bog+Gnarr&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/16150?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "05145a8d-0bfb-4f07-87cf-65875310bdb4", "oracle_id": "7c2f1915-8d91-47c6-bab4-be325348673a", "multiverse_ids": [447223], "mtgo_id": 68335, "arena_id": 67854, "tcgplayer_id": 168458, "cardmarket_id": 359604, "name": "Bogstomper", "lang": "en", "released_at": "2018-07-13", "uri": "https://api.scryfall.com/cards/05145a8d-0bfb-4f07-87cf-65875310bdb4", "scryfall_uri": "https://scryfall.com/card/m19/87/bogstomper?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/0/5/05145a8d-0bfb-4f07-87cf-65875310bdb4.jpg?1562300265", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/5/05145a8d-0bfb-4f07-87cf-65875310bdb4.jpg?1562300265", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/0/5/05145a8d-0bfb-4f07-87cf-65875310bdb4.jpg?1562300265", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/0/5/05145a8d-0bfb-4f07-87cf-65875310bdb4.png?1562300265", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/5/05145a8d-0bfb-4f07-87cf-65875310bdb4.jpg?1562300265", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/0/5/05145a8d-0bfb-4f07-87cf-65875310bdb4.jpg?1562300265"}, "mana_cost": "{4}{B}{B}", "cmc": 6.0, "type_line": "Creature \u2014 Beast", "oracle_text": "", "power": "6", "toughness": "5", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "2f5f2509-56db-414d-9a7e-6e312ec3760c", "set": "m19", "set_name": "Core Set 2019", "set_type": "core", "set_uri": "https://api.scryfall.com/sets/2f5f2509-56db-414d-9a7e-6e312ec3760c", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Am19&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/m19?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/05145a8d-0bfb-4f07-87cf-65875310bdb4/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A7c2f1915-8d91-47c6-bab4-be325348673a&unique=prints", "collector_number": "87", "digital": false, "rarity": "common", "flavor_text": "\"They are gentle herbivores, despite their size. Approach cautiously, and hum a tune to let them know you mean no harm.\"\n\u2014Vivien Reid", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Jason Felix", "artist_ids": ["af42a44c-8ec3-47a7-9047-5d29ddad186d"], "illustration_id": "5bdbe21d-2d82-45e8-bfb2-e9be7715d909", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 21448, "penny_rank": 12142, "prices": {"usd": "0.01", "usd_foil": "0.14", "usd_etched": null, "eur": "0.01", "eur_foil": "0.05", "tix": "0.05"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=447223", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Bogstomper&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Bogstomper&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Bogstomper"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/168458?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Bogstomper&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/68335?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "297d7326-ad03-464d-97e2-443042d48f92", "oracle_id": "32bb6d53-3b9e-4f13-a17e-46b564afd366", "multiverse_ids": [44342], "mtgo_id": 18762, "mtgo_foil_id": 18763, "tcgplayer_id": 10907, "cardmarket_id": 1075, "name": "Bonethorn Valesk", "lang": "en", "released_at": "2003-05-26", "uri": "https://api.scryfall.com/cards/297d7326-ad03-464d-97e2-443042d48f92", "scryfall_uri": "https://scryfall.com/card/scg/82/bonethorn-valesk?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/2/9/297d7326-ad03-464d-97e2-443042d48f92.jpg?1562526649", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/9/297d7326-ad03-464d-97e2-443042d48f92.jpg?1562526649", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/2/9/297d7326-ad03-464d-97e2-443042d48f92.jpg?1562526649", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/2/9/297d7326-ad03-464d-97e2-443042d48f92.png?1562526649", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/9/297d7326-ad03-464d-97e2-443042d48f92.jpg?1562526649", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/2/9/297d7326-ad03-464d-97e2-443042d48f92.jpg?1562526649"}, "mana_cost": "{4}{R}", "cmc": 5.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Whenever a permanent is turned face up, Bonethorn Valesk deals 1 damage to any target.", "power": "4", "toughness": "2", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "5133c3a1-1412-4ce6-a1f0-73b695966ded", "set": "scg", "set_name": "Scourge", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/5133c3a1-1412-4ce6-a1f0-73b695966ded", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ascg&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/scg?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/297d7326-ad03-464d-97e2-443042d48f92/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A32bb6d53-3b9e-4f13-a17e-46b564afd366&unique=prints", "collector_number": "82", "digital": false, "rarity": "common", "flavor_text": "Barbarians weave its spurs into ceremonial charms to proclaim their hardiness in battle.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Alan Pollack", "artist_ids": ["70c20ea3-5ad6-4082-a337-6e994ae5828e"], "illustration_id": "0b948733-436e-4758-b0d0-6b9d2115cbb6", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 23049, "prices": {"usd": "0.07", "usd_foil": "0.30", "usd_etched": null, "eur": "0.02", "eur_foil": "0.20", "tix": "0.05"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=44342", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Bonethorn+Valesk&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Bonethorn+Valesk&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Bonethorn+Valesk"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/10907?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Bonethorn+Valesk&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/18762?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "37e4df5b-ec53-4f8a-8c26-272b3177c0a6", "oracle_id": "88aa5cd0-811a-4682-b2b0-2decbd13b332", "multiverse_ids": [479698], "mtgo_id": 80365, "arena_id": 71245, "tcgplayer_id": 212275, "cardmarket_id": 453003, "name": "Boneyard Lurker", "lang": "en", "released_at": "2020-04-24", "uri": "https://api.scryfall.com/cards/37e4df5b-ec53-4f8a-8c26-272b3177c0a6", "scryfall_uri": "https://scryfall.com/card/iko/178/boneyard-lurker?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/3/7/37e4df5b-ec53-4f8a-8c26-272b3177c0a6.jpg?1591227954", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/7/37e4df5b-ec53-4f8a-8c26-272b3177c0a6.jpg?1591227954", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/3/7/37e4df5b-ec53-4f8a-8c26-272b3177c0a6.jpg?1591227954", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/3/7/37e4df5b-ec53-4f8a-8c26-272b3177c0a6.png?1591227954", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/7/37e4df5b-ec53-4f8a-8c26-272b3177c0a6.jpg?1591227954", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/3/7/37e4df5b-ec53-4f8a-8c26-272b3177c0a6.jpg?1591227954"}, "mana_cost": "{2}{B}{G}", "cmc": 4.0, "type_line": "Creature \u2014 Nightmare Beast", "oracle_text": "Mutate {2}{B/G}{B/G} (If you cast this spell for its mutate cost, put it over or under target non-Human creature you own. They mutate into the creature on top plus all abilities from under it.)\nWhenever this creature mutates, return target permanent card from your graveyard to your hand.", "power": "4", "toughness": "4", "colors": ["B", "G"], "color_identity": ["B", "G"], "keywords": ["Mutate"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "restricted", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "19feda43-15ab-427e-a0e4-148a4bf2b03a", "set": "iko", "set_name": "Ikoria: Lair of Behemoths", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/19feda43-15ab-427e-a0e4-148a4bf2b03a", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aiko&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/iko?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/37e4df5b-ec53-4f8a-8c26-272b3177c0a6/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A88aa5cd0-811a-4682-b2b0-2decbd13b332&unique=prints", "collector_number": "178", "digital": false, "rarity": "uncommon", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Nils Hamm", "artist_ids": ["c540d1fc-1500-457f-93cf-d6069ee66546"], "illustration_id": "9e987948-f21c-4840-a8ef-d97c0a63901f", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 3285, "penny_rank": 6433, "preview": {"source": "ABuLae", "source_uri": "https://www.facebook.com/abulaeofficial/posts/1430246080480047", "previewed_at": "2020-04-03"}, "prices": {"usd": "0.08", "usd_foil": "0.12", "usd_etched": null, "eur": "0.11", "eur_foil": "0.03", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=479698", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Boneyard+Lurker&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Boneyard+Lurker&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Boneyard+Lurker"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/212275?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Boneyard+Lurker&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/80365?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "2e0232c0-0867-4217-8e5d-b3454c0c8dab", "oracle_id": "88aa5cd0-811a-4682-b2b0-2decbd13b332", "multiverse_ids": [], "arena_id": 73671, "tcgplayer_id": 212247, "cardmarket_id": 453043, "name": "Boneyard Lurker", "lang": "en", "released_at": "2020-04-24", "uri": "https://api.scryfall.com/cards/2e0232c0-0867-4217-8e5d-b3454c0c8dab", "scryfall_uri": "https://scryfall.com/card/iko/298/boneyard-lurker?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/2/e/2e0232c0-0867-4217-8e5d-b3454c0c8dab.jpg?1604781908", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/e/2e0232c0-0867-4217-8e5d-b3454c0c8dab.jpg?1604781908", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/2/e/2e0232c0-0867-4217-8e5d-b3454c0c8dab.jpg?1604781908", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/2/e/2e0232c0-0867-4217-8e5d-b3454c0c8dab.png?1604781908", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/e/2e0232c0-0867-4217-8e5d-b3454c0c8dab.jpg?1604781908", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/2/e/2e0232c0-0867-4217-8e5d-b3454c0c8dab.jpg?1604781908"}, "mana_cost": "{2}{B}{G}", "cmc": 4.0, "type_line": "Creature \u2014 Nightmare Beast", "oracle_text": "Mutate {2}{B/G}{B/G} (If you cast this spell for its mutate cost, put it over or under target non-Human creature you own. They mutate into the creature on top plus all abilities from under it.)\nWhenever this creature mutates, return target permanent card from your graveyard to your hand.", "power": "4", "toughness": "4", "colors": ["B", "G"], "color_identity": ["B", "G"], "keywords": ["Mutate"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "restricted", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "19feda43-15ab-427e-a0e4-148a4bf2b03a", "set": "iko", "set_name": "Ikoria: Lair of Behemoths", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/19feda43-15ab-427e-a0e4-148a4bf2b03a", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aiko&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/iko?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/2e0232c0-0867-4217-8e5d-b3454c0c8dab/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A88aa5cd0-811a-4682-b2b0-2decbd13b332&unique=prints", "collector_number": "298", "digital": false, "rarity": "uncommon", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Carl Critchlow", "artist_ids": ["17948f16-611a-44b8-8d10-9895a0bdfff1"], "illustration_id": "a013a9b3-e478-4556-a2e1-3f4ae197ce79", "border_color": "black", "frame": "2015", "frame_effects": ["showcase"], "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "promo_types": ["boosterfun"], "edhrec_rank": 3285, "penny_rank": 6433, "preview": {"source": "ABuLae", "source_uri": "https://www.facebook.com/abulaeofficial/posts/1430246080480047", "previewed_at": "2020-04-03"}, "prices": {"usd": "0.20", "usd_foil": "0.27", "usd_etched": null, "eur": "0.19", "eur_foil": "0.20", "tix": null}, "related_uris": {"tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Boneyard+Lurker&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Boneyard+Lurker&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Boneyard+Lurker"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/212247?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Boneyard+Lurker&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Boneyard+Lurker&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "01dfe640-5bd2-4d0b-8977-887b2ed4c2dd", "oracle_id": "fb6d24cb-4e79-4d0c-b32f-47d5f709de1b", "multiverse_ids": [452843], "mtgo_id": 69559, "arena_id": 68554, "tcgplayer_id": 176812, "cardmarket_id": 364165, "name": "Book Devourer", "lang": "en", "released_at": "2018-10-05", "uri": "https://api.scryfall.com/cards/01dfe640-5bd2-4d0b-8977-887b2ed4c2dd", "scryfall_uri": "https://scryfall.com/card/grn/93/book-devourer?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/0/1/01dfe640-5bd2-4d0b-8977-887b2ed4c2dd.jpg?1572893108", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/1/01dfe640-5bd2-4d0b-8977-887b2ed4c2dd.jpg?1572893108", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/0/1/01dfe640-5bd2-4d0b-8977-887b2ed4c2dd.jpg?1572893108", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/0/1/01dfe640-5bd2-4d0b-8977-887b2ed4c2dd.png?1572893108", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/1/01dfe640-5bd2-4d0b-8977-887b2ed4c2dd.jpg?1572893108", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/0/1/01dfe640-5bd2-4d0b-8977-887b2ed4c2dd.jpg?1572893108"}, "mana_cost": "{5}{R}", "cmc": 6.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Trample\nWhenever Book Devourer deals combat damage to a player, you may discard all the cards in your hand. If you do, draw that many cards.", "power": "4", "toughness": "5", "colors": ["R"], "color_identity": ["R"], "keywords": ["Trample"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "restricted", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "597c6d4a-8212-4903-a6af-12c4ae9e13f0", "set": "grn", "set_name": "Guilds of Ravnica", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/597c6d4a-8212-4903-a6af-12c4ae9e13f0", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Agrn&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/grn?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/01dfe640-5bd2-4d0b-8977-887b2ed4c2dd/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Afb6d24cb-4e79-4d0c-b32f-47d5f709de1b&unique=prints", "collector_number": "93", "digital": false, "rarity": "uncommon", "flavor_text": "\"Not my first edition of *The Advokist and the Urchin*!\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Kev Walker", "artist_ids": ["f366a0ee-a0cd-466d-ba6a-90058c7a31a6"], "illustration_id": "3657d58e-7f56-45ff-80ae-aa53b41fd151", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 14673, "penny_rank": 11722, "prices": {"usd": "0.04", "usd_foil": "0.28", "usd_etched": null, "eur": "0.05", "eur_foil": "0.20", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=452843", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Book+Devourer&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Book+Devourer&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Book+Devourer"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/176812?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Book+Devourer&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/69559?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "cff5a5b8-f823-4429-acd8-c4f34a676cb4", "oracle_id": "e6337404-2978-47a8-a5ae-4a70add2df69", "multiverse_ids": [479596], "mtgo_id": 80161, "arena_id": 71143, "tcgplayer_id": 212705, "cardmarket_id": 455183, "name": "Boot Nipper", "lang": "en", "released_at": "2020-04-24", "uri": "https://api.scryfall.com/cards/cff5a5b8-f823-4429-acd8-c4f34a676cb4", "scryfall_uri": "https://scryfall.com/card/iko/76/boot-nipper?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/c/f/cff5a5b8-f823-4429-acd8-c4f34a676cb4.jpg?1591226621", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/f/cff5a5b8-f823-4429-acd8-c4f34a676cb4.jpg?1591226621", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/c/f/cff5a5b8-f823-4429-acd8-c4f34a676cb4.jpg?1591226621", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/c/f/cff5a5b8-f823-4429-acd8-c4f34a676cb4.png?1591226621", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/f/cff5a5b8-f823-4429-acd8-c4f34a676cb4.jpg?1591226621", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/c/f/cff5a5b8-f823-4429-acd8-c4f34a676cb4.jpg?1591226621"}, "mana_cost": "{1}{B}", "cmc": 2.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Boot Nipper enters the battlefield with your choice of a deathtouch counter or a lifelink counter on it.", "power": "2", "toughness": "1", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "19feda43-15ab-427e-a0e4-148a4bf2b03a", "set": "iko", "set_name": "Ikoria: Lair of Behemoths", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/19feda43-15ab-427e-a0e4-148a4bf2b03a", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aiko&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/iko?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/cff5a5b8-f823-4429-acd8-c4f34a676cb4/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ae6337404-2978-47a8-a5ae-4a70add2df69&unique=prints", "collector_number": "76", "digital": false, "rarity": "common", "flavor_text": "\"I have a number of hyper-specific phobias and this somehow hits all of them.\"\n\u2014Aaru, Zagoth lumberjack", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Nicholas Gregory", "artist_ids": ["a1bba8ff-63b4-4786-b1c4-f1bfe5d3ab1c"], "illustration_id": "a4fb8405-1d1b-42e2-acd8-537686800619", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 12340, "penny_rank": 13724, "prices": {"usd": "0.02", "usd_foil": "0.07", "usd_etched": null, "eur": "0.09", "eur_foil": "0.08", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=479596", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Boot+Nipper&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Boot+Nipper&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Boot+Nipper"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/212705?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Boot+Nipper&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/80161?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "90ba37ee-159f-421f-8d37-a7b5f1b562f0", "oracle_id": "c775d3ef-2184-4425-8c8e-2bbc49687f76", "multiverse_ids": [513542], "mtgo_id": 88607, "arena_id": 76458, "tcgplayer_id": 235946, "cardmarket_id": 558077, "name": "Brackish Trudge", "lang": "en", "released_at": "2021-04-23", "uri": "https://api.scryfall.com/cards/90ba37ee-159f-421f-8d37-a7b5f1b562f0", "scryfall_uri": "https://scryfall.com/card/stx/65/brackish-trudge?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/9/0/90ba37ee-159f-421f-8d37-a7b5f1b562f0.jpg?1624590775", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/0/90ba37ee-159f-421f-8d37-a7b5f1b562f0.jpg?1624590775", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/9/0/90ba37ee-159f-421f-8d37-a7b5f1b562f0.jpg?1624590775", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/9/0/90ba37ee-159f-421f-8d37-a7b5f1b562f0.png?1624590775", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/0/90ba37ee-159f-421f-8d37-a7b5f1b562f0.jpg?1624590775", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/9/0/90ba37ee-159f-421f-8d37-a7b5f1b562f0.jpg?1624590775"}, "mana_cost": "{2}{B}", "cmc": 3.0, "type_line": "Creature \u2014 Fungus Beast", "oracle_text": "Brackish Trudge enters the battlefield tapped.\n{1}{B}: Return Brackish Trudge from your graveyard to your hand. Activate only if you gained life this turn.", "power": "4", "toughness": "2", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "restricted", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "541c3c28-8747-40e5-a231-8e8f33234859", "set": "stx", "set_name": "Strixhaven: School of Mages", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/541c3c28-8747-40e5-a231-8e8f33234859", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Astx&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/stx?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/90ba37ee-159f-421f-8d37-a7b5f1b562f0/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ac775d3ef-2184-4425-8c8e-2bbc49687f76&unique=prints", "collector_number": "65", "digital": false, "rarity": "uncommon", "flavor_text": "Most trudges are covered with decaying plant matter, making them ideal breeding grounds for fungal spores.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Tomasz Jedruszek", "artist_ids": ["bba69285-2445-4a4b-a847-59397be972ea"], "illustration_id": "6166eaa9-31ec-4894-a8b0-d265e50131e8", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 15101, "preview": {"source": "Thoughtsieze Interviews", "source_uri": "https://twitter.com/_ThoughtSeize_/status/1378034656826818564", "previewed_at": "2021-04-03"}, "prices": {"usd": "0.01", "usd_foil": "0.05", "usd_etched": null, "eur": "0.10", "eur_foil": "0.14", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=513542", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Brackish+Trudge&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Brackish+Trudge&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Brackish+Trudge"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/235946?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Brackish+Trudge&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/88607?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "52118ff1-ad76-4b97-9fdc-6adfe80140f8", "oracle_id": "e09b24a0-675b-4c64-ac44-74ddf109598a", "multiverse_ids": [37909], "mtgo_id": 18371, "mtgo_foil_id": 18372, "tcgplayer_id": 10794, "cardmarket_id": 2099, "name": "Branchsnap Lorian", "lang": "en", "released_at": "2003-02-03", "uri": "https://api.scryfall.com/cards/52118ff1-ad76-4b97-9fdc-6adfe80140f8", "scryfall_uri": "https://scryfall.com/card/lgn/118/branchsnap-lorian?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/5/2/52118ff1-ad76-4b97-9fdc-6adfe80140f8.jpg?1562911651", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/2/52118ff1-ad76-4b97-9fdc-6adfe80140f8.jpg?1562911651", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/5/2/52118ff1-ad76-4b97-9fdc-6adfe80140f8.jpg?1562911651", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/5/2/52118ff1-ad76-4b97-9fdc-6adfe80140f8.png?1562911651", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/2/52118ff1-ad76-4b97-9fdc-6adfe80140f8.jpg?1562911651", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/5/2/52118ff1-ad76-4b97-9fdc-6adfe80140f8.jpg?1562911651"}, "mana_cost": "{1}{G}{G}", "cmc": 3.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Trample\nMorph {G} (You may cast this card face down as a 2/2 creature for {3}. Turn it face up any time for its morph cost.)", "power": "4", "toughness": "1", "colors": ["G"], "color_identity": ["G"], "keywords": ["Morph", "Trample"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "restricted", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "c2d60a18-1a81-4784-8e0c-e1de2f43c5cf", "set": "lgn", "set_name": "Legions", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/c2d60a18-1a81-4784-8e0c-e1de2f43c5cf", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Algn&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/lgn?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/52118ff1-ad76-4b97-9fdc-6adfe80140f8/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ae09b24a0-675b-4c64-ac44-74ddf109598a&unique=prints", "collector_number": "118", "digital": false, "rarity": "uncommon", "flavor_text": "Lorians treat trees and prey the same way: by ripping them limb from limb.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Heather Hudson", "artist_ids": ["4441fe52-9e41-40c1-9b74-8510426279ab"], "illustration_id": "7813e7ba-19ea-4665-a58c-756ff882a358", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 15068, "penny_rank": 2919, "prices": {"usd": "0.15", "usd_foil": "0.90", "usd_etched": null, "eur": "0.05", "eur_foil": "0.33", "tix": "0.05"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=37909", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Branchsnap+Lorian&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Branchsnap+Lorian&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Branchsnap+Lorian"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/10794?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Branchsnap+Lorian&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/18371?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "a171f5e2-ed3d-4675-a4fc-953ebb907aa0", "oracle_id": "6e3301a5-a99b-4b17-aa40-34ccc5904977", "multiverse_ids": [45133], "mtgo_id": 18619, "mtgo_foil_id": 18620, "tcgplayer_id": 10795, "cardmarket_id": 2100, "name": "Brontotherium", "lang": "en", "released_at": "2003-02-03", "uri": "https://api.scryfall.com/cards/a171f5e2-ed3d-4675-a4fc-953ebb907aa0", "scryfall_uri": "https://scryfall.com/card/lgn/119/brontotherium?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/a/1/a171f5e2-ed3d-4675-a4fc-953ebb907aa0.jpg?1562927638", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/1/a171f5e2-ed3d-4675-a4fc-953ebb907aa0.jpg?1562927638", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/a/1/a171f5e2-ed3d-4675-a4fc-953ebb907aa0.jpg?1562927638", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/a/1/a171f5e2-ed3d-4675-a4fc-953ebb907aa0.png?1562927638", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/1/a171f5e2-ed3d-4675-a4fc-953ebb907aa0.jpg?1562927638", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/a/1/a171f5e2-ed3d-4675-a4fc-953ebb907aa0.jpg?1562927638"}, "mana_cost": "{4}{G}{G}", "cmc": 6.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Trample\nProvoke (Whenever this creature attacks, you may have target creature defending player controls untap and block it if able.)", "power": "5", "toughness": "3", "colors": ["G"], "color_identity": ["G"], "keywords": ["Trample", "Provoke"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "restricted", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "c2d60a18-1a81-4784-8e0c-e1de2f43c5cf", "set": "lgn", "set_name": "Legions", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/c2d60a18-1a81-4784-8e0c-e1de2f43c5cf", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Algn&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/lgn?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/a171f5e2-ed3d-4675-a4fc-953ebb907aa0/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A6e3301a5-a99b-4b17-aa40-34ccc5904977&unique=prints", "collector_number": "119", "digital": false, "rarity": "uncommon", "flavor_text": "Lucky victims get run over. Unlucky victims get run through.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Carl Critchlow", "artist_ids": ["17948f16-611a-44b8-8d10-9895a0bdfff1"], "illustration_id": "0aedb006-6799-447c-b8b3-26f4780a24a8", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 20147, "prices": {"usd": "0.17", "usd_foil": "0.84", "usd_etched": null, "eur": "0.05", "eur_foil": "0.15", "tix": "0.09"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=45133", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Brontotherium&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Brontotherium&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Brontotherium"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/10795?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Brontotherium&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/18619?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "07a194cb-53c9-4690-ba63-79beecaebe0e", "oracle_id": "428cc1cb-a491-4cc4-9436-28ee8acc37d6", "multiverse_ids": [46556], "mtgo_id": 20039, "mtgo_foil_id": 20040, "tcgplayer_id": 11354, "cardmarket_id": 31, "name": "Broodstar", "lang": "en", "released_at": "2003-10-02", "uri": "https://api.scryfall.com/cards/07a194cb-53c9-4690-ba63-79beecaebe0e", "scryfall_uri": "https://scryfall.com/card/mrd/31/broodstar?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/0/7/07a194cb-53c9-4690-ba63-79beecaebe0e.jpg?1562134726", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/7/07a194cb-53c9-4690-ba63-79beecaebe0e.jpg?1562134726", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/0/7/07a194cb-53c9-4690-ba63-79beecaebe0e.jpg?1562134726", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/0/7/07a194cb-53c9-4690-ba63-79beecaebe0e.png?1562134726", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/7/07a194cb-53c9-4690-ba63-79beecaebe0e.jpg?1562134726", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/0/7/07a194cb-53c9-4690-ba63-79beecaebe0e.jpg?1562134726"}, "mana_cost": "{8}{U}{U}", "cmc": 10.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Affinity for artifacts (This spell costs {1} less to cast for each artifact you control.)\nFlying\nBroodstar's power and toughness are each equal to the number of artifacts you control.", "power": "*", "toughness": "*", "colors": ["U"], "color_identity": ["U"], "keywords": ["Flying", "Affinity"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "1d4f90ba-8d4a-4ee5-bc2f-e2d6bffe4955", "set": "mrd", "set_name": "Mirrodin", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/1d4f90ba-8d4a-4ee5-bc2f-e2d6bffe4955", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Amrd&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/mrd?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/07a194cb-53c9-4690-ba63-79beecaebe0e/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A428cc1cb-a491-4cc4-9436-28ee8acc37d6&unique=prints", "collector_number": "31", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Glen Angus", "artist_ids": ["7be3b9e4-de9b-4a3d-884e-e67b9681d409"], "illustration_id": "8c27df8a-f511-400c-b20f-596fa5d2219a", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 8637, "penny_rank": 7216, "prices": {"usd": "0.66", "usd_foil": "19.97", "usd_etched": null, "eur": "0.30", "eur_foil": "6.69", "tix": "0.01"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=46556", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Broodstar&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Broodstar&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Broodstar"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/11354?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Broodstar&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/20039?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "59bd1534-52d1-4946-b430-d26f039a9067", "oracle_id": "6dfcc4bb-7cd5-4b3e-ad79-3c246a3af2a8", "multiverse_ids": [265377], "mtgo_id": 46275, "mtgo_foil_id": 46276, "tcgplayer_id": 66532, "cardmarket_id": 258468, "name": "Brushstrider", "lang": "en", "released_at": "2012-10-05", "uri": "https://api.scryfall.com/cards/59bd1534-52d1-4946-b430-d26f039a9067", "scryfall_uri": "https://scryfall.com/card/rtr/117/brushstrider?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/5/9/59bd1534-52d1-4946-b430-d26f039a9067.jpg?1562786763", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/9/59bd1534-52d1-4946-b430-d26f039a9067.jpg?1562786763", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/5/9/59bd1534-52d1-4946-b430-d26f039a9067.jpg?1562786763", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/5/9/59bd1534-52d1-4946-b430-d26f039a9067.png?1562786763", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/9/59bd1534-52d1-4946-b430-d26f039a9067.jpg?1562786763", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/5/9/59bd1534-52d1-4946-b430-d26f039a9067.jpg?1562786763"}, "mana_cost": "{1}{G}", "cmc": 2.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Vigilance", "power": "3", "toughness": "1", "colors": ["G"], "color_identity": ["G"], "keywords": ["Vigilance"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "restricted", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "80b2374d-c5f1-403e-9772-f6c806fd275e", "set": "rtr", "set_name": "Return to Ravnica", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/80b2374d-c5f1-403e-9772-f6c806fd275e", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Artr&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/rtr?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/59bd1534-52d1-4946-b430-d26f039a9067/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A6dfcc4bb-7cd5-4b3e-ad79-3c246a3af2a8&unique=prints", "collector_number": "117", "digital": false, "rarity": "uncommon", "flavor_text": "Magistrate Ludy agreed to designate land for the brushstriders only after several broken windows and dozens of missing blini-cakes.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Raoul Vitale", "artist_ids": ["c7c15d49-f84b-4d98-9a34-e80e8347b756"], "illustration_id": "09f9f771-fd13-4bb0-9787-40add27d2748", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 20414, "penny_rank": 5149, "prices": {"usd": "0.06", "usd_foil": "0.06", "usd_etched": null, "eur": "0.02", "eur_foil": "0.26", "tix": "0.04"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=265377", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Brushstrider&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Brushstrider&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Brushstrider"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/66532?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Brushstrider&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/46275?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "206a9e7b-45c1-4213-8fc4-27d90e2ab0e9", "oracle_id": "4e690b82-9877-41f2-9dcd-cffdb6e3cd64", "multiverse_ids": [527460], "mtgo_id": 91848, "arena_id": 77278, "tcgplayer_id": 243203, "cardmarket_id": 571199, "name": "Bulette", "lang": "en", "released_at": "2021-07-23", "uri": "https://api.scryfall.com/cards/206a9e7b-45c1-4213-8fc4-27d90e2ab0e9", "scryfall_uri": "https://scryfall.com/card/afr/173/bulette?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/2/0/206a9e7b-45c1-4213-8fc4-27d90e2ab0e9.jpg?1627707159", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/0/206a9e7b-45c1-4213-8fc4-27d90e2ab0e9.jpg?1627707159", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/2/0/206a9e7b-45c1-4213-8fc4-27d90e2ab0e9.jpg?1627707159", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/2/0/206a9e7b-45c1-4213-8fc4-27d90e2ab0e9.png?1627707159", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/0/206a9e7b-45c1-4213-8fc4-27d90e2ab0e9.jpg?1627707159", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/2/0/206a9e7b-45c1-4213-8fc4-27d90e2ab0e9.jpg?1627707159"}, "mana_cost": "{3}{G}", "cmc": 4.0, "type_line": "Creature \u2014 Beast", "oracle_text": "At the beginning of your end step, if a creature died this turn, put a +1/+1 counter on Bulette.", "power": "3", "toughness": "3", "colors": ["G"], "color_identity": ["G"], "keywords": [], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "e1ef87ba-ba92-4573-817f-543b996d2851", "set": "afr", "set_name": "Adventures in the Forgotten Realms", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/e1ef87ba-ba92-4573-817f-543b996d2851", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aafr&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/afr?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/206a9e7b-45c1-4213-8fc4-27d90e2ab0e9/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A4e690b82-9877-41f2-9dcd-cffdb6e3cd64&unique=prints", "collector_number": "173", "digital": false, "rarity": "common", "flavor_text": "Capable of moving swiftly through even tightly-packed earth and leaping surprising distances above ground, bulettes are difficult to escape once they've caught scent of prey.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Jason Kang", "artist_ids": ["064b9176-e325-44f6-a413-2cadb7505851"], "illustration_id": "f09cc22d-85be-4cfb-94c2-d87fedd51dd2", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 15013, "penny_rank": 13506, "preview": {"source": "Warriors of Waterdeep", "source_uri": "https://twitter.com/WOWaterdeep/status/1410236683451125767", "previewed_at": "2021-07-01"}, "prices": {"usd": "0.01", "usd_foil": "0.02", "usd_etched": null, "eur": "0.02", "eur_foil": "0.05", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=527460", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Bulette&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Bulette&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Bulette"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/243203?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Bulette&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/91848?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "4a76c993-7cc5-428f-bfbc-7747c6a566d0", "oracle_id": "4e690b82-9877-41f2-9dcd-cffdb6e3cd64", "multiverse_ids": [530958], "arena_id": 77425, "tcgplayer_id": 243204, "cardmarket_id": 571200, "name": "Bulette", "lang": "en", "released_at": "2021-07-23", "uri": "https://api.scryfall.com/cards/4a76c993-7cc5-428f-bfbc-7747c6a566d0", "scryfall_uri": "https://scryfall.com/card/afr/324/bulette?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/4/a/4a76c993-7cc5-428f-bfbc-7747c6a566d0.jpg?1627711855", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/a/4a76c993-7cc5-428f-bfbc-7747c6a566d0.jpg?1627711855", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/4/a/4a76c993-7cc5-428f-bfbc-7747c6a566d0.jpg?1627711855", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/4/a/4a76c993-7cc5-428f-bfbc-7747c6a566d0.png?1627711855", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/a/4a76c993-7cc5-428f-bfbc-7747c6a566d0.jpg?1627711855", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/4/a/4a76c993-7cc5-428f-bfbc-7747c6a566d0.jpg?1627711855"}, "mana_cost": "{3}{G}", "cmc": 4.0, "type_line": "Creature \u2014 Beast", "oracle_text": "At the beginning of your end step, if a creature died this turn, put a +1/+1 counter on Bulette.", "power": "3", "toughness": "3", "colors": ["G"], "color_identity": ["G"], "keywords": [], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "e1ef87ba-ba92-4573-817f-543b996d2851", "set": "afr", "set_name": "Adventures in the Forgotten Realms", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/e1ef87ba-ba92-4573-817f-543b996d2851", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aafr&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/afr?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/4a76c993-7cc5-428f-bfbc-7747c6a566d0/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A4e690b82-9877-41f2-9dcd-cffdb6e3cd64&unique=prints", "collector_number": "324", "digital": false, "rarity": "common", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Pedro Potier", "artist_ids": ["7c79286c-7096-42b8-97e5-bbaa35ae241d"], "illustration_id": "ff342ee1-bfe2-4cf8-9cf3-f170dcded462", "border_color": "black", "frame": "2015", "frame_effects": ["showcase"], "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "promo_types": ["boosterfun"], "edhrec_rank": 15013, "penny_rank": 13506, "preview": {"source": "Warriors of Waterdeep", "source_uri": "https://twitter.com/WOWaterdeep/status/1410236683451125767", "previewed_at": "2021-07-01"}, "prices": {"usd": "0.02", "usd_foil": "0.09", "usd_etched": null, "eur": "0.02", "eur_foil": "0.14", "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=530958", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Bulette&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Bulette&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Bulette"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/243204?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Bulette&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Bulette&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "bbae0fe2-5d52-434c-8ad1-4a5e42f4b7c4", "oracle_id": "363f5ed8-a7a0-4cde-b09d-9baa26bad347", "multiverse_ids": [174952], "mtgo_id": 31019, "mtgo_foil_id": 31020, "tcgplayer_id": 27626, "cardmarket_id": 19719, "name": "Bull Cerodon", "lang": "en", "released_at": "2008-10-03", "uri": "https://api.scryfall.com/cards/bbae0fe2-5d52-434c-8ad1-4a5e42f4b7c4", "scryfall_uri": "https://scryfall.com/card/ala/161/bull-cerodon?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/b/b/bbae0fe2-5d52-434c-8ad1-4a5e42f4b7c4.jpg?1562708388", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/b/bbae0fe2-5d52-434c-8ad1-4a5e42f4b7c4.jpg?1562708388", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/b/b/bbae0fe2-5d52-434c-8ad1-4a5e42f4b7c4.jpg?1562708388", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/b/b/bbae0fe2-5d52-434c-8ad1-4a5e42f4b7c4.png?1562708388", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/b/bbae0fe2-5d52-434c-8ad1-4a5e42f4b7c4.jpg?1562708388", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/b/b/bbae0fe2-5d52-434c-8ad1-4a5e42f4b7c4.jpg?1562708388"}, "mana_cost": "{4}{R}{W}", "cmc": 6.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Vigilance, haste", "power": "5", "toughness": "5", "colors": ["R", "W"], "color_identity": ["R", "W"], "keywords": ["Vigilance", "Haste"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "restricted", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "d667aaec-09b7-4406-b6fa-60795132dc11", "set": "ala", "set_name": "Shards of Alara", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/d667aaec-09b7-4406-b6fa-60795132dc11", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aala&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ala?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/bbae0fe2-5d52-434c-8ad1-4a5e42f4b7c4/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A363f5ed8-a7a0-4cde-b09d-9baa26bad347&unique=prints", "collector_number": "161", "digital": false, "rarity": "uncommon", "flavor_text": "It holds motionless vigil, watching Naya in silence through the screen of the whitecover. When it senses anything amiss, it launches forward with the uncanny sound of torn fog.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Jesper Ejsing", "artist_ids": ["a5f8354a-8b51-4e59-96b2-0e3aeae4fa1d"], "illustration_id": "3fe424c0-c512-4544-814b-21924ecac5cc", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 17994, "prices": {"usd": "0.08", "usd_foil": "0.10", "usd_etched": null, "eur": "0.02", "eur_foil": "0.45", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=174952", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Bull+Cerodon&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Bull+Cerodon&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Bull+Cerodon"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/27626?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Bull+Cerodon&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/31019?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "4930b9d5-939f-4463-9f9a-235aa3a4f8c4", "oracle_id": "22600e35-cd8b-4e63-9de1-e96ad66cf719", "multiverse_ids": [439467], "tcgplayer_id": 153196, "cardmarket_id": 313991, "name": "Bumbling Pangolin", "lang": "en", "released_at": "2017-12-08", "uri": "https://api.scryfall.com/cards/4930b9d5-939f-4463-9f9a-235aa3a4f8c4", "scryfall_uri": "https://scryfall.com/card/ust/78/bumbling-pangolin?utm_source=api", "layout": "host", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/4/9/4930b9d5-939f-4463-9f9a-235aa3a4f8c4.jpg?1562910270", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/9/4930b9d5-939f-4463-9f9a-235aa3a4f8c4.jpg?1562910270", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/4/9/4930b9d5-939f-4463-9f9a-235aa3a4f8c4.jpg?1562910270", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/4/9/4930b9d5-939f-4463-9f9a-235aa3a4f8c4.png?1562910270", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/9/4930b9d5-939f-4463-9f9a-235aa3a4f8c4.jpg?1562910270", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/4/9/4930b9d5-939f-4463-9f9a-235aa3a4f8c4.jpg?1562910270"}, "mana_cost": "{3}{R}", "cmc": 4.0, "type_line": "Host Creature \u2014 Pangolin Beast", "oracle_text": "When this creature enters the battlefield, you may destroy target artifact.", "power": "2", "toughness": "2", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "not_legal", "pauper": "not_legal", "vintage": "not_legal", "penny": "not_legal", "commander": "not_legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "not_legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "83491685-880d-41dd-a4af-47d2b3b17c10", "set": "ust", "set_name": "Unstable", "set_type": "funny", "set_uri": "https://api.scryfall.com/sets/83491685-880d-41dd-a4af-47d2b3b17c10", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aust&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ust?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/4930b9d5-939f-4463-9f9a-235aa3a4f8c4/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A22600e35-cd8b-4e63-9de1-e96ad66cf719&unique=prints", "collector_number": "78", "digital": false, "rarity": "common", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "YW Tang", "artist_ids": ["63b2909b-7102-49c5-8f9d-6116a1913308"], "illustration_id": "93421016-e8b0-4d20-bc8c-6cc6054af6ac", "border_color": "silver", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "prices": {"usd": "0.06", "usd_foil": "0.43", "usd_etched": null, "eur": "0.02", "eur_foil": "0.35", "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=439467", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Bumbling+Pangolin&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Bumbling+Pangolin&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Bumbling+Pangolin"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/153196?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Bumbling+Pangolin&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Bumbling+Pangolin&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "1585bb24-41de-48a7-820e-d99ee76aec01", "oracle_id": "329d53eb-d443-4376-ae5a-4be7dfb1fc91", "multiverse_ids": [413547], "mtgo_id": 60527, "mtgo_foil_id": 60528, "tcgplayer_id": 118611, "cardmarket_id": 290326, "name": "Calciderm", "lang": "en", "released_at": "2016-06-10", "uri": "https://api.scryfall.com/cards/1585bb24-41de-48a7-820e-d99ee76aec01", "scryfall_uri": "https://scryfall.com/card/ema/5/calciderm?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/1/5/1585bb24-41de-48a7-820e-d99ee76aec01.jpg?1580013629", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/5/1585bb24-41de-48a7-820e-d99ee76aec01.jpg?1580013629", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/1/5/1585bb24-41de-48a7-820e-d99ee76aec01.jpg?1580013629", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/1/5/1585bb24-41de-48a7-820e-d99ee76aec01.png?1580013629", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/5/1585bb24-41de-48a7-820e-d99ee76aec01.jpg?1580013629", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/1/5/1585bb24-41de-48a7-820e-d99ee76aec01.jpg?1580013629"}, "mana_cost": "{2}{W}{W}", "cmc": 4.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Shroud (This creature can't be the target of spells or abilities.)\nVanishing 4 (This creature enters the battlefield with four time counters on it. At the beginning of your upkeep, remove a time counter from it. When the last is removed, sacrifice it.)", "power": "5", "toughness": "5", "colors": ["W"], "color_identity": ["W"], "keywords": ["Shroud", "Vanishing"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "restricted", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "1f29f022-3ace-4c96-85e8-1f7b63aadf7e", "set": "ema", "set_name": "Eternal Masters", "set_type": "masters", "set_uri": "https://api.scryfall.com/sets/1f29f022-3ace-4c96-85e8-1f7b63aadf7e", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aema&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ema?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/1585bb24-41de-48a7-820e-d99ee76aec01/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A329d53eb-d443-4376-ae5a-4be7dfb1fc91&unique=prints", "collector_number": "5", "digital": false, "rarity": "uncommon", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Dave Kendall", "artist_ids": ["8a5540a8-18c9-4fa9-802c-59d6866114d5"], "illustration_id": "01b4d8a8-61c1-49c9-9399-e3bb89f03a03", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 21450, "penny_rank": 5039, "prices": {"usd": "0.04", "usd_foil": null, "usd_etched": null, "eur": "0.03", "eur_foil": "0.10", "tix": "0.05"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=413547", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Calciderm&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Calciderm&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Calciderm"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/118611?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Calciderm&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/60527?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "387adc65-5d18-4291-85b1-f49f556781c7", "oracle_id": "329d53eb-d443-4376-ae5a-4be7dfb1fc91", "multiverse_ids": [], "tcgplayer_id": 38189, "cardmarket_id": 17558, "name": "Calciderm", "lang": "en", "released_at": "2007-01-01", "uri": "https://api.scryfall.com/cards/387adc65-5d18-4291-85b1-f49f556781c7", "scryfall_uri": "https://scryfall.com/card/pg07/5/calciderm?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/3/8/387adc65-5d18-4291-85b1-f49f556781c7.jpg?1561756925", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/8/387adc65-5d18-4291-85b1-f49f556781c7.jpg?1561756925", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/3/8/387adc65-5d18-4291-85b1-f49f556781c7.jpg?1561756925", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/3/8/387adc65-5d18-4291-85b1-f49f556781c7.png?1561756925", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/8/387adc65-5d18-4291-85b1-f49f556781c7.jpg?1561756925", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/3/8/387adc65-5d18-4291-85b1-f49f556781c7.jpg?1561756925"}, "mana_cost": "{2}{W}{W}", "cmc": 4.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Shroud (This creature can't be the target of spells or abilities.)\nVanishing 4 (This creature enters the battlefield with four time counters on it. At the beginning of your upkeep, remove a time counter from it. When the last is removed, sacrifice it.)", "power": "5", "toughness": "5", "colors": ["W"], "color_identity": ["W"], "keywords": ["Shroud", "Vanishing"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "restricted", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": true, "nonfoil": false, "finishes": ["foil"], "oversized": false, "promo": true, "reprint": true, "variation": false, "set_id": "025f23a4-4f80-48d1-b34f-75886be6b1af", "set": "pg07", "set_name": "Gateway 2007", "set_type": "promo", "set_uri": "https://api.scryfall.com/sets/025f23a4-4f80-48d1-b34f-75886be6b1af", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Apg07&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/pg07?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/387adc65-5d18-4291-85b1-f49f556781c7/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A329d53eb-d443-4376-ae5a-4be7dfb1fc91&unique=prints", "collector_number": "5", "digital": false, "rarity": "rare", "watermark": "dci", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Dave Kendall", "artist_ids": ["8a5540a8-18c9-4fa9-802c-59d6866114d5"], "illustration_id": "7075d003-28e9-45cb-8e64-ecfa9b0802d7", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "promo_types": ["gateway"], "edhrec_rank": 21450, "penny_rank": 5039, "prices": {"usd": null, "usd_foil": "0.43", "usd_etched": null, "eur": null, "eur_foil": "0.19", "tix": null}, "related_uris": {"tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Calciderm&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Calciderm&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Calciderm"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/38189?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Calciderm&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Calciderm&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "1286208b-896b-4f41-a837-1c8a2b199a0f", "oracle_id": "3b6cbd2a-02ba-4afb-a081-0f25d830a8ee", "multiverse_ids": [405166], "tcgplayer_id": 107913, "cardmarket_id": 285940, "name": "Caller of the Pack", "lang": "en", "released_at": "2015-11-13", "uri": "https://api.scryfall.com/cards/1286208b-896b-4f41-a837-1c8a2b199a0f", "scryfall_uri": "https://scryfall.com/card/c15/34/caller-of-the-pack?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/1/2/1286208b-896b-4f41-a837-1c8a2b199a0f.jpg?1562701494", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/2/1286208b-896b-4f41-a837-1c8a2b199a0f.jpg?1562701494", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/1/2/1286208b-896b-4f41-a837-1c8a2b199a0f.jpg?1562701494", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/1/2/1286208b-896b-4f41-a837-1c8a2b199a0f.png?1562701494", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/2/1286208b-896b-4f41-a837-1c8a2b199a0f.jpg?1562701494", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/1/2/1286208b-896b-4f41-a837-1c8a2b199a0f.jpg?1562701494"}, "mana_cost": "{5}{G}{G}", "cmc": 7.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Trample\nMyriad (Whenever this creature attacks, for each opponent other than defending player, you may create a token that's a copy of this creature that's tapped and attacking that player or a planeswalker they control. Exile the tokens at end of combat.)", "power": "8", "toughness": "6", "colors": ["G"], "color_identity": ["G"], "keywords": ["Trample", "Myriad"], "all_parts": [{"object": "related_card", "id": "1286208b-896b-4f41-a837-1c8a2b199a0f", "component": "combo_piece", "name": "Caller of the Pack", "type_line": "Creature \u2014 Beast", "uri": "https://api.scryfall.com/cards/1286208b-896b-4f41-a837-1c8a2b199a0f"}, {"object": "related_card", "id": "1e6ce56c-ca2e-48e8-a4d9-671cb4de8a9d", "component": "token", "name": "Copy", "type_line": "Token", "uri": "https://api.scryfall.com/cards/1e6ce56c-ca2e-48e8-a4d9-671cb4de8a9d"}], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "restricted", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "ea6c99f9-5489-4504-b30c-c819fa3b1fd3", "set": "c15", "set_name": "Commander 2015", "set_type": "commander", "set_uri": "https://api.scryfall.com/sets/ea6c99f9-5489-4504-b30c-c819fa3b1fd3", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ac15&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/c15?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/1286208b-896b-4f41-a837-1c8a2b199a0f/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A3b6cbd2a-02ba-4afb-a081-0f25d830a8ee&unique=prints", "collector_number": "34", "digital": false, "rarity": "uncommon", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Ryan Yee", "artist_ids": ["8955dca7-3e37-42b4-83a9-167c78a2178f"], "illustration_id": "6be9964f-b93b-4e79-a4b6-d1ba69fd7255", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "edhrec_rank": 9434, "penny_rank": 6883, "prices": {"usd": "0.35", "usd_foil": null, "usd_etched": null, "eur": "0.49", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=405166", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Caller+of+the+Pack&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Caller+of+the+Pack&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Caller+of+the+Pack"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/107913?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Caller+of+the+Pack&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Caller+of+the+Pack&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "6b04160c-89a7-4dcd-b05d-5dc846824d64", "oracle_id": "4493828f-144f-49cf-9fd2-61de86e632ec", "multiverse_ids": [491828], "mtgo_id": 83349, "arena_id": 73389, "tcgplayer_id": 222057, "cardmarket_id": 496093, "name": "Canopy Baloth", "lang": "en", "released_at": "2020-09-25", "uri": "https://api.scryfall.com/cards/6b04160c-89a7-4dcd-b05d-5dc846824d64", "scryfall_uri": "https://scryfall.com/card/znr/182/canopy-baloth?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/6/b/6b04160c-89a7-4dcd-b05d-5dc846824d64.jpg?1604198638", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/b/6b04160c-89a7-4dcd-b05d-5dc846824d64.jpg?1604198638", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/6/b/6b04160c-89a7-4dcd-b05d-5dc846824d64.jpg?1604198638", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/6/b/6b04160c-89a7-4dcd-b05d-5dc846824d64.png?1604198638", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/b/6b04160c-89a7-4dcd-b05d-5dc846824d64.jpg?1604198638", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/6/b/6b04160c-89a7-4dcd-b05d-5dc846824d64.jpg?1604198638"}, "mana_cost": "{3}{G}", "cmc": 4.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Landfall \u2014 Whenever a land enters the battlefield under your control, Canopy Baloth gets +2/+2 until end of turn.", "power": "4", "toughness": "3", "colors": ["G"], "color_identity": ["G"], "keywords": ["Landfall"], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "f4e01fa7-b254-42dd-849f-69b58027a8c4", "set": "znr", "set_name": "Zendikar Rising", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/f4e01fa7-b254-42dd-849f-69b58027a8c4", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aznr&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/znr?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/6b04160c-89a7-4dcd-b05d-5dc846824d64/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A4493828f-144f-49cf-9fd2-61de86e632ec&unique=prints", "collector_number": "182", "digital": false, "rarity": "common", "flavor_text": "\"You can almost see it calculating\u2014are we a tasty enough treat to risk the jump?\"\n\u2014Samila, Murasa Expeditionary House", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Filip Burburan", "artist_ids": ["66082c3b-a623-4d34-be51-2475214b85d3"], "illustration_id": "a37a1d3b-32af-4609-b630-b974e9cda8d3", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 11822, "penny_rank": 10267, "preview": {"source": "Zabracus", "source_uri": "https://www.twitch.tv/videos/731657030", "previewed_at": "2020-09-04"}, "prices": {"usd": "0.01", "usd_foil": "0.01", "usd_etched": null, "eur": "0.09", "eur_foil": "0.10", "tix": "0.01"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=491828", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Canopy+Baloth&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Canopy+Baloth&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Canopy+Baloth"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/222057?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Canopy+Baloth&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/83349?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "d52e90d3-d356-4b23-8f5c-a4004b20394c", "oracle_id": "4493828f-144f-49cf-9fd2-61de86e632ec", "multiverse_ids": [495200], "arena_id": 74672, "tcgplayer_id": 222058, "cardmarket_id": 496098, "name": "Canopy Baloth", "lang": "en", "released_at": "2020-09-25", "uri": "https://api.scryfall.com/cards/d52e90d3-d356-4b23-8f5c-a4004b20394c", "scryfall_uri": "https://scryfall.com/card/znr/304/canopy-baloth?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/d/5/d52e90d3-d356-4b23-8f5c-a4004b20394c.jpg?1604202724", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/5/d52e90d3-d356-4b23-8f5c-a4004b20394c.jpg?1604202724", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/d/5/d52e90d3-d356-4b23-8f5c-a4004b20394c.jpg?1604202724", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/d/5/d52e90d3-d356-4b23-8f5c-a4004b20394c.png?1604202724", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/5/d52e90d3-d356-4b23-8f5c-a4004b20394c.jpg?1604202724", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/d/5/d52e90d3-d356-4b23-8f5c-a4004b20394c.jpg?1604202724"}, "mana_cost": "{3}{G}", "cmc": 4.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Landfall \u2014 Whenever a land enters the battlefield under your control, Canopy Baloth gets +2/+2 until end of turn.", "power": "4", "toughness": "3", "colors": ["G"], "color_identity": ["G"], "keywords": ["Landfall"], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "f4e01fa7-b254-42dd-849f-69b58027a8c4", "set": "znr", "set_name": "Zendikar Rising", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/f4e01fa7-b254-42dd-849f-69b58027a8c4", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aznr&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/znr?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/d52e90d3-d356-4b23-8f5c-a4004b20394c/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A4493828f-144f-49cf-9fd2-61de86e632ec&unique=prints", "collector_number": "304", "digital": false, "rarity": "common", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Dominik Mayer", "artist_ids": ["c3439c4a-1fee-4e33-9b89-18dac27ac927"], "illustration_id": "c6ccecb9-83ab-4656-90c8-7bfbcf491631", "border_color": "black", "frame": "2015", "frame_effects": ["showcase"], "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "promo_types": ["boosterfun"], "edhrec_rank": 11822, "penny_rank": 10267, "preview": {"source": "Zabracus", "source_uri": "https://www.twitch.tv/videos/731657030", "previewed_at": "2020-09-04"}, "prices": {"usd": "0.03", "usd_foil": "0.03", "usd_etched": null, "eur": "0.11", "eur_foil": "0.10", "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=495200", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Canopy+Baloth&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Canopy+Baloth&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Canopy+Baloth"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/222058?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Canopy+Baloth&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Canopy+Baloth&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "0ccdc9d7-71b5-4304-8d19-a63952e17a6b", "oracle_id": "7fc60ae2-75fc-49e1-9d56-aa5a43844210", "multiverse_ids": [45849], "mtgo_id": 18629, "mtgo_foil_id": 18630, "tcgplayer_id": 10798, "cardmarket_id": 2103, "name": "Canopy Crawler", "lang": "en", "released_at": "2003-02-03", "uri": "https://api.scryfall.com/cards/0ccdc9d7-71b5-4304-8d19-a63952e17a6b", "scryfall_uri": "https://scryfall.com/card/lgn/122/canopy-crawler?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/0/c/0ccdc9d7-71b5-4304-8d19-a63952e17a6b.jpg?1562897615", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/c/0ccdc9d7-71b5-4304-8d19-a63952e17a6b.jpg?1562897615", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/0/c/0ccdc9d7-71b5-4304-8d19-a63952e17a6b.jpg?1562897615", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/0/c/0ccdc9d7-71b5-4304-8d19-a63952e17a6b.png?1562897615", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/c/0ccdc9d7-71b5-4304-8d19-a63952e17a6b.jpg?1562897615", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/0/c/0ccdc9d7-71b5-4304-8d19-a63952e17a6b.jpg?1562897615"}, "mana_cost": "{3}{G}", "cmc": 4.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Amplify 1 (As this creature enters the battlefield, put a +1/+1 counter on it for each Beast card you reveal in your hand.)\n{T}: Target creature gets +1/+1 until end of turn for each +1/+1 counter on Canopy Crawler.", "power": "2", "toughness": "2", "colors": ["G"], "color_identity": ["G"], "keywords": ["Amplify"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "restricted", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "c2d60a18-1a81-4784-8e0c-e1de2f43c5cf", "set": "lgn", "set_name": "Legions", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/c2d60a18-1a81-4784-8e0c-e1de2f43c5cf", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Algn&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/lgn?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/0ccdc9d7-71b5-4304-8d19-a63952e17a6b/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A7fc60ae2-75fc-49e1-9d56-aa5a43844210&unique=prints", "collector_number": "122", "digital": false, "rarity": "uncommon", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Anthony S. Waters", "artist_ids": ["f009de11-3c8d-4663-b996-ca0c3e997fad"], "illustration_id": "6bddeb82-fea0-4dc6-a230-6de6482f8f83", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 21976, "prices": {"usd": "0.14", "usd_foil": "0.37", "usd_etched": null, "eur": "0.02", "eur_foil": "0.45", "tix": "0.05"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=45849", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Canopy+Crawler&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Canopy+Crawler&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Canopy+Crawler"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/10798?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Canopy+Crawler&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/18629?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "ae10e7fe-ee51-4c39-86ec-503324d19f6c", "oracle_id": "97b386da-4bc0-4c39-a5cc-17e441c45127", "multiverse_ids": [5217], "mtgo_id": 10359, "mtgo_foil_id": 10360, "tcgplayer_id": 5318, "cardmarket_id": 9138, "name": "Carnassid", "lang": "en", "released_at": "1998-03-02", "uri": "https://api.scryfall.com/cards/ae10e7fe-ee51-4c39-86ec-503324d19f6c", "scryfall_uri": "https://scryfall.com/card/sth/103/carnassid?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/a/e/ae10e7fe-ee51-4c39-86ec-503324d19f6c.jpg?1562597351", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/e/ae10e7fe-ee51-4c39-86ec-503324d19f6c.jpg?1562597351", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/a/e/ae10e7fe-ee51-4c39-86ec-503324d19f6c.jpg?1562597351", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/a/e/ae10e7fe-ee51-4c39-86ec-503324d19f6c.png?1562597351", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/e/ae10e7fe-ee51-4c39-86ec-503324d19f6c.jpg?1562597351", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/a/e/ae10e7fe-ee51-4c39-86ec-503324d19f6c.jpg?1562597351"}, "mana_cost": "{4}{G}{G}", "cmc": 6.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Trample\n{1}{G}: Regenerate Carnassid.", "power": "5", "toughness": "4", "colors": ["G"], "color_identity": ["G"], "keywords": ["Trample"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "restricted", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "5c83396a-d386-4367-926b-571a75b086a3", "set": "sth", "set_name": "Stronghold", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/5c83396a-d386-4367-926b-571a75b086a3", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Asth&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/sth?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/ae10e7fe-ee51-4c39-86ec-503324d19f6c/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A97b386da-4bc0-4c39-a5cc-17e441c45127&unique=prints", "collector_number": "103", "digital": false, "rarity": "rare", "flavor_text": "The hunter would never forget the time or place where he first met the carnassid, for they buried him there.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Brom", "artist_ids": ["bd79c951-2552-45dd-aae7-a333c2b7c1ef"], "illustration_id": "d347e72f-52b3-40a0-bdfd-7740a4823c3f", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 22353, "prices": {"usd": "0.24", "usd_foil": null, "usd_etched": null, "eur": "0.36", "eur_foil": null, "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=5217", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Carnassid&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Carnassid&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Carnassid"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/5318?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Carnassid&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/10359?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "bd814ce3-9555-4e9d-a212-e40717f4e546", "oracle_id": "32f5f67b-bba3-427c-ab24-13a50acdc611", "multiverse_ids": [383200], "mtgo_id": 53750, "mtgo_foil_id": 53751, "tcgplayer_id": 91319, "cardmarket_id": 267879, "name": "Carnivorous Moss-Beast", "lang": "en", "released_at": "2014-07-18", "uri": "https://api.scryfall.com/cards/bd814ce3-9555-4e9d-a212-e40717f4e546", "scryfall_uri": "https://scryfall.com/card/m15/170/carnivorous-moss-beast?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/b/d/bd814ce3-9555-4e9d-a212-e40717f4e546.jpg?1562793539", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/d/bd814ce3-9555-4e9d-a212-e40717f4e546.jpg?1562793539", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/b/d/bd814ce3-9555-4e9d-a212-e40717f4e546.jpg?1562793539", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/b/d/bd814ce3-9555-4e9d-a212-e40717f4e546.png?1562793539", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/d/bd814ce3-9555-4e9d-a212-e40717f4e546.jpg?1562793539", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/b/d/bd814ce3-9555-4e9d-a212-e40717f4e546.jpg?1562793539"}, "mana_cost": "{4}{G}{G}", "cmc": 6.0, "type_line": "Creature \u2014 Plant Elemental Beast", "oracle_text": "{5}{G}{G}: Put a +1/+1 counter on Carnivorous Moss-Beast.", "power": "4", "toughness": "5", "colors": ["G"], "color_identity": ["G"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "6ce49890-3b37-42a5-8932-dbeef1d7b62c", "set": "m15", "set_name": "Magic 2015", "set_type": "core", "set_uri": "https://api.scryfall.com/sets/6ce49890-3b37-42a5-8932-dbeef1d7b62c", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Am15&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/m15?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/bd814ce3-9555-4e9d-a212-e40717f4e546/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A32f5f67b-bba3-427c-ab24-13a50acdc611&unique=prints", "collector_number": "170", "digital": false, "rarity": "common", "flavor_text": "Ranger wisdom dictates that when fleeing from a moss-beast, you must stay calm, find your bearings, and run south.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Filip Burburan", "artist_ids": ["66082c3b-a623-4d34-be51-2475214b85d3"], "illustration_id": "a9b1f273-6be3-43e8-b1bd-cadd23ad81a5", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 19702, "penny_rank": 12345, "prices": {"usd": "0.02", "usd_foil": "0.23", "usd_etched": null, "eur": "0.02", "eur_foil": "0.20", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=383200", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Carnivorous+Moss-Beast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Carnivorous+Moss-Beast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Carnivorous+Moss-Beast"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/91319?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Carnivorous+Moss-Beast&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/53750?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "adfb0804-50d6-4bca-8733-72e01030a543", "oracle_id": "81c40bd8-b989-41e8-9527-eae8fb87311d", "multiverse_ids": [25926], "mtgo_id": 15071, "mtgo_foil_id": 15072, "tcgplayer_id": 7771, "cardmarket_id": 3352, "name": "Cavern Harpy", "lang": "en", "released_at": "2001-02-05", "uri": "https://api.scryfall.com/cards/adfb0804-50d6-4bca-8733-72e01030a543", "scryfall_uri": "https://scryfall.com/card/pls/97/cavern-harpy?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/a/d/adfb0804-50d6-4bca-8733-72e01030a543.jpg?1562931741", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/d/adfb0804-50d6-4bca-8733-72e01030a543.jpg?1562931741", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/a/d/adfb0804-50d6-4bca-8733-72e01030a543.jpg?1562931741", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/a/d/adfb0804-50d6-4bca-8733-72e01030a543.png?1562931741", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/d/adfb0804-50d6-4bca-8733-72e01030a543.jpg?1562931741", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/a/d/adfb0804-50d6-4bca-8733-72e01030a543.jpg?1562931741"}, "mana_cost": "{U}{B}", "cmc": 2.0, "type_line": "Creature \u2014 Harpy Beast", "oracle_text": "Flying\nWhen Cavern Harpy enters the battlefield, return a blue or black creature you control to its owner's hand.\nPay 1 life: Return Cavern Harpy to its owner's hand.", "power": "2", "toughness": "1", "colors": ["B", "U"], "color_identity": ["B", "U"], "keywords": ["Flying"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "82dc193b-bd5f-4883-a93f-a4155b467ee0", "set": "pls", "set_name": "Planeshift", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/82dc193b-bd5f-4883-a93f-a4155b467ee0", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Apls&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/pls?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/adfb0804-50d6-4bca-8733-72e01030a543/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A81c40bd8-b989-41e8-9527-eae8fb87311d&unique=prints", "collector_number": "97", "digital": false, "rarity": "common", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Daren Bader", "artist_ids": ["7da1a585-c875-45e4-b322-5da9e8e1f651"], "illustration_id": "c33021be-832c-4891-9433-4838df4ecb17", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 7501, "prices": {"usd": "0.24", "usd_foil": "27.39", "usd_etched": null, "eur": "0.38", "eur_foil": "25.94", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=25926", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Cavern+Harpy&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Cavern+Harpy&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Cavern+Harpy"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/7771?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Cavern+Harpy&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/15071?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "34748acb-7045-42b6-a93f-a3f11a1bc839", "oracle_id": "4a1b8db2-8814-45b3-ab8a-a1c8522d7fa1", "multiverse_ids": [174994], "mtgo_id": 31063, "mtgo_foil_id": 31064, "tcgplayer_id": 27632, "cardmarket_id": 19885, "name": "Cavern Thoctar", "lang": "en", "released_at": "2008-10-03", "uri": "https://api.scryfall.com/cards/34748acb-7045-42b6-a93f-a3f11a1bc839", "scryfall_uri": "https://scryfall.com/card/ala/125/cavern-thoctar?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/3/4/34748acb-7045-42b6-a93f-a3f11a1bc839.jpg?1562702691", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/4/34748acb-7045-42b6-a93f-a3f11a1bc839.jpg?1562702691", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/3/4/34748acb-7045-42b6-a93f-a3f11a1bc839.jpg?1562702691", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/3/4/34748acb-7045-42b6-a93f-a3f11a1bc839.png?1562702691", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/4/34748acb-7045-42b6-a93f-a3f11a1bc839.jpg?1562702691", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/3/4/34748acb-7045-42b6-a93f-a3f11a1bc839.jpg?1562702691"}, "mana_cost": "{5}{G}", "cmc": 6.0, "type_line": "Creature \u2014 Beast", "oracle_text": "{1}{R}: Cavern Thoctar gets +1/+0 until end of turn.", "power": "5", "toughness": "5", "colors": ["G"], "color_identity": ["G", "R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "d667aaec-09b7-4406-b6fa-60795132dc11", "set": "ala", "set_name": "Shards of Alara", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/d667aaec-09b7-4406-b6fa-60795132dc11", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aala&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ala?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/34748acb-7045-42b6-a93f-a3f11a1bc839/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A4a1b8db2-8814-45b3-ab8a-a1c8522d7fa1&unique=prints", "collector_number": "125", "digital": false, "rarity": "common", "flavor_text": "Natives of Naya know better than to loiter near the mouth of a cave. Two glowing red eyes and the stench of foul breath are all the warning you're likely to get.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Jean-S\u00e9bastien Rossbach", "artist_ids": ["1b0c07a7-84e8-4384-9b97-28c162586558"], "illustration_id": "59ccde60-b214-4116-8efa-b50d09452fe4", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 22421, "prices": {"usd": "0.07", "usd_foil": "0.15", "usd_etched": null, "eur": "0.02", "eur_foil": "0.10", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=174994", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Cavern+Thoctar&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Cavern+Thoctar&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Cavern+Thoctar"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/27632?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Cavern+Thoctar&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/31063?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "f6a85165-5aed-4e26-a314-1370d4638deb", "oracle_id": "6db09a0a-6c8e-4829-9b55-00745f0587b5", "multiverse_ids": [180604], "mtgo_id": 32372, "mtgo_foil_id": 32373, "tcgplayer_id": 31709, "cardmarket_id": 20975, "name": "Cerodon Yearling", "lang": "en", "released_at": "2009-04-30", "uri": "https://api.scryfall.com/cards/f6a85165-5aed-4e26-a314-1370d4638deb", "scryfall_uri": "https://scryfall.com/card/arb/96/cerodon-yearling?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/f/6/f6a85165-5aed-4e26-a314-1370d4638deb.jpg?1562645142", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/6/f6a85165-5aed-4e26-a314-1370d4638deb.jpg?1562645142", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/f/6/f6a85165-5aed-4e26-a314-1370d4638deb.jpg?1562645142", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/f/6/f6a85165-5aed-4e26-a314-1370d4638deb.png?1562645142", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/6/f6a85165-5aed-4e26-a314-1370d4638deb.jpg?1562645142", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/f/6/f6a85165-5aed-4e26-a314-1370d4638deb.jpg?1562645142"}, "mana_cost": "{R}{W}", "cmc": 2.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Vigilance, haste", "power": "2", "toughness": "2", "colors": ["R", "W"], "color_identity": ["R", "W"], "keywords": ["Vigilance", "Haste"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "db486ec5-141d-4781-9ee5-5456926934c1", "set": "arb", "set_name": "Alara Reborn", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/db486ec5-141d-4781-9ee5-5456926934c1", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aarb&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/arb?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/f6a85165-5aed-4e26-a314-1370d4638deb/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A6db09a0a-6c8e-4829-9b55-00745f0587b5&unique=prints", "collector_number": "96", "digital": false, "rarity": "common", "flavor_text": "The unit of measurement used to chart a cerodon's growth is \"persons consumed.\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Christopher Moeller", "artist_ids": ["21e10012-06ae-44f2-b38d-3824dd2e73d4"], "illustration_id": "b8295b3c-f692-4796-b2e3-850bbb0834f5", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 14547, "penny_rank": 6834, "prices": {"usd": "0.13", "usd_foil": "0.41", "usd_etched": null, "eur": "0.21", "eur_foil": "0.25", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=180604", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Cerodon+Yearling&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Cerodon+Yearling&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Cerodon+Yearling"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/31709?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Cerodon+Yearling&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/32372?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "670a5bba-a10f-41f6-88cd-cef1dfe4bfa9", "oracle_id": "cfaf4871-2157-495d-bca8-d169bd1f7ae3", "multiverse_ids": [29755], "mtgo_id": 16519, "mtgo_foil_id": 16520, "tcgplayer_id": 9456, "cardmarket_id": 2593, "name": "Chainflinger", "lang": "en", "released_at": "2001-10-01", "uri": "https://api.scryfall.com/cards/670a5bba-a10f-41f6-88cd-cef1dfe4bfa9", "scryfall_uri": "https://scryfall.com/card/ody/181/chainflinger?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/6/7/670a5bba-a10f-41f6-88cd-cef1dfe4bfa9.jpg?1562914041", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/7/670a5bba-a10f-41f6-88cd-cef1dfe4bfa9.jpg?1562914041", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/6/7/670a5bba-a10f-41f6-88cd-cef1dfe4bfa9.jpg?1562914041", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/6/7/670a5bba-a10f-41f6-88cd-cef1dfe4bfa9.png?1562914041", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/7/670a5bba-a10f-41f6-88cd-cef1dfe4bfa9.jpg?1562914041", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/6/7/670a5bba-a10f-41f6-88cd-cef1dfe4bfa9.jpg?1562914041"}, "mana_cost": "{3}{R}", "cmc": 4.0, "type_line": "Creature \u2014 Beast", "oracle_text": "{1}{R}, {T}: Chainflinger deals 1 damage to any target.\nThreshold \u2014 {2}{R}, {T}: Chainflinger deals 2 damage to any target. Activate only if seven or more cards are in your graveyard.", "power": "2", "toughness": "2", "colors": ["R"], "color_identity": ["R"], "keywords": ["Threshold"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "b0d90d2d-494a-4224-bfa0-36ce5ee281b1", "set": "ody", "set_name": "Odyssey", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/b0d90d2d-494a-4224-bfa0-36ce5ee281b1", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aody&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ody?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/670a5bba-a10f-41f6-88cd-cef1dfe4bfa9/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Acfaf4871-2157-495d-bca8-d169bd1f7ae3&unique=prints", "collector_number": "181", "digital": false, "rarity": "common", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Scott M. Fischer", "artist_ids": ["23b0cf43-3e43-44c6-8329-96446eca5bce"], "illustration_id": "bf73741c-7c97-4ce2-aa27-95312ddc7781", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 21637, "prices": {"usd": "0.09", "usd_foil": "0.33", "usd_etched": null, "eur": "0.25", "eur_foil": "0.35", "tix": "0.06"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=29755", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Chainflinger&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Chainflinger&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Chainflinger"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/9456?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Chainflinger&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/16519?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "860c613d-d031-4c2a-922b-39f4eec04e18", "oracle_id": "0e1267d4-0155-4503-829a-03264c8d14a0", "multiverse_ids": [19798], "mtgo_id": 13389, "mtgo_foil_id": 13390, "tcgplayer_id": 6464, "cardmarket_id": 11437, "name": "Chambered Nautilus", "lang": "en", "released_at": "1999-10-04", "uri": "https://api.scryfall.com/cards/860c613d-d031-4c2a-922b-39f4eec04e18", "scryfall_uri": "https://scryfall.com/card/mmq/64/chambered-nautilus?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/8/6/860c613d-d031-4c2a-922b-39f4eec04e18.jpg?1562381838", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/6/860c613d-d031-4c2a-922b-39f4eec04e18.jpg?1562381838", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/8/6/860c613d-d031-4c2a-922b-39f4eec04e18.jpg?1562381838", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/8/6/860c613d-d031-4c2a-922b-39f4eec04e18.png?1562381838", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/6/860c613d-d031-4c2a-922b-39f4eec04e18.jpg?1562381838", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/8/6/860c613d-d031-4c2a-922b-39f4eec04e18.jpg?1562381838"}, "mana_cost": "{2}{U}", "cmc": 3.0, "type_line": "Creature \u2014 Nautilus Beast", "oracle_text": "Whenever Chambered Nautilus becomes blocked, you may draw a card.", "power": "2", "toughness": "2", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "restricted", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "385e11a4-492b-4d07-b4a6-a1409ef829b8", "set": "mmq", "set_name": "Mercadian Masques", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/385e11a4-492b-4d07-b4a6-a1409ef829b8", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ammq&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/mmq?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/860c613d-d031-4c2a-922b-39f4eec04e18/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A0e1267d4-0155-4503-829a-03264c8d14a0&unique=prints", "collector_number": "64", "digital": false, "rarity": "uncommon", "flavor_text": "What's merely a home for the nautilus can become exquisite jewelry in the hands of Saprazzan artisans.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "John Matson", "artist_ids": ["a1685587-4b55-446b-b420-c37b202ed3f1"], "illustration_id": "7a085100-6323-498b-a2d2-cf725df4052e", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 21122, "prices": {"usd": "0.10", "usd_foil": "2.00", "usd_etched": null, "eur": "0.25", "eur_foil": "4.00", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=19798", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Chambered+Nautilus&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Chambered+Nautilus&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Chambered+Nautilus"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/6464?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Chambered+Nautilus&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/13389?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "6d129aa8-b637-451e-8123-5221e08cc2cc", "oracle_id": "2a521811-7106-4531-b69c-631e207b8988", "multiverse_ids": [218062], "mtgo_id": 39852, "mtgo_foil_id": 39853, "tcgplayer_id": 39499, "cardmarket_id": 245932, "name": "Chancellor of the Tangle", "lang": "en", "released_at": "2011-05-13", "uri": "https://api.scryfall.com/cards/6d129aa8-b637-451e-8123-5221e08cc2cc", "scryfall_uri": "https://scryfall.com/card/nph/106/chancellor-of-the-tangle?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/6/d/6d129aa8-b637-451e-8123-5221e08cc2cc.jpg?1562878494", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/d/6d129aa8-b637-451e-8123-5221e08cc2cc.jpg?1562878494", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/6/d/6d129aa8-b637-451e-8123-5221e08cc2cc.jpg?1562878494", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/6/d/6d129aa8-b637-451e-8123-5221e08cc2cc.png?1562878494", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/d/6d129aa8-b637-451e-8123-5221e08cc2cc.jpg?1562878494", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/6/d/6d129aa8-b637-451e-8123-5221e08cc2cc.jpg?1562878494"}, "mana_cost": "{4}{G}{G}{G}", "cmc": 7.0, "type_line": "Creature \u2014 Phyrexian Beast", "oracle_text": "You may reveal this card from your opening hand. If you do, at the beginning of your first main phase, add {G}.\nVigilance, reach", "power": "6", "toughness": "7", "colors": ["G"], "color_identity": ["G"], "keywords": ["Reach", "Vigilance"], "produced_mana": ["G"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "e8e356d8-6d01-4dab-aa07-d0999dc9359f", "set": "nph", "set_name": "New Phyrexia", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/e8e356d8-6d01-4dab-aa07-d0999dc9359f", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Anph&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/nph?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/6d129aa8-b637-451e-8123-5221e08cc2cc/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A2a521811-7106-4531-b69c-631e207b8988&unique=prints", "collector_number": "106", "digital": false, "rarity": "rare", "watermark": "phyrexian", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Steve Prescott", "artist_ids": ["a1139fb8-41f5-4a9e-9a74-f662e1a23b35"], "illustration_id": "b637dd3b-0aef-45f7-89c1-d3b302b622a5", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 13770, "prices": {"usd": "0.67", "usd_foil": "4.48", "usd_etched": null, "eur": "0.84", "eur_foil": "4.25", "tix": "0.14"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=218062", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Chancellor+of+the+Tangle&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Chancellor+of+the+Tangle&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Chancellor+of+the+Tangle"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/39499?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Chancellor+of+the+Tangle&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/39852?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "68222ab7-7b9c-43e5-b80e-db643d80a6d9", "oracle_id": "0f10f9d1-f9f9-4356-9208-0f21f44bfb97", "multiverse_ids": [446034], "tcgplayer_id": 167653, "cardmarket_id": 358394, "name": "Charging Binox", "lang": "en", "released_at": "2018-06-08", "uri": "https://api.scryfall.com/cards/68222ab7-7b9c-43e5-b80e-db643d80a6d9", "scryfall_uri": "https://scryfall.com/card/bbd/66/charging-binox?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/6/8/68222ab7-7b9c-43e5-b80e-db643d80a6d9.jpg?1562915983", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/8/68222ab7-7b9c-43e5-b80e-db643d80a6d9.jpg?1562915983", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/6/8/68222ab7-7b9c-43e5-b80e-db643d80a6d9.jpg?1562915983", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/6/8/68222ab7-7b9c-43e5-b80e-db643d80a6d9.png?1562915983", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/8/68222ab7-7b9c-43e5-b80e-db643d80a6d9.jpg?1562915983", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/6/8/68222ab7-7b9c-43e5-b80e-db643d80a6d9.jpg?1562915983"}, "mana_cost": "{7}{G}", "cmc": 8.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Assist (Another player can pay up to {7} of this spell's cost.)\nTrample", "power": "7", "toughness": "5", "colors": ["G"], "color_identity": ["G"], "keywords": ["Assist", "Trample"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "95f97fbc-58ef-4645-982e-43e2db6f1124", "set": "bbd", "set_name": "Battlebond", "set_type": "draft_innovation", "set_uri": "https://api.scryfall.com/sets/95f97fbc-58ef-4645-982e-43e2db6f1124", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Abbd&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/bbd?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/68222ab7-7b9c-43e5-b80e-db643d80a6d9/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A0f10f9d1-f9f9-4356-9208-0f21f44bfb97&unique=prints", "collector_number": "66", "digital": false, "rarity": "common", "flavor_text": "Arena beasts are bred for flashiness and foul temper. An extra head addresses both requirements.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Jason Felix", "artist_ids": ["af42a44c-8ec3-47a7-9047-5d29ddad186d"], "illustration_id": "632bf9e4-37b8-4209-88e3-5c44d4435948", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 21178, "prices": {"usd": "0.02", "usd_foil": "0.17", "usd_etched": null, "eur": "0.09", "eur_foil": "0.25", "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=446034", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Charging+Binox&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Charging+Binox&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Charging+Binox"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/167653?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Charging+Binox&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Charging+Binox&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "d2cfff37-655f-4107-abf3-e6f63d0e4de2", "oracle_id": "67457ecb-5ff2-4f5d-9039-b9e80f54bba8", "multiverse_ids": [39469], "mtgo_id": 18001, "mtgo_foil_id": 18002, "tcgplayer_id": 10584, "cardmarket_id": 1825, "name": "Charging Slateback", "lang": "en", "released_at": "2002-10-07", "uri": "https://api.scryfall.com/cards/d2cfff37-655f-4107-abf3-e6f63d0e4de2", "scryfall_uri": "https://scryfall.com/card/ons/194/charging-slateback?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/d/2/d2cfff37-655f-4107-abf3-e6f63d0e4de2.jpg?1562945225", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/2/d2cfff37-655f-4107-abf3-e6f63d0e4de2.jpg?1562945225", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/d/2/d2cfff37-655f-4107-abf3-e6f63d0e4de2.jpg?1562945225", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/d/2/d2cfff37-655f-4107-abf3-e6f63d0e4de2.png?1562945225", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/2/d2cfff37-655f-4107-abf3-e6f63d0e4de2.jpg?1562945225", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/d/2/d2cfff37-655f-4107-abf3-e6f63d0e4de2.jpg?1562945225"}, "mana_cost": "{4}{R}", "cmc": 5.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Charging Slateback can't block.\nMorph {4}{R} (You may cast this card face down as a 2/2 creature for {3}. Turn it face up any time for its morph cost.)", "power": "4", "toughness": "3", "colors": ["R"], "color_identity": ["R"], "keywords": ["Morph"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "914a6c6d-cb3b-45e8-a2db-9978a2339faf", "set": "ons", "set_name": "Onslaught", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/914a6c6d-cb3b-45e8-a2db-9978a2339faf", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aons&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ons?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/d2cfff37-655f-4107-abf3-e6f63d0e4de2/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A67457ecb-5ff2-4f5d-9039-b9e80f54bba8&unique=prints", "collector_number": "194", "digital": false, "rarity": "common", "flavor_text": "Goblins prize its hide for building rock sled runners.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Mark Tedin", "artist_ids": ["9ee9a9cc-c09e-486f-918b-69f80cbc4188"], "illustration_id": "f7aa1752-eeb8-464b-af49-5d95360dbc6f", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 23184, "prices": {"usd": "0.04", "usd_foil": "0.29", "usd_etched": null, "eur": "0.12", "eur_foil": "0.20", "tix": "0.06"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=39469", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Charging+Slateback&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Charging+Slateback&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Charging+Slateback"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/10584?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Charging+Slateback&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/18001?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "b0960bdb-baa7-4b9a-a377-d350eb9c1d3b", "oracle_id": "717152c3-2082-49aa-9274-a1a6abe54b65", "multiverse_ids": [270828], "mtgo_id": 43756, "mtgo_foil_id": 43757, "tcgplayer_id": 58070, "cardmarket_id": 253601, "name": "Chartooth Cougar", "lang": "en", "released_at": "2012-03-30", "uri": "https://api.scryfall.com/cards/b0960bdb-baa7-4b9a-a377-d350eb9c1d3b", "scryfall_uri": "https://scryfall.com/card/ddi/59/chartooth-cougar?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/b/0/b0960bdb-baa7-4b9a-a377-d350eb9c1d3b.jpg?1581708552", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/0/b0960bdb-baa7-4b9a-a377-d350eb9c1d3b.jpg?1581708552", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/b/0/b0960bdb-baa7-4b9a-a377-d350eb9c1d3b.jpg?1581708552", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/b/0/b0960bdb-baa7-4b9a-a377-d350eb9c1d3b.png?1581708552", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/0/b0960bdb-baa7-4b9a-a377-d350eb9c1d3b.jpg?1581708552", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/b/0/b0960bdb-baa7-4b9a-a377-d350eb9c1d3b.jpg?1581708552"}, "mana_cost": "{5}{R}", "cmc": 6.0, "type_line": "Creature \u2014 Cat Beast", "oracle_text": "{R}: Chartooth Cougar gets +1/+0 until end of turn.\nMountaincycling {2} ({2}, Discard this card: Search your library for a Mountain card, reveal it, put it into your hand, then shuffle.)", "power": "4", "toughness": "4", "colors": ["R"], "color_identity": ["R"], "keywords": ["Mountaincycling", "Landcycling", "Typecycling"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "a29e8ace-bbcd-4507-b159-7ec77d28f792", "set": "ddi", "set_name": "Duel Decks: Venser vs. Koth", "set_type": "duel_deck", "set_uri": "https://api.scryfall.com/sets/a29e8ace-bbcd-4507-b159-7ec77d28f792", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Addi&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ddi?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/b0960bdb-baa7-4b9a-a377-d350eb9c1d3b/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A717152c3-2082-49aa-9274-a1a6abe54b65&unique=prints", "collector_number": "59", "digital": false, "rarity": "common", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Chase Stone", "artist_ids": ["2d753f61-5f5b-468e-97ea-8e0fdd347340"], "illustration_id": "10f48746-50af-438e-a378-f18f41e862b5", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "edhrec_rank": 13187, "penny_rank": 7343, "prices": {"usd": "0.07", "usd_foil": null, "usd_etched": null, "eur": "0.05", "eur_foil": null, "tix": "0.06"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=270828", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Chartooth+Cougar&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Chartooth+Cougar&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Chartooth+Cougar"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/58070?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Chartooth+Cougar&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/43756?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "6b2c9c07-c3db-46ca-a204-b710c3a34ae9", "oracle_id": "717152c3-2082-49aa-9274-a1a6abe54b65", "multiverse_ids": [44281], "mtgo_id": 18662, "mtgo_foil_id": 18663, "tcgplayer_id": 10909, "cardmarket_id": 1077, "name": "Chartooth Cougar", "lang": "en", "released_at": "2003-05-26", "uri": "https://api.scryfall.com/cards/6b2c9c07-c3db-46ca-a204-b710c3a34ae9", "scryfall_uri": "https://scryfall.com/card/scg/84/chartooth-cougar?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/6/b/6b2c9c07-c3db-46ca-a204-b710c3a34ae9.jpg?1562530181", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/b/6b2c9c07-c3db-46ca-a204-b710c3a34ae9.jpg?1562530181", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/6/b/6b2c9c07-c3db-46ca-a204-b710c3a34ae9.jpg?1562530181", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/6/b/6b2c9c07-c3db-46ca-a204-b710c3a34ae9.png?1562530181", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/b/6b2c9c07-c3db-46ca-a204-b710c3a34ae9.jpg?1562530181", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/6/b/6b2c9c07-c3db-46ca-a204-b710c3a34ae9.jpg?1562530181"}, "mana_cost": "{5}{R}", "cmc": 6.0, "type_line": "Creature \u2014 Cat Beast", "oracle_text": "{R}: Chartooth Cougar gets +1/+0 until end of turn.\nMountaincycling {2} ({2}, Discard this card: Search your library for a Mountain card, reveal it, put it into your hand, then shuffle.)", "power": "4", "toughness": "4", "colors": ["R"], "color_identity": ["R"], "keywords": ["Mountaincycling", "Landcycling", "Typecycling"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "5133c3a1-1412-4ce6-a1f0-73b695966ded", "set": "scg", "set_name": "Scourge", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/5133c3a1-1412-4ce6-a1f0-73b695966ded", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ascg&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/scg?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/6b2c9c07-c3db-46ca-a204-b710c3a34ae9/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A717152c3-2082-49aa-9274-a1a6abe54b65&unique=prints", "collector_number": "84", "digital": false, "rarity": "common", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Tony Szczudlo", "artist_ids": ["1952c90b-a5a7-4328-9f7c-e11064f59daf"], "illustration_id": "6a212609-2add-41fd-9ec5-172f640ba8f9", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 13187, "penny_rank": 7343, "prices": {"usd": "0.09", "usd_foil": "0.59", "usd_etched": null, "eur": "0.01", "eur_foil": "0.15", "tix": "0.05"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=44281", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Chartooth+Cougar&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Chartooth+Cougar&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Chartooth+Cougar"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/10909?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Chartooth+Cougar&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/18662?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "c91cf95f-5007-409c-b891-00e10a3477e0", "oracle_id": "8cbac2e8-5755-433b-9f42-7fd5c214aab3", "multiverse_ids": [470627], "mtgo_id": 77276, "tcgplayer_id": 196455, "cardmarket_id": 391367, "name": "Chromeshell Crab", "lang": "en", "released_at": "2019-08-23", "uri": "https://api.scryfall.com/cards/c91cf95f-5007-409c-b891-00e10a3477e0", "scryfall_uri": "https://scryfall.com/card/c19/81/chromeshell-crab?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/c/9/c91cf95f-5007-409c-b891-00e10a3477e0.jpg?1568003959", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/9/c91cf95f-5007-409c-b891-00e10a3477e0.jpg?1568003959", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/c/9/c91cf95f-5007-409c-b891-00e10a3477e0.jpg?1568003959", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/c/9/c91cf95f-5007-409c-b891-00e10a3477e0.png?1568003959", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/9/c91cf95f-5007-409c-b891-00e10a3477e0.jpg?1568003959", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/c/9/c91cf95f-5007-409c-b891-00e10a3477e0.jpg?1568003959"}, "mana_cost": "{4}{U}", "cmc": 5.0, "type_line": "Creature \u2014 Crab Beast", "oracle_text": "Morph {4}{U} (You may cast this card face down as a 2/2 creature for {3}. Turn it face up any time for its morph cost.)\nWhen Chromeshell Crab is turned face up, you may exchange control of target creature you control and target creature an opponent controls.", "power": "3", "toughness": "3", "colors": ["U"], "color_identity": ["U"], "keywords": ["Morph"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "0fa3ccbb-d86d-4a2e-a55e-c4979c4feeb2", "set": "c19", "set_name": "Commander 2019", "set_type": "commander", "set_uri": "https://api.scryfall.com/sets/0fa3ccbb-d86d-4a2e-a55e-c4979c4feeb2", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ac19&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/c19?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/c91cf95f-5007-409c-b891-00e10a3477e0/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A8cbac2e8-5755-433b-9f42-7fd5c214aab3&unique=prints", "collector_number": "81", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Joseph Meehan", "artist_ids": ["6befd6d5-7f8d-4b7c-87e3-5511391a3359"], "illustration_id": "d2ebc515-872a-41b7-80ad-51e2ba5f425e", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "edhrec_rank": 4739, "penny_rank": 11791, "preview": {"source": "Card Kingdom", "source_uri": "https://twitter.com/Card_Kingdom/status/1158429818955763712?s=20", "previewed_at": "2019-08-05"}, "prices": {"usd": "0.09", "usd_foil": null, "usd_etched": null, "eur": "0.20", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=470627", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Chromeshell+Crab&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Chromeshell+Crab&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Chromeshell+Crab"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/196455?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Chromeshell+Crab&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/77276?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "e02a40a4-fa61-4595-810a-3796e0d71507", "oracle_id": "8cbac2e8-5755-433b-9f42-7fd5c214aab3", "multiverse_ids": [44205], "mtgo_id": 18453, "mtgo_foil_id": 18454, "tcgplayer_id": 10722, "cardmarket_id": 2013, "name": "Chromeshell Crab", "lang": "en", "released_at": "2003-02-03", "uri": "https://api.scryfall.com/cards/e02a40a4-fa61-4595-810a-3796e0d71507", "scryfall_uri": "https://scryfall.com/card/lgn/32/chromeshell-crab?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/e/0/e02a40a4-fa61-4595-810a-3796e0d71507.jpg?1562940039", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/0/e02a40a4-fa61-4595-810a-3796e0d71507.jpg?1562940039", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/e/0/e02a40a4-fa61-4595-810a-3796e0d71507.jpg?1562940039", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/e/0/e02a40a4-fa61-4595-810a-3796e0d71507.png?1562940039", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/0/e02a40a4-fa61-4595-810a-3796e0d71507.jpg?1562940039", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/e/0/e02a40a4-fa61-4595-810a-3796e0d71507.jpg?1562940039"}, "mana_cost": "{4}{U}", "cmc": 5.0, "type_line": "Creature \u2014 Crab Beast", "oracle_text": "Morph {4}{U} (You may cast this card face down as a 2/2 creature for {3}. Turn it face up any time for its morph cost.)\nWhen Chromeshell Crab is turned face up, you may exchange control of target creature you control and target creature an opponent controls.", "power": "3", "toughness": "3", "colors": ["U"], "color_identity": ["U"], "keywords": ["Morph"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "c2d60a18-1a81-4784-8e0c-e1de2f43c5cf", "set": "lgn", "set_name": "Legions", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/c2d60a18-1a81-4784-8e0c-e1de2f43c5cf", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Algn&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/lgn?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/e02a40a4-fa61-4595-810a-3796e0d71507/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A8cbac2e8-5755-433b-9f42-7fd5c214aab3&unique=prints", "collector_number": "32", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Ron Spencer", "artist_ids": ["dab52c11-0564-4207-a4a1-c1735c946a65"], "illustration_id": "e8784662-d850-4177-8df9-11b3f0108cdf", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 4739, "penny_rank": 11791, "prices": {"usd": "0.24", "usd_foil": "12.42", "usd_etched": null, "eur": "0.40", "eur_foil": "10.00", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=44205", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Chromeshell+Crab&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Chromeshell+Crab&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Chromeshell+Crab"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/10722?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Chromeshell+Crab&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/18453?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "764c1a14-143f-4601-92c5-ebeabf3e375d", "oracle_id": "ea0dde32-1638-47f1-bef6-0813794ba35b", "multiverse_ids": [159612], "mtgo_id": 31697, "mtgo_foil_id": 31698, "tcgplayer_id": 28512, "cardmarket_id": 20722, "name": "Cliffrunner Behemoth", "lang": "en", "released_at": "2009-02-06", "uri": "https://api.scryfall.com/cards/764c1a14-143f-4601-92c5-ebeabf3e375d", "scryfall_uri": "https://scryfall.com/card/con/79/cliffrunner-behemoth?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/7/6/764c1a14-143f-4601-92c5-ebeabf3e375d.jpg?1562801821", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/6/764c1a14-143f-4601-92c5-ebeabf3e375d.jpg?1562801821", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/7/6/764c1a14-143f-4601-92c5-ebeabf3e375d.jpg?1562801821", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/7/6/764c1a14-143f-4601-92c5-ebeabf3e375d.png?1562801821", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/6/764c1a14-143f-4601-92c5-ebeabf3e375d.jpg?1562801821", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/7/6/764c1a14-143f-4601-92c5-ebeabf3e375d.jpg?1562801821"}, "mana_cost": "{3}{G}", "cmc": 4.0, "type_line": "Creature \u2014 Rhino Beast", "oracle_text": "Cliffrunner Behemoth has haste as long as you control a red permanent.\nCliffrunner Behemoth has lifelink as long as you control a white permanent.", "power": "5", "toughness": "3", "colors": ["G"], "color_identity": ["G"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "76b2db58-904c-4e49-8580-9f62f7b3cca4", "set": "con", "set_name": "Conflux", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/76b2db58-904c-4e49-8580-9f62f7b3cca4", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Acon&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/con?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/764c1a14-143f-4601-92c5-ebeabf3e375d/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aea0dde32-1638-47f1-bef6-0813794ba35b&unique=prints", "collector_number": "79", "digital": false, "rarity": "rare", "flavor_text": "It's revered for its power, celebrated for its grace, and feared for the avalanches triggered by its thunderous feet.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Wayne Reynolds", "artist_ids": ["afc47cec-3ccc-404e-a8c6-4d83dd504271"], "illustration_id": "d5ab0abb-8a32-4592-91df-33916e15bd92", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 15785, "penny_rank": 7835, "prices": {"usd": "0.22", "usd_foil": "0.30", "usd_etched": null, "eur": "0.05", "eur_foil": "0.50", "tix": "0.01"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=159612", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Cliffrunner+Behemoth&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Cliffrunner+Behemoth&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Cliffrunner+Behemoth"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/28512?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Cliffrunner+Behemoth&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/31697?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "27f916a2-0ace-44b5-99dc-72979af34db9", "oracle_id": "eb97c8db-ac6c-476c-b14d-87785e9c82f0", "multiverse_ids": [7], "tcgplayer_id": 1063, "cardmarket_id": 5469, "name": "Clockwork Beast", "lang": "en", "released_at": "1993-08-05", "uri": "https://api.scryfall.com/cards/27f916a2-0ace-44b5-99dc-72979af34db9", "scryfall_uri": "https://scryfall.com/card/lea/236/clockwork-beast?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/2/7/27f916a2-0ace-44b5-99dc-72979af34db9.jpg?1559591318", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/7/27f916a2-0ace-44b5-99dc-72979af34db9.jpg?1559591318", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/2/7/27f916a2-0ace-44b5-99dc-72979af34db9.jpg?1559591318", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/2/7/27f916a2-0ace-44b5-99dc-72979af34db9.png?1559591318", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/7/27f916a2-0ace-44b5-99dc-72979af34db9.jpg?1559591318", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/2/7/27f916a2-0ace-44b5-99dc-72979af34db9.jpg?1559591318"}, "mana_cost": "{6}", "cmc": 6.0, "type_line": "Artifact Creature \u2014 Beast", "oracle_text": "Clockwork Beast enters the battlefield with seven +1/+0 counters on it.\nAt end of combat, if Clockwork Beast attacked or blocked this combat, remove a +1/+0 counter from it.\n{X}, {T}: Put up to X +1/+0 counters on Clockwork Beast. This ability can't cause the total number of +1/+0 counters on Clockwork Beast to be greater than seven. Activate only during your upkeep.", "power": "0", "toughness": "4", "colors": [], "color_identity": [], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "restricted", "duel": "legal", "oldschool": "legal", "premodern": "legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "288bd996-960e-448b-a187-9504c1930c2c", "set": "lea", "set_name": "Limited Edition Alpha", "set_type": "core", "set_uri": "https://api.scryfall.com/sets/288bd996-960e-448b-a187-9504c1930c2c", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Alea&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/lea?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/27f916a2-0ace-44b5-99dc-72979af34db9/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aeb97c8db-ac6c-476c-b14d-87785e9c82f0&unique=prints", "collector_number": "236", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Drew Tucker", "artist_ids": ["22eef389-7b21-4dda-95dc-4c9a0f1bf4dd"], "illustration_id": "7538ca3f-1464-497c-bebe-876d46abac38", "border_color": "black", "frame": "1993", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 20043, "prices": {"usd": null, "usd_foil": null, "usd_etched": null, "eur": "550.00", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=7", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Clockwork+Beast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Clockwork+Beast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Clockwork+Beast"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/1063?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Clockwork+Beast&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Clockwork+Beast&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "d5e5ae63-4963-485e-b40c-3450ee46674b", "oracle_id": "eb97c8db-ac6c-476c-b14d-87785e9c82f0", "multiverse_ids": [26617], "tcgplayer_id": 37467, "cardmarket_id": 14414, "name": "Clockwork Beast", "lang": "en", "released_at": "2000-10-01", "uri": "https://api.scryfall.com/cards/d5e5ae63-4963-485e-b40c-3450ee46674b", "scryfall_uri": "https://scryfall.com/card/btd/70/clockwork-beast?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/d/5/d5e5ae63-4963-485e-b40c-3450ee46674b.jpg?1562940262", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/5/d5e5ae63-4963-485e-b40c-3450ee46674b.jpg?1562940262", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/d/5/d5e5ae63-4963-485e-b40c-3450ee46674b.jpg?1562940262", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/d/5/d5e5ae63-4963-485e-b40c-3450ee46674b.png?1562940262", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/5/d5e5ae63-4963-485e-b40c-3450ee46674b.jpg?1562940262", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/d/5/d5e5ae63-4963-485e-b40c-3450ee46674b.jpg?1562940262"}, "mana_cost": "{6}", "cmc": 6.0, "type_line": "Artifact Creature \u2014 Beast", "oracle_text": "Clockwork Beast enters the battlefield with seven +1/+0 counters on it.\nAt end of combat, if Clockwork Beast attacked or blocked this combat, remove a +1/+0 counter from it.\n{X}, {T}: Put up to X +1/+0 counters on Clockwork Beast. This ability can't cause the total number of +1/+0 counters on Clockwork Beast to be greater than seven. Activate only during your upkeep.", "power": "0", "toughness": "4", "colors": [], "color_identity": [], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "restricted", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "cdc88d15-c4de-4210-a7e4-dcc366de845f", "set": "btd", "set_name": "Beatdown Box Set", "set_type": "box", "set_uri": "https://api.scryfall.com/sets/cdc88d15-c4de-4210-a7e4-dcc366de845f", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Abtd&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/btd?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/d5e5ae63-4963-485e-b40c-3450ee46674b/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aeb97c8db-ac6c-476c-b14d-87785e9c82f0&unique=prints", "collector_number": "70", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Carl Critchlow", "artist_ids": ["17948f16-611a-44b8-8d10-9895a0bdfff1"], "illustration_id": "05004e06-d6ac-4a61-aa65-bb97290848c2", "border_color": "white", "frame": "1997", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "edhrec_rank": 20043, "prices": {"usd": "0.22", "usd_foil": null, "usd_etched": null, "eur": "0.25", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=26617", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Clockwork+Beast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Clockwork+Beast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Clockwork+Beast"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/37467?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Clockwork+Beast&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Clockwork+Beast&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "7e876938-1b8e-44cf-ade2-a42f8acdf24c", "oracle_id": "e1a64bba-eaff-4f59-b85d-7df0b13e2e6b", "multiverse_ids": [46123], "mtgo_id": 19809, "mtgo_foil_id": 19810, "tcgplayer_id": 11471, "cardmarket_id": 156, "name": "Clockwork Vorrac", "lang": "en", "released_at": "2003-10-02", "uri": "https://api.scryfall.com/cards/7e876938-1b8e-44cf-ade2-a42f8acdf24c", "scryfall_uri": "https://scryfall.com/card/mrd/156/clockwork-vorrac?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/7/e/7e876938-1b8e-44cf-ade2-a42f8acdf24c.jpg?1562148654", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/e/7e876938-1b8e-44cf-ade2-a42f8acdf24c.jpg?1562148654", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/7/e/7e876938-1b8e-44cf-ade2-a42f8acdf24c.jpg?1562148654", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/7/e/7e876938-1b8e-44cf-ade2-a42f8acdf24c.png?1562148654", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/e/7e876938-1b8e-44cf-ade2-a42f8acdf24c.jpg?1562148654", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/7/e/7e876938-1b8e-44cf-ade2-a42f8acdf24c.jpg?1562148654"}, "mana_cost": "{5}", "cmc": 5.0, "type_line": "Artifact Creature \u2014 Boar Beast", "oracle_text": "Trample\nClockwork Vorrac enters the battlefield with four +1/+1 counters on it.\nWhenever Clockwork Vorrac attacks or blocks, remove a +1/+1 counter from it at end of combat.\n{T}: Put a +1/+1 counter on Clockwork Vorrac.", "power": "0", "toughness": "0", "colors": [], "color_identity": [], "keywords": ["Trample"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "restricted", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "1d4f90ba-8d4a-4ee5-bc2f-e2d6bffe4955", "set": "mrd", "set_name": "Mirrodin", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/1d4f90ba-8d4a-4ee5-bc2f-e2d6bffe4955", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Amrd&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/mrd?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/7e876938-1b8e-44cf-ade2-a42f8acdf24c/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ae1a64bba-eaff-4f59-b85d-7df0b13e2e6b&unique=prints", "collector_number": "156", "digital": false, "rarity": "uncommon", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Arnie Swekel", "artist_ids": ["af10ecf2-eb82-4100-97b2-6c236b0fa644"], "illustration_id": "f4e266f8-cdba-40a7-af52-a30bdb289f69", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 17677, "prices": {"usd": "0.10", "usd_foil": "0.16", "usd_etched": null, "eur": "0.02", "eur_foil": "0.15", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=46123", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Clockwork+Vorrac&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Clockwork+Vorrac&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Clockwork+Vorrac"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/11471?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Clockwork+Vorrac&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/19809?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "bc001cef-3afd-4128-989f-ac99dc76b243", "oracle_id": "c00f082b-787f-4f96-8356-c10d35713bc4", "multiverse_ids": [87949], "mtgo_id": 23224, "mtgo_foil_id": 23225, "tcgplayer_id": 13232, "cardmarket_id": 13335, "name": "Coalhauler Swine", "lang": "en", "released_at": "2005-10-07", "uri": "https://api.scryfall.com/cards/bc001cef-3afd-4128-989f-ac99dc76b243", "scryfall_uri": "https://scryfall.com/card/rav/119/coalhauler-swine?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/b/c/bc001cef-3afd-4128-989f-ac99dc76b243.jpg?1598915417", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/c/bc001cef-3afd-4128-989f-ac99dc76b243.jpg?1598915417", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/b/c/bc001cef-3afd-4128-989f-ac99dc76b243.jpg?1598915417", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/b/c/bc001cef-3afd-4128-989f-ac99dc76b243.png?1598915417", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/c/bc001cef-3afd-4128-989f-ac99dc76b243.jpg?1598915417", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/b/c/bc001cef-3afd-4128-989f-ac99dc76b243.jpg?1598915417"}, "mana_cost": "{4}{R}{R}", "cmc": 6.0, "type_line": "Creature \u2014 Boar Beast", "oracle_text": "Whenever Coalhauler Swine is dealt damage, it deals that much damage to each player.", "power": "4", "toughness": "4", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "15fccbe8-2825-41ca-9d0a-67aebdf91c4a", "set": "rav", "set_name": "Ravnica: City of Guilds", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/15fccbe8-2825-41ca-9d0a-67aebdf91c4a", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Arav&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/rav?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/bc001cef-3afd-4128-989f-ac99dc76b243/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ac00f082b-787f-4f96-8356-c10d35713bc4&unique=prints", "collector_number": "119", "digital": false, "rarity": "common", "flavor_text": "Nothing stops industry in Ravnica\u2014certainly not the safety of its workers.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Daren Bader", "artist_ids": ["7da1a585-c875-45e4-b322-5da9e8e1f651"], "illustration_id": "284c66bd-ccae-4edf-a9e8-04a9f743c883", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 10250, "prices": {"usd": "0.15", "usd_foil": "0.37", "usd_etched": null, "eur": "0.02", "eur_foil": "0.20", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=87949", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Coalhauler+Swine&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Coalhauler+Swine&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Coalhauler+Swine"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/13232?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Coalhauler+Swine&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/23224?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "f2c60e63-0b86-4100-a932-bb9e9b197610", "oracle_id": "a322ad80-e64b-4e9a-b542-3a036dc14d28", "multiverse_ids": [394520], "mtgo_id": 56216, "mtgo_foil_id": 56217, "tcgplayer_id": 96727, "cardmarket_id": 273385, "name": "Colossodon Yearling", "lang": "en", "released_at": "2015-03-27", "uri": "https://api.scryfall.com/cards/f2c60e63-0b86-4100-a932-bb9e9b197610", "scryfall_uri": "https://scryfall.com/card/dtk/178/colossodon-yearling?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/f/2/f2c60e63-0b86-4100-a932-bb9e9b197610.jpg?1562795540", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/2/f2c60e63-0b86-4100-a932-bb9e9b197610.jpg?1562795540", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/f/2/f2c60e63-0b86-4100-a932-bb9e9b197610.jpg?1562795540", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/f/2/f2c60e63-0b86-4100-a932-bb9e9b197610.png?1562795540", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/2/f2c60e63-0b86-4100-a932-bb9e9b197610.jpg?1562795540", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/f/2/f2c60e63-0b86-4100-a932-bb9e9b197610.jpg?1562795540"}, "mana_cost": "{2}{G}", "cmc": 3.0, "type_line": "Creature \u2014 Beast", "oracle_text": "", "power": "2", "toughness": "4", "colors": ["G"], "color_identity": ["G"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "7e72625f-f320-4552-a719-d11e2f1853bd", "set": "dtk", "set_name": "Dragons of Tarkir", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/7e72625f-f320-4552-a719-d11e2f1853bd", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Adtk&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/dtk?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/f2c60e63-0b86-4100-a932-bb9e9b197610/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aa322ad80-e64b-4e9a-b542-3a036dc14d28&unique=prints", "collector_number": "178", "digital": false, "rarity": "common", "flavor_text": "The colossodon's hard outer shell stops many predators, but with a gentle flip from a dragon, it quickly becomes a meal in a bowl.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Yeong-Hao Han", "artist_ids": ["f8e7f8d6-6dde-4059-973c-30f1fd1bbe4e"], "illustration_id": "3c34dea7-0905-422e-ad3b-fe68236e3fcc", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 18620, "prices": {"usd": "0.01", "usd_foil": "0.24", "usd_etched": null, "eur": "0.01", "eur_foil": "0.05", "tix": "0.04"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=394520", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Colossodon+Yearling&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Colossodon+Yearling&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Colossodon+Yearling"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/96727?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Colossodon+Yearling&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/56216?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "1d68eb62-9f86-4c85-8696-46a248c744ff", "oracle_id": "50cf702b-5647-415e-b9a8-56fa0e50da6d", "multiverse_ids": [15195], "mtgo_id": 12857, "mtgo_foil_id": 12858, "tcgplayer_id": 6157, "cardmarket_id": 10779, "name": "Colos Yearling", "lang": "en", "released_at": "1999-06-07", "uri": "https://api.scryfall.com/cards/1d68eb62-9f86-4c85-8696-46a248c744ff", "scryfall_uri": "https://scryfall.com/card/uds/79/colos-yearling?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/1/d/1d68eb62-9f86-4c85-8696-46a248c744ff.jpg?1562443334", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/d/1d68eb62-9f86-4c85-8696-46a248c744ff.jpg?1562443334", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/1/d/1d68eb62-9f86-4c85-8696-46a248c744ff.jpg?1562443334", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/1/d/1d68eb62-9f86-4c85-8696-46a248c744ff.png?1562443334", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/d/1d68eb62-9f86-4c85-8696-46a248c744ff.jpg?1562443334", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/1/d/1d68eb62-9f86-4c85-8696-46a248c744ff.jpg?1562443334"}, "mana_cost": "{2}{R}", "cmc": 3.0, "type_line": "Creature \u2014 Goat Beast", "oracle_text": "Mountainwalk (This creature can't be blocked as long as defending player controls a Mountain.)\n{R}: Colos Yearling gets +1/+0 until end of turn.", "power": "1", "toughness": "1", "colors": ["R"], "color_identity": ["R"], "keywords": ["Landwalk", "Mountainwalk"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "44f17b37-dcf8-4239-baab-1efc00cd3480", "set": "uds", "set_name": "Urza's Destiny", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/44f17b37-dcf8-4239-baab-1efc00cd3480", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Auds&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/uds?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/1d68eb62-9f86-4c85-8696-46a248c744ff/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A50cf702b-5647-415e-b9a8-56fa0e50da6d&unique=prints", "collector_number": "79", "digital": false, "rarity": "common", "flavor_text": "A steed grows with its rider.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Patrick Ho", "artist_ids": ["fb4fa478-7105-4fd9-9f60-de9f2a2e8ec9"], "illustration_id": "50262447-95d8-4ef7-82cf-655f4317c9b2", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 20358, "penny_rank": 12227, "prices": {"usd": "0.08", "usd_foil": "1.49", "usd_etched": null, "eur": "0.15", "eur_foil": "2.84", "tix": "0.11"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=15195", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Colos+Yearling&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Colos+Yearling&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Colos+Yearling"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/6157?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Colos+Yearling&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/12857?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "81fff4cc-b2ab-4a41-bede-0d807552ba46", "oracle_id": "a5fed574-6ac3-4318-b0a6-27082e07f3bd", "multiverse_ids": [48603], "mtgo_id": 19903, "mtgo_foil_id": 19904, "tcgplayer_id": 11435, "cardmarket_id": 116, "name": "Copperhoof Vorrac", "lang": "en", "released_at": "2003-10-02", "uri": "https://api.scryfall.com/cards/81fff4cc-b2ab-4a41-bede-0d807552ba46", "scryfall_uri": "https://scryfall.com/card/mrd/116/copperhoof-vorrac?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/8/1/81fff4cc-b2ab-4a41-bede-0d807552ba46.jpg?1562149121", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/1/81fff4cc-b2ab-4a41-bede-0d807552ba46.jpg?1562149121", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/8/1/81fff4cc-b2ab-4a41-bede-0d807552ba46.jpg?1562149121", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/8/1/81fff4cc-b2ab-4a41-bede-0d807552ba46.png?1562149121", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/1/81fff4cc-b2ab-4a41-bede-0d807552ba46.jpg?1562149121", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/8/1/81fff4cc-b2ab-4a41-bede-0d807552ba46.jpg?1562149121"}, "mana_cost": "{3}{G}{G}", "cmc": 5.0, "type_line": "Creature \u2014 Boar Beast", "oracle_text": "Copperhoof Vorrac gets +1/+1 for each untapped permanent your opponents control.", "power": "2", "toughness": "2", "colors": ["G"], "color_identity": ["G"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "1d4f90ba-8d4a-4ee5-bc2f-e2d6bffe4955", "set": "mrd", "set_name": "Mirrodin", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/1d4f90ba-8d4a-4ee5-bc2f-e2d6bffe4955", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Amrd&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/mrd?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/81fff4cc-b2ab-4a41-bede-0d807552ba46/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aa5fed574-6ac3-4318-b0a6-27082e07f3bd&unique=prints", "collector_number": "116", "digital": false, "rarity": "rare", "flavor_text": "Like all forest beasts, it lives by one rule: if there's no room to grow, make some.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Matt Cavotta", "artist_ids": ["2e6a0611-9411-4ba4-98e3-c0e18cbf9f83"], "illustration_id": "b4d1bc01-a9d9-47a5-bd90-7d4cdeaf5a50", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 15129, "penny_rank": 10155, "prices": {"usd": "0.30", "usd_foil": "1.07", "usd_etched": null, "eur": "0.17", "eur_foil": "0.95", "tix": "0.01"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=48603", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Copperhoof+Vorrac&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Copperhoof+Vorrac&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Copperhoof+Vorrac"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/11435?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Copperhoof+Vorrac&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/19903?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "deaa0b9b-258e-4daf-8fec-ce64864d6bbf", "oracle_id": "97428d25-d850-4a98-8852-9440e06a9091", "multiverse_ids": [43529], "mtgo_id": 20656, "mtgo_foil_id": 20657, "tcgplayer_id": 11871, "cardmarket_id": 579, "name": "Cosmic Larva", "lang": "en", "released_at": "2004-06-04", "uri": "https://api.scryfall.com/cards/deaa0b9b-258e-4daf-8fec-ce64864d6bbf", "scryfall_uri": "https://scryfall.com/card/5dn/63/cosmic-larva?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/d/e/deaa0b9b-258e-4daf-8fec-ce64864d6bbf.jpg?1562880234", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/e/deaa0b9b-258e-4daf-8fec-ce64864d6bbf.jpg?1562880234", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/d/e/deaa0b9b-258e-4daf-8fec-ce64864d6bbf.jpg?1562880234", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/d/e/deaa0b9b-258e-4daf-8fec-ce64864d6bbf.png?1562880234", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/e/deaa0b9b-258e-4daf-8fec-ce64864d6bbf.jpg?1562880234", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/d/e/deaa0b9b-258e-4daf-8fec-ce64864d6bbf.jpg?1562880234"}, "mana_cost": "{1}{R}{R}", "cmc": 3.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Trample\nAt the beginning of your upkeep, sacrifice Cosmic Larva unless you sacrifice two lands.", "power": "7", "toughness": "6", "colors": ["R"], "color_identity": ["R"], "keywords": ["Trample"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "e4bc1b87-5476-463c-8640-4c414ecf1763", "set": "5dn", "set_name": "Fifth Dawn", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/e4bc1b87-5476-463c-8640-4c414ecf1763", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3A5dn&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/5dn?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/deaa0b9b-258e-4daf-8fec-ce64864d6bbf/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A97428d25-d850-4a98-8852-9440e06a9091&unique=prints", "collector_number": "63", "digital": false, "rarity": "rare", "flavor_text": "For millennia they wandered from plane to plane, devouring all metal. Finally, their wanderings are over.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Jeff Easley", "artist_ids": ["da17055e-693c-461a-b132-67dd88b42ca6"], "illustration_id": "a9d4728d-bc0a-4a44-9943-587b10994d2d", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 12561, "penny_rank": 7557, "prices": {"usd": "0.26", "usd_foil": "1.34", "usd_etched": null, "eur": "0.18", "eur_foil": "2.49", "tix": "0.01"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=43529", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Cosmic+Larva&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Cosmic+Larva&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Cosmic+Larva"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/11871?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Cosmic+Larva&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/20656?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "ab62382d-2dc9-4a60-b031-c845ebad0357", "oracle_id": "3f599e15-cbc5-4170-b6b4-efd16aa222ac", "multiverse_ids": [491829], "mtgo_id": 83351, "arena_id": 73390, "tcgplayer_id": 222026, "cardmarket_id": 495915, "name": "Cragplate Baloth", "lang": "en", "released_at": "2020-09-25", "uri": "https://api.scryfall.com/cards/ab62382d-2dc9-4a60-b031-c845ebad0357", "scryfall_uri": "https://scryfall.com/card/znr/183/cragplate-baloth?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/a/b/ab62382d-2dc9-4a60-b031-c845ebad0357.jpg?1604198667", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/b/ab62382d-2dc9-4a60-b031-c845ebad0357.jpg?1604198667", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/a/b/ab62382d-2dc9-4a60-b031-c845ebad0357.jpg?1604198667", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/a/b/ab62382d-2dc9-4a60-b031-c845ebad0357.png?1604198667", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/b/ab62382d-2dc9-4a60-b031-c845ebad0357.jpg?1604198667", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/a/b/ab62382d-2dc9-4a60-b031-c845ebad0357.jpg?1604198667"}, "mana_cost": "{5}{G}{G}", "cmc": 7.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Kicker {2}{G}\nThis spell can't be countered.\nHexproof, haste\nIf Cragplate Baloth was kicked, it enters the battlefield with four +1/+1 counters on it.", "power": "6", "toughness": "6", "colors": ["G"], "color_identity": ["G"], "keywords": ["Hexproof", "Haste", "Kicker"], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "f4e01fa7-b254-42dd-849f-69b58027a8c4", "set": "znr", "set_name": "Zendikar Rising", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/f4e01fa7-b254-42dd-849f-69b58027a8c4", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aznr&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/znr?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/ab62382d-2dc9-4a60-b031-c845ebad0357/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A3f599e15-cbc5-4170-b6b4-efd16aa222ac&unique=prints", "collector_number": "183", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Jesper Ejsing", "artist_ids": ["a5f8354a-8b51-4e59-96b2-0e3aeae4fa1d"], "illustration_id": "37340a3f-7b90-4349-812a-87b9f0cf7516", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 7711, "penny_rank": 3311, "preview": {"source": "MeriStation", "source_uri": "https://as.com/meristation/2020/09/04/avances/1599203646_847773.html", "previewed_at": "2020-09-04"}, "prices": {"usd": "0.09", "usd_foil": "0.13", "usd_etched": null, "eur": "0.10", "eur_foil": "0.29", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=491829", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Cragplate+Baloth&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Cragplate+Baloth&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Cragplate+Baloth"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/222026?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Cragplate+Baloth&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/83351?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "2382e525-1750-484a-bf95-dbb42bbb30ae", "oracle_id": "2d37c437-0d5c-400d-88ce-10d173b28eda", "multiverse_ids": [5546], "mtgo_id": 11823, "mtgo_foil_id": 11824, "tcgplayer_id": 6830, "cardmarket_id": 10386, "name": "Crater Hellion", "lang": "en", "released_at": "1998-10-12", "uri": "https://api.scryfall.com/cards/2382e525-1750-484a-bf95-dbb42bbb30ae", "scryfall_uri": "https://scryfall.com/card/usg/179/crater-hellion?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/2/3/2382e525-1750-484a-bf95-dbb42bbb30ae.jpg?1562902530", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/3/2382e525-1750-484a-bf95-dbb42bbb30ae.jpg?1562902530", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/2/3/2382e525-1750-484a-bf95-dbb42bbb30ae.jpg?1562902530", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/2/3/2382e525-1750-484a-bf95-dbb42bbb30ae.png?1562902530", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/3/2382e525-1750-484a-bf95-dbb42bbb30ae.jpg?1562902530", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/2/3/2382e525-1750-484a-bf95-dbb42bbb30ae.jpg?1562902530"}, "mana_cost": "{4}{R}{R}", "cmc": 6.0, "type_line": "Creature \u2014 Hellion Beast", "oracle_text": "Echo {4}{R}{R} (At the beginning of your upkeep, if this came under your control since the beginning of your last upkeep, sacrifice it unless you pay its echo cost.)\nWhen Crater Hellion enters the battlefield, it deals 4 damage to each other creature.", "power": "6", "toughness": "6", "colors": ["R"], "color_identity": ["R"], "keywords": ["Echo"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "c330df40-51db-4caf-bde6-48df6c181001", "set": "usg", "set_name": "Urza's Saga", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/c330df40-51db-4caf-bde6-48df6c181001", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ausg&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/usg?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/2382e525-1750-484a-bf95-dbb42bbb30ae/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A2d37c437-0d5c-400d-88ce-10d173b28eda&unique=prints", "collector_number": "179", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Daren Bader", "artist_ids": ["7da1a585-c875-45e4-b322-5da9e8e1f651"], "illustration_id": "bb0498d2-f346-4481-8028-f3639b5e6d82", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 10157, "penny_rank": 5758, "prices": {"usd": "0.57", "usd_foil": null, "usd_etched": null, "eur": "0.50", "eur_foil": null, "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=5546", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Crater+Hellion&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Crater+Hellion&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Crater+Hellion"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/6830?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Crater+Hellion&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/11823?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "a249be17-73ed-4108-89c0-f7e87939beb8", "oracle_id": "8c52bd39-0586-48ca-b263-17210cf9feb6", "multiverse_ids": [240027], "mtgo_id": 43921, "mtgo_foil_id": 43922, "tcgplayer_id": 58187, "cardmarket_id": 254225, "name": "Craterhoof Behemoth", "lang": "en", "released_at": "2012-05-04", "uri": "https://api.scryfall.com/cards/a249be17-73ed-4108-89c0-f7e87939beb8", "scryfall_uri": "https://scryfall.com/card/avr/172/craterhoof-behemoth?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/a/2/a249be17-73ed-4108-89c0-f7e87939beb8.jpg?1592709311", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/2/a249be17-73ed-4108-89c0-f7e87939beb8.jpg?1592709311", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/a/2/a249be17-73ed-4108-89c0-f7e87939beb8.jpg?1592709311", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/a/2/a249be17-73ed-4108-89c0-f7e87939beb8.png?1592709311", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/2/a249be17-73ed-4108-89c0-f7e87939beb8.jpg?1592709311", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/a/2/a249be17-73ed-4108-89c0-f7e87939beb8.jpg?1592709311"}, "mana_cost": "{5}{G}{G}{G}", "cmc": 8.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Haste\nWhen Craterhoof Behemoth enters the battlefield, creatures you control gain trample and get +X/+X until end of turn, where X is the number of creatures you control.", "power": "5", "toughness": "5", "colors": ["G"], "color_identity": ["G"], "keywords": ["Haste"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "039810a9-92d7-4f2d-b2d0-ca661ac586c0", "set": "avr", "set_name": "Avacyn Restored", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/039810a9-92d7-4f2d-b2d0-ca661ac586c0", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aavr&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/avr?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/a249be17-73ed-4108-89c0-f7e87939beb8/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A8c52bd39-0586-48ca-b263-17210cf9feb6&unique=prints", "collector_number": "172", "digital": false, "rarity": "mythic", "flavor_text": "Its footsteps of today are the lakes of tomorrow.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Chris Rahn", "artist_ids": ["7742047e-0f80-4c0f-a530-d07460165e86"], "illustration_id": "0c425797-bc85-4484-9bad-0a673b2aafa9", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 362, "prices": {"usd": "31.52", "usd_foil": "168.55", "usd_etched": null, "eur": "32.50", "eur_foil": "94.95", "tix": "2.33"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=240027", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Craterhoof+Behemoth&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Craterhoof+Behemoth&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Craterhoof+Behemoth"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/58187?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Craterhoof+Behemoth&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/43921?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "2750bee4-7dfa-4128-989c-5f81af1b322a", "oracle_id": "8c52bd39-0586-48ca-b263-17210cf9feb6", "multiverse_ids": [], "tcgplayer_id": 253830, "name": "Craterhoof Behemoth", "lang": "en", "released_at": "2021-11-05", "uri": "https://api.scryfall.com/cards/2750bee4-7dfa-4128-989c-5f81af1b322a", "scryfall_uri": "https://scryfall.com/card/sld/375/craterhoof-behemoth?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/2/7/2750bee4-7dfa-4128-989c-5f81af1b322a.jpg?1645561147", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/7/2750bee4-7dfa-4128-989c-5f81af1b322a.jpg?1645561147", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/2/7/2750bee4-7dfa-4128-989c-5f81af1b322a.jpg?1645561147", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/2/7/2750bee4-7dfa-4128-989c-5f81af1b322a.png?1645561147", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/7/2750bee4-7dfa-4128-989c-5f81af1b322a.jpg?1645561147", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/2/7/2750bee4-7dfa-4128-989c-5f81af1b322a.jpg?1645561147"}, "mana_cost": "{5}{G}{G}{G}", "cmc": 8.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Haste\nWhen Craterhoof Behemoth enters the battlefield, creatures you control gain trample and get +X/+X until end of turn, where X is the number of creatures you control.", "power": "5", "toughness": "5", "colors": ["G"], "color_identity": ["G"], "keywords": ["Haste"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "4d92a8a7-ccb0-437d-abdc-9d70fc5ed672", "set": "sld", "set_name": "Secret Lair Drop", "set_type": "box", "set_uri": "https://api.scryfall.com/sets/4d92a8a7-ccb0-437d-abdc-9d70fc5ed672", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Asld&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/sld?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/2750bee4-7dfa-4128-989c-5f81af1b322a/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A8c52bd39-0586-48ca-b263-17210cf9feb6&unique=prints", "collector_number": "375", "digital": false, "rarity": "mythic", "flavor_text": "It loves to eat all things crispy, crunchy, and cheddar flavored.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Lars Grant-West, age 52", "artist_ids": ["21ed6499-c4d3-4965-ab02-6c7228275bec"], "illustration_id": "e8ca3545-4f3d-4b56-88a1-9aa4e2bd0d27", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "edhrec_rank": 362, "prices": {"usd": "26.88", "usd_foil": "24.57", "usd_etched": null, "eur": null, "eur_foil": null, "tix": null}, "related_uris": {"tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Craterhoof+Behemoth&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Craterhoof+Behemoth&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Craterhoof+Behemoth"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/253830?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Craterhoof+Behemoth&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Craterhoof+Behemoth&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "640be32d-dcc8-408a-b8a6-077472f1e70b", "oracle_id": "8c52bd39-0586-48ca-b263-17210cf9feb6", "multiverse_ids": [], "tcgplayer_id": 253829, "name": "Craterhoof Behemoth", "lang": "en", "released_at": "2021-11-05", "uri": "https://api.scryfall.com/cards/640be32d-dcc8-408a-b8a6-077472f1e70b", "scryfall_uri": "https://scryfall.com/card/sld/376/craterhoof-behemoth?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/6/4/640be32d-dcc8-408a-b8a6-077472f1e70b.jpg?1645561142", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/4/640be32d-dcc8-408a-b8a6-077472f1e70b.jpg?1645561142", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/6/4/640be32d-dcc8-408a-b8a6-077472f1e70b.jpg?1645561142", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/6/4/640be32d-dcc8-408a-b8a6-077472f1e70b.png?1645561142", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/4/640be32d-dcc8-408a-b8a6-077472f1e70b.jpg?1645561142", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/6/4/640be32d-dcc8-408a-b8a6-077472f1e70b.jpg?1645561142"}, "mana_cost": "{5}{G}{G}{G}", "cmc": 8.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Haste\nWhen Craterhoof Behemoth enters the battlefield, creatures you control gain trample and get +X/+X until end of turn, where X is the number of creatures you control.", "power": "5", "toughness": "5", "colors": ["G"], "color_identity": ["G"], "keywords": ["Haste"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "4d92a8a7-ccb0-437d-abdc-9d70fc5ed672", "set": "sld", "set_name": "Secret Lair Drop", "set_type": "box", "set_uri": "https://api.scryfall.com/sets/4d92a8a7-ccb0-437d-abdc-9d70fc5ed672", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Asld&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/sld?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/640be32d-dcc8-408a-b8a6-077472f1e70b/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A8c52bd39-0586-48ca-b263-17210cf9feb6&unique=prints", "collector_number": "376", "digital": false, "rarity": "mythic", "flavor_text": "It loves to eat all things crispy, crunchy, and cheddar flavored.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Kira, age 5\u00bd", "artist_ids": ["371c62b8-9218-4ca9-839f-bba504c6c5ed"], "illustration_id": "03297fc6-b07a-4202-8846-ba3a173d0205", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "edhrec_rank": 362, "prices": {"usd": "25.92", "usd_foil": "24.42", "usd_etched": null, "eur": null, "eur_foil": null, "tix": null}, "related_uris": {"tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Craterhoof+Behemoth&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Craterhoof+Behemoth&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Craterhoof+Behemoth"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/253829?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Craterhoof+Behemoth&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Craterhoof+Behemoth&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "13ac8bde-7a3e-4d14-91f4-f4325c93f6a8", "oracle_id": "8edd4cae-1e85-4119-8302-a18eea464fd6", "multiverse_ids": [74303], "tcgplayer_id": 37841, "cardmarket_id": 14856, "name": "Creature Guy", "lang": "en", "released_at": "2004-11-19", "uri": "https://api.scryfall.com/cards/13ac8bde-7a3e-4d14-91f4-f4325c93f6a8", "scryfall_uri": "https://scryfall.com/card/unh/93/creature-guy?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/1/3/13ac8bde-7a3e-4d14-91f4-f4325c93f6a8.jpg?1562487893", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/3/13ac8bde-7a3e-4d14-91f4-f4325c93f6a8.jpg?1562487893", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/1/3/13ac8bde-7a3e-4d14-91f4-f4325c93f6a8.jpg?1562487893", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/1/3/13ac8bde-7a3e-4d14-91f4-f4325c93f6a8.png?1562487893", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/3/13ac8bde-7a3e-4d14-91f4-f4325c93f6a8.jpg?1562487893", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/1/3/13ac8bde-7a3e-4d14-91f4-f4325c93f6a8.jpg?1562487893"}, "mana_cost": "{3}{G}", "cmc": 4.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Gotcha \u2014 If an opponent says \"creature\" or \"guy,\" you may say \"Gotcha!\" When you do, return Creature Guy from your graveyard to your hand.", "power": "3", "toughness": "3", "colors": ["G"], "color_identity": ["G"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "not_legal", "pauper": "not_legal", "vintage": "not_legal", "penny": "not_legal", "commander": "not_legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "not_legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "4c8bc76a-05a5-43db-aaf0-34deb347b871", "set": "unh", "set_name": "Unhinged", "set_type": "funny", "set_uri": "https://api.scryfall.com/sets/4c8bc76a-05a5-43db-aaf0-34deb347b871", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aunh&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/unh?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/13ac8bde-7a3e-4d14-91f4-f4325c93f6a8/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A8edd4cae-1e85-4119-8302-a18eea464fd6&unique=prints", "collector_number": "93", "digital": false, "rarity": "uncommon", "flavor_text": "There once was a player named Quinn, . . .", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Jeff Easley", "artist_ids": ["da17055e-693c-461a-b132-67dd88b42ca6"], "illustration_id": "939536e3-5c4e-4ee7-926e-7c417d65d1fb", "border_color": "silver", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "prices": {"usd": "0.24", "usd_foil": "2.47", "usd_etched": null, "eur": "0.05", "eur_foil": "1.33", "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=74303", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Creature+Guy&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Creature+Guy&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Creature+Guy"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/37841?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Creature+Guy&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Creature+Guy&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "aadb40c8-3d54-4705-82dc-54e8d6e315d5", "oracle_id": "597c390e-deeb-4452-aeda-7cf9312a8b01", "multiverse_ids": [45127], "mtgo_id": 18473, "mtgo_foil_id": 18474, "tcgplayer_id": 10771, "cardmarket_id": 2072, "name": "Crested Craghorn", "lang": "en", "released_at": "2003-02-03", "uri": "https://api.scryfall.com/cards/aadb40c8-3d54-4705-82dc-54e8d6e315d5", "scryfall_uri": "https://scryfall.com/card/lgn/91/crested-craghorn?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/a/a/aadb40c8-3d54-4705-82dc-54e8d6e315d5.jpg?1562929450", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/a/aadb40c8-3d54-4705-82dc-54e8d6e315d5.jpg?1562929450", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/a/a/aadb40c8-3d54-4705-82dc-54e8d6e315d5.jpg?1562929450", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/a/a/aadb40c8-3d54-4705-82dc-54e8d6e315d5.png?1562929450", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/a/aadb40c8-3d54-4705-82dc-54e8d6e315d5.jpg?1562929450", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/a/a/aadb40c8-3d54-4705-82dc-54e8d6e315d5.jpg?1562929450"}, "mana_cost": "{4}{R}", "cmc": 5.0, "type_line": "Creature \u2014 Goat Beast", "oracle_text": "Haste\nProvoke (Whenever this creature attacks, you may have target creature defending player controls untap and block it if able.)", "power": "4", "toughness": "1", "colors": ["R"], "color_identity": ["R"], "keywords": ["Haste", "Provoke"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "c2d60a18-1a81-4784-8e0c-e1de2f43c5cf", "set": "lgn", "set_name": "Legions", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/c2d60a18-1a81-4784-8e0c-e1de2f43c5cf", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Algn&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/lgn?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/aadb40c8-3d54-4705-82dc-54e8d6e315d5/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A597c390e-deeb-4452-aeda-7cf9312a8b01&unique=prints", "collector_number": "91", "digital": false, "rarity": "common", "flavor_text": "\"Craghorns experience a wide range of emotions: rage, fury, anger . . .\"\n\u2014Foothill guide", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Matt Cavotta", "artist_ids": ["2e6a0611-9411-4ba4-98e3-c0e18cbf9f83"], "illustration_id": "260817c7-9b4c-4aaa-87ce-767dbfa38c35", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 20198, "prices": {"usd": "0.10", "usd_foil": "0.31", "usd_etched": null, "eur": "0.02", "eur_foil": "0.18", "tix": "0.06"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=45127", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Crested+Craghorn&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Crested+Craghorn&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Crested+Craghorn"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/10771?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Crested+Craghorn&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/18473?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "6a51026a-ae3c-4fa1-ac1e-96d44ae55b82", "oracle_id": "32ebc862-3bf6-4754-b7b8-8bb73f1651cf", "multiverse_ids": [126141], "mtgo_id": 26604, "mtgo_foil_id": 26605, "tcgplayer_id": 14868, "cardmarket_id": 15026, "name": "Cryptic Annelid", "lang": "en", "released_at": "2007-05-04", "uri": "https://api.scryfall.com/cards/6a51026a-ae3c-4fa1-ac1e-96d44ae55b82", "scryfall_uri": "https://scryfall.com/card/fut/34/cryptic-annelid?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/6/a/6a51026a-ae3c-4fa1-ac1e-96d44ae55b82.jpg?1562916366", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/a/6a51026a-ae3c-4fa1-ac1e-96d44ae55b82.jpg?1562916366", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/6/a/6a51026a-ae3c-4fa1-ac1e-96d44ae55b82.jpg?1562916366", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/6/a/6a51026a-ae3c-4fa1-ac1e-96d44ae55b82.png?1562916366", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/a/6a51026a-ae3c-4fa1-ac1e-96d44ae55b82.jpg?1562916366", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/6/a/6a51026a-ae3c-4fa1-ac1e-96d44ae55b82.jpg?1562916366"}, "mana_cost": "{3}{U}", "cmc": 4.0, "type_line": "Creature \u2014 Worm Beast", "oracle_text": "When Cryptic Annelid enters the battlefield, scry 1, then scry 2, then scry 3. (To scry X, look at the top X cards of your library, then put any number of them on the bottom of your library and the rest on top in any order.)", "power": "1", "toughness": "4", "colors": ["U"], "color_identity": ["U"], "keywords": ["Scry"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "restricted", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "bf951ddb-4445-4923-87cb-3fe4ac3c6b9a", "set": "fut", "set_name": "Future Sight", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/bf951ddb-4445-4923-87cb-3fe4ac3c6b9a", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Afut&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/fut?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/6a51026a-ae3c-4fa1-ac1e-96d44ae55b82/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A32ebc862-3bf6-4754-b7b8-8bb73f1651cf&unique=prints", "collector_number": "34", "digital": false, "rarity": "uncommon", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Anthony S. Waters", "artist_ids": ["f009de11-3c8d-4663-b996-ca0c3e997fad"], "illustration_id": "4a1dd2bd-f0f8-4d5c-bb39-7d4f47bfea60", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 7121, "penny_rank": 10456, "prices": {"usd": "0.20", "usd_foil": "6.96", "usd_etched": null, "eur": "0.22", "eur_foil": "2.56", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=126141", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Cryptic+Annelid&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Cryptic+Annelid&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Cryptic+Annelid"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/14868?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Cryptic+Annelid&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/26604?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "62dffe04-c431-440d-a8da-33c74b4bb683", "oracle_id": "4d8505d3-c8a1-4850-95d4-5ddb8ad49770", "multiverse_ids": [541057], "mtgo_id": 94742, "arena_id": 79005, "tcgplayer_id": 253169, "cardmarket_id": 581905, "name": "Cultivator Colossus", "lang": "en", "released_at": "2021-11-19", "uri": "https://api.scryfall.com/cards/62dffe04-c431-440d-a8da-33c74b4bb683", "scryfall_uri": "https://scryfall.com/card/vow/195/cultivator-colossus?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/6/2/62dffe04-c431-440d-a8da-33c74b4bb683.jpg?1643592511", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/2/62dffe04-c431-440d-a8da-33c74b4bb683.jpg?1643592511", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/6/2/62dffe04-c431-440d-a8da-33c74b4bb683.jpg?1643592511", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/6/2/62dffe04-c431-440d-a8da-33c74b4bb683.png?1643592511", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/2/62dffe04-c431-440d-a8da-33c74b4bb683.jpg?1643592511", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/6/2/62dffe04-c431-440d-a8da-33c74b4bb683.jpg?1643592511"}, "mana_cost": "{4}{G}{G}{G}", "cmc": 7.0, "type_line": "Creature \u2014 Plant Beast", "oracle_text": "Trample\nCultivator Colossus's power and toughness are each equal to the number of lands you control.\nWhen Cultivator Colossus enters the battlefield, you may put a land card from your hand onto the battlefield tapped. If you do, draw a card and repeat this process.", "power": "*", "toughness": "*", "colors": ["G"], "color_identity": ["G"], "keywords": ["Trample"], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "8144b676-569f-4716-8005-bc8f0778f3fa", "set": "vow", "set_name": "Innistrad: Crimson Vow", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/8144b676-569f-4716-8005-bc8f0778f3fa", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Avow&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/vow?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/62dffe04-c431-440d-a8da-33c74b4bb683/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A4d8505d3-c8a1-4850-95d4-5ddb8ad49770&unique=prints", "collector_number": "195", "digital": false, "rarity": "mythic", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Antonio Jos\u00e9 Manzanedo", "artist_ids": ["74986d28-0001-4a78-827c-e490b325d0e3"], "illustration_id": "9bf6afa5-78cb-4f85-a006-88a5d9f93703", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 2348, "preview": {"source": "Arin Hanson", "source_uri": "https://twitter.com/egoraptor/status/1455285353338720257", "previewed_at": "2021-11-01"}, "prices": {"usd": "19.27", "usd_foil": "22.54", "usd_etched": null, "eur": "21.28", "eur_foil": "25.97", "tix": "17.09"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=541057", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Cultivator+Colossus&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Cultivator+Colossus&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Cultivator+Colossus"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/253169?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Cultivator+Colossus&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/94742?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "b6c10302-f0b3-4076-ae5c-a8c8c09a7d41", "oracle_id": "81704164-bad9-4e52-9b69-3d49e92fe284", "multiverse_ids": [205477], "mtgo_id": 38133, "mtgo_foil_id": 38134, "tcgplayer_id": 36414, "cardmarket_id": 242693, "name": "Cystbearer", "lang": "en", "released_at": "2010-10-01", "uri": "https://api.scryfall.com/cards/b6c10302-f0b3-4076-ae5c-a8c8c09a7d41", "scryfall_uri": "https://scryfall.com/card/som/117/cystbearer?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/b/6/b6c10302-f0b3-4076-ae5c-a8c8c09a7d41.jpg?1562822162", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/6/b6c10302-f0b3-4076-ae5c-a8c8c09a7d41.jpg?1562822162", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/b/6/b6c10302-f0b3-4076-ae5c-a8c8c09a7d41.jpg?1562822162", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/b/6/b6c10302-f0b3-4076-ae5c-a8c8c09a7d41.png?1562822162", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/6/b6c10302-f0b3-4076-ae5c-a8c8c09a7d41.jpg?1562822162", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/b/6/b6c10302-f0b3-4076-ae5c-a8c8c09a7d41.jpg?1562822162"}, "mana_cost": "{2}{G}", "cmc": 3.0, "type_line": "Creature \u2014 Phyrexian Beast", "oracle_text": "Infect (This creature deals damage to creatures in the form of -1/-1 counters and to players in the form of poison counters.)", "power": "2", "toughness": "3", "colors": ["G"], "color_identity": ["G"], "keywords": ["Infect"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "8f403072-9b22-4e69-8d59-22dc4c97fd8d", "set": "som", "set_name": "Scars of Mirrodin", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/8f403072-9b22-4e69-8d59-22dc4c97fd8d", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Asom&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/som?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/b6c10302-f0b3-4076-ae5c-a8c8c09a7d41/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A81704164-bad9-4e52-9b69-3d49e92fe284&unique=prints", "collector_number": "117", "digital": false, "rarity": "common", "watermark": "phyrexian", "flavor_text": "Phyrexia strives to simulate natural life, but it can't resist improving on the design.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Kev Walker", "artist_ids": ["f366a0ee-a0cd-466d-ba6a-90058c7a31a6"], "illustration_id": "0b987821-aec3-44cb-85a2-1b7cdac8be2e", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 7534, "penny_rank": 4931, "prices": {"usd": "0.19", "usd_foil": "0.75", "usd_etched": null, "eur": "0.16", "eur_foil": "1.00", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=205477", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Cystbearer&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Cystbearer&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Cystbearer"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/36414?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Cystbearer&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/38133?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "d82636dc-4b3e-44a8-bc72-dab1275dfb6d", "oracle_id": "c64c0cb5-5a8c-4a2f-a0fc-8b080aaf90bb", "multiverse_ids": [24657], "mtgo_id": 14077, "mtgo_foil_id": 14078, "tcgplayer_id": 7288, "cardmarket_id": 4005, "name": "Darba", "lang": "en", "released_at": "2000-06-05", "uri": "https://api.scryfall.com/cards/d82636dc-4b3e-44a8-bc72-dab1275dfb6d", "scryfall_uri": "https://scryfall.com/card/pcy/111/darba?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/d/8/d82636dc-4b3e-44a8-bc72-dab1275dfb6d.jpg?1562935433", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/8/d82636dc-4b3e-44a8-bc72-dab1275dfb6d.jpg?1562935433", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/d/8/d82636dc-4b3e-44a8-bc72-dab1275dfb6d.jpg?1562935433", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/d/8/d82636dc-4b3e-44a8-bc72-dab1275dfb6d.png?1562935433", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/8/d82636dc-4b3e-44a8-bc72-dab1275dfb6d.jpg?1562935433", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/d/8/d82636dc-4b3e-44a8-bc72-dab1275dfb6d.jpg?1562935433"}, "mana_cost": "{3}{G}", "cmc": 4.0, "type_line": "Creature \u2014 Bird Beast", "oracle_text": "At the beginning of your upkeep, sacrifice Darba unless you pay {G}{G}.", "power": "5", "toughness": "4", "colors": ["G"], "color_identity": ["G"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "restricted", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "c233bd36-57c0-4aa2-ae6c-7aeabfb4e3ce", "set": "pcy", "set_name": "Prophecy", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/c233bd36-57c0-4aa2-ae6c-7aeabfb4e3ce", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Apcy&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/pcy?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/d82636dc-4b3e-44a8-bc72-dab1275dfb6d/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ac64c0cb5-5a8c-4a2f-a0fc-8b080aaf90bb&unique=prints", "collector_number": "111", "digital": false, "rarity": "uncommon", "flavor_text": "Legend has it the darba gave up its wings in return for an extra stomach.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Heather Hudson", "artist_ids": ["4441fe52-9e41-40c1-9b74-8510426279ab"], "illustration_id": "59fcff1f-1d8d-4289-8ba4-14eac1604d1e", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 23220, "prices": {"usd": "0.11", "usd_foil": "3.15", "usd_etched": null, "eur": "0.02", "eur_foil": "0.50", "tix": "0.04"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=24657", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Darba&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Darba&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Darba"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/7288?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Darba&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/14077?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "f09f166f-dd3c-4cf5-b5f9-3989f46f050c", "oracle_id": "2500a811-2435-4915-ac83-9bfe2887621a", "multiverse_ids": [180622], "mtgo_id": 32402, "mtgo_foil_id": 32403, "tcgplayer_id": 31715, "cardmarket_id": 20915, "name": "Deathbringer Thoctar", "lang": "en", "released_at": "2009-04-30", "uri": "https://api.scryfall.com/cards/f09f166f-dd3c-4cf5-b5f9-3989f46f050c", "scryfall_uri": "https://scryfall.com/card/arb/36/deathbringer-thoctar?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/f/0/f09f166f-dd3c-4cf5-b5f9-3989f46f050c.jpg?1562645019", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/0/f09f166f-dd3c-4cf5-b5f9-3989f46f050c.jpg?1562645019", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/f/0/f09f166f-dd3c-4cf5-b5f9-3989f46f050c.jpg?1562645019", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/f/0/f09f166f-dd3c-4cf5-b5f9-3989f46f050c.png?1562645019", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/0/f09f166f-dd3c-4cf5-b5f9-3989f46f050c.jpg?1562645019", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/f/0/f09f166f-dd3c-4cf5-b5f9-3989f46f050c.jpg?1562645019"}, "mana_cost": "{4}{B}{R}", "cmc": 6.0, "type_line": "Creature \u2014 Zombie Beast", "oracle_text": "Whenever another creature dies, you may put a +1/+1 counter on Deathbringer Thoctar.\nRemove a +1/+1 counter from Deathbringer Thoctar: It deals 1 damage to any target.", "power": "3", "toughness": "3", "colors": ["B", "R"], "color_identity": ["B", "R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "db486ec5-141d-4781-9ee5-5456926934c1", "set": "arb", "set_name": "Alara Reborn", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/db486ec5-141d-4781-9ee5-5456926934c1", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aarb&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/arb?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/f09f166f-dd3c-4cf5-b5f9-3989f46f050c/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A2500a811-2435-4915-ac83-9bfe2887621a&unique=prints", "collector_number": "36", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Karl Kopinski", "artist_ids": ["0fad2c48-a56e-4a0b-b512-224f6f238f20"], "illustration_id": "b8c1ec0e-4cbc-462e-bb74-3d493ae9cdf8", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 5574, "penny_rank": 12087, "prices": {"usd": "0.65", "usd_foil": "1.40", "usd_etched": null, "eur": "0.32", "eur_foil": "1.50", "tix": "0.01"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=180622", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Deathbringer+Thoctar&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Deathbringer+Thoctar&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Deathbringer+Thoctar"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/31715?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Deathbringer+Thoctar&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/32402?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "74c40df1-3f63-49e7-a869-1ce14f94a753", "oracle_id": "a7d4f5aa-26d4-4363-aa5a-a26d6f791b82", "multiverse_ids": [394533], "mtgo_id": 56426, "mtgo_foil_id": 56427, "tcgplayer_id": 96510, "cardmarket_id": 273176, "name": "Deathmist Raptor", "lang": "en", "released_at": "2015-03-27", "uri": "https://api.scryfall.com/cards/74c40df1-3f63-49e7-a869-1ce14f94a753", "scryfall_uri": "https://scryfall.com/card/dtk/180/deathmist-raptor?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/7/4/74c40df1-3f63-49e7-a869-1ce14f94a753.jpg?1562788391", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/4/74c40df1-3f63-49e7-a869-1ce14f94a753.jpg?1562788391", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/7/4/74c40df1-3f63-49e7-a869-1ce14f94a753.jpg?1562788391", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/7/4/74c40df1-3f63-49e7-a869-1ce14f94a753.png?1562788391", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/4/74c40df1-3f63-49e7-a869-1ce14f94a753.jpg?1562788391", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/7/4/74c40df1-3f63-49e7-a869-1ce14f94a753.jpg?1562788391"}, "mana_cost": "{1}{G}{G}", "cmc": 3.0, "type_line": "Creature \u2014 Dinosaur Beast", "oracle_text": "Deathtouch\nWhenever a permanent you control is turned face up, you may return Deathmist Raptor from your graveyard to the battlefield face up or face down.\nMegamorph {4}{G} (You may cast this card face down as a 2/2 creature for {3}. Turn it face up any time for its megamorph cost and put a +1/+1 counter on it.)", "power": "3", "toughness": "3", "colors": ["G"], "color_identity": ["G"], "keywords": ["Megamorph", "Deathtouch"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "7e72625f-f320-4552-a719-d11e2f1853bd", "set": "dtk", "set_name": "Dragons of Tarkir", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/7e72625f-f320-4552-a719-d11e2f1853bd", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Adtk&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/dtk?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/74c40df1-3f63-49e7-a869-1ce14f94a753/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aa7d4f5aa-26d4-4363-aa5a-a26d6f791b82&unique=prints", "collector_number": "180", "digital": false, "rarity": "mythic", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Filip Burburan", "artist_ids": ["66082c3b-a623-4d34-be51-2475214b85d3"], "illustration_id": "957a9b1b-c452-41cc-aff9-03fa3c9387ec", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 5092, "penny_rank": 1717, "prices": {"usd": "0.41", "usd_foil": "3.58", "usd_etched": null, "eur": "0.59", "eur_foil": "3.59", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=394533", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Deathmist+Raptor&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Deathmist+Raptor&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Deathmist+Raptor"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/96510?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Deathmist+Raptor&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/56426?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "bfa2028e-4e73-4ff2-a9e2-9ac347d67893", "oracle_id": "3b31a9a7-6c97-4e82-bf72-de83034f81a9", "multiverse_ids": [19866], "mtgo_id": 13113, "mtgo_foil_id": 13114, "tcgplayer_id": 6504, "cardmarket_id": 11614, "name": "Deepwood Tantiv", "lang": "en", "released_at": "1999-10-04", "uri": "https://api.scryfall.com/cards/bfa2028e-4e73-4ff2-a9e2-9ac347d67893", "scryfall_uri": "https://scryfall.com/card/mmq/241/deepwood-tantiv?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/b/f/bfa2028e-4e73-4ff2-a9e2-9ac347d67893.jpg?1562382576", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/f/bfa2028e-4e73-4ff2-a9e2-9ac347d67893.jpg?1562382576", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/b/f/bfa2028e-4e73-4ff2-a9e2-9ac347d67893.jpg?1562382576", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/b/f/bfa2028e-4e73-4ff2-a9e2-9ac347d67893.png?1562382576", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/f/bfa2028e-4e73-4ff2-a9e2-9ac347d67893.jpg?1562382576", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/b/f/bfa2028e-4e73-4ff2-a9e2-9ac347d67893.jpg?1562382576"}, "mana_cost": "{4}{G}", "cmc": 5.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Whenever Deepwood Tantiv becomes blocked, you gain 2 life.", "power": "2", "toughness": "4", "colors": ["G"], "color_identity": ["G"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "restricted", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "385e11a4-492b-4d07-b4a6-a1409ef829b8", "set": "mmq", "set_name": "Mercadian Masques", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/385e11a4-492b-4d07-b4a6-a1409ef829b8", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ammq&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/mmq?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/bfa2028e-4e73-4ff2-a9e2-9ac347d67893/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A3b31a9a7-6c97-4e82-bf72-de83034f81a9&unique=prints", "collector_number": "241", "digital": false, "rarity": "uncommon", "flavor_text": "A single tantiv is just as dangerous as a herd.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Joel Biske", "artist_ids": ["ceccd51a-c876-4249-98a3-93bc55866df4"], "illustration_id": "d72e5462-2c56-4680-a9c3-c5fcf0eadfd9", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 23128, "prices": {"usd": "0.19", "usd_foil": "2.97", "usd_etched": null, "eur": "0.06", "eur_foil": "0.39", "tix": "0.09"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=19866", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Deepwood+Tantiv&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Deepwood+Tantiv&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Deepwood+Tantiv"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/6504?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Deepwood+Tantiv&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/13113?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "2047c2e5-8b3b-4c6b-91cf-3484f21e52f0", "oracle_id": "6ad18589-ece4-4809-80f6-6764d2822372", "multiverse_ids": [426830], "mtgo_id": 63858, "mtgo_foil_id": 63859, "tcgplayer_id": 130206, "cardmarket_id": 297183, "name": "Desert Cerodon", "lang": "en", "released_at": "2017-04-28", "uri": "https://api.scryfall.com/cards/2047c2e5-8b3b-4c6b-91cf-3484f21e52f0", "scryfall_uri": "https://scryfall.com/card/akh/128/desert-cerodon?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/2/0/2047c2e5-8b3b-4c6b-91cf-3484f21e52f0.jpg?1543675549", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/0/2047c2e5-8b3b-4c6b-91cf-3484f21e52f0.jpg?1543675549", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/2/0/2047c2e5-8b3b-4c6b-91cf-3484f21e52f0.jpg?1543675549", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/2/0/2047c2e5-8b3b-4c6b-91cf-3484f21e52f0.png?1543675549", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/0/2047c2e5-8b3b-4c6b-91cf-3484f21e52f0.jpg?1543675549", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/2/0/2047c2e5-8b3b-4c6b-91cf-3484f21e52f0.jpg?1543675549"}, "mana_cost": "{5}{R}", "cmc": 6.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Cycling {R} ({R}, Discard this card: Draw a card.)", "power": "6", "toughness": "4", "colors": ["R"], "color_identity": ["R"], "keywords": ["Cycling"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "02d1c536-68bc-4208-9b65-7741ef1f9da8", "set": "akh", "set_name": "Amonkhet", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/02d1c536-68bc-4208-9b65-7741ef1f9da8", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aakh&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/akh?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/2047c2e5-8b3b-4c6b-91cf-3484f21e52f0/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A6ad18589-ece4-4809-80f6-6764d2822372&unique=prints", "collector_number": "128", "digital": false, "rarity": "common", "flavor_text": "The endless expanse of desert surrounding Naktamun sometimes yields threats that the gods themselves must answer.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Igor Kieryluk", "artist_ids": ["9c3e9d17-509f-485c-9360-46d897ce716b"], "illustration_id": "0d4e4e72-a148-41d9-887a-bdf309090474", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 12219, "penny_rank": 5695, "prices": {"usd": "0.09", "usd_foil": "1.28", "usd_etched": null, "eur": "0.04", "eur_foil": "0.50", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=426830", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Desert+Cerodon&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Desert+Cerodon&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Desert+Cerodon"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/130206?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Desert+Cerodon&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/63858?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "95d5c36c-bcc8-459c-9f4b-b265ccdb1f06", "oracle_id": "7f24c0b7-1d39-48b6-969f-ee97fdf99305", "multiverse_ids": [527341], "mtgo_id": 91610, "arena_id": 77159, "tcgplayer_id": 243206, "cardmarket_id": 571300, "name": "Displacer Beast", "lang": "en", "released_at": "2021-07-23", "uri": "https://api.scryfall.com/cards/95d5c36c-bcc8-459c-9f4b-b265ccdb1f06", "scryfall_uri": "https://scryfall.com/card/afr/54/displacer-beast?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/9/5/95d5c36c-bcc8-459c-9f4b-b265ccdb1f06.jpg?1627703119", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/5/95d5c36c-bcc8-459c-9f4b-b265ccdb1f06.jpg?1627703119", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/9/5/95d5c36c-bcc8-459c-9f4b-b265ccdb1f06.jpg?1627703119", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/9/5/95d5c36c-bcc8-459c-9f4b-b265ccdb1f06.png?1627703119", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/5/95d5c36c-bcc8-459c-9f4b-b265ccdb1f06.jpg?1627703119", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/9/5/95d5c36c-bcc8-459c-9f4b-b265ccdb1f06.jpg?1627703119"}, "mana_cost": "{2}{U}", "cmc": 3.0, "type_line": "Creature \u2014 Cat Beast", "oracle_text": "When Displacer Beast enters the battlefield, venture into the dungeon. (Enter the first room or advance to the next room.)\nDisplacement \u2014 {3}{U}: Return Displacer Beast to its owner's hand.", "power": "3", "toughness": "2", "colors": ["U"], "color_identity": ["U"], "keywords": ["Venture into the dungeon"], "all_parts": [{"object": "related_card", "id": "95d5c36c-bcc8-459c-9f4b-b265ccdb1f06", "component": "combo_piece", "name": "Displacer Beast", "type_line": "Creature \u2014 Cat Beast", "uri": "https://api.scryfall.com/cards/95d5c36c-bcc8-459c-9f4b-b265ccdb1f06"}, {"object": "related_card", "id": "6f509dbe-6ec7-4438-ab36-e20be46c9922", "component": "combo_piece", "name": "Dungeon of the Mad Mage", "type_line": "Dungeon", "uri": "https://api.scryfall.com/cards/6f509dbe-6ec7-4438-ab36-e20be46c9922"}, {"object": "related_card", "id": "59b11ff8-f118-4978-87dd-509dc0c8c932", "component": "combo_piece", "name": "Lost Mine of Phandelver", "type_line": "Dungeon", "uri": "https://api.scryfall.com/cards/59b11ff8-f118-4978-87dd-509dc0c8c932"}, {"object": "related_card", "id": "70b284bd-7a8f-4b60-8238-f746bdc5b236", "component": "combo_piece", "name": "Tomb of Annihilation", "type_line": "Dungeon", "uri": "https://api.scryfall.com/cards/70b284bd-7a8f-4b60-8238-f746bdc5b236"}], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "restricted", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "e1ef87ba-ba92-4573-817f-543b996d2851", "set": "afr", "set_name": "Adventures in the Forgotten Realms", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/e1ef87ba-ba92-4573-817f-543b996d2851", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aafr&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/afr?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/95d5c36c-bcc8-459c-9f4b-b265ccdb1f06/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A7f24c0b7-1d39-48b6-969f-ee97fdf99305&unique=prints", "collector_number": "54", "digital": false, "rarity": "uncommon", "flavor_text": "The only place you can be sure it's not is wherever it appears to be.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Bryan Sola", "artist_ids": ["e6879299-a28b-48bc-8db1-9cafcf36de09"], "illustration_id": "2857ed83-9b7d-4927-b6ef-fb369cfe92c7", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 8319, "preview": {"source": "Wizards of the Coast", "source_uri": "", "previewed_at": "2021-07-01"}, "prices": {"usd": "0.05", "usd_foil": "0.12", "usd_etched": null, "eur": "0.32", "eur_foil": "0.50", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=527341", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Displacer+Beast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Displacer+Beast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Displacer+Beast"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/243206?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Displacer+Beast&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/91610?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "8646ae5c-e757-4d16-bf2a-d48770d620fa", "oracle_id": "7f24c0b7-1d39-48b6-969f-ee97fdf99305", "multiverse_ids": [530939], "arena_id": 77406, "tcgplayer_id": 243238, "cardmarket_id": 571342, "name": "Displacer Beast", "lang": "en", "released_at": "2021-07-23", "uri": "https://api.scryfall.com/cards/8646ae5c-e757-4d16-bf2a-d48770d620fa", "scryfall_uri": "https://scryfall.com/card/afr/305/displacer-beast?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/8/6/8646ae5c-e757-4d16-bf2a-d48770d620fa.jpg?1627711276", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/6/8646ae5c-e757-4d16-bf2a-d48770d620fa.jpg?1627711276", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/8/6/8646ae5c-e757-4d16-bf2a-d48770d620fa.jpg?1627711276", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/8/6/8646ae5c-e757-4d16-bf2a-d48770d620fa.png?1627711276", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/6/8646ae5c-e757-4d16-bf2a-d48770d620fa.jpg?1627711276", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/8/6/8646ae5c-e757-4d16-bf2a-d48770d620fa.jpg?1627711276"}, "mana_cost": "{2}{U}", "cmc": 3.0, "type_line": "Creature \u2014 Cat Beast", "oracle_text": "When Displacer Beast enters the battlefield, venture into the dungeon. (Enter the first room or advance to the next room.)\nDisplacement \u2014 {3}{U}: Return Displacer Beast to its owner's hand.", "power": "3", "toughness": "2", "colors": ["U"], "color_identity": ["U"], "keywords": ["Venture into the dungeon"], "all_parts": [{"object": "related_card", "id": "95d5c36c-bcc8-459c-9f4b-b265ccdb1f06", "component": "combo_piece", "name": "Displacer Beast", "type_line": "Creature \u2014 Cat Beast", "uri": "https://api.scryfall.com/cards/95d5c36c-bcc8-459c-9f4b-b265ccdb1f06"}, {"object": "related_card", "id": "6f509dbe-6ec7-4438-ab36-e20be46c9922", "component": "combo_piece", "name": "Dungeon of the Mad Mage", "type_line": "Dungeon", "uri": "https://api.scryfall.com/cards/6f509dbe-6ec7-4438-ab36-e20be46c9922"}, {"object": "related_card", "id": "59b11ff8-f118-4978-87dd-509dc0c8c932", "component": "combo_piece", "name": "Lost Mine of Phandelver", "type_line": "Dungeon", "uri": "https://api.scryfall.com/cards/59b11ff8-f118-4978-87dd-509dc0c8c932"}, {"object": "related_card", "id": "70b284bd-7a8f-4b60-8238-f746bdc5b236", "component": "combo_piece", "name": "Tomb of Annihilation", "type_line": "Dungeon", "uri": "https://api.scryfall.com/cards/70b284bd-7a8f-4b60-8238-f746bdc5b236"}], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "restricted", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "e1ef87ba-ba92-4573-817f-543b996d2851", "set": "afr", "set_name": "Adventures in the Forgotten Realms", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/e1ef87ba-ba92-4573-817f-543b996d2851", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aafr&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/afr?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/8646ae5c-e757-4d16-bf2a-d48770d620fa/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A7f24c0b7-1d39-48b6-969f-ee97fdf99305&unique=prints", "collector_number": "305", "digital": false, "rarity": "uncommon", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Phil Stone", "artist_ids": ["86942b2a-49d3-4edd-908c-551f6f07dd00"], "illustration_id": "a946f481-d3a4-4acc-b68f-e42dbc4a88b1", "border_color": "black", "frame": "2015", "frame_effects": ["showcase"], "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "promo_types": ["boosterfun"], "edhrec_rank": 8319, "preview": {"source": "Wizards of the Coast", "source_uri": "", "previewed_at": "2021-07-01"}, "prices": {"usd": "0.08", "usd_foil": "0.33", "usd_etched": null, "eur": "0.10", "eur_foil": "0.35", "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=530939", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Displacer+Beast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Displacer+Beast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Displacer+Beast"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/243238?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Displacer+Beast&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Displacer+Beast&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "c7a401b8-29fb-46ef-a663-427f66724d5c", "oracle_id": "09ef446c-a13d-49d9-a94c-cd5f5a2d440b", "multiverse_ids": [562946], "mtgo_id": 100124, "tcgplayer_id": 272901, "cardmarket_id": 659841, "name": "Displacer Kitten", "lang": "en", "released_at": "2022-06-10", "uri": "https://api.scryfall.com/cards/c7a401b8-29fb-46ef-a663-427f66724d5c", "scryfall_uri": "https://scryfall.com/card/clb/63/displacer-kitten?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/c/7/c7a401b8-29fb-46ef-a663-427f66724d5c.jpg?1653329945", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/7/c7a401b8-29fb-46ef-a663-427f66724d5c.jpg?1653329945", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/c/7/c7a401b8-29fb-46ef-a663-427f66724d5c.jpg?1653329945", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/c/7/c7a401b8-29fb-46ef-a663-427f66724d5c.png?1653329945", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/7/c7a401b8-29fb-46ef-a663-427f66724d5c.jpg?1653329945", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/c/7/c7a401b8-29fb-46ef-a663-427f66724d5c.jpg?1653329945"}, "mana_cost": "{3}{U}", "cmc": 4.0, "type_line": "Creature \u2014 Cat Beast", "oracle_text": "Avoidance \u2014 Whenever you cast a noncreature spell, exile up to one target nonland permanent you control, then return that card to the battlefield under its owner's control.", "power": "2", "toughness": "2", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "5e4c3fe8-fd57-4b20-ad56-c03790a16cea", "set": "clb", "set_name": "Commander Legends: Battle for Baldur's Gate", "set_type": "draft_innovation", "set_uri": "https://api.scryfall.com/sets/5e4c3fe8-fd57-4b20-ad56-c03790a16cea", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aclb&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/clb?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/c7a401b8-29fb-46ef-a663-427f66724d5c/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A09ef446c-a13d-49d9-a94c-cd5f5a2d440b&unique=prints", "collector_number": "63", "digital": false, "rarity": "rare", "flavor_text": "\"Isn't she the cutest thing you've almost seen?\"\n\u2014Doen, purveyor of exotic pets", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Campbell White", "artist_ids": ["d281eab4-463a-4ba8-9039-8943737960a0"], "illustration_id": "40a9eafa-f8d5-4e26-9ea3-21e056a97d74", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 4152, "preview": {"source": "NME", "source_uri": "https://www.nme.com/news/gaming-news/exclusive-heres-two-battle-for-baldurs-gate-cards-coming-to-magic-the-gathering-3230407", "previewed_at": "2022-05-23"}, "prices": {"usd": "10.90", "usd_foil": "11.52", "usd_etched": null, "eur": "11.49", "eur_foil": "12.87", "tix": "87.45"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=562946", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Displacer+Kitten&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Displacer+Kitten&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Displacer+Kitten"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/272901?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Displacer+Kitten&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/100124?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "1abe58d8-67d1-4719-8e84-27747dea3506", "oracle_id": "3992209a-0a28-449d-8ba5-f75e861a79b4", "multiverse_ids": [460006], "mtgo_id": 70998, "arena_id": 69420, "tcgplayer_id": 183302, "cardmarket_id": 368495, "name": "Domri's Nodorog", "lang": "en", "released_at": "2019-01-25", "uri": "https://api.scryfall.com/cards/1abe58d8-67d1-4719-8e84-27747dea3506", "scryfall_uri": "https://scryfall.com/card/rna/272/domris-nodorog?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/1/a/1abe58d8-67d1-4719-8e84-27747dea3506.jpg?1584832471", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/a/1abe58d8-67d1-4719-8e84-27747dea3506.jpg?1584832471", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/1/a/1abe58d8-67d1-4719-8e84-27747dea3506.jpg?1584832471", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/1/a/1abe58d8-67d1-4719-8e84-27747dea3506.png?1584832471", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/a/1abe58d8-67d1-4719-8e84-27747dea3506.jpg?1584832471", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/1/a/1abe58d8-67d1-4719-8e84-27747dea3506.jpg?1584832471"}, "mana_cost": "{3}{R}{G}", "cmc": 5.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Trample\nWhen Domri's Nodorog enters the battlefield, you may search your library and/or graveyard for a card named Domri, City Smasher, reveal it, and put it into your hand. If you search your library this way, shuffle.", "power": "5", "toughness": "2", "colors": ["G", "R"], "color_identity": ["G", "R"], "keywords": ["Trample"], "all_parts": [{"object": "related_card", "id": "8fe16cdb-90df-4670-a084-55c505791d85", "component": "combo_piece", "name": "Domri, City Smasher", "type_line": "Legendary Planeswalker \u2014 Domri", "uri": "https://api.scryfall.com/cards/8fe16cdb-90df-4670-a084-55c505791d85"}, {"object": "related_card", "id": "1abe58d8-67d1-4719-8e84-27747dea3506", "component": "combo_piece", "name": "Domri's Nodorog", "type_line": "Creature \u2014 Beast", "uri": "https://api.scryfall.com/cards/1abe58d8-67d1-4719-8e84-27747dea3506"}], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "97a7fd84-8d89-45a3-b48b-c951f6a3f9f1", "set": "rna", "set_name": "Ravnica Allegiance", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/97a7fd84-8d89-45a3-b48b-c951f6a3f9f1", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Arna&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/rna?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/1abe58d8-67d1-4719-8e84-27747dea3506/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A3992209a-0a28-449d-8ba5-f75e861a79b4&unique=prints", "collector_number": "272", "digital": false, "rarity": "rare", "watermark": "gruul", "flavor_text": "\"Good girl.\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Svetlin Velinov", "artist_ids": ["ffd063ae-c097-4f26-b2e6-b1e2137708bc"], "illustration_id": "a16e0436-20a3-4154-a17d-097f09728800", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "promo_types": ["planeswalkerdeck"], "edhrec_rank": 19256, "preview": {"source": "Wizards of the Coast", "source_uri": "https://magic.wizards.com/en/articles/archive/card-preview/ravnica-allegiance-planeswalker-deck-lists-2019-01-10", "previewed_at": "2019-01-10"}, "prices": {"usd": "0.17", "usd_foil": null, "usd_etched": null, "eur": "0.10", "eur_foil": null, "tix": "0.18"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=460006", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Domri%27s+Nodorog&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Domri%27s+Nodorog&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Domri%27s+Nodorog"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/183302?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Domri%27s+Nodorog&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/70998?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "e7771eba-bc2d-40f2-bab4-5e9cc4fe8f34", "oracle_id": "ecc5467d-d327-4a9c-b935-09afbea111dc", "multiverse_ids": [174848], "mtgo_id": 30921, "mtgo_foil_id": 30922, "tcgplayer_id": 27654, "cardmarket_id": 19840, "name": "Dreg Reaver", "lang": "en", "released_at": "2008-10-03", "uri": "https://api.scryfall.com/cards/e7771eba-bc2d-40f2-bab4-5e9cc4fe8f34", "scryfall_uri": "https://scryfall.com/card/ala/73/dreg-reaver?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/e/7/e7771eba-bc2d-40f2-bab4-5e9cc4fe8f34.jpg?1562710204", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/7/e7771eba-bc2d-40f2-bab4-5e9cc4fe8f34.jpg?1562710204", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/e/7/e7771eba-bc2d-40f2-bab4-5e9cc4fe8f34.jpg?1562710204", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/e/7/e7771eba-bc2d-40f2-bab4-5e9cc4fe8f34.png?1562710204", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/7/e7771eba-bc2d-40f2-bab4-5e9cc4fe8f34.jpg?1562710204", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/e/7/e7771eba-bc2d-40f2-bab4-5e9cc4fe8f34.jpg?1562710204"}, "mana_cost": "{4}{B}", "cmc": 5.0, "type_line": "Creature \u2014 Zombie Beast", "oracle_text": "", "power": "4", "toughness": "3", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "d667aaec-09b7-4406-b6fa-60795132dc11", "set": "ala", "set_name": "Shards of Alara", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/d667aaec-09b7-4406-b6fa-60795132dc11", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aala&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ala?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/e7771eba-bc2d-40f2-bab4-5e9cc4fe8f34/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aecc5467d-d327-4a9c-b935-09afbea111dc&unique=prints", "collector_number": "73", "digital": false, "rarity": "common", "flavor_text": "\"On our thirty-fourth day of digging, we unearthed a chamber that contained the intact remains of several species long extinct from Grixis. One in particular should make a fine siege engine . . . .\"\n\u2014Last notes of Shungus Nod, fleshcrafter", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Thomas M. Baxa", "artist_ids": ["ff346569-557d-4043-ae44-97c2c7cabd7d"], "illustration_id": "18344fb0-746b-4bed-996c-b579837bd8cd", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 22849, "prices": {"usd": "0.05", "usd_foil": "0.24", "usd_etched": null, "eur": "0.02", "eur_foil": "0.20", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=174848", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Dreg+Reaver&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Dreg+Reaver&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Dreg+Reaver"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/27654?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Dreg+Reaver&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/30921?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "459d8cb7-cbb8-4e73-9571-44277f1d1be2", "oracle_id": "f7971f22-2689-4c6f-9fea-1afc4f5afed3", "multiverse_ids": [111258], "mtgo_id": 24339, "mtgo_foil_id": 24340, "tcgplayer_id": 13855, "cardmarket_id": 12991, "name": "Drekavac", "lang": "en", "released_at": "2006-05-05", "uri": "https://api.scryfall.com/cards/459d8cb7-cbb8-4e73-9571-44277f1d1be2", "scryfall_uri": "https://scryfall.com/card/dis/43/drekavac?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/4/5/459d8cb7-cbb8-4e73-9571-44277f1d1be2.jpg?1593272880", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/5/459d8cb7-cbb8-4e73-9571-44277f1d1be2.jpg?1593272880", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/4/5/459d8cb7-cbb8-4e73-9571-44277f1d1be2.jpg?1593272880", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/4/5/459d8cb7-cbb8-4e73-9571-44277f1d1be2.png?1593272880", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/5/459d8cb7-cbb8-4e73-9571-44277f1d1be2.jpg?1593272880", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/4/5/459d8cb7-cbb8-4e73-9571-44277f1d1be2.jpg?1593272880"}, "mana_cost": "{1}{B}", "cmc": 2.0, "type_line": "Creature \u2014 Beast", "oracle_text": "When Drekavac enters the battlefield, sacrifice it unless you discard a noncreature card.", "power": "3", "toughness": "3", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "restricted", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "fdebeda1-b95f-4343-8a94-d125821e6b5c", "set": "dis", "set_name": "Dissension", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/fdebeda1-b95f-4343-8a94-d125821e6b5c", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Adis&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/dis?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/459d8cb7-cbb8-4e73-9571-44277f1d1be2/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Af7971f22-2689-4c6f-9fea-1afc4f5afed3&unique=prints", "collector_number": "43", "digital": false, "rarity": "uncommon", "flavor_text": "Like a vulture's scalp, the face of a drekavac is oily and hairless. The filth and disease of its carrion diet slip off its blood-slick skin.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Carl Critchlow", "artist_ids": ["17948f16-611a-44b8-8d10-9895a0bdfff1"], "illustration_id": "f5e18fb9-96f5-4335-8e22-2bcfabd9ad15", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 22626, "prices": {"usd": "0.09", "usd_foil": "0.08", "usd_etched": null, "eur": "0.04", "eur_foil": "0.39", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=111258", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Drekavac&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Drekavac&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Drekavac"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/13855?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Drekavac&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/24339?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "0106caf1-2201-4661-96a5-56af02963fa6", "oracle_id": "c7adac8f-8187-49a0-80b2-3281d42f1b92", "multiverse_ids": [87911], "mtgo_id": 23160, "mtgo_foil_id": 23161, "tcgplayer_id": 13266, "cardmarket_id": 13369, "name": "Dromad Purebred", "lang": "en", "released_at": "2005-10-07", "uri": "https://api.scryfall.com/cards/0106caf1-2201-4661-96a5-56af02963fa6", "scryfall_uri": "https://scryfall.com/card/rav/15/dromad-purebred?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/0/1/0106caf1-2201-4661-96a5-56af02963fa6.jpg?1598913635", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/1/0106caf1-2201-4661-96a5-56af02963fa6.jpg?1598913635", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/0/1/0106caf1-2201-4661-96a5-56af02963fa6.jpg?1598913635", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/0/1/0106caf1-2201-4661-96a5-56af02963fa6.png?1598913635", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/1/0106caf1-2201-4661-96a5-56af02963fa6.jpg?1598913635", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/0/1/0106caf1-2201-4661-96a5-56af02963fa6.jpg?1598913635"}, "mana_cost": "{4}{W}", "cmc": 5.0, "type_line": "Creature \u2014 Camel Beast", "oracle_text": "Whenever Dromad Purebred is dealt damage, you gain 1 life.", "power": "1", "toughness": "5", "colors": ["W"], "color_identity": ["W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "15fccbe8-2825-41ca-9d0a-67aebdf91c4a", "set": "rav", "set_name": "Ravnica: City of Guilds", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/15fccbe8-2825-41ca-9d0a-67aebdf91c4a", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Arav&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/rav?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/0106caf1-2201-4661-96a5-56af02963fa6/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ac7adac8f-8187-49a0-80b2-3281d42f1b92&unique=prints", "collector_number": "15", "digital": false, "rarity": "common", "flavor_text": "\"I have seen much from the back of my dromad, most of it terribly wrong. The more I see, the more I am convinced of the rightness of my path.\"\n\u2014Heruj, Selesnya initiate", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Carl Critchlow", "artist_ids": ["17948f16-611a-44b8-8d10-9895a0bdfff1"], "illustration_id": "08c3ceeb-26c1-4d20-b87d-07eeac79b281", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 21717, "prices": {"usd": "0.06", "usd_foil": "0.05", "usd_etched": null, "eur": "0.01", "eur_foil": "0.15", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=87911", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Dromad+Purebred&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Dromad+Purebred&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Dromad+Purebred"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/13266?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Dromad+Purebred&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/23160?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "de33c222-0d74-4eb5-8794-39f3601eb8f4", "oracle_id": "b027a80b-30cf-4e7b-8902-efd584e0edf7", "multiverse_ids": [87989], "mtgo_id": 23290, "mtgo_foil_id": 23291, "tcgplayer_id": 13267, "cardmarket_id": 13370, "name": "Drooling Groodion", "lang": "en", "released_at": "2005-10-07", "uri": "https://api.scryfall.com/cards/de33c222-0d74-4eb5-8794-39f3601eb8f4", "scryfall_uri": "https://scryfall.com/card/rav/204/drooling-groodion?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/d/e/de33c222-0d74-4eb5-8794-39f3601eb8f4.jpg?1598916987", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/e/de33c222-0d74-4eb5-8794-39f3601eb8f4.jpg?1598916987", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/d/e/de33c222-0d74-4eb5-8794-39f3601eb8f4.jpg?1598916987", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/d/e/de33c222-0d74-4eb5-8794-39f3601eb8f4.png?1598916987", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/e/de33c222-0d74-4eb5-8794-39f3601eb8f4.jpg?1598916987", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/d/e/de33c222-0d74-4eb5-8794-39f3601eb8f4.jpg?1598916987"}, "mana_cost": "{3}{B}{B}{G}", "cmc": 6.0, "type_line": "Creature \u2014 Beast", "oracle_text": "{2}{B}{G}, Sacrifice a creature: Target creature gets +2/+2 until end of turn. Another target creature gets -2/-2 until end of turn.", "power": "4", "toughness": "3", "colors": ["B", "G"], "color_identity": ["B", "G"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "restricted", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "15fccbe8-2825-41ca-9d0a-67aebdf91c4a", "set": "rav", "set_name": "Ravnica: City of Guilds", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/15fccbe8-2825-41ca-9d0a-67aebdf91c4a", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Arav&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/rav?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/de33c222-0d74-4eb5-8794-39f3601eb8f4/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ab027a80b-30cf-4e7b-8902-efd584e0edf7&unique=prints", "collector_number": "204", "digital": false, "rarity": "uncommon", "watermark": "golgari", "flavor_text": "\"The Golgari expand, yes, but I refuse to call their tainted creations 'growth.'\"\n\u2014Veszka, Selesnya evangel", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Kev Walker", "artist_ids": ["f366a0ee-a0cd-466d-ba6a-90058c7a31a6"], "illustration_id": "b254316d-5100-468e-ae82-e876258b8b5e", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 20097, "prices": {"usd": "0.09", "usd_foil": "0.21", "usd_etched": null, "eur": "0.02", "eur_foil": "0.14", "tix": "0.04"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=87989", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Drooling+Groodion&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Drooling+Groodion&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Drooling+Groodion"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/13267?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Drooling+Groodion&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/23290?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "670521c3-df02-487d-a299-49419e41889f", "oracle_id": "1732cd31-1393-426f-a2fe-9b6b3f27136b", "multiverse_ids": [108807], "mtgo_id": 25407, "mtgo_foil_id": 25408, "tcgplayer_id": 14211, "cardmarket_id": 13818, "name": "Durkwood Baloth", "lang": "en", "released_at": "2006-10-06", "uri": "https://api.scryfall.com/cards/670521c3-df02-487d-a299-49419e41889f", "scryfall_uri": "https://scryfall.com/card/tsp/193/durkwood-baloth?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/6/7/670521c3-df02-487d-a299-49419e41889f.jpg?1562916541", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/7/670521c3-df02-487d-a299-49419e41889f.jpg?1562916541", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/6/7/670521c3-df02-487d-a299-49419e41889f.jpg?1562916541", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/6/7/670521c3-df02-487d-a299-49419e41889f.png?1562916541", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/7/670521c3-df02-487d-a299-49419e41889f.jpg?1562916541", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/6/7/670521c3-df02-487d-a299-49419e41889f.jpg?1562916541"}, "mana_cost": "{4}{G}{G}", "cmc": 6.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Suspend 5\u2014{G} (Rather than cast this card from your hand, you may pay {G} and exile it with five time counters on it. At the beginning of your upkeep, remove a time counter. When the last is removed, cast it without paying its mana cost. It has haste.)", "power": "5", "toughness": "5", "colors": ["G"], "color_identity": ["G"], "keywords": ["Suspend"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "c1d109bc-ffd8-428f-8d7d-3f8d7e648046", "set": "tsp", "set_name": "Time Spiral", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/c1d109bc-ffd8-428f-8d7d-3f8d7e648046", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Atsp&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/tsp?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/670521c3-df02-487d-a299-49419e41889f/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A1732cd31-1393-426f-a2fe-9b6b3f27136b&unique=prints", "collector_number": "193", "digital": false, "rarity": "common", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Dan Frazier", "artist_ids": ["059bba56-5feb-42e4-8c2e-e2f1e6ba11f9"], "illustration_id": "ea4130c4-3bb4-48e7-b7a6-7db7cec42b07", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 16578, "penny_rank": 10704, "prices": {"usd": "0.06", "usd_foil": "0.26", "usd_etched": null, "eur": "0.03", "eur_foil": "0.10", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=108807", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Durkwood+Baloth&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Durkwood+Baloth&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Durkwood+Baloth"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/14211?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Durkwood+Baloth&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/25407?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "418df457-4aab-486c-b691-41f03ec8a6df", "oracle_id": "62c4d349-a18e-40a2-8cc3-244c219dec7f", "multiverse_ids": [447079], "tcgplayer_id": 168323, "cardmarket_id": 359411, "name": "Earthshaking Si", "lang": "en", "released_at": "2018-06-22", "uri": "https://api.scryfall.com/cards/418df457-4aab-486c-b691-41f03ec8a6df", "scryfall_uri": "https://scryfall.com/card/gs1/31/earthshaking-si?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/4/1/418df457-4aab-486c-b691-41f03ec8a6df.jpg?1562131512", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/1/418df457-4aab-486c-b691-41f03ec8a6df.jpg?1562131512", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/4/1/418df457-4aab-486c-b691-41f03ec8a6df.jpg?1562131512", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/4/1/418df457-4aab-486c-b691-41f03ec8a6df.png?1562131512", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/1/418df457-4aab-486c-b691-41f03ec8a6df.jpg?1562131512", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/4/1/418df457-4aab-486c-b691-41f03ec8a6df.jpg?1562131512"}, "mana_cost": "{5}{G}", "cmc": 6.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Trample (This creature can deal excess combat damage to the player or planeswalker it's attacking.)", "power": "5", "toughness": "5", "colors": ["G"], "color_identity": ["G"], "keywords": ["Trample"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "19c285e9-68e0-45e1-b82b-ac6051eb43be", "set": "gs1", "set_name": "Global Series Jiang Yanggu & Mu Yanling", "set_type": "duel_deck", "set_uri": "https://api.scryfall.com/sets/19c285e9-68e0-45e1-b82b-ac6051eb43be", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ags1&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/gs1?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/418df457-4aab-486c-b691-41f03ec8a6df/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A62c4d349-a18e-40a2-8cc3-244c219dec7f&unique=prints", "collector_number": "31", "digital": false, "rarity": "common", "flavor_text": "\"For reasons unknown to me, herds in the Arrow Bamboo Forest have become more and more agitated.\"\n\u2014Jiang Yanggu's travelogue", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Shinchuen Chen", "artist_ids": ["7278b044-a9c0-42f6-a6a8-d434d08c902f"], "illustration_id": "f5a4677e-c98c-41f0-b530-9759a5108423", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "edhrec_rank": 22555, "prices": {"usd": "0.07", "usd_foil": null, "usd_etched": null, "eur": "0.04", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=447079", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Earthshaking+Si&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Earthshaking+Si&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Earthshaking+Si"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/168323?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Earthshaking+Si&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Earthshaking+Si&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "d51269cf-a333-4a64-94cd-245798d840d2", "oracle_id": "397b9dcf-690a-4a58-8637-bb9baab7cc2f", "multiverse_ids": [485502], "mtgo_id": 81585, "arena_id": 71961, "tcgplayer_id": 215477, "cardmarket_id": 467089, "name": "Elder Gargaroth", "lang": "en", "released_at": "2020-07-03", "uri": "https://api.scryfall.com/cards/d51269cf-a333-4a64-94cd-245798d840d2", "scryfall_uri": "https://scryfall.com/card/m21/179/elder-gargaroth?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/d/5/d51269cf-a333-4a64-94cd-245798d840d2.jpg?1594736944", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/5/d51269cf-a333-4a64-94cd-245798d840d2.jpg?1594736944", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/d/5/d51269cf-a333-4a64-94cd-245798d840d2.jpg?1594736944", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/d/5/d51269cf-a333-4a64-94cd-245798d840d2.png?1594736944", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/5/d51269cf-a333-4a64-94cd-245798d840d2.jpg?1594736944", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/d/5/d51269cf-a333-4a64-94cd-245798d840d2.jpg?1594736944"}, "mana_cost": "{3}{G}{G}", "cmc": 5.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Vigilance, reach, trample\nWhenever Elder Gargaroth attacks or blocks, choose one \u2014\n\u2022 Create a 3/3 green Beast creature token.\n\u2022 You gain 3 life.\n\u2022 Draw a card.", "power": "6", "toughness": "6", "colors": ["G"], "color_identity": ["G"], "keywords": ["Reach", "Vigilance", "Trample"], "all_parts": [{"object": "related_card", "id": "d51269cf-a333-4a64-94cd-245798d840d2", "component": "combo_piece", "name": "Elder Gargaroth", "type_line": "Creature \u2014 Beast", "uri": "https://api.scryfall.com/cards/d51269cf-a333-4a64-94cd-245798d840d2"}, {"object": "related_card", "id": "882247ba-99d2-46db-8314-f800f3366b7f", "component": "token", "name": "Beast", "type_line": "Token Creature \u2014 Beast", "uri": "https://api.scryfall.com/cards/882247ba-99d2-46db-8314-f800f3366b7f"}], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "bc94aba1-7376-4e02-a12d-3a2efb66ab0f", "set": "m21", "set_name": "Core Set 2021", "set_type": "core", "set_uri": "https://api.scryfall.com/sets/bc94aba1-7376-4e02-a12d-3a2efb66ab0f", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Am21&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/m21?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/d51269cf-a333-4a64-94cd-245798d840d2/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A397b9dcf-690a-4a58-8637-bb9baab7cc2f&unique=prints", "collector_number": "179", "digital": false, "rarity": "mythic", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Nicholas Gregory", "artist_ids": ["a1bba8ff-63b4-4786-b1c4-f1bfe5d3ab1c"], "illustration_id": "51bc0106-2d78-40c5-ac89-591ef88c44b5", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 1472, "preview": {"source": "HobbyJapan", "source_uri": "https://twitter.com/cardgamer_hj/status/1269934246346371072", "previewed_at": "2020-06-08"}, "prices": {"usd": "13.43", "usd_foil": "13.47", "usd_etched": null, "eur": "14.43", "eur_foil": "18.12", "tix": "4.97"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=485502", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Elder+Gargaroth&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Elder+Gargaroth&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Elder+Gargaroth"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/215477?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Elder+Gargaroth&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/81585?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "85c3d04f-4010-4db3-9e4e-afa8116b263d", "oracle_id": "5ff0c25f-4593-460b-9d7f-d9c37f135a18", "multiverse_ids": [9700], "mtgo_id": 11851, "mtgo_foil_id": 11852, "tcgplayer_id": 6855, "cardmarket_id": 10390, "name": "Electryte", "lang": "en", "released_at": "1998-10-12", "uri": "https://api.scryfall.com/cards/85c3d04f-4010-4db3-9e4e-afa8116b263d", "scryfall_uri": "https://scryfall.com/card/usg/183/electryte?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/8/5/85c3d04f-4010-4db3-9e4e-afa8116b263d.jpg?1562923240", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/5/85c3d04f-4010-4db3-9e4e-afa8116b263d.jpg?1562923240", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/8/5/85c3d04f-4010-4db3-9e4e-afa8116b263d.jpg?1562923240", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/8/5/85c3d04f-4010-4db3-9e4e-afa8116b263d.png?1562923240", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/5/85c3d04f-4010-4db3-9e4e-afa8116b263d.jpg?1562923240", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/8/5/85c3d04f-4010-4db3-9e4e-afa8116b263d.jpg?1562923240"}, "mana_cost": "{3}{R}{R}", "cmc": 5.0, "type_line": "Creature \u2014 Trilobite Beast", "oracle_text": "Whenever Electryte deals combat damage to defending player, it deals damage equal to its power to each blocking creature.", "power": "3", "toughness": "3", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "c330df40-51db-4caf-bde6-48df6c181001", "set": "usg", "set_name": "Urza's Saga", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/c330df40-51db-4caf-bde6-48df6c181001", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ausg&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/usg?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/85c3d04f-4010-4db3-9e4e-afa8116b263d/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A5ff0c25f-4593-460b-9d7f-d9c37f135a18&unique=prints", "collector_number": "183", "digital": false, "rarity": "rare", "flavor_text": "Shivan inhabitants are hardened to fire, so their predators have developed alternative weaponry.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Thomas M. Baxa", "artist_ids": ["ff346569-557d-4043-ae44-97c2c7cabd7d"], "illustration_id": "e122b91f-0ba7-43c3-a4d0-4546f1270c24", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 22989, "prices": {"usd": "0.20", "usd_foil": null, "usd_etched": null, "eur": "0.30", "eur_foil": null, "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=9700", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Electryte&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Electryte&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Electryte"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/6855?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Electryte&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/11851?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "8a6d9cab-b07b-456b-9562-7ea7f6bec7f3", "oracle_id": "58edb282-a124-47bc-b123-1c34b6804f48", "multiverse_ids": [366306], "mtgo_id": 47565, "mtgo_foil_id": 47566, "tcgplayer_id": 67468, "cardmarket_id": 260036, "name": "Ember Beast", "lang": "en", "released_at": "2013-02-01", "uri": "https://api.scryfall.com/cards/8a6d9cab-b07b-456b-9562-7ea7f6bec7f3", "scryfall_uri": "https://scryfall.com/card/gtc/89/ember-beast?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/8/a/8a6d9cab-b07b-456b-9562-7ea7f6bec7f3.jpg?1561835467", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/a/8a6d9cab-b07b-456b-9562-7ea7f6bec7f3.jpg?1561835467", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/8/a/8a6d9cab-b07b-456b-9562-7ea7f6bec7f3.jpg?1561835467", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/8/a/8a6d9cab-b07b-456b-9562-7ea7f6bec7f3.png?1561835467", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/a/8a6d9cab-b07b-456b-9562-7ea7f6bec7f3.jpg?1561835467", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/8/a/8a6d9cab-b07b-456b-9562-7ea7f6bec7f3.jpg?1561835467"}, "mana_cost": "{2}{R}", "cmc": 3.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Ember Beast can't attack or block alone.", "power": "3", "toughness": "4", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "035a05f7-e020-4f50-a141-ed16ba704bd2", "set": "gtc", "set_name": "Gatecrash", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/035a05f7-e020-4f50-a141-ed16ba704bd2", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Agtc&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/gtc?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/8a6d9cab-b07b-456b-9562-7ea7f6bec7f3/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A58edb282-a124-47bc-b123-1c34b6804f48&unique=prints", "collector_number": "89", "digital": false, "rarity": "common", "flavor_text": "The only livestock that will survive for long in the Smelting District, ember beasts serve many functions\u2014none of them willingly.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "David Rapoza", "artist_ids": ["c5a2318d-5d04-499f-b121-57dee5a9dfe6"], "illustration_id": "cec12d82-0807-49c7-8512-e7e51258ea64", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 22202, "penny_rank": 11553, "prices": {"usd": "0.01", "usd_foil": null, "usd_etched": null, "eur": "0.02", "eur_foil": "0.33", "tix": "0.06"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=366306", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Ember+Beast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Ember+Beast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Ember+Beast"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/67468?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Ember+Beast&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/47565?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "25080720-612f-40c0-8894-cda8e3e8afb8", "oracle_id": "58edb282-a124-47bc-b123-1c34b6804f48", "multiverse_ids": [29752], "mtgo_id": 16687, "mtgo_foil_id": 16688, "tcgplayer_id": 9465, "cardmarket_id": 2602, "name": "Ember Beast", "lang": "en", "released_at": "2001-10-01", "uri": "https://api.scryfall.com/cards/25080720-612f-40c0-8894-cda8e3e8afb8", "scryfall_uri": "https://scryfall.com/card/ody/190/ember-beast?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/2/5/25080720-612f-40c0-8894-cda8e3e8afb8.jpg?1562901920", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/5/25080720-612f-40c0-8894-cda8e3e8afb8.jpg?1562901920", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/2/5/25080720-612f-40c0-8894-cda8e3e8afb8.jpg?1562901920", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/2/5/25080720-612f-40c0-8894-cda8e3e8afb8.png?1562901920", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/5/25080720-612f-40c0-8894-cda8e3e8afb8.jpg?1562901920", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/2/5/25080720-612f-40c0-8894-cda8e3e8afb8.jpg?1562901920"}, "mana_cost": "{2}{R}", "cmc": 3.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Ember Beast can't attack or block alone.", "power": "3", "toughness": "4", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "b0d90d2d-494a-4224-bfa0-36ce5ee281b1", "set": "ody", "set_name": "Odyssey", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/b0d90d2d-494a-4224-bfa0-36ce5ee281b1", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aody&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ody?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/25080720-612f-40c0-8894-cda8e3e8afb8/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A58edb282-a124-47bc-b123-1c34b6804f48&unique=prints", "collector_number": "190", "digital": false, "rarity": "common", "flavor_text": "Spot one ember beast, attack.\nSpot a second, best fall back.\n\u2014Dwarven saying", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Wayne England", "artist_ids": ["62dc90c0-4bc2-4d42-ad76-59cad9243566"], "illustration_id": "f3162af7-e1b7-4328-a7ea-182bad1cff12", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 22202, "penny_rank": 11553, "prices": {"usd": "0.06", "usd_foil": "0.32", "usd_etched": null, "eur": "0.02", "eur_foil": "0.19", "tix": "0.05"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=29752", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Ember+Beast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Ember+Beast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Ember+Beast"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/9465?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Ember+Beast&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/16687?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "cebfb5a6-9052-47be-b931-834b5064df31", "oracle_id": "6189cd17-61aa-420a-ba53-5ddaf2bbc2ba", "multiverse_ids": [44500], "mtgo_id": 18489, "mtgo_foil_id": 18490, "tcgplayer_id": 10801, "cardmarket_id": 2106, "name": "Enormous Baloth", "lang": "en", "released_at": "2003-02-03", "uri": "https://api.scryfall.com/cards/cebfb5a6-9052-47be-b931-834b5064df31", "scryfall_uri": "https://scryfall.com/card/lgn/125/enormous-baloth?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/c/e/cebfb5a6-9052-47be-b931-834b5064df31.jpg?1562936577", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/e/cebfb5a6-9052-47be-b931-834b5064df31.jpg?1562936577", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/c/e/cebfb5a6-9052-47be-b931-834b5064df31.jpg?1562936577", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/c/e/cebfb5a6-9052-47be-b931-834b5064df31.png?1562936577", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/e/cebfb5a6-9052-47be-b931-834b5064df31.jpg?1562936577", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/c/e/cebfb5a6-9052-47be-b931-834b5064df31.jpg?1562936577"}, "mana_cost": "{6}{G}", "cmc": 7.0, "type_line": "Creature \u2014 Beast", "oracle_text": "", "power": "7", "toughness": "7", "colors": ["G"], "color_identity": ["G"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "restricted", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "c2d60a18-1a81-4784-8e0c-e1de2f43c5cf", "set": "lgn", "set_name": "Legions", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/c2d60a18-1a81-4784-8e0c-e1de2f43c5cf", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Algn&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/lgn?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/cebfb5a6-9052-47be-b931-834b5064df31/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A6189cd17-61aa-420a-ba53-5ddaf2bbc2ba&unique=prints", "collector_number": "125", "digital": false, "rarity": "uncommon", "flavor_text": "Its diet consists of fruits, plants, small woodland animals, large woodland animals, woodlands, fruit groves, fruit farmers, and small cities.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Mark Tedin", "artist_ids": ["9ee9a9cc-c09e-486f-918b-69f80cbc4188"], "illustration_id": "3345fe3d-f9cd-4746-b138-4e4a122307ba", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 16757, "prices": {"usd": "0.15", "usd_foil": "0.48", "usd_etched": null, "eur": "0.12", "eur_foil": "1.00", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=44500", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Enormous+Baloth&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Enormous+Baloth&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Enormous+Baloth"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/10801?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Enormous+Baloth&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/18489?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "ec4ea4e2-2102-4b99-bea5-6fc4203f2b26", "oracle_id": "45645a97-f41d-47fb-b943-293ffc18fc82", "multiverse_ids": [19734], "mtgo_id": 13217, "mtgo_foil_id": 13218, "tcgplayer_id": 6519, "cardmarket_id": 11617, "name": "Erithizon", "lang": "en", "released_at": "1999-10-04", "uri": "https://api.scryfall.com/cards/ec4ea4e2-2102-4b99-bea5-6fc4203f2b26", "scryfall_uri": "https://scryfall.com/card/mmq/244/erithizon?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/e/c/ec4ea4e2-2102-4b99-bea5-6fc4203f2b26.jpg?1562383536", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/c/ec4ea4e2-2102-4b99-bea5-6fc4203f2b26.jpg?1562383536", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/e/c/ec4ea4e2-2102-4b99-bea5-6fc4203f2b26.jpg?1562383536", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/e/c/ec4ea4e2-2102-4b99-bea5-6fc4203f2b26.png?1562383536", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/c/ec4ea4e2-2102-4b99-bea5-6fc4203f2b26.jpg?1562383536", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/e/c/ec4ea4e2-2102-4b99-bea5-6fc4203f2b26.jpg?1562383536"}, "mana_cost": "{2}{G}{G}", "cmc": 4.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Whenever Erithizon attacks, put a +1/+1 counter on target creature of defending player's choice.", "power": "4", "toughness": "4", "colors": ["G"], "color_identity": ["G"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "385e11a4-492b-4d07-b4a6-a1409ef829b8", "set": "mmq", "set_name": "Mercadian Masques", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/385e11a4-492b-4d07-b4a6-a1409ef829b8", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ammq&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/mmq?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/ec4ea4e2-2102-4b99-bea5-6fc4203f2b26/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A45645a97-f41d-47fb-b943-293ffc18fc82&unique=prints", "collector_number": "244", "digital": false, "rarity": "rare", "flavor_text": "Unlike scorpions, the erithizon isn't immune to its own weaponry.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Scott M. Fischer", "artist_ids": ["23b0cf43-3e43-44c6-8329-96446eca5bce"], "illustration_id": "b0aa742f-1fde-4e6d-a0fd-9d1626846fcd", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 22557, "prices": {"usd": "0.23", "usd_foil": "7.64", "usd_etched": null, "eur": "0.35", "eur_foil": "15.00", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=19734", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Erithizon&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Erithizon&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Erithizon"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/6519?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Erithizon&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/13217?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "8d09ddf0-91f0-4e76-809f-c39ca7418ed5", "oracle_id": "9875cb1b-d67e-4ac4-8c16-164f28d4e4d4", "multiverse_ids": [479669], "mtgo_id": 80307, "arena_id": 71216, "tcgplayer_id": 212590, "cardmarket_id": 454798, "name": "Essence Symbiote", "lang": "en", "released_at": "2020-04-24", "uri": "https://api.scryfall.com/cards/8d09ddf0-91f0-4e76-809f-c39ca7418ed5", "scryfall_uri": "https://scryfall.com/card/iko/149/essence-symbiote?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/8/d/8d09ddf0-91f0-4e76-809f-c39ca7418ed5.jpg?1591227575", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/d/8d09ddf0-91f0-4e76-809f-c39ca7418ed5.jpg?1591227575", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/8/d/8d09ddf0-91f0-4e76-809f-c39ca7418ed5.jpg?1591227575", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/8/d/8d09ddf0-91f0-4e76-809f-c39ca7418ed5.png?1591227575", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/d/8d09ddf0-91f0-4e76-809f-c39ca7418ed5.jpg?1591227575", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/8/d/8d09ddf0-91f0-4e76-809f-c39ca7418ed5.jpg?1591227575"}, "mana_cost": "{1}{G}", "cmc": 2.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Whenever a creature you control mutates, put a +1/+1 counter on that creature and you gain 2 life.", "power": "2", "toughness": "2", "colors": ["G"], "color_identity": ["G"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "19feda43-15ab-427e-a0e4-148a4bf2b03a", "set": "iko", "set_name": "Ikoria: Lair of Behemoths", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/19feda43-15ab-427e-a0e4-148a4bf2b03a", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aiko&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/iko?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/8d09ddf0-91f0-4e76-809f-c39ca7418ed5/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A9875cb1b-d67e-4ac4-8c16-164f28d4e4d4&unique=prints", "collector_number": "149", "digital": false, "rarity": "common", "flavor_text": "The Ozolith's appearance spawned a new era of wild mutation on Ikoria. Some creatures hunted different prey, lived in new habitats, and thrived on mutation itself.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Jason Felix", "artist_ids": ["af42a44c-8ec3-47a7-9047-5d29ddad186d"], "illustration_id": "79739fc0-7482-4941-b246-ecdf7a8fdc02", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 5942, "penny_rank": 7636, "prices": {"usd": "0.04", "usd_foil": "0.15", "usd_etched": null, "eur": "0.13", "eur_foil": "0.10", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=479669", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Essence+Symbiote&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Essence+Symbiote&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Essence+Symbiote"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/212590?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Essence+Symbiote&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/80307?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "8f5228dc-ec9d-456f-a89c-1bc592a1bbab", "oracle_id": "e0b5b3af-af89-4b91-8b55-947ec095d6f2", "multiverse_ids": [563114], "mtgo_id": 100496, "tcgplayer_id": 273335, "cardmarket_id": 660911, "name": "Ettercap // Web Shot", "lang": "en", "released_at": "2022-06-10", "uri": "https://api.scryfall.com/cards/8f5228dc-ec9d-456f-a89c-1bc592a1bbab", "scryfall_uri": "https://scryfall.com/card/clb/231/ettercap-web-shot?utm_source=api", "layout": "adventure", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/8/f/8f5228dc-ec9d-456f-a89c-1bc592a1bbab.jpg?1653970287", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/f/8f5228dc-ec9d-456f-a89c-1bc592a1bbab.jpg?1653970287", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/8/f/8f5228dc-ec9d-456f-a89c-1bc592a1bbab.jpg?1653970287", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/8/f/8f5228dc-ec9d-456f-a89c-1bc592a1bbab.png?1653970287", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/f/8f5228dc-ec9d-456f-a89c-1bc592a1bbab.jpg?1653970287", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/8/f/8f5228dc-ec9d-456f-a89c-1bc592a1bbab.jpg?1653970287"}, "mana_cost": "{4}{G} // {2}{G}", "cmc": 5.0, "type_line": "Creature \u2014 Spider Beast // Instant \u2014 Adventure", "power": "2", "toughness": "5", "colors": ["G"], "color_identity": ["G"], "keywords": ["Reach"], "card_faces": [{"object": "card_face", "name": "Ettercap", "mana_cost": "{4}{G}", "type_line": "Creature \u2014 Spider Beast", "oracle_text": "Reach", "power": "2", "toughness": "5", "flavor_text": "\"Filthy, sticky, vile, noxious\u2014and I haven't even started describing the webs.\"\n\u2014Erinis, gloom stalker", "artist": "Olivier Bernard", "artist_id": "11c6f325-68c2-4f2a-972d-98d2ffe6c224", "illustration_id": "614e3e49-9deb-4e50-ada8-a5b6b89695f7"}, {"object": "card_face", "name": "Web Shot", "flavor_name": "", "mana_cost": "{2}{G}", "type_line": "Instant \u2014 Adventure", "oracle_text": "Destroy target creature with flying. (Then exile this card. You may cast the creature later from exile.)", "artist": "Olivier Bernard", "artist_id": "11c6f325-68c2-4f2a-972d-98d2ffe6c224"}], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "5e4c3fe8-fd57-4b20-ad56-c03790a16cea", "set": "clb", "set_name": "Commander Legends: Battle for Baldur's Gate", "set_type": "draft_innovation", "set_uri": "https://api.scryfall.com/sets/5e4c3fe8-fd57-4b20-ad56-c03790a16cea", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aclb&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/clb?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/8f5228dc-ec9d-456f-a89c-1bc592a1bbab/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ae0b5b3af-af89-4b91-8b55-947ec095d6f2&unique=prints", "collector_number": "231", "digital": false, "rarity": "common", "flavor_text": "\"Filthy, sticky, vile, noxious\u2014and I haven't even started describing the webs.\"\n\u2014Erinis, gloom stalker", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Olivier Bernard", "artist_ids": ["11c6f325-68c2-4f2a-972d-98d2ffe6c224"], "illustration_id": "614e3e49-9deb-4e50-ada8-a5b6b89695f7", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 14647, "prices": {"usd": "0.03", "usd_foil": "0.08", "usd_etched": null, "eur": "0.06", "eur_foil": "0.15", "tix": "1.11"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=563114", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Ettercap+%2F%2F+Web+Shot&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Ettercap+%2F%2F+Web+Shot&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Ettercap"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/273335?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Ettercap&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/100496?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "d353d315-5790-417d-adf5-270df1ff34b0", "oracle_id": "0239b661-80be-4b52-b3b7-fca229192b58", "multiverse_ids": [464112], "mtgo_id": 72698, "tcgplayer_id": 191765, "cardmarket_id": 375690, "name": "Excavating Anurid", "lang": "en", "released_at": "2019-06-14", "uri": "https://api.scryfall.com/cards/d353d315-5790-417d-adf5-270df1ff34b0", "scryfall_uri": "https://scryfall.com/card/mh1/163/excavating-anurid?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/d/3/d353d315-5790-417d-adf5-270df1ff34b0.jpg?1562202067", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/3/d353d315-5790-417d-adf5-270df1ff34b0.jpg?1562202067", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/d/3/d353d315-5790-417d-adf5-270df1ff34b0.jpg?1562202067", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/d/3/d353d315-5790-417d-adf5-270df1ff34b0.png?1562202067", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/3/d353d315-5790-417d-adf5-270df1ff34b0.jpg?1562202067", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/d/3/d353d315-5790-417d-adf5-270df1ff34b0.jpg?1562202067"}, "mana_cost": "{4}{G}", "cmc": 5.0, "type_line": "Creature \u2014 Frog Beast", "oracle_text": "When Excavating Anurid enters the battlefield, you may sacrifice a land. If you do, draw a card.\nThreshold \u2014 As long as seven or more cards are in your graveyard, Excavating Anurid gets +1/+1 and has vigilance.", "power": "4", "toughness": "4", "colors": ["G"], "color_identity": ["G"], "keywords": ["Threshold"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "d7efccd6-55bc-4fb8-9138-e72577510a99", "set": "mh1", "set_name": "Modern Horizons", "set_type": "draft_innovation", "set_uri": "https://api.scryfall.com/sets/d7efccd6-55bc-4fb8-9138-e72577510a99", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Amh1&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/mh1?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/d353d315-5790-417d-adf5-270df1ff34b0/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A0239b661-80be-4b52-b3b7-fca229192b58&unique=prints", "collector_number": "163", "digital": false, "rarity": "common", "flavor_text": "Turg's spawn ruled long after he croaked.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Joe Slucher", "artist_ids": ["13b6c9ee-f7a8-46a4-934f-ea6b4a1b14b2"], "illustration_id": "597e4db8-91f2-41bc-89b8-a57b71829d4e", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 11220, "penny_rank": 13754, "prices": {"usd": "0.02", "usd_foil": "0.20", "usd_etched": null, "eur": "0.10", "eur_foil": "0.25", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=464112", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Excavating+Anurid&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Excavating+Anurid&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Excavating+Anurid"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/191765?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Excavating+Anurid&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/72698?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "97d5fc3c-7f6b-42a5-a482-d789a2a421c7", "oracle_id": "2affbe3f-5292-43d9-a08c-23bf44629cc9", "multiverse_ids": [46058], "mtgo_id": 20379, "mtgo_foil_id": 20380, "tcgplayer_id": 11686, "cardmarket_id": 399, "name": "Fangren Firstborn", "lang": "en", "released_at": "2004-02-06", "uri": "https://api.scryfall.com/cards/97d5fc3c-7f6b-42a5-a482-d789a2a421c7", "scryfall_uri": "https://scryfall.com/card/dst/75/fangren-firstborn?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/9/7/97d5fc3c-7f6b-42a5-a482-d789a2a421c7.jpg?1562638300", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/7/97d5fc3c-7f6b-42a5-a482-d789a2a421c7.jpg?1562638300", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/9/7/97d5fc3c-7f6b-42a5-a482-d789a2a421c7.jpg?1562638300", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/9/7/97d5fc3c-7f6b-42a5-a482-d789a2a421c7.png?1562638300", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/7/97d5fc3c-7f6b-42a5-a482-d789a2a421c7.jpg?1562638300", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/9/7/97d5fc3c-7f6b-42a5-a482-d789a2a421c7.jpg?1562638300"}, "mana_cost": "{1}{G}{G}{G}", "cmc": 4.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Whenever Fangren Firstborn attacks, put a +1/+1 counter on each attacking creature.", "power": "4", "toughness": "2", "colors": ["G"], "color_identity": ["G"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "e29cb2dd-1345-4032-abfe-e52e8c8ce074", "set": "dst", "set_name": "Darksteel", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/e29cb2dd-1345-4032-abfe-e52e8c8ce074", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Adst&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/dst?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/97d5fc3c-7f6b-42a5-a482-d789a2a421c7/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A2affbe3f-5292-43d9-a08c-23bf44629cc9&unique=prints", "collector_number": "75", "digital": false, "rarity": "rare", "flavor_text": "In the Tangle, bad is often followed by worse.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Tim Hildebrandt", "artist_ids": ["caa7228c-f74c-4145-91fb-1af8d623c353"], "illustration_id": "1d8edae8-601d-41d0-a57a-dc450eac31ab", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 9591, "penny_rank": 8468, "prices": {"usd": "2.59", "usd_foil": "9.60", "usd_etched": null, "eur": "0.32", "eur_foil": "3.33", "tix": "0.01"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=46058", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Fangren+Firstborn&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Fangren+Firstborn&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Fangren+Firstborn"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/11686?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Fangren+Firstborn&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/20379?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "2dbc8eef-f032-490a-b487-da1af71b7ff2", "oracle_id": "c5dc5546-e9e5-4b5b-b812-5716d4bdee0e", "multiverse_ids": [46115], "mtgo_id": 19803, "mtgo_foil_id": 19804, "tcgplayer_id": 11438, "cardmarket_id": 119, "name": "Fangren Hunter", "lang": "en", "released_at": "2003-10-02", "uri": "https://api.scryfall.com/cards/2dbc8eef-f032-490a-b487-da1af71b7ff2", "scryfall_uri": "https://scryfall.com/card/mrd/119/fangren-hunter?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/2/d/2dbc8eef-f032-490a-b487-da1af71b7ff2.jpg?1562139685", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/d/2dbc8eef-f032-490a-b487-da1af71b7ff2.jpg?1562139685", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/2/d/2dbc8eef-f032-490a-b487-da1af71b7ff2.jpg?1562139685", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/2/d/2dbc8eef-f032-490a-b487-da1af71b7ff2.png?1562139685", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/d/2dbc8eef-f032-490a-b487-da1af71b7ff2.jpg?1562139685", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/2/d/2dbc8eef-f032-490a-b487-da1af71b7ff2.jpg?1562139685"}, "mana_cost": "{3}{G}{G}", "cmc": 5.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Trample", "power": "4", "toughness": "4", "colors": ["G"], "color_identity": ["G"], "keywords": ["Trample"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "1d4f90ba-8d4a-4ee5-bc2f-e2d6bffe4955", "set": "mrd", "set_name": "Mirrodin", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/1d4f90ba-8d4a-4ee5-bc2f-e2d6bffe4955", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Amrd&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/mrd?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/2dbc8eef-f032-490a-b487-da1af71b7ff2/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ac5dc5546-e9e5-4b5b-b812-5716d4bdee0e&unique=prints", "collector_number": "119", "digital": false, "rarity": "common", "flavor_text": "Big ones hunt the elves, so the elves hunt the small ones to keep them from getting big.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Darrell Riche", "artist_ids": ["262c8e55-4efc-467b-a042-6f734b9d2e01"], "illustration_id": "8926e5d3-6c15-4b58-ac16-06a60238fc8b", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 22278, "penny_rank": 11944, "prices": {"usd": "0.09", "usd_foil": "0.34", "usd_etched": null, "eur": "0.03", "eur_foil": "0.10", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=46115", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Fangren+Hunter&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Fangren+Hunter&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Fangren+Hunter"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/11438?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Fangren+Hunter&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/19803?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "f5cf62a2-d03a-495d-924a-bf79524175fa", "oracle_id": "e154e612-4041-4fb7-903f-917588dbe58e", "multiverse_ids": [213732], "mtgo_id": 39331, "mtgo_foil_id": 39332, "tcgplayer_id": 39064, "cardmarket_id": 245332, "name": "Fangren Marauder", "lang": "en", "released_at": "2011-02-04", "uri": "https://api.scryfall.com/cards/f5cf62a2-d03a-495d-924a-bf79524175fa", "scryfall_uri": "https://scryfall.com/card/mbs/79/fangren-marauder?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/f/5/f5cf62a2-d03a-495d-924a-bf79524175fa.jpg?1562615957", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/5/f5cf62a2-d03a-495d-924a-bf79524175fa.jpg?1562615957", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/f/5/f5cf62a2-d03a-495d-924a-bf79524175fa.jpg?1562615957", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/f/5/f5cf62a2-d03a-495d-924a-bf79524175fa.png?1562615957", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/5/f5cf62a2-d03a-495d-924a-bf79524175fa.jpg?1562615957", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/f/5/f5cf62a2-d03a-495d-924a-bf79524175fa.jpg?1562615957"}, "mana_cost": "{5}{G}", "cmc": 6.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Whenever an artifact is put into a graveyard from the battlefield, you may gain 5 life.", "power": "5", "toughness": "5", "colors": ["G"], "color_identity": ["G"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "f46c57e3-9301-4006-a6ca-06f3f65961fb", "set": "mbs", "set_name": "Mirrodin Besieged", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/f46c57e3-9301-4006-a6ca-06f3f65961fb", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ambs&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/mbs?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/f5cf62a2-d03a-495d-924a-bf79524175fa/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ae154e612-4041-4fb7-903f-917588dbe58e&unique=prints", "collector_number": "79", "digital": false, "rarity": "common", "watermark": "mirran", "flavor_text": "\"The fangren fight without comfort of any kind. We can ask no less of ourselves.\"\n\u2014Tilien, Sylvok partisan", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "James Ryman", "artist_ids": ["3852bbc9-11c0-4fe3-8722-a06ad7e2bcc5"], "illustration_id": "4661563a-18ab-4987-b3e9-7eb5d3b00225", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 6976, "penny_rank": 13523, "prices": {"usd": "0.24", "usd_foil": "16.80", "usd_etched": null, "eur": "0.17", "eur_foil": "3.49", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=213732", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Fangren+Marauder&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Fangren+Marauder&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Fangren+Marauder"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/39064?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Fangren+Marauder&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/39331?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "59679bcf-4436-48f8-bc6a-d7e0ec6b04c9", "oracle_id": "36d1a3f4-7903-41aa-9fb7-401d8789b00c", "multiverse_ids": [50171], "mtgo_id": 20720, "mtgo_foil_id": 20721, "tcgplayer_id": 11857, "cardmarket_id": 563, "name": "Fangren Pathcutter", "lang": "en", "released_at": "2004-06-04", "uri": "https://api.scryfall.com/cards/59679bcf-4436-48f8-bc6a-d7e0ec6b04c9", "scryfall_uri": "https://scryfall.com/card/5dn/87/fangren-pathcutter?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/5/9/59679bcf-4436-48f8-bc6a-d7e0ec6b04c9.jpg?1562877169", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/9/59679bcf-4436-48f8-bc6a-d7e0ec6b04c9.jpg?1562877169", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/5/9/59679bcf-4436-48f8-bc6a-d7e0ec6b04c9.jpg?1562877169", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/5/9/59679bcf-4436-48f8-bc6a-d7e0ec6b04c9.png?1562877169", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/9/59679bcf-4436-48f8-bc6a-d7e0ec6b04c9.jpg?1562877169", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/5/9/59679bcf-4436-48f8-bc6a-d7e0ec6b04c9.jpg?1562877169"}, "mana_cost": "{4}{G}{G}", "cmc": 6.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Whenever Fangren Pathcutter attacks, attacking creatures gain trample until end of turn.", "power": "4", "toughness": "6", "colors": ["G"], "color_identity": ["G"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "restricted", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "e4bc1b87-5476-463c-8640-4c414ecf1763", "set": "5dn", "set_name": "Fifth Dawn", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/e4bc1b87-5476-463c-8640-4c414ecf1763", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3A5dn&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/5dn?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/59679bcf-4436-48f8-bc6a-d7e0ec6b04c9/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A36d1a3f4-7903-41aa-9fb7-401d8789b00c&unique=prints", "collector_number": "87", "digital": false, "rarity": "uncommon", "flavor_text": "\"Tracking a fangren pack is easy. Catching up to one is fatal.\"\n\u2014Viridian scout", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Rob Alexander", "artist_ids": ["35906871-6c78-4ab2-9ed1-e6792c8efb74"], "illustration_id": "9cfaff31-ce55-48d7-88d0-44b34d6a497d", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 18772, "prices": {"usd": "0.10", "usd_foil": "0.30", "usd_etched": null, "eur": "0.01", "eur_foil": "0.09", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=50171", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Fangren+Pathcutter&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Fangren+Pathcutter&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Fangren+Pathcutter"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/11857?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Fangren+Pathcutter&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/20720?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "ea76a183-e15c-4968-b29d-91c074aa8681", "oracle_id": "cae60cf8-cd64-4595-a4dd-946694cf2bb1", "multiverse_ids": [401877], "mtgo_id": 58627, "mtgo_foil_id": 58628, "tcgplayer_id": 104273, "cardmarket_id": 284368, "name": "Felidar Cub", "lang": "en", "released_at": "2015-10-02", "uri": "https://api.scryfall.com/cards/ea76a183-e15c-4968-b29d-91c074aa8681", "scryfall_uri": "https://scryfall.com/card/bfz/25/felidar-cub?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/e/a/ea76a183-e15c-4968-b29d-91c074aa8681.jpg?1562950859", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/a/ea76a183-e15c-4968-b29d-91c074aa8681.jpg?1562950859", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/e/a/ea76a183-e15c-4968-b29d-91c074aa8681.jpg?1562950859", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/e/a/ea76a183-e15c-4968-b29d-91c074aa8681.png?1562950859", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/a/ea76a183-e15c-4968-b29d-91c074aa8681.jpg?1562950859", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/e/a/ea76a183-e15c-4968-b29d-91c074aa8681.jpg?1562950859"}, "mana_cost": "{1}{W}", "cmc": 2.0, "type_line": "Creature \u2014 Cat Beast", "oracle_text": "Sacrifice Felidar Cub: Destroy target enchantment.", "power": "2", "toughness": "2", "colors": ["W"], "color_identity": ["W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "91719374-7ac5-4afa-ada8-5da964dcf1d4", "set": "bfz", "set_name": "Battle for Zendikar", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/91719374-7ac5-4afa-ada8-5da964dcf1d4", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Abfz&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/bfz?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/ea76a183-e15c-4968-b29d-91c074aa8681/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Acae60cf8-cd64-4595-a4dd-946694cf2bb1&unique=prints", "collector_number": "25", "digital": false, "rarity": "common", "flavor_text": "Felidars that make it through their first year of life can easily live to see a hundred years more.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Steve Prescott", "artist_ids": ["a1139fb8-41f5-4a9e-9a74-f662e1a23b35"], "illustration_id": "7f7e3305-e80d-4e87-b913-14b6e77bb8aa", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 6756, "penny_rank": 7600, "prices": {"usd": "0.09", "usd_foil": "0.43", "usd_etched": null, "eur": "0.12", "eur_foil": "0.25", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=401877", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Felidar+Cub&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Felidar+Cub&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Felidar+Cub"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/104273?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Felidar+Cub&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/58627?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "44bdbed8-5d21-4bf5-8a32-9623b1139c85", "oracle_id": "33869ba6-13e5-4e48-8963-92f7965648fb", "multiverse_ids": [423686], "mtgo_id": 62593, "mtgo_foil_id": 62594, "tcgplayer_id": 126480, "cardmarket_id": 294855, "name": "Felidar Guardian", "lang": "en", "released_at": "2017-01-20", "uri": "https://api.scryfall.com/cards/44bdbed8-5d21-4bf5-8a32-9623b1139c85", "scryfall_uri": "https://scryfall.com/card/aer/19/felidar-guardian?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/4/4/44bdbed8-5d21-4bf5-8a32-9623b1139c85.jpg?1576381396", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/4/44bdbed8-5d21-4bf5-8a32-9623b1139c85.jpg?1576381396", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/4/4/44bdbed8-5d21-4bf5-8a32-9623b1139c85.jpg?1576381396", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/4/4/44bdbed8-5d21-4bf5-8a32-9623b1139c85.png?1576381396", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/4/44bdbed8-5d21-4bf5-8a32-9623b1139c85.jpg?1576381396", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/4/4/44bdbed8-5d21-4bf5-8a32-9623b1139c85.jpg?1576381396"}, "mana_cost": "{3}{W}", "cmc": 4.0, "type_line": "Creature \u2014 Cat Beast", "oracle_text": "When Felidar Guardian enters the battlefield, you may exile another target permanent you control, then return that card to the battlefield under its owner's control.", "power": "1", "toughness": "4", "colors": ["W"], "color_identity": ["W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "banned", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "restricted", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "a4a0db50-8826-4e73-833c-3fd934375f96", "set": "aer", "set_name": "Aether Revolt", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/a4a0db50-8826-4e73-833c-3fd934375f96", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aaer&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/aer?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/44bdbed8-5d21-4bf5-8a32-9623b1139c85/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A33869ba6-13e5-4e48-8963-92f7965648fb&unique=prints", "collector_number": "19", "digital": false, "rarity": "uncommon", "flavor_text": "The loyalty of a felidar is hard won but worth the effort.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Jakub Kasper", "artist_ids": ["36901417-ce61-4636-8b77-6db14a9cb68a"], "illustration_id": "ed7f0601-e3be-4f35-8298-c4ba7031669b", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 1322, "penny_rank": 530, "prices": {"usd": "1.50", "usd_foil": "9.30", "usd_etched": null, "eur": "0.48", "eur_foil": "1.50", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=423686", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Felidar+Guardian&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Felidar+Guardian&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Felidar+Guardian"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/126480?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Felidar+Guardian&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/62593?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "78769295-e1e3-4bd7-9ece-b60e124efbba", "oracle_id": "5ae3cbb9-9f0c-4077-ae7c-fba660d7fb4b", "multiverse_ids": [], "tcgplayer_id": 122169, "cardmarket_id": 294001, "name": "Felidar Sovereign", "lang": "en", "released_at": "2016-08-01", "uri": "https://api.scryfall.com/cards/78769295-e1e3-4bd7-9ece-b60e124efbba", "scryfall_uri": "https://scryfall.com/card/pres/26/felidar-sovereign?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/7/8/78769295-e1e3-4bd7-9ece-b60e124efbba.jpg?1562920314", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/8/78769295-e1e3-4bd7-9ece-b60e124efbba.jpg?1562920314", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/7/8/78769295-e1e3-4bd7-9ece-b60e124efbba.jpg?1562920314", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/7/8/78769295-e1e3-4bd7-9ece-b60e124efbba.png?1562920314", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/8/78769295-e1e3-4bd7-9ece-b60e124efbba.jpg?1562920314", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/7/8/78769295-e1e3-4bd7-9ece-b60e124efbba.jpg?1562920314"}, "mana_cost": "{4}{W}{W}", "cmc": 6.0, "type_line": "Creature \u2014 Cat Beast", "oracle_text": "Vigilance, lifelink\nAt the beginning of your upkeep, if you have 40 or more life, you win the game.", "power": "4", "toughness": "6", "colors": ["W"], "color_identity": ["W"], "keywords": ["Lifelink", "Vigilance"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": true, "nonfoil": false, "finishes": ["foil"], "oversized": false, "promo": true, "reprint": true, "variation": false, "set_id": "94031b15-d768-4087-af9d-a3f9d1a29fde", "set": "pres", "set_name": "Resale Promos", "set_type": "promo", "set_uri": "https://api.scryfall.com/sets/94031b15-d768-4087-af9d-a3f9d1a29fde", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Apres&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/pres?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/78769295-e1e3-4bd7-9ece-b60e124efbba/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A5ae3cbb9-9f0c-4077-ae7c-fba660d7fb4b&unique=prints", "collector_number": "26", "digital": false, "rarity": "rare", "watermark": "colorpie", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Zoltan Boros & Gabor Szikszai", "artist_ids": ["1885e6cb-c827-4896-994e-3d0a027d602f", "44c3877f-8771-43dc-9e40-f4c765f59d2e"], "illustration_id": "9dd86f23-8fa6-4f59-a651-515790e77cef", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "promo_types": ["instore"], "edhrec_rank": 1207, "penny_rank": 4260, "prices": {"usd": null, "usd_foil": "5.62", "usd_etched": null, "eur": null, "eur_foil": "7.50", "tix": null}, "related_uris": {"tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Felidar+Sovereign&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Felidar+Sovereign&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Felidar+Sovereign"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/122169?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Felidar+Sovereign&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Felidar+Sovereign&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "46f76986-e9fb-4c51-b946-880b501775b0", "oracle_id": "b5d5dd1f-2d31-4849-8cb9-08354dd48d31", "multiverse_ids": [174973], "mtgo_id": 31039, "mtgo_foil_id": 31040, "tcgplayer_id": 27671, "cardmarket_id": 19891, "name": "Feral Hydra", "lang": "en", "released_at": "2008-10-03", "uri": "https://api.scryfall.com/cards/46f76986-e9fb-4c51-b946-880b501775b0", "scryfall_uri": "https://scryfall.com/card/ala/131/feral-hydra?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/4/6/46f76986-e9fb-4c51-b946-880b501775b0.jpg?1562703397", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/6/46f76986-e9fb-4c51-b946-880b501775b0.jpg?1562703397", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/4/6/46f76986-e9fb-4c51-b946-880b501775b0.jpg?1562703397", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/4/6/46f76986-e9fb-4c51-b946-880b501775b0.png?1562703397", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/6/46f76986-e9fb-4c51-b946-880b501775b0.jpg?1562703397", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/4/6/46f76986-e9fb-4c51-b946-880b501775b0.jpg?1562703397"}, "mana_cost": "{X}{G}", "cmc": 1.0, "type_line": "Creature \u2014 Hydra Beast", "oracle_text": "Feral Hydra enters the battlefield with X +1/+1 counters on it.\n{3}: Put a +1/+1 counter on Feral Hydra. Any player may activate this ability.", "power": "0", "toughness": "0", "colors": ["G"], "color_identity": ["G"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "restricted", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "d667aaec-09b7-4406-b6fa-60795132dc11", "set": "ala", "set_name": "Shards of Alara", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/d667aaec-09b7-4406-b6fa-60795132dc11", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aala&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ala?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/46f76986-e9fb-4c51-b946-880b501775b0/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ab5d5dd1f-2d31-4849-8cb9-08354dd48d31&unique=prints", "collector_number": "131", "digital": false, "rarity": "rare", "flavor_text": "It shreds its prey as each head fights for the choicest bits.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Steve Prescott", "artist_ids": ["a1139fb8-41f5-4a9e-9a74-f662e1a23b35"], "illustration_id": "fc1ad5c5-3b0c-4d03-b36a-369941b02169", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 5339, "penny_rank": 10056, "prices": {"usd": "0.22", "usd_foil": "7.32", "usd_etched": null, "eur": "0.25", "eur_foil": "1.00", "tix": "0.01"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=174973", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Feral+Hydra&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Feral+Hydra&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Feral+Hydra"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/27671?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Feral+Hydra&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/31039?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "5041996b-c265-4c4f-a52c-dfe29b2e282d", "oracle_id": "8c42883d-8b70-4691-a1e7-4659e7954b88", "multiverse_ids": [391831], "mtgo_id": 55512, "mtgo_foil_id": 55513, "tcgplayer_id": 95424, "cardmarket_id": 271704, "name": "Feral Krushok", "lang": "en", "released_at": "2015-01-23", "uri": "https://api.scryfall.com/cards/5041996b-c265-4c4f-a52c-dfe29b2e282d", "scryfall_uri": "https://scryfall.com/card/frf/128/feral-krushok?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/5/0/5041996b-c265-4c4f-a52c-dfe29b2e282d.jpg?1562825098", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/0/5041996b-c265-4c4f-a52c-dfe29b2e282d.jpg?1562825098", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/5/0/5041996b-c265-4c4f-a52c-dfe29b2e282d.jpg?1562825098", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/5/0/5041996b-c265-4c4f-a52c-dfe29b2e282d.png?1562825098", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/0/5041996b-c265-4c4f-a52c-dfe29b2e282d.jpg?1562825098", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/5/0/5041996b-c265-4c4f-a52c-dfe29b2e282d.jpg?1562825098"}, "mana_cost": "{4}{G}", "cmc": 5.0, "type_line": "Creature \u2014 Beast", "oracle_text": "", "power": "5", "toughness": "4", "colors": ["G"], "color_identity": ["G"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "7bb5cb2b-081a-4c8c-b7e1-494046e6baa1", "set": "frf", "set_name": "Fate Reforged", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/7bb5cb2b-081a-4c8c-b7e1-494046e6baa1", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Afrf&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/frf?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/5041996b-c265-4c4f-a52c-dfe29b2e282d/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A8c42883d-8b70-4691-a1e7-4659e7954b88&unique=prints", "collector_number": "128", "digital": false, "rarity": "common", "flavor_text": "In a stunning act of diplomacy, Yasova Dragonclaw ceded a portion of Temur lands to the Sultai. Her clan protested until they saw she had given the Sultai the breeding grounds of the krushoks. They hadn't realized she had a sense of humor.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Kev Walker", "artist_ids": ["f366a0ee-a0cd-466d-ba6a-90058c7a31a6"], "illustration_id": "9088e5ba-292c-4562-9d70-56855b63a11f", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 19709, "prices": {"usd": "0.03", "usd_foil": "0.24", "usd_etched": null, "eur": "0.02", "eur_foil": "0.04", "tix": "0.04"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=391831", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Feral+Krushok&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Feral+Krushok&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Feral+Krushok"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/95424?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Feral+Krushok&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/55512?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "5111a9a3-a92d-4677-8974-20800256dd4f", "oracle_id": "edb2d86f-d2c6-4230-a37d-b01210a99a32", "multiverse_ids": [97066], "tcgplayer_id": 38378, "cardmarket_id": 17714, "name": "Feral Throwback", "lang": "en", "released_at": "2003-01-25", "uri": "https://api.scryfall.com/cards/5111a9a3-a92d-4677-8974-20800256dd4f", "scryfall_uri": "https://scryfall.com/card/plgn/126/feral-throwback?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/5/1/5111a9a3-a92d-4677-8974-20800256dd4f.jpg?1606849574", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/1/5111a9a3-a92d-4677-8974-20800256dd4f.jpg?1606849574", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/5/1/5111a9a3-a92d-4677-8974-20800256dd4f.jpg?1606849574", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/5/1/5111a9a3-a92d-4677-8974-20800256dd4f.png?1606849574", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/1/5111a9a3-a92d-4677-8974-20800256dd4f.jpg?1606849574", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/5/1/5111a9a3-a92d-4677-8974-20800256dd4f.jpg?1606849574"}, "mana_cost": "{4}{G}{G}", "cmc": 6.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Amplify 2 (As this creature enters the battlefield, put two +1/+1 counters on it for each Beast card you reveal in your hand.)\nProvoke (Whenever this creature attacks, you may have target creature defending player controls untap and block it if able.)", "power": "3", "toughness": "3", "colors": ["G"], "color_identity": ["G"], "keywords": ["Amplify", "Provoke"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper"], "reserved": false, "foil": true, "nonfoil": false, "finishes": ["foil"], "oversized": false, "promo": true, "reprint": true, "variation": false, "set_id": "33d36849-7710-4766-90c6-728c3f625003", "set": "plgn", "set_name": "Legions Promos", "set_type": "promo", "set_uri": "https://api.scryfall.com/sets/33d36849-7710-4766-90c6-728c3f625003", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aplgn&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/plgn?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/5111a9a3-a92d-4677-8974-20800256dd4f/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aedb2d86f-d2c6-4230-a37d-b01210a99a32&unique=prints", "collector_number": "126", "digital": false, "rarity": "rare", "watermark": "set", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Carl Critchlow", "artist_ids": ["17948f16-611a-44b8-8d10-9895a0bdfff1"], "illustration_id": "4a0dd414-24ae-49fe-9d16-47236486d377", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "promo_types": ["datestamped", "prerelease"], "edhrec_rank": 20318, "prices": {"usd": null, "usd_foil": "0.54", "usd_etched": null, "eur": null, "eur_foil": "0.10", "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=97066", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Feral+Throwback&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Feral+Throwback&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Feral+Throwback"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/38378?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Feral+Throwback&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Feral+Throwback&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "7a6d1184-15e0-4b41-ba2d-4f68e91c61d4", "oracle_id": "a45e0854-28c7-41f5-a9fe-5b76a8070c5b", "multiverse_ids": [447076], "tcgplayer_id": 168317, "cardmarket_id": 359412, "name": "Ferocious Zheng", "lang": "en", "released_at": "2018-06-22", "uri": "https://api.scryfall.com/cards/7a6d1184-15e0-4b41-ba2d-4f68e91c61d4", "scryfall_uri": "https://scryfall.com/card/gs1/28/ferocious-zheng?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/7/a/7a6d1184-15e0-4b41-ba2d-4f68e91c61d4.jpg?1562131565", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/a/7a6d1184-15e0-4b41-ba2d-4f68e91c61d4.jpg?1562131565", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/7/a/7a6d1184-15e0-4b41-ba2d-4f68e91c61d4.jpg?1562131565", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/7/a/7a6d1184-15e0-4b41-ba2d-4f68e91c61d4.png?1562131565", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/a/7a6d1184-15e0-4b41-ba2d-4f68e91c61d4.jpg?1562131565", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/7/a/7a6d1184-15e0-4b41-ba2d-4f68e91c61d4.jpg?1562131565"}, "mana_cost": "{2}{G}{G}", "cmc": 4.0, "type_line": "Creature \u2014 Cat Beast", "oracle_text": "", "power": "4", "toughness": "4", "colors": ["G"], "color_identity": ["G"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "19c285e9-68e0-45e1-b82b-ac6051eb43be", "set": "gs1", "set_name": "Global Series Jiang Yanggu & Mu Yanling", "set_type": "duel_deck", "set_uri": "https://api.scryfall.com/sets/19c285e9-68e0-45e1-b82b-ac6051eb43be", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ags1&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/gs1?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/7a6d1184-15e0-4b41-ba2d-4f68e91c61d4/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aa45e0854-28c7-41f5-a9fe-5b76a8070c5b&unique=prints", "collector_number": "28", "digital": false, "rarity": "common", "flavor_text": "Known for their glowing horn and stone-rattling roar, zheng are the fiercest predators in the forest. Few survived before Jiang Yanggu came.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Yutaka Li", "artist_ids": ["c28fc66c-b2df-40ea-bf9a-45dca41de634"], "illustration_id": "c92a2b8b-e701-469f-be48-e0660c62d028", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "edhrec_rank": 13575, "prices": {"usd": "0.06", "usd_foil": null, "usd_etched": null, "eur": "0.35", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=447076", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Ferocious+Zheng&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Ferocious+Zheng&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Ferocious+Zheng"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/168317?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Ferocious+Zheng&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Ferocious+Zheng&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "8dcc7170-38d9-4b9e-a5f9-73ac1208c439", "oracle_id": "1f0f068a-fd4e-4a6f-9439-0e694e34a945", "multiverse_ids": [194317], "mtgo_id": 38071, "mtgo_foil_id": 38072, "tcgplayer_id": 36471, "cardmarket_id": 242789, "name": "Ferrovore", "lang": "en", "released_at": "2010-10-01", "uri": "https://api.scryfall.com/cards/8dcc7170-38d9-4b9e-a5f9-73ac1208c439", "scryfall_uri": "https://scryfall.com/card/som/88/ferrovore?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/8/d/8dcc7170-38d9-4b9e-a5f9-73ac1208c439.jpg?1636491206", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/d/8dcc7170-38d9-4b9e-a5f9-73ac1208c439.jpg?1636491206", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/8/d/8dcc7170-38d9-4b9e-a5f9-73ac1208c439.jpg?1636491206", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/8/d/8dcc7170-38d9-4b9e-a5f9-73ac1208c439.png?1636491206", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/d/8dcc7170-38d9-4b9e-a5f9-73ac1208c439.jpg?1636491206", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/8/d/8dcc7170-38d9-4b9e-a5f9-73ac1208c439.jpg?1636491206"}, "mana_cost": "{2}{R}", "cmc": 3.0, "type_line": "Creature \u2014 Beast", "oracle_text": "{R}, Sacrifice an artifact: Ferrovore gets +3/+0 until end of turn.", "power": "2", "toughness": "2", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "8f403072-9b22-4e69-8d59-22dc4c97fd8d", "set": "som", "set_name": "Scars of Mirrodin", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/8f403072-9b22-4e69-8d59-22dc4c97fd8d", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Asom&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/som?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/8dcc7170-38d9-4b9e-a5f9-73ac1208c439/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A1f0f068a-fd4e-4a6f-9439-0e694e34a945&unique=prints", "collector_number": "88", "digital": false, "rarity": "common", "watermark": "mirran", "flavor_text": "The Vulshok use its digestion to break down the most obstinate artifacts, from darksteel myr to seastrider plates.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Austin Hsu", "artist_ids": ["c5e439d8-b3db-4c13-ae93-4e129e3b9478"], "illustration_id": "cc9e9588-7b59-430c-b576-7f42302c70be", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 21916, "prices": {"usd": "0.03", "usd_foil": "0.14", "usd_etched": null, "eur": "0.02", "eur_foil": "0.20", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=194317", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Ferrovore&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Ferrovore&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Ferrovore"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/36471?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Ferrovore&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/38071?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "c464923e-ae6e-4c1d-9315-0ddb86c07b40", "oracle_id": "195f4bda-a5b9-4ac7-aa32-9ae5e5b0d374", "multiverse_ids": [110532], "mtgo_id": 25911, "mtgo_foil_id": 25912, "tcgplayer_id": 14229, "cardmarket_id": 13836, "name": "Fledgling Mawcor", "lang": "en", "released_at": "2006-10-06", "uri": "https://api.scryfall.com/cards/c464923e-ae6e-4c1d-9315-0ddb86c07b40", "scryfall_uri": "https://scryfall.com/card/tsp/63/fledgling-mawcor?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/c/4/c464923e-ae6e-4c1d-9315-0ddb86c07b40.jpg?1562936522", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/4/c464923e-ae6e-4c1d-9315-0ddb86c07b40.jpg?1562936522", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/c/4/c464923e-ae6e-4c1d-9315-0ddb86c07b40.jpg?1562936522", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/c/4/c464923e-ae6e-4c1d-9315-0ddb86c07b40.png?1562936522", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/4/c464923e-ae6e-4c1d-9315-0ddb86c07b40.jpg?1562936522", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/c/4/c464923e-ae6e-4c1d-9315-0ddb86c07b40.jpg?1562936522"}, "mana_cost": "{3}{U}", "cmc": 4.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Flying\n{T}: Fledgling Mawcor deals 1 damage to any target.\nMorph {U}{U} (You may cast this card face down as a 2/2 creature for {3}. Turn it face up any time for its morph cost.)", "power": "2", "toughness": "2", "colors": ["U"], "color_identity": ["U"], "keywords": ["Flying", "Morph"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "restricted", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "c1d109bc-ffd8-428f-8d7d-3f8d7e648046", "set": "tsp", "set_name": "Time Spiral", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/c1d109bc-ffd8-428f-8d7d-3f8d7e648046", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Atsp&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/tsp?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/c464923e-ae6e-4c1d-9315-0ddb86c07b40/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A195f4bda-a5b9-4ac7-aa32-9ae5e5b0d374&unique=prints", "collector_number": "63", "digital": false, "rarity": "uncommon", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Kev Walker", "artist_ids": ["f366a0ee-a0cd-466d-ba6a-90058c7a31a6"], "illustration_id": "0081e9c1-99c2-4d49-934d-6672eb6bc74d", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 15469, "penny_rank": 4633, "prices": {"usd": "0.08", "usd_foil": "0.46", "usd_etched": null, "eur": "0.25", "eur_foil": "0.07", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=110532", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Fledgling+Mawcor&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Fledgling+Mawcor&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Fledgling+Mawcor"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/14229?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Fledgling+Mawcor&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/25911?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "c57abdab-d99c-418c-818d-b06a8722d733", "oracle_id": "a19e0a7f-d356-4d2c-8414-70a40ce18674", "multiverse_ids": [19117], "mtgo_id": 16130, "mtgo_foil_id": 16131, "tcgplayer_id": 7953, "cardmarket_id": 3211, "name": "Flowstone Charger", "lang": "en", "released_at": "2001-06-04", "uri": "https://api.scryfall.com/cards/c57abdab-d99c-418c-818d-b06a8722d733", "scryfall_uri": "https://scryfall.com/card/apc/99/flowstone-charger?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/c/5/c57abdab-d99c-418c-818d-b06a8722d733.jpg?1562941643", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/5/c57abdab-d99c-418c-818d-b06a8722d733.jpg?1562941643", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/c/5/c57abdab-d99c-418c-818d-b06a8722d733.jpg?1562941643", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/c/5/c57abdab-d99c-418c-818d-b06a8722d733.png?1562941643", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/5/c57abdab-d99c-418c-818d-b06a8722d733.jpg?1562941643", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/c/5/c57abdab-d99c-418c-818d-b06a8722d733.jpg?1562941643"}, "mana_cost": "{2}{R}{W}", "cmc": 4.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Whenever Flowstone Charger attacks, it gets +3/-3 until end of turn.", "power": "2", "toughness": "5", "colors": ["R", "W"], "color_identity": ["R", "W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "restricted", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "e4e00913-d08d-4899-86ea-5cf631e09ce0", "set": "apc", "set_name": "Apocalypse", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/e4e00913-d08d-4899-86ea-5cf631e09ce0", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aapc&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/apc?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/c57abdab-d99c-418c-818d-b06a8722d733/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aa19e0a7f-d356-4d2c-8414-70a40ce18674&unique=prints", "collector_number": "99", "digital": false, "rarity": "uncommon", "flavor_text": "A mane of flowstone and a mien of fury.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "John Gallagher", "artist_ids": ["fa726cd3-da51-4b1f-a9da-b9cb87df195f"], "illustration_id": "936bf071-ed4c-47ca-a49a-aac40a4a15e9", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 23066, "prices": {"usd": "0.14", "usd_foil": "0.28", "usd_etched": null, "eur": "0.15", "eur_foil": "1.20", "tix": "0.09"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=19117", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Flowstone+Charger&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Flowstone+Charger&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Flowstone+Charger"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/7953?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Flowstone+Charger&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/16130?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "c93f0066-1ff0-4e52-9959-9eb0def60957", "oracle_id": "cc18fcfc-bfe8-41d8-9037-5ff05b2a9c44", "multiverse_ids": [21334], "mtgo_id": 13991, "mtgo_foil_id": 13992, "tcgplayer_id": 7156, "cardmarket_id": 11804, "name": "Flowstone Crusher", "lang": "en", "released_at": "2000-02-14", "uri": "https://api.scryfall.com/cards/c93f0066-1ff0-4e52-9959-9eb0def60957", "scryfall_uri": "https://scryfall.com/card/nem/81/flowstone-crusher?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/c/9/c93f0066-1ff0-4e52-9959-9eb0def60957.jpg?1562631986", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/9/c93f0066-1ff0-4e52-9959-9eb0def60957.jpg?1562631986", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/c/9/c93f0066-1ff0-4e52-9959-9eb0def60957.jpg?1562631986", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/c/9/c93f0066-1ff0-4e52-9959-9eb0def60957.png?1562631986", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/9/c93f0066-1ff0-4e52-9959-9eb0def60957.jpg?1562631986", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/c/9/c93f0066-1ff0-4e52-9959-9eb0def60957.jpg?1562631986"}, "mana_cost": "{3}{R}{R}", "cmc": 5.0, "type_line": "Creature \u2014 Beast", "oracle_text": "{R}: Flowstone Crusher gets +1/-1 until end of turn.", "power": "4", "toughness": "4", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "fa5d1fdb-f781-473d-b14d-50396d40d43f", "set": "nem", "set_name": "Nemesis", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/fa5d1fdb-f781-473d-b14d-50396d40d43f", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Anem&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/nem?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/c93f0066-1ff0-4e52-9959-9eb0def60957/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Acc18fcfc-bfe8-41d8-9037-5ff05b2a9c44&unique=prints", "collector_number": "81", "digital": false, "rarity": "common", "flavor_text": "\"Someone must have done something very bad to make a rock that angry.\"\n\u2014Rebel scout", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Ben Thompson", "artist_ids": ["f3116c88-57f4-4fd1-95f3-cfd163977661"], "illustration_id": "a1d700cd-b6ff-4553-9055-a446cf6dfa25", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 23131, "prices": {"usd": "0.08", "usd_foil": "0.27", "usd_etched": null, "eur": "0.01", "eur_foil": "0.19", "tix": "0.07"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=21334", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Flowstone+Crusher&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Flowstone+Crusher&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Flowstone+Crusher"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/7156?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Flowstone+Crusher&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/13991?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "680ccbc7-aa97-4f01-9d26-0df184af3c3e", "oracle_id": "69ea4ef2-794d-4c76-904f-0435b0efd6a0", "multiverse_ids": [5153], "mtgo_id": 10259, "mtgo_foil_id": 10260, "tcgplayer_id": 5345, "cardmarket_id": 9169, "name": "Flowstone Hellion", "lang": "en", "released_at": "1998-03-02", "uri": "https://api.scryfall.com/cards/680ccbc7-aa97-4f01-9d26-0df184af3c3e", "scryfall_uri": "https://scryfall.com/card/sth/84/flowstone-hellion?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/6/8/680ccbc7-aa97-4f01-9d26-0df184af3c3e.jpg?1562596853", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/8/680ccbc7-aa97-4f01-9d26-0df184af3c3e.jpg?1562596853", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/6/8/680ccbc7-aa97-4f01-9d26-0df184af3c3e.jpg?1562596853", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/6/8/680ccbc7-aa97-4f01-9d26-0df184af3c3e.png?1562596853", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/8/680ccbc7-aa97-4f01-9d26-0df184af3c3e.jpg?1562596853", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/6/8/680ccbc7-aa97-4f01-9d26-0df184af3c3e.jpg?1562596853"}, "mana_cost": "{4}{R}", "cmc": 5.0, "type_line": "Creature \u2014 Hellion Beast", "oracle_text": "Haste\n{0}: Flowstone Hellion gets +1/-1 until end of turn.", "power": "3", "toughness": "3", "colors": ["R"], "color_identity": ["R"], "keywords": ["Haste"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "restricted", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "5c83396a-d386-4367-926b-571a75b086a3", "set": "sth", "set_name": "Stronghold", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/5c83396a-d386-4367-926b-571a75b086a3", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Asth&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/sth?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/680ccbc7-aa97-4f01-9d26-0df184af3c3e/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A69ea4ef2-794d-4c76-904f-0435b0efd6a0&unique=prints", "collector_number": "84", "digital": false, "rarity": "uncommon", "flavor_text": "Volrath leaves no stone untrained.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Daren Bader", "artist_ids": ["7da1a585-c875-45e4-b322-5da9e8e1f651"], "illustration_id": "6b2cab32-61c8-4dc1-a4b0-cf191fe20060", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 22370, "prices": {"usd": "0.08", "usd_foil": null, "usd_etched": null, "eur": "0.02", "eur_foil": null, "tix": "0.09"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=5153", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Flowstone+Hellion&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Flowstone+Hellion&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Flowstone+Hellion"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/5345?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Flowstone+Hellion&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/10259?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "a3165251-6ac6-4294-8bca-595c362f4ceb", "oracle_id": "ea205569-b5a0-4c86-b825-67cd48d3b2e8", "multiverse_ids": [5154], "mtgo_id": 10261, "mtgo_foil_id": 10262, "tcgplayer_id": 5346, "cardmarket_id": 9170, "name": "Flowstone Mauler", "lang": "en", "released_at": "1998-03-02", "uri": "https://api.scryfall.com/cards/a3165251-6ac6-4294-8bca-595c362f4ceb", "scryfall_uri": "https://scryfall.com/card/sth/85/flowstone-mauler?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/a/3/a3165251-6ac6-4294-8bca-595c362f4ceb.jpg?1562597338", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/3/a3165251-6ac6-4294-8bca-595c362f4ceb.jpg?1562597338", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/a/3/a3165251-6ac6-4294-8bca-595c362f4ceb.jpg?1562597338", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/a/3/a3165251-6ac6-4294-8bca-595c362f4ceb.png?1562597338", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/3/a3165251-6ac6-4294-8bca-595c362f4ceb.jpg?1562597338", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/a/3/a3165251-6ac6-4294-8bca-595c362f4ceb.jpg?1562597338"}, "mana_cost": "{4}{R}{R}", "cmc": 6.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Trample\n{R}: Flowstone Mauler gets +1/-1 until end of turn.", "power": "4", "toughness": "5", "colors": ["R"], "color_identity": ["R"], "keywords": ["Trample"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "restricted", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "5c83396a-d386-4367-926b-571a75b086a3", "set": "sth", "set_name": "Stronghold", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/5c83396a-d386-4367-926b-571a75b086a3", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Asth&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/sth?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/a3165251-6ac6-4294-8bca-595c362f4ceb/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aea205569-b5a0-4c86-b825-67cd48d3b2e8&unique=prints", "collector_number": "85", "digital": false, "rarity": "rare", "flavor_text": "Once these horrifying creatures were perfected, there was no need for armodons.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Paolo Parente", "artist_ids": ["d48dd097-720d-476a-8722-6a02854ae28b"], "illustration_id": "60e85a8b-2dc3-49aa-9ef6-67986f26436b", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 23132, "prices": {"usd": "0.17", "usd_foil": null, "usd_etched": null, "eur": "0.37", "eur_foil": null, "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=5154", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Flowstone+Mauler&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Flowstone+Mauler&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Flowstone+Mauler"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/5346?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Flowstone+Mauler&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/10261?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "3e644ab8-3cc3-413d-a918-44fc636087ae", "oracle_id": "89a3a6a3-e5f9-4e28-8372-99219db3f976", "multiverse_ids": [21351], "mtgo_id": 13875, "mtgo_foil_id": 13876, "tcgplayer_id": 7157, "cardmarket_id": 11805, "name": "Flowstone Overseer", "lang": "en", "released_at": "2000-02-14", "uri": "https://api.scryfall.com/cards/3e644ab8-3cc3-413d-a918-44fc636087ae", "scryfall_uri": "https://scryfall.com/card/nem/82/flowstone-overseer?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/3/e/3e644ab8-3cc3-413d-a918-44fc636087ae.jpg?1562629522", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/e/3e644ab8-3cc3-413d-a918-44fc636087ae.jpg?1562629522", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/3/e/3e644ab8-3cc3-413d-a918-44fc636087ae.jpg?1562629522", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/3/e/3e644ab8-3cc3-413d-a918-44fc636087ae.png?1562629522", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/e/3e644ab8-3cc3-413d-a918-44fc636087ae.jpg?1562629522", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/3/e/3e644ab8-3cc3-413d-a918-44fc636087ae.jpg?1562629522"}, "mana_cost": "{2}{R}{R}{R}", "cmc": 5.0, "type_line": "Creature \u2014 Beast", "oracle_text": "{R}{R}: Target creature gets +1/-1 until end of turn.", "power": "4", "toughness": "4", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "fa5d1fdb-f781-473d-b14d-50396d40d43f", "set": "nem", "set_name": "Nemesis", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/fa5d1fdb-f781-473d-b14d-50396d40d43f", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Anem&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/nem?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/3e644ab8-3cc3-413d-a918-44fc636087ae/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A89a3a6a3-e5f9-4e28-8372-99219db3f976&unique=prints", "collector_number": "82", "digital": false, "rarity": "rare", "flavor_text": "The rebels couldn't see where the roar was coming from. Then they saw it was coming from everywhere.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Andrew Goldhawk", "artist_ids": ["f4a65a04-9e2e-4541-8d0e-f34e9517f092"], "illustration_id": "bbadc93e-fdc5-4b5f-9ee7-ce66218fa7ea", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 21779, "penny_rank": 12422, "prices": {"usd": "0.36", "usd_foil": "6.60", "usd_etched": null, "eur": "0.75", "eur_foil": "5.99", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=21351", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Flowstone+Overseer&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Flowstone+Overseer&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Flowstone+Overseer"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/7157?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Flowstone+Overseer&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/13875?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "6f2b70a5-db13-4c3f-829d-d4b9e0a16245", "oracle_id": "e72ae9ab-7405-4ea7-b075-42d0ddc352db", "multiverse_ids": [5156], "mtgo_id": 10265, "mtgo_foil_id": 10266, "tcgplayer_id": 5347, "cardmarket_id": 9171, "name": "Flowstone Shambler", "lang": "en", "released_at": "1998-03-02", "uri": "https://api.scryfall.com/cards/6f2b70a5-db13-4c3f-829d-d4b9e0a16245", "scryfall_uri": "https://scryfall.com/card/sth/86/flowstone-shambler?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/6/f/6f2b70a5-db13-4c3f-829d-d4b9e0a16245.jpg?1562596859", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/f/6f2b70a5-db13-4c3f-829d-d4b9e0a16245.jpg?1562596859", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/6/f/6f2b70a5-db13-4c3f-829d-d4b9e0a16245.jpg?1562596859", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/6/f/6f2b70a5-db13-4c3f-829d-d4b9e0a16245.png?1562596859", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/f/6f2b70a5-db13-4c3f-829d-d4b9e0a16245.jpg?1562596859", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/6/f/6f2b70a5-db13-4c3f-829d-d4b9e0a16245.jpg?1562596859"}, "mana_cost": "{2}{R}", "cmc": 3.0, "type_line": "Creature \u2014 Beast", "oracle_text": "{R}: Flowstone Shambler gets +1/-1 until end of turn.", "power": "2", "toughness": "2", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "5c83396a-d386-4367-926b-571a75b086a3", "set": "sth", "set_name": "Stronghold", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/5c83396a-d386-4367-926b-571a75b086a3", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Asth&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/sth?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/6f2b70a5-db13-4c3f-829d-d4b9e0a16245/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ae72ae9ab-7405-4ea7-b075-42d0ddc352db&unique=prints", "collector_number": "86", "digital": false, "rarity": "common", "flavor_text": "Flowstone troops are notoriously difficult to keep in formation.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Jim Nelson", "artist_ids": ["aa9f64d1-29e1-4c82-877e-44c18183f40b"], "illustration_id": "4924e0fb-7d05-4948-ac51-b9236c84d60f", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 23223, "prices": {"usd": "0.04", "usd_foil": null, "usd_etched": null, "eur": "0.02", "eur_foil": null, "tix": "0.07"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=5156", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Flowstone+Shambler&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Flowstone+Shambler&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Flowstone+Shambler"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/5347?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Flowstone+Shambler&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/10265?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "8f6bc3c0-2d6e-4a09-84c4-b26a352186bb", "oracle_id": "4b875669-f5c4-4f52-95be-ac52b0e33ce1", "multiverse_ids": [42028], "mtgo_id": 18385, "mtgo_foil_id": 18386, "tcgplayer_id": 10773, "cardmarket_id": 2074, "name": "Frenetic Raptor", "lang": "en", "released_at": "2003-02-03", "uri": "https://api.scryfall.com/cards/8f6bc3c0-2d6e-4a09-84c4-b26a352186bb", "scryfall_uri": "https://scryfall.com/card/lgn/93/frenetic-raptor?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/8/f/8f6bc3c0-2d6e-4a09-84c4-b26a352186bb.jpg?1562923949", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/f/8f6bc3c0-2d6e-4a09-84c4-b26a352186bb.jpg?1562923949", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/8/f/8f6bc3c0-2d6e-4a09-84c4-b26a352186bb.jpg?1562923949", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/8/f/8f6bc3c0-2d6e-4a09-84c4-b26a352186bb.png?1562923949", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/f/8f6bc3c0-2d6e-4a09-84c4-b26a352186bb.jpg?1562923949", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/8/f/8f6bc3c0-2d6e-4a09-84c4-b26a352186bb.jpg?1562923949"}, "mana_cost": "{5}{R}", "cmc": 6.0, "type_line": "Creature \u2014 Dinosaur Beast", "oracle_text": "Beasts can't block.", "power": "6", "toughness": "6", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "restricted", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "c2d60a18-1a81-4784-8e0c-e1de2f43c5cf", "set": "lgn", "set_name": "Legions", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/c2d60a18-1a81-4784-8e0c-e1de2f43c5cf", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Algn&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/lgn?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/8f6bc3c0-2d6e-4a09-84c4-b26a352186bb/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A4b875669-f5c4-4f52-95be-ac52b0e33ce1&unique=prints", "collector_number": "93", "digital": false, "rarity": "uncommon", "flavor_text": "\"How do you stop a raptor from charging? No, seriously! Help!\"\n\u2014Blarg, goblin jester", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Daren Bader", "artist_ids": ["7da1a585-c875-45e4-b322-5da9e8e1f651"], "illustration_id": "6b342532-c237-465c-a96d-1d35fd8266de", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 22638, "prices": {"usd": "0.15", "usd_foil": "0.41", "usd_etched": null, "eur": "0.05", "eur_foil": "0.45", "tix": "0.04"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=42028", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Frenetic+Raptor&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Frenetic+Raptor&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Frenetic+Raptor"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/10773?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Frenetic+Raptor&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/18385?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "bce2eef7-03a4-415f-8bb7-a29d50ce1b0f", "oracle_id": "772873f4-74b9-44da-bd69-e4c8de797a26", "multiverse_ids": [457317], "mtgo_id": 71346, "arena_id": 69301, "tcgplayer_id": 182362, "cardmarket_id": 367866, "name": "Frenzied Arynx", "lang": "en", "released_at": "2019-01-25", "uri": "https://api.scryfall.com/cards/bce2eef7-03a4-415f-8bb7-a29d50ce1b0f", "scryfall_uri": "https://scryfall.com/card/rna/173/frenzied-arynx?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/b/c/bce2eef7-03a4-415f-8bb7-a29d50ce1b0f.jpg?1584831519", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/c/bce2eef7-03a4-415f-8bb7-a29d50ce1b0f.jpg?1584831519", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/b/c/bce2eef7-03a4-415f-8bb7-a29d50ce1b0f.jpg?1584831519", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/b/c/bce2eef7-03a4-415f-8bb7-a29d50ce1b0f.png?1584831519", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/c/bce2eef7-03a4-415f-8bb7-a29d50ce1b0f.jpg?1584831519", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/b/c/bce2eef7-03a4-415f-8bb7-a29d50ce1b0f.jpg?1584831519"}, "mana_cost": "{2}{R}{G}", "cmc": 4.0, "type_line": "Creature \u2014 Cat Beast", "oracle_text": "Riot (This creature enters the battlefield with your choice of a +1/+1 counter or haste.)\nTrample\n{4}{R}{G}: Frenzied Arynx gets +3/+0 until end of turn.", "power": "3", "toughness": "3", "colors": ["G", "R"], "color_identity": ["G", "R"], "keywords": ["Trample", "Riot"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "97a7fd84-8d89-45a3-b48b-c951f6a3f9f1", "set": "rna", "set_name": "Ravnica Allegiance", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/97a7fd84-8d89-45a3-b48b-c951f6a3f9f1", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Arna&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/rna?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/bce2eef7-03a4-415f-8bb7-a29d50ce1b0f/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A772873f4-74b9-44da-bd69-e4c8de797a26&unique=prints", "collector_number": "173", "digital": false, "rarity": "common", "watermark": "gruul", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Filip Burburan", "artist_ids": ["66082c3b-a623-4d34-be51-2475214b85d3"], "illustration_id": "6f0c2a69-bf02-403d-8ac9-f36edac3e345", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 14819, "penny_rank": 12085, "preview": {"source": "Wizards of the Coast", "source_uri": "https://magic.wizards.com/en/articles/archive/feature/ravnica-allegiance-mechanics-2018-12-17", "previewed_at": "2018-12-20"}, "prices": {"usd": "0.04", "usd_foil": "0.23", "usd_etched": null, "eur": "0.08", "eur_foil": "0.13", "tix": "0.05"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=457317", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Frenzied+Arynx&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Frenzied+Arynx&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Frenzied+Arynx"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/182362?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Frenzied+Arynx&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/71346?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "ab220695-e1a9-45ec-a1b1-5a82c9c90a03", "oracle_id": "bb504fb1-1d19-4d0b-958f-e8f2433e0575", "multiverse_ids": [479706], "mtgo_id": 80381, "arena_id": 71253, "tcgplayer_id": 212270, "cardmarket_id": 453173, "name": "Frondland Felidar", "lang": "en", "released_at": "2020-04-24", "uri": "https://api.scryfall.com/cards/ab220695-e1a9-45ec-a1b1-5a82c9c90a03", "scryfall_uri": "https://scryfall.com/card/iko/186/frondland-felidar?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/a/b/ab220695-e1a9-45ec-a1b1-5a82c9c90a03.jpg?1591605277", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/b/ab220695-e1a9-45ec-a1b1-5a82c9c90a03.jpg?1591605277", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/a/b/ab220695-e1a9-45ec-a1b1-5a82c9c90a03.jpg?1591605277", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/a/b/ab220695-e1a9-45ec-a1b1-5a82c9c90a03.png?1591605277", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/b/ab220695-e1a9-45ec-a1b1-5a82c9c90a03.jpg?1591605277", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/a/b/ab220695-e1a9-45ec-a1b1-5a82c9c90a03.jpg?1591605277"}, "mana_cost": "{2}{G}{W}", "cmc": 4.0, "type_line": "Creature \u2014 Cat Beast", "oracle_text": "Vigilance\nCreatures you control with vigilance have \"{1}, {T}: Tap target creature.\"", "power": "3", "toughness": "5", "colors": ["G", "W"], "color_identity": ["G", "W"], "keywords": ["Vigilance"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "19feda43-15ab-427e-a0e4-148a4bf2b03a", "set": "iko", "set_name": "Ikoria: Lair of Behemoths", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/19feda43-15ab-427e-a0e4-148a4bf2b03a", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aiko&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/iko?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/ab220695-e1a9-45ec-a1b1-5a82c9c90a03/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Abb504fb1-1d19-4d0b-958f-e8f2433e0575&unique=prints", "collector_number": "186", "digital": false, "rarity": "rare", "flavor_text": "\"Fear not the behemoth heard from miles away. Fear the stalking felidar, which reveals itself only for the kill.\"\n\u2014Rielle, the Everwise", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Steve Prescott", "artist_ids": ["a1139fb8-41f5-4a9e-9a74-f662e1a23b35"], "illustration_id": "5e18711f-04f0-4beb-9363-4c269efe9e9b", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 9779, "penny_rank": 13393, "preview": {"source": "Amy the Amazonian", "source_uri": "https://twitter.com/coL_Amazonian/status/1247195443219619842", "previewed_at": "2020-04-06"}, "prices": {"usd": "0.10", "usd_foil": "0.16", "usd_etched": null, "eur": "0.08", "eur_foil": "0.10", "tix": "0.01"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=479706", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Frondland+Felidar&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Frondland+Felidar&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Frondland+Felidar"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/212270?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Frondland+Felidar&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/80381?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "1b65f96b-019b-40a9-9b4d-acd4abf4a0f9", "oracle_id": "9991941e-436f-42d4-8b0c-1ee84234774b", "multiverse_ids": [26743], "mtgo_id": 16286, "mtgo_foil_id": 16287, "tcgplayer_id": 7955, "cardmarket_id": 3212, "name": "Fungal Shambler", "lang": "en", "released_at": "2001-06-04", "uri": "https://api.scryfall.com/cards/1b65f96b-019b-40a9-9b4d-acd4abf4a0f9", "scryfall_uri": "https://scryfall.com/card/apc/100/fungal-shambler?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/1/b/1b65f96b-019b-40a9-9b4d-acd4abf4a0f9.jpg?1562901457", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/b/1b65f96b-019b-40a9-9b4d-acd4abf4a0f9.jpg?1562901457", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/1/b/1b65f96b-019b-40a9-9b4d-acd4abf4a0f9.jpg?1562901457", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/1/b/1b65f96b-019b-40a9-9b4d-acd4abf4a0f9.png?1562901457", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/b/1b65f96b-019b-40a9-9b4d-acd4abf4a0f9.jpg?1562901457", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/1/b/1b65f96b-019b-40a9-9b4d-acd4abf4a0f9.jpg?1562901457"}, "mana_cost": "{4}{B}{G}{U}", "cmc": 7.0, "type_line": "Creature \u2014 Fungus Beast", "oracle_text": "Trample\nWhenever Fungal Shambler deals damage to an opponent, you draw a card and that opponent discards a card.", "power": "6", "toughness": "4", "colors": ["B", "G", "U"], "color_identity": ["B", "G", "U"], "keywords": ["Trample"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "e4e00913-d08d-4899-86ea-5cf631e09ce0", "set": "apc", "set_name": "Apocalypse", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/e4e00913-d08d-4899-86ea-5cf631e09ce0", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aapc&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/apc?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/1b65f96b-019b-40a9-9b4d-acd4abf4a0f9/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A9991941e-436f-42d4-8b0c-1ee84234774b&unique=prints", "collector_number": "100", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Jim Nelson", "artist_ids": ["aa9f64d1-29e1-4c82-877e-44c18183f40b"], "illustration_id": "913dfd73-c397-4ee0-906a-be386bf0069d", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 21397, "prices": {"usd": "0.24", "usd_foil": "1.26", "usd_etched": null, "eur": "0.10", "eur_foil": "12.99", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=26743", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Fungal+Shambler&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Fungal+Shambler&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Fungal+Shambler"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/7955?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Fungal+Shambler&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/16286?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "97538294-058c-47d4-b7a8-4db3753a6628", "oracle_id": "d0868a52-5b19-4429-acf1-399f3ae8308c", "multiverse_ids": [217979], "mtgo_id": 39762, "mtgo_foil_id": 39763, "tcgplayer_id": 39518, "cardmarket_id": 245911, "name": "Furnace Scamp", "lang": "en", "released_at": "2011-05-13", "uri": "https://api.scryfall.com/cards/97538294-058c-47d4-b7a8-4db3753a6628", "scryfall_uri": "https://scryfall.com/card/nph/84/furnace-scamp?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/9/7/97538294-058c-47d4-b7a8-4db3753a6628.jpg?1562879991", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/7/97538294-058c-47d4-b7a8-4db3753a6628.jpg?1562879991", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/9/7/97538294-058c-47d4-b7a8-4db3753a6628.jpg?1562879991", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/9/7/97538294-058c-47d4-b7a8-4db3753a6628.png?1562879991", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/7/97538294-058c-47d4-b7a8-4db3753a6628.jpg?1562879991", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/9/7/97538294-058c-47d4-b7a8-4db3753a6628.jpg?1562879991"}, "mana_cost": "{R}", "cmc": 1.0, "type_line": "Creature \u2014 Phyrexian Beast", "oracle_text": "Whenever Furnace Scamp deals combat damage to a player, you may sacrifice it. If you do, Furnace Scamp deals 3 damage to that player.", "power": "1", "toughness": "1", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "e8e356d8-6d01-4dab-aa07-d0999dc9359f", "set": "nph", "set_name": "New Phyrexia", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/e8e356d8-6d01-4dab-aa07-d0999dc9359f", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Anph&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/nph?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/97538294-058c-47d4-b7a8-4db3753a6628/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ad0868a52-5b19-4429-acf1-399f3ae8308c&unique=prints", "collector_number": "84", "digital": false, "rarity": "common", "watermark": "phyrexian", "flavor_text": "Born of the core, and dying to stoke it.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Karl Kopinski", "artist_ids": ["0fad2c48-a56e-4a0b-b512-224f6f238f20"], "illustration_id": "6df6c9a3-780b-4da4-9c09-07234756e346", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 19102, "penny_rank": 5925, "prices": {"usd": "0.06", "usd_foil": "0.17", "usd_etched": null, "eur": "0.05", "eur_foil": "0.20", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=217979", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Furnace+Scamp&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Furnace+Scamp&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Furnace+Scamp"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/39518?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Furnace+Scamp&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/39762?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "8dd4f686-79e3-4067-81f9-7fae0c25dc8f", "oracle_id": "c5829bff-9687-42b2-8bba-1f036e592cdd", "multiverse_ids": [4701], "mtgo_id": 10097, "mtgo_foil_id": 10098, "tcgplayer_id": 5567, "cardmarket_id": 8799, "name": "Fylamarid", "lang": "en", "released_at": "1997-10-14", "uri": "https://api.scryfall.com/cards/8dd4f686-79e3-4067-81f9-7fae0c25dc8f", "scryfall_uri": "https://scryfall.com/card/tmp/64/fylamarid?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/8/d/8dd4f686-79e3-4067-81f9-7fae0c25dc8f.jpg?1562055416", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/d/8dd4f686-79e3-4067-81f9-7fae0c25dc8f.jpg?1562055416", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/8/d/8dd4f686-79e3-4067-81f9-7fae0c25dc8f.jpg?1562055416", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/8/d/8dd4f686-79e3-4067-81f9-7fae0c25dc8f.png?1562055416", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/d/8dd4f686-79e3-4067-81f9-7fae0c25dc8f.jpg?1562055416", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/8/d/8dd4f686-79e3-4067-81f9-7fae0c25dc8f.jpg?1562055416"}, "mana_cost": "{1}{U}{U}", "cmc": 3.0, "type_line": "Creature \u2014 Squid Beast", "oracle_text": "Flying\nFylamarid can't be blocked by blue creatures.\n{U}: Target creature becomes blue until end of turn.", "power": "1", "toughness": "3", "colors": ["U"], "color_identity": ["U"], "keywords": ["Flying"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "restricted", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "10df3a67-178e-4363-8668-34f0e6edf2a7", "set": "tmp", "set_name": "Tempest", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/10df3a67-178e-4363-8668-34f0e6edf2a7", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Atmp&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/tmp?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/8dd4f686-79e3-4067-81f9-7fae0c25dc8f/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ac5829bff-9687-42b2-8bba-1f036e592cdd&unique=prints", "collector_number": "64", "digital": false, "rarity": "uncommon", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Una Fricker", "artist_ids": ["0471a371-1bf8-49f2-8e76-cbe3a0bfa7e8"], "illustration_id": "5f37f71c-9dc7-4104-a53f-8b98da347c94", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 18215, "penny_rank": 11731, "prices": {"usd": "0.13", "usd_foil": null, "usd_etched": null, "eur": "0.10", "eur_foil": null, "tix": "0.11"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=4701", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Fylamarid&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Fylamarid&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Fylamarid"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/5567?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Fylamarid&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/10097?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "fc1a696b-642a-419f-bd43-09af39a9401b", "oracle_id": "0b4fa1ba-9597-4db1-a77c-975ed839f57f", "multiverse_ids": [214053], "mtgo_id": 39521, "mtgo_foil_id": 39522, "tcgplayer_id": 39172, "cardmarket_id": 245417, "name": "Galvanoth", "lang": "en", "released_at": "2011-02-04", "uri": "https://api.scryfall.com/cards/fc1a696b-642a-419f-bd43-09af39a9401b", "scryfall_uri": "https://scryfall.com/card/mbs/62/galvanoth?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/f/c/fc1a696b-642a-419f-bd43-09af39a9401b.jpg?1562616123", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/c/fc1a696b-642a-419f-bd43-09af39a9401b.jpg?1562616123", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/f/c/fc1a696b-642a-419f-bd43-09af39a9401b.jpg?1562616123", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/f/c/fc1a696b-642a-419f-bd43-09af39a9401b.png?1562616123", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/c/fc1a696b-642a-419f-bd43-09af39a9401b.jpg?1562616123", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/f/c/fc1a696b-642a-419f-bd43-09af39a9401b.jpg?1562616123"}, "mana_cost": "{3}{R}{R}", "cmc": 5.0, "type_line": "Creature \u2014 Beast", "oracle_text": "At the beginning of your upkeep, you may look at the top card of your library. You may cast it without paying its mana cost if it's an instant or sorcery spell.", "power": "3", "toughness": "3", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "f46c57e3-9301-4006-a6ca-06f3f65961fb", "set": "mbs", "set_name": "Mirrodin Besieged", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/f46c57e3-9301-4006-a6ca-06f3f65961fb", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ambs&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/mbs?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/fc1a696b-642a-419f-bd43-09af39a9401b/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A0b4fa1ba-9597-4db1-a77c-975ed839f57f&unique=prints", "collector_number": "62", "digital": false, "rarity": "rare", "watermark": "mirran", "flavor_text": "It chews open Mirrodin's husk and feeds on the outpouring of energy.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Kev Walker", "artist_ids": ["f366a0ee-a0cd-466d-ba6a-90058c7a31a6"], "illustration_id": "2431be07-0442-4209-9a35-1f5f3f075eee", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 7895, "penny_rank": 8926, "prices": {"usd": "0.21", "usd_foil": "0.43", "usd_etched": null, "eur": "0.10", "eur_foil": "0.20", "tix": "0.01"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=214053", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Galvanoth&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Galvanoth&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Galvanoth"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/39172?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Galvanoth&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/39521?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "cd0a61c9-8b14-4255-8453-4b74d90fe0a3", "oracle_id": "b99d6d51-3ead-4b81-8e0c-f458619ebb24", "multiverse_ids": [25668], "mtgo_id": 15544, "mtgo_foil_id": 15545, "tcgplayer_id": 2915, "cardmarket_id": 3009, "name": "Gang of Elk", "lang": "en", "released_at": "2001-04-11", "uri": "https://api.scryfall.com/cards/cd0a61c9-8b14-4255-8453-4b74d90fe0a3", "scryfall_uri": "https://scryfall.com/card/7ed/247/gang-of-elk?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/c/d/cd0a61c9-8b14-4255-8453-4b74d90fe0a3.jpg?1562248146", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/d/cd0a61c9-8b14-4255-8453-4b74d90fe0a3.jpg?1562248146", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/c/d/cd0a61c9-8b14-4255-8453-4b74d90fe0a3.jpg?1562248146", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/c/d/cd0a61c9-8b14-4255-8453-4b74d90fe0a3.png?1562248146", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/d/cd0a61c9-8b14-4255-8453-4b74d90fe0a3.jpg?1562248146", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/c/d/cd0a61c9-8b14-4255-8453-4b74d90fe0a3.jpg?1562248146"}, "mana_cost": "{5}{G}", "cmc": 6.0, "type_line": "Creature \u2014 Elk Beast", "oracle_text": "Whenever Gang of Elk becomes blocked, it gets +2/+2 until end of turn for each creature blocking it.", "power": "5", "toughness": "4", "colors": ["G"], "color_identity": ["G"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "restricted", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "230f38aa-9511-4db8-a3aa-aeddbc3f7bb9", "set": "7ed", "set_name": "Seventh Edition", "set_type": "core", "set_uri": "https://api.scryfall.com/sets/230f38aa-9511-4db8-a3aa-aeddbc3f7bb9", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3A7ed&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/7ed?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/cd0a61c9-8b14-4255-8453-4b74d90fe0a3/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ab99d6d51-3ead-4b81-8e0c-f458619ebb24&unique=prints", "collector_number": "247", "digital": false, "rarity": "uncommon", "flavor_text": "\"I felt the ground shake, so I hid in my tent until the earthquake passed. It passed all right, and it left hoofprints.\"\n\u2014Femeref explorer", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Thomas Gianni", "artist_ids": ["d7f03c52-e573-4082-9937-6c039b11ca70"], "illustration_id": "94b0b794-e373-4331-b3bf-f7f438aed56a", "border_color": "white", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 18734, "prices": {"usd": "0.16", "usd_foil": null, "usd_etched": null, "eur": "0.02", "eur_foil": "9.90", "tix": "0.09"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=25668", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Gang+of+Elk&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Gang+of+Elk&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Gang+of+Elk"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/2915?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Gang+of+Elk&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/15544?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "5a84177f-43a3-4d14-9a4c-2ca931cfe092", "oracle_id": "b99d6d51-3ead-4b81-8e0c-f458619ebb24", "multiverse_ids": [12950], "mtgo_id": 12573, "mtgo_foil_id": 12574, "tcgplayer_id": 6314, "cardmarket_id": 10659, "name": "Gang of Elk", "lang": "en", "released_at": "1999-02-15", "uri": "https://api.scryfall.com/cards/5a84177f-43a3-4d14-9a4c-2ca931cfe092", "scryfall_uri": "https://scryfall.com/card/ulg/102/gang-of-elk?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/5/a/5a84177f-43a3-4d14-9a4c-2ca931cfe092.jpg?1562863261", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/a/5a84177f-43a3-4d14-9a4c-2ca931cfe092.jpg?1562863261", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/5/a/5a84177f-43a3-4d14-9a4c-2ca931cfe092.jpg?1562863261", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/5/a/5a84177f-43a3-4d14-9a4c-2ca931cfe092.png?1562863261", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/a/5a84177f-43a3-4d14-9a4c-2ca931cfe092.jpg?1562863261", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/5/a/5a84177f-43a3-4d14-9a4c-2ca931cfe092.jpg?1562863261"}, "mana_cost": "{5}{G}", "cmc": 6.0, "type_line": "Creature \u2014 Elk Beast", "oracle_text": "Whenever Gang of Elk becomes blocked, it gets +2/+2 until end of turn for each creature blocking it.", "power": "5", "toughness": "4", "colors": ["G"], "color_identity": ["G"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "restricted", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "78ced61b-4b8a-4b33-b6b2-f5bd66f1a75a", "set": "ulg", "set_name": "Urza's Legacy", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/78ced61b-4b8a-4b33-b6b2-f5bd66f1a75a", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aulg&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ulg?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/5a84177f-43a3-4d14-9a4c-2ca931cfe092/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ab99d6d51-3ead-4b81-8e0c-f458619ebb24&unique=prints", "collector_number": "102", "digital": false, "rarity": "uncommon", "flavor_text": "The elk is Gaea's favorite, who wears the forest on its brow.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Una Fricker", "artist_ids": ["0471a371-1bf8-49f2-8e76-cbe3a0bfa7e8"], "illustration_id": "714e84eb-3b75-47a0-828d-d89d3759d9a3", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 18734, "prices": {"usd": "0.13", "usd_foil": "4.49", "usd_etched": null, "eur": "0.10", "eur_foil": "0.10", "tix": "0.11"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=12950", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Gang+of+Elk&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Gang+of+Elk&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Gang+of+Elk"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/6314?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Gang+of+Elk&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/12573?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "4b672c59-7376-455d-961e-ce94d47a5ca4", "oracle_id": "73f808f0-3d56-46c9-967b-d452bb3611af", "multiverse_ids": [522204], "mtgo_id": 90633, "tcgplayer_id": 240387, "cardmarket_id": 566907, "name": "Gargadon", "lang": "en", "released_at": "2021-06-18", "uri": "https://api.scryfall.com/cards/4b672c59-7376-455d-961e-ce94d47a5ca4", "scryfall_uri": "https://scryfall.com/card/mh2/128/gargadon?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/4/b/4b672c59-7376-455d-961e-ce94d47a5ca4.jpg?1626096673", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/b/4b672c59-7376-455d-961e-ce94d47a5ca4.jpg?1626096673", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/4/b/4b672c59-7376-455d-961e-ce94d47a5ca4.jpg?1626096673", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/4/b/4b672c59-7376-455d-961e-ce94d47a5ca4.png?1626096673", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/b/4b672c59-7376-455d-961e-ce94d47a5ca4.jpg?1626096673", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/4/b/4b672c59-7376-455d-961e-ce94d47a5ca4.jpg?1626096673"}, "mana_cost": "{5}{R}{R}", "cmc": 7.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Trample\nSuspend 4\u2014{1}{R} (Rather than cast this card from your hand, you may pay {1}{R} and exile it with four time counters on it. At the beginning of your upkeep, remove a time counter. When the last is removed, cast it without paying its mana cost. It has haste.)", "power": "7", "toughness": "5", "colors": ["R"], "color_identity": ["R"], "keywords": ["Suspend", "Trample"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "c1c7eb8c-f205-40ab-a609-767cb296544e", "set": "mh2", "set_name": "Modern Horizons 2", "set_type": "draft_innovation", "set_uri": "https://api.scryfall.com/sets/c1c7eb8c-f205-40ab-a609-767cb296544e", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Amh2&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/mh2?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/4b672c59-7376-455d-961e-ce94d47a5ca4/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A73f808f0-3d56-46c9-967b-d452bb3611af&unique=prints", "collector_number": "128", "digital": false, "rarity": "common", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Chris Seaman", "artist_ids": ["b9c49463-6f55-4039-9d32-c02a658af100"], "illustration_id": "4a229aaa-c72c-4d97-b3d7-21675f61d787", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 14531, "penny_rank": 11187, "preview": {"source": "Wizards of the Coast", "source_uri": "https://www.facebook.com/MagicTheGathering.jp/photos/pcb.5848150331869254/5848150201869267", "previewed_at": "2021-06-01"}, "prices": {"usd": "0.01", "usd_foil": "0.03", "usd_etched": null, "eur": "0.02", "eur_foil": "0.02", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=522204", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Gargadon&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Gargadon&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Gargadon"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/240387?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Gargadon&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/90633?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "88167b74-c25f-4a9b-a4f5-33a51e01d498", "oracle_id": "73f808f0-3d56-46c9-967b-d452bb3611af", "multiverse_ids": [526719], "tcgplayer_id": 240438, "cardmarket_id": 566939, "name": "Gargadon", "lang": "en", "released_at": "2021-06-18", "uri": "https://api.scryfall.com/cards/88167b74-c25f-4a9b-a4f5-33a51e01d498", "scryfall_uri": "https://scryfall.com/card/mh2/351/gargadon?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/8/8/88167b74-c25f-4a9b-a4f5-33a51e01d498.jpg?1626101678", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/8/88167b74-c25f-4a9b-a4f5-33a51e01d498.jpg?1626101678", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/8/8/88167b74-c25f-4a9b-a4f5-33a51e01d498.jpg?1626101678", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/8/8/88167b74-c25f-4a9b-a4f5-33a51e01d498.png?1626101678", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/8/88167b74-c25f-4a9b-a4f5-33a51e01d498.jpg?1626101678", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/8/8/88167b74-c25f-4a9b-a4f5-33a51e01d498.jpg?1626101678"}, "mana_cost": "{5}{R}{R}", "cmc": 7.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Trample\nSuspend 4\u2014{1}{R} (Rather than cast this card from your hand, you may pay {1}{R} and exile it with four time counters on it. At the beginning of your upkeep, remove a time counter. When the last is removed, cast it without paying its mana cost. It has haste.)", "power": "7", "toughness": "5", "colors": ["R"], "color_identity": ["R"], "keywords": ["Suspend", "Trample"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "c1c7eb8c-f205-40ab-a609-767cb296544e", "set": "mh2", "set_name": "Modern Horizons 2", "set_type": "draft_innovation", "set_uri": "https://api.scryfall.com/sets/c1c7eb8c-f205-40ab-a609-767cb296544e", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Amh2&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/mh2?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/88167b74-c25f-4a9b-a4f5-33a51e01d498/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A73f808f0-3d56-46c9-967b-d452bb3611af&unique=prints", "collector_number": "351", "digital": false, "rarity": "common", "flavor_text": "Intent: Magic has made a Grater Gargadon and a Lesser Gargadon (see ref). We want you to design the \"average\" Gargadon.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Chris Seaman", "artist_ids": ["b9c49463-6f55-4039-9d32-c02a658af100"], "illustration_id": "9042b2c8-0393-4920-8b72-c99253f42661", "border_color": "black", "frame": "2015", "frame_effects": ["showcase"], "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "promo_types": ["boosterfun"], "edhrec_rank": 14531, "penny_rank": 11187, "preview": {"source": "Wizards of the Coast", "source_uri": "https://www.facebook.com/MagicTheGathering.jp/photos/pcb.5848150331869254/5848150201869267", "previewed_at": "2021-06-01"}, "prices": {"usd": "0.01", "usd_foil": "0.03", "usd_etched": null, "eur": "0.02", "eur_foil": "0.16", "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=526719", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Gargadon&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Gargadon&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Gargadon"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/240438?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Gargadon&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Gargadon&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "863c9a10-d83f-415b-adf2-2d0f870410b2", "oracle_id": "32fc8fa7-7e0a-4d4e-85cf-2f98b3fc6ecf", "multiverse_ids": [205025], "mtgo_id": 37396, "mtgo_foil_id": 37397, "tcgplayer_id": 35546, "cardmarket_id": 241875, "name": "Garruk's Companion", "lang": "en", "released_at": "2010-07-16", "uri": "https://api.scryfall.com/cards/863c9a10-d83f-415b-adf2-2d0f870410b2", "scryfall_uri": "https://scryfall.com/card/m11/176/garruks-companion?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/8/6/863c9a10-d83f-415b-adf2-2d0f870410b2.jpg?1562466784", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/6/863c9a10-d83f-415b-adf2-2d0f870410b2.jpg?1562466784", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/8/6/863c9a10-d83f-415b-adf2-2d0f870410b2.jpg?1562466784", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/8/6/863c9a10-d83f-415b-adf2-2d0f870410b2.png?1562466784", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/6/863c9a10-d83f-415b-adf2-2d0f870410b2.jpg?1562466784", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/8/6/863c9a10-d83f-415b-adf2-2d0f870410b2.jpg?1562466784"}, "mana_cost": "{G}{G}", "cmc": 2.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Trample (This creature can deal excess combat damage to the player or planeswalker it's attacking.)", "power": "3", "toughness": "2", "colors": ["G"], "color_identity": ["G"], "keywords": ["Trample"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "485d2468-18c8-42a4-9482-ca1c51e0470e", "set": "m11", "set_name": "Magic 2011", "set_type": "core", "set_uri": "https://api.scryfall.com/sets/485d2468-18c8-42a4-9482-ca1c51e0470e", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Am11&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/m11?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/863c9a10-d83f-415b-adf2-2d0f870410b2/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A32fc8fa7-7e0a-4d4e-85cf-2f98b3fc6ecf&unique=prints", "collector_number": "176", "digital": false, "rarity": "common", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Efrem Palacios", "artist_ids": ["6cec4bf2-712b-4349-ad29-029b63f71639"], "illustration_id": "d9dfdf76-e2a7-4aa5-846c-ea717fbdd793", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 15245, "penny_rank": 2786, "prices": {"usd": "0.09", "usd_foil": "0.57", "usd_etched": null, "eur": "0.02", "eur_foil": "0.75", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=205025", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Garruk%27s+Companion&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Garruk%27s+Companion&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Garruk%27s+Companion"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/35546?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Garruk%27s+Companion&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/37396?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "3928bbce-87b7-4b28-9af4-20362935c909", "oracle_id": "c8384392-1914-4423-9f49-92f5643d15dc", "multiverse_ids": [485507], "mtgo_id": 81595, "arena_id": 71966, "tcgplayer_id": 215615, "cardmarket_id": 470229, "name": "Garruk's Gorehorn", "lang": "en", "released_at": "2020-07-03", "uri": "https://api.scryfall.com/cards/3928bbce-87b7-4b28-9af4-20362935c909", "scryfall_uri": "https://scryfall.com/card/m21/184/garruks-gorehorn?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/3/9/3928bbce-87b7-4b28-9af4-20362935c909.jpg?1594736993", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/9/3928bbce-87b7-4b28-9af4-20362935c909.jpg?1594736993", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/3/9/3928bbce-87b7-4b28-9af4-20362935c909.jpg?1594736993", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/3/9/3928bbce-87b7-4b28-9af4-20362935c909.png?1594736993", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/9/3928bbce-87b7-4b28-9af4-20362935c909.jpg?1594736993", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/3/9/3928bbce-87b7-4b28-9af4-20362935c909.jpg?1594736993"}, "mana_cost": "{4}{G}", "cmc": 5.0, "type_line": "Creature \u2014 Beast", "oracle_text": "", "power": "7", "toughness": "3", "colors": ["G"], "color_identity": ["G"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "bc94aba1-7376-4e02-a12d-3a2efb66ab0f", "set": "m21", "set_name": "Core Set 2021", "set_type": "core", "set_uri": "https://api.scryfall.com/sets/bc94aba1-7376-4e02-a12d-3a2efb66ab0f", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Am21&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/m21?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/3928bbce-87b7-4b28-9af4-20362935c909/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ac8384392-1914-4423-9f49-92f5643d15dc&unique=prints", "collector_number": "184", "digital": false, "rarity": "common", "flavor_text": "\"It certainly takes after its master: big and brutish, and you can smell it from a mile away.\"\n\u2014Liliana Vess", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Svetlin Velinov", "artist_ids": ["ffd063ae-c097-4f26-b2e6-b1e2137708bc"], "illustration_id": "fc608aea-1c19-409d-b67d-ae3a16df40c5", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 9795, "penny_rank": 13530, "preview": {"source": "Impetus Gaming", "source_uri": "https://twitter.com/IgImpetus/status/1270719851355533315", "previewed_at": "2020-06-10"}, "prices": {"usd": "0.02", "usd_foil": "0.04", "usd_etched": null, "eur": "0.12", "eur_foil": "0.02", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=485507", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Garruk%27s+Gorehorn&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Garruk%27s+Gorehorn&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Garruk%27s+Gorehorn"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/215615?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Garruk%27s+Gorehorn&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/81595?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "9e0fa0b6-5f3f-4669-84e8-2c38c9593d88", "oracle_id": "2dbe384b-71c4-43f9-be35-ba2894021b85", "multiverse_ids": [485508], "mtgo_id": 81597, "arena_id": 71967, "tcgplayer_id": 215616, "cardmarket_id": 470224, "name": "Garruk's Harbinger", "lang": "en", "released_at": "2020-07-03", "uri": "https://api.scryfall.com/cards/9e0fa0b6-5f3f-4669-84e8-2c38c9593d88", "scryfall_uri": "https://scryfall.com/card/m21/185/garruks-harbinger?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/9/e/9e0fa0b6-5f3f-4669-84e8-2c38c9593d88.jpg?1595022082", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/e/9e0fa0b6-5f3f-4669-84e8-2c38c9593d88.jpg?1595022082", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/9/e/9e0fa0b6-5f3f-4669-84e8-2c38c9593d88.jpg?1595022082", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/9/e/9e0fa0b6-5f3f-4669-84e8-2c38c9593d88.png?1595022082", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/e/9e0fa0b6-5f3f-4669-84e8-2c38c9593d88.jpg?1595022082", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/9/e/9e0fa0b6-5f3f-4669-84e8-2c38c9593d88.jpg?1595022082"}, "mana_cost": "{1}{G}{G}", "cmc": 3.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Hexproof from black\nWhenever Garruk's Harbinger deals combat damage to a player or planeswalker, look at that many cards from the top of your library. You may reveal a creature card or Garruk planeswalker card from among them and put it into your hand. Put the rest on the bottom of your library in a random order.", "power": "4", "toughness": "3", "colors": ["G"], "color_identity": ["G"], "keywords": ["Hexproof from", "Hexproof"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "bc94aba1-7376-4e02-a12d-3a2efb66ab0f", "set": "m21", "set_name": "Core Set 2021", "set_type": "core", "set_uri": "https://api.scryfall.com/sets/bc94aba1-7376-4e02-a12d-3a2efb66ab0f", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Am21&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/m21?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/9e0fa0b6-5f3f-4669-84e8-2c38c9593d88/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A2dbe384b-71c4-43f9-be35-ba2894021b85&unique=prints", "collector_number": "185", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Lie Setiawan", "artist_ids": ["6f771d3f-310e-4aa4-841f-5ba4ba9f025a"], "illustration_id": "f4af8700-848e-48de-b9db-e54d14d80e0e", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 7005, "penny_rank": 1556, "prices": {"usd": "0.17", "usd_foil": "0.25", "usd_etched": null, "eur": "0.49", "eur_foil": "0.35", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=485508", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Garruk%27s+Harbinger&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Garruk%27s+Harbinger&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Garruk%27s+Harbinger"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/215616?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Garruk%27s+Harbinger&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/81597?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "563c6959-9131-40a6-97ec-12baf6fb7ca0", "oracle_id": "b9da511e-a57f-43c2-aa97-902f3b4c55fb", "multiverse_ids": [220077], "mtgo_id": 41527, "mtgo_foil_id": 41528, "tcgplayer_id": 47258, "cardmarket_id": 247929, "name": "Garruk's Horde", "lang": "en", "released_at": "2011-07-15", "uri": "https://api.scryfall.com/cards/563c6959-9131-40a6-97ec-12baf6fb7ca0", "scryfall_uri": "https://scryfall.com/card/m12/176/garruks-horde?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/5/6/563c6959-9131-40a6-97ec-12baf6fb7ca0.jpg?1562643185", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/6/563c6959-9131-40a6-97ec-12baf6fb7ca0.jpg?1562643185", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/5/6/563c6959-9131-40a6-97ec-12baf6fb7ca0.jpg?1562643185", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/5/6/563c6959-9131-40a6-97ec-12baf6fb7ca0.png?1562643185", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/6/563c6959-9131-40a6-97ec-12baf6fb7ca0.jpg?1562643185", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/5/6/563c6959-9131-40a6-97ec-12baf6fb7ca0.jpg?1562643185"}, "mana_cost": "{5}{G}{G}", "cmc": 7.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Trample\nPlay with the top card of your library revealed.\nYou may cast creature spells from the top of your library. (Do this only any time you could cast that creature spell. You still pay the spell's costs.)", "power": "7", "toughness": "7", "colors": ["G"], "color_identity": ["G"], "keywords": ["Trample"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "5cdd2643-229c-4441-a62a-c34e4b531e1c", "set": "m12", "set_name": "Magic 2012", "set_type": "core", "set_uri": "https://api.scryfall.com/sets/5cdd2643-229c-4441-a62a-c34e4b531e1c", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Am12&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/m12?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/563c6959-9131-40a6-97ec-12baf6fb7ca0/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ab9da511e-a57f-43c2-aa97-902f3b4c55fb&unique=prints", "collector_number": "176", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Steve Prescott", "artist_ids": ["a1139fb8-41f5-4a9e-9a74-f662e1a23b35"], "illustration_id": "6886d6a5-74bc-464b-b8fe-58b543f2c117", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 4702, "penny_rank": 8165, "prices": {"usd": "0.23", "usd_foil": "0.71", "usd_etched": null, "eur": "0.20", "eur_foil": "0.45", "tix": "0.01"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=220077", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Garruk%27s+Horde&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Garruk%27s+Horde&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Garruk%27s+Horde"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/47258?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Garruk%27s+Horde&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/41527?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "3313f4ea-1275-4835-b4ff-73d3601c04e1", "oracle_id": "b9da511e-a57f-43c2-aa97-902f3b4c55fb", "multiverse_ids": [], "tcgplayer_id": 48137, "cardmarket_id": 248100, "name": "Garruk's Horde", "lang": "en", "released_at": "2011-07-14", "uri": "https://api.scryfall.com/cards/3313f4ea-1275-4835-b4ff-73d3601c04e1", "scryfall_uri": "https://scryfall.com/card/pm12/176%E2%98%85/garruks-horde?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/3/3/3313f4ea-1275-4835-b4ff-73d3601c04e1.jpg?1605361688", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/3/3313f4ea-1275-4835-b4ff-73d3601c04e1.jpg?1605361688", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/3/3/3313f4ea-1275-4835-b4ff-73d3601c04e1.jpg?1605361688", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/3/3/3313f4ea-1275-4835-b4ff-73d3601c04e1.png?1605361688", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/3/3313f4ea-1275-4835-b4ff-73d3601c04e1.jpg?1605361688", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/3/3/3313f4ea-1275-4835-b4ff-73d3601c04e1.jpg?1605361688"}, "mana_cost": "{5}{G}{G}", "cmc": 7.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Trample\nPlay with the top card of your library revealed.\nYou may cast creature spells from the top of your library. (Do this only any time you could cast that creature spell. You still pay the spell's costs.)", "power": "7", "toughness": "7", "colors": ["G"], "color_identity": ["G"], "keywords": ["Trample"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": true, "nonfoil": false, "finishes": ["foil"], "oversized": false, "promo": true, "reprint": true, "variation": false, "set_id": "488be4f7-19cb-42d5-bba3-189c221e535d", "set": "pm12", "set_name": "Magic 2012 Promos", "set_type": "promo", "set_uri": "https://api.scryfall.com/sets/488be4f7-19cb-42d5-bba3-189c221e535d", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Apm12&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/pm12?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/3313f4ea-1275-4835-b4ff-73d3601c04e1/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ab9da511e-a57f-43c2-aa97-902f3b4c55fb&unique=prints", "collector_number": "176\u2605", "digital": false, "rarity": "rare", "watermark": "set", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Kev Walker", "artist_ids": ["f366a0ee-a0cd-466d-ba6a-90058c7a31a6"], "illustration_id": "a631729f-85f9-417f-bfef-7525160f46e9", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "promo_types": ["setpromo", "release"], "edhrec_rank": 4702, "penny_rank": 8165, "prices": {"usd": null, "usd_foil": "0.37", "usd_etched": null, "eur": null, "eur_foil": "0.20", "tix": null}, "related_uris": {"tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Garruk%27s+Horde&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Garruk%27s+Horde&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Garruk%27s+Horde"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/48137?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Garruk%27s+Horde&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Garruk%27s+Horde&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "dfaef299-7879-4f52-8ee4-701ed150b930", "oracle_id": "13279222-422d-4447-9451-2463b0c714c6", "multiverse_ids": [205060], "mtgo_id": 37458, "mtgo_foil_id": 37459, "tcgplayer_id": 35547, "cardmarket_id": 241876, "name": "Garruk's Packleader", "lang": "en", "released_at": "2010-07-16", "uri": "https://api.scryfall.com/cards/dfaef299-7879-4f52-8ee4-701ed150b930", "scryfall_uri": "https://scryfall.com/card/m11/177/garruks-packleader?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/d/f/dfaef299-7879-4f52-8ee4-701ed150b930.jpg?1562478545", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/f/dfaef299-7879-4f52-8ee4-701ed150b930.jpg?1562478545", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/d/f/dfaef299-7879-4f52-8ee4-701ed150b930.jpg?1562478545", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/d/f/dfaef299-7879-4f52-8ee4-701ed150b930.png?1562478545", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/f/dfaef299-7879-4f52-8ee4-701ed150b930.jpg?1562478545", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/d/f/dfaef299-7879-4f52-8ee4-701ed150b930.jpg?1562478545"}, "mana_cost": "{4}{G}", "cmc": 5.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Whenever another creature with power 3 or greater enters the battlefield under your control, you may draw a card.", "power": "4", "toughness": "4", "colors": ["G"], "color_identity": ["G"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "restricted", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "485d2468-18c8-42a4-9482-ca1c51e0470e", "set": "m11", "set_name": "Magic 2011", "set_type": "core", "set_uri": "https://api.scryfall.com/sets/485d2468-18c8-42a4-9482-ca1c51e0470e", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Am11&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/m11?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/dfaef299-7879-4f52-8ee4-701ed150b930/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A13279222-422d-4447-9451-2463b0c714c6&unique=prints", "collector_number": "177", "digital": false, "rarity": "uncommon", "flavor_text": "\"He has learned much in his long years. And unlike selfish humans, he's willing to share.\"\n\u2014Garruk Wildspeaker", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Nils Hamm", "artist_ids": ["c540d1fc-1500-457f-93cf-d6069ee66546"], "illustration_id": "f5128698-bbe0-4c23-bfda-60280d5245e3", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 1729, "penny_rank": 4094, "prices": {"usd": "0.23", "usd_foil": "3.83", "usd_etched": null, "eur": "0.07", "eur_foil": "0.48", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=205060", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Garruk%27s+Packleader&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Garruk%27s+Packleader&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Garruk%27s+Packleader"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/35547?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Garruk%27s+Packleader&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/37458?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "0095245c-a30e-4e2a-88c9-632c678e9f03", "oracle_id": "3dfb0c0a-b68f-43b9-8475-28d0192fc4ed", "multiverse_ids": [479675], "mtgo_id": 80319, "arena_id": 71222, "tcgplayer_id": 212071, "cardmarket_id": 451808, "name": "Gemrazer", "lang": "en", "released_at": "2020-04-24", "uri": "https://api.scryfall.com/cards/0095245c-a30e-4e2a-88c9-632c678e9f03", "scryfall_uri": "https://scryfall.com/card/iko/155/gemrazer?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/0/0/0095245c-a30e-4e2a-88c9-632c678e9f03.jpg?1591227650", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/0/0095245c-a30e-4e2a-88c9-632c678e9f03.jpg?1591227650", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/0/0/0095245c-a30e-4e2a-88c9-632c678e9f03.jpg?1591227650", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/0/0/0095245c-a30e-4e2a-88c9-632c678e9f03.png?1591227650", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/0/0095245c-a30e-4e2a-88c9-632c678e9f03.jpg?1591227650", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/0/0/0095245c-a30e-4e2a-88c9-632c678e9f03.jpg?1591227650"}, "mana_cost": "{3}{G}", "cmc": 4.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Mutate {1}{G}{G} (If you cast this spell for its mutate cost, put it over or under target non-Human creature you own. They mutate into the creature on top plus all abilities from under it.)\nReach, trample\nWhenever this creature mutates, destroy target artifact or enchantment an opponent controls.", "power": "4", "toughness": "4", "colors": ["G"], "color_identity": ["G"], "keywords": ["Reach", "Mutate", "Trample"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "19feda43-15ab-427e-a0e4-148a4bf2b03a", "set": "iko", "set_name": "Ikoria: Lair of Behemoths", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/19feda43-15ab-427e-a0e4-148a4bf2b03a", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aiko&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/iko?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/0095245c-a30e-4e2a-88c9-632c678e9f03/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A3dfb0c0a-b68f-43b9-8475-28d0192fc4ed&unique=prints", "collector_number": "155", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Svetlin Velinov", "artist_ids": ["ffd063ae-c097-4f26-b2e6-b1e2137708bc"], "illustration_id": "85193f7d-c7eb-4dd7-8944-26b201b0d08d", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 1869, "penny_rank": 11256, "preview": {"source": "Wizards of the Coast", "source_uri": "https://www.youtube.com/watch?v=1_xqwsZkH4w", "previewed_at": "2020-04-03"}, "prices": {"usd": "0.22", "usd_foil": "0.49", "usd_etched": null, "eur": "0.81", "eur_foil": "1.40", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=479675", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Gemrazer&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Gemrazer&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Gemrazer"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/212071?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Gemrazer&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/80319?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}]} \ No newline at end of file +{"has_more": true, "data": [{"name": "Adaptive Snapjaw", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/d/0d3c0c43-2d6d-49b8-a112-07611a23ae69.jpg?1561815740", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/d/0d3c0c43-2d6d-49b8-a112-07611a23ae69.jpg?1561815740"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Aeromoeba", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/a/2a304f7e-0b9e-4ef6-9ad8-34350839f7d9.jpg?1626094228", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/a/2a304f7e-0b9e-4ef6-9ad8-34350839f7d9.jpg?1626094228"}, "reprint": false, "digital": false, "set_type": "draft_innovation"}, {"name": "Affectionate Indrik", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/4/b4c8ddc1-d95c-499f-b1d1-f608f8f07b02.jpg?1572893293", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/4/b4c8ddc1-d95c-499f-b1d1-f608f8f07b02.jpg?1572893293"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Alms Beast", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/e/ce441759-cd4c-4bcc-925e-08e8b60853c0.jpg?1561846666", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/e/ce441759-cd4c-4bcc-925e-08e8b60853c0.jpg?1561846666"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Alpha Tyrranax", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/a/4a2e5279-f28c-4a78-9f8a-16c9f72f8d38.jpg?1562817224", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/a/4a2e5279-f28c-4a78-9f8a-16c9f72f8d38.jpg?1562817224"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Anurid Barkripper", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/3/33255dfd-f8a9-4a15-aac5-c53dc0257859.jpg?1562629272", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/3/33255dfd-f8a9-4a15-aac5-c53dc0257859.jpg?1562629272"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Anurid Brushhopper", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/0/b09204c7-3e3d-484a-a4f7-da1b818e3884.jpg?1562631503", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/0/b09204c7-3e3d-484a-a4f7-da1b818e3884.jpg?1562631503"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Anurid Murkdiver", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/e/9e43d62c-488a-4c8d-b193-bacbf8037761.jpg?1562932427", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/e/9e43d62c-488a-4c8d-b193-bacbf8037761.jpg?1562932427"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Anurid Scavenger", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/1/21a21190-3c05-40fe-9310-493ed0f9e42e.jpg?1562628898", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/1/21a21190-3c05-40fe-9310-493ed0f9e42e.jpg?1562628898"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Anurid Swarmsnapper", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/6/3636a9f8-d1d7-4452-8a53-788b514fdb97.jpg?1562629337", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/6/3636a9f8-d1d7-4452-8a53-788b514fdb97.jpg?1562629337"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Aquamoeba", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/2/1243552a-ca57-42ce-817e-d6268fc673e0.jpg?1562628647", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/2/1243552a-ca57-42ce-817e-d6268fc673e0.jpg?1562628647"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Aquus Steed", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/f/af643949-7a9b-4195-8ab8-d43b1928b85a.jpg?1562791584", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/f/af643949-7a9b-4195-8ab8-d43b1928b85a.jpg?1562791584"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Arashin War Beast", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/6/66aed11a-0831-4619-931f-7dfded999c66.jpg?1562826029", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/6/66aed11a-0831-4619-931f-7dfded999c66.jpg?1562826029"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Arashin War Beast", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/0/70fd6e2c-201d-436b-ad54-c9403295ec85.jpg?1562634168", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/0/70fd6e2c-201d-436b-ad54-c9403295ec85.jpg?1562634168"}, "reprint": true, "digital": false, "set_type": "promo"}, {"name": "Arborback Stomper", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/8/788b9d55-6679-4fcc-a3af-11d31e477421.jpg?1576382341", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/8/788b9d55-6679-4fcc-a3af-11d31e477421.jpg?1576382341"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Arboreal Grazer", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/4/c4a5f86f-44a8-4735-909a-770586d33a15.jpg?1586962989", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/4/c4a5f86f-44a8-4735-909a-770586d33a15.jpg?1586962989"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Arcbound Hybrid", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/2/a2f33f9d-dffd-4742-92c6-be7fe6463dca.jpg?1562638550", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/2/a2f33f9d-dffd-4742-92c6-be7fe6463dca.jpg?1562638550"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Arcbound Lancer", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/f/7ff3241b-49ba-4243-b8fc-fef600836c8c.jpg?1562637774", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/f/7ff3241b-49ba-4243-b8fc-fef600836c8c.jpg?1562637774"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Arcbound Ravager", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/0/c0c33a92-5621-40b4-a3a2-b67893edbc01.jpg?1561968545", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/0/c0c33a92-5621-40b4-a3a2-b67893edbc01.jpg?1561968545"}, "reprint": true, "digital": false, "set_type": "masters"}, {"name": "Arcbound Ravager", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/2/72c1a731-7854-42b1-8719-ac3c2a269c1f.jpg?1562637545", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/2/72c1a731-7854-42b1-8719-ac3c2a269c1f.jpg?1562637545"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Arcbound Ravager", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/a/6a898fbf-5c73-4a50-8bf5-126051747659.jpg?1599332547", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/a/6a898fbf-5c73-4a50-8bf5-126051747659.jpg?1599332547"}, "reprint": true, "digital": false, "set_type": "box"}, {"name": "Arcbound Ravager", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/1/211b1279-0f37-47a9-8eb5-db91159d0cf2.jpg?1562636700", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/1/211b1279-0f37-47a9-8eb5-db91159d0cf2.jpg?1562636700"}, "reprint": true, "digital": false, "set_type": "promo"}, {"name": "Arcbound Ravager", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/d/eda7bda4-51cf-4648-8489-352d28d591fb.jpg?1562945052", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/d/eda7bda4-51cf-4648-8489-352d28d591fb.jpg?1562945052"}, "reprint": true, "digital": false, "set_type": "masterpiece"}, {"name": "Arc-Slogger", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/3/d3dd67e0-72b4-4c55-b49b-c69950feccb1.jpg?1562158892", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/3/d3dd67e0-72b4-4c55-b49b-c69950feccb1.jpg?1562158892"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Armguard Familiar", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/4/7497f147-146d-4a76-b670-bd84e07352b3.jpg?1654566610", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/4/7497f147-146d-4a76-b670-bd84e07352b3.jpg?1654566610"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Ashen Firebeast", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/b/ebaef0bd-8288-49ba-a889-d897a4aae64c.jpg?1562939159", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/b/ebaef0bd-8288-49ba-a889-d897a4aae64c.jpg?1562939159"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Assault Zeppelid", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/2/12bf6443-c941-418a-a766-05bba088a117.jpg?1593273548", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/2/12bf6443-c941-418a-a766-05bba088a117.jpg?1593273548"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Aura Gnarlid", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/f/8f8dbb4f-4b01-4666-b62f-a2323dac7a19.jpg?1562706262", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/f/8f8dbb4f-4b01-4666-b62f-a2323dac7a19.jpg?1562706262"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Auspicious Starrix", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/3/a39ae1e4-d4dd-4691-af5a-5fa25ace4ebe.jpg?1591227516", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/3/a39ae1e4-d4dd-4691-af5a-5fa25ace4ebe.jpg?1591227516"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Auspicious Starrix", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/7/f7b41cfa-b22e-4d34-bfe9-68c9d8740704.jpg?1604781846", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/7/f7b41cfa-b22e-4d34-bfe9-68c9d8740704.jpg?1604781846"}, "reprint": false, "frame_effects": ["showcase"], "digital": false, "set_type": "expansion"}, {"name": "Avarax", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/e/ae76705f-ec95-48b0-9e26-84ce40c9514b.jpg?1562936224", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/e/ae76705f-ec95-48b0-9e26-84ce40c9514b.jpg?1562936224"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Axebane Beast", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/f/2f420b35-1f73-41c8-a15f-1aee4af0999c.jpg?1584831084", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/f/2f420b35-1f73-41c8-a15f-1aee4af0999c.jpg?1584831084"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Baloth Gorger", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/0/504090bb-d183-4833-aea5-d4193b5c57a1.jpg?1562735490", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/0/504090bb-d183-4833-aea5-d4193b5c57a1.jpg?1562735490"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Baloth Null", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/8/8811d210-23e2-4318-9730-7ee3b2021c68.jpg?1562922516", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/8/8811d210-23e2-4318-9730-7ee3b2021c68.jpg?1562922516"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Baloth Packhunter", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/1/61b22c5d-3b29-47c1-8a04-13586461a143.jpg?1597684060", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/1/61b22c5d-3b29-47c1-8a04-13586461a143.jpg?1597684060"}, "reprint": false, "digital": true, "set_type": "starter"}, {"name": "Baloth Pup", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/f/3f9c87f4-4fa5-4c97-9654-c4acd250f850.jpg?1562907761", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/f/3f9c87f4-4fa5-4c97-9654-c4acd250f850.jpg?1562907761"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Baloth Woodcrasher", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/2/8223dc6a-2bee-4be9-86d5-f0a17a24c33e.jpg?1562613874", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/2/8223dc6a-2bee-4be9-86d5-f0a17a24c33e.jpg?1562613874"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Bannerhide Krushok", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/2/1271251b-7d79-4cb4-80bb-98574aa63249.jpg?1626097186", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/2/1271251b-7d79-4cb4-80bb-98574aa63249.jpg?1626097186"}, "reprint": false, "digital": false, "set_type": "draft_innovation"}, {"name": "Barbarian Outcast", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/9/b9d67b5c-ab20-456e-8ff5-7521be8273b2.jpg?1562631722", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/9/b9d67b5c-ab20-456e-8ff5-7521be8273b2.jpg?1562631722"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Barkhide Mauler", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/9/b9196ce7-3ff4-4dda-a628-559ada11c9ba.jpg?1562938641", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/9/b9196ce7-3ff4-4dda-a628-559ada11c9ba.jpg?1562938641"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Batterhorn", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/7/a7b40f74-893f-4bfc-87b2-7f8df4c912d8.jpg?1562791147", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/7/a7b40f74-893f-4bfc-87b2-7f8df4c912d8.jpg?1562791147"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Battering Craghorn", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/e/9ef71f42-87e5-4b1d-aac1-3752b81cee7c.jpg?1562932547", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/e/9ef71f42-87e5-4b1d-aac1-3752b81cee7c.jpg?1562932547"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Battering Krasis", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/d/5d9aa740-9adf-412a-b6ec-0b9bb1b4618b.jpg?1587306439", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/d/5d9aa740-9adf-412a-b6ec-0b9bb1b4618b.jpg?1587306439"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Battlefront Krushok", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/3/e3b425cd-c5a5-48e9-b697-3860dfa6d5d3.jpg?1562830855", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/3/e3b425cd-c5a5-48e9-b697-3860dfa6d5d3.jpg?1562830855"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Bazaar Krovod", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/0/b07bb2fe-3a9b-47d0-864b-99a662d9544b.jpg?1562791650", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/0/b07bb2fe-3a9b-47d0-864b-99a662d9544b.jpg?1562791650"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Beacon Behemoth", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/c/0cc42e33-7489-4a32-bb30-adc80ec13521.jpg?1562799353", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/c/0cc42e33-7489-4a32-bb30-adc80ec13521.jpg?1562799353"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Beast in Show", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/5/35ed069c-410f-4b30-afd1-8d04742068e7.jpg?1562906387", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/5/35ed069c-410f-4b30-afd1-8d04742068e7.jpg?1562906387"}, "reprint": false, "digital": false, "set_type": "funny"}, {"name": "Beast in Show", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/6/7693877c-958f-4c67-93d5-7db8f2dd87e7.jpg?1562919934", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/6/7693877c-958f-4c67-93d5-7db8f2dd87e7.jpg?1562919934"}, "reprint": false, "digital": false, "set_type": "funny"}, {"name": "Beast in Show", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/9/c90b6269-7406-40c9-8d4c-3448698a1fdd.jpg?1562937465", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/9/c90b6269-7406-40c9-8d4c-3448698a1fdd.jpg?1562937465"}, "reprint": false, "digital": false, "set_type": "funny"}, {"name": "Beast in Show", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/f/9f7191d7-2c2c-470e-a2b6-eeb8f3031cc2.jpg?1562928685", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/f/9f7191d7-2c2c-470e-a2b6-eeb8f3031cc2.jpg?1562928685"}, "reprint": false, "digital": false, "set_type": "funny"}, {"name": "Beasts of Bogardan", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/8/f885d776-2953-4ed4-b63f-91dc2b42783b.jpg?1562861851", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/8/f885d776-2953-4ed4-b63f-91dc2b42783b.jpg?1562861851"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Beast Walkers", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/9/99b42f6c-5c7e-4ba8-b0fb-ac8564aaf825.jpg?1562587770", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/9/99b42f6c-5c7e-4ba8-b0fb-ac8564aaf825.jpg?1562587770"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Berserk Murlodont", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/9/499c4674-dd9f-4848-8447-721f842a0213.jpg?1562909903", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/9/499c4674-dd9f-4848-8447-721f842a0213.jpg?1562909903"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Blastoderm", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/3/1354ca60-7183-47ae-ba7b-0871311cba66.jpg?1562089277", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/3/1354ca60-7183-47ae-ba7b-0871311cba66.jpg?1562089277"}, "reprint": true, "digital": false, "set_type": "duel_deck"}, {"name": "Blastoderm", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/d/9db5d6c2-b11f-442a-b172-c0c99c9bec07.jpg?1562631252", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/d/9db5d6c2-b11f-442a-b172-c0c99c9bec07.jpg?1562631252"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Blight-Breath Catoblepas", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/8/7865c079-1d91-48d4-852d-d104b6e0c157.jpg?1616399490", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/8/7865c079-1d91-48d4-852d-d104b6e0c157.jpg?1616399490"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Blind Creeper", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/6/86d5440a-7460-4b4f-a167-a6c4fb2d855e.jpg?1562878236", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/6/86d5440a-7460-4b4f-a167-a6c4fb2d855e.jpg?1562878236"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Bloodstoke Howler", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/4/743779d4-fee8-4b8d-a5ac-27f355e006e5.jpg?1562918274", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/4/743779d4-fee8-4b8d-a5ac-27f355e006e5.jpg?1562918274"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Blossoming Bogbeast", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/3/332153ab-1b8e-40a8-b0b4-01f94866d368.jpg?1625192204", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/3/332153ab-1b8e-40a8-b0b4-01f94866d368.jpg?1625192204"}, "reprint": false, "digital": false, "set_type": "commander"}, {"name": "Bog Gnarr", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/f/3f230831-023c-41aa-832e-16ac81e68588.jpg?1562909815", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/f/3f230831-023c-41aa-832e-16ac81e68588.jpg?1562909815"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Bogstomper", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/5/05145a8d-0bfb-4f07-87cf-65875310bdb4.jpg?1562300265", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/5/05145a8d-0bfb-4f07-87cf-65875310bdb4.jpg?1562300265"}, "reprint": false, "digital": false, "set_type": "core"}, {"name": "Bonethorn Valesk", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/9/297d7326-ad03-464d-97e2-443042d48f92.jpg?1562526649", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/9/297d7326-ad03-464d-97e2-443042d48f92.jpg?1562526649"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Boneyard Lurker", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/7/37e4df5b-ec53-4f8a-8c26-272b3177c0a6.jpg?1591227954", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/7/37e4df5b-ec53-4f8a-8c26-272b3177c0a6.jpg?1591227954"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Boneyard Lurker", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/e/2e0232c0-0867-4217-8e5d-b3454c0c8dab.jpg?1604781908", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/e/2e0232c0-0867-4217-8e5d-b3454c0c8dab.jpg?1604781908"}, "reprint": false, "frame_effects": ["showcase"], "digital": false, "set_type": "expansion"}, {"name": "Book Devourer", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/1/01dfe640-5bd2-4d0b-8977-887b2ed4c2dd.jpg?1572893108", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/1/01dfe640-5bd2-4d0b-8977-887b2ed4c2dd.jpg?1572893108"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Boot Nipper", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/f/cff5a5b8-f823-4429-acd8-c4f34a676cb4.jpg?1591226621", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/f/cff5a5b8-f823-4429-acd8-c4f34a676cb4.jpg?1591226621"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Brackish Trudge", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/0/90ba37ee-159f-421f-8d37-a7b5f1b562f0.jpg?1624590775", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/0/90ba37ee-159f-421f-8d37-a7b5f1b562f0.jpg?1624590775"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Branchsnap Lorian", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/2/52118ff1-ad76-4b97-9fdc-6adfe80140f8.jpg?1562911651", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/2/52118ff1-ad76-4b97-9fdc-6adfe80140f8.jpg?1562911651"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Brontotherium", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/1/a171f5e2-ed3d-4675-a4fc-953ebb907aa0.jpg?1562927638", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/1/a171f5e2-ed3d-4675-a4fc-953ebb907aa0.jpg?1562927638"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Broodstar", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/7/07a194cb-53c9-4690-ba63-79beecaebe0e.jpg?1562134726", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/7/07a194cb-53c9-4690-ba63-79beecaebe0e.jpg?1562134726"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Brushstrider", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/9/59bd1534-52d1-4946-b430-d26f039a9067.jpg?1562786763", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/9/59bd1534-52d1-4946-b430-d26f039a9067.jpg?1562786763"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Bulette", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/0/206a9e7b-45c1-4213-8fc4-27d90e2ab0e9.jpg?1627707159", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/0/206a9e7b-45c1-4213-8fc4-27d90e2ab0e9.jpg?1627707159"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Bulette", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/a/4a76c993-7cc5-428f-bfbc-7747c6a566d0.jpg?1627711855", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/a/4a76c993-7cc5-428f-bfbc-7747c6a566d0.jpg?1627711855"}, "reprint": false, "frame_effects": ["showcase"], "digital": false, "set_type": "expansion"}, {"name": "Bull Cerodon", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/b/bbae0fe2-5d52-434c-8ad1-4a5e42f4b7c4.jpg?1562708388", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/b/bbae0fe2-5d52-434c-8ad1-4a5e42f4b7c4.jpg?1562708388"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Bumbling Pangolin", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/9/4930b9d5-939f-4463-9f9a-235aa3a4f8c4.jpg?1562910270", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/9/4930b9d5-939f-4463-9f9a-235aa3a4f8c4.jpg?1562910270"}, "reprint": false, "digital": false, "set_type": "funny"}, {"name": "Calciderm", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/5/1585bb24-41de-48a7-820e-d99ee76aec01.jpg?1580013629", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/5/1585bb24-41de-48a7-820e-d99ee76aec01.jpg?1580013629"}, "reprint": true, "digital": false, "set_type": "masters"}, {"name": "Calciderm", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/8/387adc65-5d18-4291-85b1-f49f556781c7.jpg?1561756925", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/8/387adc65-5d18-4291-85b1-f49f556781c7.jpg?1561756925"}, "reprint": true, "digital": false, "set_type": "promo"}, {"name": "Caller of the Pack", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/2/1286208b-896b-4f41-a837-1c8a2b199a0f.jpg?1562701494", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/2/1286208b-896b-4f41-a837-1c8a2b199a0f.jpg?1562701494"}, "reprint": false, "digital": false, "set_type": "commander"}, {"name": "Canopy Baloth", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/b/6b04160c-89a7-4dcd-b05d-5dc846824d64.jpg?1604198638", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/b/6b04160c-89a7-4dcd-b05d-5dc846824d64.jpg?1604198638"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Canopy Baloth", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/5/d52e90d3-d356-4b23-8f5c-a4004b20394c.jpg?1604202724", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/5/d52e90d3-d356-4b23-8f5c-a4004b20394c.jpg?1604202724"}, "reprint": false, "frame_effects": ["showcase"], "digital": false, "set_type": "expansion"}, {"name": "Canopy Crawler", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/c/0ccdc9d7-71b5-4304-8d19-a63952e17a6b.jpg?1562897615", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/c/0ccdc9d7-71b5-4304-8d19-a63952e17a6b.jpg?1562897615"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Carnassid", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/e/ae10e7fe-ee51-4c39-86ec-503324d19f6c.jpg?1562597351", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/e/ae10e7fe-ee51-4c39-86ec-503324d19f6c.jpg?1562597351"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Carnivorous Moss-Beast", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/d/bd814ce3-9555-4e9d-a212-e40717f4e546.jpg?1562793539", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/d/bd814ce3-9555-4e9d-a212-e40717f4e546.jpg?1562793539"}, "reprint": false, "digital": false, "set_type": "core"}, {"name": "Cavern Harpy", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/d/adfb0804-50d6-4bca-8733-72e01030a543.jpg?1562931741", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/d/adfb0804-50d6-4bca-8733-72e01030a543.jpg?1562931741"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Cavern Thoctar", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/4/34748acb-7045-42b6-a93f-a3f11a1bc839.jpg?1562702691", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/4/34748acb-7045-42b6-a93f-a3f11a1bc839.jpg?1562702691"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Cerodon Yearling", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/6/f6a85165-5aed-4e26-a314-1370d4638deb.jpg?1562645142", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/6/f6a85165-5aed-4e26-a314-1370d4638deb.jpg?1562645142"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Chainflinger", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/7/670a5bba-a10f-41f6-88cd-cef1dfe4bfa9.jpg?1562914041", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/7/670a5bba-a10f-41f6-88cd-cef1dfe4bfa9.jpg?1562914041"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Chambered Nautilus", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/6/860c613d-d031-4c2a-922b-39f4eec04e18.jpg?1562381838", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/6/860c613d-d031-4c2a-922b-39f4eec04e18.jpg?1562381838"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Chancellor of the Tangle", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/d/6d129aa8-b637-451e-8123-5221e08cc2cc.jpg?1562878494", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/d/6d129aa8-b637-451e-8123-5221e08cc2cc.jpg?1562878494"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Charging Binox", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/8/68222ab7-7b9c-43e5-b80e-db643d80a6d9.jpg?1562915983", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/8/68222ab7-7b9c-43e5-b80e-db643d80a6d9.jpg?1562915983"}, "reprint": false, "digital": false, "set_type": "draft_innovation"}, {"name": "Charging Slateback", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/2/d2cfff37-655f-4107-abf3-e6f63d0e4de2.jpg?1562945225", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/2/d2cfff37-655f-4107-abf3-e6f63d0e4de2.jpg?1562945225"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Chartooth Cougar", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/0/b0960bdb-baa7-4b9a-a377-d350eb9c1d3b.jpg?1581708552", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/0/b0960bdb-baa7-4b9a-a377-d350eb9c1d3b.jpg?1581708552"}, "reprint": true, "digital": false, "set_type": "duel_deck"}, {"name": "Chartooth Cougar", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/b/6b2c9c07-c3db-46ca-a204-b710c3a34ae9.jpg?1562530181", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/b/6b2c9c07-c3db-46ca-a204-b710c3a34ae9.jpg?1562530181"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Chromeshell Crab", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/9/c91cf95f-5007-409c-b891-00e10a3477e0.jpg?1568003959", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/9/c91cf95f-5007-409c-b891-00e10a3477e0.jpg?1568003959"}, "reprint": true, "digital": false, "set_type": "commander"}, {"name": "Chromeshell Crab", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/0/e02a40a4-fa61-4595-810a-3796e0d71507.jpg?1562940039", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/0/e02a40a4-fa61-4595-810a-3796e0d71507.jpg?1562940039"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Cliffrunner Behemoth", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/6/764c1a14-143f-4601-92c5-ebeabf3e375d.jpg?1562801821", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/6/764c1a14-143f-4601-92c5-ebeabf3e375d.jpg?1562801821"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Clockwork Beast", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/7/27f916a2-0ace-44b5-99dc-72979af34db9.jpg?1559591318", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/7/27f916a2-0ace-44b5-99dc-72979af34db9.jpg?1559591318"}, "reprint": false, "digital": false, "set_type": "core"}, {"name": "Clockwork Beast", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/5/d5e5ae63-4963-485e-b40c-3450ee46674b.jpg?1562940262", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/5/d5e5ae63-4963-485e-b40c-3450ee46674b.jpg?1562940262"}, "reprint": true, "digital": false, "set_type": "box"}, {"name": "Clockwork Vorrac", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/e/7e876938-1b8e-44cf-ade2-a42f8acdf24c.jpg?1562148654", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/e/7e876938-1b8e-44cf-ade2-a42f8acdf24c.jpg?1562148654"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Coalhauler Swine", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/c/bc001cef-3afd-4128-989f-ac99dc76b243.jpg?1598915417", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/c/bc001cef-3afd-4128-989f-ac99dc76b243.jpg?1598915417"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Colossodon Yearling", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/2/f2c60e63-0b86-4100-a932-bb9e9b197610.jpg?1562795540", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/2/f2c60e63-0b86-4100-a932-bb9e9b197610.jpg?1562795540"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Colos Yearling", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/d/1d68eb62-9f86-4c85-8696-46a248c744ff.jpg?1562443334", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/d/1d68eb62-9f86-4c85-8696-46a248c744ff.jpg?1562443334"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Copperhoof Vorrac", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/1/81fff4cc-b2ab-4a41-bede-0d807552ba46.jpg?1562149121", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/1/81fff4cc-b2ab-4a41-bede-0d807552ba46.jpg?1562149121"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Cosmic Larva", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/e/deaa0b9b-258e-4daf-8fec-ce64864d6bbf.jpg?1562880234", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/e/deaa0b9b-258e-4daf-8fec-ce64864d6bbf.jpg?1562880234"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Cragplate Baloth", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/b/ab62382d-2dc9-4a60-b031-c845ebad0357.jpg?1604198667", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/b/ab62382d-2dc9-4a60-b031-c845ebad0357.jpg?1604198667"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Crater Hellion", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/3/2382e525-1750-484a-bf95-dbb42bbb30ae.jpg?1562902530", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/3/2382e525-1750-484a-bf95-dbb42bbb30ae.jpg?1562902530"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Craterhoof Behemoth", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/2/a249be17-73ed-4108-89c0-f7e87939beb8.jpg?1592709311", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/2/a249be17-73ed-4108-89c0-f7e87939beb8.jpg?1592709311"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Craterhoof Behemoth", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/7/2750bee4-7dfa-4128-989c-5f81af1b322a.jpg?1645561147", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/7/2750bee4-7dfa-4128-989c-5f81af1b322a.jpg?1645561147"}, "reprint": true, "digital": false, "set_type": "box"}, {"name": "Craterhoof Behemoth", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/4/640be32d-dcc8-408a-b8a6-077472f1e70b.jpg?1645561142", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/4/640be32d-dcc8-408a-b8a6-077472f1e70b.jpg?1645561142"}, "reprint": true, "digital": false, "set_type": "box"}, {"name": "Creature Guy", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/3/13ac8bde-7a3e-4d14-91f4-f4325c93f6a8.jpg?1562487893", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/3/13ac8bde-7a3e-4d14-91f4-f4325c93f6a8.jpg?1562487893"}, "reprint": false, "digital": false, "set_type": "funny"}, {"name": "Crested Craghorn", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/a/aadb40c8-3d54-4705-82dc-54e8d6e315d5.jpg?1562929450", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/a/aadb40c8-3d54-4705-82dc-54e8d6e315d5.jpg?1562929450"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Cryptic Annelid", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/a/6a51026a-ae3c-4fa1-ac1e-96d44ae55b82.jpg?1562916366", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/a/6a51026a-ae3c-4fa1-ac1e-96d44ae55b82.jpg?1562916366"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Cultivator Colossus", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/2/62dffe04-c431-440d-a8da-33c74b4bb683.jpg?1643592511", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/2/62dffe04-c431-440d-a8da-33c74b4bb683.jpg?1643592511"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Cystbearer", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/6/b6c10302-f0b3-4076-ae5c-a8c8c09a7d41.jpg?1562822162", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/6/b6c10302-f0b3-4076-ae5c-a8c8c09a7d41.jpg?1562822162"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Darba", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/8/d82636dc-4b3e-44a8-bc72-dab1275dfb6d.jpg?1562935433", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/8/d82636dc-4b3e-44a8-bc72-dab1275dfb6d.jpg?1562935433"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Deathbringer Thoctar", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/0/f09f166f-dd3c-4cf5-b5f9-3989f46f050c.jpg?1562645019", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/0/f09f166f-dd3c-4cf5-b5f9-3989f46f050c.jpg?1562645019"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Deathmist Raptor", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/4/74c40df1-3f63-49e7-a869-1ce14f94a753.jpg?1562788391", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/4/74c40df1-3f63-49e7-a869-1ce14f94a753.jpg?1562788391"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Deepwood Tantiv", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/f/bfa2028e-4e73-4ff2-a9e2-9ac347d67893.jpg?1562382576", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/f/bfa2028e-4e73-4ff2-a9e2-9ac347d67893.jpg?1562382576"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Desert Cerodon", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/0/2047c2e5-8b3b-4c6b-91cf-3484f21e52f0.jpg?1543675549", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/0/2047c2e5-8b3b-4c6b-91cf-3484f21e52f0.jpg?1543675549"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Displacer Beast", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/5/95d5c36c-bcc8-459c-9f4b-b265ccdb1f06.jpg?1627703119", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/5/95d5c36c-bcc8-459c-9f4b-b265ccdb1f06.jpg?1627703119"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Displacer Beast", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/6/8646ae5c-e757-4d16-bf2a-d48770d620fa.jpg?1627711276", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/6/8646ae5c-e757-4d16-bf2a-d48770d620fa.jpg?1627711276"}, "reprint": false, "frame_effects": ["showcase"], "digital": false, "set_type": "expansion"}, {"name": "Displacer Kitten", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/7/c7a401b8-29fb-46ef-a663-427f66724d5c.jpg?1653329945", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/7/c7a401b8-29fb-46ef-a663-427f66724d5c.jpg?1653329945"}, "reprint": false, "digital": false, "set_type": "draft_innovation"}, {"name": "Domri's Nodorog", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/a/1abe58d8-67d1-4719-8e84-27747dea3506.jpg?1584832471", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/a/1abe58d8-67d1-4719-8e84-27747dea3506.jpg?1584832471"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Dreg Reaver", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/7/e7771eba-bc2d-40f2-bab4-5e9cc4fe8f34.jpg?1562710204", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/7/e7771eba-bc2d-40f2-bab4-5e9cc4fe8f34.jpg?1562710204"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Drekavac", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/5/459d8cb7-cbb8-4e73-9571-44277f1d1be2.jpg?1593272880", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/5/459d8cb7-cbb8-4e73-9571-44277f1d1be2.jpg?1593272880"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Dromad Purebred", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/1/0106caf1-2201-4661-96a5-56af02963fa6.jpg?1598913635", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/1/0106caf1-2201-4661-96a5-56af02963fa6.jpg?1598913635"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Drooling Groodion", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/e/de33c222-0d74-4eb5-8794-39f3601eb8f4.jpg?1598916987", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/e/de33c222-0d74-4eb5-8794-39f3601eb8f4.jpg?1598916987"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Durkwood Baloth", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/7/670521c3-df02-487d-a299-49419e41889f.jpg?1562916541", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/7/670521c3-df02-487d-a299-49419e41889f.jpg?1562916541"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Earthshaking Si", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/1/418df457-4aab-486c-b691-41f03ec8a6df.jpg?1562131512", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/1/418df457-4aab-486c-b691-41f03ec8a6df.jpg?1562131512"}, "reprint": false, "digital": false, "set_type": "duel_deck"}, {"name": "Elder Gargaroth", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/5/d51269cf-a333-4a64-94cd-245798d840d2.jpg?1594736944", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/5/d51269cf-a333-4a64-94cd-245798d840d2.jpg?1594736944"}, "reprint": false, "digital": false, "set_type": "core"}, {"name": "Electryte", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/5/85c3d04f-4010-4db3-9e4e-afa8116b263d.jpg?1562923240", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/5/85c3d04f-4010-4db3-9e4e-afa8116b263d.jpg?1562923240"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Ember Beast", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/a/8a6d9cab-b07b-456b-9562-7ea7f6bec7f3.jpg?1561835467", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/a/8a6d9cab-b07b-456b-9562-7ea7f6bec7f3.jpg?1561835467"}, "reprint": true, "digital": false, "set_type": "expansion"}, {"name": "Ember Beast", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/5/25080720-612f-40c0-8894-cda8e3e8afb8.jpg?1562901920", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/5/25080720-612f-40c0-8894-cda8e3e8afb8.jpg?1562901920"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Enormous Baloth", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/e/cebfb5a6-9052-47be-b931-834b5064df31.jpg?1562936577", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/e/cebfb5a6-9052-47be-b931-834b5064df31.jpg?1562936577"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Erithizon", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/c/ec4ea4e2-2102-4b99-bea5-6fc4203f2b26.jpg?1562383536", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/c/ec4ea4e2-2102-4b99-bea5-6fc4203f2b26.jpg?1562383536"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Essence Symbiote", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/d/8d09ddf0-91f0-4e76-809f-c39ca7418ed5.jpg?1591227575", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/d/8d09ddf0-91f0-4e76-809f-c39ca7418ed5.jpg?1591227575"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Ettercap", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/f/8f5228dc-ec9d-456f-a89c-1bc592a1bbab.jpg?1653970287", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/f/8f5228dc-ec9d-456f-a89c-1bc592a1bbab.jpg?1653970287"}, "reprint": false, "digital": false, "set_type": "draft_innovation"}, {"name": "Excavating Anurid", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/3/d353d315-5790-417d-adf5-270df1ff34b0.jpg?1562202067", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/3/d353d315-5790-417d-adf5-270df1ff34b0.jpg?1562202067"}, "reprint": false, "digital": false, "set_type": "draft_innovation"}, {"name": "Fangren Firstborn", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/7/97d5fc3c-7f6b-42a5-a482-d789a2a421c7.jpg?1562638300", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/7/97d5fc3c-7f6b-42a5-a482-d789a2a421c7.jpg?1562638300"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Fangren Hunter", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/d/2dbc8eef-f032-490a-b487-da1af71b7ff2.jpg?1562139685", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/d/2dbc8eef-f032-490a-b487-da1af71b7ff2.jpg?1562139685"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Fangren Marauder", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/5/f5cf62a2-d03a-495d-924a-bf79524175fa.jpg?1562615957", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/5/f5cf62a2-d03a-495d-924a-bf79524175fa.jpg?1562615957"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Fangren Pathcutter", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/9/59679bcf-4436-48f8-bc6a-d7e0ec6b04c9.jpg?1562877169", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/9/59679bcf-4436-48f8-bc6a-d7e0ec6b04c9.jpg?1562877169"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Felidar Cub", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/a/ea76a183-e15c-4968-b29d-91c074aa8681.jpg?1562950859", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/a/ea76a183-e15c-4968-b29d-91c074aa8681.jpg?1562950859"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Felidar Guardian", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/4/44bdbed8-5d21-4bf5-8a32-9623b1139c85.jpg?1576381396", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/4/44bdbed8-5d21-4bf5-8a32-9623b1139c85.jpg?1576381396"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Felidar Sovereign", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/8/78769295-e1e3-4bd7-9ece-b60e124efbba.jpg?1562920314", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/8/78769295-e1e3-4bd7-9ece-b60e124efbba.jpg?1562920314"}, "reprint": true, "digital": false, "set_type": "promo"}, {"name": "Feral Hydra", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/6/46f76986-e9fb-4c51-b946-880b501775b0.jpg?1562703397", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/6/46f76986-e9fb-4c51-b946-880b501775b0.jpg?1562703397"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Feral Krushok", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/0/5041996b-c265-4c4f-a52c-dfe29b2e282d.jpg?1562825098", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/0/5041996b-c265-4c4f-a52c-dfe29b2e282d.jpg?1562825098"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Feral Throwback", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/1/5111a9a3-a92d-4677-8974-20800256dd4f.jpg?1606849574", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/1/5111a9a3-a92d-4677-8974-20800256dd4f.jpg?1606849574"}, "reprint": true, "digital": false, "set_type": "promo"}, {"name": "Ferocious Zheng", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/a/7a6d1184-15e0-4b41-ba2d-4f68e91c61d4.jpg?1562131565", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/a/7a6d1184-15e0-4b41-ba2d-4f68e91c61d4.jpg?1562131565"}, "reprint": false, "digital": false, "set_type": "duel_deck"}, {"name": "Ferrovore", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/d/8dcc7170-38d9-4b9e-a5f9-73ac1208c439.jpg?1636491206", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/d/8dcc7170-38d9-4b9e-a5f9-73ac1208c439.jpg?1636491206"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Fledgling Mawcor", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/4/c464923e-ae6e-4c1d-9315-0ddb86c07b40.jpg?1562936522", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/4/c464923e-ae6e-4c1d-9315-0ddb86c07b40.jpg?1562936522"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Flowstone Charger", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/5/c57abdab-d99c-418c-818d-b06a8722d733.jpg?1562941643", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/5/c57abdab-d99c-418c-818d-b06a8722d733.jpg?1562941643"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Flowstone Crusher", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/9/c93f0066-1ff0-4e52-9959-9eb0def60957.jpg?1562631986", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/9/c93f0066-1ff0-4e52-9959-9eb0def60957.jpg?1562631986"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Flowstone Hellion", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/8/680ccbc7-aa97-4f01-9d26-0df184af3c3e.jpg?1562596853", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/8/680ccbc7-aa97-4f01-9d26-0df184af3c3e.jpg?1562596853"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Flowstone Mauler", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/3/a3165251-6ac6-4294-8bca-595c362f4ceb.jpg?1562597338", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/3/a3165251-6ac6-4294-8bca-595c362f4ceb.jpg?1562597338"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Flowstone Overseer", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/e/3e644ab8-3cc3-413d-a918-44fc636087ae.jpg?1562629522", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/e/3e644ab8-3cc3-413d-a918-44fc636087ae.jpg?1562629522"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Flowstone Shambler", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/f/6f2b70a5-db13-4c3f-829d-d4b9e0a16245.jpg?1562596859", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/f/6f2b70a5-db13-4c3f-829d-d4b9e0a16245.jpg?1562596859"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Frenetic Raptor", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/f/8f6bc3c0-2d6e-4a09-84c4-b26a352186bb.jpg?1562923949", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/f/8f6bc3c0-2d6e-4a09-84c4-b26a352186bb.jpg?1562923949"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Frenzied Arynx", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/c/bce2eef7-03a4-415f-8bb7-a29d50ce1b0f.jpg?1584831519", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/c/bce2eef7-03a4-415f-8bb7-a29d50ce1b0f.jpg?1584831519"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Frondland Felidar", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/b/ab220695-e1a9-45ec-a1b1-5a82c9c90a03.jpg?1591605277", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/b/ab220695-e1a9-45ec-a1b1-5a82c9c90a03.jpg?1591605277"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Fungal Shambler", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/b/1b65f96b-019b-40a9-9b4d-acd4abf4a0f9.jpg?1562901457", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/b/1b65f96b-019b-40a9-9b4d-acd4abf4a0f9.jpg?1562901457"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Furnace Scamp", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/7/97538294-058c-47d4-b7a8-4db3753a6628.jpg?1562879991", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/7/97538294-058c-47d4-b7a8-4db3753a6628.jpg?1562879991"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Fylamarid", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/d/8dd4f686-79e3-4067-81f9-7fae0c25dc8f.jpg?1562055416", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/d/8dd4f686-79e3-4067-81f9-7fae0c25dc8f.jpg?1562055416"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Galvanoth", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/c/fc1a696b-642a-419f-bd43-09af39a9401b.jpg?1562616123", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/c/fc1a696b-642a-419f-bd43-09af39a9401b.jpg?1562616123"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Gang of Elk", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/d/cd0a61c9-8b14-4255-8453-4b74d90fe0a3.jpg?1562248146", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/d/cd0a61c9-8b14-4255-8453-4b74d90fe0a3.jpg?1562248146"}, "reprint": true, "digital": false, "set_type": "core"}, {"name": "Gang of Elk", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/a/5a84177f-43a3-4d14-9a4c-2ca931cfe092.jpg?1562863261", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/a/5a84177f-43a3-4d14-9a4c-2ca931cfe092.jpg?1562863261"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Gargadon", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/b/4b672c59-7376-455d-961e-ce94d47a5ca4.jpg?1626096673", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/b/4b672c59-7376-455d-961e-ce94d47a5ca4.jpg?1626096673"}, "reprint": false, "digital": false, "set_type": "draft_innovation"}, {"name": "Gargadon", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/8/88167b74-c25f-4a9b-a4f5-33a51e01d498.jpg?1626101678", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/8/88167b74-c25f-4a9b-a4f5-33a51e01d498.jpg?1626101678"}, "reprint": false, "frame_effects": ["showcase"], "digital": false, "set_type": "draft_innovation"}, {"name": "Garruk's Companion", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/6/863c9a10-d83f-415b-adf2-2d0f870410b2.jpg?1562466784", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/6/863c9a10-d83f-415b-adf2-2d0f870410b2.jpg?1562466784"}, "reprint": false, "digital": false, "set_type": "core"}, {"name": "Garruk's Gorehorn", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/9/3928bbce-87b7-4b28-9af4-20362935c909.jpg?1594736993", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/9/3928bbce-87b7-4b28-9af4-20362935c909.jpg?1594736993"}, "reprint": false, "digital": false, "set_type": "core"}, {"name": "Garruk's Harbinger", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/e/9e0fa0b6-5f3f-4669-84e8-2c38c9593d88.jpg?1595022082", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/e/9e0fa0b6-5f3f-4669-84e8-2c38c9593d88.jpg?1595022082"}, "reprint": false, "digital": false, "set_type": "core"}, {"name": "Garruk's Horde", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/6/563c6959-9131-40a6-97ec-12baf6fb7ca0.jpg?1562643185", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/6/563c6959-9131-40a6-97ec-12baf6fb7ca0.jpg?1562643185"}, "reprint": false, "digital": false, "set_type": "core"}, {"name": "Garruk's Horde", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/3/3313f4ea-1275-4835-b4ff-73d3601c04e1.jpg?1605361688", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/3/3313f4ea-1275-4835-b4ff-73d3601c04e1.jpg?1605361688"}, "reprint": true, "digital": false, "set_type": "promo"}, {"name": "Garruk's Packleader", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/f/dfaef299-7879-4f52-8ee4-701ed150b930.jpg?1562478545", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/f/dfaef299-7879-4f52-8ee4-701ed150b930.jpg?1562478545"}, "reprint": false, "digital": false, "set_type": "core"}, {"name": "Gemrazer", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/0/0095245c-a30e-4e2a-88c9-632c678e9f03.jpg?1591227650", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/0/0095245c-a30e-4e2a-88c9-632c678e9f03.jpg?1591227650"}, "reprint": false, "digital": false, "set_type": "expansion"}]} \ No newline at end of file diff --git a/web/public/mtg/jsons/beast2.json b/web/public/mtg/jsons/beast2.json index a1375b1e..de0f2279 100644 --- a/web/public/mtg/jsons/beast2.json +++ b/web/public/mtg/jsons/beast2.json @@ -1 +1 @@ -{"object": "list", "total_cards": 497, "has_more": true, "next_page": "https://api.scryfall.com/cards/search?format=json&include_extras=true&include_multilingual=false&order=name&page=3&q=-type%3Alegendary+type%3Abeast+-type%3Atoken+-%28set%3Asld+%28%28cn%3E%3D231+cn%3C%3D233%29+or+%28cn%3E%3D321+cn%3C%3D324%29+or+%28cn%3E%3D185+cn%3C%3D189%29+or+%28cn%3E%3D138+cn%3C%3D142%29+or+%28cn%3E%3D364+cn%3C%3D368%29+or+cn%3A669+or+cn%3A670%29%29+-name%3A%2F%5Ea-%2F+not%3Adfc+not%3Asplit+-set%3Acmb2+-set%3Acmb1+-set%3Aplist+-set%3Adbl+-frame%3Aextendedart+language%3Aenglish&unique=art", "data": [{"object": "card", "id": "d75546a5-81fd-41c1-a081-d8980f6bd60a", "oracle_id": "3dfb0c0a-b68f-43b9-8475-28d0192fc4ed", "multiverse_ids": [], "arena_id": 73668, "tcgplayer_id": 212072, "cardmarket_id": 451813, "name": "Gemrazer", "lang": "en", "released_at": "2020-04-24", "uri": "https://api.scryfall.com/cards/d75546a5-81fd-41c1-a081-d8980f6bd60a", "scryfall_uri": "https://scryfall.com/card/iko/295/gemrazer?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/d/7/d75546a5-81fd-41c1-a081-d8980f6bd60a.jpg?1604781861", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/7/d75546a5-81fd-41c1-a081-d8980f6bd60a.jpg?1604781861", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/d/7/d75546a5-81fd-41c1-a081-d8980f6bd60a.jpg?1604781861", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/d/7/d75546a5-81fd-41c1-a081-d8980f6bd60a.png?1604781861", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/7/d75546a5-81fd-41c1-a081-d8980f6bd60a.jpg?1604781861", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/d/7/d75546a5-81fd-41c1-a081-d8980f6bd60a.jpg?1604781861"}, "mana_cost": "{3}{G}", "cmc": 4.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Mutate {1}{G}{G} (If you cast this spell for its mutate cost, put it over or under target non-Human creature you own. They mutate into the creature on top plus all abilities from under it.)\nReach, trample\nWhenever this creature mutates, destroy target artifact or enchantment an opponent controls.", "power": "4", "toughness": "4", "colors": ["G"], "color_identity": ["G"], "keywords": ["Reach", "Mutate", "Trample"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "19feda43-15ab-427e-a0e4-148a4bf2b03a", "set": "iko", "set_name": "Ikoria: Lair of Behemoths", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/19feda43-15ab-427e-a0e4-148a4bf2b03a", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aiko&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/iko?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/d75546a5-81fd-41c1-a081-d8980f6bd60a/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A3dfb0c0a-b68f-43b9-8475-28d0192fc4ed&unique=prints", "collector_number": "295", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Andrew Huerta", "artist_ids": ["7f2021cf-4718-404f-8b49-4658b16874fe"], "illustration_id": "acbd2895-a754-4e79-afb5-5d6bb718e4c9", "border_color": "borderless", "frame": "2015", "frame_effects": ["showcase"], "security_stamp": "oval", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "promo_types": ["boosterfun"], "edhrec_rank": 1869, "penny_rank": 11256, "preview": {"source": "Wizards of the Coast", "source_uri": "https://magic.wizards.com/en/articles/archive/card-image-gallery/ikoria-lair-behemoths-variants-2020-04-06", "previewed_at": "2020-04-03"}, "prices": {"usd": "0.70", "usd_foil": "2.96", "usd_etched": null, "eur": "0.88", "eur_foil": "3.00", "tix": null}, "related_uris": {"tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Gemrazer&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Gemrazer&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Gemrazer"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/212072?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Gemrazer&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Gemrazer&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "c811c0d4-e2fc-45eb-8a76-b89c38a95536", "oracle_id": "3dfb0c0a-b68f-43b9-8475-28d0192fc4ed", "multiverse_ids": [482375], "arena_id": 73522, "tcgplayer_id": 212073, "cardmarket_id": 451818, "name": "Gemrazer", "flavor_name": "Anguirus, Armored Killer", "lang": "en", "released_at": "2020-04-24", "uri": "https://api.scryfall.com/cards/c811c0d4-e2fc-45eb-8a76-b89c38a95536", "scryfall_uri": "https://scryfall.com/card/iko/376/gemrazer?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/c/8/c811c0d4-e2fc-45eb-8a76-b89c38a95536.jpg?1604783022", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/8/c811c0d4-e2fc-45eb-8a76-b89c38a95536.jpg?1604783022", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/c/8/c811c0d4-e2fc-45eb-8a76-b89c38a95536.jpg?1604783022", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/c/8/c811c0d4-e2fc-45eb-8a76-b89c38a95536.png?1604783022", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/8/c811c0d4-e2fc-45eb-8a76-b89c38a95536.jpg?1604783022", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/c/8/c811c0d4-e2fc-45eb-8a76-b89c38a95536.jpg?1604783022"}, "mana_cost": "{3}{G}", "cmc": 4.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Mutate {1}{G}{G} (If you cast this spell for its mutate cost, put it over or under target non-Human creature you own. They mutate into the creature on top plus all abilities from under it.)\nReach, trample\nWhenever this creature mutates, destroy target artifact or enchantment an opponent controls.", "power": "4", "toughness": "4", "colors": ["G"], "color_identity": ["G"], "keywords": ["Reach", "Mutate", "Trample"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "19feda43-15ab-427e-a0e4-148a4bf2b03a", "set": "iko", "set_name": "Ikoria: Lair of Behemoths", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/19feda43-15ab-427e-a0e4-148a4bf2b03a", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aiko&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/iko?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/c811c0d4-e2fc-45eb-8a76-b89c38a95536/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A3dfb0c0a-b68f-43b9-8475-28d0192fc4ed&unique=prints", "collector_number": "376", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Sam Rowan", "artist_ids": ["22dbb488-6195-43cc-9927-73bfd239fe30"], "illustration_id": "d222335c-c72e-4fea-9ca7-1c8fc32668f3", "border_color": "borderless", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "promo_types": ["boxtopper", "godzillaseries", "boosterfun"], "edhrec_rank": 1869, "penny_rank": 11256, "preview": {"source": "Wizards of the Coast", "source_uri": "https://www.youtube.com/watch?v=1_xqwsZkH4w", "previewed_at": "2020-04-03"}, "prices": {"usd": "2.05", "usd_foil": "2.94", "usd_etched": null, "eur": "1.85", "eur_foil": "3.00", "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=482375", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Gemrazer&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Gemrazer&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Gemrazer"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/212073?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Gemrazer&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Gemrazer&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "b8aec169-4c62-4d53-a19c-68baa20c8e59", "oracle_id": "840d1002-abf4-4d05-945a-05c3fe9a2ebd", "multiverse_ids": [197887], "mtgo_id": 34814, "mtgo_foil_id": 34815, "tcgplayer_id": 33301, "cardmarket_id": 21777, "name": "Geyser Glider", "lang": "en", "released_at": "2009-10-02", "uri": "https://api.scryfall.com/cards/b8aec169-4c62-4d53-a19c-68baa20c8e59", "scryfall_uri": "https://scryfall.com/card/zen/124/geyser-glider?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/b/8/b8aec169-4c62-4d53-a19c-68baa20c8e59.jpg?1562615855", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/8/b8aec169-4c62-4d53-a19c-68baa20c8e59.jpg?1562615855", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/b/8/b8aec169-4c62-4d53-a19c-68baa20c8e59.jpg?1562615855", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/b/8/b8aec169-4c62-4d53-a19c-68baa20c8e59.png?1562615855", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/8/b8aec169-4c62-4d53-a19c-68baa20c8e59.jpg?1562615855", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/b/8/b8aec169-4c62-4d53-a19c-68baa20c8e59.jpg?1562615855"}, "mana_cost": "{3}{R}{R}", "cmc": 5.0, "type_line": "Creature \u2014 Elemental Beast", "oracle_text": "Landfall \u2014 Whenever a land enters the battlefield under your control, Geyser Glider gains flying until end of turn.", "power": "4", "toughness": "4", "colors": ["R"], "color_identity": ["R"], "keywords": ["Landfall"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "restricted", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "eb16a2bd-a218-4e4e-8339-4aa1afc0c8d2", "set": "zen", "set_name": "Zendikar", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/eb16a2bd-a218-4e4e-8339-4aa1afc0c8d2", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Azen&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/zen?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/b8aec169-4c62-4d53-a19c-68baa20c8e59/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A840d1002-abf4-4d05-945a-05c3fe9a2ebd&unique=prints", "collector_number": "124", "digital": false, "rarity": "uncommon", "flavor_text": "\"Quit pontificating, mage. The last thing we want to do is give it more hot air.\"\n\u2014Tala Vertan, Makindi shieldmate", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Warren Mahy", "artist_ids": ["002c739e-aa1f-4c1d-921b-37cb2d1b1c5b"], "illustration_id": "ba9db063-64bf-44dc-820a-d8c41079384b", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 19714, "penny_rank": 13941, "prices": {"usd": "0.10", "usd_foil": "0.24", "usd_etched": null, "eur": "0.02", "eur_foil": "0.25", "tix": "0.04"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=197887", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Geyser+Glider&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Geyser+Glider&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Geyser+Glider"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/33301?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Geyser+Glider&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/34814?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "382048ec-0bf5-49a5-90d5-f80fbda08962", "oracle_id": "ec7a9e7f-742b-4344-983e-73372c6a1760", "multiverse_ids": [366287], "mtgo_id": 47707, "mtgo_foil_id": 47708, "tcgplayer_id": 67418, "cardmarket_id": 259908, "name": "Ghor-Clan Rampager", "lang": "en", "released_at": "2013-02-01", "uri": "https://api.scryfall.com/cards/382048ec-0bf5-49a5-90d5-f80fbda08962", "scryfall_uri": "https://scryfall.com/card/gtc/167/ghor-clan-rampager?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/3/8/382048ec-0bf5-49a5-90d5-f80fbda08962.jpg?1561822913", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/8/382048ec-0bf5-49a5-90d5-f80fbda08962.jpg?1561822913", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/3/8/382048ec-0bf5-49a5-90d5-f80fbda08962.jpg?1561822913", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/3/8/382048ec-0bf5-49a5-90d5-f80fbda08962.png?1561822913", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/8/382048ec-0bf5-49a5-90d5-f80fbda08962.jpg?1561822913", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/3/8/382048ec-0bf5-49a5-90d5-f80fbda08962.jpg?1561822913"}, "mana_cost": "{2}{R}{G}", "cmc": 4.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Trample\nBloodrush \u2014 {R}{G}, Discard Ghor-Clan Rampager: Target attacking creature gets +4/+4 and gains trample until end of turn.", "power": "4", "toughness": "4", "colors": ["G", "R"], "color_identity": ["G", "R"], "keywords": ["Bloodrush", "Trample"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "restricted", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "035a05f7-e020-4f50-a141-ed16ba704bd2", "set": "gtc", "set_name": "Gatecrash", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/035a05f7-e020-4f50-a141-ed16ba704bd2", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Agtc&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/gtc?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/382048ec-0bf5-49a5-90d5-f80fbda08962/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aec7a9e7f-742b-4344-983e-73372c6a1760&unique=prints", "collector_number": "167", "digital": false, "rarity": "uncommon", "watermark": "gruul", "flavor_text": "\"The Simic come from the cold slow depths. How could they understand the fire in a wild heart?\"\n\u2014Kroshkar, Gruul shaman", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Charles Urbach", "artist_ids": ["507c67d2-1514-40ab-b7cb-a9f3b96a08e8"], "illustration_id": "1c67362f-9f74-4a1b-be1f-edd03ce47a48", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 10845, "penny_rank": 1511, "prices": {"usd": "0.08", "usd_foil": "0.34", "usd_etched": null, "eur": "0.28", "eur_foil": "1.99", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=366287", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Ghor-Clan+Rampager&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Ghor-Clan+Rampager&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Ghor-Clan+Rampager"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/67418?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Ghor-Clan+Rampager&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/47707?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "5dacb6f8-20f7-4ed4-aa9f-8c1d55f09357", "oracle_id": "ec7a9e7f-742b-4344-983e-73372c6a1760", "multiverse_ids": [], "tcgplayer_id": 70920, "cardmarket_id": 264381, "name": "Ghor-Clan Rampager", "lang": "en", "released_at": "2013-01-01", "uri": "https://api.scryfall.com/cards/5dacb6f8-20f7-4ed4-aa9f-8c1d55f09357", "scryfall_uri": "https://scryfall.com/card/f13/10/ghor-clan-rampager?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/5/d/5dacb6f8-20f7-4ed4-aa9f-8c1d55f09357.jpg?1562497081", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/d/5dacb6f8-20f7-4ed4-aa9f-8c1d55f09357.jpg?1562497081", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/5/d/5dacb6f8-20f7-4ed4-aa9f-8c1d55f09357.jpg?1562497081", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/5/d/5dacb6f8-20f7-4ed4-aa9f-8c1d55f09357.png?1562497081", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/d/5dacb6f8-20f7-4ed4-aa9f-8c1d55f09357.jpg?1562497081", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/5/d/5dacb6f8-20f7-4ed4-aa9f-8c1d55f09357.jpg?1562497081"}, "mana_cost": "{2}{R}{G}", "cmc": 4.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Trample\nBloodrush \u2014 {R}{G}, Discard Ghor-Clan Rampager: Target attacking creature gets +4/+4 and gains trample until end of turn.", "power": "4", "toughness": "4", "colors": ["G", "R"], "color_identity": ["G", "R"], "keywords": ["Bloodrush", "Trample"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "restricted", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": true, "nonfoil": false, "finishes": ["foil"], "oversized": false, "promo": true, "reprint": true, "variation": false, "set_id": "4f0f5416-2f39-4339-8b9a-5454d94a4ca6", "set": "f13", "set_name": "Friday Night Magic 2013", "set_type": "promo", "set_uri": "https://api.scryfall.com/sets/4f0f5416-2f39-4339-8b9a-5454d94a4ca6", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Af13&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/f13?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/5dacb6f8-20f7-4ed4-aa9f-8c1d55f09357/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aec7a9e7f-742b-4344-983e-73372c6a1760&unique=prints", "collector_number": "10", "digital": false, "rarity": "rare", "watermark": "gruul", "flavor_text": "\"The Simic come from the cold slow depths. How could they understand the fire in a wild heart?\"\n\u2014Kroshkar, Gruul shaman", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Dave Kendall", "artist_ids": ["8a5540a8-18c9-4fa9-802c-59d6866114d5"], "illustration_id": "840d6a06-af27-4e13-8c64-a0fa005dd72b", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "promo_types": ["tourney", "fnm"], "edhrec_rank": 10845, "penny_rank": 1511, "prices": {"usd": null, "usd_foil": "0.39", "usd_etched": null, "eur": null, "eur_foil": "0.75", "tix": null}, "related_uris": {"tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Ghor-Clan+Rampager&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Ghor-Clan+Rampager&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Ghor-Clan+Rampager"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/70920?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Ghor-Clan+Rampager&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Ghor-Clan+Rampager&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "c402ef0e-51e7-4da6-a434-b99c5d435698", "oracle_id": "0eb41c36-5910-41fd-97fc-1cae2332e5c5", "multiverse_ids": [36112], "mtgo_id": 17568, "mtgo_foil_id": 17569, "tcgplayer_id": 10278, "cardmarket_id": 2244, "name": "Giant Warthog", "lang": "en", "released_at": "2002-05-27", "uri": "https://api.scryfall.com/cards/c402ef0e-51e7-4da6-a434-b99c5d435698", "scryfall_uri": "https://scryfall.com/card/jud/118/giant-warthog?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/c/4/c402ef0e-51e7-4da6-a434-b99c5d435698.jpg?1562631879", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/4/c402ef0e-51e7-4da6-a434-b99c5d435698.jpg?1562631879", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/c/4/c402ef0e-51e7-4da6-a434-b99c5d435698.jpg?1562631879", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/c/4/c402ef0e-51e7-4da6-a434-b99c5d435698.png?1562631879", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/4/c402ef0e-51e7-4da6-a434-b99c5d435698.jpg?1562631879", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/c/4/c402ef0e-51e7-4da6-a434-b99c5d435698.jpg?1562631879"}, "mana_cost": "{5}{G}", "cmc": 6.0, "type_line": "Creature \u2014 Boar Beast", "oracle_text": "Trample", "power": "5", "toughness": "5", "colors": ["G"], "color_identity": ["G"], "keywords": ["Trample"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "cd82de1a-36fd-4618-bfe8-b45532a582d9", "set": "jud", "set_name": "Judgment", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/cd82de1a-36fd-4618-bfe8-b45532a582d9", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ajud&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/jud?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/c402ef0e-51e7-4da6-a434-b99c5d435698/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A0eb41c36-5910-41fd-97fc-1cae2332e5c5&unique=prints", "collector_number": "118", "digital": false, "rarity": "common", "flavor_text": "\"When the Ancestor saw the cruelty her human children were capable of, Her fury shook the world. From this outburst sprang the warthogs.\"\n\u2014Nomad myth", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Kev Walker", "artist_ids": ["f366a0ee-a0cd-466d-ba6a-90058c7a31a6"], "illustration_id": "b5011d8a-9ba7-44cc-be71-6035e655df0c", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 20003, "prices": {"usd": "0.10", "usd_foil": "0.29", "usd_etched": null, "eur": "0.02", "eur_foil": "1.99", "tix": "0.06"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=36112", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Giant+Warthog&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Giant+Warthog&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Giant+Warthog"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/10278?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Giant+Warthog&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/17568?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "f68c8fbd-9223-447d-a85c-fa6222c75277", "oracle_id": "93dd5f2e-aa13-4616-bfe6-466524b274ff", "multiverse_ids": [430783], "mtgo_id": 64672, "mtgo_foil_id": 64673, "tcgplayer_id": 134873, "cardmarket_id": 298554, "name": "Gilded Cerodon", "lang": "en", "released_at": "2017-07-14", "uri": "https://api.scryfall.com/cards/f68c8fbd-9223-447d-a85c-fa6222c75277", "scryfall_uri": "https://scryfall.com/card/hou/94/gilded-cerodon?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/f/6/f68c8fbd-9223-447d-a85c-fa6222c75277.jpg?1562820187", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/6/f68c8fbd-9223-447d-a85c-fa6222c75277.jpg?1562820187", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/f/6/f68c8fbd-9223-447d-a85c-fa6222c75277.jpg?1562820187", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/f/6/f68c8fbd-9223-447d-a85c-fa6222c75277.png?1562820187", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/6/f68c8fbd-9223-447d-a85c-fa6222c75277.jpg?1562820187", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/f/6/f68c8fbd-9223-447d-a85c-fa6222c75277.jpg?1562820187"}, "mana_cost": "{4}{R}", "cmc": 5.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Whenever Gilded Cerodon attacks, if you control a Desert or there is a Desert card in your graveyard, target creature can't block this turn.", "power": "4", "toughness": "4", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "65ff168b-bb94-47a5-a8f9-4ec6c213e768", "set": "hou", "set_name": "Hour of Devastation", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/65ff168b-bb94-47a5-a8f9-4ec6c213e768", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ahou&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/hou?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/f68c8fbd-9223-447d-a85c-fa6222c75277/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A93dd5f2e-aa13-4616-bfe6-466524b274ff&unique=prints", "collector_number": "94", "digital": false, "rarity": "common", "flavor_text": "The plating of its horns is a token of honor from Hazoret, who favors creatures with great hearts.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Matt Stewart", "artist_ids": ["20871267-2d8a-41d5-b03a-be3d557c5734"], "illustration_id": "429e2a2e-c8cc-4c58-906a-e0a97b7c4d99", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 22208, "prices": {"usd": "0.02", "usd_foil": "0.07", "usd_etched": null, "eur": "0.01", "eur_foil": "0.18", "tix": "0.04"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=430783", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Gilded+Cerodon&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Gilded+Cerodon&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Gilded+Cerodon"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/134873?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Gilded+Cerodon&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/64672?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "ee38eeae-918b-4d19-b37a-175ac5db37a4", "oracle_id": "1a42fd1d-a2c3-40c4-8c34-7a3559aa9caf", "multiverse_ids": [27154], "mtgo_id": 16114, "mtgo_foil_id": 16115, "tcgplayer_id": 7960, "cardmarket_id": 3190, "name": "Glade Gnarr", "lang": "en", "released_at": "2001-06-04", "uri": "https://api.scryfall.com/cards/ee38eeae-918b-4d19-b37a-175ac5db37a4", "scryfall_uri": "https://scryfall.com/card/apc/78/glade-gnarr?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/e/e/ee38eeae-918b-4d19-b37a-175ac5db37a4.jpg?1562951582", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/e/ee38eeae-918b-4d19-b37a-175ac5db37a4.jpg?1562951582", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/e/e/ee38eeae-918b-4d19-b37a-175ac5db37a4.jpg?1562951582", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/e/e/ee38eeae-918b-4d19-b37a-175ac5db37a4.png?1562951582", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/e/ee38eeae-918b-4d19-b37a-175ac5db37a4.jpg?1562951582", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/e/e/ee38eeae-918b-4d19-b37a-175ac5db37a4.jpg?1562951582"}, "mana_cost": "{5}{G}", "cmc": 6.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Whenever a player casts a blue spell, Glade Gnarr gets +2/+2 until end of turn.", "power": "4", "toughness": "4", "colors": ["G"], "color_identity": ["G"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "e4e00913-d08d-4899-86ea-5cf631e09ce0", "set": "apc", "set_name": "Apocalypse", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/e4e00913-d08d-4899-86ea-5cf631e09ce0", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aapc&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/apc?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/ee38eeae-918b-4d19-b37a-175ac5db37a4/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A1a42fd1d-a2c3-40c4-8c34-7a3559aa9caf&unique=prints", "collector_number": "78", "digital": false, "rarity": "common", "flavor_text": "Long thought merely a legend, the appearance of the gnarr was seen by the defenders as a sign of good luck.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Daren Bader", "artist_ids": ["7da1a585-c875-45e4-b322-5da9e8e1f651"], "illustration_id": "7997d219-483b-47b0-9a04-8205fff55478", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 22995, "prices": {"usd": "0.06", "usd_foil": "0.29", "usd_etched": null, "eur": "0.04", "eur_foil": "0.30", "tix": "0.04"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=27154", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Glade+Gnarr&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Glade+Gnarr&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Glade+Gnarr"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/7960?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Glade+Gnarr&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/16114?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "89a40dc1-3bd8-4c7e-9446-5abc8c1f6995", "oracle_id": "028f2c1d-9c1d-4ac3-adf4-644b5166502b", "multiverse_ids": [484907], "mtgo_id": 80701, "tcgplayer_id": 212186, "cardmarket_id": 452238, "name": "Glademuse", "lang": "en", "released_at": "2020-04-17", "uri": "https://api.scryfall.com/cards/89a40dc1-3bd8-4c7e-9446-5abc8c1f6995", "scryfall_uri": "https://scryfall.com/card/c20/60/glademuse?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/8/9/89a40dc1-3bd8-4c7e-9446-5abc8c1f6995.jpg?1591319670", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/9/89a40dc1-3bd8-4c7e-9446-5abc8c1f6995.jpg?1591319670", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/8/9/89a40dc1-3bd8-4c7e-9446-5abc8c1f6995.jpg?1591319670", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/8/9/89a40dc1-3bd8-4c7e-9446-5abc8c1f6995.png?1591319670", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/9/89a40dc1-3bd8-4c7e-9446-5abc8c1f6995.jpg?1591319670", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/8/9/89a40dc1-3bd8-4c7e-9446-5abc8c1f6995.jpg?1591319670"}, "mana_cost": "{2}{G}", "cmc": 3.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Whenever a player casts a spell, if it's not their turn, that player draws a card.", "power": "2", "toughness": "4", "colors": ["G"], "color_identity": ["G"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "f60ec786-1f8d-42f7-9abc-0d880fe243f6", "set": "c20", "set_name": "Commander 2020", "set_type": "commander", "set_uri": "https://api.scryfall.com/sets/f60ec786-1f8d-42f7-9abc-0d880fe243f6", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ac20&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/c20?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/89a40dc1-3bd8-4c7e-9446-5abc8c1f6995/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A028f2c1d-9c1d-4ac3-adf4-644b5166502b&unique=prints", "collector_number": "60", "digital": false, "rarity": "rare", "flavor_text": "\"Rage can be heard throughout the world, but wisdom comes at a whisper.\"\n\u2014Rielle, the Everwise", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Ilse Gort", "artist_ids": ["12070c2e-4de6-46bc-b379-8a580dfb34c5"], "illustration_id": "825ed814-6f04-4a37-8292-8092c14074b6", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "edhrec_rank": 7062, "preview": {"source": "TOTALmtg", "source_uri": "https://www.youtube.com/watch?v=BSIb7CqSZj0", "previewed_at": "2020-04-05"}, "prices": {"usd": "0.15", "usd_foil": null, "usd_etched": null, "eur": "0.14", "eur_foil": null, "tix": "0.37"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=484907", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Glademuse&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Glademuse&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Glademuse"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/212186?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Glademuse&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/80701?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "a2b50751-7f65-4321-86da-eef735bf8b67", "oracle_id": "b58737a4-180e-4e2f-95ae-afd6d446d608", "multiverse_ids": [548530], "mtgo_id": 97384, "arena_id": 79657, "tcgplayer_id": 262256, "cardmarket_id": 607373, "name": "Gloomshrieker", "lang": "en", "released_at": "2022-02-18", "uri": "https://api.scryfall.com/cards/a2b50751-7f65-4321-86da-eef735bf8b67", "scryfall_uri": "https://scryfall.com/card/neo/219/gloomshrieker?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/a/2/a2b50751-7f65-4321-86da-eef735bf8b67.jpg?1654568435", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/2/a2b50751-7f65-4321-86da-eef735bf8b67.jpg?1654568435", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/a/2/a2b50751-7f65-4321-86da-eef735bf8b67.jpg?1654568435", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/a/2/a2b50751-7f65-4321-86da-eef735bf8b67.png?1654568435", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/2/a2b50751-7f65-4321-86da-eef735bf8b67.jpg?1654568435", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/a/2/a2b50751-7f65-4321-86da-eef735bf8b67.jpg?1654568435"}, "mana_cost": "{1}{B}{G}", "cmc": 3.0, "type_line": "Enchantment Creature \u2014 Cat Beast", "oracle_text": "Menace (This creature can't be blocked except by two or more creatures.)\nWhen Gloomshrieker enters the battlefield, return target permanent card from your graveyard to your hand.\nIf Gloomshrieker would die, exile it instead.", "power": "2", "toughness": "1", "colors": ["B", "G"], "color_identity": ["B", "G"], "keywords": ["Menace"], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "restricted", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo", "arena"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "59a2059f-5482-433f-8761-eb2e17859b71", "set": "neo", "set_name": "Kamigawa: Neon Dynasty", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/59a2059f-5482-433f-8761-eb2e17859b71", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aneo&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/neo?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/a2b50751-7f65-4321-86da-eef735bf8b67/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ab58737a4-180e-4e2f-95ae-afd6d446d608&unique=prints", "collector_number": "219", "digital": false, "rarity": "uncommon", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Fiona Hsieh", "artist_ids": ["22211c1d-e15e-4db3-9350-e4a9862928bb"], "illustration_id": "85645977-3967-424b-9f02-d485742585f5", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 6169, "penny_rank": 1598, "preview": {"source": "Naver Cafe", "source_uri": "https://cafe.naver.com/mtgkr?iframe_url_utf8=%2FArticleRead.nhn%253Fclubid%3D30250607%2526articleid%3D8568%2526referrerAllArticles%3Dtrue", "previewed_at": "2022-01-28"}, "prices": {"usd": "0.08", "usd_foil": "0.17", "usd_etched": null, "eur": "0.06", "eur_foil": "0.14", "tix": "0.01"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=548530", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Gloomshrieker&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Gloomshrieker&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Gloomshrieker"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/262256?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Gloomshrieker&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/97384?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "974b0881-bd26-4074-93dd-a1e3600347c4", "oracle_id": "e9ed7322-53d4-419a-809f-78824aeaf99e", "multiverse_ids": [43723], "mtgo_id": 18547, "mtgo_foil_id": 18548, "tcgplayer_id": 10804, "cardmarket_id": 2109, "name": "Glowering Rogon", "lang": "en", "released_at": "2003-02-03", "uri": "https://api.scryfall.com/cards/974b0881-bd26-4074-93dd-a1e3600347c4", "scryfall_uri": "https://scryfall.com/card/lgn/128/glowering-rogon?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/9/7/974b0881-bd26-4074-93dd-a1e3600347c4.jpg?1562925487", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/7/974b0881-bd26-4074-93dd-a1e3600347c4.jpg?1562925487", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/9/7/974b0881-bd26-4074-93dd-a1e3600347c4.jpg?1562925487", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/9/7/974b0881-bd26-4074-93dd-a1e3600347c4.png?1562925487", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/7/974b0881-bd26-4074-93dd-a1e3600347c4.jpg?1562925487", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/9/7/974b0881-bd26-4074-93dd-a1e3600347c4.jpg?1562925487"}, "mana_cost": "{5}{G}", "cmc": 6.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Amplify 1 (As this creature enters the battlefield, put a +1/+1 counter on it for each Beast card you reveal in your hand.)", "power": "4", "toughness": "4", "colors": ["G"], "color_identity": ["G"], "keywords": ["Amplify"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "c2d60a18-1a81-4784-8e0c-e1de2f43c5cf", "set": "lgn", "set_name": "Legions", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/c2d60a18-1a81-4784-8e0c-e1de2f43c5cf", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Algn&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/lgn?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/974b0881-bd26-4074-93dd-a1e3600347c4/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ae9ed7322-53d4-419a-809f-78824aeaf99e&unique=prints", "collector_number": "128", "digital": false, "rarity": "common", "flavor_text": "A herd of one.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Kev Walker", "artist_ids": ["f366a0ee-a0cd-466d-ba6a-90058c7a31a6"], "illustration_id": "b0bdd8f5-dceb-4c29-befa-7a3ebf80bf7b", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 22930, "prices": {"usd": "0.10", "usd_foil": "0.20", "usd_etched": null, "eur": "0.02", "eur_foil": "0.20", "tix": "0.05"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=43723", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Glowering+Rogon&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Glowering+Rogon&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Glowering+Rogon"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/10804?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Glowering+Rogon&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/18547?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "708593e6-787b-4f76-a86c-1d52857493ea", "oracle_id": "52305f9d-2bfd-4b35-92b3-c08cdd758cde", "multiverse_ids": [19803], "mtgo_id": 13635, "mtgo_foil_id": 13636, "tcgplayer_id": 6545, "cardmarket_id": 11454, "name": "Glowing Anemone", "lang": "en", "released_at": "1999-10-04", "uri": "https://api.scryfall.com/cards/708593e6-787b-4f76-a86c-1d52857493ea", "scryfall_uri": "https://scryfall.com/card/mmq/81/glowing-anemone?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/7/0/708593e6-787b-4f76-a86c-1d52857493ea.jpg?1562381361", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/0/708593e6-787b-4f76-a86c-1d52857493ea.jpg?1562381361", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/7/0/708593e6-787b-4f76-a86c-1d52857493ea.jpg?1562381361", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/7/0/708593e6-787b-4f76-a86c-1d52857493ea.png?1562381361", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/0/708593e6-787b-4f76-a86c-1d52857493ea.jpg?1562381361", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/7/0/708593e6-787b-4f76-a86c-1d52857493ea.jpg?1562381361"}, "mana_cost": "{3}{U}", "cmc": 4.0, "type_line": "Creature \u2014 Jellyfish Beast", "oracle_text": "When Glowing Anemone enters the battlefield, you may return target land to its owner's hand.", "power": "1", "toughness": "3", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "restricted", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "385e11a4-492b-4d07-b4a6-a1409ef829b8", "set": "mmq", "set_name": "Mercadian Masques", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/385e11a4-492b-4d07-b4a6-a1409ef829b8", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ammq&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/mmq?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/708593e6-787b-4f76-a86c-1d52857493ea/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A52305f9d-2bfd-4b35-92b3-c08cdd758cde&unique=prints", "collector_number": "81", "digital": false, "rarity": "uncommon", "flavor_text": "Beautiful to behold, terrible to be held.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Pete Venters", "artist_ids": ["d54c4a1a-c0c5-4834-84db-125d341f3ad8"], "illustration_id": "4289a941-f99b-4691-bc89-53415a1f236f", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 20004, "penny_rank": 10277, "prices": {"usd": "0.21", "usd_foil": "5.97", "usd_etched": null, "eur": "0.25", "eur_foil": "3.43", "tix": "0.06"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=19803", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Glowing+Anemone&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Glowing+Anemone&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Glowing+Anemone"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/6545?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Glowing+Anemone&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/13635?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "aa7626ff-814f-4d9f-9595-ac7fa5334d4b", "oracle_id": "22dcba0a-4ab5-48db-b246-6f0b206e0d15", "multiverse_ids": [74298], "tcgplayer_id": 37866, "cardmarket_id": 14861, "name": "Gluetius Maximus", "lang": "en", "released_at": "2004-11-19", "uri": "https://api.scryfall.com/cards/aa7626ff-814f-4d9f-9595-ac7fa5334d4b", "scryfall_uri": "https://scryfall.com/card/unh/98/gluetius-maximus?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/a/a/aa7626ff-814f-4d9f-9595-ac7fa5334d4b.jpg?1562489356", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/a/aa7626ff-814f-4d9f-9595-ac7fa5334d4b.jpg?1562489356", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/a/a/aa7626ff-814f-4d9f-9595-ac7fa5334d4b.jpg?1562489356", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/a/a/aa7626ff-814f-4d9f-9595-ac7fa5334d4b.png?1562489356", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/a/aa7626ff-814f-4d9f-9595-ac7fa5334d4b.jpg?1562489356", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/a/a/aa7626ff-814f-4d9f-9595-ac7fa5334d4b.jpg?1562489356"}, "mana_cost": "{3}{G}{G}", "cmc": 5.0, "type_line": "Creature \u2014 Beast", "oracle_text": "As Gluetius Maximus enters the battlefield, an opponent chooses one of your fingers. (Thumbs are fingers, too.)\nWhen the chosen finger isn't touching Gluetius Maximus, sacrifice Gluetius Maximus.", "power": "5", "toughness": "5", "colors": ["G"], "color_identity": ["G"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "not_legal", "pauper": "not_legal", "vintage": "not_legal", "penny": "not_legal", "commander": "not_legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "not_legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "4c8bc76a-05a5-43db-aaf0-34deb347b871", "set": "unh", "set_name": "Unhinged", "set_type": "funny", "set_uri": "https://api.scryfall.com/sets/4c8bc76a-05a5-43db-aaf0-34deb347b871", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aunh&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/unh?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/aa7626ff-814f-4d9f-9595-ac7fa5334d4b/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A22dcba0a-4ab5-48db-b246-6f0b206e0d15&unique=prints", "collector_number": "98", "digital": false, "rarity": "uncommon", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Jeff Easley", "artist_ids": ["da17055e-693c-461a-b132-67dd88b42ca6"], "illustration_id": "f23aa8a4-0ae2-4271-8cdb-2c1919292c7b", "border_color": "silver", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "prices": {"usd": "0.15", "usd_foil": null, "usd_etched": null, "eur": "0.05", "eur_foil": "1.40", "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=74298", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Gluetius+Maximus&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Gluetius+Maximus&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Gluetius+Maximus"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/37866?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Gluetius+Maximus&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Gluetius+Maximus&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "7327289d-eed8-44b1-8495-7172e2b49d5f", "oracle_id": "e5481431-c952-4ad9-94fe-355076ef632b", "multiverse_ids": [491831], "mtgo_id": 83355, "arena_id": 73392, "tcgplayer_id": 221792, "cardmarket_id": 494689, "name": "Gnarlid Colony", "lang": "en", "released_at": "2020-09-25", "uri": "https://api.scryfall.com/cards/7327289d-eed8-44b1-8495-7172e2b49d5f", "scryfall_uri": "https://scryfall.com/card/znr/185/gnarlid-colony?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/7/3/7327289d-eed8-44b1-8495-7172e2b49d5f.jpg?1604198764", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/3/7327289d-eed8-44b1-8495-7172e2b49d5f.jpg?1604198764", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/7/3/7327289d-eed8-44b1-8495-7172e2b49d5f.jpg?1604198764", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/7/3/7327289d-eed8-44b1-8495-7172e2b49d5f.png?1604198764", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/3/7327289d-eed8-44b1-8495-7172e2b49d5f.jpg?1604198764", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/7/3/7327289d-eed8-44b1-8495-7172e2b49d5f.jpg?1604198764"}, "mana_cost": "{1}{G}", "cmc": 2.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Kicker {2}{G} (You may pay an additional {2}{G} as you cast this spell.)\nIf Gnarlid Colony was kicked, it enters the battlefield with two +1/+1 counters on it.\nEach creature you control with a +1/+1 counter on it has trample.", "power": "2", "toughness": "2", "colors": ["G"], "color_identity": ["G"], "keywords": ["Kicker"], "all_parts": [{"object": "related_card", "id": "46f644a6-9621-429e-a0a0-4c74d0ecff2e", "component": "combo_piece", "name": "A-Gnarlid Colony", "type_line": "Creature \u2014 Beast", "uri": "https://api.scryfall.com/cards/46f644a6-9621-429e-a0a0-4c74d0ecff2e"}, {"object": "related_card", "id": "7327289d-eed8-44b1-8495-7172e2b49d5f", "component": "combo_piece", "name": "Gnarlid Colony", "type_line": "Creature \u2014 Beast", "uri": "https://api.scryfall.com/cards/7327289d-eed8-44b1-8495-7172e2b49d5f"}], "legalities": {"standard": "legal", "future": "legal", "historic": "not_legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "f4e01fa7-b254-42dd-849f-69b58027a8c4", "set": "znr", "set_name": "Zendikar Rising", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/f4e01fa7-b254-42dd-849f-69b58027a8c4", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aznr&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/znr?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/7327289d-eed8-44b1-8495-7172e2b49d5f/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ae5481431-c952-4ad9-94fe-355076ef632b&unique=prints", "collector_number": "185", "digital": false, "rarity": "common", "flavor_text": "Where mana flows, the gnarlids follow.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Izzy", "artist_ids": ["2c3d2473-ff5d-4309-8194-e0b2def2ab65"], "illustration_id": "640addb2-4085-4536-a043-90b300ad244c", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 5980, "penny_rank": 10717, "preview": {"source": "Wizards of the Coast", "source_uri": "https://magic.wizards.com/en/articles/archive/feature/zendikar-rising-mechanics-2020-09-01", "previewed_at": "2020-09-01"}, "prices": {"usd": "0.03", "usd_foil": "0.09", "usd_etched": null, "eur": "0.30", "eur_foil": "0.02", "tix": "0.01"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=491831", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Gnarlid+Colony&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Gnarlid+Colony&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Gnarlid+Colony"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/221792?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Gnarlid+Colony&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/83355?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "68716387-c5ec-4967-be5f-723783722c64", "oracle_id": "be6e835c-822e-45ff-a992-249d4d9781dc", "multiverse_ids": [197771], "mtgo_id": 35775, "mtgo_foil_id": 35776, "tcgplayer_id": 34368, "cardmarket_id": 22191, "name": "Gnarlid Pack", "lang": "en", "released_at": "2010-02-05", "uri": "https://api.scryfall.com/cards/68716387-c5ec-4967-be5f-723783722c64", "scryfall_uri": "https://scryfall.com/card/wwk/101/gnarlid-pack?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/6/8/68716387-c5ec-4967-be5f-723783722c64.jpg?1562288938", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/8/68716387-c5ec-4967-be5f-723783722c64.jpg?1562288938", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/6/8/68716387-c5ec-4967-be5f-723783722c64.jpg?1562288938", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/6/8/68716387-c5ec-4967-be5f-723783722c64.png?1562288938", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/8/68716387-c5ec-4967-be5f-723783722c64.jpg?1562288938", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/6/8/68716387-c5ec-4967-be5f-723783722c64.jpg?1562288938"}, "mana_cost": "{1}{G}", "cmc": 2.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Multikicker {1}{G} (You may pay an additional {1}{G} any number of times as you cast this spell.)\nGnarlid Pack enters the battlefield with a +1/+1 counter on it for each time it was kicked.", "power": "2", "toughness": "2", "colors": ["G"], "color_identity": ["G"], "keywords": ["Multikicker"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "2f248ce6-c2a5-4c6f-a2be-0c593fbe173c", "set": "wwk", "set_name": "Worldwake", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/2f248ce6-c2a5-4c6f-a2be-0c593fbe173c", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Awwk&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/wwk?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/68716387-c5ec-4967-be5f-723783722c64/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Abe6e835c-822e-45ff-a992-249d4d9781dc&unique=prints", "collector_number": "101", "digital": false, "rarity": "common", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Johann Bodin", "artist_ids": ["d92e2dd9-9ef6-43f6-81f8-df87f9066983"], "illustration_id": "2921132a-b579-4aae-b1cb-775913f96d8a", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 13363, "penny_rank": 6325, "prices": {"usd": "0.03", "usd_foil": "0.10", "usd_etched": null, "eur": "0.19", "eur_foil": "0.13", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=197771", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Gnarlid+Pack&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Gnarlid+Pack&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Gnarlid+Pack"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/34368?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Gnarlid+Pack&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/35775?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "e2539ff7-2b7d-47e3-bd77-3138a6c42d2b", "oracle_id": "4252d7f4-c582-4a21-b3af-829c84cb0b09", "multiverse_ids": [175105], "mtgo_id": 31175, "mtgo_foil_id": 31176, "tcgplayer_id": 27686, "cardmarket_id": 19922, "name": "Godsire", "lang": "en", "released_at": "2008-10-03", "uri": "https://api.scryfall.com/cards/e2539ff7-2b7d-47e3-bd77-3138a6c42d2b", "scryfall_uri": "https://scryfall.com/card/ala/170/godsire?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/e/2/e2539ff7-2b7d-47e3-bd77-3138a6c42d2b.jpg?1562710016", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/2/e2539ff7-2b7d-47e3-bd77-3138a6c42d2b.jpg?1562710016", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/e/2/e2539ff7-2b7d-47e3-bd77-3138a6c42d2b.jpg?1562710016", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/e/2/e2539ff7-2b7d-47e3-bd77-3138a6c42d2b.png?1562710016", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/2/e2539ff7-2b7d-47e3-bd77-3138a6c42d2b.jpg?1562710016", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/e/2/e2539ff7-2b7d-47e3-bd77-3138a6c42d2b.jpg?1562710016"}, "mana_cost": "{4}{R}{G}{G}{W}", "cmc": 8.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Vigilance\n{T}: Create an 8/8 Beast creature token that's red, green, and white.", "power": "8", "toughness": "8", "colors": ["G", "R", "W"], "color_identity": ["G", "R", "W"], "keywords": ["Vigilance"], "all_parts": [{"object": "related_card", "id": "b51e84d7-bf9f-454f-bdcd-a2458b1b5b33", "component": "combo_piece", "name": "Behemoth's Herald", "type_line": "Creature \u2014 Elf Shaman", "uri": "https://api.scryfall.com/cards/b51e84d7-bf9f-454f-bdcd-a2458b1b5b33"}, {"object": "related_card", "id": "e2539ff7-2b7d-47e3-bd77-3138a6c42d2b", "component": "combo_piece", "name": "Godsire", "type_line": "Creature \u2014 Beast", "uri": "https://api.scryfall.com/cards/e2539ff7-2b7d-47e3-bd77-3138a6c42d2b"}, {"object": "related_card", "id": "a7382e4b-43dc-4b35-8a9e-ab886ea0a981", "component": "token", "name": "Beast", "type_line": "Token Creature \u2014 Beast", "uri": "https://api.scryfall.com/cards/a7382e4b-43dc-4b35-8a9e-ab886ea0a981"}], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "d667aaec-09b7-4406-b6fa-60795132dc11", "set": "ala", "set_name": "Shards of Alara", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/d667aaec-09b7-4406-b6fa-60795132dc11", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aala&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ala?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/e2539ff7-2b7d-47e3-bd77-3138a6c42d2b/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A4252d7f4-c582-4a21-b3af-829c84cb0b09&unique=prints", "collector_number": "170", "digital": false, "rarity": "mythic", "flavor_text": "\"Lay sacrifice to the godsire that it may spare us, but save some for his progeny who also will hunger.\"\n\u2014Syeena, elvish godtoucher", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Jim Murray", "artist_ids": ["1c906f9b-5bbe-4643-8f5c-90eb1c7f0c43"], "illustration_id": "6fe28b17-77d4-4164-89ca-b98a80fee293", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 7164, "penny_rank": 6607, "prices": {"usd": "6.64", "usd_foil": "40.00", "usd_etched": null, "eur": "2.97", "eur_foil": "6.95", "tix": "0.01"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=175105", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Godsire&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Godsire&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Godsire"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/27686?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Godsire&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/31175?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "9919d2dd-d6a1-4d45-b6aa-227ed05d7051", "oracle_id": "853ce64f-50b4-49a6-9aa3-f07b11cd8b69", "multiverse_ids": [34917], "mtgo_id": 17512, "mtgo_foil_id": 17513, "tcgplayer_id": 10251, "cardmarket_id": 2217, "name": "Goretusk Firebeast", "lang": "en", "released_at": "2002-05-27", "uri": "https://api.scryfall.com/cards/9919d2dd-d6a1-4d45-b6aa-227ed05d7051", "scryfall_uri": "https://scryfall.com/card/jud/91/goretusk-firebeast?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/9/9/9919d2dd-d6a1-4d45-b6aa-227ed05d7051.jpg?1562631090", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/9/9919d2dd-d6a1-4d45-b6aa-227ed05d7051.jpg?1562631090", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/9/9/9919d2dd-d6a1-4d45-b6aa-227ed05d7051.jpg?1562631090", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/9/9/9919d2dd-d6a1-4d45-b6aa-227ed05d7051.png?1562631090", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/9/9919d2dd-d6a1-4d45-b6aa-227ed05d7051.jpg?1562631090", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/9/9/9919d2dd-d6a1-4d45-b6aa-227ed05d7051.jpg?1562631090"}, "mana_cost": "{5}{R}", "cmc": 6.0, "type_line": "Creature \u2014 Elemental Boar Beast", "oracle_text": "When Goretusk Firebeast enters the battlefield, it deals 4 damage to target player or planeswalker.", "power": "2", "toughness": "2", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "cd82de1a-36fd-4618-bfe8-b45532a582d9", "set": "jud", "set_name": "Judgment", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/cd82de1a-36fd-4618-bfe8-b45532a582d9", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ajud&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/jud?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/9919d2dd-d6a1-4d45-b6aa-227ed05d7051/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A853ce64f-50b4-49a6-9aa3-f07b11cd8b69&unique=prints", "collector_number": "91", "digital": false, "rarity": "common", "flavor_text": "As a youth, Kamahl took one for a pet. His hair has yet to grow back.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Keith Garletts", "artist_ids": ["6ab2144d-a579-4aff-bce9-e6d76427ff04"], "illustration_id": "6df1da40-da84-4e4a-8aa7-9eb3ce99a1dd", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 20421, "penny_rank": 10888, "prices": {"usd": "0.09", "usd_foil": "0.49", "usd_etched": null, "eur": "0.10", "eur_foil": "0.24", "tix": "0.06"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=34917", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Goretusk+Firebeast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Goretusk+Firebeast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Goretusk+Firebeast"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/10251?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Goretusk+Firebeast&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/17512?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "25a40334-65d8-46d2-9c56-389e9b32107c", "oracle_id": "5b2c6b44-99b3-496d-93ca-d5211222038f", "multiverse_ids": [409966], "mtgo_id": 60210, "mtgo_foil_id": 60211, "tcgplayer_id": 116403, "cardmarket_id": 289204, "name": "Graf Mole", "lang": "en", "released_at": "2016-04-08", "uri": "https://api.scryfall.com/cards/25a40334-65d8-46d2-9c56-389e9b32107c", "scryfall_uri": "https://scryfall.com/card/soi/207/graf-mole?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/2/5/25a40334-65d8-46d2-9c56-389e9b32107c.jpg?1576385088", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/5/25a40334-65d8-46d2-9c56-389e9b32107c.jpg?1576385088", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/2/5/25a40334-65d8-46d2-9c56-389e9b32107c.jpg?1576385088", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/2/5/25a40334-65d8-46d2-9c56-389e9b32107c.png?1576385088", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/5/25a40334-65d8-46d2-9c56-389e9b32107c.jpg?1576385088", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/2/5/25a40334-65d8-46d2-9c56-389e9b32107c.jpg?1576385088"}, "mana_cost": "{2}{G}", "cmc": 3.0, "type_line": "Creature \u2014 Mole Beast", "oracle_text": "Whenever you sacrifice a Clue, you gain 3 life.", "power": "2", "toughness": "4", "colors": ["G"], "color_identity": ["G"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "restricted", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "5e914d7e-c1e9-446c-a33d-d093c02b2743", "set": "soi", "set_name": "Shadows over Innistrad", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/5e914d7e-c1e9-446c-a33d-d093c02b2743", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Asoi&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/soi?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/25a40334-65d8-46d2-9c56-389e9b32107c/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A5b2c6b44-99b3-496d-93ca-d5211222038f&unique=prints", "collector_number": "207", "digital": false, "rarity": "uncommon", "flavor_text": "\"Their keen sense of smell draws them to the unnatural. To find one is a boon.\"\n\u2014Veka, hinterland inspector", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Lars Grant-West", "artist_ids": ["21ed6499-c4d3-4965-ab02-6c7228275bec"], "illustration_id": "e6a11990-d05a-45c8-a2b1-78c5d10b9bc4", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 8909, "penny_rank": 4173, "prices": {"usd": "0.14", "usd_foil": "0.50", "usd_etched": null, "eur": "0.49", "eur_foil": "0.15", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=409966", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Graf+Mole&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Graf+Mole&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Graf+Mole"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/116403?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Graf+Mole&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/60210?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "598fe7f1-bcc2-4909-9933-06bf02372adc", "oracle_id": "07a26388-773e-4614-a3de-f133c6694d59", "multiverse_ids": [389539], "mtgo_id": 55147, "mtgo_foil_id": 55148, "tcgplayer_id": 94113, "cardmarket_id": 270460, "name": "Grave Sifter", "lang": "en", "released_at": "2014-11-07", "uri": "https://api.scryfall.com/cards/598fe7f1-bcc2-4909-9933-06bf02372adc", "scryfall_uri": "https://scryfall.com/card/c14/44/grave-sifter?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/5/9/598fe7f1-bcc2-4909-9933-06bf02372adc.jpg?1561943333", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/9/598fe7f1-bcc2-4909-9933-06bf02372adc.jpg?1561943333", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/5/9/598fe7f1-bcc2-4909-9933-06bf02372adc.jpg?1561943333", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/5/9/598fe7f1-bcc2-4909-9933-06bf02372adc.png?1561943333", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/9/598fe7f1-bcc2-4909-9933-06bf02372adc.jpg?1561943333", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/5/9/598fe7f1-bcc2-4909-9933-06bf02372adc.jpg?1561943333"}, "mana_cost": "{5}{G}", "cmc": 6.0, "type_line": "Creature \u2014 Elemental Beast", "oracle_text": "When Grave Sifter enters the battlefield, each player chooses a creature type and returns any number of cards of that type from their graveyard to their hand.", "power": "5", "toughness": "7", "colors": ["G"], "color_identity": ["G"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "0980a6e2-eb78-4ad2-8396-cef08fce365e", "set": "c14", "set_name": "Commander 2014", "set_type": "commander", "set_uri": "https://api.scryfall.com/sets/0980a6e2-eb78-4ad2-8396-cef08fce365e", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ac14&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/c14?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/598fe7f1-bcc2-4909-9933-06bf02372adc/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A07a26388-773e-4614-a3de-f133c6694d59&unique=prints", "collector_number": "44", "digital": false, "rarity": "rare", "flavor_text": "It claws at the earth in a vain attempt to reclaim what it once was.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Jesper Ejsing", "artist_ids": ["a5f8354a-8b51-4e59-96b2-0e3aeae4fa1d"], "illustration_id": "beced345-21e6-46b0-a6ff-2285e757f7b8", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "edhrec_rank": 9379, "prices": {"usd": "0.32", "usd_foil": null, "usd_etched": null, "eur": "0.35", "eur_foil": null, "tix": "0.46"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=389539", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Grave+Sifter&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Grave+Sifter&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Grave+Sifter"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/94113?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Grave+Sifter&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/55147?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "0c16e565-0b7f-46b1-a091-64c47c923a9f", "oracle_id": "b81ed78a-1bcc-4a98-8d06-6c9fdff0a8d3", "multiverse_ids": [29714], "mtgo_id": 17793, "mtgo_foil_id": 17794, "tcgplayer_id": 10460, "cardmarket_id": 1717, "name": "Graxiplon", "lang": "en", "released_at": "2002-10-07", "uri": "https://api.scryfall.com/cards/0c16e565-0b7f-46b1-a091-64c47c923a9f", "scryfall_uri": "https://scryfall.com/card/ons/86/graxiplon?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/0/c/0c16e565-0b7f-46b1-a091-64c47c923a9f.jpg?1562897735", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/c/0c16e565-0b7f-46b1-a091-64c47c923a9f.jpg?1562897735", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/0/c/0c16e565-0b7f-46b1-a091-64c47c923a9f.jpg?1562897735", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/0/c/0c16e565-0b7f-46b1-a091-64c47c923a9f.png?1562897735", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/c/0c16e565-0b7f-46b1-a091-64c47c923a9f.jpg?1562897735", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/0/c/0c16e565-0b7f-46b1-a091-64c47c923a9f.jpg?1562897735"}, "mana_cost": "{5}{U}", "cmc": 6.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Graxiplon can't be blocked unless defending player controls three or more creatures that share a creature type.", "power": "3", "toughness": "4", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "restricted", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "914a6c6d-cb3b-45e8-a2db-9978a2339faf", "set": "ons", "set_name": "Onslaught", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/914a6c6d-cb3b-45e8-a2db-9978a2339faf", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aons&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ons?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/0c16e565-0b7f-46b1-a091-64c47c923a9f/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ab81ed78a-1bcc-4a98-8d06-6c9fdff0a8d3&unique=prints", "collector_number": "86", "digital": false, "rarity": "uncommon", "flavor_text": "\"Attempts to revive this ancient species have not been entirely successful, but results indicate potential for future development.\"\n\u2014Riptide Project researcher", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Iain McCaig", "artist_ids": ["8d244b88-ef56-4523-8c0c-9fecccc4ab9d"], "illustration_id": "66a9e603-29f7-471f-b372-be79563c5cc4", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 22997, "prices": {"usd": "0.09", "usd_foil": "0.47", "usd_etched": null, "eur": "0.15", "eur_foil": "0.50", "tix": "0.04"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=29714", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Graxiplon&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Graxiplon&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Graxiplon"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/10460?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Graxiplon&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/17793?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "68ccef2d-9a1f-4011-89e1-911bcc109b9d", "oracle_id": "a2db1035-008e-4de3-b5e5-2a0de83082b2", "multiverse_ids": [153428], "mtgo_id": 30090, "mtgo_foil_id": 30091, "tcgplayer_id": 27125, "cardmarket_id": 19615, "name": "Grazing Kelpie", "lang": "en", "released_at": "2008-07-25", "uri": "https://api.scryfall.com/cards/68ccef2d-9a1f-4011-89e1-911bcc109b9d", "scryfall_uri": "https://scryfall.com/card/eve/153/grazing-kelpie?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/6/8/68ccef2d-9a1f-4011-89e1-911bcc109b9d.jpg?1562916942", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/8/68ccef2d-9a1f-4011-89e1-911bcc109b9d.jpg?1562916942", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/6/8/68ccef2d-9a1f-4011-89e1-911bcc109b9d.jpg?1562916942", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/6/8/68ccef2d-9a1f-4011-89e1-911bcc109b9d.png?1562916942", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/8/68ccef2d-9a1f-4011-89e1-911bcc109b9d.jpg?1562916942", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/6/8/68ccef2d-9a1f-4011-89e1-911bcc109b9d.jpg?1562916942"}, "mana_cost": "{3}{G/U}", "cmc": 4.0, "type_line": "Creature \u2014 Beast", "oracle_text": "{G/U}, Sacrifice Grazing Kelpie: Put target card from a graveyard on the bottom of its owner's library.\nPersist (When this creature dies, if it had no -1/-1 counters on it, return it to the battlefield under its owner's control with a -1/-1 counter on it.)", "power": "2", "toughness": "3", "colors": ["G", "U"], "color_identity": ["G", "U"], "keywords": ["Persist"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "86b4dfef-f2d1-49d6-825d-7df6bda44357", "set": "eve", "set_name": "Eventide", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/86b4dfef-f2d1-49d6-825d-7df6bda44357", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aeve&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/eve?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/68ccef2d-9a1f-4011-89e1-911bcc109b9d/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aa2db1035-008e-4de3-b5e5-2a0de83082b2&unique=prints", "collector_number": "153", "digital": false, "rarity": "common", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Drew Tucker", "artist_ids": ["22eef389-7b21-4dda-95dc-4c9a0f1bf4dd"], "illustration_id": "5444c7b8-a44a-42f7-8a3d-943908609b28", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 17159, "penny_rank": 12634, "prices": {"usd": "0.10", "usd_foil": "0.31", "usd_etched": null, "eur": "0.02", "eur_foil": "0.28", "tix": "0.04"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=153428", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Grazing+Kelpie&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Grazing+Kelpie&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Grazing+Kelpie"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/27125?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Grazing+Kelpie&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/30090?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "653ddfa0-2088-4503-a3ab-b0f1d55d8351", "oracle_id": "406b4b1d-756b-4062-897d-3693832086a0", "multiverse_ids": [111048], "mtgo_id": 25581, "mtgo_foil_id": 25582, "tcgplayer_id": 14251, "cardmarket_id": 13861, "name": "Greater Gargadon", "lang": "en", "released_at": "2006-10-06", "uri": "https://api.scryfall.com/cards/653ddfa0-2088-4503-a3ab-b0f1d55d8351", "scryfall_uri": "https://scryfall.com/card/tsp/161/greater-gargadon?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/6/5/653ddfa0-2088-4503-a3ab-b0f1d55d8351.jpg?1562916161", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/5/653ddfa0-2088-4503-a3ab-b0f1d55d8351.jpg?1562916161", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/6/5/653ddfa0-2088-4503-a3ab-b0f1d55d8351.jpg?1562916161", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/6/5/653ddfa0-2088-4503-a3ab-b0f1d55d8351.png?1562916161", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/5/653ddfa0-2088-4503-a3ab-b0f1d55d8351.jpg?1562916161", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/6/5/653ddfa0-2088-4503-a3ab-b0f1d55d8351.jpg?1562916161"}, "mana_cost": "{9}{R}", "cmc": 10.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Suspend 10\u2014{R}\nSacrifice an artifact, creature, or land: Remove a time counter from Greater Gargadon. Activate only if Greater Gargadon is suspended.", "power": "9", "toughness": "7", "colors": ["R"], "color_identity": ["R"], "keywords": ["Suspend"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "c1d109bc-ffd8-428f-8d7d-3f8d7e648046", "set": "tsp", "set_name": "Time Spiral", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/c1d109bc-ffd8-428f-8d7d-3f8d7e648046", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Atsp&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/tsp?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/653ddfa0-2088-4503-a3ab-b0f1d55d8351/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A406b4b1d-756b-4062-897d-3693832086a0&unique=prints", "collector_number": "161", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Rob Alexander", "artist_ids": ["35906871-6c78-4ab2-9ed1-e6792c8efb74"], "illustration_id": "54a888c0-e6ec-4c0a-8ec7-c50357d368b6", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 6752, "penny_rank": 839, "prices": {"usd": "0.81", "usd_foil": "5.79", "usd_etched": null, "eur": "0.87", "eur_foil": "6.50", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=111048", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Greater+Gargadon&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Greater+Gargadon&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Greater+Gargadon"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/14251?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Greater+Gargadon&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/25581?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "122e08cb-407b-4b3d-8af0-077ff96bf160", "oracle_id": "b193a6df-da22-4e3c-a086-5b02c604089e", "multiverse_ids": [391848], "mtgo_id": 55570, "mtgo_foil_id": 55571, "tcgplayer_id": 95367, "cardmarket_id": 271644, "name": "Great-Horn Krushok", "lang": "en", "released_at": "2015-01-23", "uri": "https://api.scryfall.com/cards/122e08cb-407b-4b3d-8af0-077ff96bf160", "scryfall_uri": "https://scryfall.com/card/frf/13/great-horn-krushok?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/1/2/122e08cb-407b-4b3d-8af0-077ff96bf160.jpg?1562822577", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/2/122e08cb-407b-4b3d-8af0-077ff96bf160.jpg?1562822577", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/1/2/122e08cb-407b-4b3d-8af0-077ff96bf160.jpg?1562822577", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/1/2/122e08cb-407b-4b3d-8af0-077ff96bf160.png?1562822577", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/2/122e08cb-407b-4b3d-8af0-077ff96bf160.jpg?1562822577", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/1/2/122e08cb-407b-4b3d-8af0-077ff96bf160.jpg?1562822577"}, "mana_cost": "{4}{W}", "cmc": 5.0, "type_line": "Creature \u2014 Beast", "oracle_text": "", "power": "3", "toughness": "5", "colors": ["W"], "color_identity": ["W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "7bb5cb2b-081a-4c8c-b7e1-494046e6baa1", "set": "frf", "set_name": "Fate Reforged", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/7bb5cb2b-081a-4c8c-b7e1-494046e6baa1", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Afrf&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/frf?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/122e08cb-407b-4b3d-8af0-077ff96bf160/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ab193a6df-da22-4e3c-a086-5b02c604089e&unique=prints", "collector_number": "13", "digital": false, "rarity": "common", "flavor_text": "Perfectly suited for life in the Shifting Wastes, the krushok is well protected by its horn, its hide, and its temper.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "YW Tang", "artist_ids": ["63b2909b-7102-49c5-8f9d-6116a1913308"], "illustration_id": "41c3e06d-b23d-4349-af31-2d2684ae2590", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 22563, "prices": {"usd": "0.03", "usd_foil": "0.12", "usd_etched": null, "eur": "0.04", "eur_foil": "0.99", "tix": "0.04"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=391848", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Great-Horn+Krushok&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Great-Horn+Krushok&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Great-Horn+Krushok"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/95367?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Great-Horn+Krushok&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/55570?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "b82f763a-c960-4b59-8c77-f3bea7bd8c8b", "oracle_id": "36f4d359-f46c-4da4-a8c2-1fe1799ac3f7", "multiverse_ids": [96833], "mtgo_id": 23631, "mtgo_foil_id": 23632, "tcgplayer_id": 13701, "cardmarket_id": 13183, "name": "Gristleback", "lang": "en", "released_at": "2006-02-03", "uri": "https://api.scryfall.com/cards/b82f763a-c960-4b59-8c77-f3bea7bd8c8b", "scryfall_uri": "https://scryfall.com/card/gpt/87/gristleback?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/b/8/b82f763a-c960-4b59-8c77-f3bea7bd8c8b.jpg?1593272456", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/8/b82f763a-c960-4b59-8c77-f3bea7bd8c8b.jpg?1593272456", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/b/8/b82f763a-c960-4b59-8c77-f3bea7bd8c8b.jpg?1593272456", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/b/8/b82f763a-c960-4b59-8c77-f3bea7bd8c8b.png?1593272456", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/8/b82f763a-c960-4b59-8c77-f3bea7bd8c8b.jpg?1593272456", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/b/8/b82f763a-c960-4b59-8c77-f3bea7bd8c8b.jpg?1593272456"}, "mana_cost": "{2}{G}", "cmc": 3.0, "type_line": "Creature \u2014 Boar Beast", "oracle_text": "Bloodthirst 1 (If an opponent was dealt damage this turn, this creature enters the battlefield with a +1/+1 counter on it.)\nSacrifice Gristleback: You gain life equal to Gristleback's power.", "power": "2", "toughness": "2", "colors": ["G"], "color_identity": ["G"], "keywords": ["Bloodthirst"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "restricted", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "594b4d09-8ce1-494d-bdb2-842c124bd087", "set": "gpt", "set_name": "Guildpact", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/594b4d09-8ce1-494d-bdb2-842c124bd087", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Agpt&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/gpt?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/b82f763a-c960-4b59-8c77-f3bea7bd8c8b/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A36f4d359-f46c-4da4-a8c2-1fe1799ac3f7&unique=prints", "collector_number": "87", "digital": false, "rarity": "uncommon", "watermark": "gruul", "flavor_text": "Loyal in battle, hearty in stew.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Lars Grant-West", "artist_ids": ["21ed6499-c4d3-4965-ab02-6c7228275bec"], "illustration_id": "c5bd9c4f-091e-45f9-b89b-9fcc7549a515", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 18669, "penny_rank": 12080, "prices": {"usd": "0.11", "usd_foil": "0.27", "usd_etched": null, "eur": "0.02", "eur_foil": "0.10", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=96833", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Gristleback&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Gristleback&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Gristleback"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/13701?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Gristleback&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/23631?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "75e84098-c15c-40f4-9d8a-3fa5da26a268", "oracle_id": "32a8ca5f-0170-4f5d-97cd-63e2b74fd653", "multiverse_ids": [48600], "mtgo_id": 20163, "mtgo_foil_id": 20164, "tcgplayer_id": 11439, "cardmarket_id": 121, "name": "Groffskithur", "lang": "en", "released_at": "2003-10-02", "uri": "https://api.scryfall.com/cards/75e84098-c15c-40f4-9d8a-3fa5da26a268", "scryfall_uri": "https://scryfall.com/card/mrd/121/groffskithur?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/7/5/75e84098-c15c-40f4-9d8a-3fa5da26a268.jpg?1562148057", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/5/75e84098-c15c-40f4-9d8a-3fa5da26a268.jpg?1562148057", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/7/5/75e84098-c15c-40f4-9d8a-3fa5da26a268.jpg?1562148057", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/7/5/75e84098-c15c-40f4-9d8a-3fa5da26a268.png?1562148057", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/5/75e84098-c15c-40f4-9d8a-3fa5da26a268.jpg?1562148057", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/7/5/75e84098-c15c-40f4-9d8a-3fa5da26a268.jpg?1562148057"}, "mana_cost": "{5}{G}", "cmc": 6.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Whenever Groffskithur becomes blocked, you may return target card named Groffskithur from your graveyard to your hand.", "power": "3", "toughness": "3", "colors": ["G"], "color_identity": ["G"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "1d4f90ba-8d4a-4ee5-bc2f-e2d6bffe4955", "set": "mrd", "set_name": "Mirrodin", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/1d4f90ba-8d4a-4ee5-bc2f-e2d6bffe4955", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Amrd&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/mrd?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/75e84098-c15c-40f4-9d8a-3fa5da26a268/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A32a8ca5f-0170-4f5d-97cd-63e2b74fd653&unique=prints", "collector_number": "121", "digital": false, "rarity": "common", "flavor_text": "It growls not to threaten, but to summon.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "John Matson", "artist_ids": ["a1685587-4b55-446b-b420-c37b202ed3f1"], "illustration_id": "e9b8ae26-73a0-47b3-bc6a-b310a6e327ac", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 23187, "prices": {"usd": "0.06", "usd_foil": "0.31", "usd_etched": null, "eur": "0.02", "eur_foil": "0.09", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=48600", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Groffskithur&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Groffskithur&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Groffskithur"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/11439?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Groffskithur&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/20163?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "47f6301a-d581-4aaf-9993-3013323074aa", "oracle_id": "22c8c952-2713-418e-8259-aea09b4e740b", "multiverse_ids": [6083], "mtgo_id": 10621, "mtgo_foil_id": 10622, "tcgplayer_id": 4331, "cardmarket_id": 9291, "name": "Grollub", "lang": "en", "released_at": "1998-06-15", "uri": "https://api.scryfall.com/cards/47f6301a-d581-4aaf-9993-3013323074aa", "scryfall_uri": "https://scryfall.com/card/exo/63/grollub?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/4/7/47f6301a-d581-4aaf-9993-3013323074aa.jpg?1562087828", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/7/47f6301a-d581-4aaf-9993-3013323074aa.jpg?1562087828", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/4/7/47f6301a-d581-4aaf-9993-3013323074aa.jpg?1562087828", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/4/7/47f6301a-d581-4aaf-9993-3013323074aa.png?1562087828", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/7/47f6301a-d581-4aaf-9993-3013323074aa.jpg?1562087828", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/4/7/47f6301a-d581-4aaf-9993-3013323074aa.jpg?1562087828"}, "mana_cost": "{2}{B}", "cmc": 3.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Whenever Grollub is dealt damage, each opponent gains that much life.", "power": "3", "toughness": "3", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "1401f7af-2e71-476d-9813-991084ed0bb9", "set": "exo", "set_name": "Exodus", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/1401f7af-2e71-476d-9813-991084ed0bb9", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aexo&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/exo?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/47f6301a-d581-4aaf-9993-3013323074aa/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A22c8c952-2713-418e-8259-aea09b4e740b&unique=prints", "collector_number": "63", "digital": false, "rarity": "common", "flavor_text": "Mogglings caught in a misdeed often blame the grollub. Even though the creature is usually innocent, no taskmaster can resist an excuse to beat it.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Chippy", "artist_ids": ["a36f01a0-e51a-48b2-a556-b9b3bc73f969"], "illustration_id": "833c17be-7ab8-4e08-a5f3-106122f62cf8", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 21460, "prices": {"usd": "0.08", "usd_foil": null, "usd_etched": null, "eur": "0.05", "eur_foil": null, "tix": "0.09"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=6083", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Grollub&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Grollub&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Grollub"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/4331?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Grollub&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/10621?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "9855ce83-ae26-4b1d-ab7f-637cde09d679", "oracle_id": "68fc3611-8d82-4f87-ab50-603790a27455", "multiverse_ids": [107683], "mtgo_id": 23905, "mtgo_foil_id": 23906, "tcgplayer_id": 13703, "cardmarket_id": 13185, "name": "Gruul Nodorog", "lang": "en", "released_at": "2006-02-03", "uri": "https://api.scryfall.com/cards/9855ce83-ae26-4b1d-ab7f-637cde09d679", "scryfall_uri": "https://scryfall.com/card/gpt/88/gruul-nodorog?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/9/8/9855ce83-ae26-4b1d-ab7f-637cde09d679.jpg?1593272463", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/8/9855ce83-ae26-4b1d-ab7f-637cde09d679.jpg?1593272463", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/9/8/9855ce83-ae26-4b1d-ab7f-637cde09d679.jpg?1593272463", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/9/8/9855ce83-ae26-4b1d-ab7f-637cde09d679.png?1593272463", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/8/9855ce83-ae26-4b1d-ab7f-637cde09d679.jpg?1593272463", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/9/8/9855ce83-ae26-4b1d-ab7f-637cde09d679.jpg?1593272463"}, "mana_cost": "{4}{G}{G}", "cmc": 6.0, "type_line": "Creature \u2014 Beast", "oracle_text": "{R}: Gruul Nodorog gains menace until end of turn. (It can't be blocked except by two or more creatures.)", "power": "4", "toughness": "4", "colors": ["G"], "color_identity": ["G", "R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "594b4d09-8ce1-494d-bdb2-842c124bd087", "set": "gpt", "set_name": "Guildpact", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/594b4d09-8ce1-494d-bdb2-842c124bd087", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Agpt&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/gpt?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/9855ce83-ae26-4b1d-ab7f-637cde09d679/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A68fc3611-8d82-4f87-ab50-603790a27455&unique=prints", "collector_number": "88", "digital": false, "rarity": "common", "watermark": "gruul", "flavor_text": "Petting the nodorog\n\u2014Gruul expression meaning \"making a really big mistake\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Pete Venters", "artist_ids": ["d54c4a1a-c0c5-4834-84db-125d341f3ad8"], "illustration_id": "10486fa3-2c83-4592-b587-abd8c8a33ee0", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 22714, "prices": {"usd": "0.04", "usd_foil": "0.19", "usd_etched": null, "eur": "0.02", "eur_foil": "0.15", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=107683", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Gruul+Nodorog&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Gruul+Nodorog&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Gruul+Nodorog"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/13703?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Gruul+Nodorog&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/23905?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "080ef367-7904-4e5c-a8b4-1fb62f951f3e", "oracle_id": "e5fa93a3-0b2b-4477-ad3f-4fc1b325ca19", "multiverse_ids": [366398], "mtgo_id": 47923, "mtgo_foil_id": 47924, "tcgplayer_id": 67449, "cardmarket_id": 259960, "name": "Gruul Ragebeast", "lang": "en", "released_at": "2013-02-01", "uri": "https://api.scryfall.com/cards/080ef367-7904-4e5c-a8b4-1fb62f951f3e", "scryfall_uri": "https://scryfall.com/card/gtc/170/gruul-ragebeast?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/0/8/080ef367-7904-4e5c-a8b4-1fb62f951f3e.jpg?1561814762", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/8/080ef367-7904-4e5c-a8b4-1fb62f951f3e.jpg?1561814762", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/0/8/080ef367-7904-4e5c-a8b4-1fb62f951f3e.jpg?1561814762", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/0/8/080ef367-7904-4e5c-a8b4-1fb62f951f3e.png?1561814762", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/8/080ef367-7904-4e5c-a8b4-1fb62f951f3e.jpg?1561814762", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/0/8/080ef367-7904-4e5c-a8b4-1fb62f951f3e.jpg?1561814762"}, "mana_cost": "{5}{R}{G}", "cmc": 7.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Whenever Gruul Ragebeast or another creature enters the battlefield under your control, that creature fights target creature an opponent controls.", "power": "6", "toughness": "6", "colors": ["G", "R"], "color_identity": ["G", "R"], "keywords": ["Fight"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "035a05f7-e020-4f50-a141-ed16ba704bd2", "set": "gtc", "set_name": "Gatecrash", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/035a05f7-e020-4f50-a141-ed16ba704bd2", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Agtc&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/gtc?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/080ef367-7904-4e5c-a8b4-1fb62f951f3e/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ae5fa93a3-0b2b-4477-ad3f-4fc1b325ca19&unique=prints", "collector_number": "170", "digital": false, "rarity": "rare", "watermark": "gruul", "flavor_text": "\"If the other guilds want a war, they should know we've been ready the whole time.\"\n\u2014Ruric Thar, Ghor-Clan chieftain", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Dave Kendall", "artist_ids": ["8a5540a8-18c9-4fa9-802c-59d6866114d5"], "illustration_id": "fe72043b-69d0-4a74-b4b7-5941d66e331f", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 4732, "penny_rank": 2385, "prices": {"usd": "0.21", "usd_foil": "0.80", "usd_etched": null, "eur": "0.31", "eur_foil": "0.70", "tix": "0.01"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=366398", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Gruul+Ragebeast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Gruul+Ragebeast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Gruul+Ragebeast"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/67449?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Gruul+Ragebeast&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/47923?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "9941f83b-2903-4eab-ac6d-5313e3978fa3", "oracle_id": "34c3aebe-a224-426a-ae06-f3145193313e", "multiverse_ids": [918], "tcgplayer_id": 3199, "cardmarket_id": 6784, "name": "Guardian Beast", "lang": "en", "released_at": "1993-12-17", "uri": "https://api.scryfall.com/cards/9941f83b-2903-4eab-ac6d-5313e3978fa3", "scryfall_uri": "https://scryfall.com/card/arn/26/guardian-beast?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/9/9/9941f83b-2903-4eab-ac6d-5313e3978fa3.jpg?1562923479", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/9/9941f83b-2903-4eab-ac6d-5313e3978fa3.jpg?1562923479", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/9/9/9941f83b-2903-4eab-ac6d-5313e3978fa3.jpg?1562923479", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/9/9/9941f83b-2903-4eab-ac6d-5313e3978fa3.png?1562923479", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/9/9941f83b-2903-4eab-ac6d-5313e3978fa3.jpg?1562923479", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/9/9/9941f83b-2903-4eab-ac6d-5313e3978fa3.jpg?1562923479"}, "mana_cost": "{3}{B}", "cmc": 4.0, "type_line": "Creature \u2014 Beast", "oracle_text": "As long as Guardian Beast is untapped, noncreature artifacts you control can't be enchanted, they have indestructible, and other players can't gain control of them. This effect doesn't remove Auras already attached to those artifacts.", "power": "2", "toughness": "4", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": true, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "856f63eb-e056-43e5-8a56-7a58e1608940", "set": "arn", "set_name": "Arabian Nights", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/856f63eb-e056-43e5-8a56-7a58e1608940", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aarn&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/arn?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/9941f83b-2903-4eab-ac6d-5313e3978fa3/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A34c3aebe-a224-426a-ae06-f3145193313e&unique=prints", "collector_number": "26", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Ken Meyer, Jr.", "artist_ids": ["466f5d1e-384e-47d9-8d2c-c6ae33ffa687"], "illustration_id": "1617dd0a-18b6-47ef-a2f7-2df6d0bc0d67", "border_color": "black", "frame": "1993", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 15848, "prices": {"usd": "718.14", "usd_foil": null, "usd_etched": null, "eur": "800.00", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=918", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Guardian+Beast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Guardian+Beast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Guardian+Beast"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/3199?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Guardian+Beast&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Guardian+Beast&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "bf424982-a0ab-4db9-8889-f3cef10966c6", "oracle_id": "98a60a97-3a43-4544-8ea3-40d0bad79caf", "multiverse_ids": [24573], "mtgo_id": 14241, "mtgo_foil_id": 14242, "tcgplayer_id": 7312, "cardmarket_id": 3929, "name": "Gulf Squid", "lang": "en", "released_at": "2000-06-05", "uri": "https://api.scryfall.com/cards/bf424982-a0ab-4db9-8889-f3cef10966c6", "scryfall_uri": "https://scryfall.com/card/pcy/35/gulf-squid?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/b/f/bf424982-a0ab-4db9-8889-f3cef10966c6.jpg?1562930718", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/f/bf424982-a0ab-4db9-8889-f3cef10966c6.jpg?1562930718", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/b/f/bf424982-a0ab-4db9-8889-f3cef10966c6.jpg?1562930718", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/b/f/bf424982-a0ab-4db9-8889-f3cef10966c6.png?1562930718", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/f/bf424982-a0ab-4db9-8889-f3cef10966c6.jpg?1562930718", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/b/f/bf424982-a0ab-4db9-8889-f3cef10966c6.jpg?1562930718"}, "mana_cost": "{3}{U}", "cmc": 4.0, "type_line": "Creature \u2014 Squid Beast", "oracle_text": "When Gulf Squid enters the battlefield, tap all lands target player controls.", "power": "2", "toughness": "2", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "c233bd36-57c0-4aa2-ae6c-7aeabfb4e3ce", "set": "pcy", "set_name": "Prophecy", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/c233bd36-57c0-4aa2-ae6c-7aeabfb4e3ce", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Apcy&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/pcy?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/bf424982-a0ab-4db9-8889-f3cef10966c6/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A98a60a97-3a43-4544-8ea3-40d0bad79caf&unique=prints", "collector_number": "35", "digital": false, "rarity": "common", "flavor_text": "If it could capture the power it wastes, it would be invincible.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Wayne England", "artist_ids": ["62dc90c0-4bc2-4d42-ad76-59cad9243566"], "illustration_id": "b1fb9803-b669-4d45-a550-ea6dd345c74a", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 17284, "prices": {"usd": "0.12", "usd_foil": "6.98", "usd_etched": null, "eur": "0.13", "eur_foil": "1.33", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=24573", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Gulf+Squid&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Gulf+Squid&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Gulf+Squid"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/7312?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Gulf+Squid&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/14241?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "f4e672c6-6ddc-4dd2-b4c7-5083d7566e87", "oracle_id": "835733a2-3738-4fc0-97d5-33156b711ba4", "multiverse_ids": [32221], "mtgo_id": 17061, "mtgo_foil_id": 17062, "tcgplayer_id": 9767, "cardmarket_id": 2395, "name": "Gurzigost", "lang": "en", "released_at": "2002-02-04", "uri": "https://api.scryfall.com/cards/f4e672c6-6ddc-4dd2-b4c7-5083d7566e87", "scryfall_uri": "https://scryfall.com/card/tor/126/gurzigost?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/f/4/f4e672c6-6ddc-4dd2-b4c7-5083d7566e87.jpg?1562632734", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/4/f4e672c6-6ddc-4dd2-b4c7-5083d7566e87.jpg?1562632734", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/f/4/f4e672c6-6ddc-4dd2-b4c7-5083d7566e87.jpg?1562632734", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/f/4/f4e672c6-6ddc-4dd2-b4c7-5083d7566e87.png?1562632734", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/4/f4e672c6-6ddc-4dd2-b4c7-5083d7566e87.jpg?1562632734", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/f/4/f4e672c6-6ddc-4dd2-b4c7-5083d7566e87.jpg?1562632734"}, "mana_cost": "{3}{G}{G}", "cmc": 5.0, "type_line": "Creature \u2014 Beast", "oracle_text": "At the beginning of your upkeep, sacrifice Gurzigost unless you put two cards from your graveyard on the bottom of your library.\n{G}{G}, Discard a card: You may have Gurzigost assign its combat damage this turn as though it weren't blocked.", "power": "6", "toughness": "8", "colors": ["G"], "color_identity": ["G"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "e0b3fda1-a6ca-4996-849b-08b463d39484", "set": "tor", "set_name": "Torment", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/e0b3fda1-a6ca-4996-849b-08b463d39484", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ator&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/tor?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/f4e672c6-6ddc-4dd2-b4c7-5083d7566e87/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A835733a2-3738-4fc0-97d5-33156b711ba4&unique=prints", "collector_number": "126", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Scott M. Fischer", "artist_ids": ["23b0cf43-3e43-44c6-8329-96446eca5bce"], "illustration_id": "8e3f9a70-999e-4c6e-a781-e5340c7815ec", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 18775, "penny_rank": 9598, "prices": {"usd": "0.26", "usd_foil": "4.70", "usd_etched": null, "eur": "0.40", "eur_foil": "3.00", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=32221", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Gurzigost&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Gurzigost&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Gurzigost"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/9767?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Gurzigost&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/17061?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "764e3d28-1876-46da-b927-b98089d62776", "oracle_id": "a65ba9bd-1bc6-41c1-a2a4-04b97a5e9541", "multiverse_ids": [107535], "mtgo_id": 24275, "mtgo_foil_id": 24276, "tcgplayer_id": 13876, "cardmarket_id": 13012, "name": "Helium Squirter", "lang": "en", "released_at": "2006-05-05", "uri": "https://api.scryfall.com/cards/764e3d28-1876-46da-b927-b98089d62776", "scryfall_uri": "https://scryfall.com/card/dis/26/helium-squirter?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/7/6/764e3d28-1876-46da-b927-b98089d62776.jpg?1593272686", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/6/764e3d28-1876-46da-b927-b98089d62776.jpg?1593272686", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/7/6/764e3d28-1876-46da-b927-b98089d62776.jpg?1593272686", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/7/6/764e3d28-1876-46da-b927-b98089d62776.png?1593272686", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/6/764e3d28-1876-46da-b927-b98089d62776.jpg?1593272686", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/7/6/764e3d28-1876-46da-b927-b98089d62776.jpg?1593272686"}, "mana_cost": "{4}{U}", "cmc": 5.0, "type_line": "Creature \u2014 Beast Mutant", "oracle_text": "Graft 3 (This creature enters the battlefield with three +1/+1 counters on it. Whenever another creature enters the battlefield, you may move a +1/+1 counter from this creature onto it.)\n{1}: Target creature with a +1/+1 counter on it gains flying until end of turn.", "power": "0", "toughness": "0", "colors": ["U"], "color_identity": ["U"], "keywords": ["Graft"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "fdebeda1-b95f-4343-8a94-d125821e6b5c", "set": "dis", "set_name": "Dissension", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/fdebeda1-b95f-4343-8a94-d125821e6b5c", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Adis&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/dis?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/764e3d28-1876-46da-b927-b98089d62776/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aa65ba9bd-1bc6-41c1-a2a4-04b97a5e9541&unique=prints", "collector_number": "26", "digital": false, "rarity": "common", "watermark": "simic", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Hideaki Takamura", "artist_ids": ["49b6270b-1b28-4e03-b503-522f97dc3a78"], "illustration_id": "64f470e9-0bf4-491c-8bd3-1eea5c482a27", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 14966, "penny_rank": 10878, "prices": {"usd": "0.06", "usd_foil": "0.27", "usd_etched": null, "eur": "0.02", "eur_foil": "0.09", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=107535", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Helium+Squirter&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Helium+Squirter&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Helium+Squirter"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/13876?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Helium+Squirter&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/24275?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "c3dba1c4-ee9a-4ea6-bf66-f639d38711cd", "oracle_id": "62855d00-4a6b-45a5-a1c0-2e7699e821cb", "multiverse_ids": [484874], "mtgo_id": 80635, "tcgplayer_id": 212205, "cardmarket_id": 452348, "name": "Herald of the Forgotten", "lang": "en", "released_at": "2020-04-17", "uri": "https://api.scryfall.com/cards/c3dba1c4-ee9a-4ea6-bf66-f639d38711cd", "scryfall_uri": "https://scryfall.com/card/c20/27/herald-of-the-forgotten?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/c/3/c3dba1c4-ee9a-4ea6-bf66-f639d38711cd.jpg?1591319371", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/3/c3dba1c4-ee9a-4ea6-bf66-f639d38711cd.jpg?1591319371", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/c/3/c3dba1c4-ee9a-4ea6-bf66-f639d38711cd.jpg?1591319371", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/c/3/c3dba1c4-ee9a-4ea6-bf66-f639d38711cd.png?1591319371", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/3/c3dba1c4-ee9a-4ea6-bf66-f639d38711cd.jpg?1591319371", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/c/3/c3dba1c4-ee9a-4ea6-bf66-f639d38711cd.jpg?1591319371"}, "mana_cost": "{6}{W}{W}", "cmc": 8.0, "type_line": "Creature \u2014 Cat Beast", "oracle_text": "Flying\nWhen Herald of the Forgotten enters the battlefield, if you cast it, return any number of target permanent cards with cycling abilities from your graveyard to the battlefield.", "power": "6", "toughness": "6", "colors": ["W"], "color_identity": ["W"], "keywords": ["Flying"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "f60ec786-1f8d-42f7-9abc-0d880fe243f6", "set": "c20", "set_name": "Commander 2020", "set_type": "commander", "set_uri": "https://api.scryfall.com/sets/f60ec786-1f8d-42f7-9abc-0d880fe243f6", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ac20&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/c20?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/c3dba1c4-ee9a-4ea6-bf66-f639d38711cd/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A62855d00-4a6b-45a5-a1c0-2e7699e821cb&unique=prints", "collector_number": "27", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Antonio Jos\u00e9 Manzanedo", "artist_ids": ["74986d28-0001-4a78-827c-e490b325d0e3"], "illustration_id": "a113a554-7528-47d3-b8e5-482290412d41", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "edhrec_rank": 6839, "preview": {"source": "EDHREC", "source_uri": "https://www.youtube.com/watch?v=QkYFxCv7cLg", "previewed_at": "2020-04-05"}, "prices": {"usd": "0.11", "usd_foil": null, "usd_etched": null, "eur": "0.16", "eur_foil": null, "tix": "0.37"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=484874", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Herald+of+the+Forgotten&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Herald+of+the+Forgotten&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Herald+of+the+Forgotten"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/212205?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Herald+of+the+Forgotten&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/80635?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "c1e9cef5-c55f-47d9-9d2f-300dab8fcb0b", "oracle_id": "03873314-6e64-43ab-95c0-3d8692a57a03", "multiverse_ids": [522241], "mtgo_id": 90707, "tcgplayer_id": 239852, "cardmarket_id": 566468, "name": "Herd Baloth", "lang": "en", "released_at": "2021-06-18", "uri": "https://api.scryfall.com/cards/c1e9cef5-c55f-47d9-9d2f-300dab8fcb0b", "scryfall_uri": "https://scryfall.com/card/mh2/165/herd-baloth?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/c/1/c1e9cef5-c55f-47d9-9d2f-300dab8fcb0b.jpg?1626097560", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/1/c1e9cef5-c55f-47d9-9d2f-300dab8fcb0b.jpg?1626097560", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/c/1/c1e9cef5-c55f-47d9-9d2f-300dab8fcb0b.jpg?1626097560", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/c/1/c1e9cef5-c55f-47d9-9d2f-300dab8fcb0b.png?1626097560", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/1/c1e9cef5-c55f-47d9-9d2f-300dab8fcb0b.jpg?1626097560", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/c/1/c1e9cef5-c55f-47d9-9d2f-300dab8fcb0b.jpg?1626097560"}, "mana_cost": "{3}{G}{G}", "cmc": 5.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Whenever one or more +1/+1 counters are put on Herd Baloth, you may create a 4/4 green Beast creature token.", "power": "4", "toughness": "4", "colors": ["G"], "color_identity": ["G"], "keywords": [], "all_parts": [{"object": "related_card", "id": "c1e9cef5-c55f-47d9-9d2f-300dab8fcb0b", "component": "combo_piece", "name": "Herd Baloth", "type_line": "Creature \u2014 Beast", "uri": "https://api.scryfall.com/cards/c1e9cef5-c55f-47d9-9d2f-300dab8fcb0b"}, {"object": "related_card", "id": "a1eff7f8-b645-41cb-bcd9-3dc1ab10200e", "component": "token", "name": "Beast", "type_line": "Token Creature \u2014 Beast", "uri": "https://api.scryfall.com/cards/a1eff7f8-b645-41cb-bcd9-3dc1ab10200e"}], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "restricted", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "c1c7eb8c-f205-40ab-a609-767cb296544e", "set": "mh2", "set_name": "Modern Horizons 2", "set_type": "draft_innovation", "set_uri": "https://api.scryfall.com/sets/c1c7eb8c-f205-40ab-a609-767cb296544e", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Amh2&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/mh2?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/c1e9cef5-c55f-47d9-9d2f-300dab8fcb0b/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A03873314-6e64-43ab-95c0-3d8692a57a03&unique=prints", "collector_number": "165", "digital": false, "rarity": "uncommon", "flavor_text": "Baloth social structure is simple: the biggest one's the leader.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Nicholas Gregory", "artist_ids": ["a1bba8ff-63b4-4786-b1c4-f1bfe5d3ab1c"], "illustration_id": "d81b0e1e-8c04-41ef-8943-937a23a1b75d", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 4167, "penny_rank": 8027, "preview": {"source": "Commander Cookout", "source_uri": "https://www.youtube.com/watch?v=dPNFOFyyHMQ", "previewed_at": "2021-05-27"}, "prices": {"usd": "0.19", "usd_foil": "0.24", "usd_etched": null, "eur": "0.11", "eur_foil": "0.12", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=522241", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Herd+Baloth&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Herd+Baloth&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Herd+Baloth"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/239852?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Herd+Baloth&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/90707?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "9cf4fd75-34b1-4afa-b8cd-777dfc9e6376", "oracle_id": "89cf4d99-64e9-4e5c-9edc-ea077a193332", "multiverse_ids": [118873], "mtgo_id": 25783, "mtgo_foil_id": 25784, "tcgplayer_id": 14259, "cardmarket_id": 13869, "name": "Herd Gnarr", "lang": "en", "released_at": "2006-10-06", "uri": "https://api.scryfall.com/cards/9cf4fd75-34b1-4afa-b8cd-777dfc9e6376", "scryfall_uri": "https://scryfall.com/card/tsp/200/herd-gnarr?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/9/c/9cf4fd75-34b1-4afa-b8cd-777dfc9e6376.jpg?1562928115", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/c/9cf4fd75-34b1-4afa-b8cd-777dfc9e6376.jpg?1562928115", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/9/c/9cf4fd75-34b1-4afa-b8cd-777dfc9e6376.jpg?1562928115", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/9/c/9cf4fd75-34b1-4afa-b8cd-777dfc9e6376.png?1562928115", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/c/9cf4fd75-34b1-4afa-b8cd-777dfc9e6376.jpg?1562928115", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/9/c/9cf4fd75-34b1-4afa-b8cd-777dfc9e6376.jpg?1562928115"}, "mana_cost": "{3}{G}", "cmc": 4.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Whenever another creature enters the battlefield under your control, Herd Gnarr gets +2/+2 until end of turn.", "power": "2", "toughness": "2", "colors": ["G"], "color_identity": ["G"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "c1d109bc-ffd8-428f-8d7d-3f8d7e648046", "set": "tsp", "set_name": "Time Spiral", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/c1d109bc-ffd8-428f-8d7d-3f8d7e648046", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Atsp&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/tsp?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/9cf4fd75-34b1-4afa-b8cd-777dfc9e6376/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A89cf4d99-64e9-4e5c-9edc-ea077a193332&unique=prints", "collector_number": "200", "digital": false, "rarity": "common", "flavor_text": "Long ago, the solitary gnarr was a sign of good luck. Now they have become wild pack hunters, a sign of impending danger.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Daren Bader", "artist_ids": ["7da1a585-c875-45e4-b322-5da9e8e1f651"], "illustration_id": "2cdefd9c-dc4b-4d99-9b92-2693e556a216", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 22137, "prices": {"usd": "0.09", "usd_foil": "0.26", "usd_etched": null, "eur": "0.02", "eur_foil": "0.10", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=118873", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Herd+Gnarr&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Herd+Gnarr&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Herd+Gnarr"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/14259?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Herd+Gnarr&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/25783?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "ecbeac44-9392-4522-8ff5-87079386bd0a", "oracle_id": "43296f8b-58d9-446e-a538-1c4921552c41", "multiverse_ids": [476067], "mtgo_id": 79700, "tcgplayer_id": 200603, "cardmarket_id": 410939, "name": "Highcliff Felidar", "lang": "en", "released_at": "2019-11-15", "uri": "https://api.scryfall.com/cards/ecbeac44-9392-4522-8ff5-87079386bd0a", "scryfall_uri": "https://scryfall.com/card/gn2/1/highcliff-felidar?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/e/c/ecbeac44-9392-4522-8ff5-87079386bd0a.jpg?1576267130", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/c/ecbeac44-9392-4522-8ff5-87079386bd0a.jpg?1576267130", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/e/c/ecbeac44-9392-4522-8ff5-87079386bd0a.jpg?1576267130", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/e/c/ecbeac44-9392-4522-8ff5-87079386bd0a.png?1576267130", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/c/ecbeac44-9392-4522-8ff5-87079386bd0a.jpg?1576267130", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/e/c/ecbeac44-9392-4522-8ff5-87079386bd0a.jpg?1576267130"}, "mana_cost": "{5}{W}{W}", "cmc": 7.0, "type_line": "Creature \u2014 Cat Beast", "oracle_text": "Vigilance\nWhen Highcliff Felidar enters the battlefield, for each opponent, choose a creature with the greatest power among creatures that player controls. Destroy those creatures.", "power": "5", "toughness": "5", "colors": ["W"], "color_identity": ["W"], "keywords": ["Vigilance"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": false, "finishes": ["foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "a72727dd-dbab-4158-a772-a08825735169", "set": "gn2", "set_name": "Game Night 2019", "set_type": "box", "set_uri": "https://api.scryfall.com/sets/a72727dd-dbab-4158-a772-a08825735169", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Agn2&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/gn2?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/ecbeac44-9392-4522-8ff5-87079386bd0a/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A43296f8b-58d9-446e-a538-1c4921552c41&unique=prints", "collector_number": "1", "digital": false, "rarity": "mythic", "flavor_text": "Once the felidar has marked you as prey, there's no point in running.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Kimonas Theodossiou", "artist_ids": ["fa058291-5283-4b33-a65e-d4911cb319bb"], "illustration_id": "e3a12b5e-b59f-436a-85da-c0cd238ab271", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "edhrec_rank": 10654, "prices": {"usd": null, "usd_foil": "2.59", "usd_etched": null, "eur": null, "eur_foil": "3.47", "tix": "0.16"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=476067", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Highcliff+Felidar&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Highcliff+Felidar&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Highcliff+Felidar"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/200603?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Highcliff+Felidar&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/79700?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "052ab91f-ac01-43f4-9276-9af35dbfbf71", "oracle_id": "a13b02c2-7ec1-4032-99cc-c76fe512914e", "multiverse_ids": [262868], "mtgo_id": 43451, "mtgo_foil_id": 43452, "tcgplayer_id": 57846, "cardmarket_id": 252614, "name": "Hollowhenge Beast", "lang": "en", "released_at": "2012-02-03", "uri": "https://api.scryfall.com/cards/052ab91f-ac01-43f4-9276-9af35dbfbf71", "scryfall_uri": "https://scryfall.com/card/dka/118/hollowhenge-beast?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/0/5/052ab91f-ac01-43f4-9276-9af35dbfbf71.jpg?1562896231", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/5/052ab91f-ac01-43f4-9276-9af35dbfbf71.jpg?1562896231", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/0/5/052ab91f-ac01-43f4-9276-9af35dbfbf71.jpg?1562896231", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/0/5/052ab91f-ac01-43f4-9276-9af35dbfbf71.png?1562896231", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/5/052ab91f-ac01-43f4-9276-9af35dbfbf71.jpg?1562896231", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/0/5/052ab91f-ac01-43f4-9276-9af35dbfbf71.jpg?1562896231"}, "mana_cost": "{3}{G}{G}", "cmc": 5.0, "type_line": "Creature \u2014 Beast", "oracle_text": "", "power": "5", "toughness": "5", "colors": ["G"], "color_identity": ["G"], "keywords": [], "all_parts": [{"object": "related_card", "id": "052ab91f-ac01-43f4-9276-9af35dbfbf71", "component": "combo_piece", "name": "Hollowhenge Beast", "type_line": "Creature \u2014 Beast", "uri": "https://api.scryfall.com/cards/052ab91f-ac01-43f4-9276-9af35dbfbf71"}, {"object": "related_card", "id": "3adb076a-ddec-442d-be01-806e498279ea", "component": "combo_piece", "name": "Hollowhenge Wrangler", "type_line": "Creature \u2014 Elemental", "uri": "https://api.scryfall.com/cards/3adb076a-ddec-442d-be01-806e498279ea"}], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "8052750a-aaf2-46fc-b46d-633f14124017", "set": "dka", "set_name": "Dark Ascension", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/8052750a-aaf2-46fc-b46d-633f14124017", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Adka&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/dka?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/052ab91f-ac01-43f4-9276-9af35dbfbf71/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aa13b02c2-7ec1-4032-99cc-c76fe512914e&unique=prints", "collector_number": "118", "digital": false, "rarity": "common", "flavor_text": "In a world of monsters, it's the stuff of nightmares.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Dave Kendall", "artist_ids": ["8a5540a8-18c9-4fa9-802c-59d6866114d5"], "illustration_id": "608db437-7d32-4645-b2e5-7c6347fbfe7b", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 15639, "prices": {"usd": "0.06", "usd_foil": "0.22", "usd_etched": null, "eur": "0.02", "eur_foil": "0.15", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=262868", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Hollowhenge+Beast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Hollowhenge+Beast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Hollowhenge+Beast"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/57846?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Hollowhenge+Beast&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/43451?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "f525c356-88ca-4e2e-8f06-663be101e34f", "oracle_id": "ade82acb-80c0-4033-aa02-4fa3d69aad69", "multiverse_ids": [42249], "mtgo_id": 18435, "mtgo_foil_id": 18436, "tcgplayer_id": 10805, "cardmarket_id": 2110, "name": "Hundroog", "lang": "en", "released_at": "2003-02-03", "uri": "https://api.scryfall.com/cards/f525c356-88ca-4e2e-8f06-663be101e34f", "scryfall_uri": "https://scryfall.com/card/lgn/129/hundroog?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/f/5/f525c356-88ca-4e2e-8f06-663be101e34f.jpg?1562944359", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/5/f525c356-88ca-4e2e-8f06-663be101e34f.jpg?1562944359", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/f/5/f525c356-88ca-4e2e-8f06-663be101e34f.jpg?1562944359", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/f/5/f525c356-88ca-4e2e-8f06-663be101e34f.png?1562944359", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/5/f525c356-88ca-4e2e-8f06-663be101e34f.jpg?1562944359", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/f/5/f525c356-88ca-4e2e-8f06-663be101e34f.jpg?1562944359"}, "mana_cost": "{6}{G}", "cmc": 7.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Cycling {3} ({3}, Discard this card: Draw a card.)", "power": "4", "toughness": "7", "colors": ["G"], "color_identity": ["G"], "keywords": ["Cycling"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "c2d60a18-1a81-4784-8e0c-e1de2f43c5cf", "set": "lgn", "set_name": "Legions", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/c2d60a18-1a81-4784-8e0c-e1de2f43c5cf", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Algn&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/lgn?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/f525c356-88ca-4e2e-8f06-663be101e34f/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aade82acb-80c0-4033-aa02-4fa3d69aad69&unique=prints", "collector_number": "129", "digital": false, "rarity": "common", "flavor_text": "\"New links are being added to the food chain on a daily basis.\"\n\u2014Riptide Project researcher", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Wayne England", "artist_ids": ["62dc90c0-4bc2-4d42-ad76-59cad9243566"], "illustration_id": "efd4856e-135a-4cd3-b578-565d0cf9ba35", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 20970, "prices": {"usd": "0.38", "usd_foil": "0.33", "usd_etched": null, "eur": "0.02", "eur_foil": "0.19", "tix": "0.11"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=42249", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Hundroog&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Hundroog&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Hundroog"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/10805?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Hundroog&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/18435?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "edda2de4-22f6-4d33-b182-3ae5d105f1f6", "oracle_id": "698c9882-4117-4919-8a19-b1cbffc16692", "multiverse_ids": [45426], "mtgo_id": 19651, "mtgo_foil_id": 19652, "tcgplayer_id": 11218, "cardmarket_id": 894, "name": "Hunted Wumpus", "lang": "en", "released_at": "2003-07-28", "uri": "https://api.scryfall.com/cards/edda2de4-22f6-4d33-b182-3ae5d105f1f6", "scryfall_uri": "https://scryfall.com/card/8ed/258/hunted-wumpus?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/e/d/edda2de4-22f6-4d33-b182-3ae5d105f1f6.jpg?1562942777", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/d/edda2de4-22f6-4d33-b182-3ae5d105f1f6.jpg?1562942777", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/e/d/edda2de4-22f6-4d33-b182-3ae5d105f1f6.jpg?1562942777", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/e/d/edda2de4-22f6-4d33-b182-3ae5d105f1f6.png?1562942777", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/d/edda2de4-22f6-4d33-b182-3ae5d105f1f6.jpg?1562942777", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/e/d/edda2de4-22f6-4d33-b182-3ae5d105f1f6.jpg?1562942777"}, "mana_cost": "{3}{G}", "cmc": 4.0, "type_line": "Creature \u2014 Beast", "oracle_text": "When Hunted Wumpus enters the battlefield, each other player may put a creature card from their hand onto the battlefield.", "power": "6", "toughness": "6", "colors": ["G"], "color_identity": ["G"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "restricted", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "cae8d29d-5979-4d8f-884d-7f3183bcc886", "set": "8ed", "set_name": "Eighth Edition", "set_type": "core", "set_uri": "https://api.scryfall.com/sets/cae8d29d-5979-4d8f-884d-7f3183bcc886", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3A8ed&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/8ed?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/edda2de4-22f6-4d33-b182-3ae5d105f1f6/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A698c9882-4117-4919-8a19-b1cbffc16692&unique=prints", "collector_number": "258", "digital": false, "rarity": "uncommon", "flavor_text": "Just one can feed a dozen people for a month.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Thomas M. Baxa", "artist_ids": ["ff346569-557d-4043-ae44-97c2c7cabd7d"], "illustration_id": "0606b50c-4ebb-4c86-a0d1-40a81db01445", "border_color": "white", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 9098, "penny_rank": 12827, "prices": {"usd": "0.09", "usd_foil": "0.58", "usd_etched": null, "eur": "0.08", "eur_foil": "0.23", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=45426", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Hunted+Wumpus&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Hunted+Wumpus&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Hunted+Wumpus"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/11218?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Hunted+Wumpus&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/19651?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "b21c8b2d-ef0f-4839-acfc-20fd248c62cf", "oracle_id": "698c9882-4117-4919-8a19-b1cbffc16692", "multiverse_ids": [19857], "mtgo_id": 13575, "mtgo_foil_id": 13576, "tcgplayer_id": 6564, "cardmarket_id": 11626, "name": "Hunted Wumpus", "lang": "en", "released_at": "1999-10-04", "uri": "https://api.scryfall.com/cards/b21c8b2d-ef0f-4839-acfc-20fd248c62cf", "scryfall_uri": "https://scryfall.com/card/mmq/253/hunted-wumpus?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/b/2/b21c8b2d-ef0f-4839-acfc-20fd248c62cf.jpg?1562382549", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/2/b21c8b2d-ef0f-4839-acfc-20fd248c62cf.jpg?1562382549", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/b/2/b21c8b2d-ef0f-4839-acfc-20fd248c62cf.jpg?1562382549", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/b/2/b21c8b2d-ef0f-4839-acfc-20fd248c62cf.png?1562382549", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/2/b21c8b2d-ef0f-4839-acfc-20fd248c62cf.jpg?1562382549", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/b/2/b21c8b2d-ef0f-4839-acfc-20fd248c62cf.jpg?1562382549"}, "mana_cost": "{3}{G}", "cmc": 4.0, "type_line": "Creature \u2014 Beast", "oracle_text": "When Hunted Wumpus enters the battlefield, each other player may put a creature card from their hand onto the battlefield.", "power": "6", "toughness": "6", "colors": ["G"], "color_identity": ["G"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "restricted", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "385e11a4-492b-4d07-b4a6-a1409ef829b8", "set": "mmq", "set_name": "Mercadian Masques", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/385e11a4-492b-4d07-b4a6-a1409ef829b8", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ammq&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/mmq?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/b21c8b2d-ef0f-4839-acfc-20fd248c62cf/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A698c9882-4117-4919-8a19-b1cbffc16692&unique=prints", "collector_number": "253", "digital": false, "rarity": "uncommon", "flavor_text": "Just one can feed a dozen people for a month.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Brian Sn\u00f5ddy", "artist_ids": ["770b4e16-de76-49ed-949f-84e6d2e06d25"], "illustration_id": "b68e3005-bd1e-4133-b375-cb73bd21854f", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 9098, "penny_rank": 12827, "prices": {"usd": "0.20", "usd_foil": "18.34", "usd_etched": null, "eur": "0.13", "eur_foil": "2.99", "tix": "0.05"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=19857", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Hunted+Wumpus&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Hunted+Wumpus&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Hunted+Wumpus"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/6564?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Hunted+Wumpus&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/13575?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "926cefa1-3c5c-4bd6-859b-de620a3ee777", "oracle_id": "102d73bc-94ed-4a57-9872-6f7b9bf282f9", "multiverse_ids": [15219], "mtgo_id": 13035, "mtgo_foil_id": 13036, "tcgplayer_id": 6188, "cardmarket_id": 10809, "name": "Hunting Moa", "lang": "en", "released_at": "1999-06-07", "uri": "https://api.scryfall.com/cards/926cefa1-3c5c-4bd6-859b-de620a3ee777", "scryfall_uri": "https://scryfall.com/card/uds/109/hunting-moa?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/9/2/926cefa1-3c5c-4bd6-859b-de620a3ee777.jpg?1555789722", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/2/926cefa1-3c5c-4bd6-859b-de620a3ee777.jpg?1555789722", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/9/2/926cefa1-3c5c-4bd6-859b-de620a3ee777.jpg?1555789722", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/9/2/926cefa1-3c5c-4bd6-859b-de620a3ee777.png?1555789722", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/2/926cefa1-3c5c-4bd6-859b-de620a3ee777.jpg?1555789722", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/9/2/926cefa1-3c5c-4bd6-859b-de620a3ee777.jpg?1555789722"}, "mana_cost": "{2}{G}", "cmc": 3.0, "type_line": "Creature \u2014 Bird Beast", "oracle_text": "Echo {2}{G} (At the beginning of your upkeep, if this came under your control since the beginning of your last upkeep, sacrifice it unless you pay its echo cost.)\nWhen Hunting Moa enters the battlefield or dies, put a +1/+1 counter on target creature.", "power": "3", "toughness": "2", "colors": ["G"], "color_identity": ["G"], "keywords": ["Echo"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "restricted", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "44f17b37-dcf8-4239-baab-1efc00cd3480", "set": "uds", "set_name": "Urza's Destiny", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/44f17b37-dcf8-4239-baab-1efc00cd3480", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Auds&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/uds?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/926cefa1-3c5c-4bd6-859b-de620a3ee777/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A102d73bc-94ed-4a57-9872-6f7b9bf282f9&unique=prints", "collector_number": "109", "digital": false, "rarity": "uncommon", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "DiTerlizzi", "artist_ids": ["ed44dce4-30cf-4c2c-b2e1-a19ba2295690"], "illustration_id": "ff60f59d-1da6-435a-a233-9e0488d1e88d", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 19211, "penny_rank": 8680, "prices": {"usd": "0.15", "usd_foil": "4.97", "usd_etched": null, "eur": "0.15", "eur_foil": "4.99", "tix": "0.07"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=15219", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Hunting+Moa&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Hunting+Moa&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Hunting+Moa"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/6188?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Hunting+Moa&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/13035?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "801dd9c6-b159-4e1c-af2c-214c1f573633", "oracle_id": "6bd872b2-5c40-4e11-9a7f-0136a51b0642", "multiverse_ids": [457327], "mtgo_id": 71366, "arena_id": 69311, "tcgplayer_id": 182840, "cardmarket_id": 368097, "name": "Hydroid Krasis", "lang": "en", "released_at": "2019-01-25", "uri": "https://api.scryfall.com/cards/801dd9c6-b159-4e1c-af2c-214c1f573633", "scryfall_uri": "https://scryfall.com/card/rna/183/hydroid-krasis?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/8/0/801dd9c6-b159-4e1c-af2c-214c1f573633.jpg?1584833616", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/0/801dd9c6-b159-4e1c-af2c-214c1f573633.jpg?1584833616", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/8/0/801dd9c6-b159-4e1c-af2c-214c1f573633.jpg?1584833616", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/8/0/801dd9c6-b159-4e1c-af2c-214c1f573633.png?1584833616", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/0/801dd9c6-b159-4e1c-af2c-214c1f573633.jpg?1584833616", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/8/0/801dd9c6-b159-4e1c-af2c-214c1f573633.jpg?1584833616"}, "mana_cost": "{X}{G}{U}", "cmc": 2.0, "type_line": "Creature \u2014 Jellyfish Hydra Beast", "oracle_text": "When you cast this spell, you gain half X life and draw half X cards. Round down each time.\nFlying, trample\nHydroid Krasis enters the battlefield with X +1/+1 counters on it.", "power": "0", "toughness": "0", "colors": ["G", "U"], "color_identity": ["G", "U"], "keywords": ["Flying", "Trample"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "97a7fd84-8d89-45a3-b48b-c951f6a3f9f1", "set": "rna", "set_name": "Ravnica Allegiance", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/97a7fd84-8d89-45a3-b48b-c951f6a3f9f1", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Arna&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/rna?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/801dd9c6-b159-4e1c-af2c-214c1f573633/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A6bd872b2-5c40-4e11-9a7f-0136a51b0642&unique=prints", "collector_number": "183", "digital": false, "rarity": "mythic", "watermark": "simic", "flavor_text": "Havoc is a small price to pay for data.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Jason Felix", "artist_ids": ["af42a44c-8ec3-47a7-9047-5d29ddad186d"], "illustration_id": "56837dad-b893-4512-8558-8ef8fc0e5f7b", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 2148, "preview": {"source": "Making Magic", "source_uri": "https://magic.wizards.com/en/articles/archive/making-magic/building-allegiances-part-1-2019-01-02", "previewed_at": "2019-01-02"}, "prices": {"usd": "7.00", "usd_foil": "17.96", "usd_etched": null, "eur": "5.24", "eur_foil": "18.00", "tix": "0.58"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=457327", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Hydroid+Krasis&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Hydroid+Krasis&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Hydroid+Krasis"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/182840?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Hydroid+Krasis&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/71366?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "1c964473-7c54-4c2d-a3eb-dba01c842103", "oracle_id": "17191fa9-e956-4f46-b541-465790125b6b", "multiverse_ids": [34952], "mtgo_id": 18079, "mtgo_foil_id": 18080, "tcgplayer_id": 10364, "cardmarket_id": 1897, "name": "Hystrodon", "lang": "en", "released_at": "2002-10-07", "uri": "https://api.scryfall.com/cards/1c964473-7c54-4c2d-a3eb-dba01c842103", "scryfall_uri": "https://scryfall.com/card/ons/266/hystrodon?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/1/c/1c964473-7c54-4c2d-a3eb-dba01c842103.jpg?1562901719", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/c/1c964473-7c54-4c2d-a3eb-dba01c842103.jpg?1562901719", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/1/c/1c964473-7c54-4c2d-a3eb-dba01c842103.jpg?1562901719", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/1/c/1c964473-7c54-4c2d-a3eb-dba01c842103.png?1562901719", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/c/1c964473-7c54-4c2d-a3eb-dba01c842103.jpg?1562901719", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/1/c/1c964473-7c54-4c2d-a3eb-dba01c842103.jpg?1562901719"}, "mana_cost": "{4}{G}", "cmc": 5.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Trample\nWhenever Hystrodon deals combat damage to a player, you may draw a card.\nMorph {1}{G}{G} (You may cast this card face down as a 2/2 creature for {3}. Turn it face up any time for its morph cost.)", "power": "3", "toughness": "4", "colors": ["G"], "color_identity": ["G"], "keywords": ["Morph", "Trample"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "914a6c6d-cb3b-45e8-a2db-9978a2339faf", "set": "ons", "set_name": "Onslaught", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/914a6c6d-cb3b-45e8-a2db-9978a2339faf", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aons&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ons?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/1c964473-7c54-4c2d-a3eb-dba01c842103/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A17191fa9-e956-4f46-b541-465790125b6b&unique=prints", "collector_number": "266", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Anthony S. Waters", "artist_ids": ["f009de11-3c8d-4663-b996-ca0c3e997fad"], "illustration_id": "fb9bea7b-54d1-4595-be38-c53c066d223d", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 12103, "penny_rank": 8296, "prices": {"usd": "0.76", "usd_foil": "6.80", "usd_etched": null, "eur": "1.45", "eur_foil": "6.99", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=34952", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Hystrodon&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Hystrodon&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Hystrodon"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/10364?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Hystrodon&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/18079?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "fe57b3a2-0fd9-4f99-bb2b-828979dbcfc3", "oracle_id": "de47a1e8-9c69-4af6-9d72-1bdd41352b32", "multiverse_ids": [107377], "mtgo_id": 24191, "mtgo_foil_id": 24192, "tcgplayer_id": 13881, "cardmarket_id": 13017, "name": "Indrik Stomphowler", "lang": "en", "released_at": "2006-05-05", "uri": "https://api.scryfall.com/cards/fe57b3a2-0fd9-4f99-bb2b-828979dbcfc3", "scryfall_uri": "https://scryfall.com/card/dis/86/indrik-stomphowler?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/f/e/fe57b3a2-0fd9-4f99-bb2b-828979dbcfc3.jpg?1593273398", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/e/fe57b3a2-0fd9-4f99-bb2b-828979dbcfc3.jpg?1593273398", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/f/e/fe57b3a2-0fd9-4f99-bb2b-828979dbcfc3.jpg?1593273398", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/f/e/fe57b3a2-0fd9-4f99-bb2b-828979dbcfc3.png?1593273398", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/e/fe57b3a2-0fd9-4f99-bb2b-828979dbcfc3.jpg?1593273398", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/f/e/fe57b3a2-0fd9-4f99-bb2b-828979dbcfc3.jpg?1593273398"}, "mana_cost": "{4}{G}", "cmc": 5.0, "type_line": "Creature \u2014 Beast", "oracle_text": "When Indrik Stomphowler enters the battlefield, destroy target artifact or enchantment.", "power": "4", "toughness": "4", "colors": ["G"], "color_identity": ["G"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "restricted", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "fdebeda1-b95f-4343-8a94-d125821e6b5c", "set": "dis", "set_name": "Dissension", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/fdebeda1-b95f-4343-8a94-d125821e6b5c", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Adis&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/dis?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/fe57b3a2-0fd9-4f99-bb2b-828979dbcfc3/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ade47a1e8-9c69-4af6-9d72-1bdd41352b32&unique=prints", "collector_number": "86", "digital": false, "rarity": "uncommon", "flavor_text": "\"An indrik's howl has destructive power much subtler than that of its crushing foot. The sound is mundane, but inaudible vibrations scatter and sunder magical contrivances.\"\n\u2014Simic research notes", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Carl Critchlow", "artist_ids": ["17948f16-611a-44b8-8d10-9895a0bdfff1"], "illustration_id": "d3866d6b-aeaf-4263-97aa-fc6f8444f633", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 8390, "penny_rank": 10500, "prices": {"usd": "0.10", "usd_foil": "0.64", "usd_etched": null, "eur": "0.20", "eur_foil": "1.20", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=107377", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Indrik+Stomphowler&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Indrik+Stomphowler&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Indrik+Stomphowler"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/13881?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Indrik+Stomphowler&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/24191?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "99711b5b-3cb2-4d57-ac9a-f43cc86a7ca9", "oracle_id": "e88f6b45-0cde-4fd4-80f0-f252f6fd59fa", "multiverse_ids": [9779], "tcgplayer_id": 872, "cardmarket_id": 11913, "name": "Infernal Spawn of Evil", "lang": "en", "released_at": "1998-08-11", "uri": "https://api.scryfall.com/cards/99711b5b-3cb2-4d57-ac9a-f43cc86a7ca9", "scryfall_uri": "https://scryfall.com/card/ugl/33/infernal-spawn-of-evil?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/9/9/99711b5b-3cb2-4d57-ac9a-f43cc86a7ca9.jpg?1562799128", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/9/99711b5b-3cb2-4d57-ac9a-f43cc86a7ca9.jpg?1562799128", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/9/9/99711b5b-3cb2-4d57-ac9a-f43cc86a7ca9.jpg?1562799128", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/9/9/99711b5b-3cb2-4d57-ac9a-f43cc86a7ca9.png?1562799128", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/9/99711b5b-3cb2-4d57-ac9a-f43cc86a7ca9.jpg?1562799128", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/9/9/99711b5b-3cb2-4d57-ac9a-f43cc86a7ca9.jpg?1562799128"}, "mana_cost": "{6}{B}{B}{B}", "cmc": 9.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Flying, first strike\n{1}{B}, Reveal Infernal Spawn of Evil from your hand, Say \"It's coming!\": Infernal Spawn of Evil deals 1 damage to target opponent or planeswalker. Activate only during your upkeep and only once each turn.", "power": "7", "toughness": "7", "colors": ["B"], "color_identity": ["B"], "keywords": ["Flying", "First strike"], "all_parts": [{"object": "related_card", "id": "99711b5b-3cb2-4d57-ac9a-f43cc86a7ca9", "component": "combo_piece", "name": "Infernal Spawn of Evil", "type_line": "Creature \u2014 Beast", "uri": "https://api.scryfall.com/cards/99711b5b-3cb2-4d57-ac9a-f43cc86a7ca9"}, {"object": "related_card", "id": "df2c80d5-960b-4624-9b3e-96943d7b4144", "component": "combo_piece", "name": "Infernal Spawn of Infernal Spawn of Evil", "type_line": "Creature \u2014 Demon Child", "uri": "https://api.scryfall.com/cards/df2c80d5-960b-4624-9b3e-96943d7b4144"}, {"object": "related_card", "id": "5e3b1317-f024-4e34-89ad-538fc148cd5c", "component": "combo_piece", "name": "Infernius Spawnington III, Esq.", "type_line": "Creature \u2014 Demon Beast Grandchild", "uri": "https://api.scryfall.com/cards/5e3b1317-f024-4e34-89ad-538fc148cd5c"}], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "not_legal", "pauper": "not_legal", "vintage": "not_legal", "penny": "not_legal", "commander": "not_legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "not_legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "3404fc78-6678-4cf4-bd39-4c0be3bb7baf", "set": "ugl", "set_name": "Unglued", "set_type": "funny", "set_uri": "https://api.scryfall.com/sets/3404fc78-6678-4cf4-bd39-4c0be3bb7baf", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Augl&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ugl?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/99711b5b-3cb2-4d57-ac9a-f43cc86a7ca9/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ae88f6b45-0cde-4fd4-80f0-f252f6fd59fa&unique=prints", "collector_number": "33", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Ron Spencer", "artist_ids": ["dab52c11-0564-4207-a4a1-c1735c946a65"], "illustration_id": "22da634f-d647-458c-87c8-689dba269284", "border_color": "silver", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "prices": {"usd": "1.77", "usd_foil": null, "usd_etched": null, "eur": "3.34", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=9779", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Infernal+Spawn+of+Evil&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Infernal+Spawn+of+Evil&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Infernal+Spawn+of+Evil"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/872?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Infernal+Spawn+of+Evil&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Infernal+Spawn+of+Evil&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "5e3b1317-f024-4e34-89ad-538fc148cd5c", "oracle_id": "e3ea4d64-0f36-43ab-9c2c-2c659b7398b0", "multiverse_ids": [479433], "tcgplayer_id": 208474, "cardmarket_id": 438069, "name": "Infernius Spawnington III, Esq.", "lang": "en", "released_at": "2020-02-29", "uri": "https://api.scryfall.com/cards/5e3b1317-f024-4e34-89ad-538fc148cd5c", "scryfall_uri": "https://scryfall.com/card/und/40/infernius-spawnington-iii-esq?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/5/e/5e3b1317-f024-4e34-89ad-538fc148cd5c.jpg?1584348881", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/e/5e3b1317-f024-4e34-89ad-538fc148cd5c.jpg?1584348881", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/5/e/5e3b1317-f024-4e34-89ad-538fc148cd5c.jpg?1584348881", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/5/e/5e3b1317-f024-4e34-89ad-538fc148cd5c.png?1584348881", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/e/5e3b1317-f024-4e34-89ad-538fc148cd5c.jpg?1584348881", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/5/e/5e3b1317-f024-4e34-89ad-538fc148cd5c.jpg?1584348881"}, "mana_cost": "{10}{B}", "cmc": 11.0, "type_line": "Creature \u2014 Demon Beast Grandchild", "oracle_text": "Flying, first strike, trample, haste\nThis spell costs {3} less to cast for each card you've revealed this turn.\nWhen Infernius Spawnington III, Esq. enters the battlefield, you may say \"I'm here.\" If you do, it deals 3 damage to target player.", "power": "9", "toughness": "9", "colors": ["B"], "color_identity": ["B"], "keywords": ["Flying", "First strike", "Haste", "Trample"], "all_parts": [{"object": "related_card", "id": "4c28a60a-8b2b-45f5-b46e-c0c50218b239", "component": "combo_piece", "name": "Infernal Spawn of Evil", "type_line": "Creature \u2014 Beast", "uri": "https://api.scryfall.com/cards/4c28a60a-8b2b-45f5-b46e-c0c50218b239"}, {"object": "related_card", "id": "df2c80d5-960b-4624-9b3e-96943d7b4144", "component": "combo_piece", "name": "Infernal Spawn of Infernal Spawn of Evil", "type_line": "Creature \u2014 Demon Child", "uri": "https://api.scryfall.com/cards/df2c80d5-960b-4624-9b3e-96943d7b4144"}, {"object": "related_card", "id": "5e3b1317-f024-4e34-89ad-538fc148cd5c", "component": "combo_piece", "name": "Infernius Spawnington III, Esq.", "type_line": "Creature \u2014 Demon Beast Grandchild", "uri": "https://api.scryfall.com/cards/5e3b1317-f024-4e34-89ad-538fc148cd5c"}], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "not_legal", "pauper": "not_legal", "vintage": "not_legal", "penny": "not_legal", "commander": "not_legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "not_legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "fccfdf97-f5f2-43b4-9be9-9255414e6633", "set": "und", "set_name": "Unsanctioned", "set_type": "funny", "set_uri": "https://api.scryfall.com/sets/fccfdf97-f5f2-43b4-9be9-9255414e6633", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aund&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/und?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/5e3b1317-f024-4e34-89ad-538fc148cd5c/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ae3ea4d64-0f36-43ab-9c2c-2c659b7398b0&unique=prints", "collector_number": "40", "digital": false, "rarity": "rare", "flavor_text": "See evil, hear evil, speak evil.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Ron Spencer", "artist_ids": ["dab52c11-0564-4207-a4a1-c1735c946a65"], "illustration_id": "c947602f-0d42-46c6-ac53-b15194b846fd", "border_color": "silver", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "preview": {"source": "Cracked", "source_uri": "https://www.cracked.com/article_27000_a-first-look-at-unsanctioned-magic-gatherings-new-set.html", "previewed_at": "2020-01-28"}, "prices": {"usd": "0.25", "usd_foil": null, "usd_etched": null, "eur": "0.47", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=479433", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Infernius+Spawnington+III%2C+Esq.&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Infernius+Spawnington+III%2C+Esq.&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Infernius+Spawnington+III%2C+Esq."}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/208474?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Infernius+Spawnington+III%2C+Esq.&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Infernius+Spawnington+III%2C+Esq.&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "171d5213-5bb4-4f5b-9ddd-e2a7ac092ec6", "oracle_id": "f81c0ddc-cd3c-42c0-a7d9-0057b69a5df1", "multiverse_ids": [233066], "mtgo_id": 39992, "mtgo_foil_id": 39993, "tcgplayer_id": 39533, "cardmarket_id": 245963, "name": "Insatiable Souleater", "lang": "en", "released_at": "2011-05-13", "uri": "https://api.scryfall.com/cards/171d5213-5bb4-4f5b-9ddd-e2a7ac092ec6", "scryfall_uri": "https://scryfall.com/card/nph/140/insatiable-souleater?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/1/7/171d5213-5bb4-4f5b-9ddd-e2a7ac092ec6.jpg?1562875704", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/7/171d5213-5bb4-4f5b-9ddd-e2a7ac092ec6.jpg?1562875704", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/1/7/171d5213-5bb4-4f5b-9ddd-e2a7ac092ec6.jpg?1562875704", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/1/7/171d5213-5bb4-4f5b-9ddd-e2a7ac092ec6.png?1562875704", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/7/171d5213-5bb4-4f5b-9ddd-e2a7ac092ec6.jpg?1562875704", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/1/7/171d5213-5bb4-4f5b-9ddd-e2a7ac092ec6.jpg?1562875704"}, "mana_cost": "{4}", "cmc": 4.0, "type_line": "Artifact Creature \u2014 Phyrexian Beast", "oracle_text": "{G/P}: Insatiable Souleater gains trample until end of turn. ({G/P} can be paid with either {G} or 2 life.)", "power": "5", "toughness": "1", "colors": [], "color_identity": ["G"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "e8e356d8-6d01-4dab-aa07-d0999dc9359f", "set": "nph", "set_name": "New Phyrexia", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/e8e356d8-6d01-4dab-aa07-d0999dc9359f", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Anph&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/nph?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/171d5213-5bb4-4f5b-9ddd-e2a7ac092ec6/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Af81c0ddc-cd3c-42c0-a7d9-0057b69a5df1&unique=prints", "collector_number": "140", "digital": false, "rarity": "common", "watermark": "phyrexian", "flavor_text": "\"We thank the souleaters for culling our sick so that the strong may earn their triumphs.\"\n\u2014Drones' hymn of gratitude", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Dave Kendall", "artist_ids": ["8a5540a8-18c9-4fa9-802c-59d6866114d5"], "illustration_id": "80c7bed5-a498-4b61-af14-ba9f80e65c47", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 20425, "penny_rank": 9778, "prices": {"usd": "0.08", "usd_foil": "0.29", "usd_etched": null, "eur": "0.01", "eur_foil": "0.07", "tix": "0.04"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=233066", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Insatiable+Souleater&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Insatiable+Souleater&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Insatiable+Souleater"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/39533?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Insatiable+Souleater&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/39992?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "49266f3c-4b43-4175-8bac-16789ba6f4b9", "oracle_id": "85a59833-b661-4599-a5d1-042dee033617", "multiverse_ids": [452767], "mtgo_id": 69407, "arena_id": 68478, "tcgplayer_id": 176883, "cardmarket_id": 364247, "name": "Intrusive Packbeast", "lang": "en", "released_at": "2018-10-05", "uri": "https://api.scryfall.com/cards/49266f3c-4b43-4175-8bac-16789ba6f4b9", "scryfall_uri": "https://scryfall.com/card/grn/17/intrusive-packbeast?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/4/9/49266f3c-4b43-4175-8bac-16789ba6f4b9.jpg?1572892585", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/9/49266f3c-4b43-4175-8bac-16789ba6f4b9.jpg?1572892585", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/4/9/49266f3c-4b43-4175-8bac-16789ba6f4b9.jpg?1572892585", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/4/9/49266f3c-4b43-4175-8bac-16789ba6f4b9.png?1572892585", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/9/49266f3c-4b43-4175-8bac-16789ba6f4b9.jpg?1572892585", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/4/9/49266f3c-4b43-4175-8bac-16789ba6f4b9.jpg?1572892585"}, "mana_cost": "{4}{W}", "cmc": 5.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Vigilance\nWhen Intrusive Packbeast enters the battlefield, tap up to two target creatures your opponents control.", "power": "3", "toughness": "3", "colors": ["W"], "color_identity": ["W"], "keywords": ["Vigilance"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "597c6d4a-8212-4903-a6af-12c4ae9e13f0", "set": "grn", "set_name": "Guilds of Ravnica", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/597c6d4a-8212-4903-a6af-12c4ae9e13f0", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Agrn&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/grn?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/49266f3c-4b43-4175-8bac-16789ba6f4b9/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A85a59833-b661-4599-a5d1-042dee033617&unique=prints", "collector_number": "17", "digital": false, "rarity": "common", "flavor_text": "Good at carrying things. Really good at knocking them down.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Jason Felix", "artist_ids": ["af42a44c-8ec3-47a7-9047-5d29ddad186d"], "illustration_id": "439cbf6a-8909-4966-b7c4-16734f8d82e5", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 20526, "prices": {"usd": "0.01", "usd_foil": null, "usd_etched": null, "eur": "0.02", "eur_foil": "0.03", "tix": "0.04"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=452767", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Intrusive+Packbeast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Intrusive+Packbeast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Intrusive+Packbeast"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/176883?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Intrusive+Packbeast&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/69407?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "0cb36352-2f16-4572-b1aa-dc28b11f4229", "oracle_id": "6ec9f9a9-9e66-4d81-ae22-dc0de596acd5", "multiverse_ids": [44608], "mtgo_id": 20668, "mtgo_foil_id": 20669, "tcgplayer_id": 11877, "cardmarket_id": 585, "name": "Iron-Barb Hellion", "lang": "en", "released_at": "2004-06-04", "uri": "https://api.scryfall.com/cards/0cb36352-2f16-4572-b1aa-dc28b11f4229", "scryfall_uri": "https://scryfall.com/card/5dn/69/iron-barb-hellion?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/0/c/0cb36352-2f16-4572-b1aa-dc28b11f4229.jpg?1562875415", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/c/0cb36352-2f16-4572-b1aa-dc28b11f4229.jpg?1562875415", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/0/c/0cb36352-2f16-4572-b1aa-dc28b11f4229.jpg?1562875415", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/0/c/0cb36352-2f16-4572-b1aa-dc28b11f4229.png?1562875415", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/c/0cb36352-2f16-4572-b1aa-dc28b11f4229.jpg?1562875415", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/0/c/0cb36352-2f16-4572-b1aa-dc28b11f4229.jpg?1562875415"}, "mana_cost": "{5}{R}", "cmc": 6.0, "type_line": "Creature \u2014 Hellion Beast", "oracle_text": "Haste\nIron-Barb Hellion can't block.", "power": "5", "toughness": "4", "colors": ["R"], "color_identity": ["R"], "keywords": ["Haste"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "restricted", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "e4bc1b87-5476-463c-8640-4c414ecf1763", "set": "5dn", "set_name": "Fifth Dawn", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/e4bc1b87-5476-463c-8640-4c414ecf1763", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3A5dn&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/5dn?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/0cb36352-2f16-4572-b1aa-dc28b11f4229/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A6ec9f9a9-9e66-4d81-ae22-dc0de596acd5&unique=prints", "collector_number": "69", "digital": false, "rarity": "uncommon", "flavor_text": "When you feel a rumble in the ground, hold perfectly still. One sound will bring the hellion.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Doug Chaffee", "artist_ids": ["dd587b27-dca3-4219-aa55-b285a7a77030"], "illustration_id": "e4ccb1e3-1c21-4568-b6e7-0a22e5755c5c", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 22717, "prices": {"usd": "0.09", "usd_foil": null, "usd_etched": null, "eur": "0.01", "eur_foil": "0.49", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=44608", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Iron-Barb+Hellion&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Iron-Barb+Hellion&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Iron-Barb+Hellion"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/11877?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Iron-Barb+Hellion&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/20668?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "afb16895-6542-405e-9793-154ffc439f23", "oracle_id": "bd1c9b5f-3b70-457c-8dd8-2420ce1c0d7c", "multiverse_ids": [460946], "mtgo_id": 71644, "arena_id": 69470, "tcgplayer_id": 188869, "cardmarket_id": 372514, "name": "Ironclad Krovod", "lang": "en", "released_at": "2019-05-03", "uri": "https://api.scryfall.com/cards/afb16895-6542-405e-9793-154ffc439f23", "scryfall_uri": "https://scryfall.com/card/war/19/ironclad-krovod?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/a/f/afb16895-6542-405e-9793-154ffc439f23.jpg?1569418805", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/f/afb16895-6542-405e-9793-154ffc439f23.jpg?1569418805", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/a/f/afb16895-6542-405e-9793-154ffc439f23.jpg?1569418805", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/a/f/afb16895-6542-405e-9793-154ffc439f23.png?1569418805", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/f/afb16895-6542-405e-9793-154ffc439f23.jpg?1569418805", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/a/f/afb16895-6542-405e-9793-154ffc439f23.jpg?1569418805"}, "mana_cost": "{3}{W}", "cmc": 4.0, "type_line": "Creature \u2014 Beast", "oracle_text": "", "power": "2", "toughness": "5", "colors": ["W"], "color_identity": ["W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "ee044f0b-e101-4ead-8d0e-aa510aad4277", "set": "war", "set_name": "War of the Spark", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/ee044f0b-e101-4ead-8d0e-aa510aad4277", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Awar&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/war?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/afb16895-6542-405e-9793-154ffc439f23/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Abd1c9b5f-3b70-457c-8dd8-2420ce1c0d7c&unique=prints", "collector_number": "19", "digital": false, "rarity": "common", "flavor_text": "\"We need to block the exits from the plaza! What's big, heavy, and available?\"\n\u2014Gideon Jura", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Sam Rowan", "artist_ids": ["22dbb488-6195-43cc-9927-73bfd239fe30"], "illustration_id": "0d9f0434-cd43-4f14-8d4f-86dfa9a473a7", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 21532, "preview": {"source": "Constructed Criticism", "source_uri": "http://www.constructedcriticism.com/podcasts/constructed-criticism-274-mtgwar-cards/", "previewed_at": "2019-04-18"}, "prices": {"usd": "0.01", "usd_foil": "0.07", "usd_etched": null, "eur": "0.01", "eur_foil": "0.02", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=460946", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Ironclad+Krovod&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Ironclad+Krovod&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Ironclad+Krovod"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/188869?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Ironclad+Krovod&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/71644?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "cb80105c-d2c0-4f8c-9302-5e6152a60f54", "oracle_id": "bcc8ce61-a881-42be-ab2c-64351d17f9f8", "multiverse_ids": [6138], "mtgo_id": 10651, "mtgo_foil_id": 10652, "tcgplayer_id": 4334, "cardmarket_id": 9339, "name": "Jackalope Herd", "lang": "en", "released_at": "1998-06-15", "uri": "https://api.scryfall.com/cards/cb80105c-d2c0-4f8c-9302-5e6152a60f54", "scryfall_uri": "https://scryfall.com/card/exo/111/jackalope-herd?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/c/b/cb80105c-d2c0-4f8c-9302-5e6152a60f54.jpg?1562088801", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/b/cb80105c-d2c0-4f8c-9302-5e6152a60f54.jpg?1562088801", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/c/b/cb80105c-d2c0-4f8c-9302-5e6152a60f54.jpg?1562088801", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/c/b/cb80105c-d2c0-4f8c-9302-5e6152a60f54.png?1562088801", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/b/cb80105c-d2c0-4f8c-9302-5e6152a60f54.jpg?1562088801", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/c/b/cb80105c-d2c0-4f8c-9302-5e6152a60f54.jpg?1562088801"}, "mana_cost": "{3}{G}", "cmc": 4.0, "type_line": "Creature \u2014 Rabbit Beast", "oracle_text": "When you cast a spell, return Jackalope Herd to its owner's hand.", "power": "4", "toughness": "5", "colors": ["G"], "color_identity": ["G"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "1401f7af-2e71-476d-9813-991084ed0bb9", "set": "exo", "set_name": "Exodus", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/1401f7af-2e71-476d-9813-991084ed0bb9", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aexo&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/exo?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/cb80105c-d2c0-4f8c-9302-5e6152a60f54/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Abcc8ce61-a881-42be-ab2c-64351d17f9f8&unique=prints", "collector_number": "111", "digital": false, "rarity": "common", "flavor_text": "There's little more demeaning than getting your butt kicked by a bunch of bunnies.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Ron Spencer", "artist_ids": ["dab52c11-0564-4207-a4a1-c1735c946a65"], "illustration_id": "009b31c3-6103-43f1-b904-966c91355a27", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 21927, "prices": {"usd": "0.14", "usd_foil": null, "usd_etched": null, "eur": "0.05", "eur_foil": null, "tix": "0.09"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=6138", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Jackalope+Herd&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Jackalope+Herd&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Jackalope+Herd"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/4334?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Jackalope+Herd&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/10651?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "77064471-d0c1-4988-8c47-f767bf9635f3", "oracle_id": "68d0b5c0-df6a-4eea-8dea-20358270f916", "multiverse_ids": [191394], "mtgo_id": 32887, "mtgo_foil_id": 32888, "tcgplayer_id": 32649, "cardmarket_id": 21234, "name": "Kalonian Behemoth", "lang": "en", "released_at": "2009-07-17", "uri": "https://api.scryfall.com/cards/77064471-d0c1-4988-8c47-f767bf9635f3", "scryfall_uri": "https://scryfall.com/card/m10/188/kalonian-behemoth?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/7/7/77064471-d0c1-4988-8c47-f767bf9635f3.jpg?1561984952", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/7/77064471-d0c1-4988-8c47-f767bf9635f3.jpg?1561984952", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/7/7/77064471-d0c1-4988-8c47-f767bf9635f3.jpg?1561984952", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/7/7/77064471-d0c1-4988-8c47-f767bf9635f3.png?1561984952", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/7/77064471-d0c1-4988-8c47-f767bf9635f3.jpg?1561984952", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/7/7/77064471-d0c1-4988-8c47-f767bf9635f3.jpg?1561984952"}, "mana_cost": "{5}{G}{G}", "cmc": 7.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Shroud (This creature can't be the target of spells or abilities.)", "power": "9", "toughness": "9", "colors": ["G"], "color_identity": ["G"], "keywords": ["Shroud"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "0dba38a9-6b9d-4768-9831-4e03e8970a0b", "set": "m10", "set_name": "Magic 2010", "set_type": "core", "set_uri": "https://api.scryfall.com/sets/0dba38a9-6b9d-4768-9831-4e03e8970a0b", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Am10&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/m10?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/77064471-d0c1-4988-8c47-f767bf9635f3/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A68d0b5c0-df6a-4eea-8dea-20358270f916&unique=prints", "collector_number": "188", "digital": false, "rarity": "rare", "flavor_text": "\"Do not fire upon it\u2014it is bad luck. And a waste of arrows.\"\n\u2014Alera Benath, Kalonian ranger", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Daarken", "artist_ids": ["e607a0d4-fc12-4c01-9e3f-501f5269b9cb"], "illustration_id": "2ac774e1-cf09-471e-aacc-01e64470cdee", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 15160, "penny_rank": 4393, "prices": {"usd": "0.24", "usd_foil": "0.65", "usd_etched": null, "eur": "0.15", "eur_foil": "0.25", "tix": "0.01"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=191394", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Kalonian+Behemoth&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Kalonian+Behemoth&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Kalonian+Behemoth"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/32649?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Kalonian+Behemoth&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/32887?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "135946fc-fe67-401f-821d-d7145c63f030", "oracle_id": "df7f697e-6886-4897-a024-61ae225c1b34", "multiverse_ids": [370700], "mtgo_id": 49387, "mtgo_foil_id": 49388, "tcgplayer_id": 69165, "cardmarket_id": 262356, "name": "Kalonian Tusker", "lang": "en", "released_at": "2013-07-19", "uri": "https://api.scryfall.com/cards/135946fc-fe67-401f-821d-d7145c63f030", "scryfall_uri": "https://scryfall.com/card/m14/182/kalonian-tusker?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/1/3/135946fc-fe67-401f-821d-d7145c63f030.jpg?1562826250", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/3/135946fc-fe67-401f-821d-d7145c63f030.jpg?1562826250", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/1/3/135946fc-fe67-401f-821d-d7145c63f030.jpg?1562826250", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/1/3/135946fc-fe67-401f-821d-d7145c63f030.png?1562826250", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/3/135946fc-fe67-401f-821d-d7145c63f030.jpg?1562826250", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/1/3/135946fc-fe67-401f-821d-d7145c63f030.jpg?1562826250"}, "mana_cost": "{G}{G}", "cmc": 2.0, "type_line": "Creature \u2014 Beast", "oracle_text": "", "power": "3", "toughness": "3", "colors": ["G"], "color_identity": ["G"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "restricted", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "e03ee1c0-ecd2-4fcc-ac3c-e8fdb103a847", "set": "m14", "set_name": "Magic 2014", "set_type": "core", "set_uri": "https://api.scryfall.com/sets/e03ee1c0-ecd2-4fcc-ac3c-e8fdb103a847", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Am14&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/m14?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/135946fc-fe67-401f-821d-d7145c63f030/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Adf7f697e-6886-4897-a024-61ae225c1b34&unique=prints", "collector_number": "182", "digital": false, "rarity": "uncommon", "flavor_text": "\"And all this time I thought *we* were tracking *it*.\"\n\u2014Juruk, Kalonian tracker", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Svetlin Velinov", "artist_ids": ["ffd063ae-c097-4f26-b2e6-b1e2137708bc"], "illustration_id": "05a11f22-a954-44f3-a9bd-1393c6918d3c", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 9409, "penny_rank": 2243, "prices": {"usd": "0.14", "usd_foil": "1.60", "usd_etched": null, "eur": "0.28", "eur_foil": "0.80", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=370700", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Kalonian+Tusker&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Kalonian+Tusker&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Kalonian+Tusker"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/69165?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Kalonian+Tusker&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/49387?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "602610ce-8f42-4a1d-8f6e-92424d9d637c", "oracle_id": "ce690da4-6d22-4013-aef3-596d331813e4", "multiverse_ids": [121179], "mtgo_id": 24617, "mtgo_foil_id": 24618, "tcgplayer_id": 14063, "cardmarket_id": 13670, "name": "Karplusan Wolverine", "lang": "en", "released_at": "2006-07-21", "uri": "https://api.scryfall.com/cards/602610ce-8f42-4a1d-8f6e-92424d9d637c", "scryfall_uri": "https://scryfall.com/card/csp/87/karplusan-wolverine?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/6/0/602610ce-8f42-4a1d-8f6e-92424d9d637c.jpg?1593275267", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/0/602610ce-8f42-4a1d-8f6e-92424d9d637c.jpg?1593275267", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/6/0/602610ce-8f42-4a1d-8f6e-92424d9d637c.jpg?1593275267", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/6/0/602610ce-8f42-4a1d-8f6e-92424d9d637c.png?1593275267", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/0/602610ce-8f42-4a1d-8f6e-92424d9d637c.jpg?1593275267", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/6/0/602610ce-8f42-4a1d-8f6e-92424d9d637c.jpg?1593275267"}, "mana_cost": "{R}", "cmc": 1.0, "type_line": "Snow Creature \u2014 Wolverine Beast", "oracle_text": "Whenever Karplusan Wolverine becomes blocked, you may have it deal 1 damage to any target.", "power": "1", "toughness": "1", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "1f4f105f-73e4-4f03-849e-82a204807847", "set": "csp", "set_name": "Coldsnap", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/1f4f105f-73e4-4f03-849e-82a204807847", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Acsp&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/csp?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/602610ce-8f42-4a1d-8f6e-92424d9d637c/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ace690da4-6d22-4013-aef3-596d331813e4&unique=prints", "collector_number": "87", "digital": false, "rarity": "common", "flavor_text": "\"They're not easily trained. Fortunately, they already know how to kill.\"\n\u2014Lovisa Coldeyes, Balduvian chieftain", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Greg Hildebrandt", "artist_ids": ["020f967b-0d2f-4166-aabe-901dba8bc7ec"], "illustration_id": "2f3b10e4-c1d2-4bfc-a5d6-76e4a7ce8aef", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 20593, "penny_rank": 13807, "prices": {"usd": "0.08", "usd_foil": "0.49", "usd_etched": null, "eur": "0.10", "eur_foil": "0.25", "tix": "0.04"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=121179", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Karplusan+Wolverine&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Karplusan+Wolverine&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Karplusan+Wolverine"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/14063?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Karplusan+Wolverine&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/24617?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "028c52f2-c45b-42da-89bd-cdd5cd7850f3", "oracle_id": "6025ce2f-d527-457c-866c-cb5c119d0bf4", "multiverse_ids": [39478], "mtgo_id": 20339, "mtgo_foil_id": 20340, "tcgplayer_id": 11598, "cardmarket_id": 401, "name": "Karstoderm", "lang": "en", "released_at": "2004-02-06", "uri": "https://api.scryfall.com/cards/028c52f2-c45b-42da-89bd-cdd5cd7850f3", "scryfall_uri": "https://scryfall.com/card/dst/77/karstoderm?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/0/2/028c52f2-c45b-42da-89bd-cdd5cd7850f3.jpg?1562635162", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/2/028c52f2-c45b-42da-89bd-cdd5cd7850f3.jpg?1562635162", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/0/2/028c52f2-c45b-42da-89bd-cdd5cd7850f3.jpg?1562635162", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/0/2/028c52f2-c45b-42da-89bd-cdd5cd7850f3.png?1562635162", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/2/028c52f2-c45b-42da-89bd-cdd5cd7850f3.jpg?1562635162", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/0/2/028c52f2-c45b-42da-89bd-cdd5cd7850f3.jpg?1562635162"}, "mana_cost": "{2}{G}{G}", "cmc": 4.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Karstoderm enters the battlefield with five +1/+1 counters on it.\nWhenever an artifact enters the battlefield, remove a +1/+1 counter from Karstoderm.", "power": "0", "toughness": "0", "colors": ["G"], "color_identity": ["G"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "restricted", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "e29cb2dd-1345-4032-abfe-e52e8c8ce074", "set": "dst", "set_name": "Darksteel", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/e29cb2dd-1345-4032-abfe-e52e8c8ce074", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Adst&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/dst?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/028c52f2-c45b-42da-89bd-cdd5cd7850f3/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A6025ce2f-d527-457c-866c-cb5c119d0bf4&unique=prints", "collector_number": "77", "digital": false, "rarity": "uncommon", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Tony Szczudlo", "artist_ids": ["1952c90b-a5a7-4328-9f7c-e11064f59daf"], "illustration_id": "06301336-a0bb-41a8-b8f2-11aef07288c7", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 23190, "prices": {"usd": "0.11", "usd_foil": "0.26", "usd_etched": null, "eur": "0.03", "eur_foil": "0.50", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=39478", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Karstoderm&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Karstoderm&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Karstoderm"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/11598?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Karstoderm&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/20339?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "afdfe5aa-8b15-4a89-a22a-03baf6afa4e7", "oracle_id": "121f6c96-2911-4ee3-b14e-d3b143eb14c3", "multiverse_ids": [491838], "mtgo_id": 83369, "arena_id": 73399, "tcgplayer_id": 222119, "cardmarket_id": 496485, "name": "Kazandu Stomper", "lang": "en", "released_at": "2020-09-25", "uri": "https://api.scryfall.com/cards/afdfe5aa-8b15-4a89-a22a-03baf6afa4e7", "scryfall_uri": "https://scryfall.com/card/znr/191/kazandu-stomper?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/a/f/afdfe5aa-8b15-4a89-a22a-03baf6afa4e7.jpg?1604199049", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/f/afdfe5aa-8b15-4a89-a22a-03baf6afa4e7.jpg?1604199049", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/a/f/afdfe5aa-8b15-4a89-a22a-03baf6afa4e7.jpg?1604199049", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/a/f/afdfe5aa-8b15-4a89-a22a-03baf6afa4e7.png?1604199049", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/f/afdfe5aa-8b15-4a89-a22a-03baf6afa4e7.jpg?1604199049", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/a/f/afdfe5aa-8b15-4a89-a22a-03baf6afa4e7.jpg?1604199049"}, "mana_cost": "{5}{G}", "cmc": 6.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Trample\nWhen Kazandu Stomper enters the battlefield, return up to two lands you control to their owner's hand.", "power": "6", "toughness": "5", "colors": ["G"], "color_identity": ["G"], "keywords": ["Trample"], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "f4e01fa7-b254-42dd-849f-69b58027a8c4", "set": "znr", "set_name": "Zendikar Rising", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/f4e01fa7-b254-42dd-849f-69b58027a8c4", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aznr&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/znr?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/afdfe5aa-8b15-4a89-a22a-03baf6afa4e7/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A121f6c96-2911-4ee3-b14e-d3b143eb14c3&unique=prints", "collector_number": "191", "digital": false, "rarity": "common", "flavor_text": "Elves revere cycles of renewal, but they prefer cycles that don't involve their homes getting smashed.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Sam Rowan", "artist_ids": ["22dbb488-6195-43cc-9927-73bfd239fe30"], "illustration_id": "acfdc572-f2d4-48e8-842e-8eff1c42e4df", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 14749, "preview": {"source": "Amy the Amazonian", "source_uri": "https://twitter.com/coL_Amazonian/status/1303019777401683969", "previewed_at": "2020-09-07"}, "prices": {"usd": "0.02", "usd_foil": "0.04", "usd_etched": null, "eur": "0.09", "eur_foil": "0.02", "tix": "0.01"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=491838", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Kazandu+Stomper&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Kazandu+Stomper&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Kazandu+Stomper"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/222119?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Kazandu+Stomper&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/83369?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "0112ebfb-55ad-401c-9dc5-ffd829f5b5bf", "oracle_id": "8fc1e8b1-3afc-4e9d-a3ae-7bd9bcdcb465", "multiverse_ids": [513522], "mtgo_id": 88567, "arena_id": 76438, "tcgplayer_id": 235681, "cardmarket_id": 557505, "name": "Kelpie Guide", "lang": "en", "released_at": "2021-04-23", "uri": "https://api.scryfall.com/cards/0112ebfb-55ad-401c-9dc5-ffd829f5b5bf", "scryfall_uri": "https://scryfall.com/card/stx/45/kelpie-guide?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/0/1/0112ebfb-55ad-401c-9dc5-ffd829f5b5bf.jpg?1624590206", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/1/0112ebfb-55ad-401c-9dc5-ffd829f5b5bf.jpg?1624590206", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/0/1/0112ebfb-55ad-401c-9dc5-ffd829f5b5bf.jpg?1624590206", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/0/1/0112ebfb-55ad-401c-9dc5-ffd829f5b5bf.png?1624590206", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/1/0112ebfb-55ad-401c-9dc5-ffd829f5b5bf.jpg?1624590206", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/0/1/0112ebfb-55ad-401c-9dc5-ffd829f5b5bf.jpg?1624590206"}, "mana_cost": "{2}{U}", "cmc": 3.0, "type_line": "Creature \u2014 Beast", "oracle_text": "{T}: Untap another target permanent you control.\n{T}: Tap target permanent. Activate only if you control eight or more lands.", "power": "2", "toughness": "2", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "restricted", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "541c3c28-8747-40e5-a231-8e8f33234859", "set": "stx", "set_name": "Strixhaven: School of Mages", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/541c3c28-8747-40e5-a231-8e8f33234859", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Astx&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/stx?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/0112ebfb-55ad-401c-9dc5-ffd829f5b5bf/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A8fc1e8b1-3afc-4e9d-a3ae-7bd9bcdcb465&unique=prints", "collector_number": "45", "digital": false, "rarity": "uncommon", "flavor_text": "Kelpies are drawn to paradoxes, making them ideal companions for Quandrix mages.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Ilse Gort", "artist_ids": ["12070c2e-4de6-46bc-b379-8a580dfb34c5"], "illustration_id": "41b2ac9e-03fc-486d-9523-b1e76d3d40b5", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 4490, "preview": {"source": "Skybilz", "source_uri": "https://twitter.com/Skybilz/status/1377055652166696966", "previewed_at": "2021-03-30"}, "prices": {"usd": "0.17", "usd_foil": "0.22", "usd_etched": null, "eur": "0.13", "eur_foil": "0.15", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=513522", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Kelpie+Guide&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Kelpie+Guide&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Kelpie+Guide"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/235681?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Kelpie+Guide&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/88567?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "23b95d3a-bb19-474d-9939-8817038fe9fc", "oracle_id": "1523671c-0cf4-442c-a5f8-c74ae31016e6", "multiverse_ids": [4667], "mtgo_id": 9775, "mtgo_foil_id": 9776, "tcgplayer_id": 5602, "cardmarket_id": 8768, "name": "Kezzerdrix", "lang": "en", "released_at": "1997-10-14", "uri": "https://api.scryfall.com/cards/23b95d3a-bb19-474d-9939-8817038fe9fc", "scryfall_uri": "https://scryfall.com/card/tmp/139/kezzerdrix?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/2/3/23b95d3a-bb19-474d-9939-8817038fe9fc.jpg?1562052813", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/3/23b95d3a-bb19-474d-9939-8817038fe9fc.jpg?1562052813", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/2/3/23b95d3a-bb19-474d-9939-8817038fe9fc.jpg?1562052813", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/2/3/23b95d3a-bb19-474d-9939-8817038fe9fc.png?1562052813", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/3/23b95d3a-bb19-474d-9939-8817038fe9fc.jpg?1562052813", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/2/3/23b95d3a-bb19-474d-9939-8817038fe9fc.jpg?1562052813"}, "mana_cost": "{2}{B}{B}", "cmc": 4.0, "type_line": "Creature \u2014 Rabbit Beast", "oracle_text": "First strike\nAt the beginning of your upkeep, if your opponents control no creatures, Kezzerdrix deals 4 damage to you.", "power": "4", "toughness": "4", "colors": ["B"], "color_identity": ["B"], "keywords": ["First strike"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "restricted", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "10df3a67-178e-4363-8668-34f0e6edf2a7", "set": "tmp", "set_name": "Tempest", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/10df3a67-178e-4363-8668-34f0e6edf2a7", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Atmp&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/tmp?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/23b95d3a-bb19-474d-9939-8817038fe9fc/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A1523671c-0cf4-442c-a5f8-c74ae31016e6&unique=prints", "collector_number": "139", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Matthew D. Wilson", "artist_ids": ["4fbafd13-0cf9-42a1-870d-7f8ea276f140"], "illustration_id": "31ac3c96-c3e2-47f8-b982-3da8792b6b3d", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 22217, "penny_rank": 11628, "prices": {"usd": "0.30", "usd_foil": null, "usd_etched": null, "eur": "0.74", "eur_foil": null, "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=4667", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Kezzerdrix&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Kezzerdrix&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Kezzerdrix"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/5602?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Kezzerdrix&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/9775?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "0c584268-67c3-411b-a26c-aee3adf23872", "oracle_id": "eac8c196-8477-4b79-9875-21afa1e61708", "multiverse_ids": [194912], "mtgo_id": 36668, "mtgo_foil_id": 36669, "tcgplayer_id": 34847, "cardmarket_id": 22643, "name": "Kiln Fiend", "lang": "en", "released_at": "2010-04-23", "uri": "https://api.scryfall.com/cards/0c584268-67c3-411b-a26c-aee3adf23872", "scryfall_uri": "https://scryfall.com/card/roe/153/kiln-fiend?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/0/c/0c584268-67c3-411b-a26c-aee3adf23872.jpg?1562701033", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/c/0c584268-67c3-411b-a26c-aee3adf23872.jpg?1562701033", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/0/c/0c584268-67c3-411b-a26c-aee3adf23872.jpg?1562701033", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/0/c/0c584268-67c3-411b-a26c-aee3adf23872.png?1562701033", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/c/0c584268-67c3-411b-a26c-aee3adf23872.jpg?1562701033", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/0/c/0c584268-67c3-411b-a26c-aee3adf23872.jpg?1562701033"}, "mana_cost": "{1}{R}", "cmc": 2.0, "type_line": "Creature \u2014 Elemental Beast", "oracle_text": "Whenever you cast an instant or sorcery spell, Kiln Fiend gets +3/+0 until end of turn.", "power": "1", "toughness": "2", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "eadb8a82-ec56-4623-b50e-42e7e60cb535", "set": "roe", "set_name": "Rise of the Eldrazi", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/eadb8a82-ec56-4623-b50e-42e7e60cb535", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aroe&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/roe?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/0c584268-67c3-411b-a26c-aee3adf23872/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aeac8c196-8477-4b79-9875-21afa1e61708&unique=prints", "collector_number": "153", "digital": false, "rarity": "common", "flavor_text": "It traps an explosion within its stony skin.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Adi Granov", "artist_ids": ["cc30857e-acd0-494f-9598-8ec95cd452d9"], "illustration_id": "da731121-6896-428a-999b-363877fd07d7", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 11824, "penny_rank": 684, "prices": {"usd": "0.16", "usd_foil": "7.44", "usd_etched": null, "eur": "0.08", "eur_foil": "0.75", "tix": "0.18"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=194912", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Kiln+Fiend&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Kiln+Fiend&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Kiln+Fiend"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/34847?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Kiln+Fiend&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/36668?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "2fccb1d0-b324-4780-bb9e-4533240da06d", "oracle_id": "39050823-ccda-43c0-818d-d5db15d82b99", "multiverse_ids": [2732], "tcgplayer_id": 4762, "cardmarket_id": 6586, "name": "Kjeldoran Frostbeast", "lang": "en", "released_at": "1995-06-03", "uri": "https://api.scryfall.com/cards/2fccb1d0-b324-4780-bb9e-4533240da06d", "scryfall_uri": "https://scryfall.com/card/ice/296/kjeldoran-frostbeast?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/2/f/2fccb1d0-b324-4780-bb9e-4533240da06d.jpg?1562903801", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/f/2fccb1d0-b324-4780-bb9e-4533240da06d.jpg?1562903801", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/2/f/2fccb1d0-b324-4780-bb9e-4533240da06d.jpg?1562903801", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/2/f/2fccb1d0-b324-4780-bb9e-4533240da06d.png?1562903801", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/f/2fccb1d0-b324-4780-bb9e-4533240da06d.jpg?1562903801", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/2/f/2fccb1d0-b324-4780-bb9e-4533240da06d.jpg?1562903801"}, "mana_cost": "{3}{G}{W}", "cmc": 5.0, "type_line": "Creature \u2014 Elemental Beast", "oracle_text": "At end of combat, destroy all creatures blocking or blocked by Kjeldoran Frostbeast.", "power": "2", "toughness": "4", "colors": ["G", "W"], "color_identity": ["G", "W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "restricted", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "b0e08eea-5c01-4406-a6e2-dcd09c5e5b67", "set": "ice", "set_name": "Ice Age", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/b0e08eea-5c01-4406-a6e2-dcd09c5e5b67", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aice&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ice?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/2fccb1d0-b324-4780-bb9e-4533240da06d/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A39050823-ccda-43c0-818d-d5db15d82b99&unique=prints", "collector_number": "296", "digital": false, "rarity": "uncommon", "flavor_text": "\"Two of my Warriors found that the creature was dangerous not only in combat, but also in simple proximity.\"\n\u2014Disa the Restless, journal entry", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Mark Poole", "artist_ids": ["bfdeaf09-f915-4058-8e8b-bcac3bc43c33"], "illustration_id": "8ca314b3-49be-402e-8c98-8b16d9dd6872", "border_color": "black", "frame": "1993", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 21463, "prices": {"usd": "0.14", "usd_foil": null, "usd_etched": null, "eur": "0.05", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=2732", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Kjeldoran+Frostbeast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Kjeldoran+Frostbeast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Kjeldoran+Frostbeast"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/4762?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Kjeldoran+Frostbeast&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Kjeldoran+Frostbeast&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "a90442e8-9d22-4767-9e08-bd314169ea70", "oracle_id": "3eb49097-42f8-4388-907d-32a738749d8a", "multiverse_ids": [4769], "mtgo_id": 10015, "mtgo_foil_id": 10016, "tcgplayer_id": 5606, "cardmarket_id": 8864, "name": "Krakilin", "lang": "en", "released_at": "1997-10-14", "uri": "https://api.scryfall.com/cards/a90442e8-9d22-4767-9e08-bd314169ea70", "scryfall_uri": "https://scryfall.com/card/tmp/235/krakilin?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/a/9/a90442e8-9d22-4767-9e08-bd314169ea70.jpg?1562055913", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/9/a90442e8-9d22-4767-9e08-bd314169ea70.jpg?1562055913", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/a/9/a90442e8-9d22-4767-9e08-bd314169ea70.jpg?1562055913", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/a/9/a90442e8-9d22-4767-9e08-bd314169ea70.png?1562055913", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/9/a90442e8-9d22-4767-9e08-bd314169ea70.jpg?1562055913", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/a/9/a90442e8-9d22-4767-9e08-bd314169ea70.jpg?1562055913"}, "mana_cost": "{X}{G}{G}", "cmc": 2.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Krakilin enters the battlefield with X +1/+1 counters on it.\n{1}{G}: Regenerate Krakilin.", "power": "0", "toughness": "0", "colors": ["G"], "color_identity": ["G"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "restricted", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "10df3a67-178e-4363-8668-34f0e6edf2a7", "set": "tmp", "set_name": "Tempest", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/10df3a67-178e-4363-8668-34f0e6edf2a7", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Atmp&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/tmp?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/a90442e8-9d22-4767-9e08-bd314169ea70/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A3eb49097-42f8-4388-907d-32a738749d8a&unique=prints", "collector_number": "235", "digital": false, "rarity": "uncommon", "flavor_text": "\"A perfect reflection of its world: brutal, fetal, and lacking truth.\"\n\u2014Oracle *en*-Vec", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Richard Kane Ferguson", "artist_ids": ["191620ed-2361-444e-96a6-1fe7ce32ef3b"], "illustration_id": "d8c74fbd-2409-4e0d-b820-6c65599784e2", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 15964, "penny_rank": 7629, "prices": {"usd": "0.14", "usd_foil": null, "usd_etched": null, "eur": "0.38", "eur_foil": null, "tix": "0.09"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=4769", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Krakilin&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Krakilin&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Krakilin"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/5606?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Krakilin&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/10015?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "52aece74-cc1f-4f32-ad1f-00733eb79007", "oracle_id": "c66342bb-bbc1-4aaf-8d99-0af68292081e", "multiverse_ids": [177940], "mtgo_id": 31727, "mtgo_foil_id": 31728, "tcgplayer_id": 28559, "cardmarket_id": 20710, "name": "Kranioceros", "lang": "en", "released_at": "2009-02-06", "uri": "https://api.scryfall.com/cards/52aece74-cc1f-4f32-ad1f-00733eb79007", "scryfall_uri": "https://scryfall.com/card/con/67/kranioceros?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/5/2/52aece74-cc1f-4f32-ad1f-00733eb79007.jpg?1562801006", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/2/52aece74-cc1f-4f32-ad1f-00733eb79007.jpg?1562801006", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/5/2/52aece74-cc1f-4f32-ad1f-00733eb79007.jpg?1562801006", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/5/2/52aece74-cc1f-4f32-ad1f-00733eb79007.png?1562801006", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/2/52aece74-cc1f-4f32-ad1f-00733eb79007.jpg?1562801006", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/5/2/52aece74-cc1f-4f32-ad1f-00733eb79007.jpg?1562801006"}, "mana_cost": "{4}{R}", "cmc": 5.0, "type_line": "Creature \u2014 Beast", "oracle_text": "{1}{W}: Kranioceros gets +0/+3 until end of turn.", "power": "5", "toughness": "2", "colors": ["R"], "color_identity": ["R", "W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "76b2db58-904c-4e49-8580-9f62f7b3cca4", "set": "con", "set_name": "Conflux", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/76b2db58-904c-4e49-8580-9f62f7b3cca4", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Acon&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/con?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/52aece74-cc1f-4f32-ad1f-00733eb79007/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ac66342bb-bbc1-4aaf-8d99-0af68292081e&unique=prints", "collector_number": "67", "digital": false, "rarity": "common", "flavor_text": "\"A surly beast, the kranioceros will raise its defenses at the smallest threat. Stay out of sight and downwind, or you'll disrupt its natural migrations.\"\n\u2014Ebrel, godtoucher mentor", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Steve Argyle", "artist_ids": ["a44ddda4-5331-4f83-aac9-3e00ed36bd7b"], "illustration_id": "d9cefe9a-b933-464d-b044-64abb3ddf977", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 23076, "prices": {"usd": "0.04", "usd_foil": "0.21", "usd_etched": null, "eur": "0.02", "eur_foil": "0.25", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=177940", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Kranioceros&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Kranioceros&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Kranioceros"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/28559?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Kranioceros&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/31727?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "af822507-fd4c-454b-ab07-106c81c535bf", "oracle_id": "042a665d-2f63-4f7e-ac89-0d560da68085", "multiverse_ids": [30549], "mtgo_id": 16543, "mtgo_foil_id": 16544, "tcgplayer_id": 9523, "cardmarket_id": 2660, "name": "Krosan Beast", "lang": "en", "released_at": "2001-10-01", "uri": "https://api.scryfall.com/cards/af822507-fd4c-454b-ab07-106c81c535bf", "scryfall_uri": "https://scryfall.com/card/ody/248/krosan-beast?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/a/f/af822507-fd4c-454b-ab07-106c81c535bf.jpg?1562927648", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/f/af822507-fd4c-454b-ab07-106c81c535bf.jpg?1562927648", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/a/f/af822507-fd4c-454b-ab07-106c81c535bf.jpg?1562927648", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/a/f/af822507-fd4c-454b-ab07-106c81c535bf.png?1562927648", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/f/af822507-fd4c-454b-ab07-106c81c535bf.jpg?1562927648", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/a/f/af822507-fd4c-454b-ab07-106c81c535bf.jpg?1562927648"}, "mana_cost": "{3}{G}", "cmc": 4.0, "type_line": "Creature \u2014 Squirrel Beast", "oracle_text": "Threshold \u2014 Krosan Beast gets +7/+7 as long as seven or more cards are in your graveyard.", "power": "1", "toughness": "1", "colors": ["G"], "color_identity": ["G"], "keywords": ["Threshold"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "b0d90d2d-494a-4224-bfa0-36ce5ee281b1", "set": "ody", "set_name": "Odyssey", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/b0d90d2d-494a-4224-bfa0-36ce5ee281b1", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aody&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ody?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/af822507-fd4c-454b-ab07-106c81c535bf/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A042a665d-2f63-4f7e-ac89-0d560da68085&unique=prints", "collector_number": "248", "digital": false, "rarity": "rare", "flavor_text": "Those who see the squirrels go underground in the winter aren't ready for what emerges in the spring.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Kev Walker", "artist_ids": ["f366a0ee-a0cd-466d-ba6a-90058c7a31a6"], "illustration_id": "dd3c7103-7c99-4049-813e-445877f1b12d", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 10639, "penny_rank": 10710, "prices": {"usd": "7.89", "usd_foil": "18.42", "usd_etched": null, "eur": "5.39", "eur_foil": "29.95", "tix": "0.10"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=30549", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Krosan+Beast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Krosan+Beast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Krosan+Beast"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/9523?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Krosan+Beast&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/16543?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "47ea2f2d-14ca-4b57-b973-5ce7db35bebf", "oracle_id": "042a665d-2f63-4f7e-ac89-0d560da68085", "multiverse_ids": [], "tcgplayer_id": 228741, "cardmarket_id": 523510, "name": "Krosan Beast", "lang": "en", "released_at": "2020-11-30", "uri": "https://api.scryfall.com/cards/47ea2f2d-14ca-4b57-b973-5ce7db35bebf", "scryfall_uri": "https://scryfall.com/card/sld/196/krosan-beast?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/4/7/47ea2f2d-14ca-4b57-b973-5ce7db35bebf.jpg?1615254642", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/7/47ea2f2d-14ca-4b57-b973-5ce7db35bebf.jpg?1615254642", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/4/7/47ea2f2d-14ca-4b57-b973-5ce7db35bebf.jpg?1615254642", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/4/7/47ea2f2d-14ca-4b57-b973-5ce7db35bebf.png?1615254642", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/7/47ea2f2d-14ca-4b57-b973-5ce7db35bebf.jpg?1615254642", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/4/7/47ea2f2d-14ca-4b57-b973-5ce7db35bebf.jpg?1615254642"}, "mana_cost": "{3}{G}", "cmc": 4.0, "type_line": "Creature \u2014 Squirrel Beast", "oracle_text": "Threshold \u2014 Krosan Beast gets +7/+7 as long as seven or more cards are in your graveyard.", "power": "1", "toughness": "1", "colors": ["G"], "color_identity": ["G"], "keywords": ["Threshold"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper"], "reserved": false, "foil": true, "nonfoil": false, "finishes": ["foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "4d92a8a7-ccb0-437d-abdc-9d70fc5ed672", "set": "sld", "set_name": "Secret Lair Drop", "set_type": "box", "set_uri": "https://api.scryfall.com/sets/4d92a8a7-ccb0-437d-abdc-9d70fc5ed672", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Asld&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/sld?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/47ea2f2d-14ca-4b57-b973-5ce7db35bebf/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A042a665d-2f63-4f7e-ac89-0d560da68085&unique=prints", "collector_number": "196", "digital": false, "rarity": "rare", "flavor_text": "The true Fist of Krosa is big and furry.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Ivan Shavrin", "artist_ids": ["48432182-db18-4106-81c8-7b83100316d6"], "illustration_id": "1d805d26-8da4-4156-b051-c08c54811702", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "edhrec_rank": 10639, "penny_rank": 10710, "preview": {"source": "Wizards of the Coast", "source_uri": "https://magic.wizards.com/en/articles/archive/news/announcing-secret-lairs-secretversary-superdrop-2020-11-25", "previewed_at": "2020-11-25"}, "prices": {"usd": null, "usd_foil": "15.01", "usd_etched": null, "eur": null, "eur_foil": "9.99", "tix": null}, "related_uris": {"tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Krosan+Beast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Krosan+Beast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Krosan+Beast"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/228741?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Krosan+Beast&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Krosan+Beast&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "51ef4cda-e55b-45a8-9c02-4e77e5b15a9e", "oracle_id": "a0ff742b-f709-43ac-84d2-dc00c723bad6", "multiverse_ids": [35166], "mtgo_id": 18635, "mtgo_foil_id": 18636, "tcgplayer_id": 10806, "cardmarket_id": 2111, "name": "Krosan Cloudscraper", "lang": "en", "released_at": "2003-02-03", "uri": "https://api.scryfall.com/cards/51ef4cda-e55b-45a8-9c02-4e77e5b15a9e", "scryfall_uri": "https://scryfall.com/card/lgn/130/krosan-cloudscraper?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/5/1/51ef4cda-e55b-45a8-9c02-4e77e5b15a9e.jpg?1562911611", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/1/51ef4cda-e55b-45a8-9c02-4e77e5b15a9e.jpg?1562911611", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/5/1/51ef4cda-e55b-45a8-9c02-4e77e5b15a9e.jpg?1562911611", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/5/1/51ef4cda-e55b-45a8-9c02-4e77e5b15a9e.png?1562911611", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/1/51ef4cda-e55b-45a8-9c02-4e77e5b15a9e.jpg?1562911611", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/5/1/51ef4cda-e55b-45a8-9c02-4e77e5b15a9e.jpg?1562911611"}, "mana_cost": "{7}{G}{G}{G}", "cmc": 10.0, "type_line": "Creature \u2014 Beast Mutant", "oracle_text": "At the beginning of your upkeep, sacrifice Krosan Cloudscraper unless you pay {G}{G}.\nMorph {7}{G}{G} (You may cast this card face down as a 2/2 creature for {3}. Turn it face up any time for its morph cost.)", "power": "13", "toughness": "13", "colors": ["G"], "color_identity": ["G"], "keywords": ["Morph"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "c2d60a18-1a81-4784-8e0c-e1de2f43c5cf", "set": "lgn", "set_name": "Legions", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/c2d60a18-1a81-4784-8e0c-e1de2f43c5cf", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Algn&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/lgn?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/51ef4cda-e55b-45a8-9c02-4e77e5b15a9e/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aa0ff742b-f709-43ac-84d2-dc00c723bad6&unique=prints", "collector_number": "130", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Ron Spears", "artist_ids": ["fce9030b-86bd-4439-b06a-920a1eeb184c"], "illustration_id": "bdfacd54-00f3-4af0-9755-ee3d06679459", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 13465, "penny_rank": 4982, "prices": {"usd": "0.48", "usd_foil": "12.97", "usd_etched": null, "eur": "0.32", "eur_foil": "8.00", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=35166", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Krosan+Cloudscraper&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Krosan+Cloudscraper&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Krosan+Cloudscraper"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/10806?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Krosan+Cloudscraper&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/18635?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "a804f3c0-5ebf-43ca-b200-09f7c1bbe902", "oracle_id": "703ab192-7e0a-4f02-8381-568ad2d999ca", "multiverse_ids": [39669], "mtgo_id": 18193, "mtgo_foil_id": 18194, "tcgplayer_id": 10519, "cardmarket_id": 1901, "name": "Krosan Colossus", "lang": "en", "released_at": "2002-10-07", "uri": "https://api.scryfall.com/cards/a804f3c0-5ebf-43ca-b200-09f7c1bbe902", "scryfall_uri": "https://scryfall.com/card/ons/270/krosan-colossus?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/a/8/a804f3c0-5ebf-43ca-b200-09f7c1bbe902.jpg?1562934820", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/8/a804f3c0-5ebf-43ca-b200-09f7c1bbe902.jpg?1562934820", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/a/8/a804f3c0-5ebf-43ca-b200-09f7c1bbe902.jpg?1562934820", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/a/8/a804f3c0-5ebf-43ca-b200-09f7c1bbe902.png?1562934820", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/8/a804f3c0-5ebf-43ca-b200-09f7c1bbe902.jpg?1562934820", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/a/8/a804f3c0-5ebf-43ca-b200-09f7c1bbe902.jpg?1562934820"}, "mana_cost": "{6}{G}{G}{G}", "cmc": 9.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Morph {6}{G}{G} (You may cast this card face down as a 2/2 creature for {3}. Turn it face up any time for its morph cost.)", "power": "9", "toughness": "9", "colors": ["G"], "color_identity": ["G"], "keywords": ["Morph"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "restricted", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "914a6c6d-cb3b-45e8-a2db-9978a2339faf", "set": "ons", "set_name": "Onslaught", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/914a6c6d-cb3b-45e8-a2db-9978a2339faf", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aons&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ons?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/a804f3c0-5ebf-43ca-b200-09f7c1bbe902/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A703ab192-7e0a-4f02-8381-568ad2d999ca&unique=prints", "collector_number": "270", "digital": false, "rarity": "rare", "flavor_text": "When it walked, it altered geography. When it bellowed, it changed the weather.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Kev Walker", "artist_ids": ["f366a0ee-a0cd-466d-ba6a-90058c7a31a6"], "illustration_id": "eb5f90d8-2238-47f1-8f8a-dda30cfa9e5d", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 16797, "penny_rank": 9929, "prices": {"usd": "0.27", "usd_foil": "4.11", "usd_etched": null, "eur": "0.19", "eur_foil": "15.00", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=39669", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Krosan+Colossus&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Krosan+Colossus&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Krosan+Colossus"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/10519?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Krosan+Colossus&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/18193?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "82105090-5f71-4690-9ade-187354311ae3", "oracle_id": "1300dc30-a089-41f5-b1a7-e4779ebb73ef", "multiverse_ids": [41056], "mtgo_id": 18163, "mtgo_foil_id": 18164, "tcgplayer_id": 10660, "cardmarket_id": 1902, "name": "Krosan Groundshaker", "lang": "en", "released_at": "2002-10-07", "uri": "https://api.scryfall.com/cards/82105090-5f71-4690-9ade-187354311ae3", "scryfall_uri": "https://scryfall.com/card/ons/271/krosan-groundshaker?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/8/2/82105090-5f71-4690-9ade-187354311ae3.jpg?1562925715", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/2/82105090-5f71-4690-9ade-187354311ae3.jpg?1562925715", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/8/2/82105090-5f71-4690-9ade-187354311ae3.jpg?1562925715", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/8/2/82105090-5f71-4690-9ade-187354311ae3.png?1562925715", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/2/82105090-5f71-4690-9ade-187354311ae3.jpg?1562925715", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/8/2/82105090-5f71-4690-9ade-187354311ae3.jpg?1562925715"}, "mana_cost": "{4}{G}{G}{G}", "cmc": 7.0, "type_line": "Creature \u2014 Beast", "oracle_text": "{G}: Target Beast creature gains trample until end of turn.", "power": "6", "toughness": "6", "colors": ["G"], "color_identity": ["G"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "restricted", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "914a6c6d-cb3b-45e8-a2db-9978a2339faf", "set": "ons", "set_name": "Onslaught", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/914a6c6d-cb3b-45e8-a2db-9978a2339faf", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aons&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ons?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/82105090-5f71-4690-9ade-187354311ae3/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A1300dc30-a089-41f5-b1a7-e4779ebb73ef&unique=prints", "collector_number": "271", "digital": false, "rarity": "uncommon", "flavor_text": "You know it's coming when you hear the distant thunder. You know where it's been when you see the path of broken trees.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Wayne England", "artist_ids": ["62dc90c0-4bc2-4d42-ad76-59cad9243566"], "illustration_id": "20a7b22a-67a4-4132-89e3-51a6d0f133c2", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 20427, "penny_rank": 12491, "prices": {"usd": "0.07", "usd_foil": "0.65", "usd_etched": null, "eur": "0.25", "eur_foil": "1.10", "tix": "0.05"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=41056", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Krosan+Groundshaker&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Krosan+Groundshaker&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Krosan+Groundshaker"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/10660?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Krosan+Groundshaker&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/18163?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "0b872f85-60c5-44c4-956d-a8aa8132908b", "oracle_id": "82406175-63b3-4972-be8b-db0e70c908cb", "multiverse_ids": [43479], "mtgo_id": 18321, "mtgo_foil_id": 18322, "tcgplayer_id": 10659, "cardmarket_id": 1903, "name": "Krosan Tusker", "lang": "en", "released_at": "2002-10-07", "uri": "https://api.scryfall.com/cards/0b872f85-60c5-44c4-956d-a8aa8132908b", "scryfall_uri": "https://scryfall.com/card/ons/272/krosan-tusker?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/0/b/0b872f85-60c5-44c4-956d-a8aa8132908b.jpg?1562897602", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/b/0b872f85-60c5-44c4-956d-a8aa8132908b.jpg?1562897602", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/0/b/0b872f85-60c5-44c4-956d-a8aa8132908b.jpg?1562897602", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/0/b/0b872f85-60c5-44c4-956d-a8aa8132908b.png?1562897602", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/b/0b872f85-60c5-44c4-956d-a8aa8132908b.jpg?1562897602", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/0/b/0b872f85-60c5-44c4-956d-a8aa8132908b.jpg?1562897602"}, "mana_cost": "{5}{G}{G}", "cmc": 7.0, "type_line": "Creature \u2014 Boar Beast", "oracle_text": "Cycling {2}{G} ({2}{G}, Discard this card: Draw a card.)\nWhen you cycle Krosan Tusker, you may search your library for a basic land card, reveal that card, put it into your hand, then shuffle. (Do this before you draw.)", "power": "6", "toughness": "5", "colors": ["G"], "color_identity": ["G"], "keywords": ["Cycling"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "914a6c6d-cb3b-45e8-a2db-9978a2339faf", "set": "ons", "set_name": "Onslaught", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/914a6c6d-cb3b-45e8-a2db-9978a2339faf", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aons&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ons?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/0b872f85-60c5-44c4-956d-a8aa8132908b/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A82406175-63b3-4972-be8b-db0e70c908cb&unique=prints", "collector_number": "272", "digital": false, "rarity": "common", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Kev Walker", "artist_ids": ["f366a0ee-a0cd-466d-ba6a-90058c7a31a6"], "illustration_id": "a9896c71-d6f2-4a54-a21b-f2feee426bb0", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 5874, "penny_rank": 1341, "prices": {"usd": "0.15", "usd_foil": "6.63", "usd_etched": null, "eur": "0.09", "eur_foil": "0.70", "tix": "0.11"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=43479", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Krosan+Tusker&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Krosan+Tusker&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Krosan+Tusker"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/10659?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Krosan+Tusker&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/18321?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "b7d1c6c6-16b3-4a52-aeda-683b1aeb0e7f", "oracle_id": "ddb95c3a-b383-4987-ba24-72e95f8e33bf", "multiverse_ids": [45134], "mtgo_id": 18621, "mtgo_foil_id": 18622, "tcgplayer_id": 10807, "cardmarket_id": 2112, "name": "Krosan Vorine", "lang": "en", "released_at": "2003-02-03", "uri": "https://api.scryfall.com/cards/b7d1c6c6-16b3-4a52-aeda-683b1aeb0e7f", "scryfall_uri": "https://scryfall.com/card/lgn/131/krosan-vorine?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/b/7/b7d1c6c6-16b3-4a52-aeda-683b1aeb0e7f.jpg?1562931992", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/7/b7d1c6c6-16b3-4a52-aeda-683b1aeb0e7f.jpg?1562931992", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/b/7/b7d1c6c6-16b3-4a52-aeda-683b1aeb0e7f.jpg?1562931992", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/b/7/b7d1c6c6-16b3-4a52-aeda-683b1aeb0e7f.png?1562931992", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/7/b7d1c6c6-16b3-4a52-aeda-683b1aeb0e7f.jpg?1562931992", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/b/7/b7d1c6c6-16b3-4a52-aeda-683b1aeb0e7f.jpg?1562931992"}, "mana_cost": "{3}{G}", "cmc": 4.0, "type_line": "Creature \u2014 Cat Beast", "oracle_text": "Provoke (Whenever this creature attacks, you may have target creature defending player controls untap and block it if able.)\nKrosan Vorine can't be blocked by more than one creature.", "power": "3", "toughness": "2", "colors": ["G"], "color_identity": ["G"], "keywords": ["Provoke"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "c2d60a18-1a81-4784-8e0c-e1de2f43c5cf", "set": "lgn", "set_name": "Legions", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/c2d60a18-1a81-4784-8e0c-e1de2f43c5cf", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Algn&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/lgn?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/b7d1c6c6-16b3-4a52-aeda-683b1aeb0e7f/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Addb95c3a-b383-4987-ba24-72e95f8e33bf&unique=prints", "collector_number": "131", "digital": false, "rarity": "common", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Carl Critchlow", "artist_ids": ["17948f16-611a-44b8-8d10-9895a0bdfff1"], "illustration_id": "adcc97aa-a927-4f9d-bcf7-820bb754254e", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 16713, "prices": {"usd": "0.10", "usd_foil": "0.73", "usd_etched": null, "eur": "0.02", "eur_foil": "0.20", "tix": "0.05"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=45134", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Krosan+Vorine&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Krosan+Vorine&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Krosan+Vorine"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/10807?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Krosan+Vorine&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/18621?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "435b700b-2072-47c0-9725-ad04414d2474", "oracle_id": "88350861-244c-4634-9bc9-e9a79401bd02", "multiverse_ids": [43535], "mtgo_id": 18688, "mtgo_foil_id": 18689, "tcgplayer_id": 10942, "cardmarket_id": 1116, "name": "Krosan Warchief", "lang": "en", "released_at": "2003-05-26", "uri": "https://api.scryfall.com/cards/435b700b-2072-47c0-9725-ad04414d2474", "scryfall_uri": "https://scryfall.com/card/scg/123/krosan-warchief?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/4/3/435b700b-2072-47c0-9725-ad04414d2474.jpg?1562528085", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/3/435b700b-2072-47c0-9725-ad04414d2474.jpg?1562528085", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/4/3/435b700b-2072-47c0-9725-ad04414d2474.jpg?1562528085", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/4/3/435b700b-2072-47c0-9725-ad04414d2474.png?1562528085", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/3/435b700b-2072-47c0-9725-ad04414d2474.jpg?1562528085", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/4/3/435b700b-2072-47c0-9725-ad04414d2474.jpg?1562528085"}, "mana_cost": "{2}{G}", "cmc": 3.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Beast spells you cast cost {1} less to cast.\n{1}{G}: Regenerate target Beast.", "power": "2", "toughness": "2", "colors": ["G"], "color_identity": ["G"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "restricted", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "5133c3a1-1412-4ce6-a1f0-73b695966ded", "set": "scg", "set_name": "Scourge", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/5133c3a1-1412-4ce6-a1f0-73b695966ded", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ascg&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/scg?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/435b700b-2072-47c0-9725-ad04414d2474/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A88350861-244c-4634-9bc9-e9a79401bd02&unique=prints", "collector_number": "123", "digital": false, "rarity": "uncommon", "flavor_text": "It turns prey into predator.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Greg Hildebrandt", "artist_ids": ["020f967b-0d2f-4166-aabe-901dba8bc7ec"], "illustration_id": "2368854f-1668-41c6-b936-df55dd3961df", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 11082, "penny_rank": 6996, "prices": {"usd": "0.25", "usd_foil": "4.78", "usd_etched": null, "eur": "0.35", "eur_foil": "1.28", "tix": "0.06"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=43535", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Krosan+Warchief&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Krosan+Warchief&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Krosan+Warchief"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/10942?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Krosan+Warchief&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/18688?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "52a1758c-849a-4de3-b674-857c3c9bf399", "oracle_id": "6ce6aed2-b959-4572-96fd-fee340d5a5ee", "multiverse_ids": [45165], "mtgo_id": 18778, "mtgo_foil_id": 18779, "tcgplayer_id": 10943, "cardmarket_id": 1117, "name": "Kurgadon", "lang": "en", "released_at": "2003-05-26", "uri": "https://api.scryfall.com/cards/52a1758c-849a-4de3-b674-857c3c9bf399", "scryfall_uri": "https://scryfall.com/card/scg/124/kurgadon?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/5/2/52a1758c-849a-4de3-b674-857c3c9bf399.jpg?1562529070", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/2/52a1758c-849a-4de3-b674-857c3c9bf399.jpg?1562529070", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/5/2/52a1758c-849a-4de3-b674-857c3c9bf399.jpg?1562529070", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/5/2/52a1758c-849a-4de3-b674-857c3c9bf399.png?1562529070", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/2/52a1758c-849a-4de3-b674-857c3c9bf399.jpg?1562529070", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/5/2/52a1758c-849a-4de3-b674-857c3c9bf399.jpg?1562529070"}, "mana_cost": "{4}{G}", "cmc": 5.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Whenever you cast a creature spell with mana value 6 or greater, put three +1/+1 counters on Kurgadon.", "power": "3", "toughness": "3", "colors": ["G"], "color_identity": ["G"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "restricted", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "5133c3a1-1412-4ce6-a1f0-73b695966ded", "set": "scg", "set_name": "Scourge", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/5133c3a1-1412-4ce6-a1f0-73b695966ded", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ascg&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/scg?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/52a1758c-849a-4de3-b674-857c3c9bf399/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A6ce6aed2-b959-4572-96fd-fee340d5a5ee&unique=prints", "collector_number": "124", "digital": false, "rarity": "uncommon", "flavor_text": "When it walks through Krosa, trees step aside, leaves take wing, and the ground shudders.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Carl Critchlow", "artist_ids": ["17948f16-611a-44b8-8d10-9895a0bdfff1"], "illustration_id": "59fe887b-942d-4e1f-a0b9-ebe608767659", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 20843, "prices": {"usd": "0.12", "usd_foil": "1.29", "usd_etched": null, "eur": "0.03", "eur_foil": "0.50", "tix": "0.05"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=45165", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Kurgadon&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Kurgadon&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Kurgadon"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/10943?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Kurgadon&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/18778?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "f27fd65a-5631-491f-b158-45012832ccf1", "oracle_id": "f973daa7-241e-4eb7-9d98-9ea7557caa3a", "multiverse_ids": [21333], "mtgo_id": 13973, "mtgo_foil_id": 13974, "tcgplayer_id": 7169, "cardmarket_id": 11810, "name": "Laccolith Grunt", "lang": "en", "released_at": "2000-02-14", "uri": "https://api.scryfall.com/cards/f27fd65a-5631-491f-b158-45012832ccf1", "scryfall_uri": "https://scryfall.com/card/nem/87/laccolith-grunt?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/f/2/f27fd65a-5631-491f-b158-45012832ccf1.jpg?1562632792", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/2/f27fd65a-5631-491f-b158-45012832ccf1.jpg?1562632792", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/f/2/f27fd65a-5631-491f-b158-45012832ccf1.jpg?1562632792", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/f/2/f27fd65a-5631-491f-b158-45012832ccf1.png?1562632792", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/2/f27fd65a-5631-491f-b158-45012832ccf1.jpg?1562632792", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/f/2/f27fd65a-5631-491f-b158-45012832ccf1.jpg?1562632792"}, "mana_cost": "{2}{R}", "cmc": 3.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Whenever Laccolith Grunt becomes blocked, you may have it deal damage equal to its power to target creature. If you do, Laccolith Grunt assigns no combat damage this turn.", "power": "2", "toughness": "2", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "fa5d1fdb-f781-473d-b14d-50396d40d43f", "set": "nem", "set_name": "Nemesis", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/fa5d1fdb-f781-473d-b14d-50396d40d43f", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Anem&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/nem?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/f27fd65a-5631-491f-b158-45012832ccf1/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Af973daa7-241e-4eb7-9d98-9ea7557caa3a&unique=prints", "collector_number": "87", "digital": false, "rarity": "common", "flavor_text": "They leave a trail of ash and sorrow.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Arnie Swekel", "artist_ids": ["af10ecf2-eb82-4100-97b2-6c236b0fa644"], "illustration_id": "bfa58213-a572-45b2-9da7-17dde4d05393", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 22651, "prices": {"usd": "0.06", "usd_foil": "0.33", "usd_etched": null, "eur": "0.01", "eur_foil": "0.99", "tix": "0.07"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=21333", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Laccolith+Grunt&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Laccolith+Grunt&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Laccolith+Grunt"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/7169?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Laccolith+Grunt&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/13973?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "e36bc466-0f74-46fd-add2-c1cf3b3fe46b", "oracle_id": "0d9ac5e0-2b4e-4e7b-937e-9e9bfce7e96b", "multiverse_ids": [22297], "mtgo_id": 13981, "mtgo_foil_id": 13982, "tcgplayer_id": 7171, "cardmarket_id": 11812, "name": "Laccolith Titan", "lang": "en", "released_at": "2000-02-14", "uri": "https://api.scryfall.com/cards/e36bc466-0f74-46fd-add2-c1cf3b3fe46b", "scryfall_uri": "https://scryfall.com/card/nem/89/laccolith-titan?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/e/3/e36bc466-0f74-46fd-add2-c1cf3b3fe46b.jpg?1562632509", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/3/e36bc466-0f74-46fd-add2-c1cf3b3fe46b.jpg?1562632509", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/e/3/e36bc466-0f74-46fd-add2-c1cf3b3fe46b.jpg?1562632509", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/e/3/e36bc466-0f74-46fd-add2-c1cf3b3fe46b.png?1562632509", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/3/e36bc466-0f74-46fd-add2-c1cf3b3fe46b.jpg?1562632509", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/e/3/e36bc466-0f74-46fd-add2-c1cf3b3fe46b.jpg?1562632509"}, "mana_cost": "{5}{R}{R}", "cmc": 7.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Whenever Laccolith Titan becomes blocked, you may have it deal damage equal to its power to target creature. If you do, Laccolith Titan assigns no combat damage this turn.", "power": "6", "toughness": "6", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "fa5d1fdb-f781-473d-b14d-50396d40d43f", "set": "nem", "set_name": "Nemesis", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/fa5d1fdb-f781-473d-b14d-50396d40d43f", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Anem&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/nem?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/e36bc466-0f74-46fd-add2-c1cf3b3fe46b/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A0d9ac5e0-2b4e-4e7b-937e-9e9bfce7e96b&unique=prints", "collector_number": "89", "digital": false, "rarity": "rare", "flavor_text": "Proximity guarantees injury or death.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Tony Szczudlo", "artist_ids": ["1952c90b-a5a7-4328-9f7c-e11064f59daf"], "illustration_id": "68f27131-f2ea-471b-b3e1-6936b5c6bd45", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 21268, "prices": {"usd": "0.22", "usd_foil": "7.20", "usd_etched": null, "eur": "0.35", "eur_foil": "10.40", "tix": "0.10"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=22297", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Laccolith+Titan&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Laccolith+Titan&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Laccolith+Titan"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/7171?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Laccolith+Titan&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/13981?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "a13b103f-482b-47d5-84a2-3621ba23bd20", "oracle_id": "bf957e0b-3070-4a85-a63d-3dadd7364d53", "multiverse_ids": [21344], "mtgo_id": 14021, "mtgo_foil_id": 14022, "tcgplayer_id": 7172, "cardmarket_id": 11813, "name": "Laccolith Warrior", "lang": "en", "released_at": "2000-02-14", "uri": "https://api.scryfall.com/cards/a13b103f-482b-47d5-84a2-3621ba23bd20", "scryfall_uri": "https://scryfall.com/card/nem/90/laccolith-warrior?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/a/1/a13b103f-482b-47d5-84a2-3621ba23bd20.jpg?1562631306", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/1/a13b103f-482b-47d5-84a2-3621ba23bd20.jpg?1562631306", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/a/1/a13b103f-482b-47d5-84a2-3621ba23bd20.jpg?1562631306", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/a/1/a13b103f-482b-47d5-84a2-3621ba23bd20.png?1562631306", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/1/a13b103f-482b-47d5-84a2-3621ba23bd20.jpg?1562631306", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/a/1/a13b103f-482b-47d5-84a2-3621ba23bd20.jpg?1562631306"}, "mana_cost": "{2}{R}{R}", "cmc": 4.0, "type_line": "Creature \u2014 Beast Warrior", "oracle_text": "Whenever Laccolith Warrior becomes blocked, you may have it deal damage equal to its power to target creature. If you do, Laccolith Warrior assigns no combat damage this turn.", "power": "3", "toughness": "3", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "restricted", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "fa5d1fdb-f781-473d-b14d-50396d40d43f", "set": "nem", "set_name": "Nemesis", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/fa5d1fdb-f781-473d-b14d-50396d40d43f", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Anem&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/nem?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/a13b103f-482b-47d5-84a2-3621ba23bd20/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Abf957e0b-3070-4a85-a63d-3dadd7364d53&unique=prints", "collector_number": "90", "digital": false, "rarity": "uncommon", "flavor_text": "The screams are brief. The silence lingers.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Mark Zug", "artist_ids": ["48e2b98c-5467-4671-bd42-4c3746115117"], "illustration_id": "3007fe22-aaa2-4329-ace1-a95eed795f88", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 22569, "prices": {"usd": "0.10", "usd_foil": "0.42", "usd_etched": null, "eur": "0.15", "eur_foil": "0.70", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=21344", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Laccolith+Warrior&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Laccolith+Warrior&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Laccolith+Warrior"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/7172?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Laccolith+Warrior&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/14021?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "86eb5b9e-320f-40de-8668-ee0c08f63ec1", "oracle_id": "b16b10ec-a6a3-4bda-a561-9b7bb8eee194", "multiverse_ids": [21335], "mtgo_id": 13839, "mtgo_foil_id": 13840, "tcgplayer_id": 7173, "cardmarket_id": 11814, "name": "Laccolith Whelp", "lang": "en", "released_at": "2000-02-14", "uri": "https://api.scryfall.com/cards/86eb5b9e-320f-40de-8668-ee0c08f63ec1", "scryfall_uri": "https://scryfall.com/card/nem/91/laccolith-whelp?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/8/6/86eb5b9e-320f-40de-8668-ee0c08f63ec1.jpg?1562630877", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/6/86eb5b9e-320f-40de-8668-ee0c08f63ec1.jpg?1562630877", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/8/6/86eb5b9e-320f-40de-8668-ee0c08f63ec1.jpg?1562630877", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/8/6/86eb5b9e-320f-40de-8668-ee0c08f63ec1.png?1562630877", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/6/86eb5b9e-320f-40de-8668-ee0c08f63ec1.jpg?1562630877", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/8/6/86eb5b9e-320f-40de-8668-ee0c08f63ec1.jpg?1562630877"}, "mana_cost": "{R}", "cmc": 1.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Whenever Laccolith Whelp becomes blocked, you may have it deal damage equal to its power to target creature. If you do, Laccolith Whelp assigns no combat damage this turn.", "power": "1", "toughness": "1", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "fa5d1fdb-f781-473d-b14d-50396d40d43f", "set": "nem", "set_name": "Nemesis", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/fa5d1fdb-f781-473d-b14d-50396d40d43f", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Anem&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/nem?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/86eb5b9e-320f-40de-8668-ee0c08f63ec1/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ab16b10ec-a6a3-4bda-a561-9b7bb8eee194&unique=prints", "collector_number": "91", "digital": false, "rarity": "common", "flavor_text": "They don't feed; they stoke.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Dave Dorman", "artist_ids": ["9235458b-ce92-45bd-a430-a72ecd8e6176"], "illustration_id": "9fe18c8a-9274-4e4e-a75b-55c160ebc402", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 21930, "prices": {"usd": "0.09", "usd_foil": "0.54", "usd_etched": null, "eur": "0.50", "eur_foil": "0.50", "tix": "0.09"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=21335", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Laccolith+Whelp&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Laccolith+Whelp&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Laccolith+Whelp"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/7173?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Laccolith+Whelp&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/13839?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "f45a9e86-133e-4626-a239-73ef88d9ae12", "oracle_id": "144bef8b-3583-4e98-9285-a1965e7e17f8", "multiverse_ids": [522094], "mtgo_id": 90405, "tcgplayer_id": 239813, "cardmarket_id": 566425, "name": "Landscaper Colos", "lang": "en", "released_at": "2021-06-18", "uri": "https://api.scryfall.com/cards/f45a9e86-133e-4626-a239-73ef88d9ae12", "scryfall_uri": "https://scryfall.com/card/mh2/18/landscaper-colos?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/f/4/f45a9e86-133e-4626-a239-73ef88d9ae12.jpg?1626093695", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/4/f45a9e86-133e-4626-a239-73ef88d9ae12.jpg?1626093695", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/f/4/f45a9e86-133e-4626-a239-73ef88d9ae12.jpg?1626093695", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/f/4/f45a9e86-133e-4626-a239-73ef88d9ae12.png?1626093695", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/4/f45a9e86-133e-4626-a239-73ef88d9ae12.jpg?1626093695", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/f/4/f45a9e86-133e-4626-a239-73ef88d9ae12.jpg?1626093695"}, "mana_cost": "{5}{W}", "cmc": 6.0, "type_line": "Creature \u2014 Goat Beast", "oracle_text": "When Landscaper Colos enters the battlefield, put target card from an opponent's graveyard on the bottom of their library.\nBasic landcycling {1}{W} ({1}{W}, Discard this card: Search your library for a basic land card, reveal it, put it into your hand, then shuffle.)", "power": "4", "toughness": "6", "colors": ["W"], "color_identity": ["W"], "keywords": ["Landcycling", "Basic landcycling", "Typecycling"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "c1c7eb8c-f205-40ab-a609-767cb296544e", "set": "mh2", "set_name": "Modern Horizons 2", "set_type": "draft_innovation", "set_uri": "https://api.scryfall.com/sets/c1c7eb8c-f205-40ab-a609-767cb296544e", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Amh2&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/mh2?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/f45a9e86-133e-4626-a239-73ef88d9ae12/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A144bef8b-3583-4e98-9285-a1965e7e17f8&unique=prints", "collector_number": "18", "digital": false, "rarity": "common", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Josu Hernaiz", "artist_ids": ["74246024-92b4-43d0-a5af-a3f9f2a35d5f"], "illustration_id": "f9b5103c-5aee-476a-bb1c-4250a5584384", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 15355, "preview": {"source": "Marshall Sutcliffe", "source_uri": "https://twitter.com/Marshall_LR/status/1397844588551835654", "previewed_at": "2021-05-27"}, "prices": {"usd": "0.01", "usd_foil": "0.05", "usd_etched": null, "eur": "0.15", "eur_foil": "0.02", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=522094", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Landscaper+Colos&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Landscaper+Colos&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Landscaper+Colos"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/239813?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Landscaper+Colos&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/90405?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "594bbe43-a8aa-42aa-bc49-cb4f3bc05cad", "oracle_id": "85643f9b-49ea-434b-9f27-c1431064345e", "multiverse_ids": [461023], "mtgo_id": 71798, "arena_id": 69547, "tcgplayer_id": 187251, "cardmarket_id": 371913, "name": "Lazotep Reaver", "lang": "en", "released_at": "2019-05-03", "uri": "https://api.scryfall.com/cards/594bbe43-a8aa-42aa-bc49-cb4f3bc05cad", "scryfall_uri": "https://scryfall.com/card/war/96/lazotep-reaver?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/5/9/594bbe43-a8aa-42aa-bc49-cb4f3bc05cad.jpg?1557576504", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/9/594bbe43-a8aa-42aa-bc49-cb4f3bc05cad.jpg?1557576504", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/5/9/594bbe43-a8aa-42aa-bc49-cb4f3bc05cad.jpg?1557576504", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/5/9/594bbe43-a8aa-42aa-bc49-cb4f3bc05cad.png?1557576504", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/9/594bbe43-a8aa-42aa-bc49-cb4f3bc05cad.jpg?1557576504", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/5/9/594bbe43-a8aa-42aa-bc49-cb4f3bc05cad.jpg?1557576504"}, "mana_cost": "{1}{B}", "cmc": 2.0, "type_line": "Creature \u2014 Zombie Beast", "oracle_text": "When Lazotep Reaver enters the battlefield, amass 1. (Put a +1/+1 counter on an Army you control. If you don't control one, create a 0/0 black Zombie Army creature token first.)", "power": "1", "toughness": "2", "colors": ["B"], "color_identity": ["B"], "keywords": ["Amass"], "all_parts": [{"object": "related_card", "id": "594bbe43-a8aa-42aa-bc49-cb4f3bc05cad", "component": "combo_piece", "name": "Lazotep Reaver", "type_line": "Creature \u2014 Zombie Beast", "uri": "https://api.scryfall.com/cards/594bbe43-a8aa-42aa-bc49-cb4f3bc05cad"}, {"object": "related_card", "id": "2f4b7c63-8430-4ca4-baee-dc958d5bd22f", "component": "token", "name": "Zombie Army", "type_line": "Token Creature \u2014 Zombie Army", "uri": "https://api.scryfall.com/cards/2f4b7c63-8430-4ca4-baee-dc958d5bd22f"}], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "ee044f0b-e101-4ead-8d0e-aa510aad4277", "set": "war", "set_name": "War of the Spark", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/ee044f0b-e101-4ead-8d0e-aa510aad4277", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Awar&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/war?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/594bbe43-a8aa-42aa-bc49-cb4f3bc05cad/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A85643f9b-49ea-434b-9f27-c1431064345e&unique=prints", "collector_number": "96", "digital": false, "rarity": "common", "flavor_text": "Despite their many forms, the Eternals worked in chilling harmony, unburdened by instinct or emotion.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Craig J Spearing", "artist_ids": ["b0f15e74-0dd6-4156-959e-c5e30c5cdc52"], "illustration_id": "b3e8ef6f-4411-4634-9150-ff64780d9a81", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 6505, "penny_rank": 1019, "preview": {"source": "Ken Yukuhiro", "source_uri": "https://gaming.youtube.com/watch?v=_Y4PLxZdBok", "previewed_at": "2019-04-03"}, "prices": {"usd": "0.11", "usd_foil": "1.12", "usd_etched": null, "eur": "0.07", "eur_foil": "0.27", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=461023", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Lazotep+Reaver&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Lazotep+Reaver&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Lazotep+Reaver"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/187251?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Lazotep+Reaver&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/71798?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "55f97b4c-42c7-4986-a150-0b8de11f0537", "oracle_id": "0ee14128-3bec-4b65-8ee4-619337d4ed45", "multiverse_ids": [197856], "mtgo_id": 35537, "mtgo_foil_id": 35538, "tcgplayer_id": 34396, "cardmarket_id": 22149, "name": "Leatherback Baloth", "lang": "en", "released_at": "2010-02-05", "uri": "https://api.scryfall.com/cards/55f97b4c-42c7-4986-a150-0b8de11f0537", "scryfall_uri": "https://scryfall.com/card/wwk/107/leatherback-baloth?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/5/5/55f97b4c-42c7-4986-a150-0b8de11f0537.jpg?1562287740", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/5/55f97b4c-42c7-4986-a150-0b8de11f0537.jpg?1562287740", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/5/5/55f97b4c-42c7-4986-a150-0b8de11f0537.jpg?1562287740", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/5/5/55f97b4c-42c7-4986-a150-0b8de11f0537.png?1562287740", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/5/55f97b4c-42c7-4986-a150-0b8de11f0537.jpg?1562287740", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/5/5/55f97b4c-42c7-4986-a150-0b8de11f0537.jpg?1562287740"}, "mana_cost": "{G}{G}{G}", "cmc": 3.0, "type_line": "Creature \u2014 Beast", "oracle_text": "", "power": "4", "toughness": "5", "colors": ["G"], "color_identity": ["G"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "restricted", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "2f248ce6-c2a5-4c6f-a2be-0c593fbe173c", "set": "wwk", "set_name": "Worldwake", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/2f248ce6-c2a5-4c6f-a2be-0c593fbe173c", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Awwk&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/wwk?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/55f97b4c-42c7-4986-a150-0b8de11f0537/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A0ee14128-3bec-4b65-8ee4-619337d4ed45&unique=prints", "collector_number": "107", "digital": false, "rarity": "uncommon", "flavor_text": "Heavy enough to withstand the Roil, leatherback skeletons are havens for travelers in storms and landshifts.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Dave Kendall", "artist_ids": ["8a5540a8-18c9-4fa9-802c-59d6866114d5"], "illustration_id": "d9645a5a-7943-4815-85e6-3d0dd568eba9", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 8863, "penny_rank": 833, "prices": {"usd": "0.22", "usd_foil": "0.75", "usd_etched": null, "eur": "0.34", "eur_foil": "1.39", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=197856", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Leatherback+Baloth&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Leatherback+Baloth&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Leatherback+Baloth"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/34396?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Leatherback+Baloth&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/35537?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "e2c621ad-7109-4e07-b0cf-49fc243bc175", "oracle_id": "0ee14128-3bec-4b65-8ee4-619337d4ed45", "multiverse_ids": [], "tcgplayer_id": 38200, "cardmarket_id": 22107, "name": "Leatherback Baloth", "lang": "en", "released_at": "2010-01-01", "uri": "https://api.scryfall.com/cards/e2c621ad-7109-4e07-b0cf-49fc243bc175", "scryfall_uri": "https://scryfall.com/card/pw10/37/leatherback-baloth?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/e/2/e2c621ad-7109-4e07-b0cf-49fc243bc175.jpg?1562448787", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/2/e2c621ad-7109-4e07-b0cf-49fc243bc175.jpg?1562448787", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/e/2/e2c621ad-7109-4e07-b0cf-49fc243bc175.jpg?1562448787", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/e/2/e2c621ad-7109-4e07-b0cf-49fc243bc175.png?1562448787", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/2/e2c621ad-7109-4e07-b0cf-49fc243bc175.jpg?1562448787", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/e/2/e2c621ad-7109-4e07-b0cf-49fc243bc175.jpg?1562448787"}, "mana_cost": "{G}{G}{G}", "cmc": 3.0, "type_line": "Creature \u2014 Beast", "oracle_text": "", "power": "4", "toughness": "5", "colors": ["G"], "color_identity": ["G"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "restricted", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": true, "nonfoil": false, "finishes": ["foil"], "oversized": false, "promo": true, "reprint": true, "variation": false, "set_id": "47a10564-4d80-4cf0-9851-80bf13a00533", "set": "pw10", "set_name": "Wizards Play Network 2010", "set_type": "promo", "set_uri": "https://api.scryfall.com/sets/47a10564-4d80-4cf0-9851-80bf13a00533", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Apw10&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/pw10?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/e2c621ad-7109-4e07-b0cf-49fc243bc175/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A0ee14128-3bec-4b65-8ee4-619337d4ed45&unique=prints", "collector_number": "37", "digital": false, "rarity": "rare", "watermark": "dci", "flavor_text": "Heavy enough to withstand the Roil, leatherback skeletons are havens for travelers in storms and landshifts.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Chris Rahn", "artist_ids": ["7742047e-0f80-4c0f-a530-d07460165e86"], "illustration_id": "bc02687b-b37a-44e6-8fa8-b8ba5f18cc30", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "promo_types": ["wizardsplaynetwork"], "edhrec_rank": 8863, "penny_rank": 833, "prices": {"usd": null, "usd_foil": "0.94", "usd_etched": null, "eur": null, "eur_foil": "0.23", "tix": null}, "related_uris": {"tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Leatherback+Baloth&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Leatherback+Baloth&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Leatherback+Baloth"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/38200?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Leatherback+Baloth&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Leatherback+Baloth&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "56125660-2307-4270-a947-f1f4ad63841c", "oracle_id": "174dfb7f-fe1e-4089-80c4-1788a9307263", "multiverse_ids": [39675], "mtgo_id": 18135, "mtgo_foil_id": 18136, "tcgplayer_id": 10657, "cardmarket_id": 1904, "name": "Leery Fogbeast", "lang": "en", "released_at": "2002-10-07", "uri": "https://api.scryfall.com/cards/56125660-2307-4270-a947-f1f4ad63841c", "scryfall_uri": "https://scryfall.com/card/ons/273/leery-fogbeast?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/5/6/56125660-2307-4270-a947-f1f4ad63841c.jpg?1562915161", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/6/56125660-2307-4270-a947-f1f4ad63841c.jpg?1562915161", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/5/6/56125660-2307-4270-a947-f1f4ad63841c.jpg?1562915161", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/5/6/56125660-2307-4270-a947-f1f4ad63841c.png?1562915161", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/6/56125660-2307-4270-a947-f1f4ad63841c.jpg?1562915161", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/5/6/56125660-2307-4270-a947-f1f4ad63841c.jpg?1562915161"}, "mana_cost": "{2}{G}", "cmc": 3.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Whenever Leery Fogbeast becomes blocked, prevent all combat damage that would be dealt this turn.", "power": "4", "toughness": "2", "colors": ["G"], "color_identity": ["G"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "914a6c6d-cb3b-45e8-a2db-9978a2339faf", "set": "ons", "set_name": "Onslaught", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/914a6c6d-cb3b-45e8-a2db-9978a2339faf", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aons&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ons?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/56125660-2307-4270-a947-f1f4ad63841c/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A174dfb7f-fe1e-4089-80c4-1788a9307263&unique=prints", "collector_number": "273", "digital": false, "rarity": "common", "flavor_text": "It emerges from the mists only to feed.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Matt Cavotta", "artist_ids": ["2e6a0611-9411-4ba4-98e3-c0e18cbf9f83"], "illustration_id": "b167ecc3-3165-4fa8-8ecc-5844cabfbc48", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 17467, "prices": {"usd": "0.07", "usd_foil": "0.30", "usd_etched": null, "eur": "0.02", "eur_foil": "0.49", "tix": "0.06"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=39675", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Leery+Fogbeast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Leery+Fogbeast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Leery+Fogbeast"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/10657?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Leery+Fogbeast&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/18135?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "91df110f-85d2-41cb-96b6-6c79cebfada7", "oracle_id": "0056e07b-416b-487e-9e6c-3697db402dd4", "multiverse_ids": [447071], "tcgplayer_id": 168309, "cardmarket_id": 359421, "name": "Leopard-Spotted Jiao", "lang": "en", "released_at": "2018-06-22", "uri": "https://api.scryfall.com/cards/91df110f-85d2-41cb-96b6-6c79cebfada7", "scryfall_uri": "https://scryfall.com/card/gs1/23/leopard-spotted-jiao?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/9/1/91df110f-85d2-41cb-96b6-6c79cebfada7.jpg?1562131600", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/1/91df110f-85d2-41cb-96b6-6c79cebfada7.jpg?1562131600", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/9/1/91df110f-85d2-41cb-96b6-6c79cebfada7.jpg?1562131600", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/9/1/91df110f-85d2-41cb-96b6-6c79cebfada7.png?1562131600", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/1/91df110f-85d2-41cb-96b6-6c79cebfada7.jpg?1562131600", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/9/1/91df110f-85d2-41cb-96b6-6c79cebfada7.jpg?1562131600"}, "mana_cost": "{1}{R}", "cmc": 2.0, "type_line": "Creature \u2014 Beast", "oracle_text": "", "power": "3", "toughness": "1", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "19c285e9-68e0-45e1-b82b-ac6051eb43be", "set": "gs1", "set_name": "Global Series Jiang Yanggu & Mu Yanling", "set_type": "duel_deck", "set_uri": "https://api.scryfall.com/sets/19c285e9-68e0-45e1-b82b-ac6051eb43be", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ags1&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/gs1?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/91df110f-85d2-41cb-96b6-6c79cebfada7/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A0056e07b-416b-487e-9e6c-3697db402dd4&unique=prints", "collector_number": "23", "digital": false, "rarity": "common", "flavor_text": "This strange beast has the hide of a leopard, the howl of a dog, and the horns of an ox.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Shinchuen Chen", "artist_ids": ["7278b044-a9c0-42f6-a6a8-d434d08c902f"], "illustration_id": "e4e955c6-96d9-4aa0-af27-c87c8d7e7b84", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "edhrec_rank": 22439, "prices": {"usd": "0.08", "usd_foil": null, "usd_etched": null, "eur": "0.05", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=447071", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Leopard-Spotted+Jiao&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Leopard-Spotted+Jiao&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Leopard-Spotted+Jiao"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/168309?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Leopard-Spotted+Jiao&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Leopard-Spotted+Jiao&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "63ed7aec-a513-418e-9cef-e0c51203055b", "oracle_id": "7e162cc1-9482-4812-8897-209ec2927ec0", "multiverse_ids": [24647], "mtgo_id": 14049, "mtgo_foil_id": 14050, "tcgplayer_id": 7327, "cardmarket_id": 3991, "name": "Lesser Gargadon", "lang": "en", "released_at": "2000-06-05", "uri": "https://api.scryfall.com/cards/63ed7aec-a513-418e-9cef-e0c51203055b", "scryfall_uri": "https://scryfall.com/card/pcy/97/lesser-gargadon?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/6/3/63ed7aec-a513-418e-9cef-e0c51203055b.jpg?1562913496", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/3/63ed7aec-a513-418e-9cef-e0c51203055b.jpg?1562913496", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/6/3/63ed7aec-a513-418e-9cef-e0c51203055b.jpg?1562913496", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/6/3/63ed7aec-a513-418e-9cef-e0c51203055b.png?1562913496", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/3/63ed7aec-a513-418e-9cef-e0c51203055b.jpg?1562913496", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/6/3/63ed7aec-a513-418e-9cef-e0c51203055b.jpg?1562913496"}, "mana_cost": "{2}{R}{R}", "cmc": 4.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Whenever Lesser Gargadon attacks or blocks, sacrifice a land.", "power": "6", "toughness": "4", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "restricted", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "c233bd36-57c0-4aa2-ae6c-7aeabfb4e3ce", "set": "pcy", "set_name": "Prophecy", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/c233bd36-57c0-4aa2-ae6c-7aeabfb4e3ce", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Apcy&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/pcy?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/63ed7aec-a513-418e-9cef-e0c51203055b/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A7e162cc1-9482-4812-8897-209ec2927ec0&unique=prints", "collector_number": "97", "digital": false, "rarity": "uncommon", "flavor_text": "Trod on by a gargadon\n\u2014Kipamu expression meaning \"wiped out\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Rob Alexander", "artist_ids": ["35906871-6c78-4ab2-9ed1-e6792c8efb74"], "illustration_id": "34253b5e-83e0-4378-a95e-af0f18de30b4", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 15449, "prices": {"usd": "0.16", "usd_foil": "1.50", "usd_etched": null, "eur": "0.10", "eur_foil": "0.65", "tix": "0.09"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=24647", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Lesser+Gargadon&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Lesser+Gargadon&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Lesser+Gargadon"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/7327?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Lesser+Gargadon&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/14049?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "b39db7a3-028e-4c01-8ff9-64d2a1397379", "oracle_id": "1ffd1f01-bec4-48a7-b2ef-c53af0efb450", "multiverse_ids": [9760], "tcgplayer_id": 882, "cardmarket_id": 11922, "name": "Lexivore", "lang": "en", "released_at": "1998-08-11", "uri": "https://api.scryfall.com/cards/b39db7a3-028e-4c01-8ff9-64d2a1397379", "scryfall_uri": "https://scryfall.com/card/ugl/7/lexivore?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/b/3/b39db7a3-028e-4c01-8ff9-64d2a1397379.jpg?1562799143", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/3/b39db7a3-028e-4c01-8ff9-64d2a1397379.jpg?1562799143", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/b/3/b39db7a3-028e-4c01-8ff9-64d2a1397379.jpg?1562799143", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/b/3/b39db7a3-028e-4c01-8ff9-64d2a1397379.png?1562799143", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/3/b39db7a3-028e-4c01-8ff9-64d2a1397379.jpg?1562799143", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/b/3/b39db7a3-028e-4c01-8ff9-64d2a1397379.jpg?1562799143"}, "mana_cost": "{3}{W}", "cmc": 4.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Whenever Lexivore deals damage to a player, destroy target permanent other than Lexivore with the most lines of text in its text box. (If two or more cards are tied, target any one of them.)", "power": "2", "toughness": "3", "colors": ["W"], "color_identity": ["W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "not_legal", "pauper": "not_legal", "vintage": "not_legal", "penny": "not_legal", "commander": "not_legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "not_legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "3404fc78-6678-4cf4-bd39-4c0be3bb7baf", "set": "ugl", "set_name": "Unglued", "set_type": "funny", "set_uri": "https://api.scryfall.com/sets/3404fc78-6678-4cf4-bd39-4c0be3bb7baf", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Augl&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ugl?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/b39db7a3-028e-4c01-8ff9-64d2a1397379/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A1ffd1f01-bec4-48a7-b2ef-c53af0efb450&unique=prints", "collector_number": "7", "digital": false, "rarity": "uncommon", "flavor_text": "Plucking the chicken\n\u2014Elvish expression meaning \"flinging the monkey\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Daniel Gelon", "artist_ids": ["63ac31a8-dd1a-4679-9f82-ece89429a084"], "illustration_id": "a7c7e81b-d6eb-4809-b69d-f3cedde52ddb", "border_color": "silver", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "prices": {"usd": "0.23", "usd_foil": null, "usd_etched": null, "eur": "0.25", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=9760", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Lexivore&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Lexivore&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Lexivore"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/882?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Lexivore&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Lexivore&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "c56b4e8f-d48e-4bb0-883d-29f978033f65", "oracle_id": "8ca3852a-fa37-46ef-a74d-3c7487ae50fc", "multiverse_ids": [461129], "mtgo_id": 72010, "arena_id": 69652, "tcgplayer_id": 187615, "cardmarket_id": 371916, "name": "Leyline Prowler", "lang": "en", "released_at": "2019-05-03", "uri": "https://api.scryfall.com/cards/c56b4e8f-d48e-4bb0-883d-29f978033f65", "scryfall_uri": "https://scryfall.com/card/war/202/leyline-prowler?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/c/5/c56b4e8f-d48e-4bb0-883d-29f978033f65.jpg?1557577175", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/5/c56b4e8f-d48e-4bb0-883d-29f978033f65.jpg?1557577175", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/c/5/c56b4e8f-d48e-4bb0-883d-29f978033f65.jpg?1557577175", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/c/5/c56b4e8f-d48e-4bb0-883d-29f978033f65.png?1557577175", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/5/c56b4e8f-d48e-4bb0-883d-29f978033f65.jpg?1557577175", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/c/5/c56b4e8f-d48e-4bb0-883d-29f978033f65.jpg?1557577175"}, "mana_cost": "{1}{B}{G}", "cmc": 3.0, "type_line": "Creature \u2014 Nightmare Beast", "oracle_text": "Deathtouch, lifelink\n{T}: Add one mana of any color.", "power": "2", "toughness": "3", "colors": ["B", "G"], "color_identity": ["B", "G"], "keywords": ["Lifelink", "Deathtouch"], "produced_mana": ["B", "G", "R", "U", "W"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "restricted", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "ee044f0b-e101-4ead-8d0e-aa510aad4277", "set": "war", "set_name": "War of the Spark", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/ee044f0b-e101-4ead-8d0e-aa510aad4277", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Awar&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/war?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/c56b4e8f-d48e-4bb0-883d-29f978033f65/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A8ca3852a-fa37-46ef-a74d-3c7487ae50fc&unique=prints", "collector_number": "202", "digital": false, "rarity": "uncommon", "flavor_text": "It feeds on the dark energies that course through the deep world\u2014and on any other creature lured by the leyline's pull.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "YW Tang", "artist_ids": ["63b2909b-7102-49c5-8f9d-6116a1913308"], "illustration_id": "e6227e66-0752-487b-a3fc-40406e4a9d0f", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 2381, "penny_rank": 3392, "preview": {"source": "Brad Nelson", "source_uri": "https://twitter.com/fffreakmtg/status/1113471296766083072", "previewed_at": "2019-04-03"}, "prices": {"usd": "0.11", "usd_foil": "2.21", "usd_etched": null, "eur": "0.07", "eur_foil": "1.39", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=461129", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Leyline+Prowler&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Leyline+Prowler&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Leyline+Prowler"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/187615?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Leyline+Prowler&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/72010?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "24a0860d-d3b9-4a00-a8cb-617bc317b93d", "oracle_id": "687abe1c-b2fc-49e0-bd36-3db3dc3a5039", "multiverse_ids": [180617], "mtgo_id": 32394, "mtgo_foil_id": 32395, "tcgplayer_id": 31763, "cardmarket_id": 20921, "name": "Lightning Reaver", "lang": "en", "released_at": "2009-04-30", "uri": "https://api.scryfall.com/cards/24a0860d-d3b9-4a00-a8cb-617bc317b93d", "scryfall_uri": "https://scryfall.com/card/arb/42/lightning-reaver?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/2/4/24a0860d-d3b9-4a00-a8cb-617bc317b93d.jpg?1562640145", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/4/24a0860d-d3b9-4a00-a8cb-617bc317b93d.jpg?1562640145", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/2/4/24a0860d-d3b9-4a00-a8cb-617bc317b93d.jpg?1562640145", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/2/4/24a0860d-d3b9-4a00-a8cb-617bc317b93d.png?1562640145", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/4/24a0860d-d3b9-4a00-a8cb-617bc317b93d.jpg?1562640145", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/2/4/24a0860d-d3b9-4a00-a8cb-617bc317b93d.jpg?1562640145"}, "mana_cost": "{3}{B}{R}", "cmc": 5.0, "type_line": "Creature \u2014 Zombie Beast", "oracle_text": "Haste; fear (This creature can't be blocked except by artifact creatures and/or black creatures.)\nWhenever Lightning Reaver deals combat damage to a player, put a charge counter on it.\nAt the beginning of your end step, Lightning Reaver deals damage equal to the number of charge counters on it to each opponent.", "power": "3", "toughness": "3", "colors": ["B", "R"], "color_identity": ["B", "R"], "keywords": ["Haste", "Fear"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "db486ec5-141d-4781-9ee5-5456926934c1", "set": "arb", "set_name": "Alara Reborn", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/db486ec5-141d-4781-9ee5-5456926934c1", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aarb&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/arb?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/24a0860d-d3b9-4a00-a8cb-617bc317b93d/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A687abe1c-b2fc-49e0-bd36-3db3dc3a5039&unique=prints", "collector_number": "42", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Cyril Van Der Haegen", "artist_ids": ["90edbd2e-9462-4394-b0b4-02885b4e56b3"], "illustration_id": "455b2bcd-8d91-4778-ab93-abe4a105b185", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 9900, "penny_rank": 6792, "prices": {"usd": "0.74", "usd_foil": "2.19", "usd_etched": null, "eur": "0.31", "eur_foil": "2.18", "tix": "0.01"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=180617", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Lightning+Reaver&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Lightning+Reaver&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Lightning+Reaver"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/31763?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Lightning+Reaver&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/32394?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "4a8cff2f-ba52-4d22-83e8-13c56368f1df", "oracle_id": "c6f68e4b-af2b-43d5-8052-104defe7f3ec", "multiverse_ids": [373731], "mtgo_id": 50168, "mtgo_foil_id": 50169, "tcgplayer_id": 71344, "cardmarket_id": 264233, "name": "Loathsome Catoblepas", "lang": "en", "released_at": "2013-09-27", "uri": "https://api.scryfall.com/cards/4a8cff2f-ba52-4d22-83e8-13c56368f1df", "scryfall_uri": "https://scryfall.com/card/ths/95/loathsome-catoblepas?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/4/a/4a8cff2f-ba52-4d22-83e8-13c56368f1df.jpg?1562817730", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/a/4a8cff2f-ba52-4d22-83e8-13c56368f1df.jpg?1562817730", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/4/a/4a8cff2f-ba52-4d22-83e8-13c56368f1df.jpg?1562817730", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/4/a/4a8cff2f-ba52-4d22-83e8-13c56368f1df.png?1562817730", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/a/4a8cff2f-ba52-4d22-83e8-13c56368f1df.jpg?1562817730", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/4/a/4a8cff2f-ba52-4d22-83e8-13c56368f1df.jpg?1562817730"}, "mana_cost": "{5}{B}", "cmc": 6.0, "type_line": "Creature \u2014 Beast", "oracle_text": "{2}{G}: Loathsome Catoblepas must be blocked this turn if able.\nWhen Loathsome Catoblepas dies, target creature an opponent controls gets -3/-3 until end of turn.", "power": "3", "toughness": "3", "colors": ["B"], "color_identity": ["B", "G"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "69093d6f-e25a-41a4-8cf5-688d7f11c0fb", "set": "ths", "set_name": "Theros", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/69093d6f-e25a-41a4-8cf5-688d7f11c0fb", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aths&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ths?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/4a8cff2f-ba52-4d22-83e8-13c56368f1df/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ac6f68e4b-af2b-43d5-8052-104defe7f3ec&unique=prints", "collector_number": "95", "digital": false, "rarity": "common", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Christopher Burdett", "artist_ids": ["ff32a9e2-54fd-4d6a-97b5-1070e692833b"], "illustration_id": "e061a059-67fe-4a50-8d2a-2a008db0fc6d", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 22573, "prices": {"usd": "0.01", "usd_foil": "0.09", "usd_etched": null, "eur": "0.02", "eur_foil": "0.15", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=373731", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Loathsome+Catoblepas&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Loathsome+Catoblepas&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Loathsome+Catoblepas"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/71344?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Loathsome+Catoblepas&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/50168?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "bf0dcf33-8d3f-429c-8ad8-a65d07d7c790", "oracle_id": "c6ca1f21-3aaf-4a5e-938e-7daed67a9d6e", "multiverse_ids": [29770], "mtgo_id": 17239, "mtgo_foil_id": 17240, "tcgplayer_id": 9697, "cardmarket_id": 2372, "name": "Longhorn Firebeast", "lang": "en", "released_at": "2002-02-04", "uri": "https://api.scryfall.com/cards/bf0dcf33-8d3f-429c-8ad8-a65d07d7c790", "scryfall_uri": "https://scryfall.com/card/tor/103/longhorn-firebeast?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/b/f/bf0dcf33-8d3f-429c-8ad8-a65d07d7c790.jpg?1562631821", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/f/bf0dcf33-8d3f-429c-8ad8-a65d07d7c790.jpg?1562631821", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/b/f/bf0dcf33-8d3f-429c-8ad8-a65d07d7c790.jpg?1562631821", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/b/f/bf0dcf33-8d3f-429c-8ad8-a65d07d7c790.png?1562631821", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/f/bf0dcf33-8d3f-429c-8ad8-a65d07d7c790.jpg?1562631821", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/b/f/bf0dcf33-8d3f-429c-8ad8-a65d07d7c790.jpg?1562631821"}, "mana_cost": "{2}{R}", "cmc": 3.0, "type_line": "Creature \u2014 Elemental Ox Beast", "oracle_text": "When Longhorn Firebeast enters the battlefield, any opponent may have it deal 5 damage to them. If a player does, sacrifice Longhorn Firebeast.", "power": "3", "toughness": "2", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "e0b3fda1-a6ca-4996-849b-08b463d39484", "set": "tor", "set_name": "Torment", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/e0b3fda1-a6ca-4996-849b-08b463d39484", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ator&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/tor?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/bf0dcf33-8d3f-429c-8ad8-a65d07d7c790/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ac6ca1f21-3aaf-4a5e-938e-7daed67a9d6e&unique=prints", "collector_number": "103", "digital": false, "rarity": "common", "flavor_text": "Its blast can fuse armor to bone, leaving skeletons that glint brightly in the sun.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Glen Angus", "artist_ids": ["7be3b9e4-de9b-4a3d-884e-e67b9681d409"], "illustration_id": "25224132-0b82-4c7b-bd8b-df863fe58a7b", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 22441, "prices": {"usd": "0.05", "usd_foil": "0.39", "usd_etched": null, "eur": "0.05", "eur_foil": "0.50", "tix": "0.06"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=29770", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Longhorn+Firebeast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Longhorn+Firebeast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Longhorn+Firebeast"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/9697?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Longhorn+Firebeast&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/17239?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "83e035ca-eccd-4b63-817c-f2c676b9c98d", "oracle_id": "3ec271d8-8264-4574-8c4c-e57b35872b1e", "multiverse_ids": [479714], "mtgo_id": 80397, "arena_id": 71261, "tcgplayer_id": 212256, "cardmarket_id": 453008, "name": "Lore Drakkis", "lang": "en", "released_at": "2020-04-24", "uri": "https://api.scryfall.com/cards/83e035ca-eccd-4b63-817c-f2c676b9c98d", "scryfall_uri": "https://scryfall.com/card/iko/194/lore-drakkis?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/8/3/83e035ca-eccd-4b63-817c-f2c676b9c98d.jpg?1591228108", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/3/83e035ca-eccd-4b63-817c-f2c676b9c98d.jpg?1591228108", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/8/3/83e035ca-eccd-4b63-817c-f2c676b9c98d.jpg?1591228108", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/8/3/83e035ca-eccd-4b63-817c-f2c676b9c98d.png?1591228108", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/3/83e035ca-eccd-4b63-817c-f2c676b9c98d.jpg?1591228108", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/8/3/83e035ca-eccd-4b63-817c-f2c676b9c98d.jpg?1591228108"}, "mana_cost": "{1}{U}{R}", "cmc": 3.0, "type_line": "Creature \u2014 Lizard Beast", "oracle_text": "Mutate {U/R}{U/R} (If you cast this spell for its mutate cost, put it over or under target non-Human creature you own. They mutate into the creature on top plus all abilities from under it.)\nWhenever this creature mutates, return target instant or sorcery card from your graveyard to your hand.", "power": "2", "toughness": "3", "colors": ["R", "U"], "color_identity": ["R", "U"], "keywords": ["Mutate"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "restricted", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "19feda43-15ab-427e-a0e4-148a4bf2b03a", "set": "iko", "set_name": "Ikoria: Lair of Behemoths", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/19feda43-15ab-427e-a0e4-148a4bf2b03a", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aiko&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/iko?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/83e035ca-eccd-4b63-817c-f2c676b9c98d/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A3ec271d8-8264-4574-8c4c-e57b35872b1e&unique=prints", "collector_number": "194", "digital": false, "rarity": "uncommon", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Lucas Graciano", "artist_ids": ["ce98f39c-7cdd-47e6-a520-6c50443bb4c2"], "illustration_id": "59e9f077-9ccc-4afe-881d-45a0dc42c598", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 4092, "penny_rank": 8466, "preview": {"source": "Wizards of the Coast", "source_uri": "", "previewed_at": "2020-04-06"}, "prices": {"usd": "0.10", "usd_foil": "0.16", "usd_etched": null, "eur": "0.15", "eur_foil": "0.10", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=479714", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Lore+Drakkis&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Lore+Drakkis&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Lore+Drakkis"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/212256?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Lore+Drakkis&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/80397?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "e938fac3-544a-4f27-9726-a67153392031", "oracle_id": "3ec271d8-8264-4574-8c4c-e57b35872b1e", "multiverse_ids": [], "arena_id": 73674, "tcgplayer_id": 212248, "cardmarket_id": 453048, "name": "Lore Drakkis", "lang": "en", "released_at": "2020-04-24", "uri": "https://api.scryfall.com/cards/e938fac3-544a-4f27-9726-a67153392031", "scryfall_uri": "https://scryfall.com/card/iko/301/lore-drakkis?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/e/9/e938fac3-544a-4f27-9726-a67153392031.jpg?1604781920", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/9/e938fac3-544a-4f27-9726-a67153392031.jpg?1604781920", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/e/9/e938fac3-544a-4f27-9726-a67153392031.jpg?1604781920", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/e/9/e938fac3-544a-4f27-9726-a67153392031.png?1604781920", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/9/e938fac3-544a-4f27-9726-a67153392031.jpg?1604781920", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/e/9/e938fac3-544a-4f27-9726-a67153392031.jpg?1604781920"}, "mana_cost": "{1}{U}{R}", "cmc": 3.0, "type_line": "Creature \u2014 Lizard Beast", "oracle_text": "Mutate {U/R}{U/R} (If you cast this spell for its mutate cost, put it over or under target non-Human creature you own. They mutate into the creature on top plus all abilities from under it.)\nWhenever this creature mutates, return target instant or sorcery card from your graveyard to your hand.", "power": "2", "toughness": "3", "colors": ["R", "U"], "color_identity": ["R", "U"], "keywords": ["Mutate"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "restricted", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "19feda43-15ab-427e-a0e4-148a4bf2b03a", "set": "iko", "set_name": "Ikoria: Lair of Behemoths", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/19feda43-15ab-427e-a0e4-148a4bf2b03a", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aiko&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/iko?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/e938fac3-544a-4f27-9726-a67153392031/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A3ec271d8-8264-4574-8c4c-e57b35872b1e&unique=prints", "collector_number": "301", "digital": false, "rarity": "uncommon", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Andrew Huerta", "artist_ids": ["7f2021cf-4718-404f-8b49-4658b16874fe"], "illustration_id": "d4385fd4-af5b-462c-a12e-e179f1fee52d", "border_color": "black", "frame": "2015", "frame_effects": ["showcase"], "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "promo_types": ["boosterfun"], "edhrec_rank": 4092, "penny_rank": 8466, "preview": {"source": "Wizards of the Coast", "source_uri": "", "previewed_at": "2020-04-06"}, "prices": {"usd": "0.20", "usd_foil": "0.40", "usd_etched": null, "eur": "0.04", "eur_foil": "0.50", "tix": null}, "related_uris": {"tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Lore+Drakkis&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Lore+Drakkis&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Lore+Drakkis"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/212248?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Lore+Drakkis&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Lore+Drakkis&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "4ccdef9c-1e85-4358-8059-8972479f7556", "oracle_id": "7e84aff5-2cb6-4214-befd-3d2de31229e5", "multiverse_ids": [473127], "mtgo_id": 78468, "arena_id": 70312, "tcgplayer_id": 198578, "cardmarket_id": 399219, "name": "Lovestruck Beast // Heart's Desire", "lang": "en", "released_at": "2019-10-04", "uri": "https://api.scryfall.com/cards/4ccdef9c-1e85-4358-8059-8972479f7556", "scryfall_uri": "https://scryfall.com/card/eld/165/lovestruck-beast-hearts-desire?utm_source=api", "layout": "adventure", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/4/c/4ccdef9c-1e85-4358-8059-8972479f7556.jpg?1572490606", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/c/4ccdef9c-1e85-4358-8059-8972479f7556.jpg?1572490606", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/4/c/4ccdef9c-1e85-4358-8059-8972479f7556.jpg?1572490606", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/4/c/4ccdef9c-1e85-4358-8059-8972479f7556.png?1572490606", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/c/4ccdef9c-1e85-4358-8059-8972479f7556.jpg?1572490606", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/4/c/4ccdef9c-1e85-4358-8059-8972479f7556.jpg?1572490606"}, "mana_cost": "{2}{G} // {G}", "cmc": 3.0, "type_line": "Creature \u2014 Beast Noble // Sorcery \u2014 Adventure", "power": "5", "toughness": "5", "colors": ["G"], "color_identity": ["G"], "keywords": [], "card_faces": [{"object": "card_face", "name": "Lovestruck Beast", "mana_cost": "{2}{G}", "type_line": "Creature \u2014 Beast Noble", "oracle_text": "Lovestruck Beast can't attack unless you control a 1/1 creature.", "power": "5", "toughness": "5", "flavor_text": "His mind chose solitude, but his heart disagreed.", "artist": "Kev Walker", "artist_id": "f366a0ee-a0cd-466d-ba6a-90058c7a31a6", "illustration_id": "5313c8d4-5dc9-484d-9b1f-5349de020e4e"}, {"object": "card_face", "name": "Heart's Desire", "flavor_name": "", "mana_cost": "{G}", "type_line": "Sorcery \u2014 Adventure", "oracle_text": "Create a 1/1 white Human creature token. (Then exile this card. You may cast the creature later from exile.)", "artist": "Kev Walker", "artist_id": "f366a0ee-a0cd-466d-ba6a-90058c7a31a6"}], "all_parts": [{"object": "related_card", "id": "4ccdef9c-1e85-4358-8059-8972479f7556", "component": "combo_piece", "name": "Lovestruck Beast // Heart's Desire", "type_line": "Creature \u2014 Beast Noble // Sorcery \u2014 Adventure", "uri": "https://api.scryfall.com/cards/4ccdef9c-1e85-4358-8059-8972479f7556"}, {"object": "related_card", "id": "94057dc6-e589-4a29-9bda-90f5bece96c4", "component": "token", "name": "Human", "type_line": "Token Creature \u2014 Human", "uri": "https://api.scryfall.com/cards/94057dc6-e589-4a29-9bda-90f5bece96c4"}], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "a90a7b2f-9dd8-4fc7-9f7d-8ea2797ec782", "set": "eld", "set_name": "Throne of Eldraine", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/a90a7b2f-9dd8-4fc7-9f7d-8ea2797ec782", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aeld&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/eld?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/4ccdef9c-1e85-4358-8059-8972479f7556/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A7e84aff5-2cb6-4214-befd-3d2de31229e5&unique=prints", "collector_number": "165", "digital": false, "rarity": "rare", "flavor_text": "His mind chose solitude, but his heart disagreed.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Kev Walker", "artist_ids": ["f366a0ee-a0cd-466d-ba6a-90058c7a31a6"], "illustration_id": "5313c8d4-5dc9-484d-9b1f-5349de020e4e", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 8063, "penny_rank": 258, "preview": {"source": "Wizards of the Coast", "source_uri": "https://twitter.com/MTG_Arena/status/1169022264182038531", "previewed_at": "2019-09-03"}, "prices": {"usd": "0.11", "usd_foil": "0.29", "usd_etched": null, "eur": "0.15", "eur_foil": "1.00", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=473127", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Lovestruck+Beast+%2F%2F+Heart%27s+Desire&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Lovestruck+Beast+%2F%2F+Heart%27s+Desire&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Lovestruck+Beast"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/198578?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Lovestruck+Beast&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/78468?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "341110e5-577d-45ee-bf62-53373a331c87", "oracle_id": "7e84aff5-2cb6-4214-befd-3d2de31229e5", "multiverse_ids": [], "tcgplayer_id": 198388, "cardmarket_id": 398594, "name": "Lovestruck Beast // Heart's Desire", "lang": "en", "released_at": "2019-10-04", "uri": "https://api.scryfall.com/cards/341110e5-577d-45ee-bf62-53373a331c87", "scryfall_uri": "https://scryfall.com/card/eld/299/lovestruck-beast-hearts-desire?utm_source=api", "layout": "adventure", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/3/4/341110e5-577d-45ee-bf62-53373a331c87.jpg?1571399806", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/4/341110e5-577d-45ee-bf62-53373a331c87.jpg?1571399806", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/3/4/341110e5-577d-45ee-bf62-53373a331c87.jpg?1571399806", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/3/4/341110e5-577d-45ee-bf62-53373a331c87.png?1571399806", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/4/341110e5-577d-45ee-bf62-53373a331c87.jpg?1571399806", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/3/4/341110e5-577d-45ee-bf62-53373a331c87.jpg?1571399806"}, "mana_cost": "{2}{G} // {G}", "cmc": 3.0, "type_line": "Creature \u2014 Beast Noble // Sorcery \u2014 Adventure", "power": "5", "toughness": "5", "colors": ["G"], "color_identity": ["G"], "keywords": [], "card_faces": [{"object": "card_face", "name": "Lovestruck Beast", "mana_cost": "{2}{G}", "type_line": "Creature \u2014 Beast Noble", "oracle_text": "Lovestruck Beast can't attack unless you control a 1/1 creature.", "power": "5", "toughness": "5", "flavor_text": "His mind chose solitude, but his heart disagreed.", "artist": "Tyler Walpole", "artist_id": "70c4c8c7-61a8-44e7-8fb1-161b7f943e7e", "illustration_id": "27cd54e9-4639-4344-be81-3bdcb1efa548"}, {"object": "card_face", "name": "Heart's Desire", "flavor_name": "", "mana_cost": "{G}", "type_line": "Sorcery \u2014 Adventure", "oracle_text": "Create a 1/1 white Human creature token. (Then exile this card. You may cast the creature later from exile.)", "artist": "Tyler Walpole", "artist_id": "70c4c8c7-61a8-44e7-8fb1-161b7f943e7e"}], "all_parts": [{"object": "related_card", "id": "4ccdef9c-1e85-4358-8059-8972479f7556", "component": "combo_piece", "name": "Lovestruck Beast // Heart's Desire", "type_line": "Creature \u2014 Beast Noble // Sorcery \u2014 Adventure", "uri": "https://api.scryfall.com/cards/4ccdef9c-1e85-4358-8059-8972479f7556"}, {"object": "related_card", "id": "94057dc6-e589-4a29-9bda-90f5bece96c4", "component": "token", "name": "Human", "type_line": "Token Creature \u2014 Human", "uri": "https://api.scryfall.com/cards/94057dc6-e589-4a29-9bda-90f5bece96c4"}], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "a90a7b2f-9dd8-4fc7-9f7d-8ea2797ec782", "set": "eld", "set_name": "Throne of Eldraine", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/a90a7b2f-9dd8-4fc7-9f7d-8ea2797ec782", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aeld&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/eld?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/341110e5-577d-45ee-bf62-53373a331c87/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A7e84aff5-2cb6-4214-befd-3d2de31229e5&unique=prints", "collector_number": "299", "digital": false, "rarity": "rare", "flavor_text": "His mind chose solitude, but his heart disagreed.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Tyler Walpole", "artist_ids": ["70c4c8c7-61a8-44e7-8fb1-161b7f943e7e"], "illustration_id": "27cd54e9-4639-4344-be81-3bdcb1efa548", "border_color": "black", "frame": "2015", "frame_effects": ["showcase"], "security_stamp": "oval", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "promo_types": ["boosterfun"], "edhrec_rank": 8063, "penny_rank": 258, "prices": {"usd": "0.36", "usd_foil": "1.09", "usd_etched": null, "eur": "0.38", "eur_foil": "0.90", "tix": null}, "related_uris": {"tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Lovestruck+Beast+%2F%2F+Heart%27s+Desire&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Lovestruck+Beast+%2F%2F+Heart%27s+Desire&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Lovestruck+Beast"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/198388?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Lovestruck+Beast&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Lovestruck+Beast&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "b31a81e8-df0e-4540-93c1-c30c31ea9be9", "oracle_id": "2a56fe0b-f8a9-499c-bce1-cec6cb3b66f0", "multiverse_ids": [491878], "mtgo_id": 83449, "arena_id": 73439, "tcgplayer_id": 222045, "cardmarket_id": 496055, "name": "Lullmage's Familiar", "lang": "en", "released_at": "2020-09-25", "uri": "https://api.scryfall.com/cards/b31a81e8-df0e-4540-93c1-c30c31ea9be9", "scryfall_uri": "https://scryfall.com/card/znr/227/lullmages-familiar?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/b/3/b31a81e8-df0e-4540-93c1-c30c31ea9be9.jpg?1604200204", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/3/b31a81e8-df0e-4540-93c1-c30c31ea9be9.jpg?1604200204", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/b/3/b31a81e8-df0e-4540-93c1-c30c31ea9be9.jpg?1604200204", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/b/3/b31a81e8-df0e-4540-93c1-c30c31ea9be9.png?1604200204", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/3/b31a81e8-df0e-4540-93c1-c30c31ea9be9.jpg?1604200204", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/b/3/b31a81e8-df0e-4540-93c1-c30c31ea9be9.jpg?1604200204"}, "mana_cost": "{1}{G}{U}", "cmc": 3.0, "type_line": "Creature \u2014 Beast", "oracle_text": "{T}: Add {G} or {U}.\nWhenever you cast a kicked spell, you gain 2 life.", "power": "2", "toughness": "4", "colors": ["G", "U"], "color_identity": ["G", "U"], "keywords": [], "produced_mana": ["G", "U"], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "restricted", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "f4e01fa7-b254-42dd-849f-69b58027a8c4", "set": "znr", "set_name": "Zendikar Rising", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/f4e01fa7-b254-42dd-849f-69b58027a8c4", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aznr&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/znr?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/b31a81e8-df0e-4540-93c1-c30c31ea9be9/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A2a56fe0b-f8a9-499c-bce1-cec6cb3b66f0&unique=prints", "collector_number": "227", "digital": false, "rarity": "uncommon", "flavor_text": "\"They store energy in special gastric organs ... but I guess you'd probably rather have me clear the path than ramble about guts.\"\n\u2014Fahar, expedition wizard", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Gabor Szikszai", "artist_ids": ["44c3877f-8771-43dc-9e40-f4c765f59d2e"], "illustration_id": "b1e38e95-cd61-41bb-a740-dde38aebe4e3", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 10617, "preview": {"source": "Shahar Shenhar", "source_uri": "https://twitter.com/shaharshenhar/status/1301941012890173441", "previewed_at": "2020-09-04"}, "prices": {"usd": "0.02", "usd_foil": "0.08", "usd_etched": null, "eur": "0.02", "eur_foil": "0.04", "tix": "0.01"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=491878", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Lullmage%27s+Familiar&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Lullmage%27s+Familiar&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Lullmage%27s+Familiar"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/222045?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Lullmage%27s+Familiar&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/83449?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "2469bc93-57ca-4077-bda2-160b4160adad", "oracle_id": "dcf7d099-a726-4388-9744-70d37c5ea860", "multiverse_ids": [457159], "mtgo_id": 71030, "arena_id": 69143, "tcgplayer_id": 183249, "cardmarket_id": 368415, "name": "Lumbering Battlement", "lang": "en", "released_at": "2019-01-25", "uri": "https://api.scryfall.com/cards/2469bc93-57ca-4077-bda2-160b4160adad", "scryfall_uri": "https://scryfall.com/card/rna/15/lumbering-battlement?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/2/4/2469bc93-57ca-4077-bda2-160b4160adad.jpg?1584829942", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/4/2469bc93-57ca-4077-bda2-160b4160adad.jpg?1584829942", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/2/4/2469bc93-57ca-4077-bda2-160b4160adad.jpg?1584829942", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/2/4/2469bc93-57ca-4077-bda2-160b4160adad.png?1584829942", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/4/2469bc93-57ca-4077-bda2-160b4160adad.jpg?1584829942", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/2/4/2469bc93-57ca-4077-bda2-160b4160adad.jpg?1584829942"}, "mana_cost": "{4}{W}", "cmc": 5.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Vigilance\nWhen Lumbering Battlement enters the battlefield, exile any number of other nontoken creatures you control until it leaves the battlefield.\nLumbering Battlement gets +2/+2 for each card exiled with it.", "power": "4", "toughness": "5", "colors": ["W"], "color_identity": ["W"], "keywords": ["Vigilance"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "97a7fd84-8d89-45a3-b48b-c951f6a3f9f1", "set": "rna", "set_name": "Ravnica Allegiance", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/97a7fd84-8d89-45a3-b48b-c951f6a3f9f1", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Arna&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/rna?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/2469bc93-57ca-4077-bda2-160b4160adad/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Adcf7d099-a726-4388-9744-70d37c5ea860&unique=prints", "collector_number": "15", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Simon Dominic", "artist_ids": ["b0e80135-db5a-4b88-a0bc-815a0e94faa1"], "illustration_id": "dc995a36-aab9-4726-b16e-ca2a27308c41", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 8287, "penny_rank": 8179, "preview": {"source": "Jumbo Commander", "source_uri": "https://www.youtube.com/watch?v=fUP4xZbQZrk", "previewed_at": "2019-01-09"}, "prices": {"usd": "0.12", "usd_foil": "0.48", "usd_etched": null, "eur": "0.11", "eur_foil": "0.20", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=457159", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Lumbering+Battlement&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Lumbering+Battlement&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Lumbering+Battlement"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/183249?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Lumbering+Battlement&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/71030?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "5d897088-0667-4864-91c3-5f0ac7f9b220", "oracle_id": "fba1329d-d8bf-4c5e-9cf1-5410a42f732e", "multiverse_ids": [19860], "mtgo_id": 13523, "mtgo_foil_id": 13524, "tcgplayer_id": 6597, "cardmarket_id": 11630, "name": "Lumbering Satyr", "lang": "en", "released_at": "1999-10-04", "uri": "https://api.scryfall.com/cards/5d897088-0667-4864-91c3-5f0ac7f9b220", "scryfall_uri": "https://scryfall.com/card/mmq/257/lumbering-satyr?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/5/d/5d897088-0667-4864-91c3-5f0ac7f9b220.jpg?1562380887", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/d/5d897088-0667-4864-91c3-5f0ac7f9b220.jpg?1562380887", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/5/d/5d897088-0667-4864-91c3-5f0ac7f9b220.jpg?1562380887", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/5/d/5d897088-0667-4864-91c3-5f0ac7f9b220.png?1562380887", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/d/5d897088-0667-4864-91c3-5f0ac7f9b220.jpg?1562380887", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/5/d/5d897088-0667-4864-91c3-5f0ac7f9b220.jpg?1562380887"}, "mana_cost": "{2}{G}{G}", "cmc": 4.0, "type_line": "Creature \u2014 Satyr Beast", "oracle_text": "All creatures have forestwalk. (They can't be blocked as long as defending player controls a Forest.)", "power": "5", "toughness": "4", "colors": ["G"], "color_identity": ["G"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "restricted", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "385e11a4-492b-4d07-b4a6-a1409ef829b8", "set": "mmq", "set_name": "Mercadian Masques", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/385e11a4-492b-4d07-b4a6-a1409ef829b8", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ammq&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/mmq?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/5d897088-0667-4864-91c3-5f0ac7f9b220/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Afba1329d-d8bf-4c5e-9cf1-5410a42f732e&unique=prints", "collector_number": "257", "digital": false, "rarity": "uncommon", "flavor_text": "The satyr carves the path that all of Rushwood follows.\n\u2014Cho-Arrim saying", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Alan Pollack", "artist_ids": ["70c20ea3-5ad6-4082-a337-6e994ae5828e"], "illustration_id": "28cd5217-007a-4a0e-8872-f9149ac22949", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 14507, "prices": {"usd": "0.24", "usd_foil": "13.73", "usd_etched": null, "eur": "0.49", "eur_foil": "1.20", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=19860", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Lumbering+Satyr&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Lumbering+Satyr&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Lumbering+Satyr"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/6597?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Lumbering+Satyr&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/13523?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "9f06be97-71c8-46c8-a1c2-5da3af25e6de", "oracle_id": "771be8ad-5ab5-40b1-ad9b-e5e834949d32", "multiverse_ids": [430758], "mtgo_id": 64622, "mtgo_foil_id": 64623, "tcgplayer_id": 136701, "cardmarket_id": 298829, "name": "Lurching Rotbeast", "lang": "en", "released_at": "2017-07-14", "uri": "https://api.scryfall.com/cards/9f06be97-71c8-46c8-a1c2-5da3af25e6de", "scryfall_uri": "https://scryfall.com/card/hou/69/lurching-rotbeast?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/9/f/9f06be97-71c8-46c8-a1c2-5da3af25e6de.jpg?1562808809", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/f/9f06be97-71c8-46c8-a1c2-5da3af25e6de.jpg?1562808809", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/9/f/9f06be97-71c8-46c8-a1c2-5da3af25e6de.jpg?1562808809", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/9/f/9f06be97-71c8-46c8-a1c2-5da3af25e6de.png?1562808809", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/f/9f06be97-71c8-46c8-a1c2-5da3af25e6de.jpg?1562808809", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/9/f/9f06be97-71c8-46c8-a1c2-5da3af25e6de.jpg?1562808809"}, "mana_cost": "{3}{B}", "cmc": 4.0, "type_line": "Creature \u2014 Zombie Beast", "oracle_text": "Cycling {B} ({B}, Discard this card: Draw a card.)", "power": "4", "toughness": "2", "colors": ["B"], "color_identity": ["B"], "keywords": ["Cycling"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "65ff168b-bb94-47a5-a8f9-4ec6c213e768", "set": "hou", "set_name": "Hour of Devastation", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/65ff168b-bb94-47a5-a8f9-4ec6c213e768", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ahou&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/hou?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/9f06be97-71c8-46c8-a1c2-5da3af25e6de/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A771be8ad-5ab5-40b1-ad9b-e5e834949d32&unique=prints", "collector_number": "69", "digital": false, "rarity": "common", "flavor_text": "The dead that swept across Naktamun came in all shapes and sizes.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Jason A. Engle", "artist_ids": ["02e2b5de-4341-464c-8fdb-a1adbf873bc0"], "illustration_id": "785aef33-d2d0-4e0f-9962-aa4fb312c6c3", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 12600, "penny_rank": 4635, "prices": {"usd": "0.05", "usd_foil": "0.27", "usd_etched": null, "eur": "0.09", "eur_foil": "0.63", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=430758", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Lurching+Rotbeast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Lurching+Rotbeast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Lurching+Rotbeast"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/136701?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Lurching+Rotbeast&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/64622?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "b39eb671-e17e-4c5a-8913-1e3be7faedfb", "oracle_id": "4aedbbaf-b6ae-4bf0-84eb-31b0b28cfdfa", "multiverse_ids": [1770], "tcgplayer_id": 3539, "cardmarket_id": 7324, "name": "Lurker", "lang": "en", "released_at": "1994-08-01", "uri": "https://api.scryfall.com/cards/b39eb671-e17e-4c5a-8913-1e3be7faedfb", "scryfall_uri": "https://scryfall.com/card/drk/80/lurker?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/b/3/b39eb671-e17e-4c5a-8913-1e3be7faedfb.jpg?1587910787", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/3/b39eb671-e17e-4c5a-8913-1e3be7faedfb.jpg?1587910787", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/b/3/b39eb671-e17e-4c5a-8913-1e3be7faedfb.jpg?1587910787", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/b/3/b39eb671-e17e-4c5a-8913-1e3be7faedfb.png?1587910787", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/3/b39eb671-e17e-4c5a-8913-1e3be7faedfb.jpg?1587910787", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/b/3/b39eb671-e17e-4c5a-8913-1e3be7faedfb.jpg?1587910787"}, "mana_cost": "{2}{G}", "cmc": 3.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Lurker can't be the target of spells unless it attacked or blocked this turn.", "power": "2", "toughness": "3", "colors": ["G"], "color_identity": ["G"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": true, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "a21c6836-c435-459a-81e3-22d2da174549", "set": "drk", "set_name": "The Dark", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/a21c6836-c435-459a-81e3-22d2da174549", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Adrk&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/drk?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/b39eb671-e17e-4c5a-8913-1e3be7faedfb/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A4aedbbaf-b6ae-4bf0-84eb-31b0b28cfdfa&unique=prints", "collector_number": "80", "digital": false, "rarity": "rare", "flavor_text": "\"Each night we felt it watching us from the darkness beyond our fire. We only had one pack horse left.\"\n\u2014Maeveen O'Donagh, *Memoirs of a Soldier*", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Anson Maddocks", "artist_ids": ["634430a7-b5c3-4e4a-b2ac-164e084e47c9"], "illustration_id": "58fe39aa-cbb0-4de9-ac3f-91044dee2875", "border_color": "black", "frame": "1993", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 22943, "prices": {"usd": "10.24", "usd_foil": null, "usd_etched": null, "eur": "8.99", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=1770", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Lurker&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Lurker&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Lurker"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/3539?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Lurker&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Lurker&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "7f59bc0b-88de-4580-bfc8-5af911d9ee99", "oracle_id": "57303267-7e69-4bd3-8e1f-a528d41121a1", "multiverse_ids": [394619], "mtgo_id": 56292, "mtgo_foil_id": 56293, "tcgplayer_id": 96742, "cardmarket_id": 273393, "name": "Lurking Arynx", "lang": "en", "released_at": "2015-03-27", "uri": "https://api.scryfall.com/cards/7f59bc0b-88de-4580-bfc8-5af911d9ee99", "scryfall_uri": "https://scryfall.com/card/dtk/192/lurking-arynx?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/7/f/7f59bc0b-88de-4580-bfc8-5af911d9ee99.jpg?1562788949", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/f/7f59bc0b-88de-4580-bfc8-5af911d9ee99.jpg?1562788949", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/7/f/7f59bc0b-88de-4580-bfc8-5af911d9ee99.jpg?1562788949", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/7/f/7f59bc0b-88de-4580-bfc8-5af911d9ee99.png?1562788949", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/f/7f59bc0b-88de-4580-bfc8-5af911d9ee99.jpg?1562788949", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/7/f/7f59bc0b-88de-4580-bfc8-5af911d9ee99.jpg?1562788949"}, "mana_cost": "{4}{G}", "cmc": 5.0, "type_line": "Creature \u2014 Cat Beast", "oracle_text": "Formidable \u2014 {2}{G}: Target creature blocks Lurking Arynx this turn if able. Activate only if creatures you control have total power 8 or greater.", "power": "3", "toughness": "5", "colors": ["G"], "color_identity": ["G"], "keywords": ["Formidable"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "restricted", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "7e72625f-f320-4552-a719-d11e2f1853bd", "set": "dtk", "set_name": "Dragons of Tarkir", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/7e72625f-f320-4552-a719-d11e2f1853bd", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Adtk&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/dtk?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/7f59bc0b-88de-4580-bfc8-5af911d9ee99/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A57303267-7e69-4bd3-8e1f-a528d41121a1&unique=prints", "collector_number": "192", "digital": false, "rarity": "uncommon", "watermark": "atarka", "flavor_text": "Once it has your scent, it will hunt you from the Gurmag Swamp to Ayagor.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Carl Frank", "artist_ids": ["fde6429d-2768-4573-a54d-42694e145079"], "illustration_id": "01fe03ea-0abb-43d1-ac91-92c5d2ea81a8", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 20740, "prices": {"usd": "0.04", "usd_foil": "0.24", "usd_etched": null, "eur": "0.20", "eur_foil": "0.15", "tix": "0.04"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=394619", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Lurking+Arynx&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Lurking+Arynx&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Lurking+Arynx"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/96742?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Lurking+Arynx&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/56292?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "abdbaa34-1ee5-4a2a-bdb3-2f04809a5b42", "oracle_id": "178e73f9-fc6e-4425-870e-45f96644010a", "multiverse_ids": [435265], "mtgo_id": 65238, "mtgo_foil_id": 65239, "arena_id": 66187, "tcgplayer_id": 145366, "cardmarket_id": 301543, "name": "Lurking Chupacabra", "lang": "en", "released_at": "2017-09-29", "uri": "https://api.scryfall.com/cards/abdbaa34-1ee5-4a2a-bdb3-2f04809a5b42", "scryfall_uri": "https://scryfall.com/card/xln/111/lurking-chupacabra?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/a/b/abdbaa34-1ee5-4a2a-bdb3-2f04809a5b42.jpg?1562561935", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/b/abdbaa34-1ee5-4a2a-bdb3-2f04809a5b42.jpg?1562561935", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/a/b/abdbaa34-1ee5-4a2a-bdb3-2f04809a5b42.jpg?1562561935", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/a/b/abdbaa34-1ee5-4a2a-bdb3-2f04809a5b42.png?1562561935", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/b/abdbaa34-1ee5-4a2a-bdb3-2f04809a5b42.jpg?1562561935", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/a/b/abdbaa34-1ee5-4a2a-bdb3-2f04809a5b42.jpg?1562561935"}, "mana_cost": "{3}{B}", "cmc": 4.0, "type_line": "Creature \u2014 Beast Horror", "oracle_text": "Whenever a creature you control explores, target creature an opponent controls gets -2/-2 until end of turn.", "power": "2", "toughness": "3", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "restricted", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "fe0dad85-54bc-4151-9200-d68da84dd0f2", "set": "xln", "set_name": "Ixalan", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/fe0dad85-54bc-4151-9200-d68da84dd0f2", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Axln&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/xln?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/abdbaa34-1ee5-4a2a-bdb3-2f04809a5b42/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A178e73f9-fc6e-4425-870e-45f96644010a&unique=prints", "collector_number": "111", "digital": false, "rarity": "uncommon", "flavor_text": "\"Shadow birthed it. The moon gave it eyes, and the jungle gave it teeth. But it was Death that taught it cruelty.\"\n\u2014Huatli", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "YW Tang", "artist_ids": ["63b2909b-7102-49c5-8f9d-6116a1913308"], "illustration_id": "73a09573-5f9f-4ffb-ab59-3aa0c69d5082", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 21869, "penny_rank": 11939, "prices": {"usd": "0.03", "usd_foil": "0.04", "usd_etched": null, "eur": "0.15", "eur_foil": "0.21", "tix": "0.05"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=435265", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Lurking+Chupacabra&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Lurking+Chupacabra&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Lurking+Chupacabra"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/145366?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Lurking+Chupacabra&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/65238?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "8451ab3f-5d61-4f35-ab70-5a5060caf53d", "oracle_id": "2f1e2742-d7df-4893-abc8-cb927c500569", "multiverse_ids": [42440], "mtgo_id": 18447, "mtgo_foil_id": 18448, "tcgplayer_id": 10786, "cardmarket_id": 2087, "name": "Macetail Hystrodon", "lang": "en", "released_at": "2003-02-03", "uri": "https://api.scryfall.com/cards/8451ab3f-5d61-4f35-ab70-5a5060caf53d", "scryfall_uri": "https://scryfall.com/card/lgn/106/macetail-hystrodon?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/8/4/8451ab3f-5d61-4f35-ab70-5a5060caf53d.jpg?1562921768", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/4/8451ab3f-5d61-4f35-ab70-5a5060caf53d.jpg?1562921768", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/8/4/8451ab3f-5d61-4f35-ab70-5a5060caf53d.jpg?1562921768", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/8/4/8451ab3f-5d61-4f35-ab70-5a5060caf53d.png?1562921768", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/4/8451ab3f-5d61-4f35-ab70-5a5060caf53d.jpg?1562921768", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/8/4/8451ab3f-5d61-4f35-ab70-5a5060caf53d.jpg?1562921768"}, "mana_cost": "{6}{R}", "cmc": 7.0, "type_line": "Creature \u2014 Beast", "oracle_text": "First strike, haste\nCycling {3} ({3}, Discard this card: Draw a card.)", "power": "4", "toughness": "4", "colors": ["R"], "color_identity": ["R"], "keywords": ["First strike", "Haste", "Cycling"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "c2d60a18-1a81-4784-8e0c-e1de2f43c5cf", "set": "lgn", "set_name": "Legions", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/c2d60a18-1a81-4784-8e0c-e1de2f43c5cf", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Algn&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/lgn?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/8451ab3f-5d61-4f35-ab70-5a5060caf53d/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A2f1e2742-d7df-4893-abc8-cb927c500569&unique=prints", "collector_number": "106", "digital": false, "rarity": "common", "flavor_text": "The goblins tracked the hystrodon with much stealth and cunning. Then they were eaten with much pain and yelling.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Daren Bader", "artist_ids": ["7da1a585-c875-45e4-b322-5da9e8e1f651"], "illustration_id": "2cf46eaf-9f49-4b35-96d6-47bc9db9ae05", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 19913, "penny_rank": 8205, "prices": {"usd": "0.09", "usd_foil": "0.26", "usd_etched": null, "eur": "0.02", "eur_foil": "0.19", "tix": "0.06"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=42440", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Macetail+Hystrodon&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Macetail+Hystrodon&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Macetail+Hystrodon"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/10786?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Macetail+Hystrodon&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/18447?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "9e6da400-ee4e-44d1-887d-1e2fb59b9322", "oracle_id": "4754e9c6-1790-4c01-87c2-3a16ce7e65f5", "multiverse_ids": [401945], "mtgo_id": 58611, "mtgo_foil_id": 58612, "tcgplayer_id": 105562, "cardmarket_id": 284872, "name": "Makindi Sliderunner", "lang": "en", "released_at": "2015-10-02", "uri": "https://api.scryfall.com/cards/9e6da400-ee4e-44d1-887d-1e2fb59b9322", "scryfall_uri": "https://scryfall.com/card/bfz/148/makindi-sliderunner?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/9/e/9e6da400-ee4e-44d1-887d-1e2fb59b9322.jpg?1562932470", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/e/9e6da400-ee4e-44d1-887d-1e2fb59b9322.jpg?1562932470", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/9/e/9e6da400-ee4e-44d1-887d-1e2fb59b9322.jpg?1562932470", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/9/e/9e6da400-ee4e-44d1-887d-1e2fb59b9322.png?1562932470", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/e/9e6da400-ee4e-44d1-887d-1e2fb59b9322.jpg?1562932470", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/9/e/9e6da400-ee4e-44d1-887d-1e2fb59b9322.jpg?1562932470"}, "mana_cost": "{1}{R}", "cmc": 2.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Trample\nLandfall \u2014 Whenever a land enters the battlefield under your control, Makindi Sliderunner gets +1/+1 until end of turn.", "power": "2", "toughness": "1", "colors": ["R"], "color_identity": ["R"], "keywords": ["Trample", "Landfall"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "91719374-7ac5-4afa-ada8-5da964dcf1d4", "set": "bfz", "set_name": "Battle for Zendikar", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/91719374-7ac5-4afa-ada8-5da964dcf1d4", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Abfz&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/bfz?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/9e6da400-ee4e-44d1-887d-1e2fb59b9322/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A4754e9c6-1790-4c01-87c2-3a16ce7e65f5&unique=prints", "collector_number": "148", "digital": false, "rarity": "common", "flavor_text": "After a battle, it breaks the hillsides into manageable pieces to prepare for next time.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Matt Stewart", "artist_ids": ["20871267-2d8a-41d5-b03a-be3d557c5734"], "illustration_id": "608eb70b-07b2-4053-9dd8-96966dc7f919", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 16994, "penny_rank": 9926, "prices": {"usd": "0.03", "usd_foil": "0.17", "usd_etched": null, "eur": "0.02", "eur_foil": "0.51", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=401945", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Makindi+Sliderunner&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Makindi+Sliderunner&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Makindi+Sliderunner"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/105562?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Makindi+Sliderunner&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/58611?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "0aa3a844-97e6-4f5d-a36f-56fea4e06932", "oracle_id": "b67db32b-30a9-49d2-b4c2-90a9f80c36eb", "multiverse_ids": [426877], "mtgo_id": 63952, "mtgo_foil_id": 63953, "tcgplayer_id": 129833, "cardmarket_id": 296750, "name": "Manglehorn", "lang": "en", "released_at": "2017-04-28", "uri": "https://api.scryfall.com/cards/0aa3a844-97e6-4f5d-a36f-56fea4e06932", "scryfall_uri": "https://scryfall.com/card/akh/175/manglehorn?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/0/a/0aa3a844-97e6-4f5d-a36f-56fea4e06932.jpg?1543675886", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/a/0aa3a844-97e6-4f5d-a36f-56fea4e06932.jpg?1543675886", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/0/a/0aa3a844-97e6-4f5d-a36f-56fea4e06932.jpg?1543675886", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/0/a/0aa3a844-97e6-4f5d-a36f-56fea4e06932.png?1543675886", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/a/0aa3a844-97e6-4f5d-a36f-56fea4e06932.jpg?1543675886", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/0/a/0aa3a844-97e6-4f5d-a36f-56fea4e06932.jpg?1543675886"}, "mana_cost": "{2}{G}", "cmc": 3.0, "type_line": "Creature \u2014 Beast", "oracle_text": "When Manglehorn enters the battlefield, you may destroy target artifact.\nArtifacts your opponents control enter the battlefield tapped.", "power": "2", "toughness": "2", "colors": ["G"], "color_identity": ["G"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "restricted", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "02d1c536-68bc-4208-9b65-7741ef1f9da8", "set": "akh", "set_name": "Amonkhet", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/02d1c536-68bc-4208-9b65-7741ef1f9da8", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aakh&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/akh?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/0aa3a844-97e6-4f5d-a36f-56fea4e06932/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ab67db32b-30a9-49d2-b4c2-90a9f80c36eb&unique=prints", "collector_number": "175", "digital": false, "rarity": "uncommon", "flavor_text": "\"Rely too much on your weapons and watch your dreams shatter in your hands.\"\n\u2014Rhonas, god of strength", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Lius Lasahido", "artist_ids": ["0a0e9093-ce44-4a69-93a7-09b63e7c330d"], "illustration_id": "2ea38722-5798-447d-8185-e02669f627b3", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 1334, "penny_rank": 5749, "prices": {"usd": "0.42", "usd_foil": "4.04", "usd_etched": null, "eur": "0.09", "eur_foil": "1.09", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=426877", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Manglehorn&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Manglehorn&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Manglehorn"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/129833?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Manglehorn&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/63952?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "b7d5e3dc-f307-4f91-a5ee-e7c5d03d8102", "oracle_id": "8f4f0cd2-9777-4ea1-944d-306347dc48a2", "multiverse_ids": [370648], "mtgo_id": 49439, "mtgo_foil_id": 49440, "tcgplayer_id": 69168, "cardmarket_id": 262330, "name": "Marauding Maulhorn", "lang": "en", "released_at": "2013-07-19", "uri": "https://api.scryfall.com/cards/b7d5e3dc-f307-4f91-a5ee-e7c5d03d8102", "scryfall_uri": "https://scryfall.com/card/m14/145/marauding-maulhorn?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/b/7/b7d5e3dc-f307-4f91-a5ee-e7c5d03d8102.jpg?1562834221", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/7/b7d5e3dc-f307-4f91-a5ee-e7c5d03d8102.jpg?1562834221", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/b/7/b7d5e3dc-f307-4f91-a5ee-e7c5d03d8102.jpg?1562834221", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/b/7/b7d5e3dc-f307-4f91-a5ee-e7c5d03d8102.png?1562834221", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/7/b7d5e3dc-f307-4f91-a5ee-e7c5d03d8102.jpg?1562834221", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/b/7/b7d5e3dc-f307-4f91-a5ee-e7c5d03d8102.jpg?1562834221"}, "mana_cost": "{2}{R}{R}", "cmc": 4.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Marauding Maulhorn attacks each combat if able unless you control a creature named Advocate of the Beast.", "power": "5", "toughness": "3", "colors": ["R"], "color_identity": ["R"], "keywords": [], "all_parts": [{"object": "related_card", "id": "b1320400-5aa8-48d6-be84-197b4559456f", "component": "combo_piece", "name": "Advocate of the Beast", "type_line": "Creature \u2014 Elf Shaman", "uri": "https://api.scryfall.com/cards/b1320400-5aa8-48d6-be84-197b4559456f"}, {"object": "related_card", "id": "b7d5e3dc-f307-4f91-a5ee-e7c5d03d8102", "component": "combo_piece", "name": "Marauding Maulhorn", "type_line": "Creature \u2014 Beast", "uri": "https://api.scryfall.com/cards/b7d5e3dc-f307-4f91-a5ee-e7c5d03d8102"}], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "e03ee1c0-ecd2-4fcc-ac3c-e8fdb103a847", "set": "m14", "set_name": "Magic 2014", "set_type": "core", "set_uri": "https://api.scryfall.com/sets/e03ee1c0-ecd2-4fcc-ac3c-e8fdb103a847", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Am14&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/m14?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/b7d5e3dc-f307-4f91-a5ee-e7c5d03d8102/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A8f4f0cd2-9777-4ea1-944d-306347dc48a2&unique=prints", "collector_number": "145", "digital": false, "rarity": "common", "flavor_text": "\"It's not just you. Everyone makes it angry.\"\n\u2014Ardenoth, elvish nature advocate", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Jesper Ejsing", "artist_ids": ["a5f8354a-8b51-4e59-96b2-0e3aeae4fa1d"], "illustration_id": "bddc0628-121b-4a66-b90d-0820e7dcc73a", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 22381, "penny_rank": 13007, "prices": {"usd": "0.07", "usd_foil": "0.19", "usd_etched": null, "eur": "0.02", "eur_foil": "0.29", "tix": "0.04"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=370648", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Marauding+Maulhorn&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Marauding+Maulhorn&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Marauding+Maulhorn"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/69168?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Marauding+Maulhorn&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/49439?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "90c4b759-f53d-4977-8d97-a93762622e75", "oracle_id": "4b35b928-1088-457d-bd0d-3b14dc4ab230", "multiverse_ids": [4673], "mtgo_id": 9493, "mtgo_foil_id": 9494, "tcgplayer_id": 5624, "cardmarket_id": 8773, "name": "Marsh Lurker", "lang": "en", "released_at": "1997-10-14", "uri": "https://api.scryfall.com/cards/90c4b759-f53d-4977-8d97-a93762622e75", "scryfall_uri": "https://scryfall.com/card/tmp/144/marsh-lurker?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/9/0/90c4b759-f53d-4977-8d97-a93762622e75.jpg?1562055419", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/0/90c4b759-f53d-4977-8d97-a93762622e75.jpg?1562055419", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/9/0/90c4b759-f53d-4977-8d97-a93762622e75.jpg?1562055419", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/9/0/90c4b759-f53d-4977-8d97-a93762622e75.png?1562055419", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/0/90c4b759-f53d-4977-8d97-a93762622e75.jpg?1562055419", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/9/0/90c4b759-f53d-4977-8d97-a93762622e75.jpg?1562055419"}, "mana_cost": "{3}{B}", "cmc": 4.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Sacrifice a Swamp: Marsh Lurker gains fear until end of turn. (It can't be blocked except by artifact creatures and/or black creatures.)", "power": "3", "toughness": "2", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "10df3a67-178e-4363-8668-34f0e6edf2a7", "set": "tmp", "set_name": "Tempest", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/10df3a67-178e-4363-8668-34f0e6edf2a7", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Atmp&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/tmp?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/90c4b759-f53d-4977-8d97-a93762622e75/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A4b35b928-1088-457d-bd0d-3b14dc4ab230&unique=prints", "collector_number": "144", "digital": false, "rarity": "common", "flavor_text": "From the mists it rises, into the mists it retreats; through the mists it walks, fearless and unseen.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Tom Kyffin", "artist_ids": ["8f43afbf-ce7e-4c01-8815-6d51eaa801cd"], "illustration_id": "7cc3653e-0c9a-4a46-9f53-d267f349b877", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 23279, "prices": {"usd": "0.06", "usd_foil": null, "usd_etched": null, "eur": "0.02", "eur_foil": null, "tix": "0.09"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=4673", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Marsh+Lurker&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Marsh+Lurker&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Marsh+Lurker"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/5624?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Marsh+Lurker&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/9493?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "48494f33-34b5-4c76-bb24-23a78b856e3c", "oracle_id": "4c0384d6-21cb-4645-b7a4-3af133e8a9a8", "multiverse_ids": [13035], "mtgo_id": 15678, "mtgo_foil_id": 15679, "tcgplayer_id": 2988, "cardmarket_id": 2849, "name": "Mawcor", "lang": "en", "released_at": "2001-04-11", "uri": "https://api.scryfall.com/cards/48494f33-34b5-4c76-bb24-23a78b856e3c", "scryfall_uri": "https://scryfall.com/card/7ed/87/mawcor?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/4/8/48494f33-34b5-4c76-bb24-23a78b856e3c.jpg?1562237337", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/8/48494f33-34b5-4c76-bb24-23a78b856e3c.jpg?1562237337", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/4/8/48494f33-34b5-4c76-bb24-23a78b856e3c.jpg?1562237337", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/4/8/48494f33-34b5-4c76-bb24-23a78b856e3c.png?1562237337", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/8/48494f33-34b5-4c76-bb24-23a78b856e3c.jpg?1562237337", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/4/8/48494f33-34b5-4c76-bb24-23a78b856e3c.jpg?1562237337"}, "mana_cost": "{3}{U}{U}", "cmc": 5.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Flying\n{T}: Mawcor deals 1 damage to any target.", "power": "3", "toughness": "3", "colors": ["U"], "color_identity": ["U"], "keywords": ["Flying"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "230f38aa-9511-4db8-a3aa-aeddbc3f7bb9", "set": "7ed", "set_name": "Seventh Edition", "set_type": "core", "set_uri": "https://api.scryfall.com/sets/230f38aa-9511-4db8-a3aa-aeddbc3f7bb9", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3A7ed&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/7ed?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/48494f33-34b5-4c76-bb24-23a78b856e3c/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A4c0384d6-21cb-4645-b7a4-3af133e8a9a8&unique=prints", "collector_number": "87", "digital": false, "rarity": "rare", "flavor_text": "Neither head holds a brain\u2014that's located somewhere in the chest\u2014but four eyes aim much better than two.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Kev Walker", "artist_ids": ["f366a0ee-a0cd-466d-ba6a-90058c7a31a6"], "illustration_id": "ede63ba3-b177-4b0b-a7d2-1dd98ab8cdb4", "border_color": "white", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 19221, "penny_rank": 13882, "prices": {"usd": "0.23", "usd_foil": "42.00", "usd_etched": null, "eur": "0.05", "eur_foil": "17.00", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=13035", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Mawcor&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Mawcor&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Mawcor"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/2988?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Mawcor&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/15678?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "9f50971e-2a18-4db7-8b5b-83dd5e85766e", "oracle_id": "4c0384d6-21cb-4645-b7a4-3af133e8a9a8", "multiverse_ids": [4712], "mtgo_id": 9903, "mtgo_foil_id": 9904, "tcgplayer_id": 5626, "cardmarket_id": 8810, "name": "Mawcor", "lang": "en", "released_at": "1997-10-14", "uri": "https://api.scryfall.com/cards/9f50971e-2a18-4db7-8b5b-83dd5e85766e", "scryfall_uri": "https://scryfall.com/card/tmp/75/mawcor?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/9/f/9f50971e-2a18-4db7-8b5b-83dd5e85766e.jpg?1562055468", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/f/9f50971e-2a18-4db7-8b5b-83dd5e85766e.jpg?1562055468", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/9/f/9f50971e-2a18-4db7-8b5b-83dd5e85766e.jpg?1562055468", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/9/f/9f50971e-2a18-4db7-8b5b-83dd5e85766e.png?1562055468", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/f/9f50971e-2a18-4db7-8b5b-83dd5e85766e.jpg?1562055468", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/9/f/9f50971e-2a18-4db7-8b5b-83dd5e85766e.jpg?1562055468"}, "mana_cost": "{3}{U}{U}", "cmc": 5.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Flying\n{T}: Mawcor deals 1 damage to any target.", "power": "3", "toughness": "3", "colors": ["U"], "color_identity": ["U"], "keywords": ["Flying"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "10df3a67-178e-4363-8668-34f0e6edf2a7", "set": "tmp", "set_name": "Tempest", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/10df3a67-178e-4363-8668-34f0e6edf2a7", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Atmp&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/tmp?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/9f50971e-2a18-4db7-8b5b-83dd5e85766e/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A4c0384d6-21cb-4645-b7a4-3af133e8a9a8&unique=prints", "collector_number": "75", "digital": false, "rarity": "rare", "flavor_text": "From its maw comes neither word nor whisper\u2014only wind.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "John Matson", "artist_ids": ["a1685587-4b55-446b-b420-c37b202ed3f1"], "illustration_id": "577096d7-b65b-4cdf-be5a-8ae919ce142d", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 19221, "penny_rank": 13882, "prices": {"usd": "0.23", "usd_foil": null, "usd_etched": null, "eur": "0.45", "eur_foil": null, "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=4712", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Mawcor&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Mawcor&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Mawcor"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/5626?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Mawcor&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/9903?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "c58a1e43-a173-45d6-ac55-363664bf6e1b", "oracle_id": "b98123b2-c913-41b9-bb24-10a287d24bca", "multiverse_ids": [19733], "mtgo_id": 13041, "mtgo_foil_id": 13042, "tcgplayer_id": 6603, "cardmarket_id": 11632, "name": "Megatherium", "lang": "en", "released_at": "1999-10-04", "uri": "https://api.scryfall.com/cards/c58a1e43-a173-45d6-ac55-363664bf6e1b", "scryfall_uri": "https://scryfall.com/card/mmq/259/megatherium?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/c/5/c58a1e43-a173-45d6-ac55-363664bf6e1b.jpg?1562383029", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/5/c58a1e43-a173-45d6-ac55-363664bf6e1b.jpg?1562383029", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/c/5/c58a1e43-a173-45d6-ac55-363664bf6e1b.jpg?1562383029", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/c/5/c58a1e43-a173-45d6-ac55-363664bf6e1b.png?1562383029", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/5/c58a1e43-a173-45d6-ac55-363664bf6e1b.jpg?1562383029", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/c/5/c58a1e43-a173-45d6-ac55-363664bf6e1b.jpg?1562383029"}, "mana_cost": "{2}{G}", "cmc": 3.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Trample\nWhen Megatherium enters the battlefield, sacrifice it unless you pay {1} for each card in your hand.", "power": "4", "toughness": "4", "colors": ["G"], "color_identity": ["G"], "keywords": ["Trample"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "385e11a4-492b-4d07-b4a6-a1409ef829b8", "set": "mmq", "set_name": "Mercadian Masques", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/385e11a4-492b-4d07-b4a6-a1409ef829b8", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ammq&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/mmq?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/c58a1e43-a173-45d6-ac55-363664bf6e1b/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ab98123b2-c913-41b9-bb24-10a287d24bca&unique=prints", "collector_number": "259", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Paolo Parente", "artist_ids": ["d48dd097-720d-476a-8722-6a02854ae28b"], "illustration_id": "73e46167-af2c-4f46-a69c-c5d5e1d9fc89", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 23282, "prices": {"usd": "0.24", "usd_foil": null, "usd_etched": null, "eur": "0.29", "eur_foil": "6.99", "tix": "0.05"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=19733", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Megatherium&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Megatherium&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Megatherium"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/6603?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Megatherium&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/13041?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "b69e32b7-87d6-44a8-a544-5dabcd64c9f3", "oracle_id": "92e287b1-7cb1-4536-8942-d1ad059bf9bc", "multiverse_ids": [179886], "mtgo_id": 31783, "mtgo_foil_id": 31784, "tcgplayer_id": 28571, "cardmarket_id": 20761, "name": "Meglonoth", "lang": "en", "released_at": "2009-02-06", "uri": "https://api.scryfall.com/cards/b69e32b7-87d6-44a8-a544-5dabcd64c9f3", "scryfall_uri": "https://scryfall.com/card/con/118/meglonoth?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/b/6/b69e32b7-87d6-44a8-a544-5dabcd64c9f3.jpg?1562803314", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/6/b69e32b7-87d6-44a8-a544-5dabcd64c9f3.jpg?1562803314", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/b/6/b69e32b7-87d6-44a8-a544-5dabcd64c9f3.jpg?1562803314", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/b/6/b69e32b7-87d6-44a8-a544-5dabcd64c9f3.png?1562803314", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/6/b69e32b7-87d6-44a8-a544-5dabcd64c9f3.jpg?1562803314", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/b/6/b69e32b7-87d6-44a8-a544-5dabcd64c9f3.jpg?1562803314"}, "mana_cost": "{3}{R}{G}{W}", "cmc": 6.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Vigilance, trample\nWhenever Meglonoth blocks a creature, Meglonoth deals damage to that creature's controller equal to Meglonoth's power.", "power": "6", "toughness": "6", "colors": ["G", "R", "W"], "color_identity": ["G", "R", "W"], "keywords": ["Vigilance", "Trample"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "76b2db58-904c-4e49-8580-9f62f7b3cca4", "set": "con", "set_name": "Conflux", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/76b2db58-904c-4e49-8580-9f62f7b3cca4", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Acon&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/con?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/b69e32b7-87d6-44a8-a544-5dabcd64c9f3/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A92e287b1-7cb1-4536-8942-d1ad059bf9bc&unique=prints", "collector_number": "118", "digital": false, "rarity": "rare", "flavor_text": "When the shards merged, Mayael found herself the general of Naya's mightiest army.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Steve Prescott", "artist_ids": ["a1139fb8-41f5-4a9e-9a74-f662e1a23b35"], "illustration_id": "19849326-3adb-49f2-b9af-331616ec96b7", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 11591, "penny_rank": 7219, "prices": {"usd": "0.55", "usd_foil": "1.43", "usd_etched": null, "eur": "0.25", "eur_foil": "0.25", "tix": "0.01"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=179886", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Meglonoth&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Meglonoth&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Meglonoth"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/28571?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Meglonoth&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/31783?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "6a2a287b-b83f-444f-84f7-e388beb616c2", "oracle_id": "4c6c8155-efa0-4c22-b255-34974a80c496", "multiverse_ids": [479685], "mtgo_id": 80339, "arena_id": 71232, "tcgplayer_id": 212271, "cardmarket_id": 452983, "name": "Migratory Greathorn", "lang": "en", "released_at": "2020-04-24", "uri": "https://api.scryfall.com/cards/6a2a287b-b83f-444f-84f7-e388beb616c2", "scryfall_uri": "https://scryfall.com/card/iko/165/migratory-greathorn?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/6/a/6a2a287b-b83f-444f-84f7-e388beb616c2.jpg?1591227787", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/a/6a2a287b-b83f-444f-84f7-e388beb616c2.jpg?1591227787", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/6/a/6a2a287b-b83f-444f-84f7-e388beb616c2.jpg?1591227787", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/6/a/6a2a287b-b83f-444f-84f7-e388beb616c2.png?1591227787", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/a/6a2a287b-b83f-444f-84f7-e388beb616c2.jpg?1591227787", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/6/a/6a2a287b-b83f-444f-84f7-e388beb616c2.jpg?1591227787"}, "mana_cost": "{3}{G}", "cmc": 4.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Mutate {2}{G} (If you cast this spell for its mutate cost, put it over or under target non-Human creature you own. They mutate into the creature on top plus all abilities from under it.)\nWhenever this creature mutates, search your library for a basic land card, put it onto the battlefield tapped, then shuffle.", "power": "3", "toughness": "4", "colors": ["G"], "color_identity": ["G"], "keywords": ["Mutate"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "19feda43-15ab-427e-a0e4-148a4bf2b03a", "set": "iko", "set_name": "Ikoria: Lair of Behemoths", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/19feda43-15ab-427e-a0e4-148a4bf2b03a", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aiko&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/iko?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/6a2a287b-b83f-444f-84f7-e388beb616c2/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A4c6c8155-efa0-4c22-b255-34974a80c496&unique=prints", "collector_number": "165", "digital": false, "rarity": "common", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Filip Burburan", "artist_ids": ["66082c3b-a623-4d34-be51-2475214b85d3"], "illustration_id": "f4a17dfe-eeae-4791-b588-bf93b02c30a0", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 2367, "penny_rank": 5290, "preview": {"source": "Charly GAG", "source_uri": "https://www.twitch.tv/videos/582849606?t=01h59m08s", "previewed_at": "2020-04-04"}, "prices": {"usd": "0.06", "usd_foil": "0.12", "usd_etched": null, "eur": "0.04", "eur_foil": "0.05", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=479685", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Migratory+Greathorn&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Migratory+Greathorn&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Migratory+Greathorn"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/212271?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Migratory+Greathorn&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/80339?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "1e31f56d-bf75-4e14-94de-5c77193abf3a", "oracle_id": "4c6c8155-efa0-4c22-b255-34974a80c496", "multiverse_ids": [], "arena_id": 73670, "tcgplayer_id": 212245, "cardmarket_id": 453038, "name": "Migratory Greathorn", "lang": "en", "released_at": "2020-04-24", "uri": "https://api.scryfall.com/cards/1e31f56d-bf75-4e14-94de-5c77193abf3a", "scryfall_uri": "https://scryfall.com/card/iko/297/migratory-greathorn?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/1/e/1e31f56d-bf75-4e14-94de-5c77193abf3a.jpg?1604781892", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/e/1e31f56d-bf75-4e14-94de-5c77193abf3a.jpg?1604781892", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/1/e/1e31f56d-bf75-4e14-94de-5c77193abf3a.jpg?1604781892", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/1/e/1e31f56d-bf75-4e14-94de-5c77193abf3a.png?1604781892", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/e/1e31f56d-bf75-4e14-94de-5c77193abf3a.jpg?1604781892", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/1/e/1e31f56d-bf75-4e14-94de-5c77193abf3a.jpg?1604781892"}, "mana_cost": "{3}{G}", "cmc": 4.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Mutate {2}{G} (If you cast this spell for its mutate cost, put it over or under target non-Human creature you own. They mutate into the creature on top plus all abilities from under it.)\nWhenever this creature mutates, search your library for a basic land card, put it onto the battlefield tapped, then shuffle.", "power": "3", "toughness": "4", "colors": ["G"], "color_identity": ["G"], "keywords": ["Mutate"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "19feda43-15ab-427e-a0e4-148a4bf2b03a", "set": "iko", "set_name": "Ikoria: Lair of Behemoths", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/19feda43-15ab-427e-a0e4-148a4bf2b03a", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aiko&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/iko?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/1e31f56d-bf75-4e14-94de-5c77193abf3a/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A4c6c8155-efa0-4c22-b255-34974a80c496&unique=prints", "collector_number": "297", "digital": false, "rarity": "common", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Kev Walker", "artist_ids": ["f366a0ee-a0cd-466d-ba6a-90058c7a31a6"], "illustration_id": "1691b7b0-0fcd-4836-ade5-0db597823716", "border_color": "black", "frame": "2015", "frame_effects": ["showcase"], "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "promo_types": ["boosterfun"], "edhrec_rank": 2367, "penny_rank": 5290, "prices": {"usd": "0.06", "usd_foil": "0.21", "usd_etched": null, "eur": "0.08", "eur_foil": "0.09", "tix": null}, "related_uris": {"tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Migratory+Greathorn&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Migratory+Greathorn&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Migratory+Greathorn"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/212245?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Migratory+Greathorn&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Migratory+Greathorn&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "dc48c2db-f5b4-4c24-a5fa-00750b7ff56f", "oracle_id": "30e3e48c-98dc-4d27-b7ea-e81d39f7d24e", "multiverse_ids": [44403], "mtgo_id": 18852, "mtgo_foil_id": 18853, "tcgplayer_id": 10868, "cardmarket_id": 1035, "name": "Mischievous Quanar", "lang": "en", "released_at": "2003-05-26", "uri": "https://api.scryfall.com/cards/dc48c2db-f5b4-4c24-a5fa-00750b7ff56f", "scryfall_uri": "https://scryfall.com/card/scg/42/mischievous-quanar?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/d/c/dc48c2db-f5b4-4c24-a5fa-00750b7ff56f.jpg?1562535674", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/c/dc48c2db-f5b4-4c24-a5fa-00750b7ff56f.jpg?1562535674", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/d/c/dc48c2db-f5b4-4c24-a5fa-00750b7ff56f.jpg?1562535674", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/d/c/dc48c2db-f5b4-4c24-a5fa-00750b7ff56f.png?1562535674", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/c/dc48c2db-f5b4-4c24-a5fa-00750b7ff56f.jpg?1562535674", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/d/c/dc48c2db-f5b4-4c24-a5fa-00750b7ff56f.jpg?1562535674"}, "mana_cost": "{4}{U}", "cmc": 5.0, "type_line": "Creature \u2014 Beast", "oracle_text": "{3}{U}{U}: Turn Mischievous Quanar face down.\nMorph {1}{U}{U} (You may cast this card face down as a 2/2 creature for {3}. Turn it face up any time for its morph cost.)\nWhen Mischievous Quanar is turned face up, copy target instant or sorcery spell. You may choose new targets for that copy.", "power": "3", "toughness": "3", "colors": ["U"], "color_identity": ["U"], "keywords": ["Morph"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "5133c3a1-1412-4ce6-a1f0-73b695966ded", "set": "scg", "set_name": "Scourge", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/5133c3a1-1412-4ce6-a1f0-73b695966ded", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ascg&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/scg?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/dc48c2db-f5b4-4c24-a5fa-00750b7ff56f/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A30e3e48c-98dc-4d27-b7ea-e81d39f7d24e&unique=prints", "collector_number": "42", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Lars Grant-West", "artist_ids": ["21ed6499-c4d3-4965-ab02-6c7228275bec"], "illustration_id": "5aded896-7471-4505-8c44-9d3d259b0a73", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 6671, "penny_rank": 13490, "prices": {"usd": "1.05", "usd_foil": "11.00", "usd_etched": null, "eur": "0.50", "eur_foil": "6.64", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=44403", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Mischievous+Quanar&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Mischievous+Quanar&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Mischievous+Quanar"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/10868?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Mischievous+Quanar&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/18852?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "3118737f-2fd9-4fe5-bd0f-43c9ef2166e2", "oracle_id": "5da5240e-5d87-494f-aec9-64b7a3f0d935", "multiverse_ids": [414299], "mtgo_id": 61232, "mtgo_foil_id": 61233, "tcgplayer_id": 120514, "cardmarket_id": 291188, "name": "Mockery of Nature", "lang": "en", "released_at": "2016-07-22", "uri": "https://api.scryfall.com/cards/3118737f-2fd9-4fe5-bd0f-43c9ef2166e2", "scryfall_uri": "https://scryfall.com/card/emn/10/mockery-of-nature?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/3/1/3118737f-2fd9-4fe5-bd0f-43c9ef2166e2.jpg?1576383753", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/1/3118737f-2fd9-4fe5-bd0f-43c9ef2166e2.jpg?1576383753", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/3/1/3118737f-2fd9-4fe5-bd0f-43c9ef2166e2.jpg?1576383753", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/3/1/3118737f-2fd9-4fe5-bd0f-43c9ef2166e2.png?1576383753", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/1/3118737f-2fd9-4fe5-bd0f-43c9ef2166e2.jpg?1576383753", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/3/1/3118737f-2fd9-4fe5-bd0f-43c9ef2166e2.jpg?1576383753"}, "mana_cost": "{9}", "cmc": 9.0, "type_line": "Creature \u2014 Eldrazi Beast", "oracle_text": "Emerge {7}{G} (You may cast this spell by sacrificing a creature and paying the emerge cost reduced by that creature's mana value.)\nWhen you cast this spell, you may destroy target artifact or enchantment.", "power": "6", "toughness": "5", "colors": [], "color_identity": ["G"], "keywords": ["Emerge"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "restricted", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "5f0e4093-334f-4439-bbb5-a0affafd0ffc", "set": "emn", "set_name": "Eldritch Moon", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/5f0e4093-334f-4439-bbb5-a0affafd0ffc", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aemn&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/emn?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/3118737f-2fd9-4fe5-bd0f-43c9ef2166e2/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A5da5240e-5d87-494f-aec9-64b7a3f0d935&unique=prints", "collector_number": "10", "digital": false, "rarity": "uncommon", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "James Ryman", "artist_ids": ["3852bbc9-11c0-4fe3-8722-a06ad7e2bcc5"], "illustration_id": "a9a114c0-3dc3-4aeb-ae4f-acd772469085", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 11986, "penny_rank": 5856, "prices": {"usd": "0.09", "usd_foil": "0.43", "usd_etched": null, "eur": "0.04", "eur_foil": "0.24", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=414299", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Mockery+of+Nature&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Mockery+of+Nature&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Mockery+of+Nature"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/120514?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Mockery+of+Nature&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/61232?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "d1340a63-f549-440b-aad3-14247113896a", "oracle_id": "2b732c6a-f09c-4ac0-ae3a-1d8820b69aba", "multiverse_ids": [209403], "mtgo_id": 38295, "mtgo_foil_id": 38296, "tcgplayer_id": 36490, "cardmarket_id": 242806, "name": "Molder Beast", "lang": "en", "released_at": "2010-10-01", "uri": "https://api.scryfall.com/cards/d1340a63-f549-440b-aad3-14247113896a", "scryfall_uri": "https://scryfall.com/card/som/125/molder-beast?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/d/1/d1340a63-f549-440b-aad3-14247113896a.jpg?1562823428", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/1/d1340a63-f549-440b-aad3-14247113896a.jpg?1562823428", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/d/1/d1340a63-f549-440b-aad3-14247113896a.jpg?1562823428", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/d/1/d1340a63-f549-440b-aad3-14247113896a.png?1562823428", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/1/d1340a63-f549-440b-aad3-14247113896a.jpg?1562823428", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/d/1/d1340a63-f549-440b-aad3-14247113896a.jpg?1562823428"}, "mana_cost": "{4}{G}", "cmc": 5.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Trample\nWhenever an artifact is put into a graveyard from the battlefield, Molder Beast gets +2/+0 until end of turn.", "power": "5", "toughness": "3", "colors": ["G"], "color_identity": ["G"], "keywords": ["Trample"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "8f403072-9b22-4e69-8d59-22dc4c97fd8d", "set": "som", "set_name": "Scars of Mirrodin", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/8f403072-9b22-4e69-8d59-22dc4c97fd8d", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Asom&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/som?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/d1340a63-f549-440b-aad3-14247113896a/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A2b732c6a-f09c-4ac0-ae3a-1d8820b69aba&unique=prints", "collector_number": "125", "digital": false, "rarity": "common", "watermark": "mirran", "flavor_text": "\"A trail of scrap metal can lead it into an ambush. But take care not to overfeed it.\"\n\u2014Adaran, Tangle hunter", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Randis Albion", "artist_ids": ["c215830d-998a-430e-9d8d-aff8b4abf298"], "illustration_id": "0f97c27c-346b-4543-9ad2-dface942ea0e", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 16775, "prices": {"usd": "0.04", "usd_foil": "0.25", "usd_etched": null, "eur": "0.04", "eur_foil": "0.05", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=209403", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Molder+Beast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Molder+Beast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Molder+Beast"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/36490?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Molder+Beast&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/38295?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "ee355d1b-5d64-4328-94d6-7a58889b99bc", "oracle_id": "d7c8b636-b7ff-446d-aa51-516e2cfe2730", "multiverse_ids": [48083], "mtgo_id": 20091, "mtgo_foil_id": 20092, "tcgplayer_id": 11443, "cardmarket_id": 125, "name": "Molder Slug", "lang": "en", "released_at": "2003-10-02", "uri": "https://api.scryfall.com/cards/ee355d1b-5d64-4328-94d6-7a58889b99bc", "scryfall_uri": "https://scryfall.com/card/mrd/125/molder-slug?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/e/e/ee355d1b-5d64-4328-94d6-7a58889b99bc.jpg?1562162474", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/e/ee355d1b-5d64-4328-94d6-7a58889b99bc.jpg?1562162474", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/e/e/ee355d1b-5d64-4328-94d6-7a58889b99bc.jpg?1562162474", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/e/e/ee355d1b-5d64-4328-94d6-7a58889b99bc.png?1562162474", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/e/ee355d1b-5d64-4328-94d6-7a58889b99bc.jpg?1562162474", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/e/e/ee355d1b-5d64-4328-94d6-7a58889b99bc.jpg?1562162474"}, "mana_cost": "{3}{G}{G}", "cmc": 5.0, "type_line": "Creature \u2014 Slug Beast", "oracle_text": "At the beginning of each player's upkeep, that player sacrifices an artifact.", "power": "4", "toughness": "6", "colors": ["G"], "color_identity": ["G"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "1d4f90ba-8d4a-4ee5-bc2f-e2d6bffe4955", "set": "mrd", "set_name": "Mirrodin", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/1d4f90ba-8d4a-4ee5-bc2f-e2d6bffe4955", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Amrd&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/mrd?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/ee355d1b-5d64-4328-94d6-7a58889b99bc/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ad7c8b636-b7ff-446d-aa51-516e2cfe2730&unique=prints", "collector_number": "125", "digital": false, "rarity": "rare", "flavor_text": "Fortunately for it, Mirrodin is a plane without salt.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Heather Hudson", "artist_ids": ["4441fe52-9e41-40c1-9b74-8510426279ab"], "illustration_id": "ec242411-4a3b-42e4-baf9-84d9d2eae81e", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 10874, "penny_rank": 4918, "prices": {"usd": "0.40", "usd_foil": "2.29", "usd_etched": null, "eur": "0.18", "eur_foil": "0.75", "tix": "0.01"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=48083", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Molder+Slug&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Molder+Slug&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Molder+Slug"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/11443?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Molder+Slug&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/20091?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "903cb570-d769-4d7f-afbe-90ebad96657c", "oracle_id": "7aba1039-f108-423e-8aa4-d9d8b4da2414", "multiverse_ids": [183414], "mtgo_id": 34510, "mtgo_foil_id": 34511, "tcgplayer_id": 33373, "cardmarket_id": 21950, "name": "Mold Shambler", "lang": "en", "released_at": "2009-10-02", "uri": "https://api.scryfall.com/cards/903cb570-d769-4d7f-afbe-90ebad96657c", "scryfall_uri": "https://scryfall.com/card/zen/169/mold-shambler?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/9/0/903cb570-d769-4d7f-afbe-90ebad96657c.jpg?1562614361", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/0/903cb570-d769-4d7f-afbe-90ebad96657c.jpg?1562614361", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/9/0/903cb570-d769-4d7f-afbe-90ebad96657c.jpg?1562614361", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/9/0/903cb570-d769-4d7f-afbe-90ebad96657c.png?1562614361", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/0/903cb570-d769-4d7f-afbe-90ebad96657c.jpg?1562614361", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/9/0/903cb570-d769-4d7f-afbe-90ebad96657c.jpg?1562614361"}, "mana_cost": "{3}{G}", "cmc": 4.0, "type_line": "Creature \u2014 Fungus Beast", "oracle_text": "Kicker {1}{G} (You may pay an additional {1}{G} as you cast this spell.)\nWhen Mold Shambler enters the battlefield, if it was kicked, destroy target noncreature permanent.", "power": "3", "toughness": "3", "colors": ["G"], "color_identity": ["G"], "keywords": ["Kicker"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "eb16a2bd-a218-4e4e-8339-4aa1afc0c8d2", "set": "zen", "set_name": "Zendikar", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/eb16a2bd-a218-4e4e-8339-4aa1afc0c8d2", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Azen&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/zen?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/903cb570-d769-4d7f-afbe-90ebad96657c/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A7aba1039-f108-423e-8aa4-d9d8b4da2414&unique=prints", "collector_number": "169", "digital": false, "rarity": "common", "flavor_text": "When civilization encroaches on nature, Zendikar encroaches back.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Karl Kopinski", "artist_ids": ["0fad2c48-a56e-4a0b-b512-224f6f238f20"], "illustration_id": "bc9b0cae-1253-47f5-b400-7b99a368ed18", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 7071, "penny_rank": 9290, "prices": {"usd": "0.16", "usd_foil": "1.02", "usd_etched": null, "eur": "0.05", "eur_foil": "0.50", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=183414", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Mold+Shambler&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Mold+Shambler&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Mold+Shambler"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/33373?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Mold+Shambler&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/34510?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "c23139d4-0db5-4683-8d49-f4600fbe29e2", "oracle_id": "28cc015f-1f3e-417a-9762-de25109fee5c", "multiverse_ids": [479687], "mtgo_id": 80343, "arena_id": 71234, "tcgplayer_id": 212011, "cardmarket_id": 450973, "name": "Mosscoat Goriak", "lang": "en", "released_at": "2020-04-24", "uri": "https://api.scryfall.com/cards/c23139d4-0db5-4683-8d49-f4600fbe29e2", "scryfall_uri": "https://scryfall.com/card/iko/167/mosscoat-goriak?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/c/2/c23139d4-0db5-4683-8d49-f4600fbe29e2.jpg?1591227812", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/2/c23139d4-0db5-4683-8d49-f4600fbe29e2.jpg?1591227812", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/c/2/c23139d4-0db5-4683-8d49-f4600fbe29e2.jpg?1591227812", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/c/2/c23139d4-0db5-4683-8d49-f4600fbe29e2.png?1591227812", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/2/c23139d4-0db5-4683-8d49-f4600fbe29e2.jpg?1591227812", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/c/2/c23139d4-0db5-4683-8d49-f4600fbe29e2.jpg?1591227812"}, "mana_cost": "{2}{G}", "cmc": 3.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Vigilance", "power": "2", "toughness": "4", "colors": ["G"], "color_identity": ["G"], "keywords": ["Vigilance"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "19feda43-15ab-427e-a0e4-148a4bf2b03a", "set": "iko", "set_name": "Ikoria: Lair of Behemoths", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/19feda43-15ab-427e-a0e4-148a4bf2b03a", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aiko&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/iko?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/c23139d4-0db5-4683-8d49-f4600fbe29e2/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A28cc015f-1f3e-417a-9762-de25109fee5c&unique=prints", "collector_number": "167", "digital": false, "rarity": "common", "flavor_text": "\"Goriaks are as stubborn and hardy as I'd expect of a large herbivore in a wetland habitat. But I never expected them to have such beautiful voices!\"\n\u2014Vivien Reid", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Dan Scott", "artist_ids": ["f852fa13-137e-40f2-bbc1-0f01df09c0e0"], "illustration_id": "b4b531cb-72cb-4184-bcf4-60bda84ee126", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 20114, "preview": {"source": "Wizards of the Coast", "source_uri": "https://magic.wizards.com/en/articles/archive/feature/ikoria-lair-behemoths-mechanics-2020-04-02?efe", "previewed_at": "2020-04-02"}, "prices": {"usd": "0.01", "usd_foil": "0.02", "usd_etched": null, "eur": "0.03", "eur_foil": "0.05", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=479687", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Mosscoat+Goriak&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Mosscoat+Goriak&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Mosscoat+Goriak"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/212011?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Mosscoat+Goriak&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/80343?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "e5bda3fc-89e8-44c2-bcfb-d17064bbc391", "oracle_id": "032a5616-bbaf-4659-86c4-43edf29b9788", "multiverse_ids": [122478], "mtgo_id": 26309, "mtgo_foil_id": 26310, "tcgplayer_id": 14766, "cardmarket_id": 14255, "name": "Muck Drubb", "lang": "en", "released_at": "2007-02-02", "uri": "https://api.scryfall.com/cards/e5bda3fc-89e8-44c2-bcfb-d17064bbc391", "scryfall_uri": "https://scryfall.com/card/plc/76/muck-drubb?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/e/5/e5bda3fc-89e8-44c2-bcfb-d17064bbc391.jpg?1562584674", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/5/e5bda3fc-89e8-44c2-bcfb-d17064bbc391.jpg?1562584674", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/e/5/e5bda3fc-89e8-44c2-bcfb-d17064bbc391.jpg?1562584674", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/e/5/e5bda3fc-89e8-44c2-bcfb-d17064bbc391.png?1562584674", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/5/e5bda3fc-89e8-44c2-bcfb-d17064bbc391.jpg?1562584674", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/e/5/e5bda3fc-89e8-44c2-bcfb-d17064bbc391.jpg?1562584674"}, "mana_cost": "{3}{B}{B}", "cmc": 5.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Flash\nWhen Muck Drubb enters the battlefield, change the target of target spell that targets only a single creature to Muck Drubb.\nMadness {2}{B} (If you discard this card, discard it into exile. When you do, cast it for its madness cost or put it into your graveyard.)", "power": "3", "toughness": "3", "colors": ["B"], "color_identity": ["B"], "keywords": ["Madness", "Flash"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "restricted", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "5a1b571c-73e9-4c14-b9d4-a62507d85789", "set": "plc", "set_name": "Planar Chaos", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/5a1b571c-73e9-4c14-b9d4-a62507d85789", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aplc&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/plc?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/e5bda3fc-89e8-44c2-bcfb-d17064bbc391/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A032a5616-bbaf-4659-86c4-43edf29b9788&unique=prints", "collector_number": "76", "digital": false, "rarity": "uncommon", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Jim Nelson", "artist_ids": ["aa9f64d1-29e1-4c82-877e-44c18183f40b"], "illustration_id": "f135d148-1e1b-4834-a666-d894a2c33d29", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 6232, "penny_rank": 13382, "prices": {"usd": "0.13", "usd_foil": "6.12", "usd_etched": null, "eur": "0.40", "eur_foil": "0.75", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=122478", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Muck+Drubb&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Muck+Drubb&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Muck+Drubb"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/14766?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Muck+Drubb&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/26309?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "480ddde1-81d3-4939-b232-cb1ced6cfc4d", "oracle_id": "0dfdeaa0-fa12-49cf-b361-efa49d3ffcb2", "multiverse_ids": [464121], "mtgo_id": 72716, "tcgplayer_id": 191767, "cardmarket_id": 375693, "name": "Murasa Behemoth", "lang": "en", "released_at": "2019-06-14", "uri": "https://api.scryfall.com/cards/480ddde1-81d3-4939-b232-cb1ced6cfc4d", "scryfall_uri": "https://scryfall.com/card/mh1/172/murasa-behemoth?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/4/8/480ddde1-81d3-4939-b232-cb1ced6cfc4d.jpg?1562202132", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/8/480ddde1-81d3-4939-b232-cb1ced6cfc4d.jpg?1562202132", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/4/8/480ddde1-81d3-4939-b232-cb1ced6cfc4d.jpg?1562202132", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/4/8/480ddde1-81d3-4939-b232-cb1ced6cfc4d.png?1562202132", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/8/480ddde1-81d3-4939-b232-cb1ced6cfc4d.jpg?1562202132", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/4/8/480ddde1-81d3-4939-b232-cb1ced6cfc4d.jpg?1562202132"}, "mana_cost": "{4}{G}{G}", "cmc": 6.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Trample\nMurasa Behemoth gets +3/+3 as long as there is a land card in your graveyard.", "power": "5", "toughness": "5", "colors": ["G"], "color_identity": ["G"], "keywords": ["Trample"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "d7efccd6-55bc-4fb8-9138-e72577510a99", "set": "mh1", "set_name": "Modern Horizons", "set_type": "draft_innovation", "set_uri": "https://api.scryfall.com/sets/d7efccd6-55bc-4fb8-9138-e72577510a99", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Amh1&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/mh1?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/480ddde1-81d3-4939-b232-cb1ced6cfc4d/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A0dfdeaa0-fa12-49cf-b361-efa49d3ffcb2&unique=prints", "collector_number": "172", "digital": false, "rarity": "common", "flavor_text": "The loss of its hunting grounds made it all the more dangerous.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Dave Kendall", "artist_ids": ["8a5540a8-18c9-4fa9-802c-59d6866114d5"], "illustration_id": "54f1d831-9dc2-4090-9f63-007dda0ac21e", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 17602, "prices": {"usd": "0.02", "usd_foil": "0.14", "usd_etched": null, "eur": "0.02", "eur_foil": "0.05", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=464121", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Murasa+Behemoth&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Murasa+Behemoth&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Murasa+Behemoth"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/191767?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Murasa+Behemoth&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/72716?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "e70b3b78-9bdc-449b-82a9-c2fc3dd7f120", "oracle_id": "ca7964a1-b4ce-412b-bcae-e0dfbb95389a", "multiverse_ids": [491880], "mtgo_id": 83453, "arena_id": 73441, "tcgplayer_id": 221844, "cardmarket_id": 494554, "name": "Murasa Rootgrazer", "lang": "en", "released_at": "2020-09-25", "uri": "https://api.scryfall.com/cards/e70b3b78-9bdc-449b-82a9-c2fc3dd7f120", "scryfall_uri": "https://scryfall.com/card/znr/229/murasa-rootgrazer?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/e/7/e70b3b78-9bdc-449b-82a9-c2fc3dd7f120.jpg?1604200243", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/7/e70b3b78-9bdc-449b-82a9-c2fc3dd7f120.jpg?1604200243", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/e/7/e70b3b78-9bdc-449b-82a9-c2fc3dd7f120.jpg?1604200243", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/e/7/e70b3b78-9bdc-449b-82a9-c2fc3dd7f120.png?1604200243", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/7/e70b3b78-9bdc-449b-82a9-c2fc3dd7f120.jpg?1604200243", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/e/7/e70b3b78-9bdc-449b-82a9-c2fc3dd7f120.jpg?1604200243"}, "mana_cost": "{G}{W}", "cmc": 2.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Vigilance\n{T}: You may put a basic land card from your hand onto the battlefield.\n{T}: Return target basic land you control to its owner's hand.", "power": "2", "toughness": "3", "colors": ["G", "W"], "color_identity": ["G", "W"], "keywords": ["Vigilance"], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "restricted", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "f4e01fa7-b254-42dd-849f-69b58027a8c4", "set": "znr", "set_name": "Zendikar Rising", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/f4e01fa7-b254-42dd-849f-69b58027a8c4", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aznr&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/znr?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/e70b3b78-9bdc-449b-82a9-c2fc3dd7f120/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aca7964a1-b4ce-412b-bcae-e0dfbb95389a&unique=prints", "collector_number": "229", "digital": false, "rarity": "uncommon", "flavor_text": "Few other creatures so closely embody Murasa's rapid cycles of growth.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Mathias Kollros", "artist_ids": ["2ae0dd12-047c-4efb-80d7-bccc3bac5fba"], "illustration_id": "8beece59-106a-424b-96e9-d2d258370f5e", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 3901, "penny_rank": 13279, "preview": {"source": "Matt Sperling", "source_uri": "https://twitter.com/sickofit/status/1300806005345849344", "previewed_at": "2020-09-01"}, "prices": {"usd": "0.07", "usd_foil": "0.16", "usd_etched": null, "eur": "0.22", "eur_foil": "0.15", "tix": "0.01"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=491880", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Murasa+Rootgrazer&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Murasa+Rootgrazer&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Murasa+Rootgrazer"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/221844?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Murasa+Rootgrazer&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/83453?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "b7717617-706a-4338-a207-dd8c08feb1c3", "oracle_id": "97a85a3e-258e-49b7-8ebe-7efee808da7a", "multiverse_ids": [567243], "tcgplayer_id": 273663, "cardmarket_id": 661379, "name": "Nalfeshnee", "lang": "en", "released_at": "2022-06-10", "uri": "https://api.scryfall.com/cards/b7717617-706a-4338-a207-dd8c08feb1c3", "scryfall_uri": "https://scryfall.com/card/clb/678/nalfeshnee?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/b/7/b7717617-706a-4338-a207-dd8c08feb1c3.jpg?1654036022", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/7/b7717617-706a-4338-a207-dd8c08feb1c3.jpg?1654036022", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/b/7/b7717617-706a-4338-a207-dd8c08feb1c3.jpg?1654036022", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/b/7/b7717617-706a-4338-a207-dd8c08feb1c3.png?1654036022", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/7/b7717617-706a-4338-a207-dd8c08feb1c3.jpg?1654036022", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/b/7/b7717617-706a-4338-a207-dd8c08feb1c3.jpg?1654036022"}, "mana_cost": "{5}{R}", "cmc": 6.0, "type_line": "Creature \u2014 Beast Demon", "oracle_text": "Flying\nWhenever you cast a spell from exile, copy it. You may choose new targets for the copy. If it's a permanent spell, the copy gains haste and \"At the beginning of the end step, sacrifice this permanent.\" (A copy of a permanent spell becomes a token.)", "power": "4", "toughness": "6", "colors": ["R"], "color_identity": ["R"], "keywords": ["Flying"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "5e4c3fe8-fd57-4b20-ad56-c03790a16cea", "set": "clb", "set_name": "Commander Legends: Battle for Baldur's Gate", "set_type": "draft_innovation", "set_uri": "https://api.scryfall.com/sets/5e4c3fe8-fd57-4b20-ad56-c03790a16cea", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aclb&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/clb?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/b7717617-706a-4338-a207-dd8c08feb1c3/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A97a85a3e-258e-49b7-8ebe-7efee808da7a&unique=prints", "collector_number": "678", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Sam White", "artist_ids": ["66756146-32f8-4513-9aae-75a8e5117585"], "illustration_id": "73112d47-4457-4c4a-9612-2b9b6ff26123", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "edhrec_rank": 8243, "prices": {"usd": "0.45", "usd_foil": null, "usd_etched": null, "eur": "0.22", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=567243", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Nalfeshnee&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Nalfeshnee&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Nalfeshnee"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/273663?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Nalfeshnee&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Nalfeshnee&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "f0e4b468-096b-4f80-9e78-022fe24a7e45", "oracle_id": "5ea0c608-2c56-4889-a5d3-d435df515950", "multiverse_ids": [376425], "mtgo_id": 51334, "mtgo_foil_id": 51335, "tcgplayer_id": 71887, "cardmarket_id": 264753, "name": "Naya Soulbeast", "lang": "en", "released_at": "2013-11-01", "uri": "https://api.scryfall.com/cards/f0e4b468-096b-4f80-9e78-022fe24a7e45", "scryfall_uri": "https://scryfall.com/card/c13/157/naya-soulbeast?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/f/0/f0e4b468-096b-4f80-9e78-022fe24a7e45.jpg?1562945827", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/0/f0e4b468-096b-4f80-9e78-022fe24a7e45.jpg?1562945827", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/f/0/f0e4b468-096b-4f80-9e78-022fe24a7e45.jpg?1562945827", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/f/0/f0e4b468-096b-4f80-9e78-022fe24a7e45.png?1562945827", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/0/f0e4b468-096b-4f80-9e78-022fe24a7e45.jpg?1562945827", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/f/0/f0e4b468-096b-4f80-9e78-022fe24a7e45.jpg?1562945827"}, "mana_cost": "{6}{G}{G}", "cmc": 8.0, "type_line": "Creature \u2014 Beast", "oracle_text": "When you cast this spell, each player reveals the top card of their library. Naya Soulbeast enters the battlefield with X +1/+1 counters on it, where X is the total mana value of all cards revealed this way.\nTrample", "power": "0", "toughness": "0", "colors": ["G"], "color_identity": ["G"], "keywords": ["Trample"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "c62e6d4f-af8c-4f27-9bc8-361291890146", "set": "c13", "set_name": "Commander 2013", "set_type": "commander", "set_uri": "https://api.scryfall.com/sets/c62e6d4f-af8c-4f27-9bc8-361291890146", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ac13&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/c13?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/f0e4b468-096b-4f80-9e78-022fe24a7e45/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A5ea0c608-2c56-4889-a5d3-d435df515950&unique=prints", "collector_number": "157", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Jesper Ejsing", "artist_ids": ["a5f8354a-8b51-4e59-96b2-0e3aeae4fa1d"], "illustration_id": "40bc18c4-8de7-4e61-bb8a-deb070d39790", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "edhrec_rank": 15504, "prices": {"usd": "0.19", "usd_foil": null, "usd_etched": null, "eur": "0.38", "eur_foil": null, "tix": "0.18"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=376425", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Naya+Soulbeast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Naya+Soulbeast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Naya+Soulbeast"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/71887?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Naya+Soulbeast&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/51334?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "f9b1628d-aacd-4e19-9ebb-bcd9b2842c91", "oracle_id": "8a04fd45-6526-4c73-8b38-5e40a2380451", "multiverse_ids": [42039], "mtgo_id": 18503, "mtgo_foil_id": 18504, "tcgplayer_id": 10808, "cardmarket_id": 2114, "name": "Needleshot Gourna", "lang": "en", "released_at": "2003-02-03", "uri": "https://api.scryfall.com/cards/f9b1628d-aacd-4e19-9ebb-bcd9b2842c91", "scryfall_uri": "https://scryfall.com/card/lgn/133/needleshot-gourna?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/f/9/f9b1628d-aacd-4e19-9ebb-bcd9b2842c91.jpg?1562945371", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/9/f9b1628d-aacd-4e19-9ebb-bcd9b2842c91.jpg?1562945371", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/f/9/f9b1628d-aacd-4e19-9ebb-bcd9b2842c91.jpg?1562945371", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/f/9/f9b1628d-aacd-4e19-9ebb-bcd9b2842c91.png?1562945371", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/9/f9b1628d-aacd-4e19-9ebb-bcd9b2842c91.jpg?1562945371", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/f/9/f9b1628d-aacd-4e19-9ebb-bcd9b2842c91.jpg?1562945371"}, "mana_cost": "{4}{G}{G}", "cmc": 6.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Reach (This creature can block creatures with flying.)", "power": "3", "toughness": "6", "colors": ["G"], "color_identity": ["G"], "keywords": ["Reach"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "c2d60a18-1a81-4784-8e0c-e1de2f43c5cf", "set": "lgn", "set_name": "Legions", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/c2d60a18-1a81-4784-8e0c-e1de2f43c5cf", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Algn&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/lgn?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/f9b1628d-aacd-4e19-9ebb-bcd9b2842c91/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A8a04fd45-6526-4c73-8b38-5e40a2380451&unique=prints", "collector_number": "133", "digital": false, "rarity": "common", "flavor_text": "The first aven scout squad returned from Krosa with disturbing stories. The second returned with disturbing casualties.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Edward P. Beard, Jr.", "artist_ids": ["b845b8ee-aeea-4822-bcf9-7230625ac95c"], "illustration_id": "0ab92350-7d39-4e9a-baf7-703f768302d8", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 22805, "prices": {"usd": "0.10", "usd_foil": "0.28", "usd_etched": null, "eur": "0.02", "eur_foil": "0.20", "tix": "0.05"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=42039", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Needleshot+Gourna&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Needleshot+Gourna&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Needleshot+Gourna"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/10808?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Needleshot+Gourna&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/18503?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "ee0683b2-8bc2-4c6a-964e-b909693b68c1", "oracle_id": "2341b59b-ce46-4efe-be94-c3851d3cd9e8", "multiverse_ids": [378500], "mtgo_id": 51701, "mtgo_foil_id": 51702, "tcgplayer_id": 78968, "cardmarket_id": 265851, "name": "Nessian Demolok", "lang": "en", "released_at": "2014-02-07", "uri": "https://api.scryfall.com/cards/ee0683b2-8bc2-4c6a-964e-b909693b68c1", "scryfall_uri": "https://scryfall.com/card/bng/128/nessian-demolok?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/e/e/ee0683b2-8bc2-4c6a-964e-b909693b68c1.jpg?1593092523", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/e/ee0683b2-8bc2-4c6a-964e-b909693b68c1.jpg?1593092523", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/e/e/ee0683b2-8bc2-4c6a-964e-b909693b68c1.jpg?1593092523", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/e/e/ee0683b2-8bc2-4c6a-964e-b909693b68c1.png?1593092523", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/e/ee0683b2-8bc2-4c6a-964e-b909693b68c1.jpg?1593092523", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/e/e/ee0683b2-8bc2-4c6a-964e-b909693b68c1.jpg?1593092523"}, "mana_cost": "{3}{G}{G}", "cmc": 5.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Tribute 3 (As this creature enters the battlefield, an opponent of your choice may put three +1/+1 counters on it.)\nWhen Nessian Demolok enters the battlefield, if tribute wasn't paid, destroy target noncreature permanent.", "power": "3", "toughness": "3", "colors": ["G"], "color_identity": ["G"], "keywords": ["Tribute"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "restricted", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "50a80fe4-a757-408f-ad23-52c5cc5f45cc", "set": "bng", "set_name": "Born of the Gods", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/50a80fe4-a757-408f-ad23-52c5cc5f45cc", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Abng&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/bng?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/ee0683b2-8bc2-4c6a-964e-b909693b68c1/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A2341b59b-ce46-4efe-be94-c3851d3cd9e8&unique=prints", "collector_number": "128", "digital": false, "rarity": "uncommon", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Daarken", "artist_ids": ["e607a0d4-fc12-4c01-9e3f-501f5269b9cb"], "illustration_id": "cd70d18c-8491-4fc3-964f-e9f0652b0c5f", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 17877, "penny_rank": 11813, "prices": {"usd": "0.02", "usd_foil": "0.17", "usd_etched": null, "eur": "0.25", "eur_foil": "0.15", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=378500", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Nessian+Demolok&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Nessian+Demolok&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Nessian+Demolok"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/78968?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Nessian+Demolok&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/51701?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "5099d18d-c8b5-4706-bc93-40d1bb12988d", "oracle_id": "b03397e5-56af-47c0-ab9a-746a0c99c568", "multiverse_ids": [380459], "mtgo_id": 52166, "mtgo_foil_id": 52167, "tcgplayer_id": 82313, "cardmarket_id": 266739, "name": "Nessian Game Warden", "lang": "en", "released_at": "2014-05-02", "uri": "https://api.scryfall.com/cards/5099d18d-c8b5-4706-bc93-40d1bb12988d", "scryfall_uri": "https://scryfall.com/card/jou/132/nessian-game-warden?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/5/0/5099d18d-c8b5-4706-bc93-40d1bb12988d.jpg?1593096253", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/0/5099d18d-c8b5-4706-bc93-40d1bb12988d.jpg?1593096253", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/5/0/5099d18d-c8b5-4706-bc93-40d1bb12988d.jpg?1593096253", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/5/0/5099d18d-c8b5-4706-bc93-40d1bb12988d.png?1593096253", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/0/5099d18d-c8b5-4706-bc93-40d1bb12988d.jpg?1593096253", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/5/0/5099d18d-c8b5-4706-bc93-40d1bb12988d.jpg?1593096253"}, "mana_cost": "{3}{G}{G}", "cmc": 5.0, "type_line": "Creature \u2014 Beast", "oracle_text": "When Nessian Game Warden enters the battlefield, look at the top X cards of your library, where X is the number of Forests you control. You may reveal a creature card from among them and put it into your hand. Put the rest on the bottom of your library in any order.", "power": "4", "toughness": "5", "colors": ["G"], "color_identity": ["G"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "restricted", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "204d2dca-1887-4721-9558-164aa7bbeb4f", "set": "jou", "set_name": "Journey into Nyx", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/204d2dca-1887-4721-9558-164aa7bbeb4f", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ajou&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/jou?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/5099d18d-c8b5-4706-bc93-40d1bb12988d/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ab03397e5-56af-47c0-ab9a-746a0c99c568&unique=prints", "collector_number": "132", "digital": false, "rarity": "uncommon", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Vincent Proce", "artist_ids": ["d82b1138-76d3-49f7-9d8c-bc2e2d3e0b0a"], "illustration_id": "19569345-8743-45b1-b7fd-f5543176f7c7", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 13599, "penny_rank": 2670, "prices": {"usd": "0.08", "usd_foil": "0.25", "usd_etched": null, "eur": "0.02", "eur_foil": "0.49", "tix": "0.04"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=380459", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Nessian+Game+Warden&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Nessian+Game+Warden&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Nessian+Game+Warden"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/82313?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Nessian+Game+Warden&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/52166?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "b6cb3d78-1a60-4e9b-b387-afeb58677536", "oracle_id": "aed587bf-c6e5-4850-baeb-2715cb27bf4c", "multiverse_ids": [457222], "mtgo_id": 71156, "arena_id": 69206, "tcgplayer_id": 183426, "cardmarket_id": 368573, "name": "Noxious Groodion", "lang": "en", "released_at": "2019-01-25", "uri": "https://api.scryfall.com/cards/b6cb3d78-1a60-4e9b-b387-afeb58677536", "scryfall_uri": "https://scryfall.com/card/rna/78/noxious-groodion?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/b/6/b6cb3d78-1a60-4e9b-b387-afeb58677536.jpg?1584830637", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/6/b6cb3d78-1a60-4e9b-b387-afeb58677536.jpg?1584830637", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/b/6/b6cb3d78-1a60-4e9b-b387-afeb58677536.jpg?1584830637", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/b/6/b6cb3d78-1a60-4e9b-b387-afeb58677536.png?1584830637", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/6/b6cb3d78-1a60-4e9b-b387-afeb58677536.jpg?1584830637", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/b/6/b6cb3d78-1a60-4e9b-b387-afeb58677536.jpg?1584830637"}, "mana_cost": "{2}{B}", "cmc": 3.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Deathtouch", "power": "2", "toughness": "2", "colors": ["B"], "color_identity": ["B"], "keywords": ["Deathtouch"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "97a7fd84-8d89-45a3-b48b-c951f6a3f9f1", "set": "rna", "set_name": "Ravnica Allegiance", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/97a7fd84-8d89-45a3-b48b-c951f6a3f9f1", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Arna&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/rna?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/b6cb3d78-1a60-4e9b-b387-afeb58677536/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aaed587bf-c6e5-4850-baeb-2715cb27bf4c&unique=prints", "collector_number": "78", "digital": false, "rarity": "common", "flavor_text": "\"Behold the groodion! Ichor-slurper, oozing fiend. Foulest wonder underground. Grandest vermin of them all!\"\n\u2014Zalin the Gutter Bard", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Simon Dominic", "artist_ids": ["b0e80135-db5a-4b88-a0bc-815a0e94faa1"], "illustration_id": "3901250d-1a2b-4e84-9307-5183f8f46475", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 19112, "penny_rank": 10499, "prices": {"usd": "0.02", "usd_foil": "0.05", "usd_etched": null, "eur": "0.01", "eur_foil": "0.04", "tix": "0.04"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=457222", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Noxious+Groodion&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Noxious+Groodion&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Noxious+Groodion"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/183426?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Noxious+Groodion&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/71156?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "50f54b0a-b0e1-44f1-bb91-523cc9e1c298", "oracle_id": "09c2d504-f2e1-4799-b948-c7b9502d5088", "multiverse_ids": [153058], "mtgo_id": 30076, "mtgo_foil_id": 30077, "tcgplayer_id": 27172, "cardmarket_id": 19572, "name": "Nucklavee", "lang": "en", "released_at": "2008-07-25", "uri": "https://api.scryfall.com/cards/50f54b0a-b0e1-44f1-bb91-523cc9e1c298", "scryfall_uri": "https://scryfall.com/card/eve/110/nucklavee?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/5/0/50f54b0a-b0e1-44f1-bb91-523cc9e1c298.jpg?1562911924", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/0/50f54b0a-b0e1-44f1-bb91-523cc9e1c298.jpg?1562911924", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/5/0/50f54b0a-b0e1-44f1-bb91-523cc9e1c298.jpg?1562911924", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/5/0/50f54b0a-b0e1-44f1-bb91-523cc9e1c298.png?1562911924", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/0/50f54b0a-b0e1-44f1-bb91-523cc9e1c298.jpg?1562911924", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/5/0/50f54b0a-b0e1-44f1-bb91-523cc9e1c298.jpg?1562911924"}, "mana_cost": "{4}{U/R}{U/R}", "cmc": 6.0, "type_line": "Creature \u2014 Beast", "oracle_text": "When Nucklavee enters the battlefield, you may return target red sorcery card from your graveyard to your hand.\nWhen Nucklavee enters the battlefield, you may return target blue instant card from your graveyard to your hand.", "power": "4", "toughness": "4", "colors": ["R", "U"], "color_identity": ["R", "U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "restricted", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "86b4dfef-f2d1-49d6-825d-7df6bda44357", "set": "eve", "set_name": "Eventide", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/86b4dfef-f2d1-49d6-825d-7df6bda44357", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aeve&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/eve?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/50f54b0a-b0e1-44f1-bb91-523cc9e1c298/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A09c2d504-f2e1-4799-b948-c7b9502d5088&unique=prints", "collector_number": "110", "digital": false, "rarity": "uncommon", "flavor_text": "It loathes all tastes but two: spells and flesh.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Trevor Hairsine", "artist_ids": ["7c1d7b59-dbf1-4ca8-9975-8e01c593da6e"], "illustration_id": "2b4d9861-e07e-4943-89cb-d75cfb7b5079", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 15654, "penny_rank": 6624, "prices": {"usd": "0.10", "usd_foil": "0.78", "usd_etched": null, "eur": "0.22", "eur_foil": "1.15", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=153058", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Nucklavee&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Nucklavee&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Nucklavee"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/27172?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Nucklavee&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/30076?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "24c30bb0-06ba-432b-a20c-6fa79b0dc68a", "oracle_id": "5b04a337-3152-481e-973f-a11dbd615f93", "multiverse_ids": [452888], "mtgo_id": 69649, "arena_id": 68599, "tcgplayer_id": 176425, "cardmarket_id": 363972, "name": "Nullhide Ferox", "lang": "en", "released_at": "2018-10-05", "uri": "https://api.scryfall.com/cards/24c30bb0-06ba-432b-a20c-6fa79b0dc68a", "scryfall_uri": "https://scryfall.com/card/grn/138/nullhide-ferox?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/2/4/24c30bb0-06ba-432b-a20c-6fa79b0dc68a.jpg?1572893406", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/4/24c30bb0-06ba-432b-a20c-6fa79b0dc68a.jpg?1572893406", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/2/4/24c30bb0-06ba-432b-a20c-6fa79b0dc68a.jpg?1572893406", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/2/4/24c30bb0-06ba-432b-a20c-6fa79b0dc68a.png?1572893406", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/4/24c30bb0-06ba-432b-a20c-6fa79b0dc68a.jpg?1572893406", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/2/4/24c30bb0-06ba-432b-a20c-6fa79b0dc68a.jpg?1572893406"}, "mana_cost": "{2}{G}{G}", "cmc": 4.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Hexproof\nYou can't cast noncreature spells.\n{2}: Nullhide Ferox loses all abilities until end of turn. Any player may activate this ability.\nIf a spell or ability an opponent controls causes you to discard Nullhide Ferox, put it onto the battlefield instead of putting it into your graveyard.", "power": "6", "toughness": "6", "colors": ["G"], "color_identity": ["G"], "keywords": ["Hexproof"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "597c6d4a-8212-4903-a6af-12c4ae9e13f0", "set": "grn", "set_name": "Guilds of Ravnica", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/597c6d4a-8212-4903-a6af-12c4ae9e13f0", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Agrn&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/grn?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/24c30bb0-06ba-432b-a20c-6fa79b0dc68a/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A5b04a337-3152-481e-973f-a11dbd615f93&unique=prints", "collector_number": "138", "digital": false, "rarity": "mythic", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Filip Burburan", "artist_ids": ["66082c3b-a623-4d34-be51-2475214b85d3"], "illustration_id": "bc9f3d87-c631-4ed9-83ef-5c553c71e57c", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 13873, "penny_rank": 2141, "prices": {"usd": "0.32", "usd_foil": "1.33", "usd_etched": null, "eur": "0.17", "eur_foil": "1.49", "tix": "0.06"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=452888", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Nullhide+Ferox&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Nullhide+Ferox&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Nullhide+Ferox"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/176425?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Nullhide+Ferox&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/69649?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "a263f594-621e-46af-8561-f7eee565a19a", "oracle_id": "acc74d59-f587-46a2-a90b-865f721d494d", "multiverse_ids": [179580], "mtgo_id": 32306, "mtgo_foil_id": 32307, "tcgplayer_id": 31786, "cardmarket_id": 20981, "name": "Nulltread Gargantuan", "lang": "en", "released_at": "2009-04-30", "uri": "https://api.scryfall.com/cards/a263f594-621e-46af-8561-f7eee565a19a", "scryfall_uri": "https://scryfall.com/card/arb/102/nulltread-gargantuan?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/a/2/a263f594-621e-46af-8561-f7eee565a19a.jpg?1562643297", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/2/a263f594-621e-46af-8561-f7eee565a19a.jpg?1562643297", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/a/2/a263f594-621e-46af-8561-f7eee565a19a.jpg?1562643297", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/a/2/a263f594-621e-46af-8561-f7eee565a19a.png?1562643297", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/2/a263f594-621e-46af-8561-f7eee565a19a.jpg?1562643297", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/a/2/a263f594-621e-46af-8561-f7eee565a19a.jpg?1562643297"}, "mana_cost": "{1}{G}{U}", "cmc": 3.0, "type_line": "Creature \u2014 Beast", "oracle_text": "When Nulltread Gargantuan enters the battlefield, put a creature you control on top of its owner's library.", "power": "5", "toughness": "6", "colors": ["G", "U"], "color_identity": ["G", "U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "restricted", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "db486ec5-141d-4781-9ee5-5456926934c1", "set": "arb", "set_name": "Alara Reborn", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/db486ec5-141d-4781-9ee5-5456926934c1", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aarb&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/arb?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/a263f594-621e-46af-8561-f7eee565a19a/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aacc74d59-f587-46a2-a90b-865f721d494d&unique=prints", "collector_number": "102", "digital": false, "rarity": "uncommon", "flavor_text": "It crushes all underfoot, yet leaves no trace of its passage\u2014no trampled debris, no flattened souls, not even a hoofprint.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Anthony Francisco", "artist_ids": ["6ac24c4b-70e9-4286-8f4b-b40c92ab5847"], "illustration_id": "2b953df9-c54e-49ca-8ea3-1324cf91d888", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 20852, "penny_rank": 7247, "prices": {"usd": "0.20", "usd_foil": "0.47", "usd_etched": null, "eur": "0.22", "eur_foil": "0.50", "tix": "0.04"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=179580", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Nulltread+Gargantuan&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Nulltread+Gargantuan&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Nulltread+Gargantuan"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/31786?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Nulltread+Gargantuan&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/32306?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "2cf2b6be-80a8-4464-a909-8cc658196a14", "oracle_id": "bf0948b7-f7af-4d99-a8aa-ea7e6a69232d", "multiverse_ids": [476437], "mtgo_id": 79496, "arena_id": 70697, "tcgplayer_id": 207175, "cardmarket_id": 432384, "name": "Nylea's Forerunner", "lang": "en", "released_at": "2020-01-24", "uri": "https://api.scryfall.com/cards/2cf2b6be-80a8-4464-a909-8cc658196a14", "scryfall_uri": "https://scryfall.com/card/thb/186/nyleas-forerunner?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/2/c/2cf2b6be-80a8-4464-a909-8cc658196a14.jpg?1581480774", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/c/2cf2b6be-80a8-4464-a909-8cc658196a14.jpg?1581480774", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/2/c/2cf2b6be-80a8-4464-a909-8cc658196a14.jpg?1581480774", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/2/c/2cf2b6be-80a8-4464-a909-8cc658196a14.png?1581480774", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/c/2cf2b6be-80a8-4464-a909-8cc658196a14.jpg?1581480774", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/2/c/2cf2b6be-80a8-4464-a909-8cc658196a14.jpg?1581480774"}, "mana_cost": "{4}{G}", "cmc": 5.0, "type_line": "Enchantment Creature \u2014 Beast", "oracle_text": "Trample\nOther creatures you control have trample.", "power": "5", "toughness": "3", "colors": ["G"], "color_identity": ["G"], "keywords": ["Trample"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "5f23a78d-cda1-462a-8be3-a62b40c34913", "set": "thb", "set_name": "Theros Beyond Death", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/5f23a78d-cda1-462a-8be3-a62b40c34913", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Athb&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/thb?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/2cf2b6be-80a8-4464-a909-8cc658196a14/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Abf0948b7-f7af-4d99-a8aa-ea7e6a69232d&unique=prints", "collector_number": "186", "digital": false, "rarity": "common", "flavor_text": "Where its feet tread, the thunder of many others will follow.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Christopher Burdett", "artist_ids": ["ff32a9e2-54fd-4d6a-97b5-1070e692833b"], "illustration_id": "ec755de5-c482-477b-9a13-390a440a76a3", "border_color": "black", "frame": "2015", "frame_effects": ["nyxtouched"], "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 6318, "penny_rank": 10773, "prices": {"usd": "0.05", "usd_foil": "0.08", "usd_etched": null, "eur": "0.03", "eur_foil": "0.05", "tix": "0.04"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=476437", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Nylea%27s+Forerunner&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Nylea%27s+Forerunner&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Nylea%27s+Forerunner"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/207175?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Nylea%27s+Forerunner&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/79496?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "6694496c-45b9-4ddf-bfcd-b632441b8811", "oracle_id": "ee2ab1ab-be1e-4e56-99f2-7784f7350b41", "multiverse_ids": [205075], "mtgo_id": 37478, "mtgo_foil_id": 37479, "tcgplayer_id": 35512, "cardmarket_id": 241940, "name": "Obstinate Baloth", "lang": "en", "released_at": "2010-07-16", "uri": "https://api.scryfall.com/cards/6694496c-45b9-4ddf-bfcd-b632441b8811", "scryfall_uri": "https://scryfall.com/card/m11/188/obstinate-baloth?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/6/6/6694496c-45b9-4ddf-bfcd-b632441b8811.jpg?1562462698", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/6/6694496c-45b9-4ddf-bfcd-b632441b8811.jpg?1562462698", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/6/6/6694496c-45b9-4ddf-bfcd-b632441b8811.jpg?1562462698", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/6/6/6694496c-45b9-4ddf-bfcd-b632441b8811.png?1562462698", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/6/6694496c-45b9-4ddf-bfcd-b632441b8811.jpg?1562462698", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/6/6/6694496c-45b9-4ddf-bfcd-b632441b8811.jpg?1562462698"}, "mana_cost": "{2}{G}{G}", "cmc": 4.0, "type_line": "Creature \u2014 Beast", "oracle_text": "When Obstinate Baloth enters the battlefield, you gain 4 life.\nIf a spell or ability an opponent controls causes you to discard Obstinate Baloth, put it onto the battlefield instead of putting it into your graveyard.", "power": "4", "toughness": "4", "colors": ["G"], "color_identity": ["G"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "485d2468-18c8-42a4-9482-ca1c51e0470e", "set": "m11", "set_name": "Magic 2011", "set_type": "core", "set_uri": "https://api.scryfall.com/sets/485d2468-18c8-42a4-9482-ca1c51e0470e", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Am11&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/m11?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/6694496c-45b9-4ddf-bfcd-b632441b8811/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aee2ab1ab-be1e-4e56-99f2-7784f7350b41&unique=prints", "collector_number": "188", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Chris Rahn", "artist_ids": ["7742047e-0f80-4c0f-a530-d07460165e86"], "illustration_id": "8d5c8d8a-433b-4571-83a4-657dfbad3466", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 16592, "penny_rank": 1336, "prices": {"usd": "0.40", "usd_foil": "4.16", "usd_etched": null, "eur": "0.18", "eur_foil": "1.20", "tix": "0.01"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=205075", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Obstinate+Baloth&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Obstinate+Baloth&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Obstinate+Baloth"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/35512?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Obstinate+Baloth&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/37478?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "95d9668e-05dc-41c4-9326-ef4c0e15dd80", "oracle_id": "9d061ec5-1edf-46e7-9e6a-4ddc9ced4114", "multiverse_ids": [401975], "mtgo_id": 58331, "mtgo_foil_id": 58332, "tcgplayer_id": 105649, "cardmarket_id": 284812, "name": "Ondu Greathorn", "lang": "en", "released_at": "2015-10-02", "uri": "https://api.scryfall.com/cards/95d9668e-05dc-41c4-9326-ef4c0e15dd80", "scryfall_uri": "https://scryfall.com/card/bfz/40/ondu-greathorn?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/9/5/95d9668e-05dc-41c4-9326-ef4c0e15dd80.jpg?1562930312", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/5/95d9668e-05dc-41c4-9326-ef4c0e15dd80.jpg?1562930312", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/9/5/95d9668e-05dc-41c4-9326-ef4c0e15dd80.jpg?1562930312", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/9/5/95d9668e-05dc-41c4-9326-ef4c0e15dd80.png?1562930312", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/5/95d9668e-05dc-41c4-9326-ef4c0e15dd80.jpg?1562930312", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/9/5/95d9668e-05dc-41c4-9326-ef4c0e15dd80.jpg?1562930312"}, "mana_cost": "{3}{W}", "cmc": 4.0, "type_line": "Creature \u2014 Beast", "oracle_text": "First strike\nLandfall \u2014 Whenever a land enters the battlefield under your control, Ondu Greathorn gets +2/+2 until end of turn.", "power": "2", "toughness": "3", "colors": ["W"], "color_identity": ["W"], "keywords": ["First strike", "Landfall"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "91719374-7ac5-4afa-ada8-5da964dcf1d4", "set": "bfz", "set_name": "Battle for Zendikar", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/91719374-7ac5-4afa-ada8-5da964dcf1d4", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Abfz&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/bfz?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/95d9668e-05dc-41c4-9326-ef4c0e15dd80/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A9d061ec5-1edf-46e7-9e6a-4ddc9ced4114&unique=prints", "collector_number": "40", "digital": false, "rarity": "common", "flavor_text": "\"May your horns get lodged in an Eldrazi's bony face, ornery brute!\"\n\u2014Bruse Tarl, Goma Fada nomad", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Aaron Miller", "artist_ids": ["fc021f3d-773a-4706-bbe7-f602324f511f"], "illustration_id": "6df67165-68e2-4a73-9cc7-b2f22fcf0cbf", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 19271, "prices": {"usd": "0.04", "usd_foil": "0.11", "usd_etched": null, "eur": "0.02", "eur_foil": "0.02", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=401975", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Ondu+Greathorn&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Ondu+Greathorn&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Ondu+Greathorn"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/105649?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Ondu+Greathorn&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/58331?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "6c05609a-f32d-4454-af24-a24452997dcb", "oracle_id": "7d086ae5-738c-4685-80ae-66bd9379d8f7", "multiverse_ids": [22293], "mtgo_id": 13843, "mtgo_foil_id": 13844, "tcgplayer_id": 7193, "cardmarket_id": 11758, "name": "Oraxid", "lang": "en", "released_at": "2000-02-14", "uri": "https://api.scryfall.com/cards/6c05609a-f32d-4454-af24-a24452997dcb", "scryfall_uri": "https://scryfall.com/card/nem/35/oraxid?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/6/c/6c05609a-f32d-4454-af24-a24452997dcb.jpg?1562630387", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/c/6c05609a-f32d-4454-af24-a24452997dcb.jpg?1562630387", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/6/c/6c05609a-f32d-4454-af24-a24452997dcb.jpg?1562630387", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/6/c/6c05609a-f32d-4454-af24-a24452997dcb.png?1562630387", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/c/6c05609a-f32d-4454-af24-a24452997dcb.jpg?1562630387", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/6/c/6c05609a-f32d-4454-af24-a24452997dcb.jpg?1562630387"}, "mana_cost": "{3}{U}", "cmc": 4.0, "type_line": "Creature \u2014 Crab Beast", "oracle_text": "Protection from red", "power": "2", "toughness": "3", "colors": ["U"], "color_identity": ["U"], "keywords": ["Protection"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "fa5d1fdb-f781-473d-b14d-50396d40d43f", "set": "nem", "set_name": "Nemesis", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/fa5d1fdb-f781-473d-b14d-50396d40d43f", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Anem&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/nem?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/6c05609a-f32d-4454-af24-a24452997dcb/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A7d086ae5-738c-4685-80ae-66bd9379d8f7&unique=prints", "collector_number": "35", "digital": false, "rarity": "common", "flavor_text": "\"I'm constantly amazed by the tenacity of living creatures on this plane. Even in the stronghold's white-hot core, life persists.\"\n\u2014Ertai", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Dave Dorman", "artist_ids": ["9235458b-ce92-45bd-a430-a72ecd8e6176"], "illustration_id": "db2d7967-9371-498c-9986-cc371144287c", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 16153, "prices": {"usd": "0.10", "usd_foil": "0.65", "usd_etched": null, "eur": "0.01", "eur_foil": "0.75", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=22293", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Oraxid&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Oraxid&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Oraxid"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/7193?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Oraxid&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/13843?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "c64fe85b-e471-489a-8c38-2357da1c7969", "oracle_id": "cef64ec6-cdfb-42a4-9a4a-3ef5448e93fc", "multiverse_ids": [194281], "mtgo_id": 38059, "mtgo_foil_id": 38060, "tcgplayer_id": 36384, "cardmarket_id": 242618, "name": "Oxidda Scrapmelter", "lang": "en", "released_at": "2010-10-01", "uri": "https://api.scryfall.com/cards/c64fe85b-e471-489a-8c38-2357da1c7969", "scryfall_uri": "https://scryfall.com/card/som/101/oxidda-scrapmelter?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/c/6/c64fe85b-e471-489a-8c38-2357da1c7969.jpg?1562822847", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/6/c64fe85b-e471-489a-8c38-2357da1c7969.jpg?1562822847", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/c/6/c64fe85b-e471-489a-8c38-2357da1c7969.jpg?1562822847", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/c/6/c64fe85b-e471-489a-8c38-2357da1c7969.png?1562822847", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/6/c64fe85b-e471-489a-8c38-2357da1c7969.jpg?1562822847", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/c/6/c64fe85b-e471-489a-8c38-2357da1c7969.jpg?1562822847"}, "mana_cost": "{3}{R}", "cmc": 4.0, "type_line": "Creature \u2014 Beast", "oracle_text": "When Oxidda Scrapmelter enters the battlefield, destroy target artifact.", "power": "3", "toughness": "3", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "restricted", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "8f403072-9b22-4e69-8d59-22dc4c97fd8d", "set": "som", "set_name": "Scars of Mirrodin", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/8f403072-9b22-4e69-8d59-22dc4c97fd8d", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Asom&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/som?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/c64fe85b-e471-489a-8c38-2357da1c7969/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Acef64ec6-cdfb-42a4-9a4a-3ef5448e93fc&unique=prints", "collector_number": "101", "digital": false, "rarity": "uncommon", "watermark": "mirran", "flavor_text": "It subsists on a diet rich in screaming metal and molten blood.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Igor Kieryluk", "artist_ids": ["9c3e9d17-509f-485c-9360-46d897ce716b"], "illustration_id": "e338470c-8274-4112-ab86-087ef8f0d602", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 19685, "penny_rank": 12940, "prices": {"usd": "0.06", "usd_foil": null, "usd_etched": null, "eur": "0.02", "eur_foil": "0.10", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=194281", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Oxidda+Scrapmelter&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Oxidda+Scrapmelter&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Oxidda+Scrapmelter"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/36384?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Oxidda+Scrapmelter&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/38059?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "b83ad801-44e7-48d0-9f34-0d10536bb4dc", "oracle_id": "627de3d8-ad5e-4f9b-b83c-476cc98fea9b", "multiverse_ids": [189873], "mtgo_id": 31943, "mtgo_foil_id": 31944, "tcgplayer_id": 28582, "cardmarket_id": 20731, "name": "Paleoloth", "lang": "en", "released_at": "2009-02-06", "uri": "https://api.scryfall.com/cards/b83ad801-44e7-48d0-9f34-0d10536bb4dc", "scryfall_uri": "https://scryfall.com/card/con/88/paleoloth?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/b/8/b83ad801-44e7-48d0-9f34-0d10536bb4dc.jpg?1562803341", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/8/b83ad801-44e7-48d0-9f34-0d10536bb4dc.jpg?1562803341", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/b/8/b83ad801-44e7-48d0-9f34-0d10536bb4dc.jpg?1562803341", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/b/8/b83ad801-44e7-48d0-9f34-0d10536bb4dc.png?1562803341", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/8/b83ad801-44e7-48d0-9f34-0d10536bb4dc.jpg?1562803341", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/b/8/b83ad801-44e7-48d0-9f34-0d10536bb4dc.jpg?1562803341"}, "mana_cost": "{4}{G}{G}", "cmc": 6.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Whenever another creature with power 5 or greater enters the battlefield under your control, you may return target creature card from your graveyard to your hand.", "power": "5", "toughness": "5", "colors": ["G"], "color_identity": ["G"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "76b2db58-904c-4e49-8580-9f62f7b3cca4", "set": "con", "set_name": "Conflux", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/76b2db58-904c-4e49-8580-9f62f7b3cca4", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Acon&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/con?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/b83ad801-44e7-48d0-9f34-0d10536bb4dc/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A627de3d8-ad5e-4f9b-b83c-476cc98fea9b&unique=prints", "collector_number": "88", "digital": false, "rarity": "rare", "flavor_text": "\"Gods do not sleep soundly in the earth's embrace.\"\n\u2014Mayael the Anima", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Christopher Moeller", "artist_ids": ["21e10012-06ae-44f2-b38d-3824dd2e73d4"], "illustration_id": "ff4ed6f1-47e9-4885-ba57-c7c91d324eeb", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 8220, "penny_rank": 6948, "prices": {"usd": "0.89", "usd_foil": "1.00", "usd_etched": null, "eur": "0.49", "eur_foil": "0.65", "tix": "0.01"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=189873", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Paleoloth&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Paleoloth&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Paleoloth"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/28582?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Paleoloth&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/31943?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "61adc314-cfb2-4fdd-925c-cc1dc4692992", "oracle_id": "cad0f865-62e0-47ba-84ae-8e97cb52bbd1", "multiverse_ids": [4837], "mtgo_id": 9847, "mtgo_foil_id": 9848, "tcgplayer_id": 5658, "cardmarket_id": 8930, "name": "Pallimud", "lang": "en", "released_at": "1997-10-14", "uri": "https://api.scryfall.com/cards/61adc314-cfb2-4fdd-925c-cc1dc4692992", "scryfall_uri": "https://scryfall.com/card/tmp/195/pallimud?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/6/1/61adc314-cfb2-4fdd-925c-cc1dc4692992.jpg?1562054248", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/1/61adc314-cfb2-4fdd-925c-cc1dc4692992.jpg?1562054248", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/6/1/61adc314-cfb2-4fdd-925c-cc1dc4692992.jpg?1562054248", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/6/1/61adc314-cfb2-4fdd-925c-cc1dc4692992.png?1562054248", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/1/61adc314-cfb2-4fdd-925c-cc1dc4692992.jpg?1562054248", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/6/1/61adc314-cfb2-4fdd-925c-cc1dc4692992.jpg?1562054248"}, "mana_cost": "{2}{R}", "cmc": 3.0, "type_line": "Creature \u2014 Beast", "oracle_text": "As Pallimud enters the battlefield, choose an opponent.\nPallimud's power is equal to the number of tapped lands the chosen player controls.", "power": "*", "toughness": "3", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "10df3a67-178e-4363-8668-34f0e6edf2a7", "set": "tmp", "set_name": "Tempest", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/10df3a67-178e-4363-8668-34f0e6edf2a7", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Atmp&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/tmp?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/61adc314-cfb2-4fdd-925c-cc1dc4692992/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Acad0f865-62e0-47ba-84ae-8e97cb52bbd1&unique=prints", "collector_number": "195", "digital": false, "rarity": "rare", "flavor_text": "The old Vec tell tales of a beast that fed on scraps but turned its nose up at the lavish banquet they set in its honor.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Quinton Hoover", "artist_ids": ["1a2db619-92a5-431a-822b-101cdcc5bd5d"], "illustration_id": "cd1e4a8e-0524-454a-b046-a3e0f1eab2ae", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 21346, "penny_rank": 13936, "prices": {"usd": "0.23", "usd_foil": null, "usd_etched": null, "eur": "1.45", "eur_foil": null, "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=4837", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Pallimud&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Pallimud&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Pallimud"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/5658?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Pallimud&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/9847?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "610bb98c-d66a-44cc-92e2-a80d700b59e4", "oracle_id": "de83b309-ac31-4a57-95e6-ccd3659e6c1f", "multiverse_ids": [479719], "mtgo_id": 80407, "arena_id": 71266, "tcgplayer_id": 212293, "cardmarket_id": 453478, "name": "Parcelbeast", "lang": "en", "released_at": "2020-04-24", "uri": "https://api.scryfall.com/cards/610bb98c-d66a-44cc-92e2-a80d700b59e4", "scryfall_uri": "https://scryfall.com/card/iko/199/parcelbeast?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/6/1/610bb98c-d66a-44cc-92e2-a80d700b59e4.jpg?1591228161", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/1/610bb98c-d66a-44cc-92e2-a80d700b59e4.jpg?1591228161", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/6/1/610bb98c-d66a-44cc-92e2-a80d700b59e4.jpg?1591228161", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/6/1/610bb98c-d66a-44cc-92e2-a80d700b59e4.png?1591228161", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/1/610bb98c-d66a-44cc-92e2-a80d700b59e4.jpg?1591228161", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/6/1/610bb98c-d66a-44cc-92e2-a80d700b59e4.jpg?1591228161"}, "mana_cost": "{2}{G}{U}", "cmc": 4.0, "type_line": "Creature \u2014 Elemental Beast", "oracle_text": "Mutate {G}{U} (If you cast this spell for its mutate cost, put it over or under target non-Human creature you own. They mutate into the creature on top plus all abilities from under it.)\n{1}, {T}: Look at the top card of your library. If it's a land card, you may put it onto the battlefield. If you don't put the card onto the battlefield, put it into your hand.", "power": "2", "toughness": "4", "colors": ["G", "U"], "color_identity": ["G", "U"], "keywords": ["Mutate"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "restricted", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "19feda43-15ab-427e-a0e4-148a4bf2b03a", "set": "iko", "set_name": "Ikoria: Lair of Behemoths", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/19feda43-15ab-427e-a0e4-148a4bf2b03a", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aiko&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/iko?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/610bb98c-d66a-44cc-92e2-a80d700b59e4/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ade83b309-ac31-4a57-95e6-ccd3659e6c1f&unique=prints", "collector_number": "199", "digital": false, "rarity": "uncommon", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Milivoj \u0106eran", "artist_ids": ["1eced451-4da5-42bc-b49d-70c41246581f"], "illustration_id": "cb094ca6-a4d4-4200-8096-0c54a0405739", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 2986, "penny_rank": 4188, "preview": {"source": "Wizards of the Coast", "source_uri": "https://magic.wizards.com/en/articles/archive/card-preview/monster-set-design-2020-04-07", "previewed_at": "2020-04-07"}, "prices": {"usd": "0.17", "usd_foil": "0.26", "usd_etched": null, "eur": "0.15", "eur_foil": "0.24", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=479719", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Parcelbeast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Parcelbeast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Parcelbeast"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/212293?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Parcelbeast&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/80407?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "f5ac98e5-a22c-41b5-94a9-b37b5aeb124f", "oracle_id": "de83b309-ac31-4a57-95e6-ccd3659e6c1f", "multiverse_ids": [], "arena_id": 73677, "tcgplayer_id": 212294, "cardmarket_id": 453483, "name": "Parcelbeast", "lang": "en", "released_at": "2020-04-24", "uri": "https://api.scryfall.com/cards/f5ac98e5-a22c-41b5-94a9-b37b5aeb124f", "scryfall_uri": "https://scryfall.com/card/iko/304/parcelbeast?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/f/5/f5ac98e5-a22c-41b5-94a9-b37b5aeb124f.jpg?1604781949", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/5/f5ac98e5-a22c-41b5-94a9-b37b5aeb124f.jpg?1604781949", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/f/5/f5ac98e5-a22c-41b5-94a9-b37b5aeb124f.jpg?1604781949", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/f/5/f5ac98e5-a22c-41b5-94a9-b37b5aeb124f.png?1604781949", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/5/f5ac98e5-a22c-41b5-94a9-b37b5aeb124f.jpg?1604781949", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/f/5/f5ac98e5-a22c-41b5-94a9-b37b5aeb124f.jpg?1604781949"}, "mana_cost": "{2}{G}{U}", "cmc": 4.0, "type_line": "Creature \u2014 Elemental Beast", "oracle_text": "Mutate {G}{U} (If you cast this spell for its mutate cost, put it over or under target non-Human creature you own. They mutate into the creature on top plus all abilities from under it.)\n{1}, {T}: Look at the top card of your library. If it's a land card, you may put it onto the battlefield. If you don't put the card onto the battlefield, put it into your hand.", "power": "2", "toughness": "4", "colors": ["G", "U"], "color_identity": ["G", "U"], "keywords": ["Mutate"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "restricted", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "19feda43-15ab-427e-a0e4-148a4bf2b03a", "set": "iko", "set_name": "Ikoria: Lair of Behemoths", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/19feda43-15ab-427e-a0e4-148a4bf2b03a", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aiko&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/iko?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/f5ac98e5-a22c-41b5-94a9-b37b5aeb124f/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ade83b309-ac31-4a57-95e6-ccd3659e6c1f&unique=prints", "collector_number": "304", "digital": false, "rarity": "uncommon", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Justine Mara Andersen", "artist_ids": ["792963b0-5dec-4b79-9035-71ce48bf77e9"], "illustration_id": "48e1f975-6f23-45e8-9de9-b8e830c5c133", "border_color": "black", "frame": "2015", "frame_effects": ["showcase"], "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "promo_types": ["boosterfun"], "edhrec_rank": 2986, "penny_rank": 4188, "preview": {"source": "Wizards of the Coast", "source_uri": "https://magic.wizards.com/en/articles/archive/card-preview/monster-set-design-2020-04-07", "previewed_at": "2020-04-07"}, "prices": {"usd": "0.21", "usd_foil": "0.35", "usd_etched": null, "eur": "0.09", "eur_foil": "0.30", "tix": null}, "related_uris": {"tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Parcelbeast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Parcelbeast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Parcelbeast"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/212294?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Parcelbeast&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Parcelbeast&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "75ac6311-8516-4db2-8c1f-626f0db0d36f", "oracle_id": "ef2e711f-7362-4eed-8f91-f3d653e7f434", "multiverse_ids": [29799], "mtgo_id": 17271, "mtgo_foil_id": 17272, "tcgplayer_id": 9634, "cardmarket_id": 2377, "name": "Petradon", "lang": "en", "released_at": "2002-02-04", "uri": "https://api.scryfall.com/cards/75ac6311-8516-4db2-8c1f-626f0db0d36f", "scryfall_uri": "https://scryfall.com/card/tor/108/petradon?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/7/5/75ac6311-8516-4db2-8c1f-626f0db0d36f.jpg?1562630404", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/5/75ac6311-8516-4db2-8c1f-626f0db0d36f.jpg?1562630404", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/7/5/75ac6311-8516-4db2-8c1f-626f0db0d36f.jpg?1562630404", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/7/5/75ac6311-8516-4db2-8c1f-626f0db0d36f.png?1562630404", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/5/75ac6311-8516-4db2-8c1f-626f0db0d36f.jpg?1562630404", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/7/5/75ac6311-8516-4db2-8c1f-626f0db0d36f.jpg?1562630404"}, "mana_cost": "{6}{R}{R}", "cmc": 8.0, "type_line": "Creature \u2014 Nightmare Beast", "oracle_text": "When Petradon enters the battlefield, exile two target lands.\nWhen Petradon leaves the battlefield, return the exiled cards to the battlefield under their owners' control.\n{R}: Petradon gets +1/+0 until end of turn.", "power": "5", "toughness": "6", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "e0b3fda1-a6ca-4996-849b-08b463d39484", "set": "tor", "set_name": "Torment", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/e0b3fda1-a6ca-4996-849b-08b463d39484", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ator&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/tor?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/75ac6311-8516-4db2-8c1f-626f0db0d36f/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aef2e711f-7362-4eed-8f91-f3d653e7f434&unique=prints", "collector_number": "108", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Jim Nelson", "artist_ids": ["aa9f64d1-29e1-4c82-877e-44c18183f40b"], "illustration_id": "390df59a-089c-4076-b4b6-c23c01cc8f9a", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 21671, "penny_rank": 6697, "prices": {"usd": "0.23", "usd_foil": "2.56", "usd_etched": null, "eur": "0.25", "eur_foil": "2.00", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=29799", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Petradon&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Petradon&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Petradon"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/9634?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Petradon&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/17271?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "ffc98d09-439e-426b-8403-4a3e12167336", "oracle_id": "aedf022c-6065-42cb-85bb-225ae1650a5c", "multiverse_ids": [31805], "mtgo_id": 17273, "mtgo_foil_id": 17274, "tcgplayer_id": 9698, "cardmarket_id": 2378, "name": "Petravark", "lang": "en", "released_at": "2002-02-04", "uri": "https://api.scryfall.com/cards/ffc98d09-439e-426b-8403-4a3e12167336", "scryfall_uri": "https://scryfall.com/card/tor/109/petravark?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/f/f/ffc98d09-439e-426b-8403-4a3e12167336.jpg?1562632920", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/f/ffc98d09-439e-426b-8403-4a3e12167336.jpg?1562632920", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/f/f/ffc98d09-439e-426b-8403-4a3e12167336.jpg?1562632920", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/f/f/ffc98d09-439e-426b-8403-4a3e12167336.png?1562632920", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/f/ffc98d09-439e-426b-8403-4a3e12167336.jpg?1562632920", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/f/f/ffc98d09-439e-426b-8403-4a3e12167336.jpg?1562632920"}, "mana_cost": "{3}{R}", "cmc": 4.0, "type_line": "Creature \u2014 Nightmare Beast", "oracle_text": "When Petravark enters the battlefield, exile target land.\nWhen Petravark leaves the battlefield, return the exiled card to the battlefield under its owner's control.", "power": "2", "toughness": "2", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "e0b3fda1-a6ca-4996-849b-08b463d39484", "set": "tor", "set_name": "Torment", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/e0b3fda1-a6ca-4996-849b-08b463d39484", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ator&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/tor?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/ffc98d09-439e-426b-8403-4a3e12167336/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aaedf022c-6065-42cb-85bb-225ae1650a5c&unique=prints", "collector_number": "109", "digital": false, "rarity": "common", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Wayne England", "artist_ids": ["62dc90c0-4bc2-4d42-ad76-59cad9243566"], "illustration_id": "f3ed9378-7764-4af4-a06b-9a4335d91b96", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 21042, "penny_rank": 11740, "prices": {"usd": "0.11", "usd_foil": "0.45", "usd_etched": null, "eur": "0.05", "eur_foil": "0.19", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=31805", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Petravark&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Petravark&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Petravark"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/9698?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Petravark&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/17273?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "572df99b-af44-4128-8b2c-e40b1cea816b", "oracle_id": "13ca7c14-5db2-4d17-912a-fdeabcdcd9f8", "multiverse_ids": [205017], "mtgo_id": 37384, "mtgo_foil_id": 37385, "tcgplayer_id": 35616, "cardmarket_id": 242043, "name": "Phantom Beast", "lang": "en", "released_at": "2010-07-16", "uri": "https://api.scryfall.com/cards/572df99b-af44-4128-8b2c-e40b1cea816b", "scryfall_uri": "https://scryfall.com/card/m11/69/phantom-beast?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/5/7/572df99b-af44-4128-8b2c-e40b1cea816b.jpg?1562460582", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/7/572df99b-af44-4128-8b2c-e40b1cea816b.jpg?1562460582", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/5/7/572df99b-af44-4128-8b2c-e40b1cea816b.jpg?1562460582", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/5/7/572df99b-af44-4128-8b2c-e40b1cea816b.png?1562460582", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/7/572df99b-af44-4128-8b2c-e40b1cea816b.jpg?1562460582", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/5/7/572df99b-af44-4128-8b2c-e40b1cea816b.jpg?1562460582"}, "mana_cost": "{3}{U}", "cmc": 4.0, "type_line": "Creature \u2014 Illusion Beast", "oracle_text": "When Phantom Beast becomes the target of a spell or ability, sacrifice it.", "power": "4", "toughness": "5", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "485d2468-18c8-42a4-9482-ca1c51e0470e", "set": "m11", "set_name": "Magic 2011", "set_type": "core", "set_uri": "https://api.scryfall.com/sets/485d2468-18c8-42a4-9482-ca1c51e0470e", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Am11&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/m11?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/572df99b-af44-4128-8b2c-e40b1cea816b/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A13ca7c14-5db2-4d17-912a-fdeabcdcd9f8&unique=prints", "collector_number": "69", "digital": false, "rarity": "common", "flavor_text": "As insubstantial as fear, and as dangerous.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Ryan Yee", "artist_ids": ["8955dca7-3e37-42b4-83a9-167c78a2178f"], "illustration_id": "2836fd2e-3e63-4bbe-abea-7c41b8c6162a", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 18987, "penny_rank": 13924, "prices": {"usd": "0.05", "usd_foil": "0.23", "usd_etched": null, "eur": "0.01", "eur_foil": "0.45", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=205017", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Phantom+Beast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Phantom+Beast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Phantom+Beast"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/35616?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Phantom+Beast&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/37384?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "56ebc372-aabd-4174-a943-c7bf59e5028d", "oracle_id": "e43e06fb-52b7-4f38-8fac-f31973b043f7", "multiverse_ids": [37113], "mtgo_id": 17622, "mtgo_foil_id": 17623, "tcgplayer_id": 10190, "cardmarket_id": 2266, "name": "Phantom Nishoba", "lang": "en", "released_at": "2002-05-27", "uri": "https://api.scryfall.com/cards/56ebc372-aabd-4174-a943-c7bf59e5028d", "scryfall_uri": "https://scryfall.com/card/jud/140/phantom-nishoba?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/5/6/56ebc372-aabd-4174-a943-c7bf59e5028d.jpg?1562629953", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/6/56ebc372-aabd-4174-a943-c7bf59e5028d.jpg?1562629953", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/5/6/56ebc372-aabd-4174-a943-c7bf59e5028d.jpg?1562629953", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/5/6/56ebc372-aabd-4174-a943-c7bf59e5028d.png?1562629953", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/6/56ebc372-aabd-4174-a943-c7bf59e5028d.jpg?1562629953", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/5/6/56ebc372-aabd-4174-a943-c7bf59e5028d.jpg?1562629953"}, "mana_cost": "{5}{G}{W}", "cmc": 7.0, "type_line": "Creature \u2014 Cat Beast Spirit", "oracle_text": "Trample\nPhantom Nishoba enters the battlefield with seven +1/+1 counters on it.\nWhenever Phantom Nishoba deals damage, you gain that much life.\nIf damage would be dealt to Phantom Nishoba, prevent that damage. Remove a +1/+1 counter from Phantom Nishoba.", "power": "0", "toughness": "0", "colors": ["G", "W"], "color_identity": ["G", "W"], "keywords": ["Trample"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "cd82de1a-36fd-4618-bfe8-b45532a582d9", "set": "jud", "set_name": "Judgment", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/cd82de1a-36fd-4618-bfe8-b45532a582d9", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ajud&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/jud?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/56ebc372-aabd-4174-a943-c7bf59e5028d/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ae43e06fb-52b7-4f38-8fac-f31973b043f7&unique=prints", "collector_number": "140", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Arnie Swekel", "artist_ids": ["af10ecf2-eb82-4100-97b2-6c236b0fa644"], "illustration_id": "2bdc53d2-1f4b-4f6d-b59d-985ff2a01268", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 7939, "penny_rank": 3502, "prices": {"usd": "3.12", "usd_foil": "49.33", "usd_etched": null, "eur": "0.50", "eur_foil": "49.99", "tix": "1.63"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=37113", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Phantom+Nishoba&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Phantom+Nishoba&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Phantom+Nishoba"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/10190?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Phantom+Nishoba&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/17622?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "376e9829-23eb-4b43-9ec7-246cb3156e95", "oracle_id": "ec9c35f2-6a68-45e7-a86e-9f5af9fe28fc", "multiverse_ids": [214384], "mtgo_id": 39750, "mtgo_foil_id": 39751, "tcgplayer_id": 39563, "cardmarket_id": 245873, "name": "Phyrexian Ingester", "lang": "en", "released_at": "2011-05-13", "uri": "https://api.scryfall.com/cards/376e9829-23eb-4b43-9ec7-246cb3156e95", "scryfall_uri": "https://scryfall.com/card/nph/41/phyrexian-ingester?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/3/7/376e9829-23eb-4b43-9ec7-246cb3156e95.jpg?1562876645", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/7/376e9829-23eb-4b43-9ec7-246cb3156e95.jpg?1562876645", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/3/7/376e9829-23eb-4b43-9ec7-246cb3156e95.jpg?1562876645", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/3/7/376e9829-23eb-4b43-9ec7-246cb3156e95.png?1562876645", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/7/376e9829-23eb-4b43-9ec7-246cb3156e95.jpg?1562876645", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/3/7/376e9829-23eb-4b43-9ec7-246cb3156e95.jpg?1562876645"}, "mana_cost": "{6}{U}", "cmc": 7.0, "type_line": "Creature \u2014 Phyrexian Beast", "oracle_text": "Imprint \u2014 When Phyrexian Ingester enters the battlefield, you may exile target nontoken creature.\nPhyrexian Ingester gets +X/+Y, where X is the exiled creature card's power and Y is its toughness.", "power": "3", "toughness": "3", "colors": ["U"], "color_identity": ["U"], "keywords": ["Imprint"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "restricted", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "e8e356d8-6d01-4dab-aa07-d0999dc9359f", "set": "nph", "set_name": "New Phyrexia", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/e8e356d8-6d01-4dab-aa07-d0999dc9359f", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Anph&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/nph?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/376e9829-23eb-4b43-9ec7-246cb3156e95/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aec9c35f2-6a68-45e7-a86e-9f5af9fe28fc&unique=prints", "collector_number": "41", "digital": false, "rarity": "rare", "watermark": "phyrexian", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Chris Rahn", "artist_ids": ["7742047e-0f80-4c0f-a530-d07460165e86"], "illustration_id": "3ad1e960-d88d-4598-9ac3-dc07f89666fc", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 5588, "penny_rank": 6856, "prices": {"usd": "0.23", "usd_foil": "0.40", "usd_etched": null, "eur": "0.20", "eur_foil": "0.25", "tix": "0.01"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=214384", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Phyrexian+Ingester&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Phyrexian+Ingester&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Phyrexian+Ingester"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/39563?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Phyrexian+Ingester&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/39750?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "6c7576e2-1a95-453f-aab5-b08e21f28ba4", "oracle_id": "0c93c418-e10b-4a6d-bddb-3b786bb6a928", "multiverse_ids": [159098], "mtgo_id": 28125, "mtgo_foil_id": 28126, "name": "Phyrexian War Beast", "lang": "en", "released_at": "2007-09-10", "uri": "https://api.scryfall.com/cards/6c7576e2-1a95-453f-aab5-b08e21f28ba4", "scryfall_uri": "https://scryfall.com/card/me1/162/phyrexian-war-beast?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/6/c/6c7576e2-1a95-453f-aab5-b08e21f28ba4.jpg?1559592288", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/c/6c7576e2-1a95-453f-aab5-b08e21f28ba4.jpg?1559592288", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/6/c/6c7576e2-1a95-453f-aab5-b08e21f28ba4.jpg?1559592288", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/6/c/6c7576e2-1a95-453f-aab5-b08e21f28ba4.png?1559592288", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/c/6c7576e2-1a95-453f-aab5-b08e21f28ba4.jpg?1559592288", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/6/c/6c7576e2-1a95-453f-aab5-b08e21f28ba4.jpg?1559592288"}, "mana_cost": "{3}", "cmc": 3.0, "type_line": "Artifact Creature \u2014 Phyrexian Beast", "oracle_text": "When Phyrexian War Beast leaves the battlefield, sacrifice a land and Phyrexian War Beast deals 1 damage to you.", "power": "3", "toughness": "4", "colors": [], "color_identity": [], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "407d388d-1abf-4c1d-b0c6-f56280898a1a", "set": "me1", "set_name": "Masters Edition", "set_type": "masters", "set_uri": "https://api.scryfall.com/sets/407d388d-1abf-4c1d-b0c6-f56280898a1a", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ame1&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/me1?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/6c7576e2-1a95-453f-aab5-b08e21f28ba4/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A0c93c418-e10b-4a6d-bddb-3b786bb6a928&unique=prints", "collector_number": "162", "digital": true, "rarity": "uncommon", "flavor_text": "\"Knowing its origins, how could they have thought they could control it?\"\n\u2014Sorine Relicbane, Soldevi heretic", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Bill Sienkiewicz", "artist_ids": ["c1a9ecfb-1440-4579-adfb-bd10095dd690"], "illustration_id": "45cec134-d6e1-449a-9e6d-5286d7856161", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 17288, "penny_rank": 13971, "prices": {"usd": null, "usd_foil": null, "usd_etched": null, "eur": null, "eur_foil": null, "tix": "0.05"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=159098", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Phyrexian+War+Beast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Phyrexian+War+Beast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Phyrexian+War+Beast"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/search/magic/product?productLineName=magic&q=Phyrexian+War+Beast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall&view=grid", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Phyrexian+War+Beast&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/28125?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "e7d651f6-50be-4df9-80f8-4c62bb860e71", "oracle_id": "0c93c418-e10b-4a6d-bddb-3b786bb6a928", "multiverse_ids": [3054], "tcgplayer_id": 81840, "cardmarket_id": 8022, "name": "Phyrexian War Beast", "lang": "en", "released_at": "1996-06-10", "uri": "https://api.scryfall.com/cards/e7d651f6-50be-4df9-80f8-4c62bb860e71", "scryfall_uri": "https://scryfall.com/card/all/127b/phyrexian-war-beast?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/e/7/e7d651f6-50be-4df9-80f8-4c62bb860e71.jpg?1562770649", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/7/e7d651f6-50be-4df9-80f8-4c62bb860e71.jpg?1562770649", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/e/7/e7d651f6-50be-4df9-80f8-4c62bb860e71.jpg?1562770649", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/e/7/e7d651f6-50be-4df9-80f8-4c62bb860e71.png?1562770649", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/7/e7d651f6-50be-4df9-80f8-4c62bb860e71.jpg?1562770649", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/e/7/e7d651f6-50be-4df9-80f8-4c62bb860e71.jpg?1562770649"}, "mana_cost": "{3}", "cmc": 3.0, "type_line": "Artifact Creature \u2014 Phyrexian Beast", "oracle_text": "When Phyrexian War Beast leaves the battlefield, sacrifice a land and Phyrexian War Beast deals 1 damage to you.", "power": "3", "toughness": "4", "colors": [], "color_identity": [], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "64987b06-4a5c-443d-b560-ff5691744582", "set": "all", "set_name": "Alliances", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/64987b06-4a5c-443d-b560-ff5691744582", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aall&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/all?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/e7d651f6-50be-4df9-80f8-4c62bb860e71/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A0c93c418-e10b-4a6d-bddb-3b786bb6a928&unique=prints", "collector_number": "127b", "digital": false, "rarity": "common", "flavor_text": "\"Knowing its origins, how could they have thought they could control it?\"\n\u2014Sorine Relicbane, Soldevi Heretic", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Bill Sienkiewicz", "artist_ids": ["c1a9ecfb-1440-4579-adfb-bd10095dd690"], "illustration_id": "6d855ef9-583b-4314-a4e0-7b77a26a96c4", "border_color": "black", "frame": "1993", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 17288, "penny_rank": 13971, "prices": {"usd": "0.14", "usd_foil": null, "usd_etched": null, "eur": "0.05", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=3054", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Phyrexian+War+Beast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Phyrexian+War+Beast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Phyrexian+War+Beast"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/81840?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Phyrexian+War+Beast&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Phyrexian+War+Beast&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "280ae211-f025-4971-83e6-118ca08a1911", "oracle_id": "f086a82d-8dbe-4d02-a076-03789704e9d4", "multiverse_ids": [426806], "mtgo_id": 63810, "mtgo_foil_id": 63811, "tcgplayer_id": 130054, "cardmarket_id": 296819, "name": "Plague Belcher", "lang": "en", "released_at": "2017-04-28", "uri": "https://api.scryfall.com/cards/280ae211-f025-4971-83e6-118ca08a1911", "scryfall_uri": "https://scryfall.com/card/akh/104/plague-belcher?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/2/8/280ae211-f025-4971-83e6-118ca08a1911.jpg?1543675375", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/8/280ae211-f025-4971-83e6-118ca08a1911.jpg?1543675375", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/2/8/280ae211-f025-4971-83e6-118ca08a1911.jpg?1543675375", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/2/8/280ae211-f025-4971-83e6-118ca08a1911.png?1543675375", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/8/280ae211-f025-4971-83e6-118ca08a1911.jpg?1543675375", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/2/8/280ae211-f025-4971-83e6-118ca08a1911.jpg?1543675375"}, "mana_cost": "{2}{B}", "cmc": 3.0, "type_line": "Creature \u2014 Zombie Beast", "oracle_text": "Menace\nWhen Plague Belcher enters the battlefield, put two -1/-1 counters on target creature you control.\nWhenever another Zombie you control dies, each opponent loses 1 life.", "power": "5", "toughness": "4", "colors": ["B"], "color_identity": ["B"], "keywords": ["Menace"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "02d1c536-68bc-4208-9b65-7741ef1f9da8", "set": "akh", "set_name": "Amonkhet", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/02d1c536-68bc-4208-9b65-7741ef1f9da8", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aakh&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/akh?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/280ae211-f025-4971-83e6-118ca08a1911/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Af086a82d-8dbe-4d02-a076-03789704e9d4&unique=prints", "collector_number": "104", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Izzy", "artist_ids": ["2c3d2473-ff5d-4309-8194-e0b2def2ab65"], "illustration_id": "522cf556-62bc-43f4-894f-87a08a8cf50d", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 2168, "penny_rank": 3704, "prices": {"usd": "3.51", "usd_foil": "9.71", "usd_etched": null, "eur": "2.56", "eur_foil": "5.00", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=426806", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Plague+Belcher&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Plague+Belcher&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Plague+Belcher"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/130054?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Plague+Belcher&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/63810?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "52341830-8cea-421f-b901-9229004f2d45", "oracle_id": "22252186-15d0-468f-8cab-c74db9b71439", "multiverse_ids": [213752], "mtgo_id": 39361, "mtgo_foil_id": 39362, "tcgplayer_id": 39112, "cardmarket_id": 245388, "name": "Plaguemaw Beast", "lang": "en", "released_at": "2011-02-04", "uri": "https://api.scryfall.com/cards/52341830-8cea-421f-b901-9229004f2d45", "scryfall_uri": "https://scryfall.com/card/mbs/87/plaguemaw-beast?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/5/2/52341830-8cea-421f-b901-9229004f2d45.jpg?1562611301", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/2/52341830-8cea-421f-b901-9229004f2d45.jpg?1562611301", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/5/2/52341830-8cea-421f-b901-9229004f2d45.jpg?1562611301", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/5/2/52341830-8cea-421f-b901-9229004f2d45.png?1562611301", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/2/52341830-8cea-421f-b901-9229004f2d45.jpg?1562611301", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/5/2/52341830-8cea-421f-b901-9229004f2d45.jpg?1562611301"}, "mana_cost": "{3}{G}{G}", "cmc": 5.0, "type_line": "Creature \u2014 Phyrexian Beast", "oracle_text": "{T}, Sacrifice a creature: Proliferate. (Choose any number of permanents and/or players, then give each another counter of each kind already there.)", "power": "4", "toughness": "3", "colors": ["G"], "color_identity": ["G"], "keywords": ["Proliferate"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "restricted", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "f46c57e3-9301-4006-a6ca-06f3f65961fb", "set": "mbs", "set_name": "Mirrodin Besieged", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/f46c57e3-9301-4006-a6ca-06f3f65961fb", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ambs&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/mbs?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/52341830-8cea-421f-b901-9229004f2d45/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A22252186-15d0-468f-8cab-c74db9b71439&unique=prints", "collector_number": "87", "digital": false, "rarity": "uncommon", "watermark": "phyrexian", "flavor_text": "Phyrexia's spiral of consumption grows ever wider and darker.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Whit Brachna", "artist_ids": ["435991cd-0bfe-4d00-ba48-39815d35e9f6"], "illustration_id": "c0685180-9583-4df4-8a9b-893dcaa6dc94", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 5471, "penny_rank": 11060, "prices": {"usd": "0.22", "usd_foil": "2.00", "usd_etched": null, "eur": "0.16", "eur_foil": "0.29", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=213752", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Plaguemaw+Beast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Plaguemaw+Beast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Plaguemaw+Beast"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/39112?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Plaguemaw+Beast&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/39361?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "230b9bc8-29c8-49cb-b4f5-1aceeda8bf45", "oracle_id": "eef50ef8-958b-4f5c-b261-16926d9fe672", "multiverse_ids": [497663], "mtgo_id": 85068, "tcgplayer_id": 226873, "cardmarket_id": 511185, "name": "Plague Reaver", "lang": "en", "released_at": "2020-11-20", "uri": "https://api.scryfall.com/cards/230b9bc8-29c8-49cb-b4f5-1aceeda8bf45", "scryfall_uri": "https://scryfall.com/card/cmr/143/plague-reaver?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/2/3/230b9bc8-29c8-49cb-b4f5-1aceeda8bf45.jpg?1608909892", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/3/230b9bc8-29c8-49cb-b4f5-1aceeda8bf45.jpg?1608909892", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/2/3/230b9bc8-29c8-49cb-b4f5-1aceeda8bf45.jpg?1608909892", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/2/3/230b9bc8-29c8-49cb-b4f5-1aceeda8bf45.png?1608909892", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/3/230b9bc8-29c8-49cb-b4f5-1aceeda8bf45.jpg?1608909892", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/2/3/230b9bc8-29c8-49cb-b4f5-1aceeda8bf45.jpg?1608909892"}, "mana_cost": "{2}{B}", "cmc": 3.0, "type_line": "Creature \u2014 Beast", "oracle_text": "At the beginning of your end step, sacrifice each other creature you control.\nDiscard two cards, Sacrifice Plague Reaver: Choose target opponent. Return Plague Reaver to the battlefield under that player's control at the beginning of their next upkeep.", "power": "6", "toughness": "5", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "39de6fbf-1f11-48d0-8f04-f0407f6a0732", "set": "cmr", "set_name": "Commander Legends", "set_type": "draft_innovation", "set_uri": "https://api.scryfall.com/sets/39de6fbf-1f11-48d0-8f04-f0407f6a0732", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Acmr&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/cmr?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/230b9bc8-29c8-49cb-b4f5-1aceeda8bf45/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aeef50ef8-958b-4f5c-b261-16926d9fe672&unique=prints", "collector_number": "143", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Nicholas Gregory", "artist_ids": ["a1bba8ff-63b4-4786-b1c4-f1bfe5d3ab1c"], "illustration_id": "caa73bd4-17a6-472f-8d88-31b8dc4d1fbf", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 5428, "preview": {"source": "Andrea Mengucci ", "source_uri": "https://twitter.com/Mengu09/status/1322595967955337217", "previewed_at": "2020-10-31"}, "prices": {"usd": "0.10", "usd_foil": "0.22", "usd_etched": null, "eur": "0.18", "eur_foil": "0.17", "tix": "0.14"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=497663", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Plague+Reaver&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Plague+Reaver&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Plague+Reaver"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/226873?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Plague+Reaver&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/85068?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "cd68e01c-4a09-450b-bfa0-8fbac8721764", "oracle_id": "411f3ea6-36ad-4bbc-8cde-e79662a08ee9", "multiverse_ids": [401996], "mtgo_id": 58577, "mtgo_foil_id": 58578, "tcgplayer_id": 105661, "cardmarket_id": 284903, "name": "Plated Crusher", "lang": "en", "released_at": "2015-10-02", "uri": "https://api.scryfall.com/cards/cd68e01c-4a09-450b-bfa0-8fbac8721764", "scryfall_uri": "https://scryfall.com/card/bfz/183/plated-crusher?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/c/d/cd68e01c-4a09-450b-bfa0-8fbac8721764.jpg?1562943464", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/d/cd68e01c-4a09-450b-bfa0-8fbac8721764.jpg?1562943464", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/c/d/cd68e01c-4a09-450b-bfa0-8fbac8721764.jpg?1562943464", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/c/d/cd68e01c-4a09-450b-bfa0-8fbac8721764.png?1562943464", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/d/cd68e01c-4a09-450b-bfa0-8fbac8721764.jpg?1562943464", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/c/d/cd68e01c-4a09-450b-bfa0-8fbac8721764.jpg?1562943464"}, "mana_cost": "{4}{G}{G}{G}", "cmc": 7.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Trample\nHexproof (This creature can't be the target of spells or abilities your opponents control.)", "power": "7", "toughness": "6", "colors": ["G"], "color_identity": ["G"], "keywords": ["Hexproof", "Trample"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "restricted", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "91719374-7ac5-4afa-ada8-5da964dcf1d4", "set": "bfz", "set_name": "Battle for Zendikar", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/91719374-7ac5-4afa-ada8-5da964dcf1d4", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Abfz&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/bfz?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/cd68e01c-4a09-450b-bfa0-8fbac8721764/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A411f3ea6-36ad-4bbc-8cde-e79662a08ee9&unique=prints", "collector_number": "183", "digital": false, "rarity": "uncommon", "flavor_text": "\"It might fight the Eldrazi, but don't mistake it for a companion, Gideon. It's not interested in your concept of strength through unity.\"\n\u2014Najiya, leader of the Tajuru", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Jama Jurabaev", "artist_ids": ["dd6ac36b-bdb4-48d5-9fae-1b017437669d"], "illustration_id": "64721861-c09e-46bb-a6e1-dab745e41aa9", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 12512, "penny_rank": 6920, "prices": {"usd": "0.05", "usd_foil": "0.27", "usd_etched": null, "eur": "0.10", "eur_foil": "0.49", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=401996", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Plated+Crusher&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Plated+Crusher&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Plated+Crusher"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/105661?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Plated+Crusher&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/58577?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "97171611-c677-48a6-b081-98a27ecef979", "oracle_id": "249b722e-2f4c-4884-bebb-e967f4fd3238", "multiverse_ids": [194061], "mtgo_id": 37971, "mtgo_foil_id": 37972, "tcgplayer_id": 36446, "cardmarket_id": 242766, "name": "Plated Seastrider", "lang": "en", "released_at": "2010-10-01", "uri": "https://api.scryfall.com/cards/97171611-c677-48a6-b081-98a27ecef979", "scryfall_uri": "https://scryfall.com/card/som/38/plated-seastrider?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/9/7/97171611-c677-48a6-b081-98a27ecef979.jpg?1562820641", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/7/97171611-c677-48a6-b081-98a27ecef979.jpg?1562820641", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/9/7/97171611-c677-48a6-b081-98a27ecef979.jpg?1562820641", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/9/7/97171611-c677-48a6-b081-98a27ecef979.png?1562820641", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/7/97171611-c677-48a6-b081-98a27ecef979.jpg?1562820641", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/9/7/97171611-c677-48a6-b081-98a27ecef979.jpg?1562820641"}, "mana_cost": "{U}{U}", "cmc": 2.0, "type_line": "Creature \u2014 Beast", "oracle_text": "", "power": "1", "toughness": "4", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "8f403072-9b22-4e69-8d59-22dc4c97fd8d", "set": "som", "set_name": "Scars of Mirrodin", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/8f403072-9b22-4e69-8d59-22dc4c97fd8d", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Asom&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/som?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/97171611-c677-48a6-b081-98a27ecef979/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A249b722e-2f4c-4884-bebb-e967f4fd3238&unique=prints", "collector_number": "38", "digital": false, "rarity": "common", "watermark": "mirran", "flavor_text": "The Neurok buried entangling cables just under the Quicksilver Sea. One seastrider harvest can provide an army's worth of armor and shields.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Izzy", "artist_ids": ["2c3d2473-ff5d-4309-8194-e0b2def2ab65"], "illustration_id": "281d3708-939e-48ee-b972-233aa07ca2e8", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 21879, "penny_rank": 9669, "prices": {"usd": "0.01", "usd_foil": "0.21", "usd_etched": null, "eur": "0.02", "eur_foil": "0.25", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=194061", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Plated+Seastrider&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Plated+Seastrider&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Plated+Seastrider"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/36446?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Plated+Seastrider&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/37971?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "8ae3598d-4d76-45ac-ab96-00d27a8de6c8", "oracle_id": "36780340-824d-420b-b41b-182f88d944de", "multiverse_ids": [107286], "mtgo_id": 24119, "mtgo_foil_id": 24120, "tcgplayer_id": 13913, "cardmarket_id": 13049, "name": "Plaxmanta", "lang": "en", "released_at": "2006-05-05", "uri": "https://api.scryfall.com/cards/8ae3598d-4d76-45ac-ab96-00d27a8de6c8", "scryfall_uri": "https://scryfall.com/card/dis/29/plaxmanta?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/8/a/8ae3598d-4d76-45ac-ab96-00d27a8de6c8.jpg?1593272724", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/a/8ae3598d-4d76-45ac-ab96-00d27a8de6c8.jpg?1593272724", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/8/a/8ae3598d-4d76-45ac-ab96-00d27a8de6c8.jpg?1593272724", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/8/a/8ae3598d-4d76-45ac-ab96-00d27a8de6c8.png?1593272724", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/a/8ae3598d-4d76-45ac-ab96-00d27a8de6c8.jpg?1593272724", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/8/a/8ae3598d-4d76-45ac-ab96-00d27a8de6c8.jpg?1593272724"}, "mana_cost": "{1}{U}", "cmc": 2.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Flash\nWhen Plaxmanta enters the battlefield, creatures you control gain shroud until end of turn. (They can't be the targets of spells or abilities.)\nWhen Plaxmanta enters the battlefield, sacrifice it unless {G} was spent to cast it.", "power": "2", "toughness": "2", "colors": ["U"], "color_identity": ["G", "U"], "keywords": ["Flash"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "restricted", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "fdebeda1-b95f-4343-8a94-d125821e6b5c", "set": "dis", "set_name": "Dissension", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/fdebeda1-b95f-4343-8a94-d125821e6b5c", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Adis&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/dis?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/8ae3598d-4d76-45ac-ab96-00d27a8de6c8/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A36780340-824d-420b-b41b-182f88d944de&unique=prints", "collector_number": "29", "digital": false, "rarity": "uncommon", "watermark": "simic", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Alan Pollack", "artist_ids": ["70c20ea3-5ad6-4082-a337-6e994ae5828e"], "illustration_id": "8fab266a-bc5a-4b3b-aaec-0d4103f50611", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 10486, "penny_rank": 4534, "prices": {"usd": "0.20", "usd_foil": "4.14", "usd_etched": null, "eur": "0.43", "eur_foil": "1.00", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=107286", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Plaxmanta&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Plaxmanta&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Plaxmanta"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/13913?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Plaxmanta&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/24119?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "856892c8-ba47-46d0-aec2-0416b55b9e88", "oracle_id": "e1efd99f-d918-4cd1-b85f-b90b106c3c88", "multiverse_ids": [479648], "mtgo_id": 80265, "arena_id": 71195, "tcgplayer_id": 212687, "cardmarket_id": 454978, "name": "Porcuparrot", "lang": "en", "released_at": "2020-04-24", "uri": "https://api.scryfall.com/cards/856892c8-ba47-46d0-aec2-0416b55b9e88", "scryfall_uri": "https://scryfall.com/card/iko/128/porcuparrot?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/8/5/856892c8-ba47-46d0-aec2-0416b55b9e88.jpg?1591227333", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/5/856892c8-ba47-46d0-aec2-0416b55b9e88.jpg?1591227333", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/8/5/856892c8-ba47-46d0-aec2-0416b55b9e88.jpg?1591227333", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/8/5/856892c8-ba47-46d0-aec2-0416b55b9e88.png?1591227333", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/5/856892c8-ba47-46d0-aec2-0416b55b9e88.jpg?1591227333", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/8/5/856892c8-ba47-46d0-aec2-0416b55b9e88.jpg?1591227333"}, "mana_cost": "{3}{R}", "cmc": 4.0, "type_line": "Creature \u2014 Bird Beast", "oracle_text": "Mutate {2}{R} (If you cast this spell for its mutate cost, put it over or under target non-Human creature you own. They mutate into the creature on top plus all abilities from under it.)\n{T}: This creature deals X damage to any target, where X is the number of times this creature has mutated.", "power": "3", "toughness": "4", "colors": ["R"], "color_identity": ["R"], "keywords": ["Mutate"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "restricted", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "19feda43-15ab-427e-a0e4-148a4bf2b03a", "set": "iko", "set_name": "Ikoria: Lair of Behemoths", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/19feda43-15ab-427e-a0e4-148a4bf2b03a", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aiko&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/iko?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/856892c8-ba47-46d0-aec2-0416b55b9e88/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ae1efd99f-d918-4cd1-b85f-b90b106c3c88&unique=prints", "collector_number": "128", "digital": false, "rarity": "uncommon", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Chris Seaman", "artist_ids": ["b9c49463-6f55-4039-9d32-c02a658af100"], "illustration_id": "8cf32802-c828-4079-86ef-91d978940907", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 6551, "penny_rank": 9271, "preview": {"source": "Voxy", "source_uri": "https://twitter.com/VoxyTwitch/status/1248359153019609090", "previewed_at": "2020-04-09"}, "prices": {"usd": "0.06", "usd_foil": "0.15", "usd_etched": null, "eur": "0.15", "eur_foil": "0.13", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=479648", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Porcuparrot&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Porcuparrot&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Porcuparrot"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/212687?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Porcuparrot&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/80265?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "e6373fe1-c834-419e-8a0b-590fb5dc555e", "oracle_id": "e1efd99f-d918-4cd1-b85f-b90b106c3c88", "multiverse_ids": [], "arena_id": 73666, "tcgplayer_id": 212688, "cardmarket_id": 454983, "name": "Porcuparrot", "lang": "en", "released_at": "2020-04-24", "uri": "https://api.scryfall.com/cards/e6373fe1-c834-419e-8a0b-590fb5dc555e", "scryfall_uri": "https://scryfall.com/card/iko/293/porcuparrot?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/e/6/e6373fe1-c834-419e-8a0b-590fb5dc555e.jpg?1604781828", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/6/e6373fe1-c834-419e-8a0b-590fb5dc555e.jpg?1604781828", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/e/6/e6373fe1-c834-419e-8a0b-590fb5dc555e.jpg?1604781828", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/e/6/e6373fe1-c834-419e-8a0b-590fb5dc555e.png?1604781828", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/6/e6373fe1-c834-419e-8a0b-590fb5dc555e.jpg?1604781828", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/e/6/e6373fe1-c834-419e-8a0b-590fb5dc555e.jpg?1604781828"}, "mana_cost": "{3}{R}", "cmc": 4.0, "type_line": "Creature \u2014 Bird Beast", "oracle_text": "Mutate {2}{R} (If you cast this spell for its mutate cost, put it over or under target non-Human creature you own. They mutate into the creature on top plus all abilities from under it.)\n{T}: This creature deals X damage to any target, where X is the number of times this creature has mutated.", "power": "3", "toughness": "4", "colors": ["R"], "color_identity": ["R"], "keywords": ["Mutate"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "restricted", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "19feda43-15ab-427e-a0e4-148a4bf2b03a", "set": "iko", "set_name": "Ikoria: Lair of Behemoths", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/19feda43-15ab-427e-a0e4-148a4bf2b03a", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aiko&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/iko?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/e6373fe1-c834-419e-8a0b-590fb5dc555e/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ae1efd99f-d918-4cd1-b85f-b90b106c3c88&unique=prints", "collector_number": "293", "digital": false, "rarity": "uncommon", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Denis Medri", "artist_ids": ["46e3dccf-3001-4b64-905d-4ec950f83217"], "illustration_id": "3b65af6b-fc25-4467-a704-51580005ba76", "border_color": "black", "frame": "2015", "frame_effects": ["showcase"], "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "promo_types": ["boosterfun"], "edhrec_rank": 6551, "penny_rank": 9271, "preview": {"source": "Voxy", "source_uri": "https://twitter.com/VoxyTwitch/status/1248359153019609090", "previewed_at": "2020-04-09"}, "prices": {"usd": "0.14", "usd_foil": "0.21", "usd_etched": null, "eur": "0.04", "eur_foil": "0.15", "tix": null}, "related_uris": {"tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Porcuparrot&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Porcuparrot&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Porcuparrot"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/212688?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Porcuparrot&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Porcuparrot&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "c859b339-b55b-41fe-948c-27502e3b3ea8", "oracle_id": "38630f89-bc22-49b2-b97e-d31a5169decc", "multiverse_ids": [479584], "mtgo_id": 80137, "arena_id": 71131, "tcgplayer_id": 212136, "cardmarket_id": 451983, "name": "Pouncing Shoreshark", "lang": "en", "released_at": "2020-04-24", "uri": "https://api.scryfall.com/cards/c859b339-b55b-41fe-948c-27502e3b3ea8", "scryfall_uri": "https://scryfall.com/card/iko/64/pouncing-shoreshark?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/c/8/c859b339-b55b-41fe-948c-27502e3b3ea8.jpg?1591226459", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/8/c859b339-b55b-41fe-948c-27502e3b3ea8.jpg?1591226459", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/c/8/c859b339-b55b-41fe-948c-27502e3b3ea8.jpg?1591226459", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/c/8/c859b339-b55b-41fe-948c-27502e3b3ea8.png?1591226459", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/8/c859b339-b55b-41fe-948c-27502e3b3ea8.jpg?1591226459", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/c/8/c859b339-b55b-41fe-948c-27502e3b3ea8.jpg?1591226459"}, "mana_cost": "{4}{U}", "cmc": 5.0, "type_line": "Creature \u2014 Shark Beast", "oracle_text": "Mutate {3}{U} (If you cast this spell for its mutate cost, put it over or under target non-Human creature you own. They mutate into the creature on top plus all abilities from under it.)\nFlash\nWhenever this creature mutates, you may return target creature an opponent controls to its owner's hand.", "power": "4", "toughness": "3", "colors": ["U"], "color_identity": ["U"], "keywords": ["Mutate", "Flash"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "restricted", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "19feda43-15ab-427e-a0e4-148a4bf2b03a", "set": "iko", "set_name": "Ikoria: Lair of Behemoths", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/19feda43-15ab-427e-a0e4-148a4bf2b03a", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aiko&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/iko?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/c859b339-b55b-41fe-948c-27502e3b3ea8/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A38630f89-bc22-49b2-b97e-d31a5169decc&unique=prints", "collector_number": "64", "digital": false, "rarity": "uncommon", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Dan Scott", "artist_ids": ["f852fa13-137e-40f2-bbc1-0f01df09c0e0"], "illustration_id": "73324847-333b-483a-bff3-6b004b0c8c9e", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 3593, "penny_rank": 6487, "preview": {"source": "Caleb Durward", "source_uri": "https://twitter.com/CalebDMTG/status/1246270218541895680", "previewed_at": "2020-04-03"}, "prices": {"usd": "0.06", "usd_foil": "0.12", "usd_etched": null, "eur": "0.11", "eur_foil": "0.15", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=479584", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Pouncing+Shoreshark&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Pouncing+Shoreshark&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Pouncing+Shoreshark"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/212136?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Pouncing+Shoreshark&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/80137?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "54428228-83a0-440f-afe9-573c9d8640cc", "oracle_id": "38630f89-bc22-49b2-b97e-d31a5169decc", "multiverse_ids": [], "arena_id": 73658, "tcgplayer_id": 212137, "cardmarket_id": 451988, "name": "Pouncing Shoreshark", "lang": "en", "released_at": "2020-04-24", "uri": "https://api.scryfall.com/cards/54428228-83a0-440f-afe9-573c9d8640cc", "scryfall_uri": "https://scryfall.com/card/iko/285/pouncing-shoreshark?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/5/4/54428228-83a0-440f-afe9-573c9d8640cc.jpg?1604781667", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/4/54428228-83a0-440f-afe9-573c9d8640cc.jpg?1604781667", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/5/4/54428228-83a0-440f-afe9-573c9d8640cc.jpg?1604781667", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/5/4/54428228-83a0-440f-afe9-573c9d8640cc.png?1604781667", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/4/54428228-83a0-440f-afe9-573c9d8640cc.jpg?1604781667", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/5/4/54428228-83a0-440f-afe9-573c9d8640cc.jpg?1604781667"}, "mana_cost": "{4}{U}", "cmc": 5.0, "type_line": "Creature \u2014 Shark Beast", "oracle_text": "Mutate {3}{U} (If you cast this spell for its mutate cost, put it over or under target non-Human creature you own. They mutate into the creature on top plus all abilities from under it.)\nFlash\nWhenever this creature mutates, you may return target creature an opponent controls to its owner's hand.", "power": "4", "toughness": "3", "colors": ["U"], "color_identity": ["U"], "keywords": ["Mutate", "Flash"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "restricted", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "19feda43-15ab-427e-a0e4-148a4bf2b03a", "set": "iko", "set_name": "Ikoria: Lair of Behemoths", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/19feda43-15ab-427e-a0e4-148a4bf2b03a", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aiko&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/iko?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/54428228-83a0-440f-afe9-573c9d8640cc/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A38630f89-bc22-49b2-b97e-d31a5169decc&unique=prints", "collector_number": "285", "digital": false, "rarity": "uncommon", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Daniel Warren Johnson", "artist_ids": ["de96d73c-5319-4c51-ada0-d0fe55b384f8"], "illustration_id": "88b14d73-8795-4d8f-9809-28dad5759aff", "border_color": "black", "frame": "2015", "frame_effects": ["showcase"], "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "promo_types": ["boosterfun"], "edhrec_rank": 3593, "penny_rank": 6487, "preview": {"source": "Caleb Durward", "source_uri": "https://twitter.com/CalebDMTG/status/1246270218541895680", "previewed_at": "2020-04-03"}, "prices": {"usd": "0.20", "usd_foil": "0.40", "usd_etched": null, "eur": "0.08", "eur_foil": "0.38", "tix": null}, "related_uris": {"tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Pouncing+Shoreshark&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Pouncing+Shoreshark&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Pouncing+Shoreshark"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/212137?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Pouncing+Shoreshark&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Pouncing+Shoreshark&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "eb77f6a8-a9d6-4fdd-996e-70877199ebab", "oracle_id": "44350127-f6b6-458f-8f2f-e57a78d83303", "multiverse_ids": [249677], "mtgo_id": 45534, "mtgo_foil_id": 45535, "tcgplayer_id": 60024, "cardmarket_id": 257124, "name": "Primal Huntbeast", "lang": "en", "released_at": "2012-07-13", "uri": "https://api.scryfall.com/cards/eb77f6a8-a9d6-4fdd-996e-70877199ebab", "scryfall_uri": "https://scryfall.com/card/m13/182/primal-huntbeast?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/e/b/eb77f6a8-a9d6-4fdd-996e-70877199ebab.jpg?1562561489", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/b/eb77f6a8-a9d6-4fdd-996e-70877199ebab.jpg?1562561489", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/e/b/eb77f6a8-a9d6-4fdd-996e-70877199ebab.jpg?1562561489", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/e/b/eb77f6a8-a9d6-4fdd-996e-70877199ebab.png?1562561489", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/b/eb77f6a8-a9d6-4fdd-996e-70877199ebab.jpg?1562561489", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/e/b/eb77f6a8-a9d6-4fdd-996e-70877199ebab.jpg?1562561489"}, "mana_cost": "{3}{G}", "cmc": 4.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Hexproof (This creature can't be the target of spells or abilities your opponents control.)", "power": "3", "toughness": "3", "colors": ["G"], "color_identity": ["G"], "keywords": ["Hexproof"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "f9b0c6f4-8a4f-4f36-ad3c-e1e16fb8535d", "set": "m13", "set_name": "Magic 2013", "set_type": "core", "set_uri": "https://api.scryfall.com/sets/f9b0c6f4-8a4f-4f36-ad3c-e1e16fb8535d", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Am13&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/m13?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/eb77f6a8-a9d6-4fdd-996e-70877199ebab/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A44350127-f6b6-458f-8f2f-e57a78d83303&unique=prints", "collector_number": "182", "digital": false, "rarity": "common", "flavor_text": "\"To the unskilled, it appears as blurred patches of distorted light. Few have seen its true form.\"\n\u2014Garruk Wildspeaker", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Chris Rahn", "artist_ids": ["7742047e-0f80-4c0f-a530-d07460165e86"], "illustration_id": "2c1a8335-44c6-4cbb-bff6-b9a67918cfb2", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 19227, "penny_rank": 8048, "prices": {"usd": "0.07", "usd_foil": "0.31", "usd_etched": null, "eur": "0.15", "eur_foil": "0.49", "tix": "0.04"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=249677", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Primal+Huntbeast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Primal+Huntbeast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Primal+Huntbeast"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/60024?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Primal+Huntbeast&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/45534?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "e6cb3e72-bb64-4b1e-a54b-1fe4fb4ad4c9", "oracle_id": "28a1e053-eb14-4fbf-afd1-bfb6117a839a", "multiverse_ids": [42437], "mtgo_id": 18539, "mtgo_foil_id": 18540, "tcgplayer_id": 10737, "cardmarket_id": 2030, "name": "Primoc Escapee", "lang": "en", "released_at": "2003-02-03", "uri": "https://api.scryfall.com/cards/e6cb3e72-bb64-4b1e-a54b-1fe4fb4ad4c9", "scryfall_uri": "https://scryfall.com/card/lgn/49/primoc-escapee?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/e/6/e6cb3e72-bb64-4b1e-a54b-1fe4fb4ad4c9.jpg?1562941357", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/6/e6cb3e72-bb64-4b1e-a54b-1fe4fb4ad4c9.jpg?1562941357", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/e/6/e6cb3e72-bb64-4b1e-a54b-1fe4fb4ad4c9.jpg?1562941357", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/e/6/e6cb3e72-bb64-4b1e-a54b-1fe4fb4ad4c9.png?1562941357", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/6/e6cb3e72-bb64-4b1e-a54b-1fe4fb4ad4c9.jpg?1562941357", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/e/6/e6cb3e72-bb64-4b1e-a54b-1fe4fb4ad4c9.jpg?1562941357"}, "mana_cost": "{6}{U}", "cmc": 7.0, "type_line": "Creature \u2014 Bird Beast", "oracle_text": "Flying\nCycling {2} ({2}, Discard this card: Draw a card.)", "power": "4", "toughness": "4", "colors": ["U"], "color_identity": ["U"], "keywords": ["Flying", "Cycling"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "restricted", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "c2d60a18-1a81-4784-8e0c-e1de2f43c5cf", "set": "lgn", "set_name": "Legions", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/c2d60a18-1a81-4784-8e0c-e1de2f43c5cf", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Algn&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/lgn?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/e6cb3e72-bb64-4b1e-a54b-1fe4fb4ad4c9/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A28a1e053-eb14-4fbf-afd1-bfb6117a839a&unique=prints", "collector_number": "49", "digital": false, "rarity": "uncommon", "flavor_text": "Though a completely artificial species, primocs are a natural fit for the skies of Otaria.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Tony Szczudlo", "artist_ids": ["1952c90b-a5a7-4328-9f7c-e11064f59daf"], "illustration_id": "6486760c-8625-42b4-80ae-5a9467a693c8", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 14666, "penny_rank": 9503, "prices": {"usd": "0.22", "usd_foil": "0.96", "usd_etched": null, "eur": "0.14", "eur_foil": "0.60", "tix": "0.06"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=42437", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Primoc+Escapee&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Primoc+Escapee&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Primoc+Escapee"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/10737?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Primoc+Escapee&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/18539?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "3d978332-95bf-4f86-9e67-06f10983c267", "oracle_id": "10180e2f-90c5-4d41-ba44-16b14948f923", "multiverse_ids": [107598], "mtgo_id": 24305, "mtgo_foil_id": 24306, "tcgplayer_id": 13919, "cardmarket_id": 13055, "name": "Protean Hulk", "lang": "en", "released_at": "2006-05-05", "uri": "https://api.scryfall.com/cards/3d978332-95bf-4f86-9e67-06f10983c267", "scryfall_uri": "https://scryfall.com/card/dis/90/protean-hulk?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/3/d/3d978332-95bf-4f86-9e67-06f10983c267.jpg?1593273433", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/d/3d978332-95bf-4f86-9e67-06f10983c267.jpg?1593273433", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/3/d/3d978332-95bf-4f86-9e67-06f10983c267.jpg?1593273433", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/3/d/3d978332-95bf-4f86-9e67-06f10983c267.png?1593273433", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/d/3d978332-95bf-4f86-9e67-06f10983c267.jpg?1593273433", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/3/d/3d978332-95bf-4f86-9e67-06f10983c267.jpg?1593273433"}, "mana_cost": "{5}{G}{G}", "cmc": 7.0, "type_line": "Creature \u2014 Beast", "oracle_text": "When Protean Hulk dies, search your library for any number of creature cards with total mana value 6 or less, put them onto the battlefield, then shuffle.", "power": "6", "toughness": "6", "colors": ["G"], "color_identity": ["G"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "banned", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "fdebeda1-b95f-4343-8a94-d125821e6b5c", "set": "dis", "set_name": "Dissension", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/fdebeda1-b95f-4343-8a94-d125821e6b5c", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Adis&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/dis?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/3d978332-95bf-4f86-9e67-06f10983c267/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A10180e2f-90c5-4d41-ba44-16b14948f923&unique=prints", "collector_number": "90", "digital": false, "rarity": "rare", "flavor_text": "\"Meat *and* eggs. We eat!\"\n\u2014Borborygmos", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Matt Cavotta", "artist_ids": ["2e6a0611-9411-4ba4-98e3-c0e18cbf9f83"], "illustration_id": "b95ab46e-15c6-4d34-a1fe-959fb52c502e", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 1588, "penny_rank": 3410, "prices": {"usd": "7.03", "usd_foil": "55.45", "usd_etched": null, "eur": "5.51", "eur_foil": "49.99", "tix": "0.01"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=107598", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Protean+Hulk&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Protean+Hulk&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Protean+Hulk"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/13919?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Protean+Hulk&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/24305?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "88269739-8a38-4f75-a53e-4b4ce70f2aef", "oracle_id": "10180e2f-90c5-4d41-ba44-16b14948f923", "multiverse_ids": [], "tcgplayer_id": 251793, "tcgplayer_etched_id": 251794, "name": "Protean Hulk", "lang": "en", "released_at": "2021-01-28", "uri": "https://api.scryfall.com/cards/88269739-8a38-4f75-a53e-4b4ce70f2aef", "scryfall_uri": "https://scryfall.com/card/sld/319/protean-hulk?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/8/8/88269739-8a38-4f75-a53e-4b4ce70f2aef.jpg?1645561229", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/8/88269739-8a38-4f75-a53e-4b4ce70f2aef.jpg?1645561229", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/8/8/88269739-8a38-4f75-a53e-4b4ce70f2aef.jpg?1645561229", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/8/8/88269739-8a38-4f75-a53e-4b4ce70f2aef.png?1645561229", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/8/88269739-8a38-4f75-a53e-4b4ce70f2aef.jpg?1645561229", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/8/8/88269739-8a38-4f75-a53e-4b4ce70f2aef.jpg?1645561229"}, "mana_cost": "{5}{G}{G}", "cmc": 7.0, "type_line": "Creature \u2014 Beast", "oracle_text": "When Protean Hulk dies, search your library for any number of creature cards with total mana value 6 or less, put them onto the battlefield, then shuffle.", "power": "6", "toughness": "6", "colors": ["G"], "color_identity": ["G"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "banned", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil", "etched"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "4d92a8a7-ccb0-437d-abdc-9d70fc5ed672", "set": "sld", "set_name": "Secret Lair Drop", "set_type": "box", "set_uri": "https://api.scryfall.com/sets/4d92a8a7-ccb0-437d-abdc-9d70fc5ed672", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Asld&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/sld?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/88269739-8a38-4f75-a53e-4b4ce70f2aef/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A10180e2f-90c5-4d41-ba44-16b14948f923&unique=prints", "collector_number": "319", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Timba Smits", "artist_ids": ["8c1d0cd9-b10e-4cea-b984-5ea61f53d336"], "illustration_id": "e681d037-6de8-42c4-adc7-e282c21e80c5", "border_color": "borderless", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "edhrec_rank": 1588, "penny_rank": 3410, "prices": {"usd": "8.93", "usd_foil": null, "usd_etched": "8.83", "eur": null, "eur_foil": null, "tix": null}, "related_uris": {"tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Protean+Hulk&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Protean+Hulk&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Protean+Hulk"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/251793?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Protean+Hulk&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Protean+Hulk&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "b9d1c11a-a32c-449c-95c6-450dce6c26d2", "oracle_id": "ed26f6bf-fcd6-4cf4-9b65-a492cb79f2df", "multiverse_ids": [491659], "mtgo_id": 83011, "arena_id": 73220, "tcgplayer_id": 221893, "cardmarket_id": 495309, "name": "Prowling Felidar", "lang": "en", "released_at": "2020-09-25", "uri": "https://api.scryfall.com/cards/b9d1c11a-a32c-449c-95c6-450dce6c26d2", "scryfall_uri": "https://scryfall.com/card/znr/34/prowling-felidar?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/b/9/b9d1c11a-a32c-449c-95c6-450dce6c26d2.jpg?1604193011", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/9/b9d1c11a-a32c-449c-95c6-450dce6c26d2.jpg?1604193011", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/b/9/b9d1c11a-a32c-449c-95c6-450dce6c26d2.jpg?1604193011", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/b/9/b9d1c11a-a32c-449c-95c6-450dce6c26d2.png?1604193011", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/9/b9d1c11a-a32c-449c-95c6-450dce6c26d2.jpg?1604193011", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/b/9/b9d1c11a-a32c-449c-95c6-450dce6c26d2.jpg?1604193011"}, "mana_cost": "{3}{W}", "cmc": 4.0, "type_line": "Creature \u2014 Cat Beast", "oracle_text": "Vigilance\nLandfall \u2014 Whenever a land enters the battlefield under your control, put a +1/+1 counter on Prowling Felidar.", "power": "2", "toughness": "3", "colors": ["W"], "color_identity": ["W"], "keywords": ["Vigilance", "Landfall"], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "f4e01fa7-b254-42dd-849f-69b58027a8c4", "set": "znr", "set_name": "Zendikar Rising", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/f4e01fa7-b254-42dd-849f-69b58027a8c4", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aznr&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/znr?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/b9d1c11a-a32c-449c-95c6-450dce6c26d2/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aed26f6bf-fcd6-4cf4-9b65-a492cb79f2df&unique=prints", "collector_number": "34", "digital": false, "rarity": "common", "flavor_text": "On occasion, felidars leave meaty \"gifts\" outside the tents of explorers they consider worthy.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Ilse Gort", "artist_ids": ["12070c2e-4de6-46bc-b379-8a580dfb34c5"], "illustration_id": "eb0b9a5f-a641-4099-9c6e-308d53c5e3f2", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 7885, "penny_rank": 13340, "preview": {"source": "AliasV", "source_uri": "https://twitter.com/coL_AliasV/status/1301188887323189255", "previewed_at": "2020-09-02"}, "prices": {"usd": "0.03", "usd_foil": "0.03", "usd_etched": null, "eur": "0.02", "eur_foil": "0.03", "tix": "0.01"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=491659", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Prowling+Felidar&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Prowling+Felidar&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Prowling+Felidar"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/221893?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Prowling+Felidar&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/83011?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "e8df0aed-dd2b-4f1e-8dfe-aec07462b1e1", "oracle_id": "ed26f6bf-fcd6-4cf4-9b65-a492cb79f2df", "multiverse_ids": [495190], "arena_id": 74662, "tcgplayer_id": 221894, "cardmarket_id": 495314, "name": "Prowling Felidar", "lang": "en", "released_at": "2020-09-25", "uri": "https://api.scryfall.com/cards/e8df0aed-dd2b-4f1e-8dfe-aec07462b1e1", "scryfall_uri": "https://scryfall.com/card/znr/294/prowling-felidar?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/e/8/e8df0aed-dd2b-4f1e-8dfe-aec07462b1e1.jpg?1604202426", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/8/e8df0aed-dd2b-4f1e-8dfe-aec07462b1e1.jpg?1604202426", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/e/8/e8df0aed-dd2b-4f1e-8dfe-aec07462b1e1.jpg?1604202426", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/e/8/e8df0aed-dd2b-4f1e-8dfe-aec07462b1e1.png?1604202426", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/8/e8df0aed-dd2b-4f1e-8dfe-aec07462b1e1.jpg?1604202426", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/e/8/e8df0aed-dd2b-4f1e-8dfe-aec07462b1e1.jpg?1604202426"}, "mana_cost": "{3}{W}", "cmc": 4.0, "type_line": "Creature \u2014 Cat Beast", "oracle_text": "Vigilance\nLandfall \u2014 Whenever a land enters the battlefield under your control, put a +1/+1 counter on Prowling Felidar.", "power": "2", "toughness": "3", "colors": ["W"], "color_identity": ["W"], "keywords": ["Vigilance", "Landfall"], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "f4e01fa7-b254-42dd-849f-69b58027a8c4", "set": "znr", "set_name": "Zendikar Rising", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/f4e01fa7-b254-42dd-849f-69b58027a8c4", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aznr&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/znr?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/e8df0aed-dd2b-4f1e-8dfe-aec07462b1e1/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aed26f6bf-fcd6-4cf4-9b65-a492cb79f2df&unique=prints", "collector_number": "294", "digital": false, "rarity": "common", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Tyler Smith", "artist_ids": ["c6d55ca3-c69b-41aa-9b78-1cd2fef62486"], "illustration_id": "79b5fa35-36c4-48bc-bd10-b5dbd599f139", "border_color": "black", "frame": "2015", "frame_effects": ["showcase"], "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "promo_types": ["boosterfun"], "edhrec_rank": 7885, "penny_rank": 13340, "preview": {"source": "AliasV", "source_uri": "https://twitter.com/coL_AliasV/status/1301188887323189255", "previewed_at": "2020-09-02"}, "prices": {"usd": "0.01", "usd_foil": "0.08", "usd_etched": null, "eur": "0.02", "eur_foil": "0.10", "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=495190", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Prowling+Felidar&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Prowling+Felidar&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Prowling+Felidar"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/221894?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Prowling+Felidar&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Prowling+Felidar&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "b6bf8191-3154-48d7-a49b-4d07b5e35a15", "oracle_id": "92042cad-09f5-464f-85ad-baad27e6d1eb", "multiverse_ids": [413646], "mtgo_id": 60933, "mtgo_foil_id": 60934, "tcgplayer_id": 118755, "cardmarket_id": 290395, "name": "Prowling Pangolin", "lang": "en", "released_at": "2016-06-10", "uri": "https://api.scryfall.com/cards/b6bf8191-3154-48d7-a49b-4d07b5e35a15", "scryfall_uri": "https://scryfall.com/card/ema/104/prowling-pangolin?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/b/6/b6bf8191-3154-48d7-a49b-4d07b5e35a15.jpg?1580014350", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/6/b6bf8191-3154-48d7-a49b-4d07b5e35a15.jpg?1580014350", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/b/6/b6bf8191-3154-48d7-a49b-4d07b5e35a15.jpg?1580014350", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/b/6/b6bf8191-3154-48d7-a49b-4d07b5e35a15.png?1580014350", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/6/b6bf8191-3154-48d7-a49b-4d07b5e35a15.jpg?1580014350", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/b/6/b6bf8191-3154-48d7-a49b-4d07b5e35a15.jpg?1580014350"}, "mana_cost": "{3}{B}{B}", "cmc": 5.0, "type_line": "Creature \u2014 Pangolin Beast", "oracle_text": "When Prowling Pangolin enters the battlefield, any player may sacrifice two creatures. If a player does, sacrifice Prowling Pangolin.", "power": "6", "toughness": "5", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "1f29f022-3ace-4c96-85e8-1f7b63aadf7e", "set": "ema", "set_name": "Eternal Masters", "set_type": "masters", "set_uri": "https://api.scryfall.com/sets/1f29f022-3ace-4c96-85e8-1f7b63aadf7e", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aema&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ema?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/b6bf8191-3154-48d7-a49b-4d07b5e35a15/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A92042cad-09f5-464f-85ad-baad27e6d1eb&unique=prints", "collector_number": "104", "digital": false, "rarity": "common", "flavor_text": "\"Wait, are *we* the decoys?\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Tomasz Jedruszek", "artist_ids": ["bba69285-2445-4a4b-a847-59397be972ea"], "illustration_id": "06e1fc40-6d77-4a3e-954e-2e01d35aaca2", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 20607, "penny_rank": 12755, "prices": {"usd": "0.02", "usd_foil": "0.11", "usd_etched": null, "eur": "0.08", "eur_foil": "0.05", "tix": "0.06"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=413646", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Prowling+Pangolin&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Prowling+Pangolin&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Prowling+Pangolin"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/118755?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Prowling+Pangolin&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/60933?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "0f037e99-75fb-4a2a-b4c6-448ef21b16a3", "oracle_id": "92042cad-09f5-464f-85ad-baad27e6d1eb", "multiverse_ids": [26428], "mtgo_id": 17953, "mtgo_foil_id": 17954, "tcgplayer_id": 10564, "cardmarket_id": 1794, "name": "Prowling Pangolin", "lang": "en", "released_at": "2002-10-07", "uri": "https://api.scryfall.com/cards/0f037e99-75fb-4a2a-b4c6-448ef21b16a3", "scryfall_uri": "https://scryfall.com/card/ons/163/prowling-pangolin?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/0/f/0f037e99-75fb-4a2a-b4c6-448ef21b16a3.jpg?1562898495", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/f/0f037e99-75fb-4a2a-b4c6-448ef21b16a3.jpg?1562898495", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/0/f/0f037e99-75fb-4a2a-b4c6-448ef21b16a3.jpg?1562898495", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/0/f/0f037e99-75fb-4a2a-b4c6-448ef21b16a3.png?1562898495", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/f/0f037e99-75fb-4a2a-b4c6-448ef21b16a3.jpg?1562898495", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/0/f/0f037e99-75fb-4a2a-b4c6-448ef21b16a3.jpg?1562898495"}, "mana_cost": "{3}{B}{B}", "cmc": 5.0, "type_line": "Creature \u2014 Pangolin Beast", "oracle_text": "When Prowling Pangolin enters the battlefield, any player may sacrifice two creatures. If a player does, sacrifice Prowling Pangolin.", "power": "6", "toughness": "5", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "914a6c6d-cb3b-45e8-a2db-9978a2339faf", "set": "ons", "set_name": "Onslaught", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/914a6c6d-cb3b-45e8-a2db-9978a2339faf", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aons&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ons?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/0f037e99-75fb-4a2a-b4c6-448ef21b16a3/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A92042cad-09f5-464f-85ad-baad27e6d1eb&unique=prints", "collector_number": "163", "digital": false, "rarity": "uncommon", "flavor_text": "It's always hungry, yet easily sated.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Heather Hudson", "artist_ids": ["4441fe52-9e41-40c1-9b74-8510426279ab"], "illustration_id": "fa2c2bff-8e87-4bb9-a6da-aaf54221a145", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 20607, "penny_rank": 12755, "prices": {"usd": "0.13", "usd_foil": "0.59", "usd_etched": null, "eur": "0.02", "eur_foil": "0.20", "tix": "0.04"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=26428", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Prowling+Pangolin&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Prowling+Pangolin&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Prowling+Pangolin"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/10564?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Prowling+Pangolin&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/17953?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "9127942b-d73d-42a9-9f97-6a39fa798a8b", "oracle_id": "31b43ad8-a20b-4948-bfd2-56d7fe1a78f0", "multiverse_ids": [45861], "mtgo_id": 18786, "mtgo_foil_id": 18787, "tcgplayer_id": 10897, "cardmarket_id": 1064, "name": "Putrid Raptor", "lang": "en", "released_at": "2003-05-26", "uri": "https://api.scryfall.com/cards/9127942b-d73d-42a9-9f97-6a39fa798a8b", "scryfall_uri": "https://scryfall.com/card/scg/71/putrid-raptor?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/9/1/9127942b-d73d-42a9-9f97-6a39fa798a8b.jpg?1562532123", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/1/9127942b-d73d-42a9-9f97-6a39fa798a8b.jpg?1562532123", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/9/1/9127942b-d73d-42a9-9f97-6a39fa798a8b.jpg?1562532123", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/9/1/9127942b-d73d-42a9-9f97-6a39fa798a8b.png?1562532123", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/1/9127942b-d73d-42a9-9f97-6a39fa798a8b.jpg?1562532123", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/9/1/9127942b-d73d-42a9-9f97-6a39fa798a8b.jpg?1562532123"}, "mana_cost": "{4}{B}{B}", "cmc": 6.0, "type_line": "Creature \u2014 Zombie Dinosaur Beast", "oracle_text": "Morph\u2014Discard a Zombie card. (You may cast this card face down as a 2/2 creature for {3}. Turn it face up any time for its morph cost.)", "power": "4", "toughness": "4", "colors": ["B"], "color_identity": ["B"], "keywords": ["Morph"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "restricted", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "5133c3a1-1412-4ce6-a1f0-73b695966ded", "set": "scg", "set_name": "Scourge", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/5133c3a1-1412-4ce6-a1f0-73b695966ded", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ascg&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/scg?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/9127942b-d73d-42a9-9f97-6a39fa798a8b/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A31b43ad8-a20b-4948-bfd2-56d7fe1a78f0&unique=prints", "collector_number": "71", "digital": false, "rarity": "uncommon", "flavor_text": "It eagerly gobbles up bits of its own rotting flesh as they fall to the swampy ground.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Pete Venters", "artist_ids": ["d54c4a1a-c0c5-4834-84db-125d341f3ad8"], "illustration_id": "008ac5a2-1079-4d98-96fe-acd2bc5293d8", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 22449, "penny_rank": 9895, "prices": {"usd": "0.12", "usd_foil": "0.53", "usd_etched": null, "eur": "0.11", "eur_foil": "1.00", "tix": "0.05"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=45861", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Putrid+Raptor&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Putrid+Raptor&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Putrid+Raptor"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/10897?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Putrid+Raptor&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/18786?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "335c3aa3-af89-44ce-955a-69e12d83175f", "oracle_id": "9250eb9e-690f-4563-8132-d737f6d22883", "multiverse_ids": [136153], "mtgo_id": 26588, "mtgo_foil_id": 26589, "tcgplayer_id": 14962, "cardmarket_id": 15142, "name": "Quagnoth", "lang": "en", "released_at": "2007-05-04", "uri": "https://api.scryfall.com/cards/335c3aa3-af89-44ce-955a-69e12d83175f", "scryfall_uri": "https://scryfall.com/card/fut/150/quagnoth?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/3/3/335c3aa3-af89-44ce-955a-69e12d83175f.jpg?1562905350", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/3/335c3aa3-af89-44ce-955a-69e12d83175f.jpg?1562905350", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/3/3/335c3aa3-af89-44ce-955a-69e12d83175f.jpg?1562905350", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/3/3/335c3aa3-af89-44ce-955a-69e12d83175f.png?1562905350", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/3/335c3aa3-af89-44ce-955a-69e12d83175f.jpg?1562905350", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/3/3/335c3aa3-af89-44ce-955a-69e12d83175f.jpg?1562905350"}, "mana_cost": "{5}{G}", "cmc": 6.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Split second (As long as this spell is on the stack, players can't cast spells or activate abilities that aren't mana abilities.)\nShroud (This creature can't be the target of spells or abilities.)\nWhen a spell or ability an opponent controls causes you to discard Quagnoth, return it to your hand.", "power": "4", "toughness": "5", "colors": ["G"], "color_identity": ["G"], "keywords": ["Shroud", "Split second"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "bf951ddb-4445-4923-87cb-3fe4ac3c6b9a", "set": "fut", "set_name": "Future Sight", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/bf951ddb-4445-4923-87cb-3fe4ac3c6b9a", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Afut&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/fut?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/335c3aa3-af89-44ce-955a-69e12d83175f/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A9250eb9e-690f-4563-8132-d737f6d22883&unique=prints", "collector_number": "150", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Thomas M. Baxa", "artist_ids": ["ff346569-557d-4043-ae44-97c2c7cabd7d"], "illustration_id": "6eb8ba6e-9eda-471d-a736-a5aaeff226ed", "border_color": "black", "frame": "future", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 21607, "penny_rank": 11244, "prices": {"usd": "0.21", "usd_foil": "1.43", "usd_etched": null, "eur": "0.02", "eur_foil": "0.90", "tix": "0.01"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=136153", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Quagnoth&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Quagnoth&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Quagnoth"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/14962?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Quagnoth&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/26588?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "c8e4c609-19c9-433b-a852-7999e375ee4f", "oracle_id": "178a79e2-64fd-4777-95fe-98b7834a642a", "multiverse_ids": [479721], "mtgo_id": 80411, "arena_id": 71268, "tcgplayer_id": 212277, "cardmarket_id": 453013, "name": "Quartzwood Crasher", "lang": "en", "released_at": "2020-04-24", "uri": "https://api.scryfall.com/cards/c8e4c609-19c9-433b-a852-7999e375ee4f", "scryfall_uri": "https://scryfall.com/card/iko/201/quartzwood-crasher?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/c/8/c8e4c609-19c9-433b-a852-7999e375ee4f.jpg?1591605359", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/8/c8e4c609-19c9-433b-a852-7999e375ee4f.jpg?1591605359", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/c/8/c8e4c609-19c9-433b-a852-7999e375ee4f.jpg?1591605359", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/c/8/c8e4c609-19c9-433b-a852-7999e375ee4f.png?1591605359", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/8/c8e4c609-19c9-433b-a852-7999e375ee4f.jpg?1591605359", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/c/8/c8e4c609-19c9-433b-a852-7999e375ee4f.jpg?1591605359"}, "mana_cost": "{2}{R}{R}{G}", "cmc": 5.0, "type_line": "Creature \u2014 Dinosaur Beast", "oracle_text": "Trample\nWhenever one or more creatures you control with trample deal combat damage to a player, create an X/X green Dinosaur Beast creature token with trample, where X is the amount of damage those creatures dealt to that player.", "power": "6", "toughness": "6", "colors": ["G", "R"], "color_identity": ["G", "R"], "keywords": ["Trample"], "all_parts": [{"object": "related_card", "id": "c8e4c609-19c9-433b-a852-7999e375ee4f", "component": "combo_piece", "name": "Quartzwood Crasher", "type_line": "Creature \u2014 Dinosaur Beast", "uri": "https://api.scryfall.com/cards/c8e4c609-19c9-433b-a852-7999e375ee4f"}, {"object": "related_card", "id": "9d447365-3aca-4996-9098-efcbe6f28f57", "component": "token", "name": "Dinosaur Beast", "type_line": "Token Creature \u2014 Dinosaur Beast", "uri": "https://api.scryfall.com/cards/9d447365-3aca-4996-9098-efcbe6f28f57"}], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "19feda43-15ab-427e-a0e4-148a4bf2b03a", "set": "iko", "set_name": "Ikoria: Lair of Behemoths", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/19feda43-15ab-427e-a0e4-148a4bf2b03a", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aiko&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/iko?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/c8e4c609-19c9-433b-a852-7999e375ee4f/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A178a79e2-64fd-4777-95fe-98b7834a642a&unique=prints", "collector_number": "201", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Antonio Jos\u00e9 Manzanedo", "artist_ids": ["74986d28-0001-4a78-827c-e490b325d0e3"], "illustration_id": "025977b4-9c58-4896-859b-46379a12038b", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 1602, "penny_rank": 5883, "preview": {"source": "BRKsEDU", "source_uri": "https://youtu.be/Xb7IKgbELsM", "previewed_at": "2020-04-03"}, "prices": {"usd": "1.18", "usd_foil": "2.21", "usd_etched": null, "eur": "0.54", "eur_foil": "1.33", "tix": "0.01"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=479721", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Quartzwood+Crasher&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Quartzwood+Crasher&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Quartzwood+Crasher"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/212277?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Quartzwood+Crasher&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/80411?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "645bfe2d-845b-4cf3-88b6-b2b62b8531e4", "oracle_id": "799f31fc-3b6f-419a-8e70-b41c8e97f000", "multiverse_ids": [47799], "mtgo_id": 20409, "mtgo_foil_id": 20410, "tcgplayer_id": 11731, "cardmarket_id": 447, "name": "Quicksilver Behemoth", "lang": "en", "released_at": "2004-02-06", "uri": "https://api.scryfall.com/cards/645bfe2d-845b-4cf3-88b6-b2b62b8531e4", "scryfall_uri": "https://scryfall.com/card/dst/30/quicksilver-behemoth?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/6/4/645bfe2d-845b-4cf3-88b6-b2b62b8531e4.jpg?1562637248", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/4/645bfe2d-845b-4cf3-88b6-b2b62b8531e4.jpg?1562637248", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/6/4/645bfe2d-845b-4cf3-88b6-b2b62b8531e4.jpg?1562637248", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/6/4/645bfe2d-845b-4cf3-88b6-b2b62b8531e4.png?1562637248", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/4/645bfe2d-845b-4cf3-88b6-b2b62b8531e4.jpg?1562637248", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/6/4/645bfe2d-845b-4cf3-88b6-b2b62b8531e4.jpg?1562637248"}, "mana_cost": "{6}{U}", "cmc": 7.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Affinity for artifacts (This spell costs {1} less to cast for each artifact you control.)\nWhen Quicksilver Behemoth attacks or blocks, return it to its owner's hand at end of combat. (Return it only if it's on the battlefield.)", "power": "4", "toughness": "5", "colors": ["U"], "color_identity": ["U"], "keywords": ["Affinity"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "e29cb2dd-1345-4032-abfe-e52e8c8ce074", "set": "dst", "set_name": "Darksteel", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/e29cb2dd-1345-4032-abfe-e52e8c8ce074", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Adst&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/dst?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/645bfe2d-845b-4cf3-88b6-b2b62b8531e4/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A799f31fc-3b6f-419a-8e70-b41c8e97f000&unique=prints", "collector_number": "30", "digital": false, "rarity": "common", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Anthony S. Waters", "artist_ids": ["f009de11-3c8d-4663-b996-ca0c3e997fad"], "illustration_id": "9a61723a-f89b-4af4-b389-d53fae16c431", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 18875, "penny_rank": 11498, "prices": {"usd": "0.08", "usd_foil": "0.22", "usd_etched": null, "eur": "0.02", "eur_foil": "0.08", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=47799", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Quicksilver+Behemoth&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Quicksilver+Behemoth&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Quicksilver+Behemoth"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/11731?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Quicksilver+Behemoth&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/20409?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "14cb4054-d5d6-4015-ae86-6f99280afe0a", "oracle_id": "b8c748ed-7ba2-4f92-a9de-5080382c2fc2", "multiverse_ids": [152086], "mtgo_id": 30048, "mtgo_foil_id": 30049, "tcgplayer_id": 27182, "cardmarket_id": 19588, "name": "Quillspike", "lang": "en", "released_at": "2008-07-25", "uri": "https://api.scryfall.com/cards/14cb4054-d5d6-4015-ae86-6f99280afe0a", "scryfall_uri": "https://scryfall.com/card/eve/126/quillspike?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/1/4/14cb4054-d5d6-4015-ae86-6f99280afe0a.jpg?1562899380", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/4/14cb4054-d5d6-4015-ae86-6f99280afe0a.jpg?1562899380", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/1/4/14cb4054-d5d6-4015-ae86-6f99280afe0a.jpg?1562899380", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/1/4/14cb4054-d5d6-4015-ae86-6f99280afe0a.png?1562899380", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/4/14cb4054-d5d6-4015-ae86-6f99280afe0a.jpg?1562899380", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/1/4/14cb4054-d5d6-4015-ae86-6f99280afe0a.jpg?1562899380"}, "mana_cost": "{2}{B/G}", "cmc": 3.0, "type_line": "Creature \u2014 Beast", "oracle_text": "{B/G}, Remove a -1/-1 counter from a creature you control: Quillspike gets +3/+3 until end of turn.", "power": "1", "toughness": "1", "colors": ["B", "G"], "color_identity": ["B", "G"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "restricted", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "86b4dfef-f2d1-49d6-825d-7df6bda44357", "set": "eve", "set_name": "Eventide", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/86b4dfef-f2d1-49d6-825d-7df6bda44357", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aeve&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/eve?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/14cb4054-d5d6-4015-ae86-6f99280afe0a/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ab8c748ed-7ba2-4f92-a9de-5080382c2fc2&unique=prints", "collector_number": "126", "digital": false, "rarity": "uncommon", "flavor_text": "While it's true that a quillspike does heal the sick, it's just because it finds them tastier that way.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Carl Critchlow", "artist_ids": ["17948f16-611a-44b8-8d10-9895a0bdfff1"], "illustration_id": "dbd70f8e-64e2-48e1-bd03-21678ac906d4", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 8241, "penny_rank": 1597, "prices": {"usd": "1.08", "usd_foil": "6.64", "usd_etched": null, "eur": "1.05", "eur_foil": "0.50", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=152086", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Quillspike&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Quillspike&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Quillspike"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/27182?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Quillspike&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/30048?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "54102e68-dded-440c-b9b1-28771c8033d4", "oracle_id": "cec11318-4578-4c66-a9be-1704df0c296c", "multiverse_ids": [47800], "mtgo_id": 20632, "mtgo_foil_id": 20633, "tcgplayer_id": 11901, "cardmarket_id": 611, "name": "Qumulox", "lang": "en", "released_at": "2004-06-04", "uri": "https://api.scryfall.com/cards/54102e68-dded-440c-b9b1-28771c8033d4", "scryfall_uri": "https://scryfall.com/card/5dn/35/qumulox?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/5/4/54102e68-dded-440c-b9b1-28771c8033d4.jpg?1562877043", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/4/54102e68-dded-440c-b9b1-28771c8033d4.jpg?1562877043", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/5/4/54102e68-dded-440c-b9b1-28771c8033d4.jpg?1562877043", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/5/4/54102e68-dded-440c-b9b1-28771c8033d4.png?1562877043", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/4/54102e68-dded-440c-b9b1-28771c8033d4.jpg?1562877043", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/5/4/54102e68-dded-440c-b9b1-28771c8033d4.jpg?1562877043"}, "mana_cost": "{6}{U}{U}", "cmc": 8.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Affinity for artifacts (This spell costs {1} less to cast for each artifact you control.)\nFlying", "power": "5", "toughness": "4", "colors": ["U"], "color_identity": ["U"], "keywords": ["Flying", "Affinity"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "restricted", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "e4bc1b87-5476-463c-8640-4c414ecf1763", "set": "5dn", "set_name": "Fifth Dawn", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/e4bc1b87-5476-463c-8640-4c414ecf1763", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3A5dn&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/5dn?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/54102e68-dded-440c-b9b1-28771c8033d4/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Acec11318-4578-4c66-a9be-1704df0c296c&unique=prints", "collector_number": "35", "digital": false, "rarity": "uncommon", "flavor_text": "Even the clouds bend themselves to Memnarch's will, eager to swallow those who oppose him.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Carl Critchlow", "artist_ids": ["17948f16-611a-44b8-8d10-9895a0bdfff1"], "illustration_id": "448ebe31-da02-4a9f-ab9e-8ac2d89d9941", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 17078, "penny_rank": 10903, "prices": {"usd": "0.10", "usd_foil": "0.34", "usd_etched": null, "eur": "0.06", "eur_foil": "0.74", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=47800", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Qumulox&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Qumulox&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Qumulox"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/11901?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Qumulox&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/20632?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "ae38aa2d-6c0e-409a-bfc7-ed4281457670", "oracle_id": "c05c2eae-1a9c-4ce7-9c76-22e40781c1a9", "multiverse_ids": [461068], "mtgo_id": 71888, "arena_id": 69592, "tcgplayer_id": 188395, "cardmarket_id": 372176, "name": "Raging Kronch", "lang": "en", "released_at": "2019-05-03", "uri": "https://api.scryfall.com/cards/ae38aa2d-6c0e-409a-bfc7-ed4281457670", "scryfall_uri": "https://scryfall.com/card/war/141/raging-kronch?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/a/e/ae38aa2d-6c0e-409a-bfc7-ed4281457670.jpg?1557576793", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/e/ae38aa2d-6c0e-409a-bfc7-ed4281457670.jpg?1557576793", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/a/e/ae38aa2d-6c0e-409a-bfc7-ed4281457670.jpg?1557576793", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/a/e/ae38aa2d-6c0e-409a-bfc7-ed4281457670.png?1557576793", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/e/ae38aa2d-6c0e-409a-bfc7-ed4281457670.jpg?1557576793", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/a/e/ae38aa2d-6c0e-409a-bfc7-ed4281457670.jpg?1557576793"}, "mana_cost": "{2}{R}", "cmc": 3.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Raging Kronch can't attack alone.", "power": "4", "toughness": "3", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "ee044f0b-e101-4ead-8d0e-aa510aad4277", "set": "war", "set_name": "War of the Spark", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/ee044f0b-e101-4ead-8d0e-aa510aad4277", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Awar&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/war?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/ae38aa2d-6c0e-409a-bfc7-ed4281457670/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ac05c2eae-1a9c-4ce7-9c76-22e40781c1a9&unique=prints", "collector_number": "141", "digital": false, "rarity": "common", "flavor_text": "\"Seeing so much easy prey makes her crazy. See how she snorts and drools?\"\n\u2014Dhuuz, kronch wrangler", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Steve Prescott", "artist_ids": ["a1139fb8-41f5-4a9e-9a74-f662e1a23b35"], "illustration_id": "2b98e8bc-7af9-41e6-8041-a642a0005395", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 21545, "penny_rank": 8743, "preview": {"source": "Sean Plott (Day9TV)", "source_uri": "https://twitter.com/day9tv/status/1116015482757369856", "previewed_at": "2019-04-10"}, "prices": {"usd": "0.01", "usd_foil": "0.14", "usd_etched": null, "eur": "0.09", "eur_foil": "0.13", "tix": "0.05"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=461068", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Raging+Kronch&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Raging+Kronch&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Raging+Kronch"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/188395?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Raging+Kronch&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/71888?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "d1995ab8-7382-4c2a-b8c7-8b9272cab4fb", "oracle_id": "8dbb4a8f-78e9-4ceb-824d-bb67bdf939db", "multiverse_ids": [175253], "mtgo_id": 31237, "mtgo_foil_id": 31238, "tcgplayer_id": 27766, "cardmarket_id": 19933, "name": "Rakeclaw Gargantuan", "lang": "en", "released_at": "2008-10-03", "uri": "https://api.scryfall.com/cards/d1995ab8-7382-4c2a-b8c7-8b9272cab4fb", "scryfall_uri": "https://scryfall.com/card/ala/186/rakeclaw-gargantuan?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/d/1/d1995ab8-7382-4c2a-b8c7-8b9272cab4fb.jpg?1562709274", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/1/d1995ab8-7382-4c2a-b8c7-8b9272cab4fb.jpg?1562709274", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/d/1/d1995ab8-7382-4c2a-b8c7-8b9272cab4fb.jpg?1562709274", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/d/1/d1995ab8-7382-4c2a-b8c7-8b9272cab4fb.png?1562709274", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/1/d1995ab8-7382-4c2a-b8c7-8b9272cab4fb.jpg?1562709274", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/d/1/d1995ab8-7382-4c2a-b8c7-8b9272cab4fb.jpg?1562709274"}, "mana_cost": "{2}{R}{G}{W}", "cmc": 5.0, "type_line": "Creature \u2014 Beast", "oracle_text": "{1}: Target creature with power 5 or greater gains first strike until end of turn.", "power": "5", "toughness": "3", "colors": ["G", "R", "W"], "color_identity": ["G", "R", "W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "d667aaec-09b7-4406-b6fa-60795132dc11", "set": "ala", "set_name": "Shards of Alara", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/d667aaec-09b7-4406-b6fa-60795132dc11", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aala&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ala?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/d1995ab8-7382-4c2a-b8c7-8b9272cab4fb/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A8dbb4a8f-78e9-4ceb-824d-bb67bdf939db&unique=prints", "collector_number": "186", "digital": false, "rarity": "common", "flavor_text": "Naya teems with gargantuans, titanic monsters to whom both nature and civilization defer.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Jesper Ejsing", "artist_ids": ["a5f8354a-8b51-4e59-96b2-0e3aeae4fa1d"], "illustration_id": "38e426df-eddd-40bd-b8dd-e22a72e8d8c9", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 14776, "prices": {"usd": "0.09", "usd_foil": "0.18", "usd_etched": null, "eur": "0.27", "eur_foil": "0.08", "tix": "0.04"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=175253", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Rakeclaw+Gargantuan&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Rakeclaw+Gargantuan&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Rakeclaw+Gargantuan"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/27766?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Rakeclaw+Gargantuan&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/31237?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "66ae703d-b133-4749-9d38-216abe6c6647", "oracle_id": "2d3e6549-6cc6-434f-a189-ba3b55e64c34", "multiverse_ids": [192222], "mtgo_id": 34674, "mtgo_foil_id": 34675, "tcgplayer_id": 33406, "cardmarket_id": 21767, "name": "Rampaging Baloths", "lang": "en", "released_at": "2009-10-02", "uri": "https://api.scryfall.com/cards/66ae703d-b133-4749-9d38-216abe6c6647", "scryfall_uri": "https://scryfall.com/card/zen/178/rampaging-baloths?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/6/6/66ae703d-b133-4749-9d38-216abe6c6647.jpg?1562612913", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/6/66ae703d-b133-4749-9d38-216abe6c6647.jpg?1562612913", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/6/6/66ae703d-b133-4749-9d38-216abe6c6647.jpg?1562612913", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/6/6/66ae703d-b133-4749-9d38-216abe6c6647.png?1562612913", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/6/66ae703d-b133-4749-9d38-216abe6c6647.jpg?1562612913", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/6/6/66ae703d-b133-4749-9d38-216abe6c6647.jpg?1562612913"}, "mana_cost": "{4}{G}{G}", "cmc": 6.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Trample\nLandfall \u2014 Whenever a land enters the battlefield under your control, you may create a 4/4 green Beast creature token.", "power": "6", "toughness": "6", "colors": ["G"], "color_identity": ["G"], "keywords": ["Trample", "Landfall"], "all_parts": [{"object": "related_card", "id": "66ae703d-b133-4749-9d38-216abe6c6647", "component": "combo_piece", "name": "Rampaging Baloths", "type_line": "Creature \u2014 Beast", "uri": "https://api.scryfall.com/cards/66ae703d-b133-4749-9d38-216abe6c6647"}, {"object": "related_card", "id": "76b5e455-053d-4a86-93b2-2436b554b638", "component": "token", "name": "Beast", "type_line": "Token Creature \u2014 Beast", "uri": "https://api.scryfall.com/cards/76b5e455-053d-4a86-93b2-2436b554b638"}], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "eb16a2bd-a218-4e4e-8339-4aa1afc0c8d2", "set": "zen", "set_name": "Zendikar", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/eb16a2bd-a218-4e4e-8339-4aa1afc0c8d2", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Azen&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/zen?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/66ae703d-b133-4749-9d38-216abe6c6647/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A2d3e6549-6cc6-434f-a189-ba3b55e64c34&unique=prints", "collector_number": "178", "digital": false, "rarity": "mythic", "flavor_text": "\"When the land is angry, so are they.\"\n\u2014Nissa Revane", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Steve Prescott", "artist_ids": ["a1139fb8-41f5-4a9e-9a74-f662e1a23b35"], "illustration_id": "44a1164a-9999-4d90-b093-0cee6d6d9e91", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 271, "prices": {"usd": "0.99", "usd_foil": "5.32", "usd_etched": null, "eur": "1.35", "eur_foil": "2.49", "tix": "0.17"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=192222", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Rampaging+Baloths&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Rampaging+Baloths&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Rampaging+Baloths"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/33406?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Rampaging+Baloths&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/34674?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "aac9448c-c802-476a-87ef-e1d745fd862a", "oracle_id": "2d3e6549-6cc6-434f-a189-ba3b55e64c34", "multiverse_ids": [], "tcgplayer_id": 38395, "cardmarket_id": 21796, "name": "Rampaging Baloths", "lang": "en", "released_at": "2009-10-02", "uri": "https://api.scryfall.com/cards/aac9448c-c802-476a-87ef-e1d745fd862a", "scryfall_uri": "https://scryfall.com/card/pzen/178%E2%98%85/rampaging-baloths?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/a/a/aac9448c-c802-476a-87ef-e1d745fd862a.jpg?1605370770", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/a/aac9448c-c802-476a-87ef-e1d745fd862a.jpg?1605370770", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/a/a/aac9448c-c802-476a-87ef-e1d745fd862a.jpg?1605370770", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/a/a/aac9448c-c802-476a-87ef-e1d745fd862a.png?1605370770", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/a/aac9448c-c802-476a-87ef-e1d745fd862a.jpg?1605370770", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/a/a/aac9448c-c802-476a-87ef-e1d745fd862a.jpg?1605370770"}, "mana_cost": "{4}{G}{G}", "cmc": 6.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Trample\nLandfall \u2014 Whenever a land enters the battlefield under your control, you may create a 4/4 green Beast creature token.", "power": "6", "toughness": "6", "colors": ["G"], "color_identity": ["G"], "keywords": ["Trample", "Landfall"], "all_parts": [{"object": "related_card", "id": "66ae703d-b133-4749-9d38-216abe6c6647", "component": "combo_piece", "name": "Rampaging Baloths", "type_line": "Creature \u2014 Beast", "uri": "https://api.scryfall.com/cards/66ae703d-b133-4749-9d38-216abe6c6647"}, {"object": "related_card", "id": "76b5e455-053d-4a86-93b2-2436b554b638", "component": "token", "name": "Beast", "type_line": "Token Creature \u2014 Beast", "uri": "https://api.scryfall.com/cards/76b5e455-053d-4a86-93b2-2436b554b638"}], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": true, "nonfoil": false, "finishes": ["foil"], "oversized": false, "promo": true, "reprint": true, "variation": false, "set_id": "b643670d-7a22-4869-b49c-89cdf9c9b627", "set": "pzen", "set_name": "Zendikar Promos", "set_type": "promo", "set_uri": "https://api.scryfall.com/sets/b643670d-7a22-4869-b49c-89cdf9c9b627", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Apzen&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/pzen?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/aac9448c-c802-476a-87ef-e1d745fd862a/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A2d3e6549-6cc6-434f-a189-ba3b55e64c34&unique=prints", "collector_number": "178\u2605", "digital": false, "rarity": "mythic", "watermark": "set", "flavor_text": "\"When the land is angry, so are they.\"\n\u2014Nissa Revane", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Eric Deschamps", "artist_ids": ["37970e22-9cee-44c1-af44-5ee27cf26b76"], "illustration_id": "df3a979e-adde-4bd3-a2d2-b8d3228ea477", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "promo_types": ["setpromo", "datestamped", "prerelease"], "edhrec_rank": 271, "prices": {"usd": null, "usd_foil": "1.44", "usd_etched": null, "eur": null, "eur_foil": "0.86", "tix": null}, "related_uris": {"tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Rampaging+Baloths&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Rampaging+Baloths&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Rampaging+Baloths"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/38395?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Rampaging+Baloths&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Rampaging+Baloths&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "12c1b820-0f06-41f6-804f-5c98f60c1529", "oracle_id": "b867deb4-a088-492e-95fe-487071ebfe8d", "multiverse_ids": [457279], "mtgo_id": 71270, "arena_id": 69263, "tcgplayer_id": 183423, "cardmarket_id": 368604, "name": "Rampaging Rendhorn", "lang": "en", "released_at": "2019-01-25", "uri": "https://api.scryfall.com/cards/12c1b820-0f06-41f6-804f-5c98f60c1529", "scryfall_uri": "https://scryfall.com/card/rna/135/rampaging-rendhorn?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/1/2/12c1b820-0f06-41f6-804f-5c98f60c1529.jpg?1584831217", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/2/12c1b820-0f06-41f6-804f-5c98f60c1529.jpg?1584831217", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/1/2/12c1b820-0f06-41f6-804f-5c98f60c1529.jpg?1584831217", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/1/2/12c1b820-0f06-41f6-804f-5c98f60c1529.png?1584831217", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/2/12c1b820-0f06-41f6-804f-5c98f60c1529.jpg?1584831217", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/1/2/12c1b820-0f06-41f6-804f-5c98f60c1529.jpg?1584831217"}, "mana_cost": "{4}{G}", "cmc": 5.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Riot (This creature enters the battlefield with your choice of a +1/+1 counter or haste.)", "power": "4", "toughness": "4", "colors": ["G"], "color_identity": ["G"], "keywords": ["Riot"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "97a7fd84-8d89-45a3-b48b-c951f6a3f9f1", "set": "rna", "set_name": "Ravnica Allegiance", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/97a7fd84-8d89-45a3-b48b-c951f6a3f9f1", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Arna&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/rna?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/12c1b820-0f06-41f6-804f-5c98f60c1529/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ab867deb4-a088-492e-95fe-487071ebfe8d&unique=prints", "collector_number": "135", "digital": false, "rarity": "common", "watermark": "gruul", "flavor_text": "Tumult is its natural habitat.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Ben Wootten", "artist_ids": ["31cdca96-ecde-4245-bfb6-653929d57d9c"], "illustration_id": "5f6498c1-e8a1-4d1d-86aa-26d9c39a8fd1", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 19687, "prices": {"usd": "0.02", "usd_foil": null, "usd_etched": null, "eur": "0.10", "eur_foil": "0.19", "tix": "0.05"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=457279", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Rampaging+Rendhorn&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Rampaging+Rendhorn&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Rampaging+Rendhorn"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/183423?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Rampaging+Rendhorn&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/71270?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "c98182d6-5b25-4493-9286-f29633e1bec4", "oracle_id": "ee771e66-72f8-480f-9920-92c68ab93c3b", "multiverse_ids": [12444], "mtgo_id": 18175, "mtgo_foil_id": 18176, "tcgplayer_id": 10647, "cardmarket_id": 1909, "name": "Ravenous Baloth", "lang": "en", "released_at": "2002-10-07", "uri": "https://api.scryfall.com/cards/c98182d6-5b25-4493-9286-f29633e1bec4", "scryfall_uri": "https://scryfall.com/card/ons/278/ravenous-baloth?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/c/9/c98182d6-5b25-4493-9286-f29633e1bec4.jpg?1592666556", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/9/c98182d6-5b25-4493-9286-f29633e1bec4.jpg?1592666556", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/c/9/c98182d6-5b25-4493-9286-f29633e1bec4.jpg?1592666556", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/c/9/c98182d6-5b25-4493-9286-f29633e1bec4.png?1592666556", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/9/c98182d6-5b25-4493-9286-f29633e1bec4.jpg?1592666556", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/c/9/c98182d6-5b25-4493-9286-f29633e1bec4.jpg?1592666556"}, "mana_cost": "{2}{G}{G}", "cmc": 4.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Sacrifice a Beast: You gain 4 life.", "power": "4", "toughness": "4", "colors": ["G"], "color_identity": ["G"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "914a6c6d-cb3b-45e8-a2db-9978a2339faf", "set": "ons", "set_name": "Onslaught", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/914a6c6d-cb3b-45e8-a2db-9978a2339faf", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aons&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ons?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/c98182d6-5b25-4493-9286-f29633e1bec4/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aee771e66-72f8-480f-9920-92c68ab93c3b&unique=prints", "collector_number": "278", "digital": false, "rarity": "rare", "flavor_text": "\"All we know about the Krosan Forest we have learned from those few who made it out alive.\"\n\u2014Elvish refugee", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Arnie Swekel", "artist_ids": ["af10ecf2-eb82-4100-97b2-6c236b0fa644"], "illustration_id": "ec0867e4-b2b8-46ca-834a-96c8a8f210c7", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 14037, "penny_rank": 4176, "prices": {"usd": "1.41", "usd_foil": "25.24", "usd_etched": null, "eur": "2.60", "eur_foil": "0.97", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=12444", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Ravenous+Baloth&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Ravenous+Baloth&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Ravenous+Baloth"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/10647?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Ravenous+Baloth&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/18175?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "68c1142a-58c1-4a8e-808b-d47a45abb76b", "oracle_id": "ee771e66-72f8-480f-9920-92c68ab93c3b", "multiverse_ids": [], "tcgplayer_id": 38268, "cardmarket_id": 18983, "name": "Ravenous Baloth", "lang": "en", "released_at": "2007-01-01", "uri": "https://api.scryfall.com/cards/68c1142a-58c1-4a8e-808b-d47a45abb76b", "scryfall_uri": "https://scryfall.com/card/g07/1/ravenous-baloth?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/6/8/68c1142a-58c1-4a8e-808b-d47a45abb76b.jpg?1592666558", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/8/68c1142a-58c1-4a8e-808b-d47a45abb76b.jpg?1592666558", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/6/8/68c1142a-58c1-4a8e-808b-d47a45abb76b.jpg?1592666558", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/6/8/68c1142a-58c1-4a8e-808b-d47a45abb76b.png?1592666558", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/8/68c1142a-58c1-4a8e-808b-d47a45abb76b.jpg?1592666558", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/6/8/68c1142a-58c1-4a8e-808b-d47a45abb76b.jpg?1592666558"}, "mana_cost": "{2}{G}{G}", "cmc": 4.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Sacrifice a Beast: You gain 4 life.", "power": "4", "toughness": "4", "colors": ["G"], "color_identity": ["G"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper"], "reserved": false, "foil": true, "nonfoil": false, "finishes": ["foil"], "oversized": false, "promo": true, "reprint": true, "variation": false, "set_id": "4624619f-b5bf-4822-b364-8385a09a69da", "set": "g07", "set_name": "Judge Gift Cards 2007", "set_type": "promo", "set_uri": "https://api.scryfall.com/sets/4624619f-b5bf-4822-b364-8385a09a69da", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ag07&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/g07?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/68c1142a-58c1-4a8e-808b-d47a45abb76b/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aee771e66-72f8-480f-9920-92c68ab93c3b&unique=prints", "collector_number": "1", "digital": false, "rarity": "rare", "watermark": "dci", "flavor_text": "\"All we know about the Krosan Forest we have learned from those few who made it out alive.\"\n\u2014Elvish refugee", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Todd Lockwood", "artist_ids": ["d0b9f3cc-13fb-42b6-bc43-b034728e5c7b"], "illustration_id": "c7281c4b-a0dc-4c65-8de1-19198a1ce6fa", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "promo_types": ["judgegift"], "edhrec_rank": 14037, "penny_rank": 4176, "prices": {"usd": null, "usd_foil": "13.12", "usd_etched": null, "eur": null, "eur_foil": "7.99", "tix": null}, "related_uris": {"tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Ravenous+Baloth&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Ravenous+Baloth&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Ravenous+Baloth"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/38268?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Ravenous+Baloth&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Ravenous+Baloth&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "02551196-ecea-472f-9547-3c9658d0489e", "oracle_id": "7b459306-149b-4f43-abc1-2dd70c748c0e", "multiverse_ids": [439739], "mtgo_id": 66617, "arena_id": 66781, "tcgplayer_id": 155593, "cardmarket_id": 315304, "name": "Ravenous Chupacabra", "lang": "en", "released_at": "2018-01-19", "uri": "https://api.scryfall.com/cards/02551196-ecea-472f-9547-3c9658d0489e", "scryfall_uri": "https://scryfall.com/card/rix/82/ravenous-chupacabra?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/0/2/02551196-ecea-472f-9547-3c9658d0489e.jpg?1555040291", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/2/02551196-ecea-472f-9547-3c9658d0489e.jpg?1555040291", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/0/2/02551196-ecea-472f-9547-3c9658d0489e.jpg?1555040291", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/0/2/02551196-ecea-472f-9547-3c9658d0489e.png?1555040291", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/2/02551196-ecea-472f-9547-3c9658d0489e.jpg?1555040291", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/0/2/02551196-ecea-472f-9547-3c9658d0489e.jpg?1555040291"}, "mana_cost": "{2}{B}{B}", "cmc": 4.0, "type_line": "Creature \u2014 Beast Horror", "oracle_text": "When Ravenous Chupacabra enters the battlefield, destroy target creature an opponent controls.", "power": "2", "toughness": "2", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "restricted", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "2f7e40fc-772d-4a85-bfdd-01653c41d0fa", "set": "rix", "set_name": "Rivals of Ixalan", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/2f7e40fc-772d-4a85-bfdd-01653c41d0fa", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Arix&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/rix?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/02551196-ecea-472f-9547-3c9658d0489e/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A7b459306-149b-4f43-abc1-2dd70c748c0e&unique=prints", "collector_number": "82", "digital": false, "rarity": "uncommon", "flavor_text": "Opening Orazca unleashed more horrors than just the Immortal Sun.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Daarken", "artist_ids": ["e607a0d4-fc12-4c01-9e3f-501f5269b9cb"], "illustration_id": "0628dbf7-dcab-4c6c-9d6b-ec2842f0096e", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 478, "penny_rank": 774, "prices": {"usd": "0.45", "usd_foil": "5.53", "usd_etched": null, "eur": "0.87", "eur_foil": "0.89", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=439739", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Ravenous+Chupacabra&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Ravenous+Chupacabra&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Ravenous+Chupacabra"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/155593?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Ravenous+Chupacabra&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/66617?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}]} \ No newline at end of file +{"has_more": true, "data": [{"name": "Gemrazer", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/7/d75546a5-81fd-41c1-a081-d8980f6bd60a.jpg?1604781861", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/7/d75546a5-81fd-41c1-a081-d8980f6bd60a.jpg?1604781861"}, "reprint": false, "frame_effects": ["showcase"], "digital": false, "set_type": "expansion"}, {"name": "Gemrazer", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/8/c811c0d4-e2fc-45eb-8a76-b89c38a95536.jpg?1604783022", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/8/c811c0d4-e2fc-45eb-8a76-b89c38a95536.jpg?1604783022"}, "flavor_name": "Anguirus, Armored Killer", "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Geyser Glider", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/8/b8aec169-4c62-4d53-a19c-68baa20c8e59.jpg?1562615855", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/8/b8aec169-4c62-4d53-a19c-68baa20c8e59.jpg?1562615855"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Ghor-Clan Rampager", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/8/382048ec-0bf5-49a5-90d5-f80fbda08962.jpg?1561822913", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/8/382048ec-0bf5-49a5-90d5-f80fbda08962.jpg?1561822913"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Ghor-Clan Rampager", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/d/5dacb6f8-20f7-4ed4-aa9f-8c1d55f09357.jpg?1562497081", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/d/5dacb6f8-20f7-4ed4-aa9f-8c1d55f09357.jpg?1562497081"}, "reprint": true, "digital": false, "set_type": "promo"}, {"name": "Giant Warthog", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/4/c402ef0e-51e7-4da6-a434-b99c5d435698.jpg?1562631879", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/4/c402ef0e-51e7-4da6-a434-b99c5d435698.jpg?1562631879"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Gilded Cerodon", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/6/f68c8fbd-9223-447d-a85c-fa6222c75277.jpg?1562820187", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/6/f68c8fbd-9223-447d-a85c-fa6222c75277.jpg?1562820187"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Glade Gnarr", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/e/ee38eeae-918b-4d19-b37a-175ac5db37a4.jpg?1562951582", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/e/ee38eeae-918b-4d19-b37a-175ac5db37a4.jpg?1562951582"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Glademuse", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/9/89a40dc1-3bd8-4c7e-9446-5abc8c1f6995.jpg?1591319670", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/9/89a40dc1-3bd8-4c7e-9446-5abc8c1f6995.jpg?1591319670"}, "reprint": false, "digital": false, "set_type": "commander"}, {"name": "Gloomshrieker", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/2/a2b50751-7f65-4321-86da-eef735bf8b67.jpg?1654568435", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/2/a2b50751-7f65-4321-86da-eef735bf8b67.jpg?1654568435"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Glowering Rogon", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/7/974b0881-bd26-4074-93dd-a1e3600347c4.jpg?1562925487", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/7/974b0881-bd26-4074-93dd-a1e3600347c4.jpg?1562925487"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Glowing Anemone", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/0/708593e6-787b-4f76-a86c-1d52857493ea.jpg?1562381361", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/0/708593e6-787b-4f76-a86c-1d52857493ea.jpg?1562381361"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Gluetius Maximus", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/a/aa7626ff-814f-4d9f-9595-ac7fa5334d4b.jpg?1562489356", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/a/aa7626ff-814f-4d9f-9595-ac7fa5334d4b.jpg?1562489356"}, "reprint": false, "digital": false, "set_type": "funny"}, {"name": "Gnarlid Colony", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/3/7327289d-eed8-44b1-8495-7172e2b49d5f.jpg?1604198764", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/3/7327289d-eed8-44b1-8495-7172e2b49d5f.jpg?1604198764"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Gnarlid Pack", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/8/68716387-c5ec-4967-be5f-723783722c64.jpg?1562288938", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/8/68716387-c5ec-4967-be5f-723783722c64.jpg?1562288938"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Godsire", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/2/e2539ff7-2b7d-47e3-bd77-3138a6c42d2b.jpg?1562710016", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/2/e2539ff7-2b7d-47e3-bd77-3138a6c42d2b.jpg?1562710016"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Goretusk Firebeast", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/9/9919d2dd-d6a1-4d45-b6aa-227ed05d7051.jpg?1562631090", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/9/9919d2dd-d6a1-4d45-b6aa-227ed05d7051.jpg?1562631090"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Graf Mole", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/5/25a40334-65d8-46d2-9c56-389e9b32107c.jpg?1576385088", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/5/25a40334-65d8-46d2-9c56-389e9b32107c.jpg?1576385088"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Grave Sifter", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/9/598fe7f1-bcc2-4909-9933-06bf02372adc.jpg?1561943333", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/9/598fe7f1-bcc2-4909-9933-06bf02372adc.jpg?1561943333"}, "reprint": false, "digital": false, "set_type": "commander"}, {"name": "Graxiplon", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/c/0c16e565-0b7f-46b1-a091-64c47c923a9f.jpg?1562897735", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/c/0c16e565-0b7f-46b1-a091-64c47c923a9f.jpg?1562897735"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Grazing Kelpie", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/8/68ccef2d-9a1f-4011-89e1-911bcc109b9d.jpg?1562916942", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/8/68ccef2d-9a1f-4011-89e1-911bcc109b9d.jpg?1562916942"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Greater Gargadon", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/5/653ddfa0-2088-4503-a3ab-b0f1d55d8351.jpg?1562916161", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/5/653ddfa0-2088-4503-a3ab-b0f1d55d8351.jpg?1562916161"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Great-Horn Krushok", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/2/122e08cb-407b-4b3d-8af0-077ff96bf160.jpg?1562822577", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/2/122e08cb-407b-4b3d-8af0-077ff96bf160.jpg?1562822577"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Gristleback", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/8/b82f763a-c960-4b59-8c77-f3bea7bd8c8b.jpg?1593272456", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/8/b82f763a-c960-4b59-8c77-f3bea7bd8c8b.jpg?1593272456"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Groffskithur", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/5/75e84098-c15c-40f4-9d8a-3fa5da26a268.jpg?1562148057", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/5/75e84098-c15c-40f4-9d8a-3fa5da26a268.jpg?1562148057"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Grollub", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/7/47f6301a-d581-4aaf-9993-3013323074aa.jpg?1562087828", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/7/47f6301a-d581-4aaf-9993-3013323074aa.jpg?1562087828"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Gruul Nodorog", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/8/9855ce83-ae26-4b1d-ab7f-637cde09d679.jpg?1593272463", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/8/9855ce83-ae26-4b1d-ab7f-637cde09d679.jpg?1593272463"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Gruul Ragebeast", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/8/080ef367-7904-4e5c-a8b4-1fb62f951f3e.jpg?1561814762", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/8/080ef367-7904-4e5c-a8b4-1fb62f951f3e.jpg?1561814762"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Guardian Beast", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/9/9941f83b-2903-4eab-ac6d-5313e3978fa3.jpg?1562923479", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/9/9941f83b-2903-4eab-ac6d-5313e3978fa3.jpg?1562923479"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Gulf Squid", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/f/bf424982-a0ab-4db9-8889-f3cef10966c6.jpg?1562930718", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/f/bf424982-a0ab-4db9-8889-f3cef10966c6.jpg?1562930718"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Gurzigost", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/4/f4e672c6-6ddc-4dd2-b4c7-5083d7566e87.jpg?1562632734", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/4/f4e672c6-6ddc-4dd2-b4c7-5083d7566e87.jpg?1562632734"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Helium Squirter", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/6/764e3d28-1876-46da-b927-b98089d62776.jpg?1593272686", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/6/764e3d28-1876-46da-b927-b98089d62776.jpg?1593272686"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Herald of the Forgotten", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/3/c3dba1c4-ee9a-4ea6-bf66-f639d38711cd.jpg?1591319371", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/3/c3dba1c4-ee9a-4ea6-bf66-f639d38711cd.jpg?1591319371"}, "reprint": false, "digital": false, "set_type": "commander"}, {"name": "Herd Baloth", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/1/c1e9cef5-c55f-47d9-9d2f-300dab8fcb0b.jpg?1626097560", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/1/c1e9cef5-c55f-47d9-9d2f-300dab8fcb0b.jpg?1626097560"}, "reprint": false, "digital": false, "set_type": "draft_innovation"}, {"name": "Herd Gnarr", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/c/9cf4fd75-34b1-4afa-b8cd-777dfc9e6376.jpg?1562928115", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/c/9cf4fd75-34b1-4afa-b8cd-777dfc9e6376.jpg?1562928115"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Highcliff Felidar", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/c/ecbeac44-9392-4522-8ff5-87079386bd0a.jpg?1576267130", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/c/ecbeac44-9392-4522-8ff5-87079386bd0a.jpg?1576267130"}, "reprint": false, "digital": false, "set_type": "box"}, {"name": "Hollowhenge Beast", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/5/052ab91f-ac01-43f4-9276-9af35dbfbf71.jpg?1562896231", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/5/052ab91f-ac01-43f4-9276-9af35dbfbf71.jpg?1562896231"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Hundroog", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/5/f525c356-88ca-4e2e-8f06-663be101e34f.jpg?1562944359", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/5/f525c356-88ca-4e2e-8f06-663be101e34f.jpg?1562944359"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Hunted Wumpus", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/d/edda2de4-22f6-4d33-b182-3ae5d105f1f6.jpg?1562942777", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/d/edda2de4-22f6-4d33-b182-3ae5d105f1f6.jpg?1562942777"}, "reprint": true, "digital": false, "set_type": "core"}, {"name": "Hunted Wumpus", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/2/b21c8b2d-ef0f-4839-acfc-20fd248c62cf.jpg?1562382549", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/2/b21c8b2d-ef0f-4839-acfc-20fd248c62cf.jpg?1562382549"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Hunting Moa", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/2/926cefa1-3c5c-4bd6-859b-de620a3ee777.jpg?1555789722", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/2/926cefa1-3c5c-4bd6-859b-de620a3ee777.jpg?1555789722"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Hydroid Krasis", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/0/801dd9c6-b159-4e1c-af2c-214c1f573633.jpg?1584833616", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/0/801dd9c6-b159-4e1c-af2c-214c1f573633.jpg?1584833616"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Hystrodon", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/c/1c964473-7c54-4c2d-a3eb-dba01c842103.jpg?1562901719", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/c/1c964473-7c54-4c2d-a3eb-dba01c842103.jpg?1562901719"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Indrik Stomphowler", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/e/fe57b3a2-0fd9-4f99-bb2b-828979dbcfc3.jpg?1593273398", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/e/fe57b3a2-0fd9-4f99-bb2b-828979dbcfc3.jpg?1593273398"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Infernal Spawn of Evil", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/9/99711b5b-3cb2-4d57-ac9a-f43cc86a7ca9.jpg?1562799128", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/9/99711b5b-3cb2-4d57-ac9a-f43cc86a7ca9.jpg?1562799128"}, "reprint": false, "digital": false, "set_type": "funny"}, {"name": "Infernius Spawnington III, Esq.", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/e/5e3b1317-f024-4e34-89ad-538fc148cd5c.jpg?1584348881", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/e/5e3b1317-f024-4e34-89ad-538fc148cd5c.jpg?1584348881"}, "reprint": false, "digital": false, "set_type": "funny"}, {"name": "Insatiable Souleater", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/7/171d5213-5bb4-4f5b-9ddd-e2a7ac092ec6.jpg?1562875704", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/7/171d5213-5bb4-4f5b-9ddd-e2a7ac092ec6.jpg?1562875704"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Intrusive Packbeast", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/9/49266f3c-4b43-4175-8bac-16789ba6f4b9.jpg?1572892585", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/9/49266f3c-4b43-4175-8bac-16789ba6f4b9.jpg?1572892585"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Iron-Barb Hellion", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/c/0cb36352-2f16-4572-b1aa-dc28b11f4229.jpg?1562875415", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/c/0cb36352-2f16-4572-b1aa-dc28b11f4229.jpg?1562875415"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Ironclad Krovod", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/f/afb16895-6542-405e-9793-154ffc439f23.jpg?1569418805", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/f/afb16895-6542-405e-9793-154ffc439f23.jpg?1569418805"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Jackalope Herd", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/b/cb80105c-d2c0-4f8c-9302-5e6152a60f54.jpg?1562088801", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/b/cb80105c-d2c0-4f8c-9302-5e6152a60f54.jpg?1562088801"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Kalonian Behemoth", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/7/77064471-d0c1-4988-8c47-f767bf9635f3.jpg?1561984952", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/7/77064471-d0c1-4988-8c47-f767bf9635f3.jpg?1561984952"}, "reprint": false, "digital": false, "set_type": "core"}, {"name": "Kalonian Tusker", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/3/135946fc-fe67-401f-821d-d7145c63f030.jpg?1562826250", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/3/135946fc-fe67-401f-821d-d7145c63f030.jpg?1562826250"}, "reprint": false, "digital": false, "set_type": "core"}, {"name": "Karplusan Wolverine", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/0/602610ce-8f42-4a1d-8f6e-92424d9d637c.jpg?1593275267", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/0/602610ce-8f42-4a1d-8f6e-92424d9d637c.jpg?1593275267"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Karstoderm", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/2/028c52f2-c45b-42da-89bd-cdd5cd7850f3.jpg?1562635162", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/2/028c52f2-c45b-42da-89bd-cdd5cd7850f3.jpg?1562635162"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Kazandu Stomper", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/f/afdfe5aa-8b15-4a89-a22a-03baf6afa4e7.jpg?1604199049", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/f/afdfe5aa-8b15-4a89-a22a-03baf6afa4e7.jpg?1604199049"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Kelpie Guide", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/1/0112ebfb-55ad-401c-9dc5-ffd829f5b5bf.jpg?1624590206", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/1/0112ebfb-55ad-401c-9dc5-ffd829f5b5bf.jpg?1624590206"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Kezzerdrix", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/3/23b95d3a-bb19-474d-9939-8817038fe9fc.jpg?1562052813", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/3/23b95d3a-bb19-474d-9939-8817038fe9fc.jpg?1562052813"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Kiln Fiend", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/c/0c584268-67c3-411b-a26c-aee3adf23872.jpg?1562701033", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/c/0c584268-67c3-411b-a26c-aee3adf23872.jpg?1562701033"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Kjeldoran Frostbeast", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/f/2fccb1d0-b324-4780-bb9e-4533240da06d.jpg?1562903801", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/f/2fccb1d0-b324-4780-bb9e-4533240da06d.jpg?1562903801"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Krakilin", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/9/a90442e8-9d22-4767-9e08-bd314169ea70.jpg?1562055913", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/9/a90442e8-9d22-4767-9e08-bd314169ea70.jpg?1562055913"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Kranioceros", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/2/52aece74-cc1f-4f32-ad1f-00733eb79007.jpg?1562801006", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/2/52aece74-cc1f-4f32-ad1f-00733eb79007.jpg?1562801006"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Krosan Beast", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/f/af822507-fd4c-454b-ab07-106c81c535bf.jpg?1562927648", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/f/af822507-fd4c-454b-ab07-106c81c535bf.jpg?1562927648"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Krosan Beast", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/7/47ea2f2d-14ca-4b57-b973-5ce7db35bebf.jpg?1615254642", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/7/47ea2f2d-14ca-4b57-b973-5ce7db35bebf.jpg?1615254642"}, "reprint": true, "digital": false, "set_type": "box"}, {"name": "Krosan Cloudscraper", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/1/51ef4cda-e55b-45a8-9c02-4e77e5b15a9e.jpg?1562911611", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/1/51ef4cda-e55b-45a8-9c02-4e77e5b15a9e.jpg?1562911611"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Krosan Colossus", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/8/a804f3c0-5ebf-43ca-b200-09f7c1bbe902.jpg?1562934820", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/8/a804f3c0-5ebf-43ca-b200-09f7c1bbe902.jpg?1562934820"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Krosan Groundshaker", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/2/82105090-5f71-4690-9ade-187354311ae3.jpg?1562925715", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/2/82105090-5f71-4690-9ade-187354311ae3.jpg?1562925715"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Krosan Tusker", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/b/0b872f85-60c5-44c4-956d-a8aa8132908b.jpg?1562897602", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/b/0b872f85-60c5-44c4-956d-a8aa8132908b.jpg?1562897602"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Krosan Vorine", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/7/b7d1c6c6-16b3-4a52-aeda-683b1aeb0e7f.jpg?1562931992", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/7/b7d1c6c6-16b3-4a52-aeda-683b1aeb0e7f.jpg?1562931992"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Krosan Warchief", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/3/435b700b-2072-47c0-9725-ad04414d2474.jpg?1562528085", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/3/435b700b-2072-47c0-9725-ad04414d2474.jpg?1562528085"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Kurgadon", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/2/52a1758c-849a-4de3-b674-857c3c9bf399.jpg?1562529070", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/2/52a1758c-849a-4de3-b674-857c3c9bf399.jpg?1562529070"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Laccolith Grunt", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/2/f27fd65a-5631-491f-b158-45012832ccf1.jpg?1562632792", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/2/f27fd65a-5631-491f-b158-45012832ccf1.jpg?1562632792"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Laccolith Titan", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/3/e36bc466-0f74-46fd-add2-c1cf3b3fe46b.jpg?1562632509", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/3/e36bc466-0f74-46fd-add2-c1cf3b3fe46b.jpg?1562632509"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Laccolith Warrior", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/1/a13b103f-482b-47d5-84a2-3621ba23bd20.jpg?1562631306", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/1/a13b103f-482b-47d5-84a2-3621ba23bd20.jpg?1562631306"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Laccolith Whelp", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/6/86eb5b9e-320f-40de-8668-ee0c08f63ec1.jpg?1562630877", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/6/86eb5b9e-320f-40de-8668-ee0c08f63ec1.jpg?1562630877"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Landscaper Colos", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/4/f45a9e86-133e-4626-a239-73ef88d9ae12.jpg?1626093695", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/4/f45a9e86-133e-4626-a239-73ef88d9ae12.jpg?1626093695"}, "reprint": false, "digital": false, "set_type": "draft_innovation"}, {"name": "Lazotep Reaver", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/9/594bbe43-a8aa-42aa-bc49-cb4f3bc05cad.jpg?1557576504", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/9/594bbe43-a8aa-42aa-bc49-cb4f3bc05cad.jpg?1557576504"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Leatherback Baloth", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/5/55f97b4c-42c7-4986-a150-0b8de11f0537.jpg?1562287740", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/5/55f97b4c-42c7-4986-a150-0b8de11f0537.jpg?1562287740"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Leatherback Baloth", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/2/e2c621ad-7109-4e07-b0cf-49fc243bc175.jpg?1562448787", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/2/e2c621ad-7109-4e07-b0cf-49fc243bc175.jpg?1562448787"}, "reprint": true, "digital": false, "set_type": "promo"}, {"name": "Leery Fogbeast", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/6/56125660-2307-4270-a947-f1f4ad63841c.jpg?1562915161", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/6/56125660-2307-4270-a947-f1f4ad63841c.jpg?1562915161"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Leopard-Spotted Jiao", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/1/91df110f-85d2-41cb-96b6-6c79cebfada7.jpg?1562131600", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/1/91df110f-85d2-41cb-96b6-6c79cebfada7.jpg?1562131600"}, "reprint": false, "digital": false, "set_type": "duel_deck"}, {"name": "Lesser Gargadon", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/3/63ed7aec-a513-418e-9cef-e0c51203055b.jpg?1562913496", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/3/63ed7aec-a513-418e-9cef-e0c51203055b.jpg?1562913496"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Lexivore", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/3/b39db7a3-028e-4c01-8ff9-64d2a1397379.jpg?1562799143", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/3/b39db7a3-028e-4c01-8ff9-64d2a1397379.jpg?1562799143"}, "reprint": false, "digital": false, "set_type": "funny"}, {"name": "Leyline Prowler", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/5/c56b4e8f-d48e-4bb0-883d-29f978033f65.jpg?1557577175", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/5/c56b4e8f-d48e-4bb0-883d-29f978033f65.jpg?1557577175"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Lightning Reaver", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/4/24a0860d-d3b9-4a00-a8cb-617bc317b93d.jpg?1562640145", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/4/24a0860d-d3b9-4a00-a8cb-617bc317b93d.jpg?1562640145"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Loathsome Catoblepas", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/a/4a8cff2f-ba52-4d22-83e8-13c56368f1df.jpg?1562817730", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/a/4a8cff2f-ba52-4d22-83e8-13c56368f1df.jpg?1562817730"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Longhorn Firebeast", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/f/bf0dcf33-8d3f-429c-8ad8-a65d07d7c790.jpg?1562631821", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/f/bf0dcf33-8d3f-429c-8ad8-a65d07d7c790.jpg?1562631821"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Lore Drakkis", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/3/83e035ca-eccd-4b63-817c-f2c676b9c98d.jpg?1591228108", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/3/83e035ca-eccd-4b63-817c-f2c676b9c98d.jpg?1591228108"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Lore Drakkis", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/9/e938fac3-544a-4f27-9726-a67153392031.jpg?1604781920", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/9/e938fac3-544a-4f27-9726-a67153392031.jpg?1604781920"}, "reprint": false, "frame_effects": ["showcase"], "digital": false, "set_type": "expansion"}, {"name": "Lovestruck Beast", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/c/4ccdef9c-1e85-4358-8059-8972479f7556.jpg?1572490606", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/c/4ccdef9c-1e85-4358-8059-8972479f7556.jpg?1572490606"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Lovestruck Beast", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/4/341110e5-577d-45ee-bf62-53373a331c87.jpg?1571399806", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/4/341110e5-577d-45ee-bf62-53373a331c87.jpg?1571399806"}, "reprint": false, "frame_effects": ["showcase"], "digital": false, "set_type": "expansion"}, {"name": "Lullmage's Familiar", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/3/b31a81e8-df0e-4540-93c1-c30c31ea9be9.jpg?1604200204", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/3/b31a81e8-df0e-4540-93c1-c30c31ea9be9.jpg?1604200204"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Lumbering Battlement", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/4/2469bc93-57ca-4077-bda2-160b4160adad.jpg?1584829942", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/4/2469bc93-57ca-4077-bda2-160b4160adad.jpg?1584829942"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Lumbering Satyr", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/d/5d897088-0667-4864-91c3-5f0ac7f9b220.jpg?1562380887", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/d/5d897088-0667-4864-91c3-5f0ac7f9b220.jpg?1562380887"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Lurching Rotbeast", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/f/9f06be97-71c8-46c8-a1c2-5da3af25e6de.jpg?1562808809", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/f/9f06be97-71c8-46c8-a1c2-5da3af25e6de.jpg?1562808809"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Lurker", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/3/b39eb671-e17e-4c5a-8913-1e3be7faedfb.jpg?1587910787", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/3/b39eb671-e17e-4c5a-8913-1e3be7faedfb.jpg?1587910787"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Lurking Arynx", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/f/7f59bc0b-88de-4580-bfc8-5af911d9ee99.jpg?1562788949", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/f/7f59bc0b-88de-4580-bfc8-5af911d9ee99.jpg?1562788949"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Lurking Chupacabra", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/b/abdbaa34-1ee5-4a2a-bdb3-2f04809a5b42.jpg?1562561935", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/b/abdbaa34-1ee5-4a2a-bdb3-2f04809a5b42.jpg?1562561935"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Macetail Hystrodon", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/4/8451ab3f-5d61-4f35-ab70-5a5060caf53d.jpg?1562921768", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/4/8451ab3f-5d61-4f35-ab70-5a5060caf53d.jpg?1562921768"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Makindi Sliderunner", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/e/9e6da400-ee4e-44d1-887d-1e2fb59b9322.jpg?1562932470", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/e/9e6da400-ee4e-44d1-887d-1e2fb59b9322.jpg?1562932470"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Manglehorn", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/a/0aa3a844-97e6-4f5d-a36f-56fea4e06932.jpg?1543675886", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/a/0aa3a844-97e6-4f5d-a36f-56fea4e06932.jpg?1543675886"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Marauding Maulhorn", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/7/b7d5e3dc-f307-4f91-a5ee-e7c5d03d8102.jpg?1562834221", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/7/b7d5e3dc-f307-4f91-a5ee-e7c5d03d8102.jpg?1562834221"}, "reprint": false, "digital": false, "set_type": "core"}, {"name": "Marsh Lurker", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/0/90c4b759-f53d-4977-8d97-a93762622e75.jpg?1562055419", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/0/90c4b759-f53d-4977-8d97-a93762622e75.jpg?1562055419"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Mawcor", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/8/48494f33-34b5-4c76-bb24-23a78b856e3c.jpg?1562237337", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/8/48494f33-34b5-4c76-bb24-23a78b856e3c.jpg?1562237337"}, "reprint": true, "digital": false, "set_type": "core"}, {"name": "Mawcor", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/f/9f50971e-2a18-4db7-8b5b-83dd5e85766e.jpg?1562055468", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/f/9f50971e-2a18-4db7-8b5b-83dd5e85766e.jpg?1562055468"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Megatherium", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/5/c58a1e43-a173-45d6-ac55-363664bf6e1b.jpg?1562383029", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/5/c58a1e43-a173-45d6-ac55-363664bf6e1b.jpg?1562383029"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Meglonoth", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/6/b69e32b7-87d6-44a8-a544-5dabcd64c9f3.jpg?1562803314", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/6/b69e32b7-87d6-44a8-a544-5dabcd64c9f3.jpg?1562803314"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Migratory Greathorn", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/a/6a2a287b-b83f-444f-84f7-e388beb616c2.jpg?1591227787", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/a/6a2a287b-b83f-444f-84f7-e388beb616c2.jpg?1591227787"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Migratory Greathorn", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/e/1e31f56d-bf75-4e14-94de-5c77193abf3a.jpg?1604781892", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/e/1e31f56d-bf75-4e14-94de-5c77193abf3a.jpg?1604781892"}, "reprint": false, "frame_effects": ["showcase"], "digital": false, "set_type": "expansion"}, {"name": "Mischievous Quanar", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/c/dc48c2db-f5b4-4c24-a5fa-00750b7ff56f.jpg?1562535674", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/c/dc48c2db-f5b4-4c24-a5fa-00750b7ff56f.jpg?1562535674"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Mockery of Nature", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/1/3118737f-2fd9-4fe5-bd0f-43c9ef2166e2.jpg?1576383753", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/1/3118737f-2fd9-4fe5-bd0f-43c9ef2166e2.jpg?1576383753"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Molder Beast", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/1/d1340a63-f549-440b-aad3-14247113896a.jpg?1562823428", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/1/d1340a63-f549-440b-aad3-14247113896a.jpg?1562823428"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Molder Slug", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/e/ee355d1b-5d64-4328-94d6-7a58889b99bc.jpg?1562162474", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/e/ee355d1b-5d64-4328-94d6-7a58889b99bc.jpg?1562162474"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Mold Shambler", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/0/903cb570-d769-4d7f-afbe-90ebad96657c.jpg?1562614361", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/0/903cb570-d769-4d7f-afbe-90ebad96657c.jpg?1562614361"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Mosscoat Goriak", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/2/c23139d4-0db5-4683-8d49-f4600fbe29e2.jpg?1591227812", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/2/c23139d4-0db5-4683-8d49-f4600fbe29e2.jpg?1591227812"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Muck Drubb", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/5/e5bda3fc-89e8-44c2-bcfb-d17064bbc391.jpg?1562584674", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/5/e5bda3fc-89e8-44c2-bcfb-d17064bbc391.jpg?1562584674"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Murasa Behemoth", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/8/480ddde1-81d3-4939-b232-cb1ced6cfc4d.jpg?1562202132", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/8/480ddde1-81d3-4939-b232-cb1ced6cfc4d.jpg?1562202132"}, "reprint": false, "digital": false, "set_type": "draft_innovation"}, {"name": "Murasa Rootgrazer", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/7/e70b3b78-9bdc-449b-82a9-c2fc3dd7f120.jpg?1604200243", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/7/e70b3b78-9bdc-449b-82a9-c2fc3dd7f120.jpg?1604200243"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Nalfeshnee", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/7/b7717617-706a-4338-a207-dd8c08feb1c3.jpg?1654036022", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/7/b7717617-706a-4338-a207-dd8c08feb1c3.jpg?1654036022"}, "reprint": false, "digital": false, "set_type": "draft_innovation"}, {"name": "Naya Soulbeast", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/0/f0e4b468-096b-4f80-9e78-022fe24a7e45.jpg?1562945827", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/0/f0e4b468-096b-4f80-9e78-022fe24a7e45.jpg?1562945827"}, "reprint": false, "digital": false, "set_type": "commander"}, {"name": "Needleshot Gourna", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/9/f9b1628d-aacd-4e19-9ebb-bcd9b2842c91.jpg?1562945371", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/9/f9b1628d-aacd-4e19-9ebb-bcd9b2842c91.jpg?1562945371"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Nessian Demolok", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/e/ee0683b2-8bc2-4c6a-964e-b909693b68c1.jpg?1593092523", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/e/ee0683b2-8bc2-4c6a-964e-b909693b68c1.jpg?1593092523"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Nessian Game Warden", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/0/5099d18d-c8b5-4706-bc93-40d1bb12988d.jpg?1593096253", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/0/5099d18d-c8b5-4706-bc93-40d1bb12988d.jpg?1593096253"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Noxious Groodion", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/6/b6cb3d78-1a60-4e9b-b387-afeb58677536.jpg?1584830637", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/6/b6cb3d78-1a60-4e9b-b387-afeb58677536.jpg?1584830637"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Nucklavee", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/0/50f54b0a-b0e1-44f1-bb91-523cc9e1c298.jpg?1562911924", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/0/50f54b0a-b0e1-44f1-bb91-523cc9e1c298.jpg?1562911924"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Nullhide Ferox", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/4/24c30bb0-06ba-432b-a20c-6fa79b0dc68a.jpg?1572893406", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/4/24c30bb0-06ba-432b-a20c-6fa79b0dc68a.jpg?1572893406"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Nulltread Gargantuan", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/2/a263f594-621e-46af-8561-f7eee565a19a.jpg?1562643297", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/2/a263f594-621e-46af-8561-f7eee565a19a.jpg?1562643297"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Nylea's Forerunner", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/c/2cf2b6be-80a8-4464-a909-8cc658196a14.jpg?1581480774", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/c/2cf2b6be-80a8-4464-a909-8cc658196a14.jpg?1581480774"}, "reprint": false, "frame_effects": ["nyxtouched"], "digital": false, "set_type": "expansion"}, {"name": "Obstinate Baloth", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/6/6694496c-45b9-4ddf-bfcd-b632441b8811.jpg?1562462698", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/6/6694496c-45b9-4ddf-bfcd-b632441b8811.jpg?1562462698"}, "reprint": false, "digital": false, "set_type": "core"}, {"name": "Ondu Greathorn", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/5/95d9668e-05dc-41c4-9326-ef4c0e15dd80.jpg?1562930312", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/5/95d9668e-05dc-41c4-9326-ef4c0e15dd80.jpg?1562930312"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Oraxid", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/c/6c05609a-f32d-4454-af24-a24452997dcb.jpg?1562630387", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/c/6c05609a-f32d-4454-af24-a24452997dcb.jpg?1562630387"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Oxidda Scrapmelter", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/6/c64fe85b-e471-489a-8c38-2357da1c7969.jpg?1562822847", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/6/c64fe85b-e471-489a-8c38-2357da1c7969.jpg?1562822847"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Paleoloth", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/8/b83ad801-44e7-48d0-9f34-0d10536bb4dc.jpg?1562803341", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/8/b83ad801-44e7-48d0-9f34-0d10536bb4dc.jpg?1562803341"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Pallimud", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/1/61adc314-cfb2-4fdd-925c-cc1dc4692992.jpg?1562054248", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/1/61adc314-cfb2-4fdd-925c-cc1dc4692992.jpg?1562054248"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Parcelbeast", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/1/610bb98c-d66a-44cc-92e2-a80d700b59e4.jpg?1591228161", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/1/610bb98c-d66a-44cc-92e2-a80d700b59e4.jpg?1591228161"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Parcelbeast", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/5/f5ac98e5-a22c-41b5-94a9-b37b5aeb124f.jpg?1604781949", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/5/f5ac98e5-a22c-41b5-94a9-b37b5aeb124f.jpg?1604781949"}, "reprint": false, "frame_effects": ["showcase"], "digital": false, "set_type": "expansion"}, {"name": "Petradon", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/5/75ac6311-8516-4db2-8c1f-626f0db0d36f.jpg?1562630404", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/5/75ac6311-8516-4db2-8c1f-626f0db0d36f.jpg?1562630404"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Petravark", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/f/ffc98d09-439e-426b-8403-4a3e12167336.jpg?1562632920", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/f/ffc98d09-439e-426b-8403-4a3e12167336.jpg?1562632920"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Phantom Beast", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/7/572df99b-af44-4128-8b2c-e40b1cea816b.jpg?1562460582", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/7/572df99b-af44-4128-8b2c-e40b1cea816b.jpg?1562460582"}, "reprint": false, "digital": false, "set_type": "core"}, {"name": "Phantom Nishoba", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/6/56ebc372-aabd-4174-a943-c7bf59e5028d.jpg?1562629953", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/6/56ebc372-aabd-4174-a943-c7bf59e5028d.jpg?1562629953"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Phyrexian Ingester", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/7/376e9829-23eb-4b43-9ec7-246cb3156e95.jpg?1562876645", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/7/376e9829-23eb-4b43-9ec7-246cb3156e95.jpg?1562876645"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Phyrexian War Beast", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/c/6c7576e2-1a95-453f-aab5-b08e21f28ba4.jpg?1559592288", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/c/6c7576e2-1a95-453f-aab5-b08e21f28ba4.jpg?1559592288"}, "reprint": true, "digital": true, "set_type": "masters"}, {"name": "Phyrexian War Beast", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/7/e7d651f6-50be-4df9-80f8-4c62bb860e71.jpg?1562770649", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/7/e7d651f6-50be-4df9-80f8-4c62bb860e71.jpg?1562770649"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Plague Belcher", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/8/280ae211-f025-4971-83e6-118ca08a1911.jpg?1543675375", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/8/280ae211-f025-4971-83e6-118ca08a1911.jpg?1543675375"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Plaguemaw Beast", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/2/52341830-8cea-421f-b901-9229004f2d45.jpg?1562611301", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/2/52341830-8cea-421f-b901-9229004f2d45.jpg?1562611301"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Plague Reaver", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/3/230b9bc8-29c8-49cb-b4f5-1aceeda8bf45.jpg?1608909892", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/3/230b9bc8-29c8-49cb-b4f5-1aceeda8bf45.jpg?1608909892"}, "reprint": false, "digital": false, "set_type": "draft_innovation"}, {"name": "Plated Crusher", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/d/cd68e01c-4a09-450b-bfa0-8fbac8721764.jpg?1562943464", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/d/cd68e01c-4a09-450b-bfa0-8fbac8721764.jpg?1562943464"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Plated Seastrider", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/7/97171611-c677-48a6-b081-98a27ecef979.jpg?1562820641", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/7/97171611-c677-48a6-b081-98a27ecef979.jpg?1562820641"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Plaxmanta", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/a/8ae3598d-4d76-45ac-ab96-00d27a8de6c8.jpg?1593272724", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/a/8ae3598d-4d76-45ac-ab96-00d27a8de6c8.jpg?1593272724"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Porcuparrot", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/5/856892c8-ba47-46d0-aec2-0416b55b9e88.jpg?1591227333", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/5/856892c8-ba47-46d0-aec2-0416b55b9e88.jpg?1591227333"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Porcuparrot", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/6/e6373fe1-c834-419e-8a0b-590fb5dc555e.jpg?1604781828", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/6/e6373fe1-c834-419e-8a0b-590fb5dc555e.jpg?1604781828"}, "reprint": false, "frame_effects": ["showcase"], "digital": false, "set_type": "expansion"}, {"name": "Pouncing Shoreshark", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/8/c859b339-b55b-41fe-948c-27502e3b3ea8.jpg?1591226459", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/8/c859b339-b55b-41fe-948c-27502e3b3ea8.jpg?1591226459"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Pouncing Shoreshark", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/4/54428228-83a0-440f-afe9-573c9d8640cc.jpg?1604781667", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/4/54428228-83a0-440f-afe9-573c9d8640cc.jpg?1604781667"}, "reprint": false, "frame_effects": ["showcase"], "digital": false, "set_type": "expansion"}, {"name": "Primal Huntbeast", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/b/eb77f6a8-a9d6-4fdd-996e-70877199ebab.jpg?1562561489", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/b/eb77f6a8-a9d6-4fdd-996e-70877199ebab.jpg?1562561489"}, "reprint": false, "digital": false, "set_type": "core"}, {"name": "Primoc Escapee", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/6/e6cb3e72-bb64-4b1e-a54b-1fe4fb4ad4c9.jpg?1562941357", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/6/e6cb3e72-bb64-4b1e-a54b-1fe4fb4ad4c9.jpg?1562941357"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Protean Hulk", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/d/3d978332-95bf-4f86-9e67-06f10983c267.jpg?1593273433", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/d/3d978332-95bf-4f86-9e67-06f10983c267.jpg?1593273433"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Protean Hulk", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/8/88269739-8a38-4f75-a53e-4b4ce70f2aef.jpg?1658282664", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/8/88269739-8a38-4f75-a53e-4b4ce70f2aef.jpg?1658282664"}, "reprint": true, "digital": false, "set_type": "box"}, {"name": "Prowling Felidar", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/9/b9d1c11a-a32c-449c-95c6-450dce6c26d2.jpg?1604193011", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/9/b9d1c11a-a32c-449c-95c6-450dce6c26d2.jpg?1604193011"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Prowling Felidar", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/8/e8df0aed-dd2b-4f1e-8dfe-aec07462b1e1.jpg?1604202426", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/8/e8df0aed-dd2b-4f1e-8dfe-aec07462b1e1.jpg?1604202426"}, "reprint": false, "frame_effects": ["showcase"], "digital": false, "set_type": "expansion"}, {"name": "Prowling Pangolin", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/6/b6bf8191-3154-48d7-a49b-4d07b5e35a15.jpg?1580014350", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/6/b6bf8191-3154-48d7-a49b-4d07b5e35a15.jpg?1580014350"}, "reprint": true, "digital": false, "set_type": "masters"}, {"name": "Prowling Pangolin", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/f/0f037e99-75fb-4a2a-b4c6-448ef21b16a3.jpg?1562898495", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/f/0f037e99-75fb-4a2a-b4c6-448ef21b16a3.jpg?1562898495"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Putrid Raptor", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/1/9127942b-d73d-42a9-9f97-6a39fa798a8b.jpg?1562532123", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/1/9127942b-d73d-42a9-9f97-6a39fa798a8b.jpg?1562532123"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Quagnoth", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/3/335c3aa3-af89-44ce-955a-69e12d83175f.jpg?1562905350", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/3/335c3aa3-af89-44ce-955a-69e12d83175f.jpg?1562905350"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Quartzwood Crasher", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/8/c8e4c609-19c9-433b-a852-7999e375ee4f.jpg?1591605359", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/8/c8e4c609-19c9-433b-a852-7999e375ee4f.jpg?1591605359"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Quicksilver Behemoth", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/4/645bfe2d-845b-4cf3-88b6-b2b62b8531e4.jpg?1562637248", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/4/645bfe2d-845b-4cf3-88b6-b2b62b8531e4.jpg?1562637248"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Quillspike", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/4/14cb4054-d5d6-4015-ae86-6f99280afe0a.jpg?1562899380", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/4/14cb4054-d5d6-4015-ae86-6f99280afe0a.jpg?1562899380"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Qumulox", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/4/54102e68-dded-440c-b9b1-28771c8033d4.jpg?1562877043", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/4/54102e68-dded-440c-b9b1-28771c8033d4.jpg?1562877043"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Raging Kronch", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/e/ae38aa2d-6c0e-409a-bfc7-ed4281457670.jpg?1557576793", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/e/ae38aa2d-6c0e-409a-bfc7-ed4281457670.jpg?1557576793"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Rakeclaw Gargantuan", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/1/d1995ab8-7382-4c2a-b8c7-8b9272cab4fb.jpg?1562709274", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/1/d1995ab8-7382-4c2a-b8c7-8b9272cab4fb.jpg?1562709274"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Rampaging Baloths", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/6/66ae703d-b133-4749-9d38-216abe6c6647.jpg?1562612913", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/6/66ae703d-b133-4749-9d38-216abe6c6647.jpg?1562612913"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Rampaging Baloths", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/a/aac9448c-c802-476a-87ef-e1d745fd862a.jpg?1605370770", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/a/aac9448c-c802-476a-87ef-e1d745fd862a.jpg?1605370770"}, "reprint": true, "digital": false, "set_type": "promo"}, {"name": "Rampaging Rendhorn", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/2/12c1b820-0f06-41f6-804f-5c98f60c1529.jpg?1584831217", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/2/12c1b820-0f06-41f6-804f-5c98f60c1529.jpg?1584831217"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Ravenous Baloth", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/9/c98182d6-5b25-4493-9286-f29633e1bec4.jpg?1592666556", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/9/c98182d6-5b25-4493-9286-f29633e1bec4.jpg?1592666556"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Ravenous Baloth", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/8/68c1142a-58c1-4a8e-808b-d47a45abb76b.jpg?1592666558", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/8/68c1142a-58c1-4a8e-808b-d47a45abb76b.jpg?1592666558"}, "reprint": true, "digital": false, "set_type": "promo"}, {"name": "Ravenous Chupacabra", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/2/02551196-ecea-472f-9547-3c9658d0489e.jpg?1555040291", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/2/02551196-ecea-472f-9547-3c9658d0489e.jpg?1555040291"}, "reprint": false, "digital": false, "set_type": "expansion"}]} \ No newline at end of file diff --git a/web/public/mtg/jsons/beast3.json b/web/public/mtg/jsons/beast3.json index 151645ee..3bf8f454 100644 --- a/web/public/mtg/jsons/beast3.json +++ b/web/public/mtg/jsons/beast3.json @@ -1 +1 @@ -{"object": "list", "total_cards": 497, "has_more": false, "data": [{"object": "card", "id": "9e2af348-e768-44ca-b847-d541a0b0e6e0", "oracle_id": "7b459306-149b-4f43-abc1-2dd70c748c0e", "multiverse_ids": [], "tcgplayer_id": 259218, "tcgplayer_etched_id": 259226, "name": "Ravenous Chupacabra", "lang": "en", "released_at": "2021-11-29", "uri": "https://api.scryfall.com/cards/9e2af348-e768-44ca-b847-d541a0b0e6e0", "scryfall_uri": "https://scryfall.com/card/sld/305/ravenous-chupacabra?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/9/e/9e2af348-e768-44ca-b847-d541a0b0e6e0.jpg?1645141508", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/e/9e2af348-e768-44ca-b847-d541a0b0e6e0.jpg?1645141508", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/9/e/9e2af348-e768-44ca-b847-d541a0b0e6e0.jpg?1645141508", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/9/e/9e2af348-e768-44ca-b847-d541a0b0e6e0.png?1645141508", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/e/9e2af348-e768-44ca-b847-d541a0b0e6e0.jpg?1645141508", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/9/e/9e2af348-e768-44ca-b847-d541a0b0e6e0.jpg?1645141508"}, "mana_cost": "{2}{B}{B}", "cmc": 4.0, "type_line": "Creature \u2014 Beast Horror", "oracle_text": "When Ravenous Chupacabra enters the battlefield, destroy target creature an opponent controls.", "power": "2", "toughness": "2", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "restricted", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil", "etched"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "4d92a8a7-ccb0-437d-abdc-9d70fc5ed672", "set": "sld", "set_name": "Secret Lair Drop", "set_type": "box", "set_uri": "https://api.scryfall.com/sets/4d92a8a7-ccb0-437d-abdc-9d70fc5ed672", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Asld&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/sld?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/9e2af348-e768-44ca-b847-d541a0b0e6e0/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A7b459306-149b-4f43-abc1-2dd70c748c0e&unique=prints", "collector_number": "305", "digital": false, "rarity": "rare", "flavor_text": "\"Why do these guys get such a bad rap? Is it the giant golden claws and teeth? The terrible stench? I think they're kinda cute.\"\n\u2014Crocodile Jackson, legendary cowboy", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Crocodile Jackson", "artist_ids": ["d4e5114a-a1c2-4389-9356-19ac50f2e114"], "illustration_id": "01f6d9f7-6a01-410e-b9fe-025afa7ca361", "border_color": "borderless", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "edhrec_rank": 478, "penny_rank": 774, "prices": {"usd": "4.24", "usd_foil": null, "usd_etched": "6.66", "eur": null, "eur_foil": null, "tix": null}, "related_uris": {"tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Ravenous+Chupacabra&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Ravenous+Chupacabra&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Ravenous+Chupacabra"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/259218?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Ravenous+Chupacabra&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Ravenous+Chupacabra&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "ca260253-40b8-4846-9e41-4e9cfc56d691", "oracle_id": "022624eb-c9d7-4110-bcc3-465c8d48fcd7", "multiverse_ids": [484910], "mtgo_id": 80707, "tcgplayer_id": 212158, "cardmarket_id": 452133, "name": "Ravenous Gigantotherium", "lang": "en", "released_at": "2020-04-17", "uri": "https://api.scryfall.com/cards/ca260253-40b8-4846-9e41-4e9cfc56d691", "scryfall_uri": "https://scryfall.com/card/c20/63/ravenous-gigantotherium?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/c/a/ca260253-40b8-4846-9e41-4e9cfc56d691.jpg?1591319695", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/a/ca260253-40b8-4846-9e41-4e9cfc56d691.jpg?1591319695", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/c/a/ca260253-40b8-4846-9e41-4e9cfc56d691.jpg?1591319695", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/c/a/ca260253-40b8-4846-9e41-4e9cfc56d691.png?1591319695", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/a/ca260253-40b8-4846-9e41-4e9cfc56d691.jpg?1591319695", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/c/a/ca260253-40b8-4846-9e41-4e9cfc56d691.jpg?1591319695"}, "mana_cost": "{5}{G}{G}", "cmc": 7.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Devour 3 (As this enters the battlefield, you may sacrifice any number of creatures. This creature enters the battlefield with three times that many +1/+1 counters on it.)\nWhen Ravenous Gigantotherium enters the battlefield, it deals X damage divided as you choose among up to X target creatures, where X is its power. Each of those creatures deals damage equal to its power to Ravenous Gigantotherium.", "power": "3", "toughness": "3", "colors": ["G"], "color_identity": ["G"], "keywords": ["Devour"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "f60ec786-1f8d-42f7-9abc-0d880fe243f6", "set": "c20", "set_name": "Commander 2020", "set_type": "commander", "set_uri": "https://api.scryfall.com/sets/f60ec786-1f8d-42f7-9abc-0d880fe243f6", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ac20&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/c20?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/ca260253-40b8-4846-9e41-4e9cfc56d691/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A022624eb-c9d7-4110-bcc3-465c8d48fcd7&unique=prints", "collector_number": "63", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Bartlomiej Gawel", "artist_ids": ["85ce2dbb-ec19-4037-85d0-274ef9de81ad"], "illustration_id": "10cf1e37-b350-4965-9959-6c531f647676", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "edhrec_rank": 11696, "preview": {"source": "Commander Central", "source_uri": "https://twitter.com/CMDRCentral/status/1246498406157168640", "previewed_at": "2020-04-04"}, "prices": {"usd": "0.09", "usd_foil": null, "usd_etched": null, "eur": "0.10", "eur_foil": null, "tix": "0.10"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=484910", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Ravenous+Gigantotherium&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Ravenous+Gigantotherium&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Ravenous+Gigantotherium"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/212158?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Ravenous+Gigantotherium&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/80707?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "1e91524b-4885-45fc-b22d-f9e5ee55845d", "oracle_id": "dcc5ca3f-5309-4833-bee4-f2508382ea06", "multiverse_ids": [380478], "mtgo_id": 52264, "mtgo_foil_id": 52265, "tcgplayer_id": 81982, "cardmarket_id": 266567, "name": "Ravenous Leucrocota", "lang": "en", "released_at": "2014-05-02", "uri": "https://api.scryfall.com/cards/1e91524b-4885-45fc-b22d-f9e5ee55845d", "scryfall_uri": "https://scryfall.com/card/jou/136/ravenous-leucrocota?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/1/e/1e91524b-4885-45fc-b22d-f9e5ee55845d.jpg?1593096288", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/e/1e91524b-4885-45fc-b22d-f9e5ee55845d.jpg?1593096288", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/1/e/1e91524b-4885-45fc-b22d-f9e5ee55845d.jpg?1593096288", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/1/e/1e91524b-4885-45fc-b22d-f9e5ee55845d.png?1593096288", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/e/1e91524b-4885-45fc-b22d-f9e5ee55845d.jpg?1593096288", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/1/e/1e91524b-4885-45fc-b22d-f9e5ee55845d.jpg?1593096288"}, "mana_cost": "{3}{G}", "cmc": 4.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Vigilance\n{6}{G}: Monstrosity 3. (If this creature isn't monstrous, put three +1/+1 counters on it and it becomes monstrous.)", "power": "2", "toughness": "4", "colors": ["G"], "color_identity": ["G"], "keywords": ["Vigilance", "Monstrosity"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "204d2dca-1887-4721-9558-164aa7bbeb4f", "set": "jou", "set_name": "Journey into Nyx", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/204d2dca-1887-4721-9558-164aa7bbeb4f", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ajou&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/jou?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/1e91524b-4885-45fc-b22d-f9e5ee55845d/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Adcc5ca3f-5309-4833-bee4-f2508382ea06&unique=prints", "collector_number": "136", "digital": false, "rarity": "common", "flavor_text": "Hunger makes a leucrocota dangerous. A full belly makes it angry and dangerous.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Christopher Burdett", "artist_ids": ["ff32a9e2-54fd-4d6a-97b5-1070e692833b"], "illustration_id": "44a6672c-885e-4944-86c1-0a3db17f5f39", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 21353, "penny_rank": 12122, "prices": {"usd": "0.03", "usd_foil": null, "usd_etched": null, "eur": "0.02", "eur_foil": "0.05", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=380478", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Ravenous+Leucrocota&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Ravenous+Leucrocota&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Ravenous+Leucrocota"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/81982?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Ravenous+Leucrocota&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/52264?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "d2090b80-2ce2-4c9a-87fe-d221f3c677b4", "oracle_id": "bbcd2045-cf51-4346-a561-ebae8ffdc181", "multiverse_ids": [25937], "mtgo_id": 15235, "mtgo_foil_id": 15236, "tcgplayer_id": 7859, "cardmarket_id": 3376, "name": "Razing Snidd", "lang": "en", "released_at": "2001-02-05", "uri": "https://api.scryfall.com/cards/d2090b80-2ce2-4c9a-87fe-d221f3c677b4", "scryfall_uri": "https://scryfall.com/card/pls/121/razing-snidd?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/d/2/d2090b80-2ce2-4c9a-87fe-d221f3c677b4.jpg?1562939456", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/2/d2090b80-2ce2-4c9a-87fe-d221f3c677b4.jpg?1562939456", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/d/2/d2090b80-2ce2-4c9a-87fe-d221f3c677b4.jpg?1562939456", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/d/2/d2090b80-2ce2-4c9a-87fe-d221f3c677b4.png?1562939456", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/2/d2090b80-2ce2-4c9a-87fe-d221f3c677b4.jpg?1562939456", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/d/2/d2090b80-2ce2-4c9a-87fe-d221f3c677b4.jpg?1562939456"}, "mana_cost": "{4}{B}{R}", "cmc": 6.0, "type_line": "Creature \u2014 Beast", "oracle_text": "When Razing Snidd enters the battlefield, return a black or red creature you control to its owner's hand.\nWhen Razing Snidd enters the battlefield, each player sacrifices a land.", "power": "3", "toughness": "3", "colors": ["B", "R"], "color_identity": ["B", "R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "restricted", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "82dc193b-bd5f-4883-a93f-a4155b467ee0", "set": "pls", "set_name": "Planeshift", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/82dc193b-bd5f-4883-a93f-a4155b467ee0", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Apls&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/pls?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/d2090b80-2ce2-4c9a-87fe-d221f3c677b4/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Abbcd2045-cf51-4346-a561-ebae8ffdc181&unique=prints", "collector_number": "121", "digital": false, "rarity": "uncommon", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Alan Pollack", "artist_ids": ["70c20ea3-5ad6-4082-a337-6e994ae5828e"], "illustration_id": "48972238-998a-41c8-b82c-ca31bb95dc6b", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 22512, "prices": {"usd": "0.20", "usd_foil": "0.42", "usd_etched": null, "eur": "0.10", "eur_foil": "0.95", "tix": "0.09"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=25937", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Razing+Snidd&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Razing+Snidd&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Razing+Snidd"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/7859?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Razing+Snidd&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/15235?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "da3ecfc6-1f9e-443e-a445-51df518025a5", "oracle_id": "90646d77-9b35-4f87-94ee-255c9f150456", "multiverse_ids": [179422], "mtgo_id": 30971, "mtgo_foil_id": 30972, "tcgplayer_id": 27768, "cardmarket_id": 19934, "name": "Realm Razer", "lang": "en", "released_at": "2008-10-03", "uri": "https://api.scryfall.com/cards/da3ecfc6-1f9e-443e-a445-51df518025a5", "scryfall_uri": "https://scryfall.com/card/ala/187/realm-razer?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/d/a/da3ecfc6-1f9e-443e-a445-51df518025a5.jpg?1562709702", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/a/da3ecfc6-1f9e-443e-a445-51df518025a5.jpg?1562709702", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/d/a/da3ecfc6-1f9e-443e-a445-51df518025a5.jpg?1562709702", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/d/a/da3ecfc6-1f9e-443e-a445-51df518025a5.png?1562709702", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/a/da3ecfc6-1f9e-443e-a445-51df518025a5.jpg?1562709702", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/d/a/da3ecfc6-1f9e-443e-a445-51df518025a5.jpg?1562709702"}, "mana_cost": "{3}{R}{G}{W}", "cmc": 6.0, "type_line": "Creature \u2014 Beast", "oracle_text": "When Realm Razer enters the battlefield, exile all lands.\nWhen Realm Razer leaves the battlefield, return the exiled cards to the battlefield tapped under their owners' control.", "power": "4", "toughness": "2", "colors": ["G", "R", "W"], "color_identity": ["G", "R", "W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "d667aaec-09b7-4406-b6fa-60795132dc11", "set": "ala", "set_name": "Shards of Alara", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/d667aaec-09b7-4406-b6fa-60795132dc11", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aala&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ala?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/da3ecfc6-1f9e-443e-a445-51df518025a5/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A90646d77-9b35-4f87-94ee-255c9f150456&unique=prints", "collector_number": "187", "digital": false, "rarity": "rare", "flavor_text": "The behemoth roared, and the world was blasted free of empires and tyrants.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Hideaki Takamura", "artist_ids": ["49b6270b-1b28-4e03-b503-522f97dc3a78"], "illustration_id": "f8e2983b-cbfe-4577-9a04-766ae058c485", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 13251, "penny_rank": 1615, "prices": {"usd": "0.36", "usd_foil": "4.77", "usd_etched": null, "eur": "0.20", "eur_foil": "0.50", "tix": "0.01"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=179422", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Realm+Razer&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Realm+Razer&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Realm+Razer"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/27768?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Realm+Razer&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/30971?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "c1cb483f-c567-4cfd-9fe8-1503e7b40542", "oracle_id": "eb9b0655-3ca3-4d12-8665-54ef0c2c4de2", "multiverse_ids": [513715], "mtgo_id": 88953, "arena_id": 76631, "tcgplayer_id": 235604, "cardmarket_id": 557216, "name": "Relic Sloth", "lang": "en", "released_at": "2021-04-23", "uri": "https://api.scryfall.com/cards/c1cb483f-c567-4cfd-9fe8-1503e7b40542", "scryfall_uri": "https://scryfall.com/card/stx/223/relic-sloth?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/c/1/c1cb483f-c567-4cfd-9fe8-1503e7b40542.jpg?1624739702", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/1/c1cb483f-c567-4cfd-9fe8-1503e7b40542.jpg?1624739702", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/c/1/c1cb483f-c567-4cfd-9fe8-1503e7b40542.jpg?1624739702", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/c/1/c1cb483f-c567-4cfd-9fe8-1503e7b40542.png?1624739702", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/1/c1cb483f-c567-4cfd-9fe8-1503e7b40542.jpg?1624739702", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/c/1/c1cb483f-c567-4cfd-9fe8-1503e7b40542.jpg?1624739702"}, "mana_cost": "{3}{R}{W}", "cmc": 5.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Vigilance\nMenace (This creature can't be blocked except by two or more creatures.)", "power": "4", "toughness": "4", "colors": ["R", "W"], "color_identity": ["R", "W"], "keywords": ["Vigilance", "Menace"], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "541c3c28-8747-40e5-a231-8e8f33234859", "set": "stx", "set_name": "Strixhaven: School of Mages", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/541c3c28-8747-40e5-a231-8e8f33234859", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Astx&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/stx?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/c1cb483f-c567-4cfd-9fe8-1503e7b40542/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aeb9b0655-3ca3-4d12-8665-54ef0c2c4de2&unique=prints", "collector_number": "223", "digital": false, "rarity": "common", "watermark": "lorehold", "flavor_text": "When it comes to transporting priceless, delicate artifacts, safety is more important than speed.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Ilse Gort", "artist_ids": ["12070c2e-4de6-46bc-b379-8a580dfb34c5"], "illustration_id": "7367fa40-081c-43f0-8514-fa6a838cd816", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 19036, "preview": {"source": "Carolyn Kavanagh", "source_uri": "https://twitter.com/MightyLinguine/status/1376670508561874952", "previewed_at": "2021-03-29"}, "prices": {"usd": "0.01", "usd_foil": "0.04", "usd_etched": null, "eur": "0.06", "eur_foil": "0.10", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=513715", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Relic+Sloth&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Relic+Sloth&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Relic+Sloth"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/235604?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Relic+Sloth&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/88953?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "23b68921-0c34-4d92-83c3-21542f62c7f6", "oracle_id": "7b7e622c-815a-44a0-88ff-62bbe8dd5582", "multiverse_ids": [369033], "mtgo_id": 48306, "mtgo_foil_id": 48307, "tcgplayer_id": 67905, "cardmarket_id": 261426, "name": "Renegade Krasis", "lang": "en", "released_at": "2013-05-03", "uri": "https://api.scryfall.com/cards/23b68921-0c34-4d92-83c3-21542f62c7f6", "scryfall_uri": "https://scryfall.com/card/dgm/47/renegade-krasis?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/2/3/23b68921-0c34-4d92-83c3-21542f62c7f6.jpg?1562901608", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/3/23b68921-0c34-4d92-83c3-21542f62c7f6.jpg?1562901608", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/2/3/23b68921-0c34-4d92-83c3-21542f62c7f6.jpg?1562901608", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/2/3/23b68921-0c34-4d92-83c3-21542f62c7f6.png?1562901608", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/3/23b68921-0c34-4d92-83c3-21542f62c7f6.jpg?1562901608", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/2/3/23b68921-0c34-4d92-83c3-21542f62c7f6.jpg?1562901608"}, "mana_cost": "{1}{G}{G}", "cmc": 3.0, "type_line": "Creature \u2014 Beast Mutant", "oracle_text": "Evolve (Whenever a creature enters the battlefield under your control, if that creature has greater power or toughness than this creature, put a +1/+1 counter on this creature.)\nWhenever Renegade Krasis evolves, put a +1/+1 counter on each other creature you control with a +1/+1 counter on it.", "power": "3", "toughness": "2", "colors": ["G"], "color_identity": ["G"], "keywords": ["Evolve"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "c8bd8520-cd98-45cd-b533-8d40c2087426", "set": "dgm", "set_name": "Dragon's Maze", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/c8bd8520-cd98-45cd-b533-8d40c2087426", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Adgm&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/dgm?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/23b68921-0c34-4d92-83c3-21542f62c7f6/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A7b7e622c-815a-44a0-88ff-62bbe8dd5582&unique=prints", "collector_number": "47", "digital": false, "rarity": "rare", "watermark": "simic", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Howard Lyon", "artist_ids": ["6dd06426-59fe-4b9c-aad5-6da8446a5c3d"], "illustration_id": "8264310c-4746-4d27-baeb-88c575884b2e", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 10154, "penny_rank": 7201, "prices": {"usd": "0.20", "usd_foil": "0.63", "usd_etched": null, "eur": "0.43", "eur_foil": "0.75", "tix": "0.01"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=369033", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Renegade+Krasis&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Renegade+Krasis&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Renegade+Krasis"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/67905?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Renegade+Krasis&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/48306?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "58388a29-b2a6-4d16-b872-f198563721d9", "oracle_id": "f6f4c684-2915-4a58-9c4b-487387f7cf73", "multiverse_ids": [24687], "mtgo_id": 14025, "mtgo_foil_id": 14026, "tcgplayer_id": 7214, "cardmarket_id": 11835, "name": "Rhox", "lang": "en", "released_at": "2000-02-14", "uri": "https://api.scryfall.com/cards/58388a29-b2a6-4d16-b872-f198563721d9", "scryfall_uri": "https://scryfall.com/card/nem/112/rhox?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/5/8/58388a29-b2a6-4d16-b872-f198563721d9.jpg?1562630034", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/8/58388a29-b2a6-4d16-b872-f198563721d9.jpg?1562630034", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/5/8/58388a29-b2a6-4d16-b872-f198563721d9.jpg?1562630034", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/5/8/58388a29-b2a6-4d16-b872-f198563721d9.png?1562630034", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/8/58388a29-b2a6-4d16-b872-f198563721d9.jpg?1562630034", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/5/8/58388a29-b2a6-4d16-b872-f198563721d9.jpg?1562630034"}, "mana_cost": "{4}{G}{G}", "cmc": 6.0, "type_line": "Creature \u2014 Rhino Beast", "oracle_text": "You may have Rhox assign its combat damage as though it weren't blocked.\n{2}{G}: Regenerate Rhox. (The next time this creature would be destroyed this turn, it isn't. Instead tap it, remove all damage from it, and remove it from combat.)", "power": "5", "toughness": "5", "colors": ["G"], "color_identity": ["G"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "fa5d1fdb-f781-473d-b14d-50396d40d43f", "set": "nem", "set_name": "Nemesis", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/fa5d1fdb-f781-473d-b14d-50396d40d43f", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Anem&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/nem?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/58388a29-b2a6-4d16-b872-f198563721d9/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Af6f4c684-2915-4a58-9c4b-487387f7cf73&unique=prints", "collector_number": "112", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Carl Critchlow", "artist_ids": ["17948f16-611a-44b8-8d10-9895a0bdfff1"], "illustration_id": "fc4533da-dfaa-4bca-be2b-0c14c3698e87", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 13354, "penny_rank": 10313, "prices": {"usd": "0.28", "usd_foil": "1.54", "usd_etched": null, "eur": "0.59", "eur_foil": "4.40", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=24687", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Rhox&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Rhox&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Rhox"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/7214?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Rhox&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/14025?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "5d5f3f57-410f-4ee2-b93c-f5051a068828", "oracle_id": "f6f4c684-2915-4a58-9c4b-487387f7cf73", "multiverse_ids": [], "tcgplayer_id": 21705, "cardmarket_id": 14756, "name": "Rhox", "lang": "en", "released_at": "2000-04-01", "uri": "https://api.scryfall.com/cards/5d5f3f57-410f-4ee2-b93c-f5051a068828", "scryfall_uri": "https://scryfall.com/card/s00/43/rhox?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/5/d/5d5f3f57-410f-4ee2-b93c-f5051a068828.jpg?1655270060", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/d/5d5f3f57-410f-4ee2-b93c-f5051a068828.jpg?1655270060", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/5/d/5d5f3f57-410f-4ee2-b93c-f5051a068828.jpg?1655270060", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/5/d/5d5f3f57-410f-4ee2-b93c-f5051a068828.png?1655270060", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/d/5d5f3f57-410f-4ee2-b93c-f5051a068828.jpg?1655270060", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/5/d/5d5f3f57-410f-4ee2-b93c-f5051a068828.jpg?1655270060"}, "mana_cost": "{4}{G}{G}", "cmc": 6.0, "type_line": "Creature \u2014 Rhino Beast", "oracle_text": "You may have Rhox assign its combat damage as though it weren't blocked.\n{2}{G}: Regenerate Rhox. (The next time this creature would be destroyed this turn, it isn't. Instead tap it, remove all damage from it, and remove it from combat.)", "power": "5", "toughness": "5", "colors": ["G"], "color_identity": ["G"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper"], "reserved": false, "foil": true, "nonfoil": false, "finishes": ["foil"], "oversized": false, "promo": true, "reprint": true, "variation": false, "set_id": "1c105623-2564-40d7-a3aa-4134787fb127", "set": "s00", "set_name": "Starter 2000", "set_type": "starter", "set_uri": "https://api.scryfall.com/sets/1c105623-2564-40d7-a3aa-4134787fb127", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3As00&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/s00?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/5d5f3f57-410f-4ee2-b93c-f5051a068828/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Af6f4c684-2915-4a58-9c4b-487387f7cf73&unique=prints", "collector_number": "43", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Mark Zug", "artist_ids": ["48e2b98c-5467-4671-bd42-4c3746115117"], "illustration_id": "88652d14-abd8-414e-bea8-9705e7cd85ab", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "edhrec_rank": 13354, "penny_rank": 10313, "prices": {"usd": null, "usd_foil": "0.64", "usd_etched": null, "eur": null, "eur_foil": "0.40", "tix": null}, "related_uris": {"tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Rhox&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Rhox&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Rhox"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/21705?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Rhox&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Rhox&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "5f663a4a-592a-4a3b-bbaf-e9c5c3049021", "oracle_id": "54e7a6d4-d405-4627-93ab-8d8bd945fe02", "multiverse_ids": [24627], "mtgo_id": 14157, "mtgo_foil_id": 14158, "tcgplayer_id": 7362, "cardmarket_id": 3994, "name": "Ridgeline Rager", "lang": "en", "released_at": "2000-06-05", "uri": "https://api.scryfall.com/cards/5f663a4a-592a-4a3b-bbaf-e9c5c3049021", "scryfall_uri": "https://scryfall.com/card/pcy/100/ridgeline-rager?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/5/f/5f663a4a-592a-4a3b-bbaf-e9c5c3049021.jpg?1562912585", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/f/5f663a4a-592a-4a3b-bbaf-e9c5c3049021.jpg?1562912585", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/5/f/5f663a4a-592a-4a3b-bbaf-e9c5c3049021.jpg?1562912585", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/5/f/5f663a4a-592a-4a3b-bbaf-e9c5c3049021.png?1562912585", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/f/5f663a4a-592a-4a3b-bbaf-e9c5c3049021.jpg?1562912585", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/5/f/5f663a4a-592a-4a3b-bbaf-e9c5c3049021.jpg?1562912585"}, "mana_cost": "{2}{R}", "cmc": 3.0, "type_line": "Creature \u2014 Beast", "oracle_text": "{R}: Ridgeline Rager gets +1/+0 until end of turn.", "power": "1", "toughness": "2", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "c233bd36-57c0-4aa2-ae6c-7aeabfb4e3ce", "set": "pcy", "set_name": "Prophecy", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/c233bd36-57c0-4aa2-ae6c-7aeabfb4e3ce", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Apcy&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/pcy?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/5f663a4a-592a-4a3b-bbaf-e9c5c3049021/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A54e7a6d4-d405-4627-93ab-8d8bd945fe02&unique=prints", "collector_number": "100", "digital": false, "rarity": "common", "flavor_text": "While armies battled across Jamuraa, beasts stalked the high places looking for victims.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Chippy", "artist_ids": ["a36f01a0-e51a-48b2-a556-b9b3bc73f969"], "illustration_id": "10b9d4f8-0078-4c28-872c-0b812b53c00e", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 22955, "penny_rank": 11840, "prices": {"usd": "0.05", "usd_foil": "0.45", "usd_etched": null, "eur": "0.02", "eur_foil": "0.35", "tix": "0.07"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=24627", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Ridgeline+Rager&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Ridgeline+Rager&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Ridgeline+Rager"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/7362?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Ridgeline+Rager&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/14157?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "4275a8dd-f777-4160-b773-9a868e743218", "oracle_id": "562aaf81-e70a-401d-a638-bb7ce4f40626", "multiverse_ids": [175257], "mtgo_id": 31239, "mtgo_foil_id": 31240, "tcgplayer_id": 27777, "cardmarket_id": 19872, "name": "Ridge Rannet", "lang": "en", "released_at": "2008-10-03", "uri": "https://api.scryfall.com/cards/4275a8dd-f777-4160-b773-9a868e743218", "scryfall_uri": "https://scryfall.com/card/ala/111/ridge-rannet?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/4/2/4275a8dd-f777-4160-b773-9a868e743218.jpg?1562703177", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/2/4275a8dd-f777-4160-b773-9a868e743218.jpg?1562703177", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/4/2/4275a8dd-f777-4160-b773-9a868e743218.jpg?1562703177", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/4/2/4275a8dd-f777-4160-b773-9a868e743218.png?1562703177", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/2/4275a8dd-f777-4160-b773-9a868e743218.jpg?1562703177", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/4/2/4275a8dd-f777-4160-b773-9a868e743218.jpg?1562703177"}, "mana_cost": "{5}{R}{R}", "cmc": 7.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Cycling {2} ({2}, Discard this card: Draw a card.)", "power": "6", "toughness": "4", "colors": ["R"], "color_identity": ["R"], "keywords": ["Cycling"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "d667aaec-09b7-4406-b6fa-60795132dc11", "set": "ala", "set_name": "Shards of Alara", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/d667aaec-09b7-4406-b6fa-60795132dc11", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aala&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ala?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/4275a8dd-f777-4160-b773-9a868e743218/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A562aaf81-e70a-401d-a638-bb7ce4f40626&unique=prints", "collector_number": "111", "digital": false, "rarity": "common", "flavor_text": "\"Only those with the strength to seize their destiny deserve to have one.\"\n\u2014Nacatl scratchforms", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Jim Murray", "artist_ids": ["1c906f9b-5bbe-4643-8f5c-90eb1c7f0c43"], "illustration_id": "ef44258a-c9c6-45ba-8257-fb35315c40ae", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 14366, "penny_rank": 8339, "prices": {"usd": "0.10", "usd_foil": "0.17", "usd_etched": null, "eur": "0.22", "eur_foil": "0.15", "tix": "0.04"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=175257", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Ridge+Rannet&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Ridge+Rannet&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Ridge+Rannet"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/27777?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Ridge+Rannet&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/31239?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "84b689cc-35ef-4a23-bb1e-4d81b9fb8455", "oracle_id": "4eef2f24-6a5c-4bc7-b316-dd818dc2741a", "multiverse_ids": [423788], "mtgo_id": 62787, "mtgo_foil_id": 62788, "tcgplayer_id": 126524, "cardmarket_id": 294910, "name": "Ridgescale Tusker", "lang": "en", "released_at": "2017-01-20", "uri": "https://api.scryfall.com/cards/84b689cc-35ef-4a23-bb1e-4d81b9fb8455", "scryfall_uri": "https://scryfall.com/card/aer/121/ridgescale-tusker?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/8/4/84b689cc-35ef-4a23-bb1e-4d81b9fb8455.jpg?1579814138", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/4/84b689cc-35ef-4a23-bb1e-4d81b9fb8455.jpg?1579814138", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/8/4/84b689cc-35ef-4a23-bb1e-4d81b9fb8455.jpg?1579814138", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/8/4/84b689cc-35ef-4a23-bb1e-4d81b9fb8455.png?1579814138", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/4/84b689cc-35ef-4a23-bb1e-4d81b9fb8455.jpg?1579814138", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/8/4/84b689cc-35ef-4a23-bb1e-4d81b9fb8455.jpg?1579814138"}, "mana_cost": "{3}{G}{G}", "cmc": 5.0, "type_line": "Creature \u2014 Pangolin Beast", "oracle_text": "When Ridgescale Tusker enters the battlefield, put a +1/+1 counter on each other creature you control.", "power": "5", "toughness": "5", "colors": ["G"], "color_identity": ["G"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "restricted", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "a4a0db50-8826-4e73-833c-3fd934375f96", "set": "aer", "set_name": "Aether Revolt", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/a4a0db50-8826-4e73-833c-3fd934375f96", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aaer&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/aer?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/84b689cc-35ef-4a23-bb1e-4d81b9fb8455/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A4eef2f24-6a5c-4bc7-b316-dd818dc2741a&unique=prints", "collector_number": "121", "digital": false, "rarity": "uncommon", "flavor_text": "\"Each creature holds a solution to a problem, a lesson to be learned.\"\n\u2014Oviya Pashiri, sage lifecrafter", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Winona Nelson", "artist_ids": ["e45fe8d3-75d6-42c9-a2df-e945ad81ea27"], "illustration_id": "9d0a2949-5787-4a7d-b25c-f80a0dce96e0", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 10476, "penny_rank": 5128, "prices": {"usd": "0.11", "usd_foil": "0.45", "usd_etched": null, "eur": "0.09", "eur_foil": "0.49", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=423788", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Ridgescale+Tusker&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Ridgescale+Tusker&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Ridgescale+Tusker"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/126524?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Ridgescale+Tusker&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/62787?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "1013cbc4-09f4-484f-b328-9f7403225149", "oracle_id": "600a8c9e-e158-4fff-8c4d-c3a1bfd006e8", "multiverse_ids": [39566], "mtgo_id": 18373, "mtgo_foil_id": 18374, "tcgplayer_id": 10684, "cardmarket_id": 2089, "name": "Ridgetop Raptor", "lang": "en", "released_at": "2003-02-03", "uri": "https://api.scryfall.com/cards/1013cbc4-09f4-484f-b328-9f7403225149", "scryfall_uri": "https://scryfall.com/card/lgn/108/ridgetop-raptor?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/1/0/1013cbc4-09f4-484f-b328-9f7403225149.jpg?1562898258", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/0/1013cbc4-09f4-484f-b328-9f7403225149.jpg?1562898258", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/1/0/1013cbc4-09f4-484f-b328-9f7403225149.jpg?1562898258", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/1/0/1013cbc4-09f4-484f-b328-9f7403225149.png?1562898258", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/0/1013cbc4-09f4-484f-b328-9f7403225149.jpg?1562898258", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/1/0/1013cbc4-09f4-484f-b328-9f7403225149.jpg?1562898258"}, "mana_cost": "{3}{R}", "cmc": 4.0, "type_line": "Creature \u2014 Dinosaur Beast", "oracle_text": "Double strike (This creature deals both first-strike and regular combat damage.)", "power": "2", "toughness": "1", "colors": ["R"], "color_identity": ["R"], "keywords": ["Double strike"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "restricted", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "c2d60a18-1a81-4784-8e0c-e1de2f43c5cf", "set": "lgn", "set_name": "Legions", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/c2d60a18-1a81-4784-8e0c-e1de2f43c5cf", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Algn&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/lgn?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/1013cbc4-09f4-484f-b328-9f7403225149/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A600a8c9e-e158-4fff-8c4d-c3a1bfd006e8&unique=prints", "collector_number": "108", "digital": false, "rarity": "uncommon", "flavor_text": "\"The Skirk Ridge has many wonderful things to discover\u2014like escape routes.\"\n\u2014Foothill guide", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Daren Bader", "artist_ids": ["7da1a585-c875-45e4-b322-5da9e8e1f651"], "illustration_id": "765ace26-8e48-4ee3-8469-3f7e6d003ca7", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 22165, "penny_rank": 13746, "prices": {"usd": "0.14", "usd_foil": "1.94", "usd_etched": null, "eur": "0.25", "eur_foil": "0.20", "tix": "0.05"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=39566", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Ridgetop+Raptor&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Ridgetop+Raptor&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Ridgetop+Raptor"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/10684?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Ridgetop+Raptor&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/18373?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "5314a802-85d6-4d7b-ae9a-ca64eec652cf", "oracle_id": "d5a4edda-fb04-43fa-8e0e-cc9f19b0776b", "multiverse_ids": [39914], "mtgo_id": 18495, "mtgo_foil_id": 18496, "tcgplayer_id": 10739, "cardmarket_id": 2032, "name": "Riptide Mangler", "lang": "en", "released_at": "2003-02-03", "uri": "https://api.scryfall.com/cards/5314a802-85d6-4d7b-ae9a-ca64eec652cf", "scryfall_uri": "https://scryfall.com/card/lgn/51/riptide-mangler?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/5/3/5314a802-85d6-4d7b-ae9a-ca64eec652cf.jpg?1562911887", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/3/5314a802-85d6-4d7b-ae9a-ca64eec652cf.jpg?1562911887", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/5/3/5314a802-85d6-4d7b-ae9a-ca64eec652cf.jpg?1562911887", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/5/3/5314a802-85d6-4d7b-ae9a-ca64eec652cf.png?1562911887", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/3/5314a802-85d6-4d7b-ae9a-ca64eec652cf.jpg?1562911887", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/5/3/5314a802-85d6-4d7b-ae9a-ca64eec652cf.jpg?1562911887"}, "mana_cost": "{1}{U}", "cmc": 2.0, "type_line": "Creature \u2014 Beast", "oracle_text": "{1}{U}: Change Riptide Mangler's base power to target creature's power. (This effect lasts indefinitely.)", "power": "0", "toughness": "3", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "c2d60a18-1a81-4784-8e0c-e1de2f43c5cf", "set": "lgn", "set_name": "Legions", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/c2d60a18-1a81-4784-8e0c-e1de2f43c5cf", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Algn&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/lgn?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/5314a802-85d6-4d7b-ae9a-ca64eec652cf/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ad5a4edda-fb04-43fa-8e0e-cc9f19b0776b&unique=prints", "collector_number": "51", "digital": false, "rarity": "rare", "flavor_text": "It wants you to be its chum.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Arnie Swekel", "artist_ids": ["af10ecf2-eb82-4100-97b2-6c236b0fa644"], "illustration_id": "eb0b6850-f243-48e3-a278-db088117ee34", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 19967, "penny_rank": 12476, "prices": {"usd": "0.23", "usd_foil": "2.00", "usd_etched": null, "eur": "0.25", "eur_foil": "6.00", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=39914", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Riptide+Mangler&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Riptide+Mangler&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Riptide+Mangler"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/10739?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Riptide+Mangler&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/18495?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "970adaaf-1534-4529-8da4-c4dcf7c08b7b", "oracle_id": "ef5c93ae-91e0-4edb-b8a3-1171a3694bb8", "multiverse_ids": [146094], "mtgo_id": 29469, "mtgo_foil_id": 29470, "tcgplayer_id": 18766, "cardmarket_id": 19063, "name": "River Kelpie", "lang": "en", "released_at": "2008-05-02", "uri": "https://api.scryfall.com/cards/970adaaf-1534-4529-8da4-c4dcf7c08b7b", "scryfall_uri": "https://scryfall.com/card/shm/49/river-kelpie?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/9/7/970adaaf-1534-4529-8da4-c4dcf7c08b7b.jpg?1562833446", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/7/970adaaf-1534-4529-8da4-c4dcf7c08b7b.jpg?1562833446", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/9/7/970adaaf-1534-4529-8da4-c4dcf7c08b7b.jpg?1562833446", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/9/7/970adaaf-1534-4529-8da4-c4dcf7c08b7b.png?1562833446", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/7/970adaaf-1534-4529-8da4-c4dcf7c08b7b.jpg?1562833446", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/9/7/970adaaf-1534-4529-8da4-c4dcf7c08b7b.jpg?1562833446"}, "mana_cost": "{3}{U}{U}", "cmc": 5.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Whenever River Kelpie or another permanent enters the battlefield from a graveyard, draw a card.\nWhenever a player casts a spell from a graveyard, draw a card.\nPersist (When this creature dies, if it had no -1/-1 counters on it, return it to the battlefield under its owner's control with a -1/-1 counter on it.)", "power": "3", "toughness": "3", "colors": ["U"], "color_identity": ["U"], "keywords": ["Persist"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "c18c0ba1-2081-4808-9b2e-549bc3a666f3", "set": "shm", "set_name": "Shadowmoor", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/c18c0ba1-2081-4808-9b2e-549bc3a666f3", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ashm&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/shm?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/970adaaf-1534-4529-8da4-c4dcf7c08b7b/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aef5c93ae-91e0-4edb-b8a3-1171a3694bb8&unique=prints", "collector_number": "49", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Jeff Easley", "artist_ids": ["da17055e-693c-461a-b132-67dd88b42ca6"], "illustration_id": "8fb45e12-b45e-4d4d-80ca-97d1b1a58dd5", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 3286, "penny_rank": 13483, "prices": {"usd": "0.51", "usd_foil": "21.32", "usd_etched": null, "eur": "1.25", "eur_foil": "5.90", "tix": "0.01"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=146094", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=River+Kelpie&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=River+Kelpie&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=River+Kelpie"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/18766?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=River+Kelpie&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/29469?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "19529b2f-03f0-469d-92d4-e2a2a933d5dc", "oracle_id": "2a098296-6a64-48ba-af40-5b68bae06bec", "multiverse_ids": [249687], "mtgo_id": 45486, "mtgo_foil_id": 45487, "tcgplayer_id": 59806, "cardmarket_id": 256674, "name": "Roaring Primadox", "lang": "en", "released_at": "2012-07-13", "uri": "https://api.scryfall.com/cards/19529b2f-03f0-469d-92d4-e2a2a933d5dc", "scryfall_uri": "https://scryfall.com/card/m13/188/roaring-primadox?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/1/9/19529b2f-03f0-469d-92d4-e2a2a933d5dc.jpg?1562550917", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/9/19529b2f-03f0-469d-92d4-e2a2a933d5dc.jpg?1562550917", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/1/9/19529b2f-03f0-469d-92d4-e2a2a933d5dc.jpg?1562550917", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/1/9/19529b2f-03f0-469d-92d4-e2a2a933d5dc.png?1562550917", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/9/19529b2f-03f0-469d-92d4-e2a2a933d5dc.jpg?1562550917", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/1/9/19529b2f-03f0-469d-92d4-e2a2a933d5dc.jpg?1562550917"}, "mana_cost": "{3}{G}", "cmc": 4.0, "type_line": "Creature \u2014 Beast", "oracle_text": "At the beginning of your upkeep, return a creature you control to its owner's hand.", "power": "4", "toughness": "4", "colors": ["G"], "color_identity": ["G"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "restricted", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "f9b0c6f4-8a4f-4f36-ad3c-e1e16fb8535d", "set": "m13", "set_name": "Magic 2013", "set_type": "core", "set_uri": "https://api.scryfall.com/sets/f9b0c6f4-8a4f-4f36-ad3c-e1e16fb8535d", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Am13&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/m13?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/19529b2f-03f0-469d-92d4-e2a2a933d5dc/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A2a098296-6a64-48ba-af40-5b68bae06bec&unique=prints", "collector_number": "188", "digital": false, "rarity": "uncommon", "flavor_text": "\"They're easy enough to find. Question is, are you sure you want to find one?\"\n\u2014Juruk, Kalonian tracker", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "James Ryman", "artist_ids": ["3852bbc9-11c0-4fe3-8722-a06ad7e2bcc5"], "illustration_id": "4e34fde7-3b4a-4123-96a0-55684ca0cc87", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 13044, "penny_rank": 3969, "prices": {"usd": "0.06", "usd_foil": "0.25", "usd_etched": null, "eur": "0.35", "eur_foil": "0.19", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=249687", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Roaring+Primadox&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Roaring+Primadox&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Roaring+Primadox"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/59806?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Roaring+Primadox&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/45486?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "dff05df8-76f5-48c6-ac96-7b4e6a7050f6", "oracle_id": "1f5ac983-a7a5-4b9d-a25c-727a7de6c465", "multiverse_ids": [19840], "mtgo_id": 13663, "mtgo_foil_id": 13664, "tcgplayer_id": 6669, "cardmarket_id": 11583, "name": "Rock Badger", "lang": "en", "released_at": "1999-10-04", "uri": "https://api.scryfall.com/cards/dff05df8-76f5-48c6-ac96-7b4e6a7050f6", "scryfall_uri": "https://scryfall.com/card/mmq/210/rock-badger?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/d/f/dff05df8-76f5-48c6-ac96-7b4e6a7050f6.jpg?1562383505", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/f/dff05df8-76f5-48c6-ac96-7b4e6a7050f6.jpg?1562383505", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/d/f/dff05df8-76f5-48c6-ac96-7b4e6a7050f6.jpg?1562383505", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/d/f/dff05df8-76f5-48c6-ac96-7b4e6a7050f6.png?1562383505", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/f/dff05df8-76f5-48c6-ac96-7b4e6a7050f6.jpg?1562383505", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/d/f/dff05df8-76f5-48c6-ac96-7b4e6a7050f6.jpg?1562383505"}, "mana_cost": "{4}{R}", "cmc": 5.0, "type_line": "Creature \u2014 Badger Beast", "oracle_text": "Mountainwalk (This creature can't be blocked as long as defending player controls a Mountain.)", "power": "3", "toughness": "3", "colors": ["R"], "color_identity": ["R"], "keywords": ["Landwalk", "Mountainwalk"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "385e11a4-492b-4d07-b4a6-a1409ef829b8", "set": "mmq", "set_name": "Mercadian Masques", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/385e11a4-492b-4d07-b4a6-a1409ef829b8", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ammq&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/mmq?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/dff05df8-76f5-48c6-ac96-7b4e6a7050f6/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A1f5ac983-a7a5-4b9d-a25c-727a7de6c465&unique=prints", "collector_number": "210", "digital": false, "rarity": "uncommon", "flavor_text": "The Kyren goblins created most of the inverted mountain's tunnels simply by driving the beast before them.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Heather Hudson", "artist_ids": ["4441fe52-9e41-40c1-9b74-8510426279ab"], "illustration_id": "7638ffc9-e9a7-41c0-8d75-3c4aa6761dd8", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 22884, "prices": {"usd": "0.15", "usd_foil": "0.46", "usd_etched": null, "eur": "0.05", "eur_foil": "2.00", "tix": "0.11"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=19840", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Rock+Badger&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Rock+Badger&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Rock+Badger"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/6669?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Rock+Badger&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/13663?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "e5b4b14c-e6fa-4cd2-9be7-fa2a2df05de1", "oracle_id": "d3fb83af-8fc4-4f26-b2df-be5dd3ac56b2", "multiverse_ids": [121270], "mtgo_id": 24615, "mtgo_foil_id": 24616, "tcgplayer_id": 14104, "cardmarket_id": 13711, "name": "Ronom Hulk", "lang": "en", "released_at": "2006-07-21", "uri": "https://api.scryfall.com/cards/e5b4b14c-e6fa-4cd2-9be7-fa2a2df05de1", "scryfall_uri": "https://scryfall.com/card/csp/119/ronom-hulk?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/e/5/e5b4b14c-e6fa-4cd2-9be7-fa2a2df05de1.jpg?1593275458", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/5/e5b4b14c-e6fa-4cd2-9be7-fa2a2df05de1.jpg?1593275458", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/e/5/e5b4b14c-e6fa-4cd2-9be7-fa2a2df05de1.jpg?1593275458", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/e/5/e5b4b14c-e6fa-4cd2-9be7-fa2a2df05de1.png?1593275458", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/5/e5b4b14c-e6fa-4cd2-9be7-fa2a2df05de1.jpg?1593275458", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/e/5/e5b4b14c-e6fa-4cd2-9be7-fa2a2df05de1.jpg?1593275458"}, "mana_cost": "{4}{G}", "cmc": 5.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Protection from snow\nCumulative upkeep {1} (At the beginning of your upkeep, put an age counter on this permanent, then sacrifice it unless you pay its upkeep cost for each age counter on it.)", "power": "5", "toughness": "6", "colors": ["G"], "color_identity": ["G"], "keywords": ["Protection", "Cumulative upkeep"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "1f4f105f-73e4-4f03-849e-82a204807847", "set": "csp", "set_name": "Coldsnap", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/1f4f105f-73e4-4f03-849e-82a204807847", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Acsp&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/csp?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/e5b4b14c-e6fa-4cd2-9be7-fa2a2df05de1/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ad3fb83af-8fc4-4f26-b2df-be5dd3ac56b2&unique=prints", "collector_number": "119", "digital": false, "rarity": "common", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Zoltan Boros & Gabor Szikszai", "artist_ids": ["1885e6cb-c827-4896-994e-3d0a027d602f", "44c3877f-8771-43dc-9e40-f4c765f59d2e"], "illustration_id": "af9848de-7c70-416c-8187-87fde979de23", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 23157, "prices": {"usd": "0.04", "usd_foil": "0.39", "usd_etched": null, "eur": "0.02", "eur_foil": "1.50", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=121270", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Ronom+Hulk&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Ronom+Hulk&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Ronom+Hulk"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/14104?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Ronom+Hulk&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/24615?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "306e3429-b3b4-4186-935b-18cfc308d22c", "oracle_id": "e43b25be-fe67-4eaa-80df-85718f38f904", "multiverse_ids": [8827], "mtgo_id": 15041, "mtgo_foil_id": 15042, "tcgplayer_id": 7862, "cardmarket_id": 3346, "name": "Root Greevil", "lang": "en", "released_at": "2001-02-05", "uri": "https://api.scryfall.com/cards/306e3429-b3b4-4186-935b-18cfc308d22c", "scryfall_uri": "https://scryfall.com/card/pls/91/root-greevil?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/3/0/306e3429-b3b4-4186-935b-18cfc308d22c.jpg?1562905210", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/0/306e3429-b3b4-4186-935b-18cfc308d22c.jpg?1562905210", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/3/0/306e3429-b3b4-4186-935b-18cfc308d22c.jpg?1562905210", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/3/0/306e3429-b3b4-4186-935b-18cfc308d22c.png?1562905210", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/0/306e3429-b3b4-4186-935b-18cfc308d22c.jpg?1562905210", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/3/0/306e3429-b3b4-4186-935b-18cfc308d22c.jpg?1562905210"}, "mana_cost": "{3}{G}", "cmc": 4.0, "type_line": "Creature \u2014 Beast", "oracle_text": "{2}{G}, {T}, Sacrifice Root Greevil: Destroy all enchantments of the color of your choice.", "power": "2", "toughness": "3", "colors": ["G"], "color_identity": ["G"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "82dc193b-bd5f-4883-a93f-a4155b467ee0", "set": "pls", "set_name": "Planeshift", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/82dc193b-bd5f-4883-a93f-a4155b467ee0", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Apls&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/pls?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/306e3429-b3b4-4186-935b-18cfc308d22c/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ae43b25be-fe67-4eaa-80df-85718f38f904&unique=prints", "collector_number": "91", "digital": false, "rarity": "common", "flavor_text": "The root of all greevils.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Andrew Robinson", "artist_ids": ["cb577db7-7f47-4f78-8682-6eaef8a77bd1"], "illustration_id": "45bb986c-3ec3-451f-882e-7deaa0f5e9f7", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 20126, "prices": {"usd": "0.09", "usd_foil": "1.29", "usd_etched": null, "eur": "0.05", "eur_foil": "0.50", "tix": "0.09"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=8827", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Root+Greevil&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Root+Greevil&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Root+Greevil"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/7862?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Root+Greevil&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/15041?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "7bcae97d-468a-4e16-bfed-d2946f64784c", "oracle_id": "e600afe3-8d5b-46ab-b98c-f0bacb58ab2a", "multiverse_ids": [233064], "mtgo_id": 39988, "mtgo_foil_id": 39989, "tcgplayer_id": 39574, "cardmarket_id": 245944, "name": "Rotted Hystrix", "lang": "en", "released_at": "2011-05-13", "uri": "https://api.scryfall.com/cards/7bcae97d-468a-4e16-bfed-d2946f64784c", "scryfall_uri": "https://scryfall.com/card/nph/120/rotted-hystrix?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/7/b/7bcae97d-468a-4e16-bfed-d2946f64784c.jpg?1562879013", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/b/7bcae97d-468a-4e16-bfed-d2946f64784c.jpg?1562879013", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/7/b/7bcae97d-468a-4e16-bfed-d2946f64784c.jpg?1562879013", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/7/b/7bcae97d-468a-4e16-bfed-d2946f64784c.png?1562879013", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/b/7bcae97d-468a-4e16-bfed-d2946f64784c.jpg?1562879013", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/7/b/7bcae97d-468a-4e16-bfed-d2946f64784c.jpg?1562879013"}, "mana_cost": "{4}{G}", "cmc": 5.0, "type_line": "Creature \u2014 Phyrexian Beast", "oracle_text": "", "power": "3", "toughness": "6", "colors": ["G"], "color_identity": ["G"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "e8e356d8-6d01-4dab-aa07-d0999dc9359f", "set": "nph", "set_name": "New Phyrexia", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/e8e356d8-6d01-4dab-aa07-d0999dc9359f", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Anph&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/nph?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/7bcae97d-468a-4e16-bfed-d2946f64784c/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ae600afe3-8d5b-46ab-b98c-f0bacb58ab2a&unique=prints", "collector_number": "120", "digital": false, "rarity": "common", "watermark": "phyrexian", "flavor_text": "Vorinclex had no grand plan. The oil did its own work, evolving creatures into worthy predators.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Dave Allsop", "artist_ids": ["99b8310a-4fd6-4ded-8ab7-3b5185821cbe"], "illustration_id": "8117fc56-6aae-4673-9d31-e007254e97f5", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 21675, "prices": {"usd": "0.03", "usd_foil": "0.13", "usd_etched": null, "eur": "0.10", "eur_foil": "0.15", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=233064", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Rotted+Hystrix&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Rotted+Hystrix&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Rotted+Hystrix"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/39574?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Rotted+Hystrix&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/39988?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "d8610ff1-064b-4c75-a8df-d3b076370d1e", "oracle_id": "3191c6ca-4d25-4ba3-bfe1-4aeab1295573", "multiverse_ids": [370764], "mtgo_id": 49501, "mtgo_foil_id": 49502, "tcgplayer_id": 69187, "cardmarket_id": 262362, "name": "Rumbling Baloth", "lang": "en", "released_at": "2013-07-19", "uri": "https://api.scryfall.com/cards/d8610ff1-064b-4c75-a8df-d3b076370d1e", "scryfall_uri": "https://scryfall.com/card/m14/193/rumbling-baloth?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/d/8/d8610ff1-064b-4c75-a8df-d3b076370d1e.jpg?1562835728", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/8/d8610ff1-064b-4c75-a8df-d3b076370d1e.jpg?1562835728", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/d/8/d8610ff1-064b-4c75-a8df-d3b076370d1e.jpg?1562835728", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/d/8/d8610ff1-064b-4c75-a8df-d3b076370d1e.png?1562835728", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/8/d8610ff1-064b-4c75-a8df-d3b076370d1e.jpg?1562835728", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/d/8/d8610ff1-064b-4c75-a8df-d3b076370d1e.jpg?1562835728"}, "mana_cost": "{2}{G}{G}", "cmc": 4.0, "type_line": "Creature \u2014 Beast", "oracle_text": "", "power": "4", "toughness": "4", "colors": ["G"], "color_identity": ["G"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "e03ee1c0-ecd2-4fcc-ac3c-e8fdb103a847", "set": "m14", "set_name": "Magic 2014", "set_type": "core", "set_uri": "https://api.scryfall.com/sets/e03ee1c0-ecd2-4fcc-ac3c-e8fdb103a847", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Am14&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/m14?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/d8610ff1-064b-4c75-a8df-d3b076370d1e/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A3191c6ca-4d25-4ba3-bfe1-4aeab1295573&unique=prints", "collector_number": "193", "digital": false, "rarity": "common", "flavor_text": "In the dim light beneath the vast trees of Deepglade, baloths prowl in search of prey. Their guttural calls are more felt than heard, but their attack scream carries for miles.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Jesper Ejsing", "artist_ids": ["a5f8354a-8b51-4e59-96b2-0e3aeae4fa1d"], "illustration_id": "ffe169c8-048d-4010-9d0c-00b7cefac6c6", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 11777, "prices": {"usd": "0.06", "usd_foil": "0.20", "usd_etched": null, "eur": "0.11", "eur_foil": "0.20", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=370764", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Rumbling+Baloth&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Rumbling+Baloth&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Rumbling+Baloth"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/69187?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Rumbling+Baloth&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/49501?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "6a7c6b2c-9ba0-4fc1-9922-0988acf2dfde", "oracle_id": "3da90ae6-a8cc-4633-bf49-7413ce91b697", "multiverse_ids": [527448], "mtgo_id": 91824, "arena_id": 77266, "tcgplayer_id": 243401, "cardmarket_id": 571730, "name": "Rust Monster", "lang": "en", "released_at": "2021-07-23", "uri": "https://api.scryfall.com/cards/6a7c6b2c-9ba0-4fc1-9922-0988acf2dfde", "scryfall_uri": "https://scryfall.com/card/afr/161/rust-monster?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/6/a/6a7c6b2c-9ba0-4fc1-9922-0988acf2dfde.jpg?1627706779", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/a/6a7c6b2c-9ba0-4fc1-9922-0988acf2dfde.jpg?1627706779", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/6/a/6a7c6b2c-9ba0-4fc1-9922-0988acf2dfde.jpg?1627706779", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/6/a/6a7c6b2c-9ba0-4fc1-9922-0988acf2dfde.png?1627706779", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/a/6a7c6b2c-9ba0-4fc1-9922-0988acf2dfde.jpg?1627706779", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/6/a/6a7c6b2c-9ba0-4fc1-9922-0988acf2dfde.jpg?1627706779"}, "mana_cost": "{2}{R}", "cmc": 3.0, "type_line": "Creature \u2014 Beast", "oracle_text": "First strike\nSacrifice an artifact: Rust Monster gets +2/+0 until end of turn.", "power": "2", "toughness": "1", "colors": ["R"], "color_identity": ["R"], "keywords": ["First strike"], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "restricted", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "e1ef87ba-ba92-4573-817f-543b996d2851", "set": "afr", "set_name": "Adventures in the Forgotten Realms", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/e1ef87ba-ba92-4573-817f-543b996d2851", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aafr&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/afr?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/6a7c6b2c-9ba0-4fc1-9922-0988acf2dfde/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A3da90ae6-a8cc-4633-bf49-7413ce91b697&unique=prints", "collector_number": "161", "digital": false, "rarity": "uncommon", "flavor_text": "\"They don't seem scary, but then you're suddenly standing there in your underclothes without a weapon. Then everything looks like a threat.\"\n\u2014Jarro, battle master", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Simon Dominic", "artist_ids": ["b0e80135-db5a-4b88-a0bc-815a0e94faa1"], "illustration_id": "ada4c06f-2956-4ecb-ab1e-97de9245c918", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 17256, "preview": {"source": "Lords of Limited", "source_uri": "https://twitter.com/LordsofLimited/status/1412053276950990854", "previewed_at": "2021-07-05"}, "prices": {"usd": "0.01", "usd_foil": "0.05", "usd_etched": null, "eur": "0.07", "eur_foil": "0.10", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=527448", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Rust+Monster&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Rust+Monster&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Rust+Monster"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/243401?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Rust+Monster&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/91824?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "bf004dae-c411-4b0e-b695-fd727f475948", "oracle_id": "3da90ae6-a8cc-4633-bf49-7413ce91b697", "multiverse_ids": [530955], "arena_id": 77422, "tcgplayer_id": 243454, "cardmarket_id": 571873, "name": "Rust Monster", "lang": "en", "released_at": "2021-07-23", "uri": "https://api.scryfall.com/cards/bf004dae-c411-4b0e-b695-fd727f475948", "scryfall_uri": "https://scryfall.com/card/afr/321/rust-monster?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/b/f/bf004dae-c411-4b0e-b695-fd727f475948.jpg?1627711737", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/f/bf004dae-c411-4b0e-b695-fd727f475948.jpg?1627711737", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/b/f/bf004dae-c411-4b0e-b695-fd727f475948.jpg?1627711737", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/b/f/bf004dae-c411-4b0e-b695-fd727f475948.png?1627711737", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/f/bf004dae-c411-4b0e-b695-fd727f475948.jpg?1627711737", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/b/f/bf004dae-c411-4b0e-b695-fd727f475948.jpg?1627711737"}, "mana_cost": "{2}{R}", "cmc": 3.0, "type_line": "Creature \u2014 Beast", "oracle_text": "First strike\nSacrifice an artifact: Rust Monster gets +2/+0 until end of turn.", "power": "2", "toughness": "1", "colors": ["R"], "color_identity": ["R"], "keywords": ["First strike"], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "restricted", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "e1ef87ba-ba92-4573-817f-543b996d2851", "set": "afr", "set_name": "Adventures in the Forgotten Realms", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/e1ef87ba-ba92-4573-817f-543b996d2851", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aafr&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/afr?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/bf004dae-c411-4b0e-b695-fd727f475948/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A3da90ae6-a8cc-4633-bf49-7413ce91b697&unique=prints", "collector_number": "321", "digital": false, "rarity": "uncommon", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Russ Nicholson", "artist_ids": ["53959d21-e90d-41bd-acc5-fbc5b4a81fdc"], "illustration_id": "b8c2d734-604b-46e8-978d-d5497f52f52b", "border_color": "black", "frame": "2015", "frame_effects": ["showcase"], "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "promo_types": ["boosterfun"], "edhrec_rank": 17256, "preview": {"source": "Lords of Limited", "source_uri": "https://twitter.com/LordsofLimited/status/1412053276950990854", "previewed_at": "2021-07-06"}, "prices": {"usd": "0.06", "usd_foil": "0.18", "usd_etched": null, "eur": "0.18", "eur_foil": "0.25", "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=530955", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Rust+Monster&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Rust+Monster&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Rust+Monster"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/243454?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Rust+Monster&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Rust+Monster&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "8338c296-cf3f-41d7-b380-3fb4237cb41c", "oracle_id": "ce82aa79-bb50-47bc-84f5-eae30249c7a5", "multiverse_ids": [23205], "mtgo_id": 14873, "mtgo_foil_id": 14874, "tcgplayer_id": 7634, "cardmarket_id": 3628, "name": "Sabertooth Nishoba", "lang": "en", "released_at": "2000-10-02", "uri": "https://api.scryfall.com/cards/8338c296-cf3f-41d7-b380-3fb4237cb41c", "scryfall_uri": "https://scryfall.com/card/inv/268/sabertooth-nishoba?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/8/3/8338c296-cf3f-41d7-b380-3fb4237cb41c.jpg?1562921586", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/3/8338c296-cf3f-41d7-b380-3fb4237cb41c.jpg?1562921586", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/8/3/8338c296-cf3f-41d7-b380-3fb4237cb41c.jpg?1562921586", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/8/3/8338c296-cf3f-41d7-b380-3fb4237cb41c.png?1562921586", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/3/8338c296-cf3f-41d7-b380-3fb4237cb41c.jpg?1562921586", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/8/3/8338c296-cf3f-41d7-b380-3fb4237cb41c.jpg?1562921586"}, "mana_cost": "{4}{G}{W}", "cmc": 6.0, "type_line": "Creature \u2014 Cat Beast Warrior", "oracle_text": "Trample, protection from blue and from red", "power": "5", "toughness": "5", "colors": ["G", "W"], "color_identity": ["G", "W"], "keywords": ["Protection", "Trample"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "b9ae5e02-7726-47ca-b5e4-5ec402b41cd1", "set": "inv", "set_name": "Invasion", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/b9ae5e02-7726-47ca-b5e4-5ec402b41cd1", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ainv&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/inv?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/8338c296-cf3f-41d7-b380-3fb4237cb41c/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ace82aa79-bb50-47bc-84f5-eae30249c7a5&unique=prints", "collector_number": "268", "digital": false, "rarity": "rare", "flavor_text": "They sneer at the terrestrial dangers found on peaks and shores, eager to prove themselves against new and even mightier foes.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Gary Ruddell", "artist_ids": ["086111c7-93f0-4bab-b339-6fe1c00d693c"], "illustration_id": "e1bad77d-e6c8-4d92-8ef1-98fb58d6b66e", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 16778, "prices": {"usd": "0.30", "usd_foil": "17.10", "usd_etched": null, "eur": "0.26", "eur_foil": "13.72", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=23205", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Sabertooth+Nishoba&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Sabertooth+Nishoba&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Sabertooth+Nishoba"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/7634?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Sabertooth+Nishoba&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/14873?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "4c64af58-963d-497b-ab95-104839d96b94", "oracle_id": "8d877ee9-1751-48a1-9f2f-02897dae153b", "multiverse_ids": [386647], "mtgo_id": 54190, "mtgo_foil_id": 54191, "tcgplayer_id": 92844, "cardmarket_id": 269142, "name": "Sagu Mauler", "lang": "en", "released_at": "2014-09-26", "uri": "https://api.scryfall.com/cards/4c64af58-963d-497b-ab95-104839d96b94", "scryfall_uri": "https://scryfall.com/card/ktk/196/sagu-mauler?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/4/c/4c64af58-963d-497b-ab95-104839d96b94.jpg?1562786271", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/c/4c64af58-963d-497b-ab95-104839d96b94.jpg?1562786271", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/4/c/4c64af58-963d-497b-ab95-104839d96b94.jpg?1562786271", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/4/c/4c64af58-963d-497b-ab95-104839d96b94.png?1562786271", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/c/4c64af58-963d-497b-ab95-104839d96b94.jpg?1562786271", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/4/c/4c64af58-963d-497b-ab95-104839d96b94.jpg?1562786271"}, "mana_cost": "{4}{G}{U}", "cmc": 6.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Trample, hexproof\nMorph {3}{G}{U} (You may cast this card face down as a 2/2 creature for {3}. Turn it face up any time for its morph cost.)", "power": "6", "toughness": "6", "colors": ["G", "U"], "color_identity": ["G", "U"], "keywords": ["Morph", "Hexproof", "Trample"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "6c7a715c-ded9-449e-89b0-c665773e9c3c", "set": "ktk", "set_name": "Khans of Tarkir", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/6c7a715c-ded9-449e-89b0-c665773e9c3c", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aktk&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ktk?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/4c64af58-963d-497b-ab95-104839d96b94/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A8d877ee9-1751-48a1-9f2f-02897dae153b&unique=prints", "collector_number": "196", "digital": false, "rarity": "rare", "flavor_text": "The Sagu Jungle's thick undergrowth conceals even the largest predators\u2014if they wish to remain hidden.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Raymond Swanland", "artist_ids": ["e956bacc-077d-4c12-b6bc-ba798b718af9"], "illustration_id": "6224583c-c9d0-4331-9528-df6edfea20cc", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 7123, "penny_rank": 3396, "prices": {"usd": "0.17", "usd_foil": "0.54", "usd_etched": null, "eur": "0.05", "eur_foil": "0.13", "tix": "0.01"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=386647", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Sagu+Mauler&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Sagu+Mauler&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Sagu+Mauler"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/92844?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Sagu+Mauler&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/54190?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "cc634c10-42c5-4bdc-bc22-f862ae285492", "oracle_id": "29925297-b6d4-4fc8-a585-1425c1482ec6", "multiverse_ids": [479655], "mtgo_id": 80279, "arena_id": 71202, "tcgplayer_id": 212537, "cardmarket_id": 454758, "name": "Sanctuary Smasher", "lang": "en", "released_at": "2020-04-24", "uri": "https://api.scryfall.com/cards/cc634c10-42c5-4bdc-bc22-f862ae285492", "scryfall_uri": "https://scryfall.com/card/iko/135/sanctuary-smasher?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/c/c/cc634c10-42c5-4bdc-bc22-f862ae285492.jpg?1591227414", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/c/cc634c10-42c5-4bdc-bc22-f862ae285492.jpg?1591227414", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/c/c/cc634c10-42c5-4bdc-bc22-f862ae285492.jpg?1591227414", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/c/c/cc634c10-42c5-4bdc-bc22-f862ae285492.png?1591227414", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/c/cc634c10-42c5-4bdc-bc22-f862ae285492.jpg?1591227414", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/c/c/cc634c10-42c5-4bdc-bc22-f862ae285492.jpg?1591227414"}, "mana_cost": "{4}{R}{R}", "cmc": 6.0, "type_line": "Creature \u2014 Rhino Beast", "oracle_text": "First strike\nCycling {2}{R} ({2}{R}, Discard this card: Draw a card.)\nWhen you cycle Sanctuary Smasher, put a first strike counter on target creature you control.", "power": "6", "toughness": "4", "colors": ["R"], "color_identity": ["R"], "keywords": ["First strike", "Cycling"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "restricted", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "19feda43-15ab-427e-a0e4-148a4bf2b03a", "set": "iko", "set_name": "Ikoria: Lair of Behemoths", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/19feda43-15ab-427e-a0e4-148a4bf2b03a", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aiko&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/iko?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/cc634c10-42c5-4bdc-bc22-f862ae285492/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A29925297-b6d4-4fc8-a585-1425c1482ec6&unique=prints", "collector_number": "135", "digital": false, "rarity": "uncommon", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Mathias Kollros", "artist_ids": ["2ae0dd12-047c-4efb-80d7-bccc3bac5fba"], "illustration_id": "10137eef-557a-4711-a348-e4bbe24a6aae", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 11851, "preview": {"source": "Wizards of the Coast", "source_uri": "", "previewed_at": "2020-04-07"}, "prices": {"usd": "0.05", "usd_foil": "0.10", "usd_etched": null, "eur": "0.02", "eur_foil": "0.20", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=479655", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Sanctuary+Smasher&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Sanctuary+Smasher&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Sanctuary+Smasher"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/212537?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Sanctuary+Smasher&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/80279?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "73887514-7644-4b2b-8c67-4b7e64150478", "oracle_id": "ff3fae6e-d8a1-46b3-a6cc-fb4e8800ee68", "multiverse_ids": [144282], "mtgo_id": 32226, "mtgo_foil_id": 32227, "tcgplayer_id": 31796, "cardmarket_id": 20889, "name": "Sanctum Plowbeast", "lang": "en", "released_at": "2009-04-30", "uri": "https://api.scryfall.com/cards/73887514-7644-4b2b-8c67-4b7e64150478", "scryfall_uri": "https://scryfall.com/card/arb/10/sanctum-plowbeast?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/7/3/73887514-7644-4b2b-8c67-4b7e64150478.jpg?1562642111", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/3/73887514-7644-4b2b-8c67-4b7e64150478.jpg?1562642111", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/7/3/73887514-7644-4b2b-8c67-4b7e64150478.jpg?1562642111", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/7/3/73887514-7644-4b2b-8c67-4b7e64150478.png?1562642111", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/3/73887514-7644-4b2b-8c67-4b7e64150478.jpg?1562642111", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/7/3/73887514-7644-4b2b-8c67-4b7e64150478.jpg?1562642111"}, "mana_cost": "{4}{W}{U}", "cmc": 6.0, "type_line": "Artifact Creature \u2014 Beast", "oracle_text": "Defender\nPlainscycling {2}, islandcycling {2} ({2}, Discard this card: Search your library for a Plains or Island card, reveal it, put it into your hand, then shuffle.)", "power": "3", "toughness": "6", "colors": ["U", "W"], "color_identity": ["U", "W"], "keywords": ["Islandcycling", "Plainscycling", "Landcycling", "Typecycling", "Defender"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "db486ec5-141d-4781-9ee5-5456926934c1", "set": "arb", "set_name": "Alara Reborn", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/db486ec5-141d-4781-9ee5-5456926934c1", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aarb&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/arb?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/73887514-7644-4b2b-8c67-4b7e64150478/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aff3fae6e-d8a1-46b3-a6cc-fb4e8800ee68&unique=prints", "collector_number": "10", "digital": false, "rarity": "common", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Anthony Francisco", "artist_ids": ["6ac24c4b-70e9-4286-8f4b-b40c92ab5847"], "illustration_id": "cb594283-6f33-4315-bf05-ae95e98f354c", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 11812, "penny_rank": 10400, "prices": {"usd": "0.10", "usd_foil": "0.42", "usd_etched": null, "eur": "0.10", "eur_foil": "0.34", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=144282", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Sanctum+Plowbeast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Sanctum+Plowbeast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Sanctum+Plowbeast"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/31796?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Sanctum+Plowbeast&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/32226?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "4efd7ce9-b920-409d-a4d2-a07fff280712", "oracle_id": "40578245-2cb8-4a6a-aeff-2252719c2d1c", "multiverse_ids": [19668], "mtgo_id": 13651, "mtgo_foil_id": 13652, "tcgplayer_id": 6679, "cardmarket_id": 11469, "name": "Sand Squid", "lang": "en", "released_at": "1999-10-04", "uri": "https://api.scryfall.com/cards/4efd7ce9-b920-409d-a4d2-a07fff280712", "scryfall_uri": "https://scryfall.com/card/mmq/96/sand-squid?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/4/e/4efd7ce9-b920-409d-a4d2-a07fff280712.jpg?1562380860", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/e/4efd7ce9-b920-409d-a4d2-a07fff280712.jpg?1562380860", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/4/e/4efd7ce9-b920-409d-a4d2-a07fff280712.jpg?1562380860", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/4/e/4efd7ce9-b920-409d-a4d2-a07fff280712.png?1562380860", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/e/4efd7ce9-b920-409d-a4d2-a07fff280712.jpg?1562380860", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/4/e/4efd7ce9-b920-409d-a4d2-a07fff280712.jpg?1562380860"}, "mana_cost": "{3}{U}", "cmc": 4.0, "type_line": "Creature \u2014 Squid Beast", "oracle_text": "Islandwalk (This creature can't be blocked as long as defending player controls an Island.)\nYou may choose not to untap Sand Squid during your untap step.\n{T}: Tap target creature. That creature doesn't untap during its controller's untap step for as long as Sand Squid remains tapped.", "power": "2", "toughness": "2", "colors": ["U"], "color_identity": ["U"], "keywords": ["Landwalk", "Islandwalk"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "385e11a4-492b-4d07-b4a6-a1409ef829b8", "set": "mmq", "set_name": "Mercadian Masques", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/385e11a4-492b-4d07-b4a6-a1409ef829b8", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ammq&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/mmq?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/4efd7ce9-b920-409d-a4d2-a07fff280712/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A40578245-2cb8-4a6a-aeff-2252719c2d1c&unique=prints", "collector_number": "96", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Kev Walker", "artist_ids": ["f366a0ee-a0cd-466d-ba6a-90058c7a31a6"], "illustration_id": "4379135d-f037-4eba-87b2-08016f63c51e", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 18431, "prices": {"usd": "0.26", "usd_foil": "10.65", "usd_etched": null, "eur": "0.20", "eur_foil": "16.00", "tix": "0.08"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=19668", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Sand+Squid&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Sand+Squid&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Sand+Squid"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/6679?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Sand+Squid&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/13651?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "9757be26-4480-43b7-a38a-8e4bde4e2d50", "oracle_id": "aa7a9689-e79a-4562-a621-eadc45966ce8", "multiverse_ids": [394674], "mtgo_id": 56154, "mtgo_foil_id": 56155, "tcgplayer_id": 96628, "cardmarket_id": 273296, "name": "Sandstorm Charger", "lang": "en", "released_at": "2015-03-27", "uri": "https://api.scryfall.com/cards/9757be26-4480-43b7-a38a-8e4bde4e2d50", "scryfall_uri": "https://scryfall.com/card/dtk/34/sandstorm-charger?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/9/7/9757be26-4480-43b7-a38a-8e4bde4e2d50.jpg?1562790274", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/7/9757be26-4480-43b7-a38a-8e4bde4e2d50.jpg?1562790274", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/9/7/9757be26-4480-43b7-a38a-8e4bde4e2d50.jpg?1562790274", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/9/7/9757be26-4480-43b7-a38a-8e4bde4e2d50.png?1562790274", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/7/9757be26-4480-43b7-a38a-8e4bde4e2d50.jpg?1562790274", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/9/7/9757be26-4480-43b7-a38a-8e4bde4e2d50.jpg?1562790274"}, "mana_cost": "{4}{W}", "cmc": 5.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Megamorph {4}{W} (You may cast this card face down as a 2/2 creature for {3}. Turn it face up any time for its megamorph cost and put a +1/+1 counter on it.)", "power": "3", "toughness": "4", "colors": ["W"], "color_identity": ["W"], "keywords": ["Megamorph"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "7e72625f-f320-4552-a719-d11e2f1853bd", "set": "dtk", "set_name": "Dragons of Tarkir", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/7e72625f-f320-4552-a719-d11e2f1853bd", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Adtk&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/dtk?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/9757be26-4480-43b7-a38a-8e4bde4e2d50/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aaa7a9689-e79a-4562-a621-eadc45966ce8&unique=prints", "collector_number": "34", "digital": false, "rarity": "common", "watermark": "dromoka", "flavor_text": "\"May our foes choke upon its horns!\"\n\u2014Urdnan, Dromoka warrior", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Dave Kendall", "artist_ids": ["8a5540a8-18c9-4fa9-802c-59d6866114d5"], "illustration_id": "b2dbd88f-5c86-41f8-b11e-36478f36ef24", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 22958, "prices": {"usd": "0.04", "usd_foil": "0.08", "usd_etched": null, "eur": "0.01", "eur_foil": "0.02", "tix": "0.08"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=394674", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Sandstorm+Charger&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Sandstorm+Charger&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Sandstorm+Charger"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/96628?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Sandstorm+Charger&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/56154?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "dd7153be-ad6c-47ff-8f45-bc8df17973cb", "oracle_id": "c429716b-bd3a-4060-b8a3-82e3d6aecd88", "multiverse_ids": [430796], "mtgo_id": 64698, "mtgo_foil_id": 64699, "tcgplayer_id": 134887, "cardmarket_id": 298552, "name": "Sand Strangler", "lang": "en", "released_at": "2017-07-14", "uri": "https://api.scryfall.com/cards/dd7153be-ad6c-47ff-8f45-bc8df17973cb", "scryfall_uri": "https://scryfall.com/card/hou/107/sand-strangler?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/d/d/dd7153be-ad6c-47ff-8f45-bc8df17973cb.jpg?1562817478", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/d/dd7153be-ad6c-47ff-8f45-bc8df17973cb.jpg?1562817478", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/d/d/dd7153be-ad6c-47ff-8f45-bc8df17973cb.jpg?1562817478", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/d/d/dd7153be-ad6c-47ff-8f45-bc8df17973cb.png?1562817478", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/d/dd7153be-ad6c-47ff-8f45-bc8df17973cb.jpg?1562817478", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/d/d/dd7153be-ad6c-47ff-8f45-bc8df17973cb.jpg?1562817478"}, "mana_cost": "{3}{R}", "cmc": 4.0, "type_line": "Creature \u2014 Beast", "oracle_text": "When Sand Strangler enters the battlefield, if you control a Desert or there is a Desert card in your graveyard, you may have Sand Strangler deal 3 damage to target creature.", "power": "3", "toughness": "3", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "restricted", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "65ff168b-bb94-47a5-a8f9-4ec6c213e768", "set": "hou", "set_name": "Hour of Devastation", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/65ff168b-bb94-47a5-a8f9-4ec6c213e768", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ahou&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/hou?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/dd7153be-ad6c-47ff-8f45-bc8df17973cb/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ac429716b-bd3a-4060-b8a3-82e3d6aecd88&unique=prints", "collector_number": "107", "digital": false, "rarity": "uncommon", "flavor_text": "The bombardment of sand disorients, chokes, and ultimately tenderizes its prey.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Aaron Miller", "artist_ids": ["fc021f3d-773a-4706-bbe7-f602324f511f"], "illustration_id": "44668c1c-cd0b-4ac0-aac1-df7853a8880c", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 22236, "penny_rank": 5852, "prices": {"usd": "0.03", "usd_foil": "0.01", "usd_etched": null, "eur": "0.02", "eur_foil": "0.10", "tix": "0.05"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=430796", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Sand+Strangler&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Sand+Strangler&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Sand+Strangler"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/134887?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Sand+Strangler&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/64698?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "2de7bf0f-5ad5-467b-ad80-28517951bbe1", "oracle_id": "f3413f57-229e-49dd-a776-6905b80b2b12", "multiverse_ids": [19671], "mtgo_id": 13631, "mtgo_foil_id": 13632, "tcgplayer_id": 6682, "cardmarket_id": 11471, "name": "Saprazzan Breaker", "lang": "en", "released_at": "1999-10-04", "uri": "https://api.scryfall.com/cards/2de7bf0f-5ad5-467b-ad80-28517951bbe1", "scryfall_uri": "https://scryfall.com/card/mmq/98/saprazzan-breaker?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/2/d/2de7bf0f-5ad5-467b-ad80-28517951bbe1.jpg?1562379910", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/d/2de7bf0f-5ad5-467b-ad80-28517951bbe1.jpg?1562379910", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/2/d/2de7bf0f-5ad5-467b-ad80-28517951bbe1.jpg?1562379910", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/2/d/2de7bf0f-5ad5-467b-ad80-28517951bbe1.png?1562379910", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/d/2de7bf0f-5ad5-467b-ad80-28517951bbe1.jpg?1562379910", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/2/d/2de7bf0f-5ad5-467b-ad80-28517951bbe1.jpg?1562379910"}, "mana_cost": "{4}{U}", "cmc": 5.0, "type_line": "Creature \u2014 Beast", "oracle_text": "{U}: Mill a card. If a land card was milled this way, Saprazzan Breaker can't be blocked this turn.", "power": "3", "toughness": "3", "colors": ["U"], "color_identity": ["U"], "keywords": ["Mill"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "restricted", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "385e11a4-492b-4d07-b4a6-a1409ef829b8", "set": "mmq", "set_name": "Mercadian Masques", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/385e11a4-492b-4d07-b4a6-a1409ef829b8", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ammq&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/mmq?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/2de7bf0f-5ad5-467b-ad80-28517951bbe1/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Af3413f57-229e-49dd-a776-6905b80b2b12&unique=prints", "collector_number": "98", "digital": false, "rarity": "uncommon", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Pete Venters", "artist_ids": ["d54c4a1a-c0c5-4834-84db-125d341f3ad8"], "illustration_id": "4a3e2246-44b1-4965-98a3-3ca61c900c11", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 22886, "prices": {"usd": "0.09", "usd_foil": "0.69", "usd_etched": null, "eur": "0.10", "eur_foil": "1.90", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=19671", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Saprazzan+Breaker&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Saprazzan+Breaker&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Saprazzan+Breaker"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/6682?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Saprazzan+Breaker&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/13631?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "574d1a02-a403-4b6e-8ce0-a472325c9c2c", "oracle_id": "7f93a368-9568-456c-9bd6-20d5fe5ad2f1", "multiverse_ids": [484911], "mtgo_id": 80709, "tcgplayer_id": 212228, "cardmarket_id": 453148, "name": "Sawtusk Demolisher", "lang": "en", "released_at": "2020-04-17", "uri": "https://api.scryfall.com/cards/574d1a02-a403-4b6e-8ce0-a472325c9c2c", "scryfall_uri": "https://scryfall.com/card/c20/64/sawtusk-demolisher?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/5/7/574d1a02-a403-4b6e-8ce0-a472325c9c2c.jpg?1591319710", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/7/574d1a02-a403-4b6e-8ce0-a472325c9c2c.jpg?1591319710", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/5/7/574d1a02-a403-4b6e-8ce0-a472325c9c2c.jpg?1591319710", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/5/7/574d1a02-a403-4b6e-8ce0-a472325c9c2c.png?1591319710", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/7/574d1a02-a403-4b6e-8ce0-a472325c9c2c.jpg?1591319710", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/5/7/574d1a02-a403-4b6e-8ce0-a472325c9c2c.jpg?1591319710"}, "mana_cost": "{4}{G}{G}", "cmc": 6.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Mutate {3}{G} (If you cast this spell for its mutate cost, put it over or under target non-Human creature you own. They mutate into the creature on top plus all abilities from under it.)\nTrample\nWhenever this creature mutates, destroy target noncreature permanent. Its controller creates a 3/3 green Beast creature token.", "power": "6", "toughness": "6", "colors": ["G"], "color_identity": ["G"], "keywords": ["Mutate", "Trample"], "all_parts": [{"object": "related_card", "id": "574d1a02-a403-4b6e-8ce0-a472325c9c2c", "component": "combo_piece", "name": "Sawtusk Demolisher", "type_line": "Creature \u2014 Beast", "uri": "https://api.scryfall.com/cards/574d1a02-a403-4b6e-8ce0-a472325c9c2c"}, {"object": "related_card", "id": "7b226475-c85c-4b78-9d6a-70cc9545bc31", "component": "token", "name": "Beast", "type_line": "Token Creature \u2014 Beast", "uri": "https://api.scryfall.com/cards/7b226475-c85c-4b78-9d6a-70cc9545bc31"}], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "f60ec786-1f8d-42f7-9abc-0d880fe243f6", "set": "c20", "set_name": "Commander 2020", "set_type": "commander", "set_uri": "https://api.scryfall.com/sets/f60ec786-1f8d-42f7-9abc-0d880fe243f6", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ac20&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/c20?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/574d1a02-a403-4b6e-8ce0-a472325c9c2c/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A7f93a368-9568-456c-9bd6-20d5fe5ad2f1&unique=prints", "collector_number": "64", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Aaron Miller", "artist_ids": ["fc021f3d-773a-4706-bbe7-f602324f511f"], "illustration_id": "a2e42262-b0ec-49ae-a71a-a46145f05d06", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "edhrec_rank": 3121, "preview": {"source": "Player.it", "source_uri": "https://www.player.it/anteprime/427053-scopriamo-demolitore-zannafalce-ikoria.html", "previewed_at": "2020-04-05"}, "prices": {"usd": "0.24", "usd_foil": null, "usd_etched": null, "eur": "0.15", "eur_foil": null, "tix": "3.99"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=484911", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Sawtusk+Demolisher&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Sawtusk+Demolisher&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Sawtusk+Demolisher"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/212228?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Sawtusk+Demolisher&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/80709?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "29c3b7fa-78e7-4a0c-bcdc-4b829638e3f6", "oracle_id": "99eb50ef-352f-47c4-91e3-32813cbe0649", "multiverse_ids": [29928], "mtgo_id": 17472, "mtgo_foil_id": 17473, "tcgplayer_id": 10210, "cardmarket_id": 2176, "name": "Scalpelexis", "lang": "en", "released_at": "2002-05-27", "uri": "https://api.scryfall.com/cards/29c3b7fa-78e7-4a0c-bcdc-4b829638e3f6", "scryfall_uri": "https://scryfall.com/card/jud/50/scalpelexis?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/2/9/29c3b7fa-78e7-4a0c-bcdc-4b829638e3f6.jpg?1562629108", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/9/29c3b7fa-78e7-4a0c-bcdc-4b829638e3f6.jpg?1562629108", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/2/9/29c3b7fa-78e7-4a0c-bcdc-4b829638e3f6.jpg?1562629108", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/2/9/29c3b7fa-78e7-4a0c-bcdc-4b829638e3f6.png?1562629108", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/9/29c3b7fa-78e7-4a0c-bcdc-4b829638e3f6.jpg?1562629108", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/2/9/29c3b7fa-78e7-4a0c-bcdc-4b829638e3f6.jpg?1562629108"}, "mana_cost": "{4}{U}", "cmc": 5.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Flying (This creature can't be blocked except by creatures with flying or reach.)\nWhenever Scalpelexis deals combat damage to a player, that player exiles the top four cards of their library. If two or more of those cards have the same name, repeat this process.", "power": "1", "toughness": "5", "colors": ["U"], "color_identity": ["U"], "keywords": ["Flying"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "cd82de1a-36fd-4618-bfe8-b45532a582d9", "set": "jud", "set_name": "Judgment", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/cd82de1a-36fd-4618-bfe8-b45532a582d9", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ajud&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/jud?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/29c3b7fa-78e7-4a0c-bcdc-4b829638e3f6/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A99eb50ef-352f-47c4-91e3-32813cbe0649&unique=prints", "collector_number": "50", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Mark Tedin", "artist_ids": ["9ee9a9cc-c09e-486f-918b-69f80cbc4188"], "illustration_id": "9c78a655-e879-4a42-bfa8-d3d391d0880b", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 17104, "penny_rank": 5269, "prices": {"usd": "0.24", "usd_foil": "3.94", "usd_etched": null, "eur": "0.40", "eur_foil": "2.99", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=29928", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Scalpelexis&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Scalpelexis&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Scalpelexis"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/10210?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Scalpelexis&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/17472?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "d80f7fa7-e7c4-4fc4-99bf-8a8502965fc8", "oracle_id": "9e66f2d6-cc51-4747-914d-2c04e439da2b", "multiverse_ids": [4787], "mtgo_id": 10007, "mtgo_foil_id": 10008, "tcgplayer_id": 5712, "cardmarket_id": 8882, "name": "Scragnoth", "lang": "en", "released_at": "1997-10-14", "uri": "https://api.scryfall.com/cards/d80f7fa7-e7c4-4fc4-99bf-8a8502965fc8", "scryfall_uri": "https://scryfall.com/card/tmp/253/scragnoth?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/d/8/d80f7fa7-e7c4-4fc4-99bf-8a8502965fc8.jpg?1562056876", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/8/d80f7fa7-e7c4-4fc4-99bf-8a8502965fc8.jpg?1562056876", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/d/8/d80f7fa7-e7c4-4fc4-99bf-8a8502965fc8.jpg?1562056876", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/d/8/d80f7fa7-e7c4-4fc4-99bf-8a8502965fc8.png?1562056876", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/8/d80f7fa7-e7c4-4fc4-99bf-8a8502965fc8.jpg?1562056876", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/d/8/d80f7fa7-e7c4-4fc4-99bf-8a8502965fc8.jpg?1562056876"}, "mana_cost": "{4}{G}", "cmc": 5.0, "type_line": "Creature \u2014 Beast", "oracle_text": "This spell can't be countered.\nProtection from blue", "power": "3", "toughness": "4", "colors": ["G"], "color_identity": ["G"], "keywords": ["Protection"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "restricted", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "10df3a67-178e-4363-8668-34f0e6edf2a7", "set": "tmp", "set_name": "Tempest", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/10df3a67-178e-4363-8668-34f0e6edf2a7", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Atmp&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/tmp?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/d80f7fa7-e7c4-4fc4-99bf-8a8502965fc8/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A9e66f2d6-cc51-4747-914d-2c04e439da2b&unique=prints", "collector_number": "253", "digital": false, "rarity": "uncommon", "flavor_text": "It possesses no intelligence, only counter-intelligence.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Jeff Laubenstein", "artist_ids": ["7c5b6391-2a5a-4b78-b19d-2b181149cb0f"], "illustration_id": "60f0f407-1b72-487c-a7e1-0621e6b9b947", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 22320, "penny_rank": 7449, "prices": {"usd": "0.13", "usd_foil": null, "usd_etched": null, "eur": "0.24", "eur_foil": null, "tix": "0.11"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=4787", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Scragnoth&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Scragnoth&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Scragnoth"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/5712?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Scragnoth&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/10007?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "10c02902-4e3a-445e-9dd9-116806ddc966", "oracle_id": "58bbd316-e22c-4c23-8024-364122d1e9a2", "multiverse_ids": [4684], "mtgo_id": 9983, "mtgo_foil_id": 9984, "tcgplayer_id": 5713, "cardmarket_id": 8784, "name": "Screeching Harpy", "lang": "en", "released_at": "1997-10-14", "uri": "https://api.scryfall.com/cards/10c02902-4e3a-445e-9dd9-116806ddc966", "scryfall_uri": "https://scryfall.com/card/tmp/155/screeching-harpy?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/1/0/10c02902-4e3a-445e-9dd9-116806ddc966.jpg?1562052779", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/0/10c02902-4e3a-445e-9dd9-116806ddc966.jpg?1562052779", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/1/0/10c02902-4e3a-445e-9dd9-116806ddc966.jpg?1562052779", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/1/0/10c02902-4e3a-445e-9dd9-116806ddc966.png?1562052779", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/0/10c02902-4e3a-445e-9dd9-116806ddc966.jpg?1562052779", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/1/0/10c02902-4e3a-445e-9dd9-116806ddc966.jpg?1562052779"}, "mana_cost": "{2}{B}{B}", "cmc": 4.0, "type_line": "Creature \u2014 Harpy Beast", "oracle_text": "Flying\n{1}{B}: Regenerate Screeching Harpy.", "power": "2", "toughness": "2", "colors": ["B"], "color_identity": ["B"], "keywords": ["Flying"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "restricted", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "10df3a67-178e-4363-8668-34f0e6edf2a7", "set": "tmp", "set_name": "Tempest", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/10df3a67-178e-4363-8668-34f0e6edf2a7", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Atmp&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/tmp?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/10c02902-4e3a-445e-9dd9-116806ddc966/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A58bbd316-e22c-4c23-8024-364122d1e9a2&unique=prints", "collector_number": "155", "digital": false, "rarity": "uncommon", "flavor_text": "\"They are called 'fowl' for a reason.\"\n\u2014Mirri of the *Weatherlight*", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Una Fricker", "artist_ids": ["0471a371-1bf8-49f2-8e76-cbe3a0bfa7e8"], "illustration_id": "af3fe383-ace4-4dbd-a731-b1db12067b75", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 23201, "prices": {"usd": "0.10", "usd_foil": null, "usd_etched": null, "eur": "0.05", "eur_foil": null, "tix": "0.07"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=4684", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Screeching+Harpy&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Screeching+Harpy&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Screeching+Harpy"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/5713?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Screeching+Harpy&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/9983?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "ca11015e-200b-488c-8bf5-662dcc03cd2d", "oracle_id": "c5fdcbc9-e7da-4a88-95cf-c526f10ad96e", "multiverse_ids": [26362], "mtgo_id": 15177, "mtgo_foil_id": 15178, "tcgplayer_id": 7867, "cardmarket_id": 3286, "name": "Sea Snidd", "lang": "en", "released_at": "2001-02-05", "uri": "https://api.scryfall.com/cards/ca11015e-200b-488c-8bf5-662dcc03cd2d", "scryfall_uri": "https://scryfall.com/card/pls/31/sea-snidd?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/c/a/ca11015e-200b-488c-8bf5-662dcc03cd2d.jpg?1562937660", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/a/ca11015e-200b-488c-8bf5-662dcc03cd2d.jpg?1562937660", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/c/a/ca11015e-200b-488c-8bf5-662dcc03cd2d.jpg?1562937660", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/c/a/ca11015e-200b-488c-8bf5-662dcc03cd2d.png?1562937660", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/a/ca11015e-200b-488c-8bf5-662dcc03cd2d.jpg?1562937660", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/c/a/ca11015e-200b-488c-8bf5-662dcc03cd2d.jpg?1562937660"}, "mana_cost": "{4}{U}", "cmc": 5.0, "type_line": "Creature \u2014 Beast", "oracle_text": "{T}: Target land becomes the basic land type of your choice until end of turn.", "power": "3", "toughness": "3", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "82dc193b-bd5f-4883-a93f-a4155b467ee0", "set": "pls", "set_name": "Planeshift", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/82dc193b-bd5f-4883-a93f-a4155b467ee0", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Apls&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/pls?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/ca11015e-200b-488c-8bf5-662dcc03cd2d/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ac5fdcbc9-e7da-4a88-95cf-c526f10ad96e&unique=prints", "collector_number": "31", "digital": false, "rarity": "common", "flavor_text": "It always has the home-turf advantage.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Chippy", "artist_ids": ["a36f01a0-e51a-48b2-a556-b9b3bc73f969"], "illustration_id": "576e205f-11c0-4df3-b6e6-98108990a72c", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 22672, "prices": {"usd": "0.09", "usd_foil": "0.22", "usd_etched": null, "eur": "0.04", "eur_foil": "0.49", "tix": "0.11"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=26362", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Sea+Snidd&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Sea+Snidd&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Sea+Snidd"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/7867?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Sea+Snidd&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/15177?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "fc2de8a4-0d84-4f7c-bbe4-3a31172186ab", "oracle_id": "b90e370a-5080-485e-a957-93d5f60e6cdb", "multiverse_ids": [39656], "mtgo_id": 18059, "mtgo_foil_id": 18060, "tcgplayer_id": 10608, "cardmarket_id": 1857, "name": "Shaleskin Bruiser", "lang": "en", "released_at": "2002-10-07", "uri": "https://api.scryfall.com/cards/fc2de8a4-0d84-4f7c-bbe4-3a31172186ab", "scryfall_uri": "https://scryfall.com/card/ons/226/shaleskin-bruiser?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/f/c/fc2de8a4-0d84-4f7c-bbe4-3a31172186ab.jpg?1562954767", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/c/fc2de8a4-0d84-4f7c-bbe4-3a31172186ab.jpg?1562954767", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/f/c/fc2de8a4-0d84-4f7c-bbe4-3a31172186ab.jpg?1562954767", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/f/c/fc2de8a4-0d84-4f7c-bbe4-3a31172186ab.png?1562954767", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/c/fc2de8a4-0d84-4f7c-bbe4-3a31172186ab.jpg?1562954767", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/f/c/fc2de8a4-0d84-4f7c-bbe4-3a31172186ab.jpg?1562954767"}, "mana_cost": "{6}{R}", "cmc": 7.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Trample\nWhenever Shaleskin Bruiser attacks, it gets +3/+0 until end of turn for each other attacking Beast.", "power": "4", "toughness": "4", "colors": ["R"], "color_identity": ["R"], "keywords": ["Trample"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "restricted", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "914a6c6d-cb3b-45e8-a2db-9978a2339faf", "set": "ons", "set_name": "Onslaught", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/914a6c6d-cb3b-45e8-a2db-9978a2339faf", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aons&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ons?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/fc2de8a4-0d84-4f7c-bbe4-3a31172186ab/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ab90e370a-5080-485e-a957-93d5f60e6cdb&unique=prints", "collector_number": "226", "digital": false, "rarity": "uncommon", "flavor_text": "Its only predators are the elements.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Mark Zug", "artist_ids": ["48e2b98c-5467-4671-bd42-4c3746115117"], "illustration_id": "87e6d912-55c2-427e-ac54-6c1cbef46a3a", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 21055, "prices": {"usd": "0.18", "usd_foil": "0.38", "usd_etched": null, "eur": "0.25", "eur_foil": "0.35", "tix": "0.06"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=39656", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Shaleskin+Bruiser&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Shaleskin+Bruiser&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Shaleskin+Bruiser"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/10608?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Shaleskin+Bruiser&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/18059?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "42658b33-9a12-403b-bc7d-807fbe1f1a36", "oracle_id": "859502df-127f-4577-88c0-923119d37b9d", "multiverse_ids": [44282], "mtgo_id": 18575, "mtgo_foil_id": 18576, "tcgplayer_id": 10672, "cardmarket_id": 2091, "name": "Shaleskin Plower", "lang": "en", "released_at": "2003-02-03", "uri": "https://api.scryfall.com/cards/42658b33-9a12-403b-bc7d-807fbe1f1a36", "scryfall_uri": "https://scryfall.com/card/lgn/110/shaleskin-plower?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/4/2/42658b33-9a12-403b-bc7d-807fbe1f1a36.jpg?1562908348", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/2/42658b33-9a12-403b-bc7d-807fbe1f1a36.jpg?1562908348", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/4/2/42658b33-9a12-403b-bc7d-807fbe1f1a36.jpg?1562908348", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/4/2/42658b33-9a12-403b-bc7d-807fbe1f1a36.png?1562908348", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/2/42658b33-9a12-403b-bc7d-807fbe1f1a36.jpg?1562908348", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/4/2/42658b33-9a12-403b-bc7d-807fbe1f1a36.jpg?1562908348"}, "mana_cost": "{3}{R}", "cmc": 4.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Morph {4}{R} (You may cast this card face down as a 2/2 creature for {3}. Turn it face up any time for its morph cost.)\nWhen Shaleskin Plower is turned face up, destroy target land.", "power": "3", "toughness": "2", "colors": ["R"], "color_identity": ["R"], "keywords": ["Morph"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "c2d60a18-1a81-4784-8e0c-e1de2f43c5cf", "set": "lgn", "set_name": "Legions", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/c2d60a18-1a81-4784-8e0c-e1de2f43c5cf", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Algn&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/lgn?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/42658b33-9a12-403b-bc7d-807fbe1f1a36/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A859502df-127f-4577-88c0-923119d37b9d&unique=prints", "collector_number": "110", "digital": false, "rarity": "common", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Daren Bader", "artist_ids": ["7da1a585-c875-45e4-b322-5da9e8e1f651"], "illustration_id": "ad510da0-5b58-4bf9-80e9-f975af2545c6", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 21614, "penny_rank": 5517, "prices": {"usd": "0.08", "usd_foil": "0.33", "usd_etched": null, "eur": "0.02", "eur_foil": "0.22", "tix": "0.06"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=44282", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Shaleskin+Plower&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Shaleskin+Plower&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Shaleskin+Plower"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/10672?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Shaleskin+Plower&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/18575?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "7958a1e5-b671-4ecb-95de-240ffaf5021e", "oracle_id": "4b78222f-6973-42a3-987e-eb8cc8fd6c76", "multiverse_ids": [124445], "mtgo_id": 26291, "mtgo_foil_id": 26292, "tcgplayer_id": 14807, "cardmarket_id": 14300, "name": "Shivan Wumpus", "lang": "en", "released_at": "2007-02-02", "uri": "https://api.scryfall.com/cards/7958a1e5-b671-4ecb-95de-240ffaf5021e", "scryfall_uri": "https://scryfall.com/card/plc/121/shivan-wumpus?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/7/9/7958a1e5-b671-4ecb-95de-240ffaf5021e.jpg?1562574880", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/9/7958a1e5-b671-4ecb-95de-240ffaf5021e.jpg?1562574880", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/7/9/7958a1e5-b671-4ecb-95de-240ffaf5021e.jpg?1562574880", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/7/9/7958a1e5-b671-4ecb-95de-240ffaf5021e.png?1562574880", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/9/7958a1e5-b671-4ecb-95de-240ffaf5021e.jpg?1562574880", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/7/9/7958a1e5-b671-4ecb-95de-240ffaf5021e.jpg?1562574880"}, "mana_cost": "{3}{R}", "cmc": 4.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Trample\nWhen Shivan Wumpus enters the battlefield, any player may sacrifice a land. If a player does, put Shivan Wumpus on top of its owner's library.", "power": "6", "toughness": "6", "colors": ["R"], "color_identity": ["R"], "keywords": ["Trample"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "5a1b571c-73e9-4c14-b9d4-a62507d85789", "set": "plc", "set_name": "Planar Chaos", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/5a1b571c-73e9-4c14-b9d4-a62507d85789", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aplc&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/plc?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/7958a1e5-b671-4ecb-95de-240ffaf5021e/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A4b78222f-6973-42a3-987e-eb8cc8fd6c76&unique=prints", "collector_number": "121", "digital": false, "rarity": "rare", "flavor_text": "It's easier to move the village than to divert the wumpus.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Ron Spears", "artist_ids": ["fce9030b-86bd-4439-b06a-920a1eeb184c"], "illustration_id": "4edc8cf8-5f1d-4801-9100-f2cffd51b3e5", "border_color": "black", "frame": "2003", "frame_effects": ["colorshifted"], "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 17004, "penny_rank": 5935, "prices": {"usd": "0.28", "usd_foil": "3.75", "usd_etched": null, "eur": "0.15", "eur_foil": "0.97", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=124445", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Shivan+Wumpus&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Shivan+Wumpus&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Shivan+Wumpus"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/14807?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Shivan+Wumpus&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/26291?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "157e5763-4892-47e4-8fd5-f576844c0a0d", "oracle_id": "c5e2ed91-edd2-47ec-809e-3e4a4245e2ce", "multiverse_ids": [175390], "mtgo_id": 31335, "mtgo_foil_id": 31336, "tcgplayer_id": 27797, "cardmarket_id": 19853, "name": "Shore Snapper", "lang": "en", "released_at": "2008-10-03", "uri": "https://api.scryfall.com/cards/157e5763-4892-47e4-8fd5-f576844c0a0d", "scryfall_uri": "https://scryfall.com/card/ala/87/shore-snapper?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/1/5/157e5763-4892-47e4-8fd5-f576844c0a0d.jpg?1562701373", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/5/157e5763-4892-47e4-8fd5-f576844c0a0d.jpg?1562701373", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/1/5/157e5763-4892-47e4-8fd5-f576844c0a0d.jpg?1562701373", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/1/5/157e5763-4892-47e4-8fd5-f576844c0a0d.png?1562701373", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/5/157e5763-4892-47e4-8fd5-f576844c0a0d.jpg?1562701373", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/1/5/157e5763-4892-47e4-8fd5-f576844c0a0d.jpg?1562701373"}, "mana_cost": "{2}{B}", "cmc": 3.0, "type_line": "Creature \u2014 Beast", "oracle_text": "{U}: Shore Snapper gains islandwalk until end of turn. (It can't be blocked as long as defending player controls an Island.)", "power": "2", "toughness": "2", "colors": ["B"], "color_identity": ["B", "U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "d667aaec-09b7-4406-b6fa-60795132dc11", "set": "ala", "set_name": "Shards of Alara", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/d667aaec-09b7-4406-b6fa-60795132dc11", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aala&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ala?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/157e5763-4892-47e4-8fd5-f576844c0a0d/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ac5e2ed91-edd2-47ec-809e-3e4a4245e2ce&unique=prints", "collector_number": "87", "digital": false, "rarity": "common", "flavor_text": "Kathari, the sickly aven of Grixis, have learned that the corpses by the shoreline are more trap than treat.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Dave Kendall", "artist_ids": ["8a5540a8-18c9-4fa9-802c-59d6866114d5"], "illustration_id": "f6c96c6a-85b1-4e33-a6ba-2b9ce6ae4309", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 23247, "prices": {"usd": "0.05", "usd_foil": "0.73", "usd_etched": null, "eur": "0.03", "eur_foil": "0.05", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=175390", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Shore+Snapper&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Shore+Snapper&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Shore+Snapper"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/27797?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Shore+Snapper&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/31335?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "918fb717-8ad3-4804-a62e-902baea58cfb", "oracle_id": "cadf7be1-4a74-4163-bb2f-6bfbbb557973", "multiverse_ids": [389670], "mtgo_id": 55163, "mtgo_foil_id": 55164, "tcgplayer_id": 94380, "cardmarket_id": 270677, "name": "Siege Behemoth", "lang": "en", "released_at": "2014-11-07", "uri": "https://api.scryfall.com/cards/918fb717-8ad3-4804-a62e-902baea58cfb", "scryfall_uri": "https://scryfall.com/card/c14/46/siege-behemoth?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/9/1/918fb717-8ad3-4804-a62e-902baea58cfb.jpg?1561950184", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/1/918fb717-8ad3-4804-a62e-902baea58cfb.jpg?1561950184", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/9/1/918fb717-8ad3-4804-a62e-902baea58cfb.jpg?1561950184", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/9/1/918fb717-8ad3-4804-a62e-902baea58cfb.png?1561950184", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/1/918fb717-8ad3-4804-a62e-902baea58cfb.jpg?1561950184", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/9/1/918fb717-8ad3-4804-a62e-902baea58cfb.jpg?1561950184"}, "mana_cost": "{5}{G}{G}", "cmc": 7.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Hexproof\nAs long as Siege Behemoth is attacking, for each creature you control, you may have that creature assign its combat damage as though it weren't blocked.", "power": "7", "toughness": "4", "colors": ["G"], "color_identity": ["G"], "keywords": ["Hexproof"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "0980a6e2-eb78-4ad2-8396-cef08fce365e", "set": "c14", "set_name": "Commander 2014", "set_type": "commander", "set_uri": "https://api.scryfall.com/sets/0980a6e2-eb78-4ad2-8396-cef08fce365e", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ac14&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/c14?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/918fb717-8ad3-4804-a62e-902baea58cfb/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Acadf7be1-4a74-4163-bb2f-6bfbbb557973&unique=prints", "collector_number": "46", "digital": false, "rarity": "rare", "flavor_text": "\"Hold the line, hold the li\u2014\"\n\u2014General Srok, last words", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Jason A. Engle", "artist_ids": ["02e2b5de-4341-464c-8fdb-a1adbf873bc0"], "illustration_id": "955e5187-e095-4bb1-860b-9c0cceb93f81", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "edhrec_rank": 5234, "prices": {"usd": "2.23", "usd_foil": null, "usd_etched": null, "eur": "0.79", "eur_foil": null, "tix": "1.87"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=389670", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Siege+Behemoth&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Siege+Behemoth&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Siege+Behemoth"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/94380?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Siege+Behemoth&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/55163?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "e0195ee6-c5d9-402e-8339-2caa50c4e46b", "oracle_id": "277ff122-2d6e-441e-9ec1-980cdb393982", "multiverse_ids": [159688], "mtgo_id": 32244, "mtgo_foil_id": 32245, "tcgplayer_id": 31804, "cardmarket_id": 20958, "name": "Sigiled Behemoth", "lang": "en", "released_at": "2009-04-30", "uri": "https://api.scryfall.com/cards/e0195ee6-c5d9-402e-8339-2caa50c4e46b", "scryfall_uri": "https://scryfall.com/card/arb/79/sigiled-behemoth?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/e/0/e0195ee6-c5d9-402e-8339-2caa50c4e46b.jpg?1562644651", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/0/e0195ee6-c5d9-402e-8339-2caa50c4e46b.jpg?1562644651", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/e/0/e0195ee6-c5d9-402e-8339-2caa50c4e46b.jpg?1562644651", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/e/0/e0195ee6-c5d9-402e-8339-2caa50c4e46b.png?1562644651", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/0/e0195ee6-c5d9-402e-8339-2caa50c4e46b.jpg?1562644651", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/e/0/e0195ee6-c5d9-402e-8339-2caa50c4e46b.jpg?1562644651"}, "mana_cost": "{4}{G}{W}", "cmc": 6.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Exalted (Whenever a creature you control attacks alone, that creature gets +1/+1 until end of turn.)", "power": "5", "toughness": "4", "colors": ["G", "W"], "color_identity": ["G", "W"], "keywords": ["Exalted"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "db486ec5-141d-4781-9ee5-5456926934c1", "set": "arb", "set_name": "Alara Reborn", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/db486ec5-141d-4781-9ee5-5456926934c1", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aarb&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/arb?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/e0195ee6-c5d9-402e-8339-2caa50c4e46b/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A277ff122-2d6e-441e-9ec1-980cdb393982&unique=prints", "collector_number": "79", "digital": false, "rarity": "common", "flavor_text": "\"Do not mistake a behemoth's assistance for subservience.\"\n\u2014Mayael the Anima", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Donato Giancola", "artist_ids": ["90332db2-aecb-4d79-917b-95cbeb8d0cb6"], "illustration_id": "7384ddc1-b2c3-43d1-8203-d91df8c37f7d", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 16974, "prices": {"usd": "0.07", "usd_foil": "0.24", "usd_etched": null, "eur": "0.12", "eur_foil": "0.10", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=159688", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Sigiled+Behemoth&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Sigiled+Behemoth&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Sigiled+Behemoth"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/31804?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Sigiled+Behemoth&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/32244?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "f334e864-4e62-4bc3-9470-661be3d879e2", "oracle_id": "5ba1595a-6578-459d-96fe-fdfb84ac34d5", "multiverse_ids": [24655], "mtgo_id": 14189, "mtgo_foil_id": 14190, "tcgplayer_id": 7371, "cardmarket_id": 4017, "name": "Silt Crawler", "lang": "en", "released_at": "2000-06-05", "uri": "https://api.scryfall.com/cards/f334e864-4e62-4bc3-9470-661be3d879e2", "scryfall_uri": "https://scryfall.com/card/pcy/123/silt-crawler?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/f/3/f334e864-4e62-4bc3-9470-661be3d879e2.jpg?1562940692", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/3/f334e864-4e62-4bc3-9470-661be3d879e2.jpg?1562940692", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/f/3/f334e864-4e62-4bc3-9470-661be3d879e2.jpg?1562940692", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/f/3/f334e864-4e62-4bc3-9470-661be3d879e2.png?1562940692", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/3/f334e864-4e62-4bc3-9470-661be3d879e2.jpg?1562940692", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/f/3/f334e864-4e62-4bc3-9470-661be3d879e2.jpg?1562940692"}, "mana_cost": "{2}{G}", "cmc": 3.0, "type_line": "Creature \u2014 Beast", "oracle_text": "When Silt Crawler enters the battlefield, tap all lands you control.", "power": "3", "toughness": "3", "colors": ["G"], "color_identity": ["G"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "c233bd36-57c0-4aa2-ae6c-7aeabfb4e3ce", "set": "pcy", "set_name": "Prophecy", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/c233bd36-57c0-4aa2-ae6c-7aeabfb4e3ce", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Apcy&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/pcy?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/f334e864-4e62-4bc3-9470-661be3d879e2/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A5ba1595a-6578-459d-96fe-fdfb84ac34d5&unique=prints", "collector_number": "123", "digital": false, "rarity": "common", "flavor_text": "If they could replenish the land instead of draining it, Jamuraa would be teeming with them.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Arnie Swekel", "artist_ids": ["af10ecf2-eb82-4100-97b2-6c236b0fa644"], "illustration_id": "3e279f84-057c-490a-ac73-de0a3f24319b", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 19875, "prices": {"usd": "0.16", "usd_foil": "0.41", "usd_etched": null, "eur": "0.01", "eur_foil": "0.75", "tix": "0.09"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=24655", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Silt+Crawler&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Silt+Crawler&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Silt+Crawler"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/7371?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Silt+Crawler&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/14189?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "0379c99c-94b1-4c48-b62d-7accb594ef1a", "oracle_id": "b40202ff-8c51-4ca5-a641-61bc5c21ba79", "multiverse_ids": [73934], "tcgplayer_id": 37926, "cardmarket_id": 14852, "name": "Six-y Beast", "lang": "en", "released_at": "2004-11-19", "uri": "https://api.scryfall.com/cards/0379c99c-94b1-4c48-b62d-7accb594ef1a", "scryfall_uri": "https://scryfall.com/card/unh/89/six-y-beast?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/0/3/0379c99c-94b1-4c48-b62d-7accb594ef1a.jpg?1562487439", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/3/0379c99c-94b1-4c48-b62d-7accb594ef1a.jpg?1562487439", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/0/3/0379c99c-94b1-4c48-b62d-7accb594ef1a.jpg?1562487439", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/0/3/0379c99c-94b1-4c48-b62d-7accb594ef1a.png?1562487439", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/3/0379c99c-94b1-4c48-b62d-7accb594ef1a.jpg?1562487439", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/0/3/0379c99c-94b1-4c48-b62d-7accb594ef1a.jpg?1562487439"}, "mana_cost": "{3}{R}", "cmc": 4.0, "type_line": "Creature \u2014 Beast", "oracle_text": "As Six-y Beast enters the battlefield, you secretly put six or fewer +1/+1 counters on it, then an opponent guesses the number of counters. If that player guesses right, sacrifice Six-y Beast after it enters the battlefield.", "power": "0", "toughness": "0", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "not_legal", "pauper": "not_legal", "vintage": "not_legal", "penny": "not_legal", "commander": "not_legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "not_legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "4c8bc76a-05a5-43db-aaf0-34deb347b871", "set": "unh", "set_name": "Unhinged", "set_type": "funny", "set_uri": "https://api.scryfall.com/sets/4c8bc76a-05a5-43db-aaf0-34deb347b871", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aunh&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/unh?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/0379c99c-94b1-4c48-b62d-7accb594ef1a/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ab40202ff-8c51-4ca5-a641-61bc5c21ba79&unique=prints", "collector_number": "89", "digital": false, "rarity": "uncommon", "flavor_text": "Is it six?", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Anson Maddocks", "artist_ids": ["634430a7-b5c3-4e4a-b2ac-164e084e47c9"], "illustration_id": "e07c4ad1-7af9-491c-b59a-27c5ef56de6a", "border_color": "silver", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "prices": {"usd": "0.19", "usd_foil": "1.48", "usd_etched": null, "eur": "0.04", "eur_foil": "0.99", "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=73934", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Six-y+Beast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Six-y+Beast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Six-y+Beast"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/37926?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Six-y+Beast&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Six-y+Beast&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "2b2dcafd-eb72-4f3a-9c1c-ba17fe30bf0f", "oracle_id": "72350461-8231-4737-a57f-f20fb5d179a3", "multiverse_ids": [366458], "mtgo_id": 47849, "mtgo_foil_id": 47850, "tcgplayer_id": 67356, "cardmarket_id": 259839, "name": "Skarrg Goliath", "lang": "en", "released_at": "2013-02-01", "uri": "https://api.scryfall.com/cards/2b2dcafd-eb72-4f3a-9c1c-ba17fe30bf0f", "scryfall_uri": "https://scryfall.com/card/gtc/133/skarrg-goliath?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/2/b/2b2dcafd-eb72-4f3a-9c1c-ba17fe30bf0f.jpg?1561820572", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/b/2b2dcafd-eb72-4f3a-9c1c-ba17fe30bf0f.jpg?1561820572", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/2/b/2b2dcafd-eb72-4f3a-9c1c-ba17fe30bf0f.jpg?1561820572", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/2/b/2b2dcafd-eb72-4f3a-9c1c-ba17fe30bf0f.png?1561820572", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/b/2b2dcafd-eb72-4f3a-9c1c-ba17fe30bf0f.jpg?1561820572", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/2/b/2b2dcafd-eb72-4f3a-9c1c-ba17fe30bf0f.jpg?1561820572"}, "mana_cost": "{6}{G}{G}", "cmc": 8.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Trample\nBloodrush \u2014 {5}{G}{G}, Discard Skarrg Goliath: Target attacking creature gets +9/+9 and gains trample until end of turn.", "power": "9", "toughness": "9", "colors": ["G"], "color_identity": ["G"], "keywords": ["Bloodrush", "Trample"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "035a05f7-e020-4f50-a141-ed16ba704bd2", "set": "gtc", "set_name": "Gatecrash", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/035a05f7-e020-4f50-a141-ed16ba704bd2", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Agtc&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/gtc?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/2b2dcafd-eb72-4f3a-9c1c-ba17fe30bf0f/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A72350461-8231-4737-a57f-f20fb5d179a3&unique=prints", "collector_number": "133", "digital": false, "rarity": "rare", "watermark": "gruul", "flavor_text": "\"They bind us with their laws. We free ourselves with nature's fist.\"\n\u2014Nikya of the Old Ways", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Scott Chou", "artist_ids": ["9e048547-f9c3-4958-9c2c-91e45df7c6ae"], "illustration_id": "3cb4847b-2d56-46fa-a369-fdf163ce4b4c", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 12263, "penny_rank": 8040, "prices": {"usd": "0.15", "usd_foil": "0.37", "usd_etched": null, "eur": "0.10", "eur_foil": "0.81", "tix": "0.01"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=366458", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Skarrg+Goliath&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Skarrg+Goliath&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Skarrg+Goliath"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/67356?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Skarrg+Goliath&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/47849?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "0357e2ce-da68-46ff-a7e6-86df8a8ce91c", "oracle_id": "72350461-8231-4737-a57f-f20fb5d179a3", "multiverse_ids": [], "tcgplayer_id": 67368, "cardmarket_id": 260127, "name": "Skarrg Goliath", "lang": "en", "released_at": "2013-01-26", "uri": "https://api.scryfall.com/cards/0357e2ce-da68-46ff-a7e6-86df8a8ce91c", "scryfall_uri": "https://scryfall.com/card/pgtc/133%E2%98%85/skarrg-goliath?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/0/3/0357e2ce-da68-46ff-a7e6-86df8a8ce91c.jpg?1605371304", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/3/0357e2ce-da68-46ff-a7e6-86df8a8ce91c.jpg?1605371304", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/0/3/0357e2ce-da68-46ff-a7e6-86df8a8ce91c.jpg?1605371304", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/0/3/0357e2ce-da68-46ff-a7e6-86df8a8ce91c.png?1605371304", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/3/0357e2ce-da68-46ff-a7e6-86df8a8ce91c.jpg?1605371304", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/0/3/0357e2ce-da68-46ff-a7e6-86df8a8ce91c.jpg?1605371304"}, "mana_cost": "{6}{G}{G}", "cmc": 8.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Trample\nBloodrush \u2014 {5}{G}{G}, Discard Skarrg Goliath: Target attacking creature gets +9/+9 and gains trample until end of turn.", "power": "9", "toughness": "9", "colors": ["G"], "color_identity": ["G"], "keywords": ["Bloodrush", "Trample"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": true, "nonfoil": false, "finishes": ["foil"], "oversized": false, "promo": true, "reprint": true, "variation": false, "set_id": "2a51bc89-cf7c-4c31-af17-f46bd45fef40", "set": "pgtc", "set_name": "Gatecrash Promos", "set_type": "promo", "set_uri": "https://api.scryfall.com/sets/2a51bc89-cf7c-4c31-af17-f46bd45fef40", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Apgtc&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/pgtc?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/0357e2ce-da68-46ff-a7e6-86df8a8ce91c/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A72350461-8231-4737-a57f-f20fb5d179a3&unique=prints", "collector_number": "133\u2605", "digital": false, "rarity": "rare", "watermark": "gruul", "flavor_text": "\"They bind us with their laws. We free ourselves with nature's fist.\"\n\u2014Nikya of the Old Ways", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Karl Kopinski", "artist_ids": ["0fad2c48-a56e-4a0b-b512-224f6f238f20"], "illustration_id": "cbe2bfb0-1762-415f-bb0e-5351371e464d", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "promo_types": ["setpromo", "datestamped", "release"], "edhrec_rank": 12263, "penny_rank": 8040, "prices": {"usd": null, "usd_foil": "0.19", "usd_etched": null, "eur": null, "eur_foil": "0.10", "tix": null}, "related_uris": {"tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Skarrg+Goliath&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Skarrg+Goliath&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Skarrg+Goliath"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/67368?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Skarrg+Goliath&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Skarrg+Goliath&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "4cc8a6e6-ed62-4784-ba9a-b1f703fc6119", "oracle_id": "d094f78b-acec-4181-9fee-ca523fb8ccc5", "multiverse_ids": [39754], "mtgo_id": 18039, "mtgo_foil_id": 18040, "tcgplayer_id": 10612, "cardmarket_id": 1862, "name": "Skittish Valesk", "lang": "en", "released_at": "2002-10-07", "uri": "https://api.scryfall.com/cards/4cc8a6e6-ed62-4784-ba9a-b1f703fc6119", "scryfall_uri": "https://scryfall.com/card/ons/231/skittish-valesk?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/4/c/4cc8a6e6-ed62-4784-ba9a-b1f703fc6119.jpg?1562912967", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/c/4cc8a6e6-ed62-4784-ba9a-b1f703fc6119.jpg?1562912967", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/4/c/4cc8a6e6-ed62-4784-ba9a-b1f703fc6119.jpg?1562912967", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/4/c/4cc8a6e6-ed62-4784-ba9a-b1f703fc6119.png?1562912967", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/c/4cc8a6e6-ed62-4784-ba9a-b1f703fc6119.jpg?1562912967", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/4/c/4cc8a6e6-ed62-4784-ba9a-b1f703fc6119.jpg?1562912967"}, "mana_cost": "{6}{R}", "cmc": 7.0, "type_line": "Creature \u2014 Beast", "oracle_text": "At the beginning of your upkeep, flip a coin. If you lose the flip, turn Skittish Valesk face down.\nMorph {5}{R} (You may cast this card face down as a 2/2 creature for {3}. Turn it face up any time for its morph cost.)", "power": "5", "toughness": "5", "colors": ["R"], "color_identity": ["R"], "keywords": ["Morph"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "restricted", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "914a6c6d-cb3b-45e8-a2db-9978a2339faf", "set": "ons", "set_name": "Onslaught", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/914a6c6d-cb3b-45e8-a2db-9978a2339faf", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aons&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ons?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/4cc8a6e6-ed62-4784-ba9a-b1f703fc6119/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ad094f78b-acec-4181-9fee-ca523fb8ccc5&unique=prints", "collector_number": "231", "digital": false, "rarity": "uncommon", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Alan Pollack", "artist_ids": ["70c20ea3-5ad6-4082-a337-6e994ae5828e"], "illustration_id": "31db20fc-6603-4d9f-abd3-17bbe0ec8096", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 19921, "penny_rank": 12509, "prices": {"usd": "0.11", "usd_foil": "0.39", "usd_etched": null, "eur": "0.02", "eur_foil": "0.20", "tix": "0.04"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=39754", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Skittish+Valesk&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Skittish+Valesk&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Skittish+Valesk"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/10612?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Skittish+Valesk&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/18039?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "1c01d17e-45a2-4b6f-aaa5-2af9c8f26181", "oracle_id": "77bee041-6f96-44e3-a18c-b52e508b9bdf", "multiverse_ids": [22892], "mtgo_id": 13937, "mtgo_foil_id": 13938, "tcgplayer_id": 7233, "cardmarket_id": 11839, "name": "Skyshroud Behemoth", "lang": "en", "released_at": "2000-02-14", "uri": "https://api.scryfall.com/cards/1c01d17e-45a2-4b6f-aaa5-2af9c8f26181", "scryfall_uri": "https://scryfall.com/card/nem/116/skyshroud-behemoth?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/1/c/1c01d17e-45a2-4b6f-aaa5-2af9c8f26181.jpg?1562628866", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/c/1c01d17e-45a2-4b6f-aaa5-2af9c8f26181.jpg?1562628866", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/1/c/1c01d17e-45a2-4b6f-aaa5-2af9c8f26181.jpg?1562628866", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/1/c/1c01d17e-45a2-4b6f-aaa5-2af9c8f26181.png?1562628866", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/c/1c01d17e-45a2-4b6f-aaa5-2af9c8f26181.jpg?1562628866", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/1/c/1c01d17e-45a2-4b6f-aaa5-2af9c8f26181.jpg?1562628866"}, "mana_cost": "{5}{G}{G}", "cmc": 7.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Fading 2 (This creature enters the battlefield with two fade counters on it. At the beginning of your upkeep, remove a fade counter from it. If you can't, sacrifice it.)\nSkyshroud Behemoth enters the battlefield tapped.", "power": "10", "toughness": "10", "colors": ["G"], "color_identity": ["G"], "keywords": ["Fading"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "fa5d1fdb-f781-473d-b14d-50396d40d43f", "set": "nem", "set_name": "Nemesis", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/fa5d1fdb-f781-473d-b14d-50396d40d43f", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Anem&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/nem?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/1c01d17e-45a2-4b6f-aaa5-2af9c8f26181/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A77bee041-6f96-44e3-a18c-b52e508b9bdf&unique=prints", "collector_number": "116", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Eric Peterson", "artist_ids": ["0fc26d3b-4c0e-41d1-8eb3-286ab55a2328"], "illustration_id": "e01250a0-b0cb-4859-876b-c267e4df7516", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 21484, "prices": {"usd": "0.18", "usd_foil": "2.94", "usd_etched": null, "eur": "0.35", "eur_foil": "12.00", "tix": "0.10"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=22892", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Skyshroud+Behemoth&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Skyshroud+Behemoth&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Skyshroud+Behemoth"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/7233?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Skyshroud+Behemoth&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/13937?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "a558c4f5-a716-4e46-9234-5f84f1bd57aa", "oracle_id": "fbd71691-d0fd-4842-913b-fe6096d509a3", "multiverse_ids": [21372], "mtgo_id": 13979, "mtgo_foil_id": 13980, "tcgplayer_id": 7235, "cardmarket_id": 11841, "name": "Skyshroud Cutter", "lang": "en", "released_at": "2000-02-14", "uri": "https://api.scryfall.com/cards/a558c4f5-a716-4e46-9234-5f84f1bd57aa", "scryfall_uri": "https://scryfall.com/card/nem/118/skyshroud-cutter?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/a/5/a558c4f5-a716-4e46-9234-5f84f1bd57aa.jpg?1562631366", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/5/a558c4f5-a716-4e46-9234-5f84f1bd57aa.jpg?1562631366", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/a/5/a558c4f5-a716-4e46-9234-5f84f1bd57aa.jpg?1562631366", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/a/5/a558c4f5-a716-4e46-9234-5f84f1bd57aa.png?1562631366", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/5/a558c4f5-a716-4e46-9234-5f84f1bd57aa.jpg?1562631366", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/a/5/a558c4f5-a716-4e46-9234-5f84f1bd57aa.jpg?1562631366"}, "mana_cost": "{3}{G}", "cmc": 4.0, "type_line": "Creature \u2014 Beast", "oracle_text": "If you control a Forest, rather than pay this spell's mana cost, you may have each other player gain 5 life.", "power": "2", "toughness": "2", "colors": ["G"], "color_identity": ["G"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "fa5d1fdb-f781-473d-b14d-50396d40d43f", "set": "nem", "set_name": "Nemesis", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/fa5d1fdb-f781-473d-b14d-50396d40d43f", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Anem&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/nem?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/a558c4f5-a716-4e46-9234-5f84f1bd57aa/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Afbd71691-d0fd-4842-913b-fe6096d509a3&unique=prints", "collector_number": "118", "digital": false, "rarity": "common", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Tony Szczudlo", "artist_ids": ["1952c90b-a5a7-4328-9f7c-e11064f59daf"], "illustration_id": "9fa9d5f1-2863-49a0-a22c-9cc990498696", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 18199, "penny_rank": 2626, "prices": {"usd": "0.13", "usd_foil": "2.58", "usd_etched": null, "eur": "0.10", "eur_foil": "1.90", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=21372", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Skyshroud+Cutter&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Skyshroud+Cutter&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Skyshroud+Cutter"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/7235?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Skyshroud+Cutter&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/13979?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "410896ab-d3dc-478c-bfd1-c0cad5b1180a", "oracle_id": "34a160bc-5d7e-483c-b24c-ab30b7d313b0", "multiverse_ids": [21360], "mtgo_id": 13823, "mtgo_foil_id": 13824, "tcgplayer_id": 7237, "cardmarket_id": 11843, "name": "Skyshroud Ridgeback", "lang": "en", "released_at": "2000-02-14", "uri": "https://api.scryfall.com/cards/410896ab-d3dc-478c-bfd1-c0cad5b1180a", "scryfall_uri": "https://scryfall.com/card/nem/120/skyshroud-ridgeback?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/4/1/410896ab-d3dc-478c-bfd1-c0cad5b1180a.jpg?1562629551", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/1/410896ab-d3dc-478c-bfd1-c0cad5b1180a.jpg?1562629551", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/4/1/410896ab-d3dc-478c-bfd1-c0cad5b1180a.jpg?1562629551", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/4/1/410896ab-d3dc-478c-bfd1-c0cad5b1180a.png?1562629551", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/1/410896ab-d3dc-478c-bfd1-c0cad5b1180a.jpg?1562629551", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/4/1/410896ab-d3dc-478c-bfd1-c0cad5b1180a.jpg?1562629551"}, "mana_cost": "{G}", "cmc": 1.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Fading 2 (This creature enters the battlefield with two fade counters on it. At the beginning of your upkeep, remove a fade counter from it. If you can't, sacrifice it.)", "power": "2", "toughness": "3", "colors": ["G"], "color_identity": ["G"], "keywords": ["Fading"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "fa5d1fdb-f781-473d-b14d-50396d40d43f", "set": "nem", "set_name": "Nemesis", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/fa5d1fdb-f781-473d-b14d-50396d40d43f", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Anem&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/nem?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/410896ab-d3dc-478c-bfd1-c0cad5b1180a/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A34a160bc-5d7e-483c-b24c-ab30b7d313b0&unique=prints", "collector_number": "120", "digital": false, "rarity": "common", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Carl Critchlow", "artist_ids": ["17948f16-611a-44b8-8d10-9895a0bdfff1"], "illustration_id": "b598c72f-35b5-4cdc-bf35-ed7f4f788576", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 22520, "prices": {"usd": "0.23", "usd_foil": "0.93", "usd_etched": null, "eur": "0.10", "eur_foil": "0.40", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=21360", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Skyshroud+Ridgeback&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Skyshroud+Ridgeback&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Skyshroud+Ridgeback"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/7237?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Skyshroud+Ridgeback&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/13823?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "19d809c1-e674-40b8-816d-c45d77c66722", "oracle_id": "c6ad434b-6e34-439b-8046-f0047c06e371", "multiverse_ids": [5231], "mtgo_id": 10485, "mtgo_foil_id": 10486, "tcgplayer_id": 4402, "cardmarket_id": 9352, "name": "Skyshroud War Beast", "lang": "en", "released_at": "1998-06-15", "uri": "https://api.scryfall.com/cards/19d809c1-e674-40b8-816d-c45d77c66722", "scryfall_uri": "https://scryfall.com/card/exo/124/skyshroud-war-beast?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/1/9/19d809c1-e674-40b8-816d-c45d77c66722.jpg?1562087347", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/9/19d809c1-e674-40b8-816d-c45d77c66722.jpg?1562087347", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/1/9/19d809c1-e674-40b8-816d-c45d77c66722.jpg?1562087347", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/1/9/19d809c1-e674-40b8-816d-c45d77c66722.png?1562087347", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/9/19d809c1-e674-40b8-816d-c45d77c66722.jpg?1562087347", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/1/9/19d809c1-e674-40b8-816d-c45d77c66722.jpg?1562087347"}, "mana_cost": "{1}{G}", "cmc": 2.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Trample\nAs Skyshroud War Beast enters the battlefield, choose an opponent.\nSkyshroud War Beast's power and toughness are each equal to the number of nonbasic lands the chosen player controls.", "power": "*", "toughness": "*", "colors": ["G"], "color_identity": ["G"], "keywords": ["Trample"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "1401f7af-2e71-476d-9813-991084ed0bb9", "set": "exo", "set_name": "Exodus", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/1401f7af-2e71-476d-9813-991084ed0bb9", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aexo&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/exo?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/19d809c1-e674-40b8-816d-c45d77c66722/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ac6ad434b-6e34-439b-8046-f0047c06e371&unique=prints", "collector_number": "124", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Jim Nelson", "artist_ids": ["aa9f64d1-29e1-4c82-877e-44c18183f40b"], "illustration_id": "be29b567-7e3a-492f-b6eb-208fc18488c7", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 17919, "penny_rank": 8860, "prices": {"usd": "0.54", "usd_foil": null, "usd_etched": null, "eur": "0.19", "eur_foil": null, "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=5231", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Skyshroud+War+Beast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Skyshroud+War+Beast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Skyshroud+War+Beast"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/4402?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Skyshroud+War+Beast&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/10485?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "fb3fcc7a-ff5b-4695-aa86-9166f6cba565", "oracle_id": "f1fca987-3484-4a76-86b6-d61ef0a2cf0f", "multiverse_ids": [366281], "mtgo_id": 47821, "mtgo_foil_id": 47822, "tcgplayer_id": 67442, "cardmarket_id": 259951, "name": "Slaughterhorn", "lang": "en", "released_at": "2013-02-01", "uri": "https://api.scryfall.com/cards/fb3fcc7a-ff5b-4695-aa86-9166f6cba565", "scryfall_uri": "https://scryfall.com/card/gtc/134/slaughterhorn?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/f/b/fb3fcc7a-ff5b-4695-aa86-9166f6cba565.jpg?1561853432", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/b/fb3fcc7a-ff5b-4695-aa86-9166f6cba565.jpg?1561853432", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/f/b/fb3fcc7a-ff5b-4695-aa86-9166f6cba565.jpg?1561853432", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/f/b/fb3fcc7a-ff5b-4695-aa86-9166f6cba565.png?1561853432", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/b/fb3fcc7a-ff5b-4695-aa86-9166f6cba565.jpg?1561853432", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/f/b/fb3fcc7a-ff5b-4695-aa86-9166f6cba565.jpg?1561853432"}, "mana_cost": "{2}{G}", "cmc": 3.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Bloodrush \u2014 {G}, Discard Slaughterhorn: Target attacking creature gets +3/+2 until end of turn.", "power": "3", "toughness": "2", "colors": ["G"], "color_identity": ["G"], "keywords": ["Bloodrush"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "035a05f7-e020-4f50-a141-ed16ba704bd2", "set": "gtc", "set_name": "Gatecrash", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/035a05f7-e020-4f50-a141-ed16ba704bd2", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Agtc&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/gtc?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/fb3fcc7a-ff5b-4695-aa86-9166f6cba565/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Af1fca987-3484-4a76-86b6-d61ef0a2cf0f&unique=prints", "collector_number": "134", "digital": false, "rarity": "common", "watermark": "gruul", "flavor_text": "The Orzhov clergy would never cross its path, but sending thrull couriers to do so is cheap and entertaining.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Steve Prescott", "artist_ids": ["a1139fb8-41f5-4a9e-9a74-f662e1a23b35"], "illustration_id": "f39113b4-8baa-46dc-ab73-bfd402c15fd2", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 17448, "penny_rank": 9845, "prices": {"usd": "0.03", "usd_foil": "0.26", "usd_etched": null, "eur": "0.02", "eur_foil": "0.14", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=366281", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Slaughterhorn&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Slaughterhorn&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Slaughterhorn"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/67442?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Slaughterhorn&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/47821?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "c4e4bbea-7e3f-4de0-bb01-dfd67f21c254", "oracle_id": "f64878c1-1fba-44f7-a24f-d24bef2e03ae", "multiverse_ids": [456819], "mtgo_id": 70519, "tcgplayer_id": 180832, "cardmarket_id": 366870, "name": "Slippery Bogle", "lang": "en", "released_at": "2018-12-07", "uri": "https://api.scryfall.com/cards/c4e4bbea-7e3f-4de0-bb01-dfd67f21c254", "scryfall_uri": "https://scryfall.com/card/uma/223/slippery-bogle?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/c/4/c4e4bbea-7e3f-4de0-bb01-dfd67f21c254.jpg?1547518325", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/4/c4e4bbea-7e3f-4de0-bb01-dfd67f21c254.jpg?1547518325", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/c/4/c4e4bbea-7e3f-4de0-bb01-dfd67f21c254.jpg?1547518325", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/c/4/c4e4bbea-7e3f-4de0-bb01-dfd67f21c254.png?1547518325", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/4/c4e4bbea-7e3f-4de0-bb01-dfd67f21c254.jpg?1547518325", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/c/4/c4e4bbea-7e3f-4de0-bb01-dfd67f21c254.jpg?1547518325"}, "mana_cost": "{G/U}", "cmc": 1.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Hexproof (This creature can't be the target of spells or abilities your opponents control.)", "power": "1", "toughness": "1", "colors": ["G", "U"], "color_identity": ["G", "U"], "keywords": ["Hexproof"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "2ec77b94-6d47-4891-a480-5d0b4e5c9372", "set": "uma", "set_name": "Ultimate Masters", "set_type": "masters", "set_uri": "https://api.scryfall.com/sets/2ec77b94-6d47-4891-a480-5d0b4e5c9372", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Auma&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/uma?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/c4e4bbea-7e3f-4de0-bb01-dfd67f21c254/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Af64878c1-1fba-44f7-a24f-d24bef2e03ae&unique=prints", "collector_number": "223", "digital": false, "rarity": "uncommon", "flavor_text": "Ogle the bogle, or goggle the boggle? Doesn't matter. You weren't going to catch it anyway.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Jesper Ejsing", "artist_ids": ["a5f8354a-8b51-4e59-96b2-0e3aeae4fa1d"], "illustration_id": "cb6863ac-e2af-4f2f-bb3b-6f64ab08b6ba", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 5788, "prices": {"usd": "1.01", "usd_foil": "3.22", "usd_etched": null, "eur": "0.84", "eur_foil": "2.25", "tix": "0.68"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=456819", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Slippery+Bogle&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Slippery+Bogle&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Slippery+Bogle"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/180832?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Slippery+Bogle&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/70519?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "19714d6c-2bfa-4ee0-aa2f-5ccc196bc5d8", "oracle_id": "f64878c1-1fba-44f7-a24f-d24bef2e03ae", "multiverse_ids": [150999], "mtgo_id": 29954, "mtgo_foil_id": 29955, "tcgplayer_id": 27202, "cardmarket_id": 19622, "name": "Slippery Bogle", "lang": "en", "released_at": "2008-07-25", "uri": "https://api.scryfall.com/cards/19714d6c-2bfa-4ee0-aa2f-5ccc196bc5d8", "scryfall_uri": "https://scryfall.com/card/eve/160/slippery-bogle?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/1/9/19714d6c-2bfa-4ee0-aa2f-5ccc196bc5d8.jpg?1562900327", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/9/19714d6c-2bfa-4ee0-aa2f-5ccc196bc5d8.jpg?1562900327", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/1/9/19714d6c-2bfa-4ee0-aa2f-5ccc196bc5d8.jpg?1562900327", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/1/9/19714d6c-2bfa-4ee0-aa2f-5ccc196bc5d8.png?1562900327", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/9/19714d6c-2bfa-4ee0-aa2f-5ccc196bc5d8.jpg?1562900327", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/1/9/19714d6c-2bfa-4ee0-aa2f-5ccc196bc5d8.jpg?1562900327"}, "mana_cost": "{G/U}", "cmc": 1.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Hexproof (This creature can't be the target of spells or abilities your opponents control.)", "power": "1", "toughness": "1", "colors": ["G", "U"], "color_identity": ["G", "U"], "keywords": ["Hexproof"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "86b4dfef-f2d1-49d6-825d-7df6bda44357", "set": "eve", "set_name": "Eventide", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/86b4dfef-f2d1-49d6-825d-7df6bda44357", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aeve&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/eve?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/19714d6c-2bfa-4ee0-aa2f-5ccc196bc5d8/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Af64878c1-1fba-44f7-a24f-d24bef2e03ae&unique=prints", "collector_number": "160", "digital": false, "rarity": "common", "flavor_text": "Bogles are very tasty if you can get the skin off. It's getting a blade on them that's the problem.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Dave Allsop", "artist_ids": ["99b8310a-4fd6-4ded-8ab7-3b5185821cbe"], "illustration_id": "fa1ebe1b-04bc-48ed-b388-3bf68a5341de", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 5788, "prices": {"usd": "0.95", "usd_foil": "9.27", "usd_etched": null, "eur": "0.64", "eur_foil": "5.69", "tix": "0.59"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=150999", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Slippery+Bogle&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Slippery+Bogle&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Slippery+Bogle"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/27202?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Slippery+Bogle&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/29954?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "e9d06a1f-00b7-440d-849d-efc466d73f29", "oracle_id": "74e6dd0f-2866-4d45-a214-8b09b837bc02", "multiverse_ids": [39706], "mtgo_id": 17785, "mtgo_foil_id": 17786, "tcgplayer_id": 10510, "cardmarket_id": 1745, "name": "Slipstream Eel", "lang": "en", "released_at": "2002-10-07", "uri": "https://api.scryfall.com/cards/e9d06a1f-00b7-440d-849d-efc466d73f29", "scryfall_uri": "https://scryfall.com/card/ons/114/slipstream-eel?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/e/9/e9d06a1f-00b7-440d-849d-efc466d73f29.jpg?1562950698", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/9/e9d06a1f-00b7-440d-849d-efc466d73f29.jpg?1562950698", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/e/9/e9d06a1f-00b7-440d-849d-efc466d73f29.jpg?1562950698", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/e/9/e9d06a1f-00b7-440d-849d-efc466d73f29.png?1562950698", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/9/e9d06a1f-00b7-440d-849d-efc466d73f29.jpg?1562950698", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/e/9/e9d06a1f-00b7-440d-849d-efc466d73f29.jpg?1562950698"}, "mana_cost": "{5}{U}{U}", "cmc": 7.0, "type_line": "Creature \u2014 Fish Beast", "oracle_text": "Slipstream Eel can't attack unless defending player controls an Island.\nCycling {1}{U} ({1}{U}, Discard this card: Draw a card.)", "power": "6", "toughness": "6", "colors": ["U"], "color_identity": ["U"], "keywords": ["Cycling"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "914a6c6d-cb3b-45e8-a2db-9978a2339faf", "set": "ons", "set_name": "Onslaught", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/914a6c6d-cb3b-45e8-a2db-9978a2339faf", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aons&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ons?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/e9d06a1f-00b7-440d-849d-efc466d73f29/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A74e6dd0f-2866-4d45-a214-8b09b837bc02&unique=prints", "collector_number": "114", "digital": false, "rarity": "common", "flavor_text": "\"It's a fine way to travel, if you don't mind the smell.\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Mark Tedin", "artist_ids": ["9ee9a9cc-c09e-486f-918b-69f80cbc4188"], "illustration_id": "8c6d18e3-7dea-4532-8c37-f660a2bf0dd9", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 17823, "penny_rank": 12525, "prices": {"usd": "0.06", "usd_foil": "0.27", "usd_etched": null, "eur": "0.02", "eur_foil": "0.15", "tix": "0.06"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=39706", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Slipstream+Eel&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Slipstream+Eel&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Slipstream+Eel"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/10510?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Slipstream+Eel&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/17785?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "834409e3-134e-4a34-89cb-53e2a039e980", "oracle_id": "eeba70f5-336c-46e6-90db-50818f88e8a5", "multiverse_ids": [402045], "mtgo_id": 58539, "mtgo_foil_id": 58540, "tcgplayer_id": 105563, "cardmarket_id": 284908, "name": "Snapping Gnarlid", "lang": "en", "released_at": "2015-10-02", "uri": "https://api.scryfall.com/cards/834409e3-134e-4a34-89cb-53e2a039e980", "scryfall_uri": "https://scryfall.com/card/bfz/190/snapping-gnarlid?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/8/3/834409e3-134e-4a34-89cb-53e2a039e980.jpg?1562925959", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/3/834409e3-134e-4a34-89cb-53e2a039e980.jpg?1562925959", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/8/3/834409e3-134e-4a34-89cb-53e2a039e980.jpg?1562925959", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/8/3/834409e3-134e-4a34-89cb-53e2a039e980.png?1562925959", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/3/834409e3-134e-4a34-89cb-53e2a039e980.jpg?1562925959", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/8/3/834409e3-134e-4a34-89cb-53e2a039e980.jpg?1562925959"}, "mana_cost": "{1}{G}", "cmc": 2.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Landfall \u2014 Whenever a land enters the battlefield under your control, Snapping Gnarlid gets +1/+1 until end of turn.", "power": "2", "toughness": "2", "colors": ["G"], "color_identity": ["G"], "keywords": ["Landfall"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "91719374-7ac5-4afa-ada8-5da964dcf1d4", "set": "bfz", "set_name": "Battle for Zendikar", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/91719374-7ac5-4afa-ada8-5da964dcf1d4", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Abfz&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/bfz?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/834409e3-134e-4a34-89cb-53e2a039e980/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aeeba70f5-336c-46e6-90db-50818f88e8a5&unique=prints", "collector_number": "190", "digital": false, "rarity": "common", "flavor_text": "All of Zendikar's beings sense the upheaval that accompanies the Eldrazi.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Kev Walker", "artist_ids": ["f366a0ee-a0cd-466d-ba6a-90058c7a31a6"], "illustration_id": "8398d40a-e183-4821-aa69-d26880604916", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 17417, "penny_rank": 11337, "prices": {"usd": "0.03", "usd_foil": "0.24", "usd_etched": null, "eur": "0.12", "eur_foil": "0.20", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=402045", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Snapping+Gnarlid&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Snapping+Gnarlid&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Snapping+Gnarlid"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/105563?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Snapping+Gnarlid&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/58539?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "c8a47d41-b893-46b9-90c9-ccd8f9f78855", "oracle_id": "1a02cb6d-965a-4eeb-b126-8e153d4832a2", "multiverse_ids": [39729], "mtgo_id": 18037, "mtgo_foil_id": 18038, "tcgplayer_id": 10384, "cardmarket_id": 1864, "name": "Snapping Thragg", "lang": "en", "released_at": "2002-10-07", "uri": "https://api.scryfall.com/cards/c8a47d41-b893-46b9-90c9-ccd8f9f78855", "scryfall_uri": "https://scryfall.com/card/ons/233/snapping-thragg?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/c/8/c8a47d41-b893-46b9-90c9-ccd8f9f78855.jpg?1562942401", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/8/c8a47d41-b893-46b9-90c9-ccd8f9f78855.jpg?1562942401", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/c/8/c8a47d41-b893-46b9-90c9-ccd8f9f78855.jpg?1562942401", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/c/8/c8a47d41-b893-46b9-90c9-ccd8f9f78855.png?1562942401", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/8/c8a47d41-b893-46b9-90c9-ccd8f9f78855.jpg?1562942401", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/c/8/c8a47d41-b893-46b9-90c9-ccd8f9f78855.jpg?1562942401"}, "mana_cost": "{4}{R}", "cmc": 5.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Whenever Snapping Thragg deals combat damage to a player, you may have it deal 3 damage to target creature that player controls.\nMorph {4}{R}{R} (You may cast this card face down as a 2/2 creature for {3}. Turn it face up any time for its morph cost.)", "power": "3", "toughness": "3", "colors": ["R"], "color_identity": ["R"], "keywords": ["Morph"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "restricted", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "914a6c6d-cb3b-45e8-a2db-9978a2339faf", "set": "ons", "set_name": "Onslaught", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/914a6c6d-cb3b-45e8-a2db-9978a2339faf", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aons&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ons?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/c8a47d41-b893-46b9-90c9-ccd8f9f78855/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A1a02cb6d-965a-4eeb-b126-8e153d4832a2&unique=prints", "collector_number": "233", "digital": false, "rarity": "uncommon", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Iain McCaig", "artist_ids": ["8d244b88-ef56-4523-8c0c-9fecccc4ab9d"], "illustration_id": "524ce579-f43e-44e4-be04-99961a50a0e1", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 22098, "prices": {"usd": "0.12", "usd_foil": "0.39", "usd_etched": null, "eur": "0.14", "eur_foil": "0.20", "tix": "0.04"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=39729", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Snapping+Thragg&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Snapping+Thragg&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Snapping+Thragg"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/10384?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Snapping+Thragg&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/18037?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "05788d63-6210-44f2-9ae4-e55e9507a3a9", "oracle_id": "a932e265-604a-4aed-b8a9-6234a3db16a5", "multiverse_ids": [39492], "mtgo_id": 18113, "mtgo_foil_id": 18114, "tcgplayer_id": 10641, "cardmarket_id": 1914, "name": "Snarling Undorak", "lang": "en", "released_at": "2002-10-07", "uri": "https://api.scryfall.com/cards/05788d63-6210-44f2-9ae4-e55e9507a3a9", "scryfall_uri": "https://scryfall.com/card/ons/283/snarling-undorak?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/0/5/05788d63-6210-44f2-9ae4-e55e9507a3a9.jpg?1562896264", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/5/05788d63-6210-44f2-9ae4-e55e9507a3a9.jpg?1562896264", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/0/5/05788d63-6210-44f2-9ae4-e55e9507a3a9.jpg?1562896264", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/0/5/05788d63-6210-44f2-9ae4-e55e9507a3a9.png?1562896264", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/5/05788d63-6210-44f2-9ae4-e55e9507a3a9.jpg?1562896264", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/0/5/05788d63-6210-44f2-9ae4-e55e9507a3a9.jpg?1562896264"}, "mana_cost": "{2}{G}{G}", "cmc": 4.0, "type_line": "Creature \u2014 Beast", "oracle_text": "{2}{G}: Target Beast creature gets +1/+1 until end of turn.\nMorph {1}{G}{G} (You may cast this card face down as a 2/2 creature for {3}. Turn it face up any time for its morph cost.)", "power": "3", "toughness": "3", "colors": ["G"], "color_identity": ["G"], "keywords": ["Morph"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "914a6c6d-cb3b-45e8-a2db-9978a2339faf", "set": "ons", "set_name": "Onslaught", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/914a6c6d-cb3b-45e8-a2db-9978a2339faf", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aons&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ons?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/05788d63-6210-44f2-9ae4-e55e9507a3a9/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aa932e265-604a-4aed-b8a9-6234a3db16a5&unique=prints", "collector_number": "283", "digital": false, "rarity": "common", "flavor_text": "Most creatures in the Krosan Forest feared the Mirari's power. A few fed upon it.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Justin Sweet", "artist_ids": ["bb15780e-8f96-4823-b258-a7a9fd79b02c"], "illustration_id": "6d3192f2-aa3d-4e60-8790-81ee9c43a0ed", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 21363, "prices": {"usd": "0.05", "usd_foil": "0.70", "usd_etched": null, "eur": "0.02", "eur_foil": "0.15", "tix": "0.05"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=39492", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Snarling+Undorak&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Snarling+Undorak&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Snarling+Undorak"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/10641?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Snarling+Undorak&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/18113?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "e568503e-a886-4c8b-9d46-8520c2cdda48", "oracle_id": "3e7f67d6-db12-4034-b8e3-9c9d401c8f57", "multiverse_ids": [19626], "mtgo_id": 13279, "mtgo_foil_id": 13280, "tcgplayer_id": 6702, "cardmarket_id": 11645, "name": "Snorting Gahr", "lang": "en", "released_at": "1999-10-04", "uri": "https://api.scryfall.com/cards/e568503e-a886-4c8b-9d46-8520c2cdda48", "scryfall_uri": "https://scryfall.com/card/mmq/272/snorting-gahr?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/e/5/e568503e-a886-4c8b-9d46-8520c2cdda48.jpg?1562383519", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/5/e568503e-a886-4c8b-9d46-8520c2cdda48.jpg?1562383519", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/e/5/e568503e-a886-4c8b-9d46-8520c2cdda48.jpg?1562383519", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/e/5/e568503e-a886-4c8b-9d46-8520c2cdda48.png?1562383519", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/5/e568503e-a886-4c8b-9d46-8520c2cdda48.jpg?1562383519", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/e/5/e568503e-a886-4c8b-9d46-8520c2cdda48.jpg?1562383519"}, "mana_cost": "{2}{G}{G}", "cmc": 4.0, "type_line": "Creature \u2014 Rhino Beast", "oracle_text": "Whenever Snorting Gahr becomes blocked, it gets +2/+2 until end of turn.", "power": "3", "toughness": "3", "colors": ["G"], "color_identity": ["G"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "385e11a4-492b-4d07-b4a6-a1409ef829b8", "set": "mmq", "set_name": "Mercadian Masques", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/385e11a4-492b-4d07-b4a6-a1409ef829b8", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ammq&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/mmq?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/e568503e-a886-4c8b-9d46-8520c2cdda48/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A3e7f67d6-db12-4034-b8e3-9c9d401c8f57&unique=prints", "collector_number": "272", "digital": false, "rarity": "common", "flavor_text": "There's little advantage to surprising the gahr.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Andrew Goldhawk", "artist_ids": ["f4a65a04-9e2e-4541-8d0e-f34e9517f092"], "illustration_id": "8dff0bed-da0e-4da9-8657-90ab4352a43c", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 22824, "prices": {"usd": "0.12", "usd_foil": "0.65", "usd_etched": null, "eur": "0.02", "eur_foil": "1.00", "tix": "0.09"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=19626", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Snorting+Gahr&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Snorting+Gahr&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Snorting+Gahr"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/6702?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Snorting+Gahr&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/13279?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "ead79d2c-170e-4106-962d-d69c4b5fead0", "oracle_id": "935728dd-ad97-47a9-97ca-068af7960d07", "multiverse_ids": [3061], "tcgplayer_id": 4244, "cardmarket_id": 8029, "name": "Soldevi Steam Beast", "lang": "en", "released_at": "1996-06-10", "uri": "https://api.scryfall.com/cards/ead79d2c-170e-4106-962d-d69c4b5fead0", "scryfall_uri": "https://scryfall.com/card/all/133a/soldevi-steam-beast?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/e/a/ead79d2c-170e-4106-962d-d69c4b5fead0.jpg?1562770654", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/a/ead79d2c-170e-4106-962d-d69c4b5fead0.jpg?1562770654", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/e/a/ead79d2c-170e-4106-962d-d69c4b5fead0.jpg?1562770654", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/e/a/ead79d2c-170e-4106-962d-d69c4b5fead0.png?1562770654", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/a/ead79d2c-170e-4106-962d-d69c4b5fead0.jpg?1562770654", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/e/a/ead79d2c-170e-4106-962d-d69c4b5fead0.jpg?1562770654"}, "mana_cost": "{5}", "cmc": 5.0, "type_line": "Artifact Creature \u2014 Beast", "oracle_text": "Whenever Soldevi Steam Beast becomes tapped, target opponent gains 2 life.\n{2}: Regenerate Soldevi Steam Beast.", "power": "4", "toughness": "2", "colors": [], "color_identity": [], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "64987b06-4a5c-443d-b560-ff5691744582", "set": "all", "set_name": "Alliances", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/64987b06-4a5c-443d-b560-ff5691744582", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aall&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/all?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/ead79d2c-170e-4106-962d-d69c4b5fead0/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A935728dd-ad97-47a9-97ca-068af7960d07&unique=prints", "collector_number": "133a", "digital": false, "rarity": "common", "flavor_text": "\"Dagsson saw the steam as life-giving\u2014until his followers felt its scalding touch.\"\n\u2014Sorine Relicbane, Soldevi Heretic", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Bill Sienkiewicz", "artist_ids": ["c1a9ecfb-1440-4579-adfb-bd10095dd690"], "illustration_id": "3c4595eb-276f-433d-9792-70e884a65da8", "border_color": "black", "frame": "1993", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 22523, "prices": {"usd": "0.14", "usd_foil": null, "usd_etched": null, "eur": "0.25", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=3061", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Soldevi+Steam+Beast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Soldevi+Steam+Beast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Soldevi+Steam+Beast"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/4244?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Soldevi+Steam+Beast&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Soldevi+Steam+Beast&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "9de5e730-1d5c-4326-b3fc-2f0f97edc07e", "oracle_id": "935728dd-ad97-47a9-97ca-068af7960d07", "multiverse_ids": [3062], "tcgplayer_id": 81847, "cardmarket_id": 8030, "name": "Soldevi Steam Beast", "lang": "en", "released_at": "1996-06-10", "uri": "https://api.scryfall.com/cards/9de5e730-1d5c-4326-b3fc-2f0f97edc07e", "scryfall_uri": "https://scryfall.com/card/all/133b/soldevi-steam-beast?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/9/d/9de5e730-1d5c-4326-b3fc-2f0f97edc07e.jpg?1575874846", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/d/9de5e730-1d5c-4326-b3fc-2f0f97edc07e.jpg?1575874846", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/9/d/9de5e730-1d5c-4326-b3fc-2f0f97edc07e.jpg?1575874846", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/9/d/9de5e730-1d5c-4326-b3fc-2f0f97edc07e.png?1575874846", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/d/9de5e730-1d5c-4326-b3fc-2f0f97edc07e.jpg?1575874846", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/9/d/9de5e730-1d5c-4326-b3fc-2f0f97edc07e.jpg?1575874846"}, "mana_cost": "{5}", "cmc": 5.0, "type_line": "Artifact Creature \u2014 Beast", "oracle_text": "Whenever Soldevi Steam Beast becomes tapped, target opponent gains 2 life.\n{2}: Regenerate Soldevi Steam Beast.", "power": "4", "toughness": "2", "colors": [], "color_identity": [], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "64987b06-4a5c-443d-b560-ff5691744582", "set": "all", "set_name": "Alliances", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/64987b06-4a5c-443d-b560-ff5691744582", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aall&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/all?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/9de5e730-1d5c-4326-b3fc-2f0f97edc07e/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A935728dd-ad97-47a9-97ca-068af7960d07&unique=prints", "collector_number": "133b", "digital": false, "rarity": "common", "flavor_text": "\"Nothing has ever broken my heart so much as this\u2014the betrayal of Soldev by my beloved machines!\"\n\u2014Arcum Dagsson, Soldevi Machinist", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Bill Sienkiewicz", "artist_ids": ["c1a9ecfb-1440-4579-adfb-bd10095dd690"], "illustration_id": "597de254-c245-441b-b7c0-dbf6ac2dcb0a", "border_color": "black", "frame": "1993", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 22523, "prices": {"usd": "0.10", "usd_foil": null, "usd_etched": null, "eur": "0.15", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=3062", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Soldevi+Steam+Beast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Soldevi+Steam+Beast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Soldevi+Steam+Beast"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/81847?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Soldevi+Steam+Beast&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Soldevi+Steam+Beast&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "ea73a7ef-e9da-4d5b-aa4d-a953cbacd6c2", "oracle_id": "97e2f8a3-dec4-4a45-a463-78d23fc03f0d", "multiverse_ids": [9754], "tcgplayer_id": 902, "cardmarket_id": 11942, "name": "Spark Fiend", "lang": "en", "released_at": "1998-08-11", "uri": "https://api.scryfall.com/cards/ea73a7ef-e9da-4d5b-aa4d-a953cbacd6c2", "scryfall_uri": "https://scryfall.com/card/ugl/51/spark-fiend?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/e/a/ea73a7ef-e9da-4d5b-aa4d-a953cbacd6c2.jpg?1562799182", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/a/ea73a7ef-e9da-4d5b-aa4d-a953cbacd6c2.jpg?1562799182", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/e/a/ea73a7ef-e9da-4d5b-aa4d-a953cbacd6c2.jpg?1562799182", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/e/a/ea73a7ef-e9da-4d5b-aa4d-a953cbacd6c2.png?1562799182", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/a/ea73a7ef-e9da-4d5b-aa4d-a953cbacd6c2.jpg?1562799182", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/e/a/ea73a7ef-e9da-4d5b-aa4d-a953cbacd6c2.jpg?1562799182"}, "mana_cost": "{4}{R}", "cmc": 5.0, "type_line": "Creature \u2014 Beast", "oracle_text": "When Spark Fiend enters the battlefield, roll two six-sided dice. If you rolled 2, 3, or 12, sacrifice Spark Fiend. If you rolled 7 or 11, don't roll dice for Spark Fiend during any of your following upkeeps. If you rolled any other total, note that total.\nAt the beginning of your upkeep, roll two six-sided dice. If you rolled 7, sacrifice Spark Fiend. If you roll the noted total, don't roll dice for Spark Fiend during any of your following upkeeps. Otherwise, do nothing.", "power": "5", "toughness": "6", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "not_legal", "pauper": "not_legal", "vintage": "not_legal", "penny": "not_legal", "commander": "not_legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "not_legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "3404fc78-6678-4cf4-bd39-4c0be3bb7baf", "set": "ugl", "set_name": "Unglued", "set_type": "funny", "set_uri": "https://api.scryfall.com/sets/3404fc78-6678-4cf4-bd39-4c0be3bb7baf", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Augl&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ugl?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/ea73a7ef-e9da-4d5b-aa4d-a953cbacd6c2/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A97e2f8a3-dec4-4a45-a463-78d23fc03f0d&unique=prints", "collector_number": "51", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Pete Venters", "artist_ids": ["d54c4a1a-c0c5-4834-84db-125d341f3ad8"], "illustration_id": "f5653784-dd0e-45ce-ae77-04f36fceb686", "border_color": "silver", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "prices": {"usd": "0.50", "usd_foil": null, "usd_etched": null, "eur": "1.99", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=9754", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Spark+Fiend&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Spark+Fiend&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Spark+Fiend"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/902?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Spark+Fiend&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Spark+Fiend&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "132367ee-22e9-48e2-82e0-62ad9aaa62f3", "oracle_id": "025f8db8-11d1-4c59-8e1f-004c9c843fd8", "multiverse_ids": [174916], "mtgo_id": 31149, "mtgo_foil_id": 31150, "tcgplayer_id": 27809, "cardmarket_id": 19908, "name": "Spearbreaker Behemoth", "lang": "en", "released_at": "2008-10-03", "uri": "https://api.scryfall.com/cards/132367ee-22e9-48e2-82e0-62ad9aaa62f3", "scryfall_uri": "https://scryfall.com/card/ala/150/spearbreaker-behemoth?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/1/3/132367ee-22e9-48e2-82e0-62ad9aaa62f3.jpg?1562701266", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/3/132367ee-22e9-48e2-82e0-62ad9aaa62f3.jpg?1562701266", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/1/3/132367ee-22e9-48e2-82e0-62ad9aaa62f3.jpg?1562701266", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/1/3/132367ee-22e9-48e2-82e0-62ad9aaa62f3.png?1562701266", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/3/132367ee-22e9-48e2-82e0-62ad9aaa62f3.jpg?1562701266", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/1/3/132367ee-22e9-48e2-82e0-62ad9aaa62f3.jpg?1562701266"}, "mana_cost": "{5}{G}{G}", "cmc": 7.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Indestructible\n{1}: Target creature with power 5 or greater gains indestructible until end of turn.", "power": "5", "toughness": "5", "colors": ["G"], "color_identity": ["G"], "keywords": ["Indestructible"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "d667aaec-09b7-4406-b6fa-60795132dc11", "set": "ala", "set_name": "Shards of Alara", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/d667aaec-09b7-4406-b6fa-60795132dc11", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aala&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ala?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/132367ee-22e9-48e2-82e0-62ad9aaa62f3/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A025f8db8-11d1-4c59-8e1f-004c9c843fd8&unique=prints", "collector_number": "150", "digital": false, "rarity": "rare", "flavor_text": "Few Nayans dare hunt the gargantuans. They're regarded not as animals but as forces of nature, like landslides or typhoons.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Christopher Moeller", "artist_ids": ["21e10012-06ae-44f2-b38d-3824dd2e73d4"], "illustration_id": "b50611f1-e48b-41fa-9284-a5d978e8bd33", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 5395, "penny_rank": 9817, "prices": {"usd": "2.37", "usd_foil": "2.94", "usd_etched": null, "eur": "0.40", "eur_foil": "0.20", "tix": "0.01"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=174916", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Spearbreaker+Behemoth&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Spearbreaker+Behemoth&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Spearbreaker+Behemoth"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/27809?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Spearbreaker+Behemoth&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/31149?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "e0087a98-55cf-4c8b-a180-fb0d9c336eb2", "oracle_id": "0e741c79-5ea4-457d-a7d3-b11154459246", "multiverse_ids": [369015], "mtgo_id": 48448, "mtgo_foil_id": 48449, "tcgplayer_id": 68017, "cardmarket_id": 261556, "name": "Species Gorger", "lang": "en", "released_at": "2013-05-03", "uri": "https://api.scryfall.com/cards/e0087a98-55cf-4c8b-a180-fb0d9c336eb2", "scryfall_uri": "https://scryfall.com/card/dgm/105/species-gorger?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/e/0/e0087a98-55cf-4c8b-a180-fb0d9c336eb2.jpg?1562936816", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/0/e0087a98-55cf-4c8b-a180-fb0d9c336eb2.jpg?1562936816", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/e/0/e0087a98-55cf-4c8b-a180-fb0d9c336eb2.jpg?1562936816", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/e/0/e0087a98-55cf-4c8b-a180-fb0d9c336eb2.png?1562936816", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/0/e0087a98-55cf-4c8b-a180-fb0d9c336eb2.jpg?1562936816", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/e/0/e0087a98-55cf-4c8b-a180-fb0d9c336eb2.jpg?1562936816"}, "mana_cost": "{3}{G}{U}", "cmc": 5.0, "type_line": "Creature \u2014 Frog Beast", "oracle_text": "At the beginning of your upkeep, return a creature you control to its owner's hand.", "power": "6", "toughness": "6", "colors": ["G", "U"], "color_identity": ["G", "U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "restricted", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "c8bd8520-cd98-45cd-b533-8d40c2087426", "set": "dgm", "set_name": "Dragon's Maze", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/c8bd8520-cd98-45cd-b533-8d40c2087426", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Adgm&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/dgm?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/e0087a98-55cf-4c8b-a180-fb0d9c336eb2/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A0e741c79-5ea4-457d-a7d3-b11154459246&unique=prints", "collector_number": "105", "digital": false, "rarity": "uncommon", "watermark": "simic", "flavor_text": "\"We raised eelhawks to control the squidflies, then waspcrabs to prey on the eelhawks. Now what do we do with all these waspcrabs?\"\n\u2014Gulistan, Simic biomancer", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Min Yum", "artist_ids": ["9cb65d6f-8851-4d56-9add-9eefa274bd1b"], "illustration_id": "52edf14c-e490-40b4-a1ef-11bf1b49b051", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 11440, "penny_rank": 11591, "prices": {"usd": "0.11", "usd_foil": "0.46", "usd_etched": null, "eur": "0.04", "eur_foil": "0.25", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=369015", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Species+Gorger&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Species+Gorger&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Species+Gorger"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/68017?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Species+Gorger&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/48448?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "a197e3f2-e69f-4716-9979-a304a87506c3", "oracle_id": "cba07472-7212-4411-a9f9-38a48870ad69", "multiverse_ids": [179551], "mtgo_id": 32280, "mtgo_foil_id": 32281, "tcgplayer_id": 31812, "cardmarket_id": 20939, "name": "Spellbreaker Behemoth", "lang": "en", "released_at": "2009-04-30", "uri": "https://api.scryfall.com/cards/a197e3f2-e69f-4716-9979-a304a87506c3", "scryfall_uri": "https://scryfall.com/card/arb/60/spellbreaker-behemoth?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/a/1/a197e3f2-e69f-4716-9979-a304a87506c3.jpg?1562643286", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/1/a197e3f2-e69f-4716-9979-a304a87506c3.jpg?1562643286", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/a/1/a197e3f2-e69f-4716-9979-a304a87506c3.jpg?1562643286", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/a/1/a197e3f2-e69f-4716-9979-a304a87506c3.png?1562643286", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/1/a197e3f2-e69f-4716-9979-a304a87506c3.jpg?1562643286", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/a/1/a197e3f2-e69f-4716-9979-a304a87506c3.jpg?1562643286"}, "mana_cost": "{1}{R}{G}{G}", "cmc": 4.0, "type_line": "Creature \u2014 Beast", "oracle_text": "This spell can't be countered.\nCreature spells you control with power 5 or greater can't be countered.", "power": "5", "toughness": "5", "colors": ["G", "R"], "color_identity": ["G", "R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "db486ec5-141d-4781-9ee5-5456926934c1", "set": "arb", "set_name": "Alara Reborn", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/db486ec5-141d-4781-9ee5-5456926934c1", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aarb&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/arb?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/a197e3f2-e69f-4716-9979-a304a87506c3/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Acba07472-7212-4411-a9f9-38a48870ad69&unique=prints", "collector_number": "60", "digital": false, "rarity": "rare", "flavor_text": "\"Some think its immunity to countermagic evolved because of the constant mage attacks on Naya. I think it just ate a bunch of wizards.\"\n\u2014Broka, drumhunter", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Jason Chan", "artist_ids": ["8062d5a9-51b6-4822-933f-fa9e9dba8416"], "illustration_id": "46a50620-9cb7-4584-8af7-4edc2eb33d48", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 5688, "penny_rank": 4833, "prices": {"usd": "0.90", "usd_foil": "1.32", "usd_etched": null, "eur": "0.95", "eur_foil": "0.64", "tix": "0.01"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=179551", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Spellbreaker+Behemoth&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Spellbreaker+Behemoth&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Spellbreaker+Behemoth"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/31812?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Spellbreaker+Behemoth&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/32280?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "522777b1-a89f-4969-a962-0137018ec86c", "oracle_id": "e873b9c2-1346-4f36-aa48-da58112792db", "multiverse_ids": [249702], "mtgo_id": 45674, "mtgo_foil_id": 45675, "tcgplayer_id": 60030, "cardmarket_id": 257131, "name": "Spiked Baloth", "lang": "en", "released_at": "2012-07-13", "uri": "https://api.scryfall.com/cards/522777b1-a89f-4969-a962-0137018ec86c", "scryfall_uri": "https://scryfall.com/card/m13/192/spiked-baloth?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/5/2/522777b1-a89f-4969-a962-0137018ec86c.jpg?1562553788", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/2/522777b1-a89f-4969-a962-0137018ec86c.jpg?1562553788", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/5/2/522777b1-a89f-4969-a962-0137018ec86c.jpg?1562553788", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/5/2/522777b1-a89f-4969-a962-0137018ec86c.png?1562553788", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/2/522777b1-a89f-4969-a962-0137018ec86c.jpg?1562553788", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/5/2/522777b1-a89f-4969-a962-0137018ec86c.jpg?1562553788"}, "mana_cost": "{3}{G}", "cmc": 4.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Trample (This creature can deal excess combat damage to the player or planeswalker it's attacking.)", "power": "4", "toughness": "2", "colors": ["G"], "color_identity": ["G"], "keywords": ["Trample"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "f9b0c6f4-8a4f-4f36-ad3c-e1e16fb8535d", "set": "m13", "set_name": "Magic 2013", "set_type": "core", "set_uri": "https://api.scryfall.com/sets/f9b0c6f4-8a4f-4f36-ad3c-e1e16fb8535d", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Am13&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/m13?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/522777b1-a89f-4969-a962-0137018ec86c/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ae873b9c2-1346-4f36-aa48-da58112792db&unique=prints", "collector_number": "192", "digital": false, "rarity": "common", "flavor_text": "If a baloth isn't hungry, it's dead.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Daarken", "artist_ids": ["e607a0d4-fc12-4c01-9e3f-501f5269b9cb"], "illustration_id": "f3972b0c-a931-4e65-9356-4a03ce978684", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 22099, "prices": {"usd": "0.02", "usd_foil": "0.11", "usd_etched": null, "eur": "0.10", "eur_foil": "0.10", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=249702", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Spiked+Baloth&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Spiked+Baloth&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Spiked+Baloth"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/60030?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Spiked+Baloth&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/45674?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "d6d5e36f-0049-4be8-bf85-8dc0186339a4", "oracle_id": "990c0359-c2d6-4a3c-aa0b-1904da805e15", "multiverse_ids": [1590], "tcgplayer_id": 4025, "cardmarket_id": 7136, "name": "Spinal Villain", "lang": "en", "released_at": "1994-06-01", "uri": "https://api.scryfall.com/cards/d6d5e36f-0049-4be8-bf85-8dc0186339a4", "scryfall_uri": "https://scryfall.com/card/leg/164/spinal-villain?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/d/6/d6d5e36f-0049-4be8-bf85-8dc0186339a4.jpg?1562861348", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/6/d6d5e36f-0049-4be8-bf85-8dc0186339a4.jpg?1562861348", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/d/6/d6d5e36f-0049-4be8-bf85-8dc0186339a4.jpg?1562861348", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/d/6/d6d5e36f-0049-4be8-bf85-8dc0186339a4.png?1562861348", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/6/d6d5e36f-0049-4be8-bf85-8dc0186339a4.jpg?1562861348", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/d/6/d6d5e36f-0049-4be8-bf85-8dc0186339a4.jpg?1562861348"}, "mana_cost": "{2}{R}", "cmc": 3.0, "type_line": "Creature \u2014 Beast", "oracle_text": "{T}: Destroy target blue creature.", "power": "1", "toughness": "2", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "restricted", "duel": "legal", "oldschool": "legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": true, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "78c50b4b-b220-455b-a2d5-cee458fa56f3", "set": "leg", "set_name": "Legends", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/78c50b4b-b220-455b-a2d5-cee458fa56f3", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aleg&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/leg?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/d6d5e36f-0049-4be8-bf85-8dc0186339a4/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A990c0359-c2d6-4a3c-aa0b-1904da805e15&unique=prints", "collector_number": "164", "digital": false, "rarity": "rare", "flavor_text": "\"Striking silent as a dream,/ Cutting short the strangled scream . . .\" \u2014Tobrian, \"Watchdragon\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Anson Maddocks", "artist_ids": ["634430a7-b5c3-4e4a-b2ac-164e084e47c9"], "illustration_id": "a9c5cc06-e8cf-4c6f-8bc4-c92f2cb3aeed", "border_color": "black", "frame": "1993", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 19780, "prices": {"usd": "99.98", "usd_foil": null, "usd_etched": null, "eur": "85.00", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=1590", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Spinal+Villain&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Spinal+Villain&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Spinal+Villain"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/4025?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Spinal+Villain&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Spinal+Villain&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "cfc79ac6-ffc6-4506-9dea-e20176f960ea", "oracle_id": "9b844a0c-590f-46c7-b53e-c99398e0d8c0", "multiverse_ids": [230068], "mtgo_id": 39924, "mtgo_foil_id": 39925, "tcgplayer_id": 39583, "cardmarket_id": 245945, "name": "Spinebiter", "lang": "en", "released_at": "2011-05-13", "uri": "https://api.scryfall.com/cards/cfc79ac6-ffc6-4506-9dea-e20176f960ea", "scryfall_uri": "https://scryfall.com/card/nph/121/spinebiter?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/c/f/cfc79ac6-ffc6-4506-9dea-e20176f960ea.jpg?1562881679", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/f/cfc79ac6-ffc6-4506-9dea-e20176f960ea.jpg?1562881679", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/c/f/cfc79ac6-ffc6-4506-9dea-e20176f960ea.jpg?1562881679", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/c/f/cfc79ac6-ffc6-4506-9dea-e20176f960ea.png?1562881679", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/f/cfc79ac6-ffc6-4506-9dea-e20176f960ea.jpg?1562881679", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/c/f/cfc79ac6-ffc6-4506-9dea-e20176f960ea.jpg?1562881679"}, "mana_cost": "{4}{G}{G}", "cmc": 6.0, "type_line": "Creature \u2014 Phyrexian Beast", "oracle_text": "Infect (This creature deals damage to creatures in the form of -1/-1 counters and to players in the form of poison counters.)\nYou may have Spinebiter assign its combat damage as though it weren't blocked.", "power": "3", "toughness": "4", "colors": ["G"], "color_identity": ["G"], "keywords": ["Infect"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "restricted", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "e8e356d8-6d01-4dab-aa07-d0999dc9359f", "set": "nph", "set_name": "New Phyrexia", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/e8e356d8-6d01-4dab-aa07-d0999dc9359f", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Anph&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/nph?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/cfc79ac6-ffc6-4506-9dea-e20176f960ea/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A9b844a0c-590f-46c7-b53e-c99398e0d8c0&unique=prints", "collector_number": "121", "digital": false, "rarity": "uncommon", "watermark": "phyrexian", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Jaime Jones", "artist_ids": ["92f6c2c1-fa57-4b52-99c4-0fd866c13dc9"], "illustration_id": "50a67f00-827f-4520-a0eb-b040defa4e8e", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 6921, "penny_rank": 1811, "prices": {"usd": "0.44", "usd_foil": "4.23", "usd_etched": null, "eur": "0.22", "eur_foil": "2.53", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=230068", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Spinebiter&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Spinebiter&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Spinebiter"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/39583?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Spinebiter&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/39924?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "4d0d666a-8e31-466c-937f-54df910f664e", "oracle_id": "4891923b-9c8c-4816-9623-d9362e4eb503", "multiverse_ids": [39725], "mtgo_id": 17885, "mtgo_foil_id": 17886, "tcgplayer_id": 10571, "cardmarket_id": 1803, "name": "Spined Basher", "lang": "en", "released_at": "2002-10-07", "uri": "https://api.scryfall.com/cards/4d0d666a-8e31-466c-937f-54df910f664e", "scryfall_uri": "https://scryfall.com/card/ons/172/spined-basher?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/4/d/4d0d666a-8e31-466c-937f-54df910f664e.jpg?1562913024", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/d/4d0d666a-8e31-466c-937f-54df910f664e.jpg?1562913024", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/4/d/4d0d666a-8e31-466c-937f-54df910f664e.jpg?1562913024", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/4/d/4d0d666a-8e31-466c-937f-54df910f664e.png?1562913024", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/d/4d0d666a-8e31-466c-937f-54df910f664e.jpg?1562913024", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/4/d/4d0d666a-8e31-466c-937f-54df910f664e.jpg?1562913024"}, "mana_cost": "{2}{B}", "cmc": 3.0, "type_line": "Creature \u2014 Zombie Beast", "oracle_text": "Morph {2}{B} (You may cast this card face down as a 2/2 creature for {3}. Turn it face up any time for its morph cost.)", "power": "3", "toughness": "1", "colors": ["B"], "color_identity": ["B"], "keywords": ["Morph"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "914a6c6d-cb3b-45e8-a2db-9978a2339faf", "set": "ons", "set_name": "Onslaught", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/914a6c6d-cb3b-45e8-a2db-9978a2339faf", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aons&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ons?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/4d0d666a-8e31-466c-937f-54df910f664e/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A4891923b-9c8c-4816-9623-d9362e4eb503&unique=prints", "collector_number": "172", "digital": false, "rarity": "common", "flavor_text": "\"How cute. Does it do any other tricks?\"\n\u2014Braids, dementia summoner", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Thomas M. Baxa", "artist_ids": ["ff346569-557d-4043-ae44-97c2c7cabd7d"], "illustration_id": "1b182c8f-5b3d-4395-91cc-95728f7ea55c", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 22893, "prices": {"usd": "0.06", "usd_foil": "0.16", "usd_etched": null, "eur": "0.05", "eur_foil": "0.20", "tix": "0.05"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=39725", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Spined+Basher&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Spined+Basher&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Spined+Basher"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/10571?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Spined+Basher&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/17885?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "ac71491f-3027-4257-a18f-ba4de6041feb", "oracle_id": "de0edcc8-1595-4dbb-ac8a-46dcd96299cb", "multiverse_ids": [380504], "mtgo_id": 52078, "mtgo_foil_id": 52079, "tcgplayer_id": 82188, "cardmarket_id": 266601, "name": "Spirespine", "lang": "en", "released_at": "2014-05-02", "uri": "https://api.scryfall.com/cards/ac71491f-3027-4257-a18f-ba4de6041feb", "scryfall_uri": "https://scryfall.com/card/jou/142/spirespine?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/a/c/ac71491f-3027-4257-a18f-ba4de6041feb.jpg?1593096345", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/c/ac71491f-3027-4257-a18f-ba4de6041feb.jpg?1593096345", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/a/c/ac71491f-3027-4257-a18f-ba4de6041feb.jpg?1593096345", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/a/c/ac71491f-3027-4257-a18f-ba4de6041feb.png?1593096345", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/c/ac71491f-3027-4257-a18f-ba4de6041feb.jpg?1593096345", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/a/c/ac71491f-3027-4257-a18f-ba4de6041feb.jpg?1593096345"}, "mana_cost": "{2}{G}", "cmc": 3.0, "type_line": "Enchantment Creature \u2014 Beast", "oracle_text": "Bestow {4}{G} (If you cast this card for its bestow cost, it's an Aura spell with enchant creature. It becomes a creature again if it's not attached to a creature.)\nSpirespine blocks each combat if able.\nEnchanted creature gets +4/+1 and blocks each combat if able.", "power": "4", "toughness": "1", "colors": ["G"], "color_identity": ["G"], "keywords": ["Bestow"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "restricted", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "204d2dca-1887-4721-9558-164aa7bbeb4f", "set": "jou", "set_name": "Journey into Nyx", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/204d2dca-1887-4721-9558-164aa7bbeb4f", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ajou&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/jou?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/ac71491f-3027-4257-a18f-ba4de6041feb/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ade0edcc8-1595-4dbb-ac8a-46dcd96299cb&unique=prints", "collector_number": "142", "digital": false, "rarity": "uncommon", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Sam Burley", "artist_ids": ["f89f4b78-cefb-41f7-b7cb-4f4d28de0c4f"], "illustration_id": "d180caee-d4cc-4797-a3f7-e159528984d6", "border_color": "black", "frame": "2003", "frame_effects": ["nyxtouched"], "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 18501, "prices": {"usd": "0.08", "usd_foil": "0.24", "usd_etched": null, "eur": "0.02", "eur_foil": "0.40", "tix": "0.05"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=380504", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Spirespine&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Spirespine&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Spirespine"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/82188?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Spirespine&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/52078?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "b96d6e67-f690-4f19-bb25-a7c2d2aaf42f", "oracle_id": "3913c7f2-86b7-4dd4-84a6-9bd4c1c66781", "multiverse_ids": [28009], "mtgo_id": 16270, "mtgo_foil_id": 16271, "tcgplayer_id": 8029, "cardmarket_id": 3233, "name": "Spiritmonger", "lang": "en", "released_at": "2001-06-04", "uri": "https://api.scryfall.com/cards/b96d6e67-f690-4f19-bb25-a7c2d2aaf42f", "scryfall_uri": "https://scryfall.com/card/apc/121/spiritmonger?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/b/9/b96d6e67-f690-4f19-bb25-a7c2d2aaf42f.jpg?1562938690", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/9/b96d6e67-f690-4f19-bb25-a7c2d2aaf42f.jpg?1562938690", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/b/9/b96d6e67-f690-4f19-bb25-a7c2d2aaf42f.jpg?1562938690", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/b/9/b96d6e67-f690-4f19-bb25-a7c2d2aaf42f.png?1562938690", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/9/b96d6e67-f690-4f19-bb25-a7c2d2aaf42f.jpg?1562938690", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/b/9/b96d6e67-f690-4f19-bb25-a7c2d2aaf42f.jpg?1562938690"}, "mana_cost": "{3}{B}{G}", "cmc": 5.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Whenever Spiritmonger deals damage to a creature, put a +1/+1 counter on Spiritmonger.\n{B}: Regenerate Spiritmonger.\n{G}: Spiritmonger becomes the color of your choice until end of turn.", "power": "6", "toughness": "6", "colors": ["B", "G"], "color_identity": ["B", "G"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "e4e00913-d08d-4899-86ea-5cf631e09ce0", "set": "apc", "set_name": "Apocalypse", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/e4e00913-d08d-4899-86ea-5cf631e09ce0", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aapc&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/apc?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/b96d6e67-f690-4f19-bb25-a7c2d2aaf42f/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A3913c7f2-86b7-4dd4-84a6-9bd4c1c66781&unique=prints", "collector_number": "121", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Glen Angus", "artist_ids": ["7be3b9e4-de9b-4a3d-884e-e67b9681d409"], "illustration_id": "f4567b05-8623-4d38-96b9-ea0529479ab8", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 13926, "penny_rank": 1509, "prices": {"usd": "2.21", "usd_foil": "72.63", "usd_etched": null, "eur": "1.29", "eur_foil": "40.00", "tix": "0.19"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=28009", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Spiritmonger&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Spiritmonger&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Spiritmonger"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/8029?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Spiritmonger&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/16270?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "ce20919e-cdc7-465d-8653-4b912ff08997", "oracle_id": "3913c7f2-86b7-4dd4-84a6-9bd4c1c66781", "multiverse_ids": [], "tcgplayer_id": 38413, "cardmarket_id": 17741, "name": "Spiritmonger", "lang": "en", "released_at": "2007-02-24", "uri": "https://api.scryfall.com/cards/ce20919e-cdc7-465d-8653-4b912ff08997", "scryfall_uri": "https://scryfall.com/card/pgpx/2007/spiritmonger?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/c/e/ce20919e-cdc7-465d-8653-4b912ff08997.jpg?1561929929", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/e/ce20919e-cdc7-465d-8653-4b912ff08997.jpg?1561929929", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/c/e/ce20919e-cdc7-465d-8653-4b912ff08997.jpg?1561929929", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/c/e/ce20919e-cdc7-465d-8653-4b912ff08997.png?1561929929", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/e/ce20919e-cdc7-465d-8653-4b912ff08997.jpg?1561929929", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/c/e/ce20919e-cdc7-465d-8653-4b912ff08997.jpg?1561929929"}, "mana_cost": "{3}{B}{G}", "cmc": 5.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Whenever Spiritmonger deals damage to a creature, put a +1/+1 counter on Spiritmonger.\n{B}: Regenerate Spiritmonger.\n{G}: Spiritmonger becomes the color of your choice until end of turn.", "power": "6", "toughness": "6", "colors": ["B", "G"], "color_identity": ["B", "G"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper"], "reserved": false, "foil": true, "nonfoil": false, "finishes": ["foil"], "oversized": false, "promo": true, "reprint": true, "variation": false, "set_id": "08e04147-c201-4c75-9b30-a566164ecaf3", "set": "pgpx", "set_name": "Grand Prix Promos", "set_type": "promo", "set_uri": "https://api.scryfall.com/sets/08e04147-c201-4c75-9b30-a566164ecaf3", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Apgpx&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/pgpx?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/ce20919e-cdc7-465d-8653-4b912ff08997/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A3913c7f2-86b7-4dd4-84a6-9bd4c1c66781&unique=prints", "collector_number": "2007", "digital": false, "rarity": "rare", "watermark": "grandprix", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Kev Walker", "artist_ids": ["f366a0ee-a0cd-466d-ba6a-90058c7a31a6"], "illustration_id": "69841a2c-f3a2-4472-b3b1-62fbfb9dcedd", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "promo_types": ["tourney"], "edhrec_rank": 13926, "penny_rank": 1509, "prices": {"usd": null, "usd_foil": "2.26", "usd_etched": null, "eur": null, "eur_foil": "1.00", "tix": null}, "related_uris": {"tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Spiritmonger&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Spiritmonger&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Spiritmonger"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/38413?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Spiritmonger&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Spiritmonger&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "746b98bf-5398-4a00-b4fe-a990ea9cfd77", "oracle_id": "413e8f01-4ee0-48df-8647-c614db38681e", "multiverse_ids": [39720], "mtgo_id": 18111, "mtgo_foil_id": 18112, "tcgplayer_id": 10640, "cardmarket_id": 1915, "name": "Spitting Gourna", "lang": "en", "released_at": "2002-10-07", "uri": "https://api.scryfall.com/cards/746b98bf-5398-4a00-b4fe-a990ea9cfd77", "scryfall_uri": "https://scryfall.com/card/ons/284/spitting-gourna?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/7/4/746b98bf-5398-4a00-b4fe-a990ea9cfd77.jpg?1562922510", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/4/746b98bf-5398-4a00-b4fe-a990ea9cfd77.jpg?1562922510", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/7/4/746b98bf-5398-4a00-b4fe-a990ea9cfd77.jpg?1562922510", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/7/4/746b98bf-5398-4a00-b4fe-a990ea9cfd77.png?1562922510", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/4/746b98bf-5398-4a00-b4fe-a990ea9cfd77.jpg?1562922510", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/7/4/746b98bf-5398-4a00-b4fe-a990ea9cfd77.jpg?1562922510"}, "mana_cost": "{3}{G}{G}", "cmc": 5.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Reach (This creature can block creatures with flying.)\nMorph {4}{G} (You may cast this card face down as a 2/2 creature for {3}. Turn it face up any time for its morph cost.)", "power": "3", "toughness": "4", "colors": ["G"], "color_identity": ["G"], "keywords": ["Reach", "Morph"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "914a6c6d-cb3b-45e8-a2db-9978a2339faf", "set": "ons", "set_name": "Onslaught", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/914a6c6d-cb3b-45e8-a2db-9978a2339faf", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aons&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ons?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/746b98bf-5398-4a00-b4fe-a990ea9cfd77/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A413e8f01-4ee0-48df-8647-c614db38681e&unique=prints", "collector_number": "284", "digital": false, "rarity": "common", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Heather Hudson", "artist_ids": ["4441fe52-9e41-40c1-9b74-8510426279ab"], "illustration_id": "30fbb129-0ffa-448a-9490-d31ede6c87d6", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 21751, "prices": {"usd": "0.09", "usd_foil": "0.24", "usd_etched": null, "eur": "0.01", "eur_foil": "0.30", "tix": "0.05"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=39720", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Spitting+Gourna&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Spitting+Gourna&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Spitting+Gourna"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/10640?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Spitting+Gourna&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/18111?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "dbf26e54-bdfe-4da8-acbb-4f1a98faba49", "oracle_id": "d9826660-0f34-4d82-8915-cf2796ab8d9a", "multiverse_ids": [518464], "mtgo_id": 89879, "tcgplayer_id": 236539, "cardmarket_id": 559666, "name": "Sproutback Trudge", "lang": "en", "released_at": "2021-04-23", "uri": "https://api.scryfall.com/cards/dbf26e54-bdfe-4da8-acbb-4f1a98faba49", "scryfall_uri": "https://scryfall.com/card/c21/68/sproutback-trudge?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/d/b/dbf26e54-bdfe-4da8-acbb-4f1a98faba49.jpg?1625192442", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/b/dbf26e54-bdfe-4da8-acbb-4f1a98faba49.jpg?1625192442", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/d/b/dbf26e54-bdfe-4da8-acbb-4f1a98faba49.jpg?1625192442", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/d/b/dbf26e54-bdfe-4da8-acbb-4f1a98faba49.png?1625192442", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/b/dbf26e54-bdfe-4da8-acbb-4f1a98faba49.jpg?1625192442", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/d/b/dbf26e54-bdfe-4da8-acbb-4f1a98faba49.jpg?1625192442"}, "mana_cost": "{7}{G}{G}", "cmc": 9.0, "type_line": "Creature \u2014 Fungus Beast", "oracle_text": "This spell costs {X} less to cast, where X is the amount of life you gained this turn.\nTrample\nAt the beginning of your end step, if you gained life this turn, you may cast Sproutback Trudge from your graveyard.", "power": "9", "toughness": "7", "colors": ["G"], "color_identity": ["G"], "keywords": ["Trample"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "27bf6dbd-a9e1-4904-afa7-d28fc7745c4f", "set": "c21", "set_name": "Commander 2021", "set_type": "commander", "set_uri": "https://api.scryfall.com/sets/27bf6dbd-a9e1-4904-afa7-d28fc7745c4f", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ac21&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/c21?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/dbf26e54-bdfe-4da8-acbb-4f1a98faba49/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ad9826660-0f34-4d82-8915-cf2796ab8d9a&unique=prints", "collector_number": "68", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Filip Burburan", "artist_ids": ["66082c3b-a623-4d34-be51-2475214b85d3"], "illustration_id": "10afc998-ab2b-4db5-83b6-c8756e99cdfb", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "edhrec_rank": 6025, "prices": {"usd": "0.15", "usd_foil": null, "usd_etched": null, "eur": "0.25", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=518464", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Sproutback+Trudge&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Sproutback+Trudge&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Sproutback+Trudge"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/236539?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Sproutback+Trudge&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/89879?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "50bf91a7-4d04-437c-a290-6adb52f25312", "oracle_id": "42784364-719a-49ca-b515-64146a8f82e8", "multiverse_ids": [24625], "mtgo_id": 14197, "mtgo_foil_id": 14198, "tcgplayer_id": 7379, "cardmarket_id": 3998, "name": "Spur Grappler", "lang": "en", "released_at": "2000-06-05", "uri": "https://api.scryfall.com/cards/50bf91a7-4d04-437c-a290-6adb52f25312", "scryfall_uri": "https://scryfall.com/card/pcy/104/spur-grappler?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/5/0/50bf91a7-4d04-437c-a290-6adb52f25312.jpg?1562909787", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/0/50bf91a7-4d04-437c-a290-6adb52f25312.jpg?1562909787", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/5/0/50bf91a7-4d04-437c-a290-6adb52f25312.jpg?1562909787", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/5/0/50bf91a7-4d04-437c-a290-6adb52f25312.png?1562909787", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/0/50bf91a7-4d04-437c-a290-6adb52f25312.jpg?1562909787", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/5/0/50bf91a7-4d04-437c-a290-6adb52f25312.jpg?1562909787"}, "mana_cost": "{2}{R}", "cmc": 3.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Spur Grappler gets +2/+1 as long as you control no untapped lands.", "power": "2", "toughness": "1", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "c233bd36-57c0-4aa2-ae6c-7aeabfb4e3ce", "set": "pcy", "set_name": "Prophecy", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/c233bd36-57c0-4aa2-ae6c-7aeabfb4e3ce", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Apcy&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/pcy?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/50bf91a7-4d04-437c-a290-6adb52f25312/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A42784364-719a-49ca-b515-64146a8f82e8&unique=prints", "collector_number": "104", "digital": false, "rarity": "common", "flavor_text": "Grapplers hunt in packs, driving their victims over steep mountain cliffs.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Randy Gallegos", "artist_ids": ["a5048cc7-438a-4378-98e4-da99b78e1db0"], "illustration_id": "a047e414-9593-42e7-8a3a-8eb8aa8c41fc", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 20758, "prices": {"usd": "0.05", "usd_foil": "4.11", "usd_etched": null, "eur": "0.02", "eur_foil": "0.58", "tix": "0.11"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=24625", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Spur+Grappler&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Spur+Grappler&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Spur+Grappler"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/7379?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Spur+Grappler&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/14197?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "46d7aaea-226b-4820-8db2-89dcdcbcc557", "oracle_id": "245b62a8-b606-4106-87c3-a60ce3e16906", "multiverse_ids": [39835], "mtgo_id": 18017, "mtgo_foil_id": 18018, "tcgplayer_id": 10622, "cardmarket_id": 1868, "name": "Spurred Wolverine", "lang": "en", "released_at": "2002-10-07", "uri": "https://api.scryfall.com/cards/46d7aaea-226b-4820-8db2-89dcdcbcc557", "scryfall_uri": "https://scryfall.com/card/ons/237/spurred-wolverine?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/4/6/46d7aaea-226b-4820-8db2-89dcdcbcc557.jpg?1562911611", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/6/46d7aaea-226b-4820-8db2-89dcdcbcc557.jpg?1562911611", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/4/6/46d7aaea-226b-4820-8db2-89dcdcbcc557.jpg?1562911611", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/4/6/46d7aaea-226b-4820-8db2-89dcdcbcc557.png?1562911611", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/6/46d7aaea-226b-4820-8db2-89dcdcbcc557.jpg?1562911611", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/4/6/46d7aaea-226b-4820-8db2-89dcdcbcc557.jpg?1562911611"}, "mana_cost": "{4}{R}", "cmc": 5.0, "type_line": "Creature \u2014 Wolverine Beast", "oracle_text": "Tap two untapped Beasts you control: Target creature gains first strike until end of turn.", "power": "3", "toughness": "2", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "914a6c6d-cb3b-45e8-a2db-9978a2339faf", "set": "ons", "set_name": "Onslaught", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/914a6c6d-cb3b-45e8-a2db-9978a2339faf", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aons&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ons?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/46d7aaea-226b-4820-8db2-89dcdcbcc557/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A245b62a8-b606-4106-87c3-a60ce3e16906&unique=prints", "collector_number": "237", "digital": false, "rarity": "common", "flavor_text": "After a few painful experiences, goblins learned not to pick their noses around the beasts.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Daren Bader", "artist_ids": ["7da1a585-c875-45e4-b322-5da9e8e1f651"], "illustration_id": "b871bb39-c568-484d-afde-a4ec00af086d", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 22527, "prices": {"usd": "0.05", "usd_foil": "0.22", "usd_etched": null, "eur": "0.02", "eur_foil": "0.10", "tix": "0.04"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=39835", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Spurred+Wolverine&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Spurred+Wolverine&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Spurred+Wolverine"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/10622?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Spurred+Wolverine&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/18017?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "47c63065-6051-4193-8457-713a8a800393", "oracle_id": "7e605a8c-d6d4-410a-aca4-52576d08d81c", "multiverse_ids": [74407], "mtgo_id": 22080, "mtgo_foil_id": 22081, "tcgplayer_id": 12548, "cardmarket_id": 12776, "name": "Stampeding Serow", "lang": "en", "released_at": "2005-06-03", "uri": "https://api.scryfall.com/cards/47c63065-6051-4193-8457-713a8a800393", "scryfall_uri": "https://scryfall.com/card/sok/150/stampeding-serow?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/4/7/47c63065-6051-4193-8457-713a8a800393.jpg?1562493496", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/7/47c63065-6051-4193-8457-713a8a800393.jpg?1562493496", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/4/7/47c63065-6051-4193-8457-713a8a800393.jpg?1562493496", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/4/7/47c63065-6051-4193-8457-713a8a800393.png?1562493496", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/7/47c63065-6051-4193-8457-713a8a800393.jpg?1562493496", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/4/7/47c63065-6051-4193-8457-713a8a800393.jpg?1562493496"}, "mana_cost": "{2}{G}{G}", "cmc": 4.0, "type_line": "Creature \u2014 Antelope Beast", "oracle_text": "Trample\nAt the beginning of your upkeep, return a green creature you control to its owner's hand.", "power": "5", "toughness": "4", "colors": ["G"], "color_identity": ["G"], "keywords": ["Trample"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "restricted", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "4db16ad3-2b95-442f-bb6b-e9aa7fe7f769", "set": "sok", "set_name": "Saviors of Kamigawa", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/4db16ad3-2b95-442f-bb6b-e9aa7fe7f769", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Asok&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/sok?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/47c63065-6051-4193-8457-713a8a800393/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A7e605a8c-d6d4-410a-aca4-52576d08d81c&unique=prints", "collector_number": "150", "digital": false, "rarity": "uncommon", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Edward P. Beard, Jr.", "artist_ids": ["b845b8ee-aeea-4822-bcf9-7230625ac95c"], "illustration_id": "ccc193fb-6f0d-438b-98e7-189ef83c5be5", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 16953, "penny_rank": 5981, "prices": {"usd": "0.28", "usd_foil": "1.51", "usd_etched": null, "eur": "0.25", "eur_foil": "2.79", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=74407", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Stampeding+Serow&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Stampeding+Serow&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Stampeding+Serow"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/12548?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Stampeding+Serow&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/22080?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "ddb5f524-fad6-4a63-b20f-3348a844fefa", "oracle_id": "c270c770-91ed-4540-b281-c4b60b943b34", "multiverse_ids": [3678], "mtgo_id": 7731, "mtgo_foil_id": 7732, "tcgplayer_id": 5931, "cardmarket_id": 8472, "name": "Stampeding Wildebeests", "lang": "en", "released_at": "1997-02-03", "uri": "https://api.scryfall.com/cards/ddb5f524-fad6-4a63-b20f-3348a844fefa", "scryfall_uri": "https://scryfall.com/card/vis/121/stampeding-wildebeests?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/d/d/ddb5f524-fad6-4a63-b20f-3348a844fefa.jpg?1562278656", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/d/ddb5f524-fad6-4a63-b20f-3348a844fefa.jpg?1562278656", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/d/d/ddb5f524-fad6-4a63-b20f-3348a844fefa.jpg?1562278656", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/d/d/ddb5f524-fad6-4a63-b20f-3348a844fefa.png?1562278656", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/d/ddb5f524-fad6-4a63-b20f-3348a844fefa.jpg?1562278656", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/d/d/ddb5f524-fad6-4a63-b20f-3348a844fefa.jpg?1562278656"}, "mana_cost": "{2}{G}{G}", "cmc": 4.0, "type_line": "Creature \u2014 Antelope Beast", "oracle_text": "Trample (This creature can deal excess combat damage to the player or planeswalker it's attacking.)\nAt the beginning of your upkeep, return a green creature you control to its owner's hand.", "power": "5", "toughness": "4", "colors": ["G"], "color_identity": ["G"], "keywords": ["Trample"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "restricted", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "2c32f1a9-7921-4826-bea0-80bbac70532c", "set": "vis", "set_name": "Visions", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/2c32f1a9-7921-4826-bea0-80bbac70532c", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Avis&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/vis?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/ddb5f524-fad6-4a63-b20f-3348a844fefa/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ac270c770-91ed-4540-b281-c4b60b943b34&unique=prints", "collector_number": "121", "digital": false, "rarity": "uncommon", "flavor_text": "Prayers for rain are answered with the thunder of hooves.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Randy Gallegos", "artist_ids": ["a5048cc7-438a-4378-98e4-da99b78e1db0"], "illustration_id": "b2dcaccf-2a72-4988-892a-84945a96331f", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 16005, "penny_rank": 8238, "prices": {"usd": "0.18", "usd_foil": null, "usd_etched": null, "eur": "0.09", "eur_foil": null, "tix": "0.04"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=3678", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Stampeding+Wildebeests&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Stampeding+Wildebeests&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Stampeding+Wildebeests"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/5931?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Stampeding+Wildebeests&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/7731?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "89be64a8-dd78-48c3-bb47-4f2a5ad9ec10", "oracle_id": "9d448c85-9c93-4e9e-8aa0-0035fc94112e", "multiverse_ids": [193567], "mtgo_id": 36552, "mtgo_foil_id": 36553, "tcgplayer_id": 34904, "cardmarket_id": 22592, "name": "Stomper Cub", "lang": "en", "released_at": "2010-04-23", "uri": "https://api.scryfall.com/cards/89be64a8-dd78-48c3-bb47-4f2a5ad9ec10", "scryfall_uri": "https://scryfall.com/card/roe/210/stomper-cub?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/8/9/89be64a8-dd78-48c3-bb47-4f2a5ad9ec10.jpg?1562706034", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/9/89be64a8-dd78-48c3-bb47-4f2a5ad9ec10.jpg?1562706034", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/8/9/89be64a8-dd78-48c3-bb47-4f2a5ad9ec10.jpg?1562706034", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/8/9/89be64a8-dd78-48c3-bb47-4f2a5ad9ec10.png?1562706034", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/9/89be64a8-dd78-48c3-bb47-4f2a5ad9ec10.jpg?1562706034", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/8/9/89be64a8-dd78-48c3-bb47-4f2a5ad9ec10.jpg?1562706034"}, "mana_cost": "{3}{G}{G}", "cmc": 5.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Trample", "power": "5", "toughness": "3", "colors": ["G"], "color_identity": ["G"], "keywords": ["Trample"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "eadb8a82-ec56-4623-b50e-42e7e60cb535", "set": "roe", "set_name": "Rise of the Eldrazi", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/eadb8a82-ec56-4623-b50e-42e7e60cb535", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aroe&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/roe?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/89be64a8-dd78-48c3-bb47-4f2a5ad9ec10/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A9d448c85-9c93-4e9e-8aa0-0035fc94112e&unique=prints", "collector_number": "210", "digital": false, "rarity": "common", "flavor_text": "\"This one is only a yearling, but it would be wise to move away before we provide it with excellent hunting practice.\"\n\u2014Samila, Murasa Expeditionary House", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Karl Kopinski", "artist_ids": ["0fad2c48-a56e-4a0b-b512-224f6f238f20"], "illustration_id": "449bd4ad-9376-4187-9890-aa8d4e542f0f", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 22678, "prices": {"usd": "0.08", "usd_foil": "0.20", "usd_etched": null, "eur": "0.02", "eur_foil": "0.08", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=193567", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Stomper+Cub&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Stomper+Cub&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Stomper+Cub"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/34904?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Stomper+Cub&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/36552?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "a29e17ba-d584-4296-9f43-17467edaa25f", "oracle_id": "782c47c5-b108-415c-9b70-a033ac52956f", "multiverse_ids": [491906], "mtgo_id": 83505, "arena_id": 73467, "tcgplayer_id": 222090, "cardmarket_id": 496205, "name": "Stonework Packbeast", "lang": "en", "released_at": "2020-09-25", "uri": "https://api.scryfall.com/cards/a29e17ba-d584-4296-9f43-17467edaa25f", "scryfall_uri": "https://scryfall.com/card/znr/255/stonework-packbeast?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/a/2/a29e17ba-d584-4296-9f43-17467edaa25f.jpg?1604201060", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/2/a29e17ba-d584-4296-9f43-17467edaa25f.jpg?1604201060", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/a/2/a29e17ba-d584-4296-9f43-17467edaa25f.jpg?1604201060", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/a/2/a29e17ba-d584-4296-9f43-17467edaa25f.png?1604201060", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/2/a29e17ba-d584-4296-9f43-17467edaa25f.jpg?1604201060", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/a/2/a29e17ba-d584-4296-9f43-17467edaa25f.jpg?1604201060"}, "mana_cost": "{2}", "cmc": 2.0, "type_line": "Artifact Creature \u2014 Beast", "oracle_text": "Stonework Packbeast is also a Cleric, Rogue, Warrior, and Wizard.\n{2}: Add one mana of any color.", "power": "2", "toughness": "1", "colors": [], "color_identity": [], "keywords": [], "produced_mana": ["B", "G", "R", "U", "W"], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "f4e01fa7-b254-42dd-849f-69b58027a8c4", "set": "znr", "set_name": "Zendikar Rising", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/f4e01fa7-b254-42dd-849f-69b58027a8c4", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aznr&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/znr?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/a29e17ba-d584-4296-9f43-17467edaa25f/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A782c47c5-b108-415c-9b70-a033ac52956f&unique=prints", "collector_number": "255", "digital": false, "rarity": "common", "flavor_text": "It will happily carry home your treasure or drag you back to civilization, as circumstances demand.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Dmitry Burmak", "artist_ids": ["9872f5c0-274a-48ce-a9ad-6f0d5654e29c"], "illustration_id": "659426a3-677c-4380-b501-bbcb3dd592bb", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 8683, "penny_rank": 8523, "preview": {"source": "Alliestrasza", "source_uri": "https://twitter.com/Alliestrasza/status/1302704688022708224", "previewed_at": "2020-09-06"}, "prices": {"usd": "0.04", "usd_foil": "0.11", "usd_etched": null, "eur": "0.10", "eur_foil": "0.10", "tix": "0.01"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=491906", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Stonework+Packbeast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Stonework+Packbeast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Stonework+Packbeast"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/222090?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Stonework+Packbeast&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/83505?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "324bc757-9942-4862-b691-5af42e07f682", "oracle_id": "3b78b672-7773-44c6-9a21-f89c058966ff", "multiverse_ids": [25869], "mtgo_id": 15281, "mtgo_foil_id": 15282, "tcgplayer_id": 7888, "cardmarket_id": 3390, "name": "Stratadon", "lang": "en", "released_at": "2001-02-05", "uri": "https://api.scryfall.com/cards/324bc757-9942-4862-b691-5af42e07f682", "scryfall_uri": "https://scryfall.com/card/pls/135/stratadon?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/3/2/324bc757-9942-4862-b691-5af42e07f682.jpg?1562905516", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/2/324bc757-9942-4862-b691-5af42e07f682.jpg?1562905516", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/3/2/324bc757-9942-4862-b691-5af42e07f682.jpg?1562905516", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/3/2/324bc757-9942-4862-b691-5af42e07f682.png?1562905516", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/2/324bc757-9942-4862-b691-5af42e07f682.jpg?1562905516", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/3/2/324bc757-9942-4862-b691-5af42e07f682.jpg?1562905516"}, "mana_cost": "{10}", "cmc": 10.0, "type_line": "Artifact Creature \u2014 Beast", "oracle_text": "Domain \u2014 This spell costs {1} less to cast for each basic land type among lands you control.\nTrample", "power": "5", "toughness": "5", "colors": [], "color_identity": [], "keywords": ["Trample", "Domain"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "restricted", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "82dc193b-bd5f-4883-a93f-a4155b467ee0", "set": "pls", "set_name": "Planeshift", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/82dc193b-bd5f-4883-a93f-a4155b467ee0", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Apls&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/pls?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/324bc757-9942-4862-b691-5af42e07f682/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A3b78b672-7773-44c6-9a21-f89c058966ff&unique=prints", "collector_number": "135", "digital": false, "rarity": "uncommon", "flavor_text": "Designed like the gargadons of Keld\u2014big and brutal.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Brian Sn\u00f5ddy", "artist_ids": ["770b4e16-de76-49ed-949f-84e6d2e06d25"], "illustration_id": "7e6788c4-43ef-4823-9d19-de977c81ac2c", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 17757, "prices": {"usd": "0.19", "usd_foil": "0.40", "usd_etched": null, "eur": "0.08", "eur_foil": "0.75", "tix": "0.09"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=25869", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Stratadon&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Stratadon&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Stratadon"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/7888?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Stratadon&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/15281?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "7ccfc49d-2a07-4088-a288-ba7be4da7bc2", "oracle_id": "f20640db-c5d4-4e00-9903-a33ff4f7820d", "multiverse_ids": [96927], "mtgo_id": 23743, "mtgo_foil_id": 23744, "tcgplayer_id": 13792, "cardmarket_id": 13274, "name": "Stratozeppelid", "lang": "en", "released_at": "2006-02-03", "uri": "https://api.scryfall.com/cards/7ccfc49d-2a07-4088-a288-ba7be4da7bc2", "scryfall_uri": "https://scryfall.com/card/gpt/36/stratozeppelid?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/7/c/7ccfc49d-2a07-4088-a288-ba7be4da7bc2.jpg?1593272091", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/c/7ccfc49d-2a07-4088-a288-ba7be4da7bc2.jpg?1593272091", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/7/c/7ccfc49d-2a07-4088-a288-ba7be4da7bc2.jpg?1593272091", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/7/c/7ccfc49d-2a07-4088-a288-ba7be4da7bc2.png?1593272091", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/c/7ccfc49d-2a07-4088-a288-ba7be4da7bc2.jpg?1593272091", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/7/c/7ccfc49d-2a07-4088-a288-ba7be4da7bc2.jpg?1593272091"}, "mana_cost": "{4}{U}", "cmc": 5.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Flying\nStratozeppelid can block only creatures with flying.", "power": "4", "toughness": "4", "colors": ["U"], "color_identity": ["U"], "keywords": ["Flying"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "restricted", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "594b4d09-8ce1-494d-bdb2-842c124bd087", "set": "gpt", "set_name": "Guildpact", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/594b4d09-8ce1-494d-bdb2-842c124bd087", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Agpt&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/gpt?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/7ccfc49d-2a07-4088-a288-ba7be4da7bc2/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Af20640db-c5d4-4e00-9903-a33ff4f7820d&unique=prints", "collector_number": "36", "digital": false, "rarity": "uncommon", "flavor_text": "The \"Days of Darkness\" mark the stratozeppelids' annual migration, when for five days they blot out the sun and trumpet their passing.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Ittoku", "artist_ids": ["d3a47c28-84e9-4b53-a236-5066ae1bb62f"], "illustration_id": "fae8213d-9b30-4663-a159-324ac22b6f32", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 23105, "prices": {"usd": "0.10", "usd_foil": "0.25", "usd_etched": null, "eur": "0.02", "eur_foil": "0.09", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=96927", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Stratozeppelid&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Stratozeppelid&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Stratozeppelid"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/13792?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Stratozeppelid&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/23743?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "7a7e4f99-ece4-473e-b712-40e4c53558e8", "oracle_id": "f46c72b8-e2e8-42e6-a2e7-ffa5810a9bf3", "multiverse_ids": [491855], "mtgo_id": 83403, "arena_id": 73416, "tcgplayer_id": 221897, "cardmarket_id": 495334, "name": "Swarm Shambler", "lang": "en", "released_at": "2020-09-25", "uri": "https://api.scryfall.com/cards/7a7e4f99-ece4-473e-b712-40e4c53558e8", "scryfall_uri": "https://scryfall.com/card/znr/207/swarm-shambler?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/7/a/7a7e4f99-ece4-473e-b712-40e4c53558e8.jpg?1604199508", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/a/7a7e4f99-ece4-473e-b712-40e4c53558e8.jpg?1604199508", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/7/a/7a7e4f99-ece4-473e-b712-40e4c53558e8.jpg?1604199508", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/7/a/7a7e4f99-ece4-473e-b712-40e4c53558e8.png?1604199508", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/a/7a7e4f99-ece4-473e-b712-40e4c53558e8.jpg?1604199508", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/7/a/7a7e4f99-ece4-473e-b712-40e4c53558e8.jpg?1604199508"}, "mana_cost": "{G}", "cmc": 1.0, "type_line": "Creature \u2014 Fungus Beast", "oracle_text": "Swarm Shambler enters the battlefield with a +1/+1 counter on it.\nWhenever a creature you control with a +1/+1 counter on it becomes the target of a spell an opponent controls, create a 1/1 green Insect creature token.\n{1}, {T}: Put a +1/+1 counter on Swarm Shambler.", "power": "0", "toughness": "0", "colors": ["G"], "color_identity": ["G"], "keywords": [], "all_parts": [{"object": "related_card", "id": "7a7e4f99-ece4-473e-b712-40e4c53558e8", "component": "combo_piece", "name": "Swarm Shambler", "type_line": "Creature \u2014 Fungus Beast", "uri": "https://api.scryfall.com/cards/7a7e4f99-ece4-473e-b712-40e4c53558e8"}, {"object": "related_card", "id": "84da9c36-5d9c-4e29-b6cc-c5c10e490f2e", "component": "token", "name": "Insect", "type_line": "Token Creature \u2014 Insect", "uri": "https://api.scryfall.com/cards/84da9c36-5d9c-4e29-b6cc-c5c10e490f2e"}], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "f4e01fa7-b254-42dd-849f-69b58027a8c4", "set": "znr", "set_name": "Zendikar Rising", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/f4e01fa7-b254-42dd-849f-69b58027a8c4", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aznr&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/znr?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/7a7e4f99-ece4-473e-b712-40e4c53558e8/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Af46c72b8-e2e8-42e6-a2e7-ffa5810a9bf3&unique=prints", "collector_number": "207", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Nicholas Gregory", "artist_ids": ["a1bba8ff-63b4-4786-b1c4-f1bfe5d3ab1c"], "illustration_id": "89da0519-d534-426d-891a-0301ca7467ac", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 6658, "penny_rank": 3258, "preview": {"source": "Swifth42", "source_uri": "https://twitter.com/moutier_theo/status/1301198055149051905", "previewed_at": "2020-09-02"}, "prices": {"usd": "0.13", "usd_foil": "0.19", "usd_etched": null, "eur": "0.17", "eur_foil": "0.15", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=491855", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Swarm+Shambler&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Swarm+Shambler&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Swarm+Shambler"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/221897?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Swarm+Shambler&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/83403?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "8bc288a3-ea56-450a-96fd-c2123121f663", "oracle_id": "67a494dc-deac-43ee-9e47-20fae9788a9f", "multiverse_ids": [457288], "mtgo_id": 71288, "arena_id": 69272, "tcgplayer_id": 183437, "cardmarket_id": 368611, "name": "Sylvan Brushstrider", "lang": "en", "released_at": "2019-01-25", "uri": "https://api.scryfall.com/cards/8bc288a3-ea56-450a-96fd-c2123121f663", "scryfall_uri": "https://scryfall.com/card/rna/144/sylvan-brushstrider?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/8/b/8bc288a3-ea56-450a-96fd-c2123121f663.jpg?1584831296", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/b/8bc288a3-ea56-450a-96fd-c2123121f663.jpg?1584831296", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/8/b/8bc288a3-ea56-450a-96fd-c2123121f663.jpg?1584831296", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/8/b/8bc288a3-ea56-450a-96fd-c2123121f663.png?1584831296", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/b/8bc288a3-ea56-450a-96fd-c2123121f663.jpg?1584831296", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/8/b/8bc288a3-ea56-450a-96fd-c2123121f663.jpg?1584831296"}, "mana_cost": "{2}{G}", "cmc": 3.0, "type_line": "Creature \u2014 Beast", "oracle_text": "When Sylvan Brushstrider enters the battlefield, you gain 2 life.", "power": "3", "toughness": "2", "colors": ["G"], "color_identity": ["G"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "97a7fd84-8d89-45a3-b48b-c951f6a3f9f1", "set": "rna", "set_name": "Ravnica Allegiance", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/97a7fd84-8d89-45a3-b48b-c951f6a3f9f1", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Arna&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/rna?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/8bc288a3-ea56-450a-96fd-c2123121f663/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A67a494dc-deac-43ee-9e47-20fae9788a9f&unique=prints", "collector_number": "144", "digital": false, "rarity": "common", "flavor_text": "The mournful lowing of brushstriders warns of changing weather and ill winds.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Dan Scott", "artist_ids": ["f852fa13-137e-40f2-bbc1-0f01df09c0e0"], "illustration_id": "2766a914-4115-46b3-a2fb-d0e29d05bb0a", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 20137, "penny_rank": 9040, "prices": {"usd": "0.04", "usd_foil": "0.01", "usd_etched": null, "eur": "0.01", "eur_foil": "0.49", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=457288", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Sylvan+Brushstrider&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Sylvan+Brushstrider&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Sylvan+Brushstrider"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/183437?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Sylvan+Brushstrider&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/71288?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "bb61443d-e47a-4fe1-b777-67a3670a5a56", "oracle_id": "70ecc25b-2004-4a3c-80c3-6d97bf0711eb", "multiverse_ids": [39924], "mtgo_id": 18165, "mtgo_foil_id": 18166, "tcgplayer_id": 10634, "cardmarket_id": 1918, "name": "Symbiotic Beast", "lang": "en", "released_at": "2002-10-07", "uri": "https://api.scryfall.com/cards/bb61443d-e47a-4fe1-b777-67a3670a5a56", "scryfall_uri": "https://scryfall.com/card/ons/287/symbiotic-beast?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/b/b/bb61443d-e47a-4fe1-b777-67a3670a5a56.jpg?1562939214", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/b/bb61443d-e47a-4fe1-b777-67a3670a5a56.jpg?1562939214", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/b/b/bb61443d-e47a-4fe1-b777-67a3670a5a56.jpg?1562939214", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/b/b/bb61443d-e47a-4fe1-b777-67a3670a5a56.png?1562939214", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/b/bb61443d-e47a-4fe1-b777-67a3670a5a56.jpg?1562939214", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/b/b/bb61443d-e47a-4fe1-b777-67a3670a5a56.jpg?1562939214"}, "mana_cost": "{4}{G}{G}", "cmc": 6.0, "type_line": "Creature \u2014 Insect Beast", "oracle_text": "When Symbiotic Beast dies, create four 1/1 green Insect creature tokens.", "power": "4", "toughness": "4", "colors": ["G"], "color_identity": ["G"], "keywords": [], "all_parts": [{"object": "related_card", "id": "bb61443d-e47a-4fe1-b777-67a3670a5a56", "component": "combo_piece", "name": "Symbiotic Beast", "type_line": "Creature \u2014 Insect Beast", "uri": "https://api.scryfall.com/cards/bb61443d-e47a-4fe1-b777-67a3670a5a56"}, {"object": "related_card", "id": "67563770-a392-4f69-b93b-6029da639993", "component": "token", "name": "Insect", "type_line": "Token Creature \u2014 Insect", "uri": "https://api.scryfall.com/cards/67563770-a392-4f69-b93b-6029da639993"}], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "restricted", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "914a6c6d-cb3b-45e8-a2db-9978a2339faf", "set": "ons", "set_name": "Onslaught", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/914a6c6d-cb3b-45e8-a2db-9978a2339faf", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aons&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ons?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/bb61443d-e47a-4fe1-b777-67a3670a5a56/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A70ecc25b-2004-4a3c-80c3-6d97bf0711eb&unique=prints", "collector_number": "287", "digital": false, "rarity": "uncommon", "flavor_text": "The insects found a meal in the carrion of the beast's prey. The beast found a spiffy new hairstyle.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Franz Vohwinkel", "artist_ids": ["3a243c17-3baa-4b53-9599-645311cd7d3d"], "illustration_id": "5f64d51c-85db-488d-a8ae-ab6e7cc466cf", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 15226, "prices": {"usd": "0.14", "usd_foil": "2.19", "usd_etched": null, "eur": "0.14", "eur_foil": "1.33", "tix": "0.04"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=39924", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Symbiotic+Beast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Symbiotic+Beast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Symbiotic+Beast"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/10634?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Symbiotic+Beast&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/18165?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "8ed3c301-8d8e-45fe-902a-af03a79525be", "oracle_id": "f6d0360c-ebc6-48b5-80ad-d52dadcdd5f5", "multiverse_ids": [214041], "mtgo_id": 39505, "mtgo_foil_id": 39506, "tcgplayer_id": 39143, "cardmarket_id": 245449, "name": "Tangle Hulk", "lang": "en", "released_at": "2011-02-04", "uri": "https://api.scryfall.com/cards/8ed3c301-8d8e-45fe-902a-af03a79525be", "scryfall_uri": "https://scryfall.com/card/mbs/139/tangle-hulk?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/8/e/8ed3c301-8d8e-45fe-902a-af03a79525be.jpg?1562612950", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/e/8ed3c301-8d8e-45fe-902a-af03a79525be.jpg?1562612950", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/8/e/8ed3c301-8d8e-45fe-902a-af03a79525be.jpg?1562612950", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/8/e/8ed3c301-8d8e-45fe-902a-af03a79525be.png?1562612950", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/e/8ed3c301-8d8e-45fe-902a-af03a79525be.jpg?1562612950", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/8/e/8ed3c301-8d8e-45fe-902a-af03a79525be.jpg?1562612950"}, "mana_cost": "{5}", "cmc": 5.0, "type_line": "Artifact Creature \u2014 Phyrexian Beast", "oracle_text": "{2}{G}: Regenerate Tangle Hulk.", "power": "5", "toughness": "3", "colors": [], "color_identity": ["G"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "f46c57e3-9301-4006-a6ca-06f3f65961fb", "set": "mbs", "set_name": "Mirrodin Besieged", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/f46c57e3-9301-4006-a6ca-06f3f65961fb", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ambs&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/mbs?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/8ed3c301-8d8e-45fe-902a-af03a79525be/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Af6d0360c-ebc6-48b5-80ad-d52dadcdd5f5&unique=prints", "collector_number": "139", "digital": false, "rarity": "common", "watermark": "phyrexian", "flavor_text": "\"A true Phyrexian predator. It will never know death, just as nature intended.\"\n\u2014Vorinclex, Voice of Hunger", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Mark Zug", "artist_ids": ["48e2b98c-5467-4671-bd42-4c3746115117"], "illustration_id": "75bfd764-b21b-4815-87e5-33ab9612d8ca", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 22401, "prices": {"usd": "0.02", "usd_foil": "0.14", "usd_etched": null, "eur": "0.02", "eur_foil": "0.20", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=214041", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Tangle+Hulk&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Tangle+Hulk&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Tangle+Hulk"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/39143?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Tangle+Hulk&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/39505?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "44af9170-bd99-4fde-b673-62d988312b2d", "oracle_id": "ee11cecc-4772-4bb2-9af8-a2a99eb037f9", "multiverse_ids": [253649], "mtgo_id": 46277, "mtgo_foil_id": 46278, "tcgplayer_id": 66635, "cardmarket_id": 258461, "name": "Tenement Crasher", "lang": "en", "released_at": "2012-10-05", "uri": "https://api.scryfall.com/cards/44af9170-bd99-4fde-b673-62d988312b2d", "scryfall_uri": "https://scryfall.com/card/rtr/108/tenement-crasher?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/4/4/44af9170-bd99-4fde-b673-62d988312b2d.jpg?1562785527", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/4/44af9170-bd99-4fde-b673-62d988312b2d.jpg?1562785527", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/4/4/44af9170-bd99-4fde-b673-62d988312b2d.jpg?1562785527", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/4/4/44af9170-bd99-4fde-b673-62d988312b2d.png?1562785527", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/4/44af9170-bd99-4fde-b673-62d988312b2d.jpg?1562785527", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/4/4/44af9170-bd99-4fde-b673-62d988312b2d.jpg?1562785527"}, "mana_cost": "{5}{R}", "cmc": 6.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Haste", "power": "5", "toughness": "4", "colors": ["R"], "color_identity": ["R"], "keywords": ["Haste"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "80b2374d-c5f1-403e-9772-f6c806fd275e", "set": "rtr", "set_name": "Return to Ravnica", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/80b2374d-c5f1-403e-9772-f6c806fd275e", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Artr&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/rtr?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/44af9170-bd99-4fde-b673-62d988312b2d/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aee11cecc-4772-4bb2-9af8-a2a99eb037f9&unique=prints", "collector_number": "108", "digital": false, "rarity": "common", "flavor_text": "Nothing was going to stop it\u2014not the narrow alleys, not the Boros garrison, and certainly not the four-story Orzhov cathedral.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Warren Mahy", "artist_ids": ["002c739e-aa1f-4c1d-921b-37cb2d1b1c5b"], "illustration_id": "24e56d68-ddf3-4654-aa21-9bca71d55532", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 22247, "prices": {"usd": "0.02", "usd_foil": "0.07", "usd_etched": null, "eur": "0.01", "eur_foil": "0.04", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=253649", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Tenement+Crasher&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Tenement+Crasher&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Tenement+Crasher"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/66635?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Tenement+Crasher&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/46277?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "41b65eba-140b-4c1d-b796-8134b7c1ede8", "oracle_id": "57d411c6-68d8-441d-885f-17412f6503c2", "multiverse_ids": [39659], "mtgo_id": 17649, "mtgo_foil_id": 17650, "tcgplayer_id": 10524, "cardmarket_id": 1870, "name": "Tephraderm", "lang": "en", "released_at": "2002-10-07", "uri": "https://api.scryfall.com/cards/41b65eba-140b-4c1d-b796-8134b7c1ede8", "scryfall_uri": "https://scryfall.com/card/ons/239/tephraderm?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/4/1/41b65eba-140b-4c1d-b796-8134b7c1ede8.jpg?1562910455", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/1/41b65eba-140b-4c1d-b796-8134b7c1ede8.jpg?1562910455", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/4/1/41b65eba-140b-4c1d-b796-8134b7c1ede8.jpg?1562910455", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/4/1/41b65eba-140b-4c1d-b796-8134b7c1ede8.png?1562910455", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/1/41b65eba-140b-4c1d-b796-8134b7c1ede8.jpg?1562910455", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/4/1/41b65eba-140b-4c1d-b796-8134b7c1ede8.jpg?1562910455"}, "mana_cost": "{4}{R}", "cmc": 5.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Whenever a creature deals damage to Tephraderm, Tephraderm deals that much damage to that creature.\nWhenever a spell deals damage to Tephraderm, Tephraderm deals that much damage to that spell's controller.", "power": "4", "toughness": "5", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "914a6c6d-cb3b-45e8-a2db-9978a2339faf", "set": "ons", "set_name": "Onslaught", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/914a6c6d-cb3b-45e8-a2db-9978a2339faf", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aons&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ons?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/41b65eba-140b-4c1d-b796-8134b7c1ede8/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A57d411c6-68d8-441d-885f-17412f6503c2&unique=prints", "collector_number": "239", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Paolo Parente", "artist_ids": ["d48dd097-720d-476a-8722-6a02854ae28b"], "illustration_id": "043a1515-d8c0-4d83-8038-c8152bb42bff", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 20814, "prices": {"usd": "0.18", "usd_foil": "1.50", "usd_etched": null, "eur": "0.10", "eur_foil": "3.89", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=39659", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Tephraderm&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Tephraderm&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Tephraderm"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/10524?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Tephraderm&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/17649?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "124dd668-ad84-45b9-9e04-1ea7cd2d7024", "oracle_id": "c7686204-0433-48cf-bbfb-5d32b6a25cc3", "multiverse_ids": [376547], "mtgo_id": 51414, "mtgo_foil_id": 51415, "tcgplayer_id": 71884, "cardmarket_id": 264748, "name": "Terra Ravager", "lang": "en", "released_at": "2013-11-01", "uri": "https://api.scryfall.com/cards/124dd668-ad84-45b9-9e04-1ea7cd2d7024", "scryfall_uri": "https://scryfall.com/card/c13/126/terra-ravager?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/1/2/124dd668-ad84-45b9-9e04-1ea7cd2d7024.jpg?1562898786", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/2/124dd668-ad84-45b9-9e04-1ea7cd2d7024.jpg?1562898786", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/1/2/124dd668-ad84-45b9-9e04-1ea7cd2d7024.jpg?1562898786", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/1/2/124dd668-ad84-45b9-9e04-1ea7cd2d7024.png?1562898786", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/2/124dd668-ad84-45b9-9e04-1ea7cd2d7024.jpg?1562898786", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/1/2/124dd668-ad84-45b9-9e04-1ea7cd2d7024.jpg?1562898786"}, "mana_cost": "{2}{R}{R}", "cmc": 4.0, "type_line": "Creature \u2014 Elemental Beast", "oracle_text": "Whenever Terra Ravager attacks, it gets +X/+0 until end of turn, where X is the number of lands defending player controls.", "power": "0", "toughness": "4", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "restricted", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "c62e6d4f-af8c-4f27-9bc8-361291890146", "set": "c13", "set_name": "Commander 2013", "set_type": "commander", "set_uri": "https://api.scryfall.com/sets/c62e6d4f-af8c-4f27-9bc8-361291890146", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ac13&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/c13?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/124dd668-ad84-45b9-9e04-1ea7cd2d7024/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ac7686204-0433-48cf-bbfb-5d32b6a25cc3&unique=prints", "collector_number": "126", "digital": false, "rarity": "uncommon", "flavor_text": "It lives in the mountaintops, feeds at the mountains' feet, and kills anything it finds on the path between.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Ralph Horsley", "artist_ids": ["a51444a8-eb4b-4615-a663-d1d418591ccb"], "illustration_id": "18d14c46-001c-40ad-98b4-0d72d31ed200", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "edhrec_rank": 14959, "prices": {"usd": "0.07", "usd_foil": null, "usd_etched": null, "eur": "0.02", "eur_foil": null, "tix": "0.05"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=376547", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Terra+Ravager&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Terra+Ravager&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Terra+Ravager"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/71884?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Terra+Ravager&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/51414?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "4ab062f4-e4b1-4129-9027-d0ca1a723273", "oracle_id": "d688baac-0574-4d88-b7eb-a7384c298ef5", "multiverse_ids": [186321], "mtgo_id": 34558, "mtgo_foil_id": 34559, "tcgplayer_id": 33450, "cardmarket_id": 21818, "name": "Terra Stomper", "lang": "en", "released_at": "2009-10-02", "uri": "https://api.scryfall.com/cards/4ab062f4-e4b1-4129-9027-d0ca1a723273", "scryfall_uri": "https://scryfall.com/card/zen/187/terra-stomper?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/4/a/4ab062f4-e4b1-4129-9027-d0ca1a723273.jpg?1562611988", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/a/4ab062f4-e4b1-4129-9027-d0ca1a723273.jpg?1562611988", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/4/a/4ab062f4-e4b1-4129-9027-d0ca1a723273.jpg?1562611988", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/4/a/4ab062f4-e4b1-4129-9027-d0ca1a723273.png?1562611988", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/a/4ab062f4-e4b1-4129-9027-d0ca1a723273.jpg?1562611988", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/4/a/4ab062f4-e4b1-4129-9027-d0ca1a723273.jpg?1562611988"}, "mana_cost": "{3}{G}{G}{G}", "cmc": 6.0, "type_line": "Creature \u2014 Beast", "oracle_text": "This spell can't be countered.\nTrample (This creature can deal excess combat damage to the player or planeswalker it's attacking.)", "power": "8", "toughness": "8", "colors": ["G"], "color_identity": ["G"], "keywords": ["Trample"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "eb16a2bd-a218-4e4e-8339-4aa1afc0c8d2", "set": "zen", "set_name": "Zendikar", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/eb16a2bd-a218-4e4e-8339-4aa1afc0c8d2", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Azen&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/zen?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/4ab062f4-e4b1-4129-9027-d0ca1a723273/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ad688baac-0574-4d88-b7eb-a7384c298ef5&unique=prints", "collector_number": "187", "digital": false, "rarity": "rare", "flavor_text": "Sometimes violent earthquakes, hurtling boulders, and unseasonable dust storms are wrongly attributed to the Roil.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Goran Josic", "artist_ids": ["522bfda2-454a-4a74-b717-42930040f73a"], "illustration_id": "adbded49-9191-4238-9078-8445fa890e57", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 9647, "penny_rank": 4148, "prices": {"usd": "0.23", "usd_foil": "0.88", "usd_etched": null, "eur": "0.15", "eur_foil": "0.60", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=186321", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Terra+Stomper&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Terra+Stomper&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Terra+Stomper"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/33450?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Terra+Stomper&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/34558?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "0c3d4afc-5bb7-4159-9a11-f9c989dd9043", "oracle_id": "f772e767-a931-4891-94eb-d92a8ca7f8c1", "multiverse_ids": [402070], "mtgo_id": 58473, "mtgo_foil_id": 58474, "tcgplayer_id": 105696, "cardmarket_id": 284913, "name": "Territorial Baloth", "lang": "en", "released_at": "2015-10-02", "uri": "https://api.scryfall.com/cards/0c3d4afc-5bb7-4159-9a11-f9c989dd9043", "scryfall_uri": "https://scryfall.com/card/bfz/196/territorial-baloth?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/0/c/0c3d4afc-5bb7-4159-9a11-f9c989dd9043.jpg?1562897795", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/c/0c3d4afc-5bb7-4159-9a11-f9c989dd9043.jpg?1562897795", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/0/c/0c3d4afc-5bb7-4159-9a11-f9c989dd9043.jpg?1562897795", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/0/c/0c3d4afc-5bb7-4159-9a11-f9c989dd9043.png?1562897795", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/c/0c3d4afc-5bb7-4159-9a11-f9c989dd9043.jpg?1562897795", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/0/c/0c3d4afc-5bb7-4159-9a11-f9c989dd9043.jpg?1562897795"}, "mana_cost": "{4}{G}", "cmc": 5.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Landfall \u2014 Whenever a land enters the battlefield under your control, Territorial Baloth gets +2/+2 until end of turn.", "power": "4", "toughness": "4", "colors": ["G"], "color_identity": ["G"], "keywords": ["Landfall"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "91719374-7ac5-4afa-ada8-5da964dcf1d4", "set": "bfz", "set_name": "Battle for Zendikar", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/91719374-7ac5-4afa-ada8-5da964dcf1d4", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Abfz&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/bfz?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/0c3d4afc-5bb7-4159-9a11-f9c989dd9043/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Af772e767-a931-4891-94eb-d92a8ca7f8c1&unique=prints", "collector_number": "196", "digital": false, "rarity": "common", "flavor_text": "It knows nothing of Eldrazi or Planeswalkers, just that there are new intruders in its territory.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Matt Stewart", "artist_ids": ["20871267-2d8a-41d5-b03a-be3d557c5734"], "illustration_id": "f02c5b1e-e683-4375-8351-d01c03935e44", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 15361, "penny_rank": 9853, "prices": {"usd": "0.04", "usd_foil": "0.35", "usd_etched": null, "eur": "0.02", "eur_foil": "0.15", "tix": "0.04"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=402070", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Territorial+Baloth&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Territorial+Baloth&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Territorial+Baloth"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/105696?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Territorial+Baloth&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/58473?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "45033b8a-f3a8-4a23-b6b0-e011e3e7a4c1", "oracle_id": "f772e767-a931-4891-94eb-d92a8ca7f8c1", "multiverse_ids": [170971], "mtgo_id": 34362, "mtgo_foil_id": 34363, "tcgplayer_id": 33451, "cardmarket_id": 21959, "name": "Territorial Baloth", "lang": "en", "released_at": "2009-10-02", "uri": "https://api.scryfall.com/cards/45033b8a-f3a8-4a23-b6b0-e011e3e7a4c1", "scryfall_uri": "https://scryfall.com/card/zen/188/territorial-baloth?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/4/5/45033b8a-f3a8-4a23-b6b0-e011e3e7a4c1.jpg?1562611772", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/5/45033b8a-f3a8-4a23-b6b0-e011e3e7a4c1.jpg?1562611772", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/4/5/45033b8a-f3a8-4a23-b6b0-e011e3e7a4c1.jpg?1562611772", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/4/5/45033b8a-f3a8-4a23-b6b0-e011e3e7a4c1.png?1562611772", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/5/45033b8a-f3a8-4a23-b6b0-e011e3e7a4c1.jpg?1562611772", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/4/5/45033b8a-f3a8-4a23-b6b0-e011e3e7a4c1.jpg?1562611772"}, "mana_cost": "{4}{G}", "cmc": 5.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Landfall \u2014 Whenever a land enters the battlefield under your control, Territorial Baloth gets +2/+2 until end of turn.", "power": "4", "toughness": "4", "colors": ["G"], "color_identity": ["G"], "keywords": ["Landfall"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "eb16a2bd-a218-4e4e-8339-4aa1afc0c8d2", "set": "zen", "set_name": "Zendikar", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/eb16a2bd-a218-4e4e-8339-4aa1afc0c8d2", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Azen&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/zen?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/45033b8a-f3a8-4a23-b6b0-e011e3e7a4c1/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Af772e767-a931-4891-94eb-d92a8ca7f8c1&unique=prints", "collector_number": "188", "digital": false, "rarity": "common", "flavor_text": "Its territory is defined by wherever it is at the moment.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Jesper Ejsing", "artist_ids": ["a5f8354a-8b51-4e59-96b2-0e3aeae4fa1d"], "illustration_id": "8812f87f-a67b-46c4-bbef-8676a3a862ff", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 15361, "penny_rank": 9853, "prices": {"usd": "0.05", "usd_foil": null, "usd_etched": null, "eur": "0.02", "eur_foil": "0.10", "tix": "0.05"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=170971", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Territorial+Baloth&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Territorial+Baloth&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Territorial+Baloth"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/33451?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Territorial+Baloth&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/34362?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "e89156b5-8bdb-41d1-a7aa-63f770a9b070", "oracle_id": "abedc360-e1dc-46ca-9ea6-5bb154ece547", "multiverse_ids": [39528], "mtgo_id": 17645, "mtgo_foil_id": 17646, "tcgplayer_id": 10624, "cardmarket_id": 1871, "name": "Thoughtbound Primoc", "lang": "en", "released_at": "2002-10-07", "uri": "https://api.scryfall.com/cards/e89156b5-8bdb-41d1-a7aa-63f770a9b070", "scryfall_uri": "https://scryfall.com/card/ons/240/thoughtbound-primoc?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/e/8/e89156b5-8bdb-41d1-a7aa-63f770a9b070.jpg?1562950377", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/8/e89156b5-8bdb-41d1-a7aa-63f770a9b070.jpg?1562950377", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/e/8/e89156b5-8bdb-41d1-a7aa-63f770a9b070.jpg?1562950377", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/e/8/e89156b5-8bdb-41d1-a7aa-63f770a9b070.png?1562950377", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/8/e89156b5-8bdb-41d1-a7aa-63f770a9b070.jpg?1562950377", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/e/8/e89156b5-8bdb-41d1-a7aa-63f770a9b070.jpg?1562950377"}, "mana_cost": "{2}{R}", "cmc": 3.0, "type_line": "Creature \u2014 Bird Beast", "oracle_text": "Flying\nAt the beginning of your upkeep, if a player controls more Wizards than each other player, the player who controls the most Wizards gains control of Thoughtbound Primoc.", "power": "2", "toughness": "3", "colors": ["R"], "color_identity": ["R"], "keywords": ["Flying"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "restricted", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "914a6c6d-cb3b-45e8-a2db-9978a2339faf", "set": "ons", "set_name": "Onslaught", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/914a6c6d-cb3b-45e8-a2db-9978a2339faf", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aons&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ons?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/e89156b5-8bdb-41d1-a7aa-63f770a9b070/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aabedc360-e1dc-46ca-9ea6-5bb154ece547&unique=prints", "collector_number": "240", "digital": false, "rarity": "uncommon", "flavor_text": "Efforts to use them as spies failed when they kept reporting to the enemy.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Jeff Miracola", "artist_ids": ["9b465bde-3656-4495-ace4-af4ce29999ed"], "illustration_id": "777ea9d5-5a19-4c4c-9d02-7aaa1a75ce62", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 22753, "prices": {"usd": "0.15", "usd_foil": "0.37", "usd_etched": null, "eur": "0.02", "eur_foil": "0.30", "tix": "0.06"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=39528", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Thoughtbound+Primoc&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Thoughtbound+Primoc&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Thoughtbound+Primoc"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/10624?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Thoughtbound+Primoc&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/17645?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "ba7a96ee-e2d1-4d76-a09e-d6868ddd9282", "oracle_id": "e5106a2d-caca-4519-a1a1-eabaec4005df", "multiverse_ids": [31817], "mtgo_id": 16873, "mtgo_foil_id": 16874, "tcgplayer_id": 9380, "cardmarket_id": 2517, "name": "Thought Devourer", "lang": "en", "released_at": "2001-10-01", "uri": "https://api.scryfall.com/cards/ba7a96ee-e2d1-4d76-a09e-d6868ddd9282", "scryfall_uri": "https://scryfall.com/card/ody/105/thought-devourer?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/b/a/ba7a96ee-e2d1-4d76-a09e-d6868ddd9282.jpg?1562929803", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/a/ba7a96ee-e2d1-4d76-a09e-d6868ddd9282.jpg?1562929803", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/b/a/ba7a96ee-e2d1-4d76-a09e-d6868ddd9282.jpg?1562929803", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/b/a/ba7a96ee-e2d1-4d76-a09e-d6868ddd9282.png?1562929803", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/a/ba7a96ee-e2d1-4d76-a09e-d6868ddd9282.jpg?1562929803", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/b/a/ba7a96ee-e2d1-4d76-a09e-d6868ddd9282.jpg?1562929803"}, "mana_cost": "{2}{U}{U}", "cmc": 4.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Flying\nYour maximum hand size is reduced by four.", "power": "4", "toughness": "4", "colors": ["U"], "color_identity": ["U"], "keywords": ["Flying"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "b0d90d2d-494a-4224-bfa0-36ce5ee281b1", "set": "ody", "set_name": "Odyssey", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/b0d90d2d-494a-4224-bfa0-36ce5ee281b1", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aody&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ody?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/ba7a96ee-e2d1-4d76-a09e-d6868ddd9282/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ae5106a2d-caca-4519-a1a1-eabaec4005df&unique=prints", "collector_number": "105", "digital": false, "rarity": "rare", "flavor_text": "Thinking is hard.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Jim Nelson", "artist_ids": ["aa9f64d1-29e1-4c82-877e-44c18183f40b"], "illustration_id": "2f416a0e-3044-4a6a-83c2-d162fad9c4d6", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 17374, "penny_rank": 5999, "prices": {"usd": "0.25", "usd_foil": "2.22", "usd_etched": null, "eur": "0.25", "eur_foil": "5.00", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=31817", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Thought+Devourer&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Thought+Devourer&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Thought+Devourer"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/9380?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Thought+Devourer&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/16873?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "4e05f63c-f93d-44b9-98e9-c5e3e3aad6b9", "oracle_id": "88e18dc9-8b11-4369-9860-a687925cdcb4", "multiverse_ids": [31803], "mtgo_id": 16895, "mtgo_foil_id": 16896, "tcgplayer_id": 9381, "cardmarket_id": 2518, "name": "Thought Eater", "lang": "en", "released_at": "2001-10-01", "uri": "https://api.scryfall.com/cards/4e05f63c-f93d-44b9-98e9-c5e3e3aad6b9", "scryfall_uri": "https://scryfall.com/card/ody/106/thought-eater?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/4/e/4e05f63c-f93d-44b9-98e9-c5e3e3aad6b9.jpg?1562909299", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/e/4e05f63c-f93d-44b9-98e9-c5e3e3aad6b9.jpg?1562909299", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/4/e/4e05f63c-f93d-44b9-98e9-c5e3e3aad6b9.jpg?1562909299", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/4/e/4e05f63c-f93d-44b9-98e9-c5e3e3aad6b9.png?1562909299", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/e/4e05f63c-f93d-44b9-98e9-c5e3e3aad6b9.jpg?1562909299", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/4/e/4e05f63c-f93d-44b9-98e9-c5e3e3aad6b9.jpg?1562909299"}, "mana_cost": "{1}{U}", "cmc": 2.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Flying\nYour maximum hand size is reduced by three.", "power": "2", "toughness": "2", "colors": ["U"], "color_identity": ["U"], "keywords": ["Flying"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "restricted", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "b0d90d2d-494a-4224-bfa0-36ce5ee281b1", "set": "ody", "set_name": "Odyssey", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/b0d90d2d-494a-4224-bfa0-36ce5ee281b1", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aody&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ody?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/4e05f63c-f93d-44b9-98e9-c5e3e3aad6b9/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A88e18dc9-8b11-4369-9860-a687925cdcb4&unique=prints", "collector_number": "106", "digital": false, "rarity": "uncommon", "flavor_text": "The first memory it sucks out of its host is how to get rid of it.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Luca Zontini", "artist_ids": ["aa57d42a-72c1-4d94-a200-3571233c4b20"], "illustration_id": "0fc0b7cf-d8f5-43fe-a37d-660c3ee93b96", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 15387, "penny_rank": 12347, "prices": {"usd": "0.18", "usd_foil": "0.72", "usd_etched": null, "eur": "0.25", "eur_foil": "0.48", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=31803", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Thought+Eater&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Thought+Eater&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Thought+Eater"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/9381?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Thought+Eater&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/16895?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "7284a7fd-cda8-43ac-b119-ad47b33c2ec4", "oracle_id": "9a640695-fc17-4ccc-ac88-ce48b6c6ad53", "multiverse_ids": [31774], "mtgo_id": 16949, "mtgo_foil_id": 16950, "tcgplayer_id": 9382, "cardmarket_id": 2519, "name": "Thought Nibbler", "lang": "en", "released_at": "2001-10-01", "uri": "https://api.scryfall.com/cards/7284a7fd-cda8-43ac-b119-ad47b33c2ec4", "scryfall_uri": "https://scryfall.com/card/ody/107/thought-nibbler?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/7/2/7284a7fd-cda8-43ac-b119-ad47b33c2ec4.jpg?1562916262", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/2/7284a7fd-cda8-43ac-b119-ad47b33c2ec4.jpg?1562916262", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/7/2/7284a7fd-cda8-43ac-b119-ad47b33c2ec4.jpg?1562916262", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/7/2/7284a7fd-cda8-43ac-b119-ad47b33c2ec4.png?1562916262", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/2/7284a7fd-cda8-43ac-b119-ad47b33c2ec4.jpg?1562916262", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/7/2/7284a7fd-cda8-43ac-b119-ad47b33c2ec4.jpg?1562916262"}, "mana_cost": "{U}", "cmc": 1.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Flying\nYour maximum hand size is reduced by two.", "power": "1", "toughness": "1", "colors": ["U"], "color_identity": ["U"], "keywords": ["Flying"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "b0d90d2d-494a-4224-bfa0-36ce5ee281b1", "set": "ody", "set_name": "Odyssey", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/b0d90d2d-494a-4224-bfa0-36ce5ee281b1", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aody&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ody?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/7284a7fd-cda8-43ac-b119-ad47b33c2ec4/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A9a640695-fc17-4ccc-ac88-ce48b6c6ad53&unique=prints", "collector_number": "107", "digital": false, "rarity": "common", "flavor_text": "Balshan wizards have long used them to gnaw away the memories they wish to forget.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Arnie Swekel", "artist_ids": ["af10ecf2-eb82-4100-97b2-6c236b0fa644"], "illustration_id": "7bf13c4f-e5f1-478a-9d52-5aa8fca9c7b7", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 19879, "prices": {"usd": "0.13", "usd_foil": "0.29", "usd_etched": null, "eur": "0.20", "eur_foil": "0.09", "tix": "0.06"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=31774", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Thought+Nibbler&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Thought+Nibbler&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Thought+Nibbler"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/9382?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Thought+Nibbler&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/16949?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "28667c8b-d02c-4e57-a050-1549207b65d1", "oracle_id": "0dd0e91a-d16b-4718-8d11-1a3fcf8e0753", "multiverse_ids": [249685], "mtgo_id": 45582, "mtgo_foil_id": 45583, "tcgplayer_id": 59807, "cardmarket_id": 256675, "name": "Thragtusk", "lang": "en", "released_at": "2012-07-13", "uri": "https://api.scryfall.com/cards/28667c8b-d02c-4e57-a050-1549207b65d1", "scryfall_uri": "https://scryfall.com/card/m13/193/thragtusk?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/2/8/28667c8b-d02c-4e57-a050-1549207b65d1.jpg?1562551691", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/8/28667c8b-d02c-4e57-a050-1549207b65d1.jpg?1562551691", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/2/8/28667c8b-d02c-4e57-a050-1549207b65d1.jpg?1562551691", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/2/8/28667c8b-d02c-4e57-a050-1549207b65d1.png?1562551691", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/8/28667c8b-d02c-4e57-a050-1549207b65d1.jpg?1562551691", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/2/8/28667c8b-d02c-4e57-a050-1549207b65d1.jpg?1562551691"}, "mana_cost": "{4}{G}", "cmc": 5.0, "type_line": "Creature \u2014 Beast", "oracle_text": "When Thragtusk enters the battlefield, you gain 5 life.\nWhen Thragtusk leaves the battlefield, create a 3/3 green Beast creature token.", "power": "5", "toughness": "3", "colors": ["G"], "color_identity": ["G"], "keywords": [], "all_parts": [{"object": "related_card", "id": "28667c8b-d02c-4e57-a050-1549207b65d1", "component": "combo_piece", "name": "Thragtusk", "type_line": "Creature \u2014 Beast", "uri": "https://api.scryfall.com/cards/28667c8b-d02c-4e57-a050-1549207b65d1"}, {"object": "related_card", "id": "c94010f1-cd4b-4f65-8a0e-2df6eec058ec", "component": "token", "name": "Beast", "type_line": "Token Creature \u2014 Beast", "uri": "https://api.scryfall.com/cards/c94010f1-cd4b-4f65-8a0e-2df6eec058ec"}], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "f9b0c6f4-8a4f-4f36-ad3c-e1e16fb8535d", "set": "m13", "set_name": "Magic 2013", "set_type": "core", "set_uri": "https://api.scryfall.com/sets/f9b0c6f4-8a4f-4f36-ad3c-e1e16fb8535d", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Am13&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/m13?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/28667c8b-d02c-4e57-a050-1549207b65d1/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A0dd0e91a-d16b-4718-8d11-1a3fcf8e0753&unique=prints", "collector_number": "193", "digital": false, "rarity": "rare", "flavor_text": "\"Always carry two spears.\"\n\u2014Mokgar, Kalonian hunter", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Nils Hamm", "artist_ids": ["c540d1fc-1500-457f-93cf-d6069ee66546"], "illustration_id": "b2db5e72-3c35-4ca4-9ee2-ec56e6425569", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 2935, "prices": {"usd": "0.26", "usd_foil": "4.31", "usd_etched": null, "eur": "0.62", "eur_foil": "3.00", "tix": "0.08"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=249685", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Thragtusk&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Thragtusk&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Thragtusk"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/59807?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Thragtusk&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/45582?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "43e1e3f3-a9b8-4185-9be9-798fe3cddd5c", "oracle_id": "0dd0e91a-d16b-4718-8d11-1a3fcf8e0753", "multiverse_ids": [], "tcgplayer_id": 247333, "cardmarket_id": 605064, "name": "Thragtusk", "lang": "en", "released_at": "2021-08-24", "uri": "https://api.scryfall.com/cards/43e1e3f3-a9b8-4185-9be9-798fe3cddd5c", "scryfall_uri": "https://scryfall.com/card/sld/238/thragtusk?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/4/3/43e1e3f3-a9b8-4185-9be9-798fe3cddd5c.jpg?1640744362", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/3/43e1e3f3-a9b8-4185-9be9-798fe3cddd5c.jpg?1640744362", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/4/3/43e1e3f3-a9b8-4185-9be9-798fe3cddd5c.jpg?1640744362", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/4/3/43e1e3f3-a9b8-4185-9be9-798fe3cddd5c.png?1640744362", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/3/43e1e3f3-a9b8-4185-9be9-798fe3cddd5c.jpg?1640744362", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/4/3/43e1e3f3-a9b8-4185-9be9-798fe3cddd5c.jpg?1640744362"}, "mana_cost": "{4}{G}", "cmc": 5.0, "type_line": "Creature \u2014 Beast", "oracle_text": "When Thragtusk enters the battlefield, you gain 5 life.\nWhen Thragtusk leaves the battlefield, create a 3/3 green Beast creature token.", "power": "5", "toughness": "3", "colors": ["G"], "color_identity": ["G"], "keywords": [], "all_parts": [{"object": "related_card", "id": "43e1e3f3-a9b8-4185-9be9-798fe3cddd5c", "component": "combo_piece", "name": "Thragtusk", "type_line": "Creature \u2014 Beast", "uri": "https://api.scryfall.com/cards/43e1e3f3-a9b8-4185-9be9-798fe3cddd5c"}, {"object": "related_card", "id": "d98c546e-2933-4833-b47b-084db56fb5d6", "component": "token", "name": "Beast", "type_line": "Token Creature \u2014 Beast", "uri": "https://api.scryfall.com/cards/d98c546e-2933-4833-b47b-084db56fb5d6"}], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "4d92a8a7-ccb0-437d-abdc-9d70fc5ed672", "set": "sld", "set_name": "Secret Lair Drop", "set_type": "box", "set_uri": "https://api.scryfall.com/sets/4d92a8a7-ccb0-437d-abdc-9d70fc5ed672", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Asld&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/sld?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/43e1e3f3-a9b8-4185-9be9-798fe3cddd5c/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A0dd0e91a-d16b-4718-8d11-1a3fcf8e0753&unique=prints", "collector_number": "238", "digital": false, "rarity": "rare", "flavor_text": "For a crash course in addition, hunt a single thragtusk.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Alexandre Chaudret", "artist_ids": ["e3838b23-b58d-4a0c-947d-ae3aee662eb2"], "illustration_id": "54cefcca-ed91-4c6b-bb04-c875eaaaf922", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "edhrec_rank": 2935, "prices": {"usd": "1.64", "usd_foil": "1.98", "usd_etched": null, "eur": "2.12", "eur_foil": "5.99", "tix": null}, "related_uris": {"tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Thragtusk&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Thragtusk&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Thragtusk"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/247333?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Thragtusk&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Thragtusk&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "da84de0e-a4cd-4dff-8ee3-87c9debf0969", "oracle_id": "7f67b8e0-fbbd-48ef-989d-690d44b70304", "multiverse_ids": [39853], "mtgo_id": 17931, "mtgo_foil_id": 17932, "tcgplayer_id": 10575, "cardmarket_id": 1808, "name": "Thrashing Mudspawn", "lang": "en", "released_at": "2002-10-07", "uri": "https://api.scryfall.com/cards/da84de0e-a4cd-4dff-8ee3-87c9debf0969", "scryfall_uri": "https://scryfall.com/card/ons/177/thrashing-mudspawn?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/d/a/da84de0e-a4cd-4dff-8ee3-87c9debf0969.jpg?1562947056", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/a/da84de0e-a4cd-4dff-8ee3-87c9debf0969.jpg?1562947056", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/d/a/da84de0e-a4cd-4dff-8ee3-87c9debf0969.jpg?1562947056", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/d/a/da84de0e-a4cd-4dff-8ee3-87c9debf0969.png?1562947056", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/a/da84de0e-a4cd-4dff-8ee3-87c9debf0969.jpg?1562947056", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/d/a/da84de0e-a4cd-4dff-8ee3-87c9debf0969.jpg?1562947056"}, "mana_cost": "{3}{B}{B}", "cmc": 5.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Whenever Thrashing Mudspawn is dealt damage, you lose that much life.\nMorph {1}{B}{B} (You may cast this card face down as a 2/2 creature for {3}. Turn it face up any time for its morph cost.)", "power": "4", "toughness": "4", "colors": ["B"], "color_identity": ["B"], "keywords": ["Morph"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "restricted", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "914a6c6d-cb3b-45e8-a2db-9978a2339faf", "set": "ons", "set_name": "Onslaught", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/914a6c6d-cb3b-45e8-a2db-9978a2339faf", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aons&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ons?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/da84de0e-a4cd-4dff-8ee3-87c9debf0969/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A7f67b8e0-fbbd-48ef-989d-690d44b70304&unique=prints", "collector_number": "177", "digital": false, "rarity": "uncommon", "flavor_text": "It just obeys you. It doesn't *like* you.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Thomas M. Baxa", "artist_ids": ["ff346569-557d-4043-ae44-97c2c7cabd7d"], "illustration_id": "ef59efbc-d9fd-41f9-bea6-cc10d6ca584f", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 17892, "prices": {"usd": "0.16", "usd_foil": "0.46", "usd_etched": null, "eur": "0.08", "eur_foil": "0.75", "tix": "0.06"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=39853", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Thrashing+Mudspawn&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Thrashing+Mudspawn&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Thrashing+Mudspawn"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/10575?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Thrashing+Mudspawn&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/17931?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "86bc07c6-2ba7-41f8-90ab-f9bbac86dd08", "oracle_id": "ef220824-fab4-4d8e-9ba4-65ff5ba1db66", "multiverse_ids": [19823], "mtgo_id": 13427, "mtgo_foil_id": 13428, "tcgplayer_id": 6733, "cardmarket_id": 11539, "name": "Thrashing Wumpus", "lang": "en", "released_at": "1999-10-04", "uri": "https://api.scryfall.com/cards/86bc07c6-2ba7-41f8-90ab-f9bbac86dd08", "scryfall_uri": "https://scryfall.com/card/mmq/166/thrashing-wumpus?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/8/6/86bc07c6-2ba7-41f8-90ab-f9bbac86dd08.jpg?1562381841", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/6/86bc07c6-2ba7-41f8-90ab-f9bbac86dd08.jpg?1562381841", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/8/6/86bc07c6-2ba7-41f8-90ab-f9bbac86dd08.jpg?1562381841", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/8/6/86bc07c6-2ba7-41f8-90ab-f9bbac86dd08.png?1562381841", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/6/86bc07c6-2ba7-41f8-90ab-f9bbac86dd08.jpg?1562381841", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/8/6/86bc07c6-2ba7-41f8-90ab-f9bbac86dd08.jpg?1562381841"}, "mana_cost": "{3}{B}{B}", "cmc": 5.0, "type_line": "Creature \u2014 Beast", "oracle_text": "{B}: Thrashing Wumpus deals 1 damage to each creature and each player.", "power": "3", "toughness": "3", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "385e11a4-492b-4d07-b4a6-a1409ef829b8", "set": "mmq", "set_name": "Mercadian Masques", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/385e11a4-492b-4d07-b4a6-a1409ef829b8", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ammq&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/mmq?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/86bc07c6-2ba7-41f8-90ab-f9bbac86dd08/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aef220824-fab4-4d8e-9ba4-65ff5ba1db66&unique=prints", "collector_number": "166", "digital": false, "rarity": "rare", "flavor_text": "Young wumpuses are malevolent and vicious\u2014but they grow out of it.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Jeff Miracola", "artist_ids": ["9b465bde-3656-4495-ace4-af4ce29999ed"], "illustration_id": "dd947667-f397-42ce-9892-b80b715b19fa", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 12772, "prices": {"usd": "0.66", "usd_foil": "42.49", "usd_etched": null, "eur": "0.20", "eur_foil": "66.15", "tix": "0.35"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=19823", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Thrashing+Wumpus&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Thrashing+Wumpus&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Thrashing+Wumpus"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/6733?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Thrashing+Wumpus&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/13427?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "57996732-c9e4-4271-9d5f-2a8c77f8d177", "oracle_id": "e88915fd-7867-45e6-b4b9-ca0af1823c0d", "multiverse_ids": [24658], "mtgo_id": 14209, "mtgo_foil_id": 14210, "tcgplayer_id": 7386, "cardmarket_id": 4022, "name": "Thresher Beast", "lang": "en", "released_at": "2000-06-05", "uri": "https://api.scryfall.com/cards/57996732-c9e4-4271-9d5f-2a8c77f8d177", "scryfall_uri": "https://scryfall.com/card/pcy/128/thresher-beast?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/5/7/57996732-c9e4-4271-9d5f-2a8c77f8d177.jpg?1562911143", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/7/57996732-c9e4-4271-9d5f-2a8c77f8d177.jpg?1562911143", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/5/7/57996732-c9e4-4271-9d5f-2a8c77f8d177.jpg?1562911143", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/5/7/57996732-c9e4-4271-9d5f-2a8c77f8d177.png?1562911143", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/7/57996732-c9e4-4271-9d5f-2a8c77f8d177.jpg?1562911143", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/5/7/57996732-c9e4-4271-9d5f-2a8c77f8d177.jpg?1562911143"}, "mana_cost": "{3}{G}{G}", "cmc": 5.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Whenever Thresher Beast becomes blocked, defending player sacrifices a land.", "power": "4", "toughness": "4", "colors": ["G"], "color_identity": ["G"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "c233bd36-57c0-4aa2-ae6c-7aeabfb4e3ce", "set": "pcy", "set_name": "Prophecy", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/c233bd36-57c0-4aa2-ae6c-7aeabfb4e3ce", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Apcy&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/pcy?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/57996732-c9e4-4271-9d5f-2a8c77f8d177/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ae88915fd-7867-45e6-b4b9-ca0af1823c0d&unique=prints", "collector_number": "128", "digital": false, "rarity": "common", "flavor_text": "It destroys everything in its path, including the path itself.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Jeff Easley", "artist_ids": ["da17055e-693c-461a-b132-67dd88b42ca6"], "illustration_id": "79f0da37-646a-40eb-8ba4-e80908feb3ad", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 17950, "prices": {"usd": "0.10", "usd_foil": "0.73", "usd_etched": null, "eur": "0.02", "eur_foil": "1.67", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=24658", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Thresher+Beast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Thresher+Beast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Thresher+Beast"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/7386?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Thresher+Beast&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/14209?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "e376a953-2075-4595-a3ef-85d0f68aa8b2", "oracle_id": "f55334d9-1ec2-4667-bf28-5a0384d6f053", "multiverse_ids": [559889], "tcgplayer_id": 269635, "cardmarket_id": 652901, "name": "Thunderfoot Baloth", "lang": "en", "released_at": "2022-04-29", "uri": "https://api.scryfall.com/cards/e376a953-2075-4595-a3ef-85d0f68aa8b2", "scryfall_uri": "https://scryfall.com/card/ncc/317/thunderfoot-baloth?utm_source=api", "layout": "normal", "highres_image": false, "image_status": "lowres", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/e/3/e376a953-2075-4595-a3ef-85d0f68aa8b2.jpg?1650426042", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/3/e376a953-2075-4595-a3ef-85d0f68aa8b2.jpg?1650426042", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/e/3/e376a953-2075-4595-a3ef-85d0f68aa8b2.jpg?1650426042", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/e/3/e376a953-2075-4595-a3ef-85d0f68aa8b2.png?1650426042", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/3/e376a953-2075-4595-a3ef-85d0f68aa8b2.jpg?1650426042", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/e/3/e376a953-2075-4595-a3ef-85d0f68aa8b2.jpg?1650426042"}, "mana_cost": "{4}{G}{G}", "cmc": 6.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Trample\nLieutenant \u2014 As long as you control your commander, Thunderfoot Baloth gets +2/+2 and other creatures you control get +2/+2 and have trample.", "power": "5", "toughness": "5", "colors": ["G"], "color_identity": ["G"], "keywords": ["Trample", "Lieutenant"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "c51de34b-d4d6-4179-a432-573744ded119", "set": "ncc", "set_name": "New Capenna Commander", "set_type": "commander", "set_uri": "https://api.scryfall.com/sets/c51de34b-d4d6-4179-a432-573744ded119", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ancc&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ncc?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/e376a953-2075-4595-a3ef-85d0f68aa8b2/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Af55334d9-1ec2-4667-bf28-5a0384d6f053&unique=prints", "collector_number": "317", "digital": false, "rarity": "rare", "flavor_text": "\"Odd. I didn't see any lightning . . . .\"\n\u2014Herreth, poacher, last words", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Nicholas Gregory", "artist_ids": ["a1bba8ff-63b4-4786-b1c4-f1bfe5d3ab1c"], "illustration_id": "b7ca1d05-2de0-4784-aca9-0b09dcda0271", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "edhrec_rank": 1951, "prices": {"usd": "0.57", "usd_foil": null, "usd_etched": null, "eur": "0.66", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=559889", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Thunderfoot+Baloth&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Thunderfoot+Baloth&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Thunderfoot+Baloth"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/269635?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Thunderfoot+Baloth&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Thunderfoot+Baloth&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "9730de49-efa9-42ec-8531-43313fb58a44", "oracle_id": "f55334d9-1ec2-4667-bf28-5a0384d6f053", "multiverse_ids": [389719], "mtgo_id": 55137, "mtgo_foil_id": 55138, "tcgplayer_id": 94388, "cardmarket_id": 270685, "name": "Thunderfoot Baloth", "lang": "en", "released_at": "2014-11-07", "uri": "https://api.scryfall.com/cards/9730de49-efa9-42ec-8531-43313fb58a44", "scryfall_uri": "https://scryfall.com/card/c14/49/thunderfoot-baloth?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/9/7/9730de49-efa9-42ec-8531-43313fb58a44.jpg?1561951126", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/7/9730de49-efa9-42ec-8531-43313fb58a44.jpg?1561951126", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/9/7/9730de49-efa9-42ec-8531-43313fb58a44.jpg?1561951126", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/9/7/9730de49-efa9-42ec-8531-43313fb58a44.png?1561951126", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/7/9730de49-efa9-42ec-8531-43313fb58a44.jpg?1561951126", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/9/7/9730de49-efa9-42ec-8531-43313fb58a44.jpg?1561951126"}, "mana_cost": "{4}{G}{G}", "cmc": 6.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Trample\nLieutenant \u2014 As long as you control your commander, Thunderfoot Baloth gets +2/+2 and other creatures you control get +2/+2 and have trample.", "power": "5", "toughness": "5", "colors": ["G"], "color_identity": ["G"], "keywords": ["Trample", "Lieutenant"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "0980a6e2-eb78-4ad2-8396-cef08fce365e", "set": "c14", "set_name": "Commander 2014", "set_type": "commander", "set_uri": "https://api.scryfall.com/sets/0980a6e2-eb78-4ad2-8396-cef08fce365e", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ac14&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/c14?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/9730de49-efa9-42ec-8531-43313fb58a44/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Af55334d9-1ec2-4667-bf28-5a0384d6f053&unique=prints", "collector_number": "49", "digital": false, "rarity": "rare", "flavor_text": "If you hear it, it's too late.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Marco Nelor", "artist_ids": ["c0f95ec3-c7ca-47d6-be5c-b37dfce37be5"], "illustration_id": "206a23da-876f-42b6-92b8-d20b1d313e8d", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "edhrec_rank": 1951, "prices": {"usd": "3.93", "usd_foil": null, "usd_etched": null, "eur": "3.11", "eur_foil": null, "tix": "4.48"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=389719", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Thunderfoot+Baloth&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Thunderfoot+Baloth&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Thunderfoot+Baloth"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/94388?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Thunderfoot+Baloth&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/55137?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "e2fab443-0f4b-45ea-8a6d-435b93803409", "oracle_id": "487382ea-0050-4a3f-bcf6-0ce41d6f4ebf", "multiverse_ids": [218077], "mtgo_id": 39868, "mtgo_foil_id": 39869, "tcgplayer_id": 39591, "cardmarket_id": 245946, "name": "Thundering Tanadon", "lang": "en", "released_at": "2011-05-13", "uri": "https://api.scryfall.com/cards/e2fab443-0f4b-45ea-8a6d-435b93803409", "scryfall_uri": "https://scryfall.com/card/nph/122/thundering-tanadon?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/e/2/e2fab443-0f4b-45ea-8a6d-435b93803409.jpg?1562882228", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/2/e2fab443-0f4b-45ea-8a6d-435b93803409.jpg?1562882228", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/e/2/e2fab443-0f4b-45ea-8a6d-435b93803409.jpg?1562882228", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/e/2/e2fab443-0f4b-45ea-8a6d-435b93803409.png?1562882228", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/2/e2fab443-0f4b-45ea-8a6d-435b93803409.jpg?1562882228", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/e/2/e2fab443-0f4b-45ea-8a6d-435b93803409.jpg?1562882228"}, "mana_cost": "{4}{G/P}{G/P}", "cmc": 6.0, "type_line": "Artifact Creature \u2014 Phyrexian Beast", "oracle_text": "({G/P} can be paid with either {G} or 2 life.)\nTrample", "power": "5", "toughness": "4", "colors": ["G"], "color_identity": ["G"], "keywords": ["Trample"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "e8e356d8-6d01-4dab-aa07-d0999dc9359f", "set": "nph", "set_name": "New Phyrexia", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/e8e356d8-6d01-4dab-aa07-d0999dc9359f", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Anph&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/nph?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/e2fab443-0f4b-45ea-8a6d-435b93803409/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A487382ea-0050-4a3f-bcf6-0ce41d6f4ebf&unique=prints", "collector_number": "122", "digital": false, "rarity": "common", "watermark": "phyrexian", "flavor_text": "\"We do not need beakers and vials to test our predators.\"\n\u2014Vorinclex, Voice of Hunger", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Dan Scott", "artist_ids": ["f852fa13-137e-40f2-bbc1-0f01df09c0e0"], "illustration_id": "46b013c2-1415-41b6-82d0-804f24b86b1e", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 17421, "penny_rank": 9996, "prices": {"usd": "0.06", "usd_foil": "0.25", "usd_etched": null, "eur": "0.14", "eur_foil": "0.48", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=218077", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Thundering+Tanadon&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Thundering+Tanadon&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Thundering+Tanadon"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/39591?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Thundering+Tanadon&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/39868?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "d68fc3bc-eb3b-4504-93a3-8943d07b23f8", "oracle_id": "e53532db-5b14-429e-8437-a369c5b8632b", "multiverse_ids": [180458], "mtgo_id": 34488, "mtgo_foil_id": 34489, "tcgplayer_id": 33452, "cardmarket_id": 21960, "name": "Timbermaw Larva", "lang": "en", "released_at": "2009-10-02", "uri": "https://api.scryfall.com/cards/d68fc3bc-eb3b-4504-93a3-8943d07b23f8", "scryfall_uri": "https://scryfall.com/card/zen/189/timbermaw-larva?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/d/6/d68fc3bc-eb3b-4504-93a3-8943d07b23f8.jpg?1562617126", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/6/d68fc3bc-eb3b-4504-93a3-8943d07b23f8.jpg?1562617126", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/d/6/d68fc3bc-eb3b-4504-93a3-8943d07b23f8.jpg?1562617126", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/d/6/d68fc3bc-eb3b-4504-93a3-8943d07b23f8.png?1562617126", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/6/d68fc3bc-eb3b-4504-93a3-8943d07b23f8.jpg?1562617126", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/d/6/d68fc3bc-eb3b-4504-93a3-8943d07b23f8.jpg?1562617126"}, "mana_cost": "{3}{G}", "cmc": 4.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Whenever Timbermaw Larva attacks, it gets +1/+1 until end of turn for each Forest you control.", "power": "2", "toughness": "2", "colors": ["G"], "color_identity": ["G"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "eb16a2bd-a218-4e4e-8339-4aa1afc0c8d2", "set": "zen", "set_name": "Zendikar", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/eb16a2bd-a218-4e4e-8339-4aa1afc0c8d2", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Azen&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/zen?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/d68fc3bc-eb3b-4504-93a3-8943d07b23f8/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ae53532db-5b14-429e-8437-a369c5b8632b&unique=prints", "collector_number": "189", "digital": false, "rarity": "common", "flavor_text": "\"You can't trust your eyes. A tree might look healthy, but its insides tell a different tale.\"\n\u2014Zahr Gada, Halimar expedition leader", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Matt Cavotta", "artist_ids": ["2e6a0611-9411-4ba4-98e3-c0e18cbf9f83"], "illustration_id": "193008f7-988c-48f4-a8d3-51ea58421d2b", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 16524, "penny_rank": 10131, "prices": {"usd": "0.07", "usd_foil": "0.33", "usd_etched": null, "eur": "0.05", "eur_foil": "0.24", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=180458", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Timbermaw+Larva&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Timbermaw+Larva&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Timbermaw+Larva"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/33452?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Timbermaw+Larva&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/34488?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "3f42c4d7-b555-449c-a539-119c1ae62232", "oracle_id": "2cc63297-7eb9-422e-838c-a9260756d689", "multiverse_ids": [46691], "mtgo_id": 18794, "mtgo_foil_id": 18795, "tcgplayer_id": 10948, "cardmarket_id": 1122, "name": "Titanic Bulvox", "lang": "en", "released_at": "2003-05-26", "uri": "https://api.scryfall.com/cards/3f42c4d7-b555-449c-a539-119c1ae62232", "scryfall_uri": "https://scryfall.com/card/scg/129/titanic-bulvox?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/3/f/3f42c4d7-b555-449c-a539-119c1ae62232.jpg?1562528017", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/f/3f42c4d7-b555-449c-a539-119c1ae62232.jpg?1562528017", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/3/f/3f42c4d7-b555-449c-a539-119c1ae62232.jpg?1562528017", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/3/f/3f42c4d7-b555-449c-a539-119c1ae62232.png?1562528017", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/f/3f42c4d7-b555-449c-a539-119c1ae62232.jpg?1562528017", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/3/f/3f42c4d7-b555-449c-a539-119c1ae62232.jpg?1562528017"}, "mana_cost": "{6}{G}{G}", "cmc": 8.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Trample\nMorph {4}{G}{G}{G} (You may cast this card face down as a 2/2 creature for {3}. Turn it face up any time for its morph cost.)", "power": "7", "toughness": "4", "colors": ["G"], "color_identity": ["G"], "keywords": ["Morph", "Trample"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "5133c3a1-1412-4ce6-a1f0-73b695966ded", "set": "scg", "set_name": "Scourge", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/5133c3a1-1412-4ce6-a1f0-73b695966ded", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ascg&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/scg?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/3f42c4d7-b555-449c-a539-119c1ae62232/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A2cc63297-7eb9-422e-838c-a9260756d689&unique=prints", "collector_number": "129", "digital": false, "rarity": "common", "flavor_text": "With natural laws abandoned, excess thrives.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Wayne England", "artist_ids": ["62dc90c0-4bc2-4d42-ad76-59cad9243566"], "illustration_id": "d10b9626-0f76-4b16-990d-6ca381c846b9", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 20554, "penny_rank": 5459, "prices": {"usd": "0.08", "usd_foil": "0.82", "usd_etched": null, "eur": "0.09", "eur_foil": "0.28", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=46691", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Titanic+Bulvox&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Titanic+Bulvox&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Titanic+Bulvox"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/10948?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Titanic+Bulvox&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/18794?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "9d02e1e8-b85b-4e26-8ab8-ca2f49d05b88", "oracle_id": "8656a32b-eb95-402b-9daf-0b6d876b4b13", "multiverse_ids": [479694], "mtgo_id": 80357, "arena_id": 71241, "tcgplayer_id": 212030, "cardmarket_id": 451103, "name": "Titanoth Rex", "lang": "en", "released_at": "2020-04-24", "uri": "https://api.scryfall.com/cards/9d02e1e8-b85b-4e26-8ab8-ca2f49d05b88", "scryfall_uri": "https://scryfall.com/card/iko/174/titanoth-rex?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/9/d/9d02e1e8-b85b-4e26-8ab8-ca2f49d05b88.jpg?1591227898", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/d/9d02e1e8-b85b-4e26-8ab8-ca2f49d05b88.jpg?1591227898", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/9/d/9d02e1e8-b85b-4e26-8ab8-ca2f49d05b88.jpg?1591227898", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/9/d/9d02e1e8-b85b-4e26-8ab8-ca2f49d05b88.png?1591227898", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/d/9d02e1e8-b85b-4e26-8ab8-ca2f49d05b88.jpg?1591227898", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/9/d/9d02e1e8-b85b-4e26-8ab8-ca2f49d05b88.jpg?1591227898"}, "mana_cost": "{7}{G}{G}", "cmc": 9.0, "type_line": "Creature \u2014 Dinosaur Beast", "oracle_text": "Trample\nCycling {1}{G} ({1}{G}, Discard this card: Draw a card.)\nWhen you cycle Titanoth Rex, put a trample counter on target creature you control.", "power": "11", "toughness": "11", "colors": ["G"], "color_identity": ["G"], "keywords": ["Trample", "Cycling"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "restricted", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "19feda43-15ab-427e-a0e4-148a4bf2b03a", "set": "iko", "set_name": "Ikoria: Lair of Behemoths", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/19feda43-15ab-427e-a0e4-148a4bf2b03a", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aiko&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/iko?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/9d02e1e8-b85b-4e26-8ab8-ca2f49d05b88/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A8656a32b-eb95-402b-9daf-0b6d876b4b13&unique=prints", "collector_number": "174", "digital": false, "rarity": "uncommon", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Svetlin Velinov", "artist_ids": ["ffd063ae-c097-4f26-b2e6-b1e2137708bc"], "illustration_id": "b31d3968-2dd7-4e85-9c17-e1946c71ac69", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 2214, "penny_rank": 1449, "preview": {"source": "Gizmodo", "source_uri": "https://io9.gizmodo.com/godzilla-is-coming-to-magic-the-gathering-and-hes-bri-1842619728", "previewed_at": "2020-04-02"}, "prices": {"usd": "0.20", "usd_foil": "0.46", "usd_etched": null, "eur": "0.10", "eur_foil": "0.59", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=479694", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Titanoth+Rex&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Titanoth+Rex&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Titanoth+Rex"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/212030?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Titanoth+Rex&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/80357?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "b4817b86-d55a-4334-82ee-603f8c4b3e93", "oracle_id": "8656a32b-eb95-402b-9daf-0b6d876b4b13", "multiverse_ids": [482376], "arena_id": 73523, "tcgplayer_id": 212031, "cardmarket_id": 451108, "name": "Titanoth Rex", "flavor_name": "Godzilla, Primeval Champion", "lang": "en", "released_at": "2020-04-24", "uri": "https://api.scryfall.com/cards/b4817b86-d55a-4334-82ee-603f8c4b3e93", "scryfall_uri": "https://scryfall.com/card/iko/377/titanoth-rex?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/b/4/b4817b86-d55a-4334-82ee-603f8c4b3e93.jpg?1590879818", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/4/b4817b86-d55a-4334-82ee-603f8c4b3e93.jpg?1590879818", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/b/4/b4817b86-d55a-4334-82ee-603f8c4b3e93.jpg?1590879818", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/b/4/b4817b86-d55a-4334-82ee-603f8c4b3e93.png?1590879818", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/4/b4817b86-d55a-4334-82ee-603f8c4b3e93.jpg?1590879818", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/b/4/b4817b86-d55a-4334-82ee-603f8c4b3e93.jpg?1590879818"}, "mana_cost": "{7}{G}{G}", "cmc": 9.0, "type_line": "Creature \u2014 Dinosaur Beast", "oracle_text": "Trample\nCycling {1}{G} ({1}{G}, Discard this card: Draw a card.)\nWhen you cycle Titanoth Rex, put a trample counter on target creature you control.", "power": "11", "toughness": "11", "colors": ["G"], "color_identity": ["G"], "keywords": ["Trample", "Cycling"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "restricted", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "19feda43-15ab-427e-a0e4-148a4bf2b03a", "set": "iko", "set_name": "Ikoria: Lair of Behemoths", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/19feda43-15ab-427e-a0e4-148a4bf2b03a", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aiko&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/iko?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/b4817b86-d55a-4334-82ee-603f8c4b3e93/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A8656a32b-eb95-402b-9daf-0b6d876b4b13&unique=prints", "collector_number": "377", "digital": false, "rarity": "uncommon", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Lius Lasahido", "artist_ids": ["0a0e9093-ce44-4a69-93a7-09b63e7c330d"], "illustration_id": "cffdb3a7-0383-469c-be38-e50dff67c4b5", "border_color": "borderless", "frame": "2015", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "promo_types": ["boxtopper", "godzillaseries", "boosterfun"], "edhrec_rank": 2214, "penny_rank": 1449, "preview": {"source": "Gizmodo", "source_uri": "https://io9.gizmodo.com/godzilla-is-coming-to-magic-the-gathering-and-hes-bri-1842619728", "previewed_at": "2020-04-02"}, "prices": {"usd": "2.44", "usd_foil": "2.75", "usd_etched": null, "eur": "1.00", "eur_foil": "1.90", "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=482376", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Titanoth+Rex&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Titanoth+Rex&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Titanoth+Rex"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/212031?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Titanoth+Rex&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Titanoth+Rex&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "2a8cc948-28ff-4bbe-b8c9-71de37478023", "oracle_id": "3607d700-5a05-4e68-8863-3514c68566ef", "multiverse_ids": [39741], "mtgo_id": 18147, "mtgo_foil_id": 18148, "tcgplayer_id": 10631, "cardmarket_id": 1923, "name": "Towering Baloth", "lang": "en", "released_at": "2002-10-07", "uri": "https://api.scryfall.com/cards/2a8cc948-28ff-4bbe-b8c9-71de37478023", "scryfall_uri": "https://scryfall.com/card/ons/292/towering-baloth?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/2/a/2a8cc948-28ff-4bbe-b8c9-71de37478023.jpg?1562905065", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/a/2a8cc948-28ff-4bbe-b8c9-71de37478023.jpg?1562905065", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/2/a/2a8cc948-28ff-4bbe-b8c9-71de37478023.jpg?1562905065", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/2/a/2a8cc948-28ff-4bbe-b8c9-71de37478023.png?1562905065", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/a/2a8cc948-28ff-4bbe-b8c9-71de37478023.jpg?1562905065", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/2/a/2a8cc948-28ff-4bbe-b8c9-71de37478023.jpg?1562905065"}, "mana_cost": "{6}{G}{G}", "cmc": 8.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Morph {6}{G} (You may cast this card face down as a 2/2 creature for {3}. Turn it face up any time for its morph cost.)", "power": "7", "toughness": "6", "colors": ["G"], "color_identity": ["G"], "keywords": ["Morph"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "restricted", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "914a6c6d-cb3b-45e8-a2db-9978a2339faf", "set": "ons", "set_name": "Onslaught", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/914a6c6d-cb3b-45e8-a2db-9978a2339faf", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aons&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ons?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/2a8cc948-28ff-4bbe-b8c9-71de37478023/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A3607d700-5a05-4e68-8863-3514c68566ef&unique=prints", "collector_number": "292", "digital": false, "rarity": "uncommon", "flavor_text": "The Mirari twisted all that lived in the Krosan Forest into gross mockeries of their former selves.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Arnie Swekel", "artist_ids": ["af10ecf2-eb82-4100-97b2-6c236b0fa644"], "illustration_id": "534ddcda-caf5-4924-ae3f-ea8d596d2cbb", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 21371, "prices": {"usd": "0.14", "usd_foil": "0.50", "usd_etched": null, "eur": "0.02", "eur_foil": "0.14", "tix": "0.04"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=39741", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Towering+Baloth&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Towering+Baloth&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Towering+Baloth"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/10631?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Towering+Baloth&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/18147?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "c6049e92-6c52-44be-a3c7-aa8e8bf9c10a", "oracle_id": "78bc8b7c-ca94-485c-b7bf-53c3724b7339", "multiverse_ids": [253608], "mtgo_id": 46349, "mtgo_foil_id": 46350, "tcgplayer_id": 66640, "cardmarket_id": 258483, "name": "Towering Indrik", "lang": "en", "released_at": "2012-10-05", "uri": "https://api.scryfall.com/cards/c6049e92-6c52-44be-a3c7-aa8e8bf9c10a", "scryfall_uri": "https://scryfall.com/card/rtr/137/towering-indrik?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/c/6/c6049e92-6c52-44be-a3c7-aa8e8bf9c10a.jpg?1562792972", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/6/c6049e92-6c52-44be-a3c7-aa8e8bf9c10a.jpg?1562792972", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/c/6/c6049e92-6c52-44be-a3c7-aa8e8bf9c10a.jpg?1562792972", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/c/6/c6049e92-6c52-44be-a3c7-aa8e8bf9c10a.png?1562792972", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/6/c6049e92-6c52-44be-a3c7-aa8e8bf9c10a.jpg?1562792972", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/c/6/c6049e92-6c52-44be-a3c7-aa8e8bf9c10a.jpg?1562792972"}, "mana_cost": "{3}{G}", "cmc": 4.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Reach (This creature can block creatures with flying.)", "power": "2", "toughness": "4", "colors": ["G"], "color_identity": ["G"], "keywords": ["Reach"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "80b2374d-c5f1-403e-9772-f6c806fd275e", "set": "rtr", "set_name": "Return to Ravnica", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/80b2374d-c5f1-403e-9772-f6c806fd275e", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Artr&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/rtr?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/c6049e92-6c52-44be-a3c7-aa8e8bf9c10a/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A78bc8b7c-ca94-485c-b7bf-53c3724b7339&unique=prints", "collector_number": "137", "digital": false, "rarity": "common", "flavor_text": "It chases its airborne prey relentlessly, heedless to what it pulverizes beneath its hooves.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Lars Grant-West", "artist_ids": ["21ed6499-c4d3-4965-ab02-6c7228275bec"], "illustration_id": "200c1255-7f4c-4d64-828c-b9cff848f5b5", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 22683, "prices": {"usd": "0.01", "usd_foil": "0.06", "usd_etched": null, "eur": "0.01", "eur_foil": "0.49", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=253608", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Towering+Indrik&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Towering+Indrik&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Towering+Indrik"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/66640?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Towering+Indrik&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/46349?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "62615f86-0431-4709-b41c-af43f7793fdb", "oracle_id": "0d6fccd5-ec14-4da6-972e-b2f5502818a4", "multiverse_ids": [152140], "mtgo_id": 30060, "mtgo_foil_id": 30061, "tcgplayer_id": 27226, "cardmarket_id": 19626, "name": "Trapjaw Kelpie", "lang": "en", "released_at": "2008-07-25", "uri": "https://api.scryfall.com/cards/62615f86-0431-4709-b41c-af43f7793fdb", "scryfall_uri": "https://scryfall.com/card/eve/164/trapjaw-kelpie?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/6/2/62615f86-0431-4709-b41c-af43f7793fdb.jpg?1562915541", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/2/62615f86-0431-4709-b41c-af43f7793fdb.jpg?1562915541", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/6/2/62615f86-0431-4709-b41c-af43f7793fdb.jpg?1562915541", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/6/2/62615f86-0431-4709-b41c-af43f7793fdb.png?1562915541", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/2/62615f86-0431-4709-b41c-af43f7793fdb.jpg?1562915541", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/6/2/62615f86-0431-4709-b41c-af43f7793fdb.jpg?1562915541"}, "mana_cost": "{4}{G/U}{G/U}", "cmc": 6.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Flash\nPersist (When this creature dies, if it had no -1/-1 counters on it, return it to the battlefield under its owner's control with a -1/-1 counter on it.)", "power": "3", "toughness": "3", "colors": ["G", "U"], "color_identity": ["G", "U"], "keywords": ["Persist", "Flash"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "86b4dfef-f2d1-49d6-825d-7df6bda44357", "set": "eve", "set_name": "Eventide", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/86b4dfef-f2d1-49d6-825d-7df6bda44357", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aeve&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/eve?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/62615f86-0431-4709-b41c-af43f7793fdb/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A0d6fccd5-ec14-4da6-972e-b2f5502818a4&unique=prints", "collector_number": "164", "digital": false, "rarity": "common", "flavor_text": "Travelers in these waters leave a bit of themselves behind.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Lars Grant-West", "artist_ids": ["21ed6499-c4d3-4965-ab02-6c7228275bec"], "illustration_id": "d0d5afc6-b93e-4a4a-9e0b-c4b71a6b167c", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 21227, "prices": {"usd": "0.08", "usd_foil": "0.25", "usd_etched": null, "eur": "0.03", "eur_foil": "0.25", "tix": "0.04"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=152140", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Trapjaw+Kelpie&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Trapjaw+Kelpie&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Trapjaw+Kelpie"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/27226?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Trapjaw+Kelpie&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/30060?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "f525d7ce-37d3-4989-beb4-173447cb5294", "oracle_id": "6f3ed8a1-ff5f-411b-9d87-0cce52f42344", "multiverse_ids": [39721], "mtgo_id": 18109, "mtgo_foil_id": 18110, "tcgplayer_id": 10629, "cardmarket_id": 1924, "name": "Treespring Lorian", "lang": "en", "released_at": "2002-10-07", "uri": "https://api.scryfall.com/cards/f525d7ce-37d3-4989-beb4-173447cb5294", "scryfall_uri": "https://scryfall.com/card/ons/293/treespring-lorian?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/f/5/f525d7ce-37d3-4989-beb4-173447cb5294.jpg?1562953129", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/5/f525d7ce-37d3-4989-beb4-173447cb5294.jpg?1562953129", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/f/5/f525d7ce-37d3-4989-beb4-173447cb5294.jpg?1562953129", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/f/5/f525d7ce-37d3-4989-beb4-173447cb5294.png?1562953129", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/5/f525d7ce-37d3-4989-beb4-173447cb5294.jpg?1562953129", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/f/5/f525d7ce-37d3-4989-beb4-173447cb5294.jpg?1562953129"}, "mana_cost": "{5}{G}", "cmc": 6.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Morph {5}{G} (You may cast this card face down as a 2/2 creature for {3}. Turn it face up any time for its morph cost.)", "power": "5", "toughness": "4", "colors": ["G"], "color_identity": ["G"], "keywords": ["Morph"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "914a6c6d-cb3b-45e8-a2db-9978a2339faf", "set": "ons", "set_name": "Onslaught", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/914a6c6d-cb3b-45e8-a2db-9978a2339faf", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aons&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ons?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/f525d7ce-37d3-4989-beb4-173447cb5294/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A6f3ed8a1-ff5f-411b-9d87-0cce52f42344&unique=prints", "collector_number": "293", "digital": false, "rarity": "common", "flavor_text": "No matter your strength, the Krosan Forest is stronger. No matter your speed, the Wirewood Forest is faster.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Heather Hudson", "artist_ids": ["4441fe52-9e41-40c1-9b74-8510426279ab"], "illustration_id": "1aadaa92-b7c5-4194-9c6c-1c2b1a125008", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 23036, "prices": {"usd": "0.03", "usd_foil": "0.26", "usd_etched": null, "eur": "0.04", "eur_foil": "0.14", "tix": "0.05"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=39721", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Treespring+Lorian&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Treespring+Lorian&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Treespring+Lorian"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/10629?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Treespring+Lorian&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/18109?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "3336593c-c83c-48e7-9173-2c2b74b94d3b", "oracle_id": "9056eba4-612b-4e82-8689-fe098241b007", "multiverse_ids": [495895], "mtgo_id": 83633, "tcgplayer_id": 222227, "cardmarket_id": 497495, "name": "Trove Warden", "lang": "en", "released_at": "2020-09-25", "uri": "https://api.scryfall.com/cards/3336593c-c83c-48e7-9173-2c2b74b94d3b", "scryfall_uri": "https://scryfall.com/card/znc/3/trove-warden?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/3/3/3336593c-c83c-48e7-9173-2c2b74b94d3b.jpg?1604195307", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/3/3336593c-c83c-48e7-9173-2c2b74b94d3b.jpg?1604195307", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/3/3/3336593c-c83c-48e7-9173-2c2b74b94d3b.jpg?1604195307", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/3/3/3336593c-c83c-48e7-9173-2c2b74b94d3b.png?1604195307", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/3/3336593c-c83c-48e7-9173-2c2b74b94d3b.jpg?1604195307", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/3/3/3336593c-c83c-48e7-9173-2c2b74b94d3b.jpg?1604195307"}, "mana_cost": "{2}{W}{W}", "cmc": 4.0, "type_line": "Creature \u2014 Cat Beast", "oracle_text": "Vigilance\nLandfall \u2014 Whenever a land enters the battlefield under your control, exile target permanent card with mana value 3 or less from your graveyard.\nWhen Trove Warden dies, put each permanent card exiled with it onto the battlefield under the control of that card's owner.", "power": "3", "toughness": "4", "colors": ["W"], "color_identity": ["W"], "keywords": ["Vigilance", "Landfall"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "25c6bd9b-4e10-40a4-b9b5-0f4d9b5852a1", "set": "znc", "set_name": "Zendikar Rising Commander", "set_type": "commander", "set_uri": "https://api.scryfall.com/sets/25c6bd9b-4e10-40a4-b9b5-0f4d9b5852a1", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aznc&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/znc?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/3336593c-c83c-48e7-9173-2c2b74b94d3b/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A9056eba4-612b-4e82-8689-fe098241b007&unique=prints", "collector_number": "3", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Lars Grant-West", "artist_ids": ["21ed6499-c4d3-4965-ab02-6c7228275bec"], "illustration_id": "19f6b866-f515-40dc-b8a5-e6be9f9cf74e", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "edhrec_rank": 4776, "preview": {"source": "Bleeding Cool", "source_uri": "https://bleedingcool.com/games/magic-the-gatherings-lands-wrath-commander-decklist-revealed/", "previewed_at": "2020-09-09"}, "prices": {"usd": "0.26", "usd_foil": null, "usd_etched": null, "eur": "0.17", "eur_foil": null, "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=495895", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Trove+Warden&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Trove+Warden&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Trove+Warden"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/222227?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Trove+Warden&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/83633?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "063a95ee-3fda-436f-9ff8-de80cc874dde", "oracle_id": "734be5ec-6148-48b9-9021-380e9b62ec23", "multiverse_ids": [479733], "mtgo_id": 80435, "arena_id": 71280, "tcgplayer_id": 212064, "cardmarket_id": 451718, "name": "Trumpeting Gnarr", "lang": "en", "released_at": "2020-04-24", "uri": "https://api.scryfall.com/cards/063a95ee-3fda-436f-9ff8-de80cc874dde", "scryfall_uri": "https://scryfall.com/card/iko/213/trumpeting-gnarr?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/0/6/063a95ee-3fda-436f-9ff8-de80cc874dde.jpg?1591228292", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/6/063a95ee-3fda-436f-9ff8-de80cc874dde.jpg?1591228292", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/0/6/063a95ee-3fda-436f-9ff8-de80cc874dde.jpg?1591228292", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/0/6/063a95ee-3fda-436f-9ff8-de80cc874dde.png?1591228292", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/6/063a95ee-3fda-436f-9ff8-de80cc874dde.jpg?1591228292", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/0/6/063a95ee-3fda-436f-9ff8-de80cc874dde.jpg?1591228292"}, "mana_cost": "{1}{G}{U}", "cmc": 3.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Mutate {3}{G/U}{G/U} (If you cast this spell for its mutate cost, put it over or under target non-Human creature you own. They mutate into the creature on top plus all abilities from under it.)\nWhenever this creature mutates, create a 3/3 green Beast creature token.", "power": "3", "toughness": "3", "colors": ["G", "U"], "color_identity": ["G", "U"], "keywords": ["Mutate"], "all_parts": [{"object": "related_card", "id": "063a95ee-3fda-436f-9ff8-de80cc874dde", "component": "combo_piece", "name": "Trumpeting Gnarr", "type_line": "Creature \u2014 Beast", "uri": "https://api.scryfall.com/cards/063a95ee-3fda-436f-9ff8-de80cc874dde"}, {"object": "related_card", "id": "1f2c9241-9cba-4c99-85cc-7e74286d1dc1", "component": "token", "name": "Beast", "type_line": "Token Creature \u2014 Beast", "uri": "https://api.scryfall.com/cards/1f2c9241-9cba-4c99-85cc-7e74286d1dc1"}], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "restricted", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "19feda43-15ab-427e-a0e4-148a4bf2b03a", "set": "iko", "set_name": "Ikoria: Lair of Behemoths", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/19feda43-15ab-427e-a0e4-148a4bf2b03a", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aiko&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/iko?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/063a95ee-3fda-436f-9ff8-de80cc874dde/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A734be5ec-6148-48b9-9021-380e9b62ec23&unique=prints", "collector_number": "213", "digital": false, "rarity": "uncommon", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Aaron Miller", "artist_ids": ["fc021f3d-773a-4706-bbe7-f602324f511f"], "illustration_id": "437c5318-c3b8-4a21-90d5-00615ad3c591", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 4246, "penny_rank": 8874, "preview": {"source": "AliasV", "source_uri": "https://www.youtube.com/watch?v=ord-WPnCcBM", "previewed_at": "2020-04-03"}, "prices": {"usd": "0.06", "usd_foil": "0.10", "usd_etched": null, "eur": "0.11", "eur_foil": "0.20", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=479733", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Trumpeting+Gnarr&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Trumpeting+Gnarr&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Trumpeting+Gnarr"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/212064?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Trumpeting+Gnarr&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/80435?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "2fe88a45-a420-4998-b242-b475c6b5b0bc", "oracle_id": "734be5ec-6148-48b9-9021-380e9b62ec23", "multiverse_ids": [], "arena_id": 73680, "tcgplayer_id": 212066, "cardmarket_id": 451723, "name": "Trumpeting Gnarr", "lang": "en", "released_at": "2020-04-24", "uri": "https://api.scryfall.com/cards/2fe88a45-a420-4998-b242-b475c6b5b0bc", "scryfall_uri": "https://scryfall.com/card/iko/307/trumpeting-gnarr?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/2/f/2fe88a45-a420-4998-b242-b475c6b5b0bc.jpg?1604781989", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/f/2fe88a45-a420-4998-b242-b475c6b5b0bc.jpg?1604781989", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/2/f/2fe88a45-a420-4998-b242-b475c6b5b0bc.jpg?1604781989", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/2/f/2fe88a45-a420-4998-b242-b475c6b5b0bc.png?1604781989", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/f/2fe88a45-a420-4998-b242-b475c6b5b0bc.jpg?1604781989", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/2/f/2fe88a45-a420-4998-b242-b475c6b5b0bc.jpg?1604781989"}, "mana_cost": "{1}{G}{U}", "cmc": 3.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Mutate {3}{G/U}{G/U} (If you cast this spell for its mutate cost, put it over or under target non-Human creature you own. They mutate into the creature on top plus all abilities from under it.)\nWhenever this creature mutates, create a 3/3 green Beast creature token.", "power": "3", "toughness": "3", "colors": ["G", "U"], "color_identity": ["G", "U"], "keywords": ["Mutate"], "all_parts": [{"object": "related_card", "id": "063a95ee-3fda-436f-9ff8-de80cc874dde", "component": "combo_piece", "name": "Trumpeting Gnarr", "type_line": "Creature \u2014 Beast", "uri": "https://api.scryfall.com/cards/063a95ee-3fda-436f-9ff8-de80cc874dde"}, {"object": "related_card", "id": "1f2c9241-9cba-4c99-85cc-7e74286d1dc1", "component": "token", "name": "Beast", "type_line": "Token Creature \u2014 Beast", "uri": "https://api.scryfall.com/cards/1f2c9241-9cba-4c99-85cc-7e74286d1dc1"}], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "restricted", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "19feda43-15ab-427e-a0e4-148a4bf2b03a", "set": "iko", "set_name": "Ikoria: Lair of Behemoths", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/19feda43-15ab-427e-a0e4-148a4bf2b03a", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aiko&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/iko?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/2fe88a45-a420-4998-b242-b475c6b5b0bc/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A734be5ec-6148-48b9-9021-380e9b62ec23&unique=prints", "collector_number": "307", "digital": false, "rarity": "uncommon", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Justine Mara Andersen", "artist_ids": ["792963b0-5dec-4b79-9035-71ce48bf77e9"], "illustration_id": "c3874090-21bc-493b-8f6f-e81bba498a92", "border_color": "black", "frame": "2015", "frame_effects": ["showcase"], "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "promo_types": ["boosterfun"], "edhrec_rank": 4246, "penny_rank": 8874, "preview": {"source": "AliasV", "source_uri": "https://www.youtube.com/watch?v=ord-WPnCcBM", "previewed_at": "2020-04-03"}, "prices": {"usd": "0.14", "usd_foil": "0.21", "usd_etched": null, "eur": "0.06", "eur_foil": "0.37", "tix": null}, "related_uris": {"tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Trumpeting+Gnarr&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Trumpeting+Gnarr&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Trumpeting+Gnarr"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/212066?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Trumpeting+Gnarr&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Trumpeting+Gnarr&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "8320e35b-15b9-4f98-b9b8-9c951696408b", "oracle_id": "12c7289f-da53-403a-a607-227f43c7e171", "multiverse_ids": [447177], "mtgo_id": 68243, "arena_id": 67762, "tcgplayer_id": 168607, "cardmarket_id": 359698, "name": "Trusty Packbeast", "lang": "en", "released_at": "2018-07-13", "uri": "https://api.scryfall.com/cards/8320e35b-15b9-4f98-b9b8-9c951696408b", "scryfall_uri": "https://scryfall.com/card/m19/41/trusty-packbeast?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/8/3/8320e35b-15b9-4f98-b9b8-9c951696408b.jpg?1562302921", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/3/8320e35b-15b9-4f98-b9b8-9c951696408b.jpg?1562302921", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/8/3/8320e35b-15b9-4f98-b9b8-9c951696408b.jpg?1562302921", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/8/3/8320e35b-15b9-4f98-b9b8-9c951696408b.png?1562302921", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/3/8320e35b-15b9-4f98-b9b8-9c951696408b.jpg?1562302921", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/8/3/8320e35b-15b9-4f98-b9b8-9c951696408b.jpg?1562302921"}, "mana_cost": "{2}{W}", "cmc": 3.0, "type_line": "Creature \u2014 Beast", "oracle_text": "When Trusty Packbeast enters the battlefield, return target artifact card from your graveyard to your hand.", "power": "2", "toughness": "3", "colors": ["W"], "color_identity": ["W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "2f5f2509-56db-414d-9a7e-6e312ec3760c", "set": "m19", "set_name": "Core Set 2019", "set_type": "core", "set_uri": "https://api.scryfall.com/sets/2f5f2509-56db-414d-9a7e-6e312ec3760c", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Am19&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/m19?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/8320e35b-15b9-4f98-b9b8-9c951696408b/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A12c7289f-da53-403a-a607-227f43c7e171&unique=prints", "collector_number": "41", "digital": false, "rarity": "common", "flavor_text": "\"Margaret has traveled with me to the end of the world and back.\"\n\u2014Hewen Frit, merchant", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "John Stanko", "artist_ids": ["b0f038a0-73b5-4806-918e-9cd11b5f92e1"], "illustration_id": "4a6849ec-6324-4b75-8c25-9ee238df9b0e", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 8521, "penny_rank": 12002, "prices": {"usd": "0.01", "usd_foil": "0.10", "usd_etched": null, "eur": "0.02", "eur_foil": "0.14", "tix": "0.05"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=447177", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Trusty+Packbeast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Trusty+Packbeast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Trusty+Packbeast"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/168607?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Trusty+Packbeast&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/68243?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "8b14a8b3-1a85-400b-b17c-a28ed145d720", "oracle_id": "c744b5f4-fbcf-48b8-9d60-5e9c6ac297e0", "multiverse_ids": [370476], "mtgo_id": 48902, "mtgo_foil_id": 48903, "tcgplayer_id": 68432, "cardmarket_id": 262126, "name": "Trygon Predator", "lang": "en", "released_at": "2013-06-07", "uri": "https://api.scryfall.com/cards/8b14a8b3-1a85-400b-b17c-a28ed145d720", "scryfall_uri": "https://scryfall.com/card/mma/185/trygon-predator?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/8/b/8b14a8b3-1a85-400b-b17c-a28ed145d720.jpg?1561967848", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/b/8b14a8b3-1a85-400b-b17c-a28ed145d720.jpg?1561967848", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/8/b/8b14a8b3-1a85-400b-b17c-a28ed145d720.jpg?1561967848", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/8/b/8b14a8b3-1a85-400b-b17c-a28ed145d720.png?1561967848", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/b/8b14a8b3-1a85-400b-b17c-a28ed145d720.jpg?1561967848", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/8/b/8b14a8b3-1a85-400b-b17c-a28ed145d720.jpg?1561967848"}, "mana_cost": "{1}{G}{U}", "cmc": 3.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Flying\nWhenever Trygon Predator deals combat damage to a player, you may destroy target artifact or enchantment that player controls.", "power": "2", "toughness": "3", "colors": ["G", "U"], "color_identity": ["G", "U"], "keywords": ["Flying"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "restricted", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "0b7020f2-336d-4706-9ce6-f6710b9ebd5c", "set": "mma", "set_name": "Modern Masters", "set_type": "masters", "set_uri": "https://api.scryfall.com/sets/0b7020f2-336d-4706-9ce6-f6710b9ebd5c", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Amma&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/mma?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/8b14a8b3-1a85-400b-b17c-a28ed145d720/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ac744b5f4-fbcf-48b8-9d60-5e9c6ac297e0&unique=prints", "collector_number": "185", "digital": false, "rarity": "uncommon", "watermark": "simic", "flavor_text": "Held aloft by metabolized magic, trygons are ravenous for sources of mystic fuel.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Jack Wang", "artist_ids": ["331942ac-401c-4af3-9d70-85f67717496c"], "illustration_id": "a6c3be6a-8137-4a1b-a07f-f80cc8bacbc5", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 2106, "penny_rank": 3320, "prices": {"usd": "0.18", "usd_foil": "0.52", "usd_etched": null, "eur": "0.10", "eur_foil": "0.65", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=370476", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Trygon+Predator&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Trygon+Predator&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Trygon+Predator"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/68432?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Trygon+Predator&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/48902?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "f31f54bf-7bf0-48f0-853d-1468713784eb", "oracle_id": "c744b5f4-fbcf-48b8-9d60-5e9c6ac297e0", "multiverse_ids": [97112], "mtgo_id": 24071, "mtgo_foil_id": 24072, "tcgplayer_id": 13973, "cardmarket_id": 13109, "name": "Trygon Predator", "lang": "en", "released_at": "2006-05-05", "uri": "https://api.scryfall.com/cards/f31f54bf-7bf0-48f0-853d-1468713784eb", "scryfall_uri": "https://scryfall.com/card/dis/133/trygon-predator?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/f/3/f31f54bf-7bf0-48f0-853d-1468713784eb.jpg?1593273791", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/3/f31f54bf-7bf0-48f0-853d-1468713784eb.jpg?1593273791", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/f/3/f31f54bf-7bf0-48f0-853d-1468713784eb.jpg?1593273791", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/f/3/f31f54bf-7bf0-48f0-853d-1468713784eb.png?1593273791", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/3/f31f54bf-7bf0-48f0-853d-1468713784eb.jpg?1593273791", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/f/3/f31f54bf-7bf0-48f0-853d-1468713784eb.jpg?1593273791"}, "mana_cost": "{1}{G}{U}", "cmc": 3.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Flying\nWhenever Trygon Predator deals combat damage to a player, you may destroy target artifact or enchantment that player controls.", "power": "2", "toughness": "3", "colors": ["G", "U"], "color_identity": ["G", "U"], "keywords": ["Flying"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "restricted", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "fdebeda1-b95f-4343-8a94-d125821e6b5c", "set": "dis", "set_name": "Dissension", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/fdebeda1-b95f-4343-8a94-d125821e6b5c", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Adis&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/dis?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/f31f54bf-7bf0-48f0-853d-1468713784eb/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ac744b5f4-fbcf-48b8-9d60-5e9c6ac297e0&unique=prints", "collector_number": "133", "digital": false, "rarity": "uncommon", "watermark": "simic", "flavor_text": "Held aloft by metabolized magic, trygons are ravenous for sources of mystic fuel.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Carl Critchlow", "artist_ids": ["17948f16-611a-44b8-8d10-9895a0bdfff1"], "illustration_id": "26acaf14-3599-4637-9c3e-125d1896873e", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 2106, "penny_rank": 3320, "prices": {"usd": "0.23", "usd_foil": "3.11", "usd_etched": null, "eur": "0.25", "eur_foil": "1.79", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=97112", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Trygon+Predator&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Trygon+Predator&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Trygon+Predator"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/13973?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Trygon+Predator&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/24071?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "2d511407-0c1e-4342-a578-ca557c6886fd", "oracle_id": "bba11c0e-01a3-45ad-8de4-2148cf660ba8", "multiverse_ids": [386707], "mtgo_id": 54042, "mtgo_foil_id": 54043, "tcgplayer_id": 93310, "cardmarket_id": 269524, "name": "Tusked Colossodon", "lang": "en", "released_at": "2014-09-26", "uri": "https://api.scryfall.com/cards/2d511407-0c1e-4342-a578-ca557c6886fd", "scryfall_uri": "https://scryfall.com/card/ktk/155/tusked-colossodon?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/2/d/2d511407-0c1e-4342-a578-ca557c6886fd.jpg?1562784330", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/d/2d511407-0c1e-4342-a578-ca557c6886fd.jpg?1562784330", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/2/d/2d511407-0c1e-4342-a578-ca557c6886fd.jpg?1562784330", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/2/d/2d511407-0c1e-4342-a578-ca557c6886fd.png?1562784330", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/d/2d511407-0c1e-4342-a578-ca557c6886fd.jpg?1562784330", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/2/d/2d511407-0c1e-4342-a578-ca557c6886fd.jpg?1562784330"}, "mana_cost": "{4}{G}{G}", "cmc": 6.0, "type_line": "Creature \u2014 Beast", "oracle_text": "", "power": "6", "toughness": "5", "colors": ["G"], "color_identity": ["G"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "6c7a715c-ded9-449e-89b0-c665773e9c3c", "set": "ktk", "set_name": "Khans of Tarkir", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/6c7a715c-ded9-449e-89b0-c665773e9c3c", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aktk&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ktk?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/2d511407-0c1e-4342-a578-ca557c6886fd/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Abba11c0e-01a3-45ad-8de4-2148cf660ba8&unique=prints", "collector_number": "155", "digital": false, "rarity": "common", "flavor_text": "A band of Temur hunters, fleeing the Mardu, dug a hideout beneath such a creature as it slept. The horde found them and attacked. For three days the Temur held them at bay, and all the while the great beast slumbered.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Yeong-Hao Han", "artist_ids": ["f8e7f8d6-6dde-4059-973c-30f1fd1bbe4e"], "illustration_id": "03773ae1-d5fc-4949-80aa-81ab15efcce0", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 20663, "prices": {"usd": "0.04", "usd_foil": "0.09", "usd_etched": null, "eur": "0.01", "eur_foil": "0.05", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=386707", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Tusked+Colossodon&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Tusked+Colossodon&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Tusked+Colossodon"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/93310?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Tusked+Colossodon&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/54042?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "5cb0cc0e-f71f-456f-a6ec-6a70cf838c35", "oracle_id": "28ecc209-d78b-4b37-8411-fb8079f6e088", "multiverse_ids": [50191], "mtgo_id": 20734, "mtgo_foil_id": 20735, "tcgplayer_id": 11866, "cardmarket_id": 574, "name": "Tyrranax", "lang": "en", "released_at": "2004-06-04", "uri": "https://api.scryfall.com/cards/5cb0cc0e-f71f-456f-a6ec-6a70cf838c35", "scryfall_uri": "https://scryfall.com/card/5dn/98/tyrranax?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/5/c/5cb0cc0e-f71f-456f-a6ec-6a70cf838c35.jpg?1562877248", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/c/5cb0cc0e-f71f-456f-a6ec-6a70cf838c35.jpg?1562877248", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/5/c/5cb0cc0e-f71f-456f-a6ec-6a70cf838c35.jpg?1562877248", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/5/c/5cb0cc0e-f71f-456f-a6ec-6a70cf838c35.png?1562877248", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/c/5cb0cc0e-f71f-456f-a6ec-6a70cf838c35.jpg?1562877248", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/5/c/5cb0cc0e-f71f-456f-a6ec-6a70cf838c35.jpg?1562877248"}, "mana_cost": "{4}{G}{G}", "cmc": 6.0, "type_line": "Creature \u2014 Dinosaur Beast", "oracle_text": "{1}{G}: Tyrranax gets -1/+1 until end of turn.", "power": "5", "toughness": "4", "colors": ["G"], "color_identity": ["G"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "e4bc1b87-5476-463c-8640-4c414ecf1763", "set": "5dn", "set_name": "Fifth Dawn", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/e4bc1b87-5476-463c-8640-4c414ecf1763", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3A5dn&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/5dn?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/5cb0cc0e-f71f-456f-a6ec-6a70cf838c35/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A28ecc209-d78b-4b37-8411-fb8079f6e088&unique=prints", "collector_number": "98", "digital": false, "rarity": "common", "flavor_text": "It outnumbers you one to many.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Carl Critchlow", "artist_ids": ["17948f16-611a-44b8-8d10-9895a0bdfff1"], "illustration_id": "04b8405e-451d-4bb2-b036-2061e51afd93", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 22838, "prices": {"usd": "0.05", "usd_foil": "0.26", "usd_etched": null, "eur": "0.07", "eur_foil": "0.10", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=50191", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Tyrranax&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Tyrranax&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Tyrranax"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/11866?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Tyrranax&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/20734?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "9c95c752-3add-4830-8159-036b8689f40a", "oracle_id": "5ae03181-a436-4bad-be3a-6c9f6c0ed4d6", "multiverse_ids": [4242], "tcgplayer_id": 804, "cardmarket_id": 10021, "name": "Undying Beast", "lang": "en", "released_at": "1997-05-01", "uri": "https://api.scryfall.com/cards/9c95c752-3add-4830-8159-036b8689f40a", "scryfall_uri": "https://scryfall.com/card/por/113/undying-beast?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/9/c/9c95c752-3add-4830-8159-036b8689f40a.jpg?1562447348", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/c/9c95c752-3add-4830-8159-036b8689f40a.jpg?1562447348", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/9/c/9c95c752-3add-4830-8159-036b8689f40a.jpg?1562447348", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/9/c/9c95c752-3add-4830-8159-036b8689f40a.png?1562447348", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/c/9c95c752-3add-4830-8159-036b8689f40a.jpg?1562447348", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/9/c/9c95c752-3add-4830-8159-036b8689f40a.jpg?1562447348"}, "mana_cost": "{3}{B}", "cmc": 4.0, "type_line": "Creature \u2014 Beast", "oracle_text": "When Undying Beast dies, put it on top of its owner's library.", "power": "3", "toughness": "2", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "478c47df-5058-4ce6-830e-7e80732b2ca9", "set": "por", "set_name": "Portal", "set_type": "starter", "set_uri": "https://api.scryfall.com/sets/478c47df-5058-4ce6-830e-7e80732b2ca9", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Apor&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/por?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/9c95c752-3add-4830-8159-036b8689f40a/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A5ae03181-a436-4bad-be3a-6c9f6c0ed4d6&unique=prints", "collector_number": "113", "digital": false, "rarity": "common", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Steve Luke", "artist_ids": ["e2b0133e-a28d-45d1-8843-26285b41d61d"], "illustration_id": "bfb46c5c-0e9d-4ccd-868a-8eb82d163e85", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 22251, "prices": {"usd": "0.20", "usd_foil": null, "usd_etched": null, "eur": "0.03", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=4242", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Undying+Beast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Undying+Beast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Undying+Beast"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/804?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Undying+Beast&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Undying+Beast&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "ba547810-c82a-498b-81eb-e81a8dcbbd42", "oracle_id": "fcf92abb-6c06-42d2-a3d1-f44ec997d56d", "multiverse_ids": [88979], "mtgo_id": 23342, "mtgo_foil_id": 23343, "tcgplayer_id": 13459, "cardmarket_id": 13577, "name": "Ursapine", "lang": "en", "released_at": "2005-10-07", "uri": "https://api.scryfall.com/cards/ba547810-c82a-498b-81eb-e81a8dcbbd42", "scryfall_uri": "https://scryfall.com/card/rav/188/ursapine?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/b/a/ba547810-c82a-498b-81eb-e81a8dcbbd42.jpg?1598916680", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/a/ba547810-c82a-498b-81eb-e81a8dcbbd42.jpg?1598916680", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/b/a/ba547810-c82a-498b-81eb-e81a8dcbbd42.jpg?1598916680", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/b/a/ba547810-c82a-498b-81eb-e81a8dcbbd42.png?1598916680", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/a/ba547810-c82a-498b-81eb-e81a8dcbbd42.jpg?1598916680", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/b/a/ba547810-c82a-498b-81eb-e81a8dcbbd42.jpg?1598916680"}, "mana_cost": "{3}{G}{G}", "cmc": 5.0, "type_line": "Creature \u2014 Beast", "oracle_text": "{G}: Target creature gets +1/+1 until end of turn.", "power": "3", "toughness": "3", "colors": ["G"], "color_identity": ["G"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "15fccbe8-2825-41ca-9d0a-67aebdf91c4a", "set": "rav", "set_name": "Ravnica: City of Guilds", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/15fccbe8-2825-41ca-9d0a-67aebdf91c4a", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Arav&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/rav?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/ba547810-c82a-498b-81eb-e81a8dcbbd42/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Afcf92abb-6c06-42d2-a3d1-f44ec997d56d&unique=prints", "collector_number": "188", "digital": false, "rarity": "rare", "flavor_text": "A friendly ursapine means a constant supply of sharp spears. An unfriendly one means a constant supply of small holes.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Jim Murray", "artist_ids": ["1c906f9b-5bbe-4643-8f5c-90eb1c7f0c43"], "illustration_id": "e1b917aa-517c-4718-9773-4e41c08c5dfd", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 14947, "prices": {"usd": "0.28", "usd_foil": "0.57", "usd_etched": null, "eur": "0.10", "eur_foil": "0.50", "tix": "0.01"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=88979", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Ursapine&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Ursapine&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Ursapine"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/13459?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Ursapine&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/23342?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "546b0a74-ebef-4596-b730-2190e20b2e66", "oracle_id": "e97870a3-855a-4701-8344-91a90095f70a", "multiverse_ids": [180344], "mtgo_id": 31723, "mtgo_foil_id": 31724, "tcgplayer_id": 28621, "cardmarket_id": 20772, "name": "Vagrant Plowbeasts", "lang": "en", "released_at": "2009-02-06", "uri": "https://api.scryfall.com/cards/546b0a74-ebef-4596-b730-2190e20b2e66", "scryfall_uri": "https://scryfall.com/card/con/129/vagrant-plowbeasts?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/5/4/546b0a74-ebef-4596-b730-2190e20b2e66.jpg?1562801037", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/4/546b0a74-ebef-4596-b730-2190e20b2e66.jpg?1562801037", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/5/4/546b0a74-ebef-4596-b730-2190e20b2e66.jpg?1562801037", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/5/4/546b0a74-ebef-4596-b730-2190e20b2e66.png?1562801037", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/4/546b0a74-ebef-4596-b730-2190e20b2e66.jpg?1562801037", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/5/4/546b0a74-ebef-4596-b730-2190e20b2e66.jpg?1562801037"}, "mana_cost": "{5}{G}{W}", "cmc": 7.0, "type_line": "Creature \u2014 Beast", "oracle_text": "{1}: Regenerate target creature with power 5 or greater.", "power": "6", "toughness": "6", "colors": ["G", "W"], "color_identity": ["G", "W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "restricted", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "76b2db58-904c-4e49-8580-9f62f7b3cca4", "set": "con", "set_name": "Conflux", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/76b2db58-904c-4e49-8580-9f62f7b3cca4", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Acon&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/con?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/546b0a74-ebef-4596-b730-2190e20b2e66/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ae97870a3-855a-4701-8344-91a90095f70a&unique=prints", "collector_number": "129", "digital": false, "rarity": "uncommon", "flavor_text": "Plowbeasts of Naya escaped their harnesses in droves, content to snack on the conveniently cultivated fields of Eos and Valeron.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Zoltan Boros & Gabor Szikszai", "artist_ids": ["1885e6cb-c827-4896-994e-3d0a027d602f", "44c3877f-8771-43dc-9e40-f4c765f59d2e"], "illustration_id": "00ec7455-782d-4f93-811d-b29f5b8c782f", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 14029, "prices": {"usd": "0.14", "usd_foil": "0.30", "usd_etched": null, "eur": "0.25", "eur_foil": "0.19", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=180344", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Vagrant+Plowbeasts&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Vagrant+Plowbeasts&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Vagrant+Plowbeasts"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/28621?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Vagrant+Plowbeasts&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/31723?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "2027335a-224b-411d-a59f-f4ad39b38a69", "oracle_id": "d0a3b261-3daf-4082-8bc5-e66326a6c382", "multiverse_ids": [144260], "mtgo_id": 32222, "mtgo_foil_id": 32223, "tcgplayer_id": 31827, "cardmarket_id": 20940, "name": "Valley Rannet", "lang": "en", "released_at": "2009-04-30", "uri": "https://api.scryfall.com/cards/2027335a-224b-411d-a59f-f4ad39b38a69", "scryfall_uri": "https://scryfall.com/card/arb/61/valley-rannet?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/2/0/2027335a-224b-411d-a59f-f4ad39b38a69.jpg?1562640043", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/0/2027335a-224b-411d-a59f-f4ad39b38a69.jpg?1562640043", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/2/0/2027335a-224b-411d-a59f-f4ad39b38a69.jpg?1562640043", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/2/0/2027335a-224b-411d-a59f-f4ad39b38a69.png?1562640043", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/0/2027335a-224b-411d-a59f-f4ad39b38a69.jpg?1562640043", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/2/0/2027335a-224b-411d-a59f-f4ad39b38a69.jpg?1562640043"}, "mana_cost": "{4}{R}{G}", "cmc": 6.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Mountaincycling {2}, forestcycling {2} ({2}, Discard this card: Search your library for a Mountain or Forest card, reveal it, put it into your hand, then shuffle.)", "power": "6", "toughness": "3", "colors": ["G", "R"], "color_identity": ["G", "R"], "keywords": ["Mountaincycling", "Landcycling", "Forestcycling", "Typecycling"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "db486ec5-141d-4781-9ee5-5456926934c1", "set": "arb", "set_name": "Alara Reborn", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/db486ec5-141d-4781-9ee5-5456926934c1", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aarb&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/arb?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/2027335a-224b-411d-a59f-f4ad39b38a69/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ad0a3b261-3daf-4082-8bc5-e66326a6c382&unique=prints", "collector_number": "61", "digital": false, "rarity": "common", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Dave Allsop", "artist_ids": ["99b8310a-4fd6-4ded-8ab7-3b5185821cbe"], "illustration_id": "cdc33ad6-4408-46f5-b477-4ad5dc307f0d", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 13119, "penny_rank": 9192, "prices": {"usd": "0.07", "usd_foil": "0.25", "usd_etched": null, "eur": "0.02", "eur_foil": "0.24", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=144260", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Valley+Rannet&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Valley+Rannet&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Valley+Rannet"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/31827?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Valley+Rannet&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/32222?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "0774771c-5373-4636-9174-d06e7d635183", "oracle_id": "e12f00f4-89f2-4d1d-94cf-460945d80a4e", "multiverse_ids": [39579], "mtgo_id": 18145, "mtgo_foil_id": 18146, "tcgplayer_id": 10623, "cardmarket_id": 1926, "name": "Venomspout Brackus", "lang": "en", "released_at": "2002-10-07", "uri": "https://api.scryfall.com/cards/0774771c-5373-4636-9174-d06e7d635183", "scryfall_uri": "https://scryfall.com/card/ons/295/venomspout-brackus?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/0/7/0774771c-5373-4636-9174-d06e7d635183.jpg?1562896736", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/7/0774771c-5373-4636-9174-d06e7d635183.jpg?1562896736", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/0/7/0774771c-5373-4636-9174-d06e7d635183.jpg?1562896736", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/0/7/0774771c-5373-4636-9174-d06e7d635183.png?1562896736", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/7/0774771c-5373-4636-9174-d06e7d635183.jpg?1562896736", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/0/7/0774771c-5373-4636-9174-d06e7d635183.jpg?1562896736"}, "mana_cost": "{6}{G}", "cmc": 7.0, "type_line": "Creature \u2014 Beast", "oracle_text": "{1}{G}, {T}: Venomspout Brackus deals 5 damage to target attacking or blocking creature with flying.\nMorph {3}{G}{G} (You may cast this card face down as a 2/2 creature for {3}. Turn it face up any time for its morph cost.)", "power": "5", "toughness": "5", "colors": ["G"], "color_identity": ["G"], "keywords": ["Morph"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "restricted", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "914a6c6d-cb3b-45e8-a2db-9978a2339faf", "set": "ons", "set_name": "Onslaught", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/914a6c6d-cb3b-45e8-a2db-9978a2339faf", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aons&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ons?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/0774771c-5373-4636-9174-d06e7d635183/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ae12f00f4-89f2-4d1d-94cf-460945d80a4e&unique=prints", "collector_number": "295", "digital": false, "rarity": "uncommon", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Ron Spencer", "artist_ids": ["dab52c11-0564-4207-a4a1-c1735c946a65"], "illustration_id": "5f59db96-5e1c-4987-8ab8-723f6e9ce372", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 19282, "prices": {"usd": "0.14", "usd_foil": "0.48", "usd_etched": null, "eur": "0.02", "eur_foil": "0.71", "tix": "0.04"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=39579", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Venomspout+Brackus&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Venomspout+Brackus&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Venomspout+Brackus"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/10623?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Venomspout+Brackus&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/18145?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "34ad8e5d-0c26-4588-8161-b22197715d63", "oracle_id": "caf1bc69-a8d7-454b-9cc6-2e4d003776a8", "multiverse_ids": [447342], "mtgo_id": 68573, "arena_id": 68092, "tcgplayer_id": 169278, "cardmarket_id": 360188, "name": "Vigilant Baloth", "lang": "en", "released_at": "2018-07-13", "uri": "https://api.scryfall.com/cards/34ad8e5d-0c26-4588-8161-b22197715d63", "scryfall_uri": "https://scryfall.com/card/m19/206/vigilant-baloth?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/3/4/34ad8e5d-0c26-4588-8161-b22197715d63.jpg?1562301653", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/4/34ad8e5d-0c26-4588-8161-b22197715d63.jpg?1562301653", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/3/4/34ad8e5d-0c26-4588-8161-b22197715d63.jpg?1562301653", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/3/4/34ad8e5d-0c26-4588-8161-b22197715d63.png?1562301653", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/4/34ad8e5d-0c26-4588-8161-b22197715d63.jpg?1562301653", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/3/4/34ad8e5d-0c26-4588-8161-b22197715d63.jpg?1562301653"}, "mana_cost": "{3}{G}{G}", "cmc": 5.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Vigilance (Attacking doesn't cause this creature to tap.)", "power": "5", "toughness": "5", "colors": ["G"], "color_identity": ["G"], "keywords": ["Vigilance"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "restricted", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "2f5f2509-56db-414d-9a7e-6e312ec3760c", "set": "m19", "set_name": "Core Set 2019", "set_type": "core", "set_uri": "https://api.scryfall.com/sets/2f5f2509-56db-414d-9a7e-6e312ec3760c", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Am19&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/m19?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/34ad8e5d-0c26-4588-8161-b22197715d63/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Acaf1bc69-a8d7-454b-9cc6-2e4d003776a8&unique=prints", "collector_number": "206", "digital": false, "rarity": "uncommon", "flavor_text": "Villagers employ watchdogs as guardians and companions. Druids prefer something a little bigger.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Uriah Voth", "artist_ids": ["14cf4c0c-1a83-4366-ba61-6d0a26ee5a69"], "illustration_id": "5592dea0-f618-4d81-80f2-792ad9598c94", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 19485, "penny_rank": 12831, "prices": {"usd": "0.04", "usd_foil": "0.08", "usd_etched": null, "eur": "0.14", "eur_foil": "0.19", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=447342", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Vigilant+Baloth&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Vigilant+Baloth&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Vigilant+Baloth"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/169278?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Vigilant+Baloth&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/68573?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "c2c681e3-fc54-4da1-80ff-13507688dbc3", "oracle_id": "a6649a99-c9cd-474e-91f2-cc8e75496864", "multiverse_ids": [29322], "mtgo_id": 16022, "mtgo_foil_id": 16023, "tcgplayer_id": 3139, "cardmarket_id": 2872, "name": "Vizzerdrix", "lang": "en", "released_at": "2001-04-11", "uri": "https://api.scryfall.com/cards/c2c681e3-fc54-4da1-80ff-13507688dbc3", "scryfall_uri": "https://scryfall.com/card/7ed/110/vizzerdrix?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/c/2/c2c681e3-fc54-4da1-80ff-13507688dbc3.jpg?1562247258", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/2/c2c681e3-fc54-4da1-80ff-13507688dbc3.jpg?1562247258", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/c/2/c2c681e3-fc54-4da1-80ff-13507688dbc3.jpg?1562247258", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/c/2/c2c681e3-fc54-4da1-80ff-13507688dbc3.png?1562247258", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/2/c2c681e3-fc54-4da1-80ff-13507688dbc3.jpg?1562247258", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/c/2/c2c681e3-fc54-4da1-80ff-13507688dbc3.jpg?1562247258"}, "mana_cost": "{6}{U}", "cmc": 7.0, "type_line": "Creature \u2014 Rabbit Beast", "oracle_text": "", "power": "6", "toughness": "6", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "230f38aa-9511-4db8-a3aa-aeddbc3f7bb9", "set": "7ed", "set_name": "Seventh Edition", "set_type": "core", "set_uri": "https://api.scryfall.com/sets/230f38aa-9511-4db8-a3aa-aeddbc3f7bb9", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3A7ed&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/7ed?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/c2c681e3-fc54-4da1-80ff-13507688dbc3/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aa6649a99-c9cd-474e-91f2-cc8e75496864&unique=prints", "collector_number": "110", "digital": false, "rarity": "rare", "flavor_text": "A bored wizard once created a vizzerdrix out of a bunny and a piranha. He never made *that* mistake again.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Dave Dorman", "artist_ids": ["9235458b-ce92-45bd-a430-a72ecd8e6176"], "illustration_id": "29012126-bf29-42b5-ad67-628d4992e4e6", "border_color": "white", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 20141, "prices": {"usd": "0.12", "usd_foil": null, "usd_etched": null, "eur": "0.05", "eur_foil": "125.00", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=29322", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Vizzerdrix&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Vizzerdrix&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Vizzerdrix"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/3139?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Vizzerdrix&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/16022?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "25711022-7270-4335-a48b-9f2b8275ceeb", "oracle_id": "a6649a99-c9cd-474e-91f2-cc8e75496864", "multiverse_ids": [20188], "tcgplayer_id": 411, "cardmarket_id": 14493, "name": "Vizzerdrix", "lang": "en", "released_at": "1999-07-01", "uri": "https://api.scryfall.com/cards/25711022-7270-4335-a48b-9f2b8275ceeb", "scryfall_uri": "https://scryfall.com/card/s99/59/vizzerdrix?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/2/5/25711022-7270-4335-a48b-9f2b8275ceeb.jpg?1562873595", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/5/25711022-7270-4335-a48b-9f2b8275ceeb.jpg?1562873595", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/2/5/25711022-7270-4335-a48b-9f2b8275ceeb.jpg?1562873595", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/2/5/25711022-7270-4335-a48b-9f2b8275ceeb.png?1562873595", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/5/25711022-7270-4335-a48b-9f2b8275ceeb.jpg?1562873595", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/2/5/25711022-7270-4335-a48b-9f2b8275ceeb.jpg?1562873595"}, "mana_cost": "{6}{U}", "cmc": 7.0, "type_line": "Creature \u2014 Rabbit Beast", "oracle_text": "", "power": "6", "toughness": "6", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "7e345c51-7a88-4c7a-8184-4e1ba493b40d", "set": "s99", "set_name": "Starter 1999", "set_type": "starter", "set_uri": "https://api.scryfall.com/sets/7e345c51-7a88-4c7a-8184-4e1ba493b40d", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3As99&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/s99?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/25711022-7270-4335-a48b-9f2b8275ceeb/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aa6649a99-c9cd-474e-91f2-cc8e75496864&unique=prints", "collector_number": "59", "digital": false, "rarity": "rare", "flavor_text": "Its swamp cousin may be meaner, but the vizzerdrix is much bigger.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Eric Peterson", "artist_ids": ["0fc26d3b-4c0e-41d1-8eb3-286ab55a2328"], "illustration_id": "faf78616-db44-4a8d-bf93-e7068bffb5d3", "border_color": "white", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 20141, "prices": {"usd": "0.28", "usd_foil": null, "usd_etched": null, "eur": "0.47", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=20188", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Vizzerdrix&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Vizzerdrix&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Vizzerdrix"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/411?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Vizzerdrix&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Vizzerdrix&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "efa2bccb-0e01-4629-b9a8-5c0ea26239b3", "oracle_id": "f62784c0-9c67-4a05-a09b-aabf03a9390f", "multiverse_ids": [476454], "mtgo_id": 79530, "arena_id": 70714, "tcgplayer_id": 207102, "cardmarket_id": 432424, "name": "Voracious Typhon", "lang": "en", "released_at": "2020-01-24", "uri": "https://api.scryfall.com/cards/efa2bccb-0e01-4629-b9a8-5c0ea26239b3", "scryfall_uri": "https://scryfall.com/card/thb/203/voracious-typhon?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/e/f/efa2bccb-0e01-4629-b9a8-5c0ea26239b3.jpg?1581480923", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/f/efa2bccb-0e01-4629-b9a8-5c0ea26239b3.jpg?1581480923", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/e/f/efa2bccb-0e01-4629-b9a8-5c0ea26239b3.jpg?1581480923", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/e/f/efa2bccb-0e01-4629-b9a8-5c0ea26239b3.png?1581480923", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/f/efa2bccb-0e01-4629-b9a8-5c0ea26239b3.jpg?1581480923", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/e/f/efa2bccb-0e01-4629-b9a8-5c0ea26239b3.jpg?1581480923"}, "mana_cost": "{2}{G}{G}", "cmc": 4.0, "type_line": "Creature \u2014 Snake Beast", "oracle_text": "Escape\u2014{5}{G}{G}, Exile four other cards from your graveyard. (You may cast this card from your graveyard for its escape cost.)\nVoracious Typhon escapes with three +1/+1 counters on it.", "power": "4", "toughness": "4", "colors": ["G"], "color_identity": ["G"], "keywords": ["Escape"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "5f23a78d-cda1-462a-8be3-a62b40c34913", "set": "thb", "set_name": "Theros Beyond Death", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/5f23a78d-cda1-462a-8be3-a62b40c34913", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Athb&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/thb?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/efa2bccb-0e01-4629-b9a8-5c0ea26239b3/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Af62784c0-9c67-4a05-a09b-aabf03a9390f&unique=prints", "collector_number": "203", "digital": false, "rarity": "common", "flavor_text": "A typhon's escape from the Underworld makes armies flee and kingdoms fall.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Yongjae Choi", "artist_ids": ["5ab91c3b-a6da-4751-a56e-81d0f61a67ab"], "illustration_id": "dcfa84d2-27ad-46df-b85d-a857d0a0917d", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 15434, "penny_rank": 13660, "prices": {"usd": "0.02", "usd_foil": "0.07", "usd_etched": null, "eur": "0.02", "eur_foil": "0.05", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=476454", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Voracious+Typhon&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Voracious+Typhon&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Voracious+Typhon"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/207102?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Voracious+Typhon&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/79530?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "bb6b232a-834c-4c9a-bf36-821d125dc318", "oracle_id": "4641e86f-5370-4b25-bd76-07bea856c032", "multiverse_ids": [45455], "mtgo_id": 20313, "mtgo_foil_id": 20314, "tcgplayer_id": 11719, "cardmarket_id": 435, "name": "Vulshok War Boar", "lang": "en", "released_at": "2004-02-06", "uri": "https://api.scryfall.com/cards/bb6b232a-834c-4c9a-bf36-821d125dc318", "scryfall_uri": "https://scryfall.com/card/dst/72/vulshok-war-boar?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/b/b/bb6b232a-834c-4c9a-bf36-821d125dc318.jpg?1562639233", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/b/bb6b232a-834c-4c9a-bf36-821d125dc318.jpg?1562639233", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/b/b/bb6b232a-834c-4c9a-bf36-821d125dc318.jpg?1562639233", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/b/b/bb6b232a-834c-4c9a-bf36-821d125dc318.png?1562639233", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/b/bb6b232a-834c-4c9a-bf36-821d125dc318.jpg?1562639233", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/b/b/bb6b232a-834c-4c9a-bf36-821d125dc318.jpg?1562639233"}, "mana_cost": "{2}{R}{R}", "cmc": 4.0, "type_line": "Creature \u2014 Boar Beast", "oracle_text": "When Vulshok War Boar enters the battlefield, sacrifice it unless you sacrifice an artifact.", "power": "5", "toughness": "5", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "restricted", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "e29cb2dd-1345-4032-abfe-e52e8c8ce074", "set": "dst", "set_name": "Darksteel", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/e29cb2dd-1345-4032-abfe-e52e8c8ce074", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Adst&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/dst?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/bb6b232a-834c-4c9a-bf36-821d125dc318/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A4641e86f-5370-4b25-bd76-07bea856c032&unique=prints", "collector_number": "72", "digital": false, "rarity": "uncommon", "flavor_text": "It must eat its weight in metal daily, or its furnacelike belly will consume itself for lack of fuel.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Pete Venters", "artist_ids": ["d54c4a1a-c0c5-4834-84db-125d341f3ad8"], "illustration_id": "13a1c0bd-cb1c-4a35-8a84-9a7efdc39b26", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 21762, "prices": {"usd": "0.09", "usd_foil": "0.49", "usd_etched": null, "eur": "0.24", "eur_foil": "0.09", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=45455", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Vulshok+War+Boar&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Vulshok+War+Boar&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Vulshok+War+Boar"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/11719?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Vulshok+War+Boar&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/20313?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "652109b9-d607-42b6-945d-0c0dd5bba89c", "oracle_id": "4792a05e-b557-4132-8303-235feefe0d99", "multiverse_ids": [386715], "mtgo_id": 53958, "mtgo_foil_id": 53959, "tcgplayer_id": 93234, "cardmarket_id": 269444, "name": "War Behemoth", "lang": "en", "released_at": "2014-09-26", "uri": "https://api.scryfall.com/cards/652109b9-d607-42b6-945d-0c0dd5bba89c", "scryfall_uri": "https://scryfall.com/card/ktk/29/war-behemoth?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/6/5/652109b9-d607-42b6-945d-0c0dd5bba89c.jpg?1562787724", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/5/652109b9-d607-42b6-945d-0c0dd5bba89c.jpg?1562787724", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/6/5/652109b9-d607-42b6-945d-0c0dd5bba89c.jpg?1562787724", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/6/5/652109b9-d607-42b6-945d-0c0dd5bba89c.png?1562787724", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/5/652109b9-d607-42b6-945d-0c0dd5bba89c.jpg?1562787724", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/6/5/652109b9-d607-42b6-945d-0c0dd5bba89c.jpg?1562787724"}, "mana_cost": "{5}{W}", "cmc": 6.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Morph {4}{W} (You may cast this card face down as a 2/2 creature for {3}. Turn it face up any time for its morph cost.)", "power": "3", "toughness": "6", "colors": ["W"], "color_identity": ["W"], "keywords": ["Morph"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "6c7a715c-ded9-449e-89b0-c665773e9c3c", "set": "ktk", "set_name": "Khans of Tarkir", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/6c7a715c-ded9-449e-89b0-c665773e9c3c", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aktk&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ktk?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/652109b9-d607-42b6-945d-0c0dd5bba89c/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A4792a05e-b557-4132-8303-235feefe0d99&unique=prints", "collector_number": "29", "digital": false, "rarity": "common", "watermark": "abzan", "flavor_text": "\"The Houses always hope for peace, but we always pack for war.\"\n\u2014Gvar Barzeel, krumar commander", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Zoltan Boros", "artist_ids": ["1885e6cb-c827-4896-994e-3d0a027d602f"], "illustration_id": "1eb5f715-9fc9-4c4b-a237-18ae0355e6d2", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 22974, "prices": {"usd": "0.05", "usd_foil": "0.08", "usd_etched": null, "eur": "0.01", "eur_foil": "0.02", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=386715", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=War+Behemoth&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=War+Behemoth&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=War+Behemoth"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/93234?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=War+Behemoth&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/53958?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "d00f8ab0-61cd-4721-b974-a2516da77d39", "oracle_id": "c752e001-56cc-46dc-acb3-3fca6c0bdd2e", "multiverse_ids": [491821], "mtgo_id": 83335, "arena_id": 73382, "tcgplayer_id": 222122, "cardmarket_id": 496235, "name": "Wayward Guide-Beast", "lang": "en", "released_at": "2020-09-25", "uri": "https://api.scryfall.com/cards/d00f8ab0-61cd-4721-b974-a2516da77d39", "scryfall_uri": "https://scryfall.com/card/znr/176/wayward-guide-beast?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/d/0/d00f8ab0-61cd-4721-b974-a2516da77d39.jpg?1604198443", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/0/d00f8ab0-61cd-4721-b974-a2516da77d39.jpg?1604198443", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/d/0/d00f8ab0-61cd-4721-b974-a2516da77d39.jpg?1604198443", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/d/0/d00f8ab0-61cd-4721-b974-a2516da77d39.png?1604198443", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/0/d00f8ab0-61cd-4721-b974-a2516da77d39.jpg?1604198443", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/d/0/d00f8ab0-61cd-4721-b974-a2516da77d39.jpg?1604198443"}, "mana_cost": "{R}", "cmc": 1.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Trample, haste\nWhenever Wayward Guide-Beast deals combat damage to a player, return a land you control to its owner's hand.", "power": "2", "toughness": "2", "colors": ["R"], "color_identity": ["R"], "keywords": ["Haste", "Trample"], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "f4e01fa7-b254-42dd-849f-69b58027a8c4", "set": "znr", "set_name": "Zendikar Rising", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/f4e01fa7-b254-42dd-849f-69b58027a8c4", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aznr&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/znr?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/d00f8ab0-61cd-4721-b974-a2516da77d39/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ac752e001-56cc-46dc-acb3-3fca6c0bdd2e&unique=prints", "collector_number": "176", "digital": false, "rarity": "rare", "flavor_text": "Goblin cavalry tactics consist of pointing a beast in a direction and hanging on for as long as possible.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Filip Burburan", "artist_ids": ["66082c3b-a623-4d34-be51-2475214b85d3"], "illustration_id": "c13d33e7-a43f-451f-b0f7-c49885cd92cb", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 13196, "penny_rank": 872, "preview": {"source": "Wizards of the Coast", "source_uri": "https://m.weibo.cn/status/4546577555524954", "previewed_at": "2020-09-07"}, "prices": {"usd": "0.08", "usd_foil": "0.18", "usd_etched": null, "eur": "0.10", "eur_foil": "0.23", "tix": "0.01"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=491821", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Wayward+Guide-Beast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Wayward+Guide-Beast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Wayward+Guide-Beast"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/222122?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Wayward+Guide-Beast&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/83335?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "12172d0e-0c73-4482-9f83-2c23ace9b7a0", "oracle_id": "bb2fca84-fc19-4c04-b146-1059aa975535", "multiverse_ids": [42156], "mtgo_id": 18425, "mtgo_foil_id": 18426, "tcgplayer_id": 10681, "cardmarket_id": 2038, "name": "Weaver of Lies", "lang": "en", "released_at": "2003-02-03", "uri": "https://api.scryfall.com/cards/12172d0e-0c73-4482-9f83-2c23ace9b7a0", "scryfall_uri": "https://scryfall.com/card/lgn/57/weaver-of-lies?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/1/2/12172d0e-0c73-4482-9f83-2c23ace9b7a0.jpg?1562898647", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/2/12172d0e-0c73-4482-9f83-2c23ace9b7a0.jpg?1562898647", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/1/2/12172d0e-0c73-4482-9f83-2c23ace9b7a0.jpg?1562898647", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/1/2/12172d0e-0c73-4482-9f83-2c23ace9b7a0.png?1562898647", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/2/12172d0e-0c73-4482-9f83-2c23ace9b7a0.jpg?1562898647", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/1/2/12172d0e-0c73-4482-9f83-2c23ace9b7a0.jpg?1562898647"}, "mana_cost": "{5}{U}{U}", "cmc": 7.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Morph {4}{U} (You may cast this card face down as a 2/2 creature for {3}. Turn it face up any time for its morph cost.)\nWhen Weaver of Lies is turned face up, turn any number of target creatures with morph abilities other than Weaver of Lies face down.", "power": "4", "toughness": "4", "colors": ["U"], "color_identity": ["U"], "keywords": ["Morph"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "c2d60a18-1a81-4784-8e0c-e1de2f43c5cf", "set": "lgn", "set_name": "Legions", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/c2d60a18-1a81-4784-8e0c-e1de2f43c5cf", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Algn&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/lgn?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/12172d0e-0c73-4482-9f83-2c23ace9b7a0/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Abb2fca84-fc19-4c04-b146-1059aa975535&unique=prints", "collector_number": "57", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Luca Zontini", "artist_ids": ["aa57d42a-72c1-4d94-a200-3571233c4b20"], "illustration_id": "d6ff8a7b-dab0-46a0-9c80-3e104e3f4e69", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 9089, "penny_rank": 13583, "prices": {"usd": "0.72", "usd_foil": "6.80", "usd_etched": null, "eur": "0.99", "eur_foil": "3.99", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=42156", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Weaver+of+Lies&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Weaver+of+Lies&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Weaver+of+Lies"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/10681?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Weaver+of+Lies&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/18425?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "2d39f746-7b82-476a-9774-3375debb47bd", "oracle_id": "cb6b8ce3-9f9d-418c-94b0-c4469a254938", "multiverse_ids": [15198], "mtgo_id": 12861, "mtgo_foil_id": 12862, "tcgplayer_id": 6272, "cardmarket_id": 10800, "name": "Wild Colos", "lang": "en", "released_at": "1999-06-07", "uri": "https://api.scryfall.com/cards/2d39f746-7b82-476a-9774-3375debb47bd", "scryfall_uri": "https://scryfall.com/card/uds/100/wild-colos?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/2/d/2d39f746-7b82-476a-9774-3375debb47bd.jpg?1562443743", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/d/2d39f746-7b82-476a-9774-3375debb47bd.jpg?1562443743", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/2/d/2d39f746-7b82-476a-9774-3375debb47bd.jpg?1562443743", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/2/d/2d39f746-7b82-476a-9774-3375debb47bd.png?1562443743", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/d/2d39f746-7b82-476a-9774-3375debb47bd.jpg?1562443743", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/2/d/2d39f746-7b82-476a-9774-3375debb47bd.jpg?1562443743"}, "mana_cost": "{2}{R}", "cmc": 3.0, "type_line": "Creature \u2014 Goat Beast", "oracle_text": "Haste", "power": "2", "toughness": "2", "colors": ["R"], "color_identity": ["R"], "keywords": ["Haste"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "44f17b37-dcf8-4239-baab-1efc00cd3480", "set": "uds", "set_name": "Urza's Destiny", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/44f17b37-dcf8-4239-baab-1efc00cd3480", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Auds&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/uds?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/2d39f746-7b82-476a-9774-3375debb47bd/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Acb6b8ce3-9f9d-418c-94b0-c4469a254938&unique=prints", "collector_number": "100", "digital": false, "rarity": "common", "flavor_text": "You'll never get a Keldon's goat.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Marc Fishman", "artist_ids": ["d50dd2c3-34ae-4eb1-8948-cb4b38d7e4b9"], "illustration_id": "984766b6-1d35-4a84-a17c-3c2024ba8f0a", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 20886, "prices": {"usd": "0.09", "usd_foil": "10.88", "usd_etched": null, "eur": "0.10", "eur_foil": "1.13", "tix": "0.11"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=15198", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Wild+Colos&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Wild+Colos&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Wild+Colos"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/6272?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Wild+Colos&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/12861?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "a706d4bb-0b44-4e43-b340-7de799c086b8", "oracle_id": "5859fd59-8732-414a-8932-007980af495d", "multiverse_ids": [398511], "mtgo_id": 58086, "mtgo_foil_id": 58087, "tcgplayer_id": 100216, "cardmarket_id": 283464, "name": "Woodland Bellower", "lang": "en", "released_at": "2015-07-17", "uri": "https://api.scryfall.com/cards/a706d4bb-0b44-4e43-b340-7de799c086b8", "scryfall_uri": "https://scryfall.com/card/ori/207/woodland-bellower?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/a/7/a706d4bb-0b44-4e43-b340-7de799c086b8.jpg?1562034880", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/7/a706d4bb-0b44-4e43-b340-7de799c086b8.jpg?1562034880", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/a/7/a706d4bb-0b44-4e43-b340-7de799c086b8.jpg?1562034880", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/a/7/a706d4bb-0b44-4e43-b340-7de799c086b8.png?1562034880", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/7/a706d4bb-0b44-4e43-b340-7de799c086b8.jpg?1562034880", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/a/7/a706d4bb-0b44-4e43-b340-7de799c086b8.jpg?1562034880"}, "mana_cost": "{4}{G}{G}", "cmc": 6.0, "type_line": "Creature \u2014 Beast", "oracle_text": "When Woodland Bellower enters the battlefield, you may search your library for a nonlegendary green creature card with mana value 3 or less, put it onto the battlefield, then shuffle.", "power": "6", "toughness": "5", "colors": ["G"], "color_identity": ["G"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "0eeb9a9a-20ac-404d-b55f-aeb7a43a7f62", "set": "ori", "set_name": "Magic Origins", "set_type": "core", "set_uri": "https://api.scryfall.com/sets/0eeb9a9a-20ac-404d-b55f-aeb7a43a7f62", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aori&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ori?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/a706d4bb-0b44-4e43-b340-7de799c086b8/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A5859fd59-8732-414a-8932-007980af495d&unique=prints", "collector_number": "207", "digital": false, "rarity": "mythic", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Jasper Sandner", "artist_ids": ["0eb4c7d4-92b9-4d3f-983c-983ef46729e5"], "illustration_id": "725142b6-2750-4ac3-b66f-d1fd2d690f05", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 2637, "prices": {"usd": "3.80", "usd_foil": "18.09", "usd_etched": null, "eur": "4.71", "eur_foil": "12.99", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=398511", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Woodland+Bellower&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Woodland+Bellower&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Woodland+Bellower"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/100216?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Woodland+Bellower&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/58086?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "5126b782-d74c-40ca-a9b2-a6c78f94d138", "oracle_id": "d0653734-9eb7-48c6-9042-65ffdd50fd2a", "multiverse_ids": [21374], "mtgo_id": 13779, "mtgo_foil_id": 13780, "tcgplayer_id": 7262, "cardmarket_id": 11848, "name": "Woodripper", "lang": "en", "released_at": "2000-02-14", "uri": "https://api.scryfall.com/cards/5126b782-d74c-40ca-a9b2-a6c78f94d138", "scryfall_uri": "https://scryfall.com/card/nem/125/woodripper?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/5/1/5126b782-d74c-40ca-a9b2-a6c78f94d138.jpg?1562629900", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/1/5126b782-d74c-40ca-a9b2-a6c78f94d138.jpg?1562629900", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/5/1/5126b782-d74c-40ca-a9b2-a6c78f94d138.jpg?1562629900", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/5/1/5126b782-d74c-40ca-a9b2-a6c78f94d138.png?1562629900", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/1/5126b782-d74c-40ca-a9b2-a6c78f94d138.jpg?1562629900", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/5/1/5126b782-d74c-40ca-a9b2-a6c78f94d138.jpg?1562629900"}, "mana_cost": "{3}{G}{G}", "cmc": 5.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Fading 3 (This creature enters the battlefield with three fade counters on it. At the beginning of your upkeep, remove a fade counter from it. If you can't, sacrifice it.)\n{1}, Remove a fade counter from Woodripper: Destroy target artifact.", "power": "4", "toughness": "6", "colors": ["G"], "color_identity": ["G"], "keywords": ["Fading"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "restricted", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "fa5d1fdb-f781-473d-b14d-50396d40d43f", "set": "nem", "set_name": "Nemesis", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/fa5d1fdb-f781-473d-b14d-50396d40d43f", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Anem&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/nem?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/5126b782-d74c-40ca-a9b2-a6c78f94d138/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ad0653734-9eb7-48c6-9042-65ffdd50fd2a&unique=prints", "collector_number": "125", "digital": false, "rarity": "uncommon", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Alan Pollack", "artist_ids": ["70c20ea3-5ad6-4082-a337-6e994ae5828e"], "illustration_id": "d11e4e33-3303-47df-bfd7-a3de0d6bc07b", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 21443, "prices": {"usd": "0.11", "usd_foil": "1.47", "usd_etched": null, "eur": "0.06", "eur_foil": "0.50", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=21374", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Woodripper&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Woodripper&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Woodripper"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/7262?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Woodripper&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/13779?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "95ed6354-161e-496e-9ac7-74432f9b0818", "oracle_id": "c5d27469-96e1-44ec-a887-2fc26f9e10d3", "multiverse_ids": [121230], "mtgo_id": 24697, "mtgo_foil_id": 24698, "tcgplayer_id": 14147, "cardmarket_id": 13754, "name": "Woolly Razorback", "lang": "en", "released_at": "2006-07-21", "uri": "https://api.scryfall.com/cards/95ed6354-161e-496e-9ac7-74432f9b0818", "scryfall_uri": "https://scryfall.com/card/csp/25/woolly-razorback?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/9/5/95ed6354-161e-496e-9ac7-74432f9b0818.jpg?1593274871", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/5/95ed6354-161e-496e-9ac7-74432f9b0818.jpg?1593274871", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/9/5/95ed6354-161e-496e-9ac7-74432f9b0818.jpg?1593274871", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/9/5/95ed6354-161e-496e-9ac7-74432f9b0818.png?1593274871", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/5/95ed6354-161e-496e-9ac7-74432f9b0818.jpg?1593274871", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/9/5/95ed6354-161e-496e-9ac7-74432f9b0818.jpg?1593274871"}, "mana_cost": "{2}{W}{W}", "cmc": 4.0, "type_line": "Creature \u2014 Boar Beast", "oracle_text": "Woolly Razorback enters the battlefield with three ice counters on it.\nAs long as Woolly Razorback has an ice counter on it, prevent all combat damage it would deal and it has defender.\nWhenever Woolly Razorback blocks, remove an ice counter from it.", "power": "7", "toughness": "7", "colors": ["W"], "color_identity": ["W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "1f4f105f-73e4-4f03-849e-82a204807847", "set": "csp", "set_name": "Coldsnap", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/1f4f105f-73e4-4f03-849e-82a204807847", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Acsp&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/csp?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/95ed6354-161e-496e-9ac7-74432f9b0818/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ac5d27469-96e1-44ec-a887-2fc26f9e10d3&unique=prints", "collector_number": "25", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Richard Sardinha", "artist_ids": ["a3cce4f0-fbf5-4883-aac7-fb28b993b132"], "illustration_id": "6f7b6363-e50e-40c0-a841-b7fcd08846b5", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 17233, "penny_rank": 12038, "prices": {"usd": "0.48", "usd_foil": "1.64", "usd_etched": null, "eur": "0.20", "eur_foil": "1.24", "tix": "0.01"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=121230", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Woolly+Razorback&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Woolly+Razorback&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Woolly+Razorback"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/14147?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Woolly+Razorback&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/24697?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "7d5907d5-ae5c-4c9d-a5df-61f1c94f979d", "oracle_id": "220bfa3b-0e17-4350-a967-cfcf05b754ef", "multiverse_ids": [175062], "mtgo_id": 31329, "mtgo_foil_id": 31330, "tcgplayer_id": 27848, "cardmarket_id": 19735, "name": "Woolly Thoctar", "lang": "en", "released_at": "2008-10-03", "uri": "https://api.scryfall.com/cards/7d5907d5-ae5c-4c9d-a5df-61f1c94f979d", "scryfall_uri": "https://scryfall.com/card/ala/209/woolly-thoctar?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/7/d/7d5907d5-ae5c-4c9d-a5df-61f1c94f979d.jpg?1562705775", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/d/7d5907d5-ae5c-4c9d-a5df-61f1c94f979d.jpg?1562705775", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/7/d/7d5907d5-ae5c-4c9d-a5df-61f1c94f979d.jpg?1562705775", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/7/d/7d5907d5-ae5c-4c9d-a5df-61f1c94f979d.png?1562705775", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/d/7d5907d5-ae5c-4c9d-a5df-61f1c94f979d.jpg?1562705775", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/7/d/7d5907d5-ae5c-4c9d-a5df-61f1c94f979d.jpg?1562705775"}, "mana_cost": "{R}{G}{W}", "cmc": 3.0, "type_line": "Creature \u2014 Beast", "oracle_text": "", "power": "5", "toughness": "4", "colors": ["G", "R", "W"], "color_identity": ["G", "R", "W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "restricted", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "d667aaec-09b7-4406-b6fa-60795132dc11", "set": "ala", "set_name": "Shards of Alara", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/d667aaec-09b7-4406-b6fa-60795132dc11", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aala&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ala?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/7d5907d5-ae5c-4c9d-a5df-61f1c94f979d/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A220bfa3b-0e17-4350-a967-cfcf05b754ef&unique=prints", "collector_number": "209", "digital": false, "rarity": "uncommon", "flavor_text": "One of the most ferocious and deadly gargantuans, the thoctar never sees its worshippers, but it often awakens surrounded by gifts and sacrifices.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Wayne Reynolds", "artist_ids": ["afc47cec-3ccc-404e-a8c6-4d83dd504271"], "illustration_id": "398a8fba-0169-48a9-b58c-8166bb2d530d", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 13917, "penny_rank": 5115, "prices": {"usd": "0.11", "usd_foil": "0.46", "usd_etched": null, "eur": "0.11", "eur_foil": "0.59", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=175062", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Woolly+Thoctar&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Woolly+Thoctar&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Woolly+Thoctar"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/27848?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Woolly+Thoctar&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/31329?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "fb3a2bb2-3ba7-4486-84c9-3aab85c368e1", "oracle_id": "220bfa3b-0e17-4350-a967-cfcf05b754ef", "multiverse_ids": [], "tcgplayer_id": 38441, "cardmarket_id": 19976, "name": "Woolly Thoctar", "lang": "en", "released_at": "2008-10-01", "uri": "https://api.scryfall.com/cards/fb3a2bb2-3ba7-4486-84c9-3aab85c368e1", "scryfall_uri": "https://scryfall.com/card/pwpn/22/woolly-thoctar?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/f/b/fb3a2bb2-3ba7-4486-84c9-3aab85c368e1.jpg?1561758467", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/b/fb3a2bb2-3ba7-4486-84c9-3aab85c368e1.jpg?1561758467", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/f/b/fb3a2bb2-3ba7-4486-84c9-3aab85c368e1.jpg?1561758467", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/f/b/fb3a2bb2-3ba7-4486-84c9-3aab85c368e1.png?1561758467", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/b/fb3a2bb2-3ba7-4486-84c9-3aab85c368e1.jpg?1561758467", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/f/b/fb3a2bb2-3ba7-4486-84c9-3aab85c368e1.jpg?1561758467"}, "mana_cost": "{R}{G}{W}", "cmc": 3.0, "type_line": "Creature \u2014 Beast", "oracle_text": "", "power": "5", "toughness": "4", "colors": ["G", "R", "W"], "color_identity": ["G", "R", "W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "restricted", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": true, "nonfoil": false, "finishes": ["foil"], "oversized": false, "promo": true, "reprint": true, "variation": false, "set_id": "351a824a-fcf0-42a0-8b64-8fac64d8f04d", "set": "pwpn", "set_name": "Wizards Play Network 2008", "set_type": "promo", "set_uri": "https://api.scryfall.com/sets/351a824a-fcf0-42a0-8b64-8fac64d8f04d", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Apwpn&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/pwpn?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/fb3a2bb2-3ba7-4486-84c9-3aab85c368e1/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A220bfa3b-0e17-4350-a967-cfcf05b754ef&unique=prints", "collector_number": "22", "digital": false, "rarity": "rare", "watermark": "dci", "flavor_text": "One of the most ferocious and deadly gargantuans, the thoctar never sees its worshippers, but it often awakens surrounded by gifts and sacrifices.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Steve Argyle", "artist_ids": ["a44ddda4-5331-4f83-aac9-3e00ed36bd7b"], "illustration_id": "0a1e28d3-d667-4650-ac37-551ea47a0a85", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "promo_types": ["wizardsplaynetwork"], "edhrec_rank": 13917, "penny_rank": 5115, "prices": {"usd": null, "usd_foil": "0.35", "usd_etched": null, "eur": null, "eur_foil": "0.25", "tix": null}, "related_uris": {"tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Woolly+Thoctar&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Woolly+Thoctar&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Woolly+Thoctar"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/38441?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Woolly+Thoctar&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Woolly+Thoctar&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "1c7f29aa-c069-4adb-b313-6a56849905d4", "oracle_id": "77a000de-76d9-44f8-9789-875aa9f576e7", "multiverse_ids": [34811], "mtgo_id": 17470, "mtgo_foil_id": 17471, "tcgplayer_id": 10215, "cardmarket_id": 2181, "name": "Wormfang Behemoth", "lang": "en", "released_at": "2002-05-27", "uri": "https://api.scryfall.com/cards/1c7f29aa-c069-4adb-b313-6a56849905d4", "scryfall_uri": "https://scryfall.com/card/jud/55/wormfang-behemoth?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/1/c/1c7f29aa-c069-4adb-b313-6a56849905d4.jpg?1562628869", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/c/1c7f29aa-c069-4adb-b313-6a56849905d4.jpg?1562628869", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/1/c/1c7f29aa-c069-4adb-b313-6a56849905d4.jpg?1562628869", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/1/c/1c7f29aa-c069-4adb-b313-6a56849905d4.png?1562628869", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/c/1c7f29aa-c069-4adb-b313-6a56849905d4.jpg?1562628869", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/1/c/1c7f29aa-c069-4adb-b313-6a56849905d4.jpg?1562628869"}, "mana_cost": "{3}{U}{U}", "cmc": 5.0, "type_line": "Creature \u2014 Nightmare Fish Beast", "oracle_text": "When Wormfang Behemoth enters the battlefield, exile all cards from your hand.\nWhen Wormfang Behemoth leaves the battlefield, return the exiled cards to their owner's hand.", "power": "5", "toughness": "5", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "cd82de1a-36fd-4618-bfe8-b45532a582d9", "set": "jud", "set_name": "Judgment", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/cd82de1a-36fd-4618-bfe8-b45532a582d9", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ajud&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/jud?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/1c7f29aa-c069-4adb-b313-6a56849905d4/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A77a000de-76d9-44f8-9789-875aa9f576e7&unique=prints", "collector_number": "55", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Heather Hudson", "artist_ids": ["4441fe52-9e41-40c1-9b74-8510426279ab"], "illustration_id": "b9849410-76d6-485b-8fe9-661a25a68915", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 22257, "prices": {"usd": "0.23", "usd_foil": "3.44", "usd_etched": null, "eur": "0.05", "eur_foil": "5.00", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=34811", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Wormfang+Behemoth&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Wormfang+Behemoth&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Wormfang+Behemoth"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/10215?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Wormfang+Behemoth&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/17470?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "bc9bf91d-6f7c-4fb5-bbc6-c012212e62e9", "oracle_id": "17abf8c6-70b6-4877-a0f2-a87b22fb2828", "multiverse_ids": [34939], "mtgo_id": 17468, "mtgo_foil_id": 17469, "tcgplayer_id": 10218, "cardmarket_id": 2184, "name": "Wormfang Manta", "lang": "en", "released_at": "2002-05-27", "uri": "https://api.scryfall.com/cards/bc9bf91d-6f7c-4fb5-bbc6-c012212e62e9", "scryfall_uri": "https://scryfall.com/card/jud/58/wormfang-manta?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/b/c/bc9bf91d-6f7c-4fb5-bbc6-c012212e62e9.jpg?1562631728", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/c/bc9bf91d-6f7c-4fb5-bbc6-c012212e62e9.jpg?1562631728", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/b/c/bc9bf91d-6f7c-4fb5-bbc6-c012212e62e9.jpg?1562631728", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/b/c/bc9bf91d-6f7c-4fb5-bbc6-c012212e62e9.png?1562631728", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/c/bc9bf91d-6f7c-4fb5-bbc6-c012212e62e9.jpg?1562631728", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/b/c/bc9bf91d-6f7c-4fb5-bbc6-c012212e62e9.jpg?1562631728"}, "mana_cost": "{5}{U}{U}", "cmc": 7.0, "type_line": "Creature \u2014 Nightmare Fish Beast", "oracle_text": "Flying\nWhen Wormfang Manta enters the battlefield, you skip your next turn.\nWhen Wormfang Manta leaves the battlefield, you take an extra turn after this one.", "power": "6", "toughness": "1", "colors": ["U"], "color_identity": ["U"], "keywords": ["Flying"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "cd82de1a-36fd-4618-bfe8-b45532a582d9", "set": "jud", "set_name": "Judgment", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/cd82de1a-36fd-4618-bfe8-b45532a582d9", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ajud&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/jud?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/bc9bf91d-6f7c-4fb5-bbc6-c012212e62e9/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A17abf8c6-70b6-4877-a0f2-a87b22fb2828&unique=prints", "collector_number": "58", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Heather Hudson", "artist_ids": ["4441fe52-9e41-40c1-9b74-8510426279ab"], "illustration_id": "96a429c7-8e09-4d9f-8452-0cc41a97742e", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 15346, "penny_rank": 12793, "prices": {"usd": "0.35", "usd_foil": "21.48", "usd_etched": null, "eur": "0.20", "eur_foil": "7.49", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=34939", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Wormfang+Manta&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Wormfang+Manta&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Wormfang+Manta"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/10218?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Wormfang+Manta&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/17468?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "df8012c1-76ec-4c36-8b38-5bc41ce5e156", "oracle_id": "be014a79-5550-4f79-8789-b4d6783d7ec8", "multiverse_ids": [34809], "mtgo_id": 17438, "mtgo_foil_id": 17439, "tcgplayer_id": 10219, "cardmarket_id": 2185, "name": "Wormfang Newt", "lang": "en", "released_at": "2002-05-27", "uri": "https://api.scryfall.com/cards/df8012c1-76ec-4c36-8b38-5bc41ce5e156", "scryfall_uri": "https://scryfall.com/card/jud/59/wormfang-newt?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/d/f/df8012c1-76ec-4c36-8b38-5bc41ce5e156.jpg?1562632319", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/f/df8012c1-76ec-4c36-8b38-5bc41ce5e156.jpg?1562632319", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/d/f/df8012c1-76ec-4c36-8b38-5bc41ce5e156.jpg?1562632319", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/d/f/df8012c1-76ec-4c36-8b38-5bc41ce5e156.png?1562632319", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/f/df8012c1-76ec-4c36-8b38-5bc41ce5e156.jpg?1562632319", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/d/f/df8012c1-76ec-4c36-8b38-5bc41ce5e156.jpg?1562632319"}, "mana_cost": "{1}{U}", "cmc": 2.0, "type_line": "Creature \u2014 Nightmare Salamander Beast", "oracle_text": "When Wormfang Newt enters the battlefield, exile a land you control.\nWhen Wormfang Newt leaves the battlefield, return the exiled card to the battlefield under its owner's control.", "power": "2", "toughness": "2", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "cd82de1a-36fd-4618-bfe8-b45532a582d9", "set": "jud", "set_name": "Judgment", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/cd82de1a-36fd-4618-bfe8-b45532a582d9", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ajud&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/jud?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/df8012c1-76ec-4c36-8b38-5bc41ce5e156/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Abe014a79-5550-4f79-8789-b4d6783d7ec8&unique=prints", "collector_number": "59", "digital": false, "rarity": "common", "flavor_text": "Spawned by mages emulating the insane.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Doug Chaffee", "artist_ids": ["dd587b27-dca3-4219-aa55-b285a7a77030"], "illustration_id": "ce59733c-dd57-4e39-a237-26d25b85a8c6", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 21235, "prices": {"usd": "0.09", "usd_foil": "0.53", "usd_etched": null, "eur": "0.01", "eur_foil": "0.24", "tix": "0.06"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=34809", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Wormfang+Newt&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Wormfang+Newt&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Wormfang+Newt"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/10219?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Wormfang+Newt&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/17438?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "48404362-7579-4896-a71a-8eb40e5ac416", "oracle_id": "771f9ba4-6c65-4497-ad48-869994435556", "multiverse_ids": [34954], "mtgo_id": 17462, "mtgo_foil_id": 17463, "tcgplayer_id": 10220, "cardmarket_id": 2186, "name": "Wormfang Turtle", "lang": "en", "released_at": "2002-05-27", "uri": "https://api.scryfall.com/cards/48404362-7579-4896-a71a-8eb40e5ac416", "scryfall_uri": "https://scryfall.com/card/jud/60/wormfang-turtle?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/4/8/48404362-7579-4896-a71a-8eb40e5ac416.jpg?1562629707", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/8/48404362-7579-4896-a71a-8eb40e5ac416.jpg?1562629707", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/4/8/48404362-7579-4896-a71a-8eb40e5ac416.jpg?1562629707", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/4/8/48404362-7579-4896-a71a-8eb40e5ac416.png?1562629707", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/8/48404362-7579-4896-a71a-8eb40e5ac416.jpg?1562629707", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/4/8/48404362-7579-4896-a71a-8eb40e5ac416.jpg?1562629707"}, "mana_cost": "{2}{U}", "cmc": 3.0, "type_line": "Creature \u2014 Nightmare Turtle Beast", "oracle_text": "When Wormfang Turtle enters the battlefield, exile a land you control.\nWhen Wormfang Turtle leaves the battlefield, return the exiled card to the battlefield under its owner's control.", "power": "2", "toughness": "4", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "restricted", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "cd82de1a-36fd-4618-bfe8-b45532a582d9", "set": "jud", "set_name": "Judgment", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/cd82de1a-36fd-4618-bfe8-b45532a582d9", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ajud&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/jud?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/48404362-7579-4896-a71a-8eb40e5ac416/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A771f9ba4-6c65-4497-ad48-869994435556&unique=prints", "collector_number": "60", "digital": false, "rarity": "uncommon", "flavor_text": "Chainer's admirers keep his dreams alive.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "John Avon", "artist_ids": ["798f3932-30e0-4420-aa3f-db4d613f89ca"], "illustration_id": "cb6f52bb-9291-4a82-9b53-537734b4a46b", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 17988, "prices": {"usd": "0.15", "usd_foil": "1.78", "usd_etched": null, "eur": "0.02", "eur_foil": "1.00", "tix": "0.06"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=34954", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Wormfang+Turtle&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Wormfang+Turtle&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Wormfang+Turtle"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/10220?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Wormfang+Turtle&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/17462?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "74e6f7be-4493-4081-ac67-d782ab2b3723", "oracle_id": "181a7b5a-3794-46ae-b6ff-48849ee1470f", "multiverse_ids": [457294], "mtgo_id": 71300, "arena_id": 69278, "tcgplayer_id": 183442, "cardmarket_id": 368614, "name": "Wrecking Beast", "lang": "en", "released_at": "2019-01-25", "uri": "https://api.scryfall.com/cards/74e6f7be-4493-4081-ac67-d782ab2b3723", "scryfall_uri": "https://scryfall.com/card/rna/150/wrecking-beast?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/7/4/74e6f7be-4493-4081-ac67-d782ab2b3723.jpg?1584831344", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/4/74e6f7be-4493-4081-ac67-d782ab2b3723.jpg?1584831344", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/7/4/74e6f7be-4493-4081-ac67-d782ab2b3723.jpg?1584831344", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/7/4/74e6f7be-4493-4081-ac67-d782ab2b3723.png?1584831344", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/4/74e6f7be-4493-4081-ac67-d782ab2b3723.jpg?1584831344", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/7/4/74e6f7be-4493-4081-ac67-d782ab2b3723.jpg?1584831344"}, "mana_cost": "{5}{G}{G}", "cmc": 7.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Riot (This creature enters the battlefield with your choice of a +1/+1 counter or haste.)\nTrample", "power": "6", "toughness": "6", "colors": ["G"], "color_identity": ["G"], "keywords": ["Trample", "Riot"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "97a7fd84-8d89-45a3-b48b-c951f6a3f9f1", "set": "rna", "set_name": "Ravnica Allegiance", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/97a7fd84-8d89-45a3-b48b-c951f6a3f9f1", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Arna&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/rna?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/74e6f7be-4493-4081-ac67-d782ab2b3723/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A181a7b5a-3794-46ae-b6ff-48849ee1470f&unique=prints", "collector_number": "150", "digital": false, "rarity": "common", "watermark": "gruul", "flavor_text": "\"The best construction makes the most satisfying destruction.\"\n\u2014Domri Rade", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Izzy", "artist_ids": ["2c3d2473-ff5d-4309-8194-e0b2def2ab65"], "illustration_id": "32d7a62d-572c-4222-92b2-47a0a19791a8", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 15333, "penny_rank": 10996, "prices": {"usd": "0.02", "usd_foil": "0.18", "usd_etched": null, "eur": "0.01", "eur_foil": "0.13", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=457294", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Wrecking+Beast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Wrecking+Beast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Wrecking+Beast"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/183442?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Wrecking+Beast&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/71300?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "aab525ad-1f62-4d9c-9b74-c7b0048da452", "oracle_id": "f8beeb0a-750f-4afa-a244-10011342bbeb", "multiverse_ids": [26689], "mtgo_id": 17949, "mtgo_foil_id": 17950, "tcgplayer_id": 10578, "cardmarket_id": 1814, "name": "Wretched Anurid", "lang": "en", "released_at": "2002-10-07", "uri": "https://api.scryfall.com/cards/aab525ad-1f62-4d9c-9b74-c7b0048da452", "scryfall_uri": "https://scryfall.com/card/ons/183/wretched-anurid?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/a/a/aab525ad-1f62-4d9c-9b74-c7b0048da452.jpg?1562935315", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/a/aab525ad-1f62-4d9c-9b74-c7b0048da452.jpg?1562935315", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/a/a/aab525ad-1f62-4d9c-9b74-c7b0048da452.jpg?1562935315", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/a/a/aab525ad-1f62-4d9c-9b74-c7b0048da452.png?1562935315", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/a/aab525ad-1f62-4d9c-9b74-c7b0048da452.jpg?1562935315", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/a/a/aab525ad-1f62-4d9c-9b74-c7b0048da452.jpg?1562935315"}, "mana_cost": "{1}{B}", "cmc": 2.0, "type_line": "Creature \u2014 Zombie Frog Beast", "oracle_text": "Whenever another creature enters the battlefield, you lose 1 life.", "power": "3", "toughness": "3", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "914a6c6d-cb3b-45e8-a2db-9978a2339faf", "set": "ons", "set_name": "Onslaught", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/914a6c6d-cb3b-45e8-a2db-9978a2339faf", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aons&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ons?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/aab525ad-1f62-4d9c-9b74-c7b0048da452/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Af8beeb0a-750f-4afa-a244-10011342bbeb&unique=prints", "collector_number": "183", "digital": false, "rarity": "common", "flavor_text": "The only prince inside this frog is the one it ate.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Glen Angus", "artist_ids": ["7be3b9e4-de9b-4a3d-884e-e67b9681d409"], "illustration_id": "d4588782-9ed6-4207-8761-b4b03a39a4f7", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 9991, "penny_rank": 8827, "prices": {"usd": "0.16", "usd_foil": "0.66", "usd_etched": null, "eur": "0.22", "eur_foil": "0.80", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=26689", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Wretched+Anurid&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Wretched+Anurid&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Wretched+Anurid"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/10578?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Wretched+Anurid&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/17949?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "ddbbc7dc-efdf-46e8-bf19-0daa4034f6ec", "oracle_id": "07237694-b5d5-4c92-a429-55e343b8dd1c", "multiverse_ids": [175078], "mtgo_id": 31145, "mtgo_foil_id": 31146, "tcgplayer_id": 27849, "cardmarket_id": 19804, "name": "Yoked Plowbeast", "lang": "en", "released_at": "2008-10-03", "uri": "https://api.scryfall.com/cards/ddbbc7dc-efdf-46e8-bf19-0daa4034f6ec", "scryfall_uri": "https://scryfall.com/card/ala/31/yoked-plowbeast?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/d/d/ddbbc7dc-efdf-46e8-bf19-0daa4034f6ec.jpg?1562709823", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/d/ddbbc7dc-efdf-46e8-bf19-0daa4034f6ec.jpg?1562709823", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/d/d/ddbbc7dc-efdf-46e8-bf19-0daa4034f6ec.jpg?1562709823", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/d/d/ddbbc7dc-efdf-46e8-bf19-0daa4034f6ec.png?1562709823", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/d/ddbbc7dc-efdf-46e8-bf19-0daa4034f6ec.jpg?1562709823", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/d/d/ddbbc7dc-efdf-46e8-bf19-0daa4034f6ec.jpg?1562709823"}, "mana_cost": "{5}{W}{W}", "cmc": 7.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Cycling {2} ({2}, Discard this card: Draw a card.)", "power": "5", "toughness": "5", "colors": ["W"], "color_identity": ["W"], "keywords": ["Cycling"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "d667aaec-09b7-4406-b6fa-60795132dc11", "set": "ala", "set_name": "Shards of Alara", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/d667aaec-09b7-4406-b6fa-60795132dc11", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aala&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ala?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/ddbbc7dc-efdf-46e8-bf19-0daa4034f6ec/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A07237694-b5d5-4c92-a429-55e343b8dd1c&unique=prints", "collector_number": "31", "digital": false, "rarity": "common", "flavor_text": "\"It is sacrilege to confine a gargantuan to the grinding of straight lines. I will pray that it remembers who is the master of this land.\"\n\u2014Syeena, elvish godtoucher", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Steve Argyle", "artist_ids": ["a44ddda4-5331-4f83-aac9-3e00ed36bd7b"], "illustration_id": "6972e16e-d40d-4e96-8f25-62858c3db743", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 14901, "penny_rank": 8387, "prices": {"usd": "0.11", "usd_foil": "0.24", "usd_etched": null, "eur": "0.02", "eur_foil": "0.05", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=175078", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Yoked+Plowbeast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Yoked+Plowbeast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Yoked+Plowbeast"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/27849?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Yoked+Plowbeast&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/31145?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "2076308f-0f4e-4b31-9e75-c2965942e7d1", "oracle_id": "6543b60c-12b0-4e69-9074-6a2b468c5234", "multiverse_ids": [369019], "mtgo_id": 48360, "mtgo_foil_id": 48361, "tcgplayer_id": 67901, "cardmarket_id": 261337, "name": "Zhur-Taa Ancient", "lang": "en", "released_at": "2013-05-03", "uri": "https://api.scryfall.com/cards/2076308f-0f4e-4b31-9e75-c2965942e7d1", "scryfall_uri": "https://scryfall.com/card/dgm/119/zhur-taa-ancient?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/2/0/2076308f-0f4e-4b31-9e75-c2965942e7d1.jpg?1562900996", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/0/2076308f-0f4e-4b31-9e75-c2965942e7d1.jpg?1562900996", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/2/0/2076308f-0f4e-4b31-9e75-c2965942e7d1.jpg?1562900996", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/2/0/2076308f-0f4e-4b31-9e75-c2965942e7d1.png?1562900996", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/0/2076308f-0f4e-4b31-9e75-c2965942e7d1.jpg?1562900996", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/2/0/2076308f-0f4e-4b31-9e75-c2965942e7d1.jpg?1562900996"}, "mana_cost": "{3}{R}{G}", "cmc": 5.0, "type_line": "Creature \u2014 Beast", "oracle_text": "Whenever a player taps a land for mana, that player adds one mana of any type that land produced.", "power": "7", "toughness": "5", "colors": ["G", "R"], "color_identity": ["G", "R"], "keywords": [], "produced_mana": ["B", "G", "R", "U", "W"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "c8bd8520-cd98-45cd-b533-8d40c2087426", "set": "dgm", "set_name": "Dragon's Maze", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/c8bd8520-cd98-45cd-b533-8d40c2087426", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Adgm&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/dgm?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/2076308f-0f4e-4b31-9e75-c2965942e7d1/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A6543b60c-12b0-4e69-9074-6a2b468c5234&unique=prints", "collector_number": "119", "digital": false, "rarity": "rare", "watermark": "gruul", "flavor_text": "Many Ravnicans think of nature as orderly groves and elf-tended rot farms. They haven't seen the Gruul wilds.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Adam Paquette", "artist_ids": ["89023dad-e6c0-41e0-83fb-eb2bfbbdc3f2"], "illustration_id": "2b41e425-37cc-41b2-8e9f-967ccfaeab87", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 5012, "penny_rank": 6503, "prices": {"usd": "0.23", "usd_foil": "0.93", "usd_etched": null, "eur": "0.39", "eur_foil": "0.99", "tix": "0.01"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=369019", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Zhur-Taa+Ancient&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Zhur-Taa+Ancient&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Zhur-Taa+Ancient"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/67901?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Zhur-Taa+Ancient&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/48360?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}]} \ No newline at end of file +{"has_more": false, "data": [{"name": "Ravenous Chupacabra", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/e/9e2af348-e768-44ca-b847-d541a0b0e6e0.jpg?1645141508", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/e/9e2af348-e768-44ca-b847-d541a0b0e6e0.jpg?1645141508"}, "reprint": true, "digital": false, "set_type": "box"}, {"name": "Ravenous Gigantotherium", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/a/ca260253-40b8-4846-9e41-4e9cfc56d691.jpg?1591319695", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/a/ca260253-40b8-4846-9e41-4e9cfc56d691.jpg?1591319695"}, "reprint": false, "digital": false, "set_type": "commander"}, {"name": "Ravenous Leucrocota", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/e/1e91524b-4885-45fc-b22d-f9e5ee55845d.jpg?1593096288", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/e/1e91524b-4885-45fc-b22d-f9e5ee55845d.jpg?1593096288"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Razing Snidd", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/2/d2090b80-2ce2-4c9a-87fe-d221f3c677b4.jpg?1562939456", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/2/d2090b80-2ce2-4c9a-87fe-d221f3c677b4.jpg?1562939456"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Realm Razer", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/a/da3ecfc6-1f9e-443e-a445-51df518025a5.jpg?1562709702", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/a/da3ecfc6-1f9e-443e-a445-51df518025a5.jpg?1562709702"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Relic Sloth", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/1/c1cb483f-c567-4cfd-9fe8-1503e7b40542.jpg?1624739702", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/1/c1cb483f-c567-4cfd-9fe8-1503e7b40542.jpg?1624739702"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Renegade Krasis", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/3/23b68921-0c34-4d92-83c3-21542f62c7f6.jpg?1562901608", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/3/23b68921-0c34-4d92-83c3-21542f62c7f6.jpg?1562901608"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Rhox", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/8/58388a29-b2a6-4d16-b872-f198563721d9.jpg?1562630034", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/8/58388a29-b2a6-4d16-b872-f198563721d9.jpg?1562630034"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Rhox", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/d/5d5f3f57-410f-4ee2-b93c-f5051a068828.jpg?1655270060", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/d/5d5f3f57-410f-4ee2-b93c-f5051a068828.jpg?1655270060"}, "reprint": true, "digital": false, "set_type": "starter"}, {"name": "Ridgeline Rager", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/f/5f663a4a-592a-4a3b-bbaf-e9c5c3049021.jpg?1562912585", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/f/5f663a4a-592a-4a3b-bbaf-e9c5c3049021.jpg?1562912585"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Ridge Rannet", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/2/4275a8dd-f777-4160-b773-9a868e743218.jpg?1562703177", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/2/4275a8dd-f777-4160-b773-9a868e743218.jpg?1562703177"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Ridgescale Tusker", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/4/84b689cc-35ef-4a23-bb1e-4d81b9fb8455.jpg?1579814138", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/4/84b689cc-35ef-4a23-bb1e-4d81b9fb8455.jpg?1579814138"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Ridgetop Raptor", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/0/1013cbc4-09f4-484f-b328-9f7403225149.jpg?1562898258", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/0/1013cbc4-09f4-484f-b328-9f7403225149.jpg?1562898258"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Riptide Mangler", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/3/5314a802-85d6-4d7b-ae9a-ca64eec652cf.jpg?1562911887", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/3/5314a802-85d6-4d7b-ae9a-ca64eec652cf.jpg?1562911887"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "River Kelpie", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/7/970adaaf-1534-4529-8da4-c4dcf7c08b7b.jpg?1562833446", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/7/970adaaf-1534-4529-8da4-c4dcf7c08b7b.jpg?1562833446"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Roaring Primadox", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/9/19529b2f-03f0-469d-92d4-e2a2a933d5dc.jpg?1562550917", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/9/19529b2f-03f0-469d-92d4-e2a2a933d5dc.jpg?1562550917"}, "reprint": false, "digital": false, "set_type": "core"}, {"name": "Rock Badger", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/f/dff05df8-76f5-48c6-ac96-7b4e6a7050f6.jpg?1562383505", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/f/dff05df8-76f5-48c6-ac96-7b4e6a7050f6.jpg?1562383505"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Ronom Hulk", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/5/e5b4b14c-e6fa-4cd2-9be7-fa2a2df05de1.jpg?1593275458", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/5/e5b4b14c-e6fa-4cd2-9be7-fa2a2df05de1.jpg?1593275458"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Root Greevil", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/0/306e3429-b3b4-4186-935b-18cfc308d22c.jpg?1562905210", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/0/306e3429-b3b4-4186-935b-18cfc308d22c.jpg?1562905210"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Rotted Hystrix", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/b/7bcae97d-468a-4e16-bfed-d2946f64784c.jpg?1562879013", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/b/7bcae97d-468a-4e16-bfed-d2946f64784c.jpg?1562879013"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Rumbling Baloth", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/8/d8610ff1-064b-4c75-a8df-d3b076370d1e.jpg?1562835728", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/8/d8610ff1-064b-4c75-a8df-d3b076370d1e.jpg?1562835728"}, "reprint": false, "digital": false, "set_type": "core"}, {"name": "Rust Monster", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/a/6a7c6b2c-9ba0-4fc1-9922-0988acf2dfde.jpg?1627706779", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/a/6a7c6b2c-9ba0-4fc1-9922-0988acf2dfde.jpg?1627706779"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Rust Monster", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/f/bf004dae-c411-4b0e-b695-fd727f475948.jpg?1627711737", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/f/bf004dae-c411-4b0e-b695-fd727f475948.jpg?1627711737"}, "reprint": false, "frame_effects": ["showcase"], "digital": false, "set_type": "expansion"}, {"name": "Sabertooth Nishoba", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/3/8338c296-cf3f-41d7-b380-3fb4237cb41c.jpg?1562921586", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/3/8338c296-cf3f-41d7-b380-3fb4237cb41c.jpg?1562921586"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Sagu Mauler", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/c/4c64af58-963d-497b-ab95-104839d96b94.jpg?1562786271", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/c/4c64af58-963d-497b-ab95-104839d96b94.jpg?1562786271"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Sanctuary Smasher", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/c/cc634c10-42c5-4bdc-bc22-f862ae285492.jpg?1591227414", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/c/cc634c10-42c5-4bdc-bc22-f862ae285492.jpg?1591227414"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Sanctum Plowbeast", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/3/73887514-7644-4b2b-8c67-4b7e64150478.jpg?1562642111", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/3/73887514-7644-4b2b-8c67-4b7e64150478.jpg?1562642111"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Sand Squid", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/e/4efd7ce9-b920-409d-a4d2-a07fff280712.jpg?1562380860", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/e/4efd7ce9-b920-409d-a4d2-a07fff280712.jpg?1562380860"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Sandstorm Charger", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/7/9757be26-4480-43b7-a38a-8e4bde4e2d50.jpg?1562790274", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/7/9757be26-4480-43b7-a38a-8e4bde4e2d50.jpg?1562790274"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Sand Strangler", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/d/dd7153be-ad6c-47ff-8f45-bc8df17973cb.jpg?1562817478", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/d/dd7153be-ad6c-47ff-8f45-bc8df17973cb.jpg?1562817478"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Saprazzan Breaker", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/d/2de7bf0f-5ad5-467b-ad80-28517951bbe1.jpg?1562379910", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/d/2de7bf0f-5ad5-467b-ad80-28517951bbe1.jpg?1562379910"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Sawtusk Demolisher", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/7/574d1a02-a403-4b6e-8ce0-a472325c9c2c.jpg?1591319710", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/7/574d1a02-a403-4b6e-8ce0-a472325c9c2c.jpg?1591319710"}, "reprint": false, "digital": false, "set_type": "commander"}, {"name": "Scalpelexis", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/9/29c3b7fa-78e7-4a0c-bcdc-4b829638e3f6.jpg?1562629108", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/9/29c3b7fa-78e7-4a0c-bcdc-4b829638e3f6.jpg?1562629108"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Scragnoth", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/8/d80f7fa7-e7c4-4fc4-99bf-8a8502965fc8.jpg?1562056876", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/8/d80f7fa7-e7c4-4fc4-99bf-8a8502965fc8.jpg?1562056876"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Screeching Harpy", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/0/10c02902-4e3a-445e-9dd9-116806ddc966.jpg?1562052779", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/0/10c02902-4e3a-445e-9dd9-116806ddc966.jpg?1562052779"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Sea Snidd", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/a/ca11015e-200b-488c-8bf5-662dcc03cd2d.jpg?1562937660", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/a/ca11015e-200b-488c-8bf5-662dcc03cd2d.jpg?1562937660"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Shaleskin Bruiser", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/c/fc2de8a4-0d84-4f7c-bbe4-3a31172186ab.jpg?1562954767", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/c/fc2de8a4-0d84-4f7c-bbe4-3a31172186ab.jpg?1562954767"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Shaleskin Plower", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/2/42658b33-9a12-403b-bc7d-807fbe1f1a36.jpg?1562908348", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/2/42658b33-9a12-403b-bc7d-807fbe1f1a36.jpg?1562908348"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Shivan Wumpus", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/9/7958a1e5-b671-4ecb-95de-240ffaf5021e.jpg?1562574880", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/9/7958a1e5-b671-4ecb-95de-240ffaf5021e.jpg?1562574880"}, "reprint": false, "frame_effects": ["colorshifted"], "digital": false, "set_type": "expansion"}, {"name": "Shore Snapper", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/5/157e5763-4892-47e4-8fd5-f576844c0a0d.jpg?1562701373", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/5/157e5763-4892-47e4-8fd5-f576844c0a0d.jpg?1562701373"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Siege Behemoth", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/1/918fb717-8ad3-4804-a62e-902baea58cfb.jpg?1561950184", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/1/918fb717-8ad3-4804-a62e-902baea58cfb.jpg?1561950184"}, "reprint": false, "digital": false, "set_type": "commander"}, {"name": "Sigiled Behemoth", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/0/e0195ee6-c5d9-402e-8339-2caa50c4e46b.jpg?1562644651", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/0/e0195ee6-c5d9-402e-8339-2caa50c4e46b.jpg?1562644651"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Silt Crawler", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/3/f334e864-4e62-4bc3-9470-661be3d879e2.jpg?1562940692", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/3/f334e864-4e62-4bc3-9470-661be3d879e2.jpg?1562940692"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Six-y Beast", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/3/0379c99c-94b1-4c48-b62d-7accb594ef1a.jpg?1562487439", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/3/0379c99c-94b1-4c48-b62d-7accb594ef1a.jpg?1562487439"}, "reprint": false, "digital": false, "set_type": "funny"}, {"name": "Skarrg Goliath", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/b/2b2dcafd-eb72-4f3a-9c1c-ba17fe30bf0f.jpg?1561820572", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/b/2b2dcafd-eb72-4f3a-9c1c-ba17fe30bf0f.jpg?1561820572"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Skarrg Goliath", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/3/0357e2ce-da68-46ff-a7e6-86df8a8ce91c.jpg?1605371304", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/3/0357e2ce-da68-46ff-a7e6-86df8a8ce91c.jpg?1605371304"}, "reprint": true, "digital": false, "set_type": "promo"}, {"name": "Skittish Valesk", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/c/4cc8a6e6-ed62-4784-ba9a-b1f703fc6119.jpg?1562912967", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/c/4cc8a6e6-ed62-4784-ba9a-b1f703fc6119.jpg?1562912967"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Skyshroud Behemoth", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/c/1c01d17e-45a2-4b6f-aaa5-2af9c8f26181.jpg?1562628866", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/c/1c01d17e-45a2-4b6f-aaa5-2af9c8f26181.jpg?1562628866"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Skyshroud Cutter", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/5/a558c4f5-a716-4e46-9234-5f84f1bd57aa.jpg?1562631366", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/5/a558c4f5-a716-4e46-9234-5f84f1bd57aa.jpg?1562631366"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Skyshroud Ridgeback", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/1/410896ab-d3dc-478c-bfd1-c0cad5b1180a.jpg?1562629551", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/1/410896ab-d3dc-478c-bfd1-c0cad5b1180a.jpg?1562629551"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Skyshroud War Beast", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/9/19d809c1-e674-40b8-816d-c45d77c66722.jpg?1562087347", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/9/19d809c1-e674-40b8-816d-c45d77c66722.jpg?1562087347"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Slaughterhorn", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/b/fb3fcc7a-ff5b-4695-aa86-9166f6cba565.jpg?1561853432", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/b/fb3fcc7a-ff5b-4695-aa86-9166f6cba565.jpg?1561853432"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Slippery Bogle", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/4/c4e4bbea-7e3f-4de0-bb01-dfd67f21c254.jpg?1547518325", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/4/c4e4bbea-7e3f-4de0-bb01-dfd67f21c254.jpg?1547518325"}, "reprint": true, "digital": false, "set_type": "masters"}, {"name": "Slippery Bogle", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/9/19714d6c-2bfa-4ee0-aa2f-5ccc196bc5d8.jpg?1562900327", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/9/19714d6c-2bfa-4ee0-aa2f-5ccc196bc5d8.jpg?1562900327"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Slipstream Eel", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/9/e9d06a1f-00b7-440d-849d-efc466d73f29.jpg?1562950698", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/9/e9d06a1f-00b7-440d-849d-efc466d73f29.jpg?1562950698"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Snapping Gnarlid", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/3/834409e3-134e-4a34-89cb-53e2a039e980.jpg?1562925959", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/3/834409e3-134e-4a34-89cb-53e2a039e980.jpg?1562925959"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Snapping Thragg", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/8/c8a47d41-b893-46b9-90c9-ccd8f9f78855.jpg?1562942401", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/8/c8a47d41-b893-46b9-90c9-ccd8f9f78855.jpg?1562942401"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Snarling Undorak", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/5/05788d63-6210-44f2-9ae4-e55e9507a3a9.jpg?1562896264", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/5/05788d63-6210-44f2-9ae4-e55e9507a3a9.jpg?1562896264"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Snorting Gahr", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/5/e568503e-a886-4c8b-9d46-8520c2cdda48.jpg?1562383519", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/5/e568503e-a886-4c8b-9d46-8520c2cdda48.jpg?1562383519"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Soldevi Steam Beast", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/a/ead79d2c-170e-4106-962d-d69c4b5fead0.jpg?1562770654", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/a/ead79d2c-170e-4106-962d-d69c4b5fead0.jpg?1562770654"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Soldevi Steam Beast", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/d/9de5e730-1d5c-4326-b3fc-2f0f97edc07e.jpg?1575874846", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/d/9de5e730-1d5c-4326-b3fc-2f0f97edc07e.jpg?1575874846"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Spark Fiend", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/a/ea73a7ef-e9da-4d5b-aa4d-a953cbacd6c2.jpg?1562799182", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/a/ea73a7ef-e9da-4d5b-aa4d-a953cbacd6c2.jpg?1562799182"}, "reprint": false, "digital": false, "set_type": "funny"}, {"name": "Spearbreaker Behemoth", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/3/132367ee-22e9-48e2-82e0-62ad9aaa62f3.jpg?1562701266", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/3/132367ee-22e9-48e2-82e0-62ad9aaa62f3.jpg?1562701266"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Species Gorger", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/0/e0087a98-55cf-4c8b-a180-fb0d9c336eb2.jpg?1562936816", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/0/e0087a98-55cf-4c8b-a180-fb0d9c336eb2.jpg?1562936816"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Spellbreaker Behemoth", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/1/a197e3f2-e69f-4716-9979-a304a87506c3.jpg?1562643286", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/1/a197e3f2-e69f-4716-9979-a304a87506c3.jpg?1562643286"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Spiked Baloth", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/2/522777b1-a89f-4969-a962-0137018ec86c.jpg?1562553788", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/2/522777b1-a89f-4969-a962-0137018ec86c.jpg?1562553788"}, "reprint": false, "digital": false, "set_type": "core"}, {"name": "Spinal Villain", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/6/d6d5e36f-0049-4be8-bf85-8dc0186339a4.jpg?1562861348", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/6/d6d5e36f-0049-4be8-bf85-8dc0186339a4.jpg?1562861348"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Spinebiter", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/f/cfc79ac6-ffc6-4506-9dea-e20176f960ea.jpg?1562881679", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/f/cfc79ac6-ffc6-4506-9dea-e20176f960ea.jpg?1562881679"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Spined Basher", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/d/4d0d666a-8e31-466c-937f-54df910f664e.jpg?1562913024", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/d/4d0d666a-8e31-466c-937f-54df910f664e.jpg?1562913024"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Spirespine", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/c/ac71491f-3027-4257-a18f-ba4de6041feb.jpg?1593096345", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/c/ac71491f-3027-4257-a18f-ba4de6041feb.jpg?1593096345"}, "reprint": false, "frame_effects": ["nyxtouched"], "digital": false, "set_type": "expansion"}, {"name": "Spiritmonger", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/9/b96d6e67-f690-4f19-bb25-a7c2d2aaf42f.jpg?1562938690", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/9/b96d6e67-f690-4f19-bb25-a7c2d2aaf42f.jpg?1562938690"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Spiritmonger", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/e/ce20919e-cdc7-465d-8653-4b912ff08997.jpg?1561929929", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/e/ce20919e-cdc7-465d-8653-4b912ff08997.jpg?1561929929"}, "reprint": true, "digital": false, "set_type": "promo"}, {"name": "Spitting Gourna", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/4/746b98bf-5398-4a00-b4fe-a990ea9cfd77.jpg?1562922510", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/4/746b98bf-5398-4a00-b4fe-a990ea9cfd77.jpg?1562922510"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Sproutback Trudge", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/b/dbf26e54-bdfe-4da8-acbb-4f1a98faba49.jpg?1625192442", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/b/dbf26e54-bdfe-4da8-acbb-4f1a98faba49.jpg?1625192442"}, "reprint": false, "digital": false, "set_type": "commander"}, {"name": "Spur Grappler", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/0/50bf91a7-4d04-437c-a290-6adb52f25312.jpg?1562909787", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/0/50bf91a7-4d04-437c-a290-6adb52f25312.jpg?1562909787"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Spurred Wolverine", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/6/46d7aaea-226b-4820-8db2-89dcdcbcc557.jpg?1562911611", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/6/46d7aaea-226b-4820-8db2-89dcdcbcc557.jpg?1562911611"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Stampeding Serow", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/7/47c63065-6051-4193-8457-713a8a800393.jpg?1562493496", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/7/47c63065-6051-4193-8457-713a8a800393.jpg?1562493496"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Stampeding Wildebeests", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/d/ddb5f524-fad6-4a63-b20f-3348a844fefa.jpg?1562278656", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/d/ddb5f524-fad6-4a63-b20f-3348a844fefa.jpg?1562278656"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Stomper Cub", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/9/89be64a8-dd78-48c3-bb47-4f2a5ad9ec10.jpg?1562706034", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/9/89be64a8-dd78-48c3-bb47-4f2a5ad9ec10.jpg?1562706034"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Stonework Packbeast", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/2/a29e17ba-d584-4296-9f43-17467edaa25f.jpg?1604201060", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/2/a29e17ba-d584-4296-9f43-17467edaa25f.jpg?1604201060"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Stratadon", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/2/324bc757-9942-4862-b691-5af42e07f682.jpg?1562905516", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/2/324bc757-9942-4862-b691-5af42e07f682.jpg?1562905516"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Stratozeppelid", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/c/7ccfc49d-2a07-4088-a288-ba7be4da7bc2.jpg?1593272091", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/c/7ccfc49d-2a07-4088-a288-ba7be4da7bc2.jpg?1593272091"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Swarm Shambler", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/a/7a7e4f99-ece4-473e-b712-40e4c53558e8.jpg?1604199508", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/a/7a7e4f99-ece4-473e-b712-40e4c53558e8.jpg?1604199508"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Sylvan Brushstrider", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/b/8bc288a3-ea56-450a-96fd-c2123121f663.jpg?1584831296", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/b/8bc288a3-ea56-450a-96fd-c2123121f663.jpg?1584831296"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Symbiotic Beast", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/b/bb61443d-e47a-4fe1-b777-67a3670a5a56.jpg?1562939214", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/b/bb61443d-e47a-4fe1-b777-67a3670a5a56.jpg?1562939214"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Tangle Hulk", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/e/8ed3c301-8d8e-45fe-902a-af03a79525be.jpg?1562612950", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/e/8ed3c301-8d8e-45fe-902a-af03a79525be.jpg?1562612950"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Tenement Crasher", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/4/44af9170-bd99-4fde-b673-62d988312b2d.jpg?1562785527", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/4/44af9170-bd99-4fde-b673-62d988312b2d.jpg?1562785527"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Tephraderm", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/1/41b65eba-140b-4c1d-b796-8134b7c1ede8.jpg?1562910455", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/1/41b65eba-140b-4c1d-b796-8134b7c1ede8.jpg?1562910455"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Terra Ravager", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/2/124dd668-ad84-45b9-9e04-1ea7cd2d7024.jpg?1562898786", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/2/124dd668-ad84-45b9-9e04-1ea7cd2d7024.jpg?1562898786"}, "reprint": false, "digital": false, "set_type": "commander"}, {"name": "Terra Stomper", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/a/4ab062f4-e4b1-4129-9027-d0ca1a723273.jpg?1562611988", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/a/4ab062f4-e4b1-4129-9027-d0ca1a723273.jpg?1562611988"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Territorial Baloth", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/c/0c3d4afc-5bb7-4159-9a11-f9c989dd9043.jpg?1562897795", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/c/0c3d4afc-5bb7-4159-9a11-f9c989dd9043.jpg?1562897795"}, "reprint": true, "digital": false, "set_type": "expansion"}, {"name": "Territorial Baloth", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/5/45033b8a-f3a8-4a23-b6b0-e011e3e7a4c1.jpg?1562611772", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/5/45033b8a-f3a8-4a23-b6b0-e011e3e7a4c1.jpg?1562611772"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Thoughtbound Primoc", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/8/e89156b5-8bdb-41d1-a7aa-63f770a9b070.jpg?1562950377", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/8/e89156b5-8bdb-41d1-a7aa-63f770a9b070.jpg?1562950377"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Thought Devourer", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/a/ba7a96ee-e2d1-4d76-a09e-d6868ddd9282.jpg?1562929803", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/a/ba7a96ee-e2d1-4d76-a09e-d6868ddd9282.jpg?1562929803"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Thought Eater", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/e/4e05f63c-f93d-44b9-98e9-c5e3e3aad6b9.jpg?1562909299", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/e/4e05f63c-f93d-44b9-98e9-c5e3e3aad6b9.jpg?1562909299"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Thought Nibbler", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/2/7284a7fd-cda8-43ac-b119-ad47b33c2ec4.jpg?1562916262", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/2/7284a7fd-cda8-43ac-b119-ad47b33c2ec4.jpg?1562916262"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Thragtusk", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/8/28667c8b-d02c-4e57-a050-1549207b65d1.jpg?1562551691", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/8/28667c8b-d02c-4e57-a050-1549207b65d1.jpg?1562551691"}, "reprint": false, "digital": false, "set_type": "core"}, {"name": "Thragtusk", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/3/43e1e3f3-a9b8-4185-9be9-798fe3cddd5c.jpg?1640744362", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/3/43e1e3f3-a9b8-4185-9be9-798fe3cddd5c.jpg?1640744362"}, "reprint": true, "digital": false, "set_type": "box"}, {"name": "Thrashing Mudspawn", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/a/da84de0e-a4cd-4dff-8ee3-87c9debf0969.jpg?1562947056", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/a/da84de0e-a4cd-4dff-8ee3-87c9debf0969.jpg?1562947056"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Thrashing Wumpus", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/6/86bc07c6-2ba7-41f8-90ab-f9bbac86dd08.jpg?1562381841", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/6/86bc07c6-2ba7-41f8-90ab-f9bbac86dd08.jpg?1562381841"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Thresher Beast", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/7/57996732-c9e4-4271-9d5f-2a8c77f8d177.jpg?1562911143", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/7/57996732-c9e4-4271-9d5f-2a8c77f8d177.jpg?1562911143"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Thunderfoot Baloth", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/3/e376a953-2075-4595-a3ef-85d0f68aa8b2.jpg?1650426042", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/3/e376a953-2075-4595-a3ef-85d0f68aa8b2.jpg?1650426042"}, "reprint": true, "digital": false, "set_type": "commander"}, {"name": "Thunderfoot Baloth", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/7/9730de49-efa9-42ec-8531-43313fb58a44.jpg?1561951126", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/7/9730de49-efa9-42ec-8531-43313fb58a44.jpg?1561951126"}, "reprint": false, "digital": false, "set_type": "commander"}, {"name": "Thundering Tanadon", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/2/e2fab443-0f4b-45ea-8a6d-435b93803409.jpg?1562882228", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/2/e2fab443-0f4b-45ea-8a6d-435b93803409.jpg?1562882228"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Timbermaw Larva", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/6/d68fc3bc-eb3b-4504-93a3-8943d07b23f8.jpg?1562617126", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/6/d68fc3bc-eb3b-4504-93a3-8943d07b23f8.jpg?1562617126"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Titanic Bulvox", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/f/3f42c4d7-b555-449c-a539-119c1ae62232.jpg?1562528017", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/f/3f42c4d7-b555-449c-a539-119c1ae62232.jpg?1562528017"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Titanoth Rex", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/d/9d02e1e8-b85b-4e26-8ab8-ca2f49d05b88.jpg?1591227898", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/d/9d02e1e8-b85b-4e26-8ab8-ca2f49d05b88.jpg?1591227898"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Titanoth Rex", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/4/b4817b86-d55a-4334-82ee-603f8c4b3e93.jpg?1590879818", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/4/b4817b86-d55a-4334-82ee-603f8c4b3e93.jpg?1590879818"}, "flavor_name": "Godzilla, Primeval Champion", "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Towering Baloth", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/a/2a8cc948-28ff-4bbe-b8c9-71de37478023.jpg?1562905065", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/a/2a8cc948-28ff-4bbe-b8c9-71de37478023.jpg?1562905065"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Towering Indrik", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/6/c6049e92-6c52-44be-a3c7-aa8e8bf9c10a.jpg?1562792972", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/6/c6049e92-6c52-44be-a3c7-aa8e8bf9c10a.jpg?1562792972"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Trapjaw Kelpie", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/2/62615f86-0431-4709-b41c-af43f7793fdb.jpg?1562915541", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/2/62615f86-0431-4709-b41c-af43f7793fdb.jpg?1562915541"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Treespring Lorian", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/5/f525d7ce-37d3-4989-beb4-173447cb5294.jpg?1562953129", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/5/f525d7ce-37d3-4989-beb4-173447cb5294.jpg?1562953129"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Trove Warden", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/3/3336593c-c83c-48e7-9173-2c2b74b94d3b.jpg?1604195307", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/3/3336593c-c83c-48e7-9173-2c2b74b94d3b.jpg?1604195307"}, "reprint": false, "digital": false, "set_type": "commander"}, {"name": "Trumpeting Gnarr", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/6/063a95ee-3fda-436f-9ff8-de80cc874dde.jpg?1591228292", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/6/063a95ee-3fda-436f-9ff8-de80cc874dde.jpg?1591228292"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Trumpeting Gnarr", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/f/2fe88a45-a420-4998-b242-b475c6b5b0bc.jpg?1604781989", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/f/2fe88a45-a420-4998-b242-b475c6b5b0bc.jpg?1604781989"}, "reprint": false, "frame_effects": ["showcase"], "digital": false, "set_type": "expansion"}, {"name": "Trusty Packbeast", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/3/8320e35b-15b9-4f98-b9b8-9c951696408b.jpg?1562302921", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/3/8320e35b-15b9-4f98-b9b8-9c951696408b.jpg?1562302921"}, "reprint": false, "digital": false, "set_type": "core"}, {"name": "Trygon Predator", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/b/8b14a8b3-1a85-400b-b17c-a28ed145d720.jpg?1561967848", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/b/8b14a8b3-1a85-400b-b17c-a28ed145d720.jpg?1561967848"}, "reprint": true, "digital": false, "set_type": "masters"}, {"name": "Trygon Predator", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/3/f31f54bf-7bf0-48f0-853d-1468713784eb.jpg?1593273791", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/3/f31f54bf-7bf0-48f0-853d-1468713784eb.jpg?1593273791"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Tusked Colossodon", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/d/2d511407-0c1e-4342-a578-ca557c6886fd.jpg?1562784330", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/d/2d511407-0c1e-4342-a578-ca557c6886fd.jpg?1562784330"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Tyrranax", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/c/5cb0cc0e-f71f-456f-a6ec-6a70cf838c35.jpg?1562877248", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/c/5cb0cc0e-f71f-456f-a6ec-6a70cf838c35.jpg?1562877248"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Undying Beast", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/c/9c95c752-3add-4830-8159-036b8689f40a.jpg?1562447348", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/c/9c95c752-3add-4830-8159-036b8689f40a.jpg?1562447348"}, "reprint": false, "digital": false, "set_type": "starter"}, {"name": "Ursapine", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/a/ba547810-c82a-498b-81eb-e81a8dcbbd42.jpg?1598916680", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/a/ba547810-c82a-498b-81eb-e81a8dcbbd42.jpg?1598916680"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Vagrant Plowbeasts", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/4/546b0a74-ebef-4596-b730-2190e20b2e66.jpg?1562801037", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/4/546b0a74-ebef-4596-b730-2190e20b2e66.jpg?1562801037"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Valley Rannet", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/0/2027335a-224b-411d-a59f-f4ad39b38a69.jpg?1562640043", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/0/2027335a-224b-411d-a59f-f4ad39b38a69.jpg?1562640043"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Venomspout Brackus", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/7/0774771c-5373-4636-9174-d06e7d635183.jpg?1562896736", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/7/0774771c-5373-4636-9174-d06e7d635183.jpg?1562896736"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Vigilant Baloth", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/4/34ad8e5d-0c26-4588-8161-b22197715d63.jpg?1562301653", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/4/34ad8e5d-0c26-4588-8161-b22197715d63.jpg?1562301653"}, "reprint": false, "digital": false, "set_type": "core"}, {"name": "Vizzerdrix", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/2/c2c681e3-fc54-4da1-80ff-13507688dbc3.jpg?1562247258", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/2/c2c681e3-fc54-4da1-80ff-13507688dbc3.jpg?1562247258"}, "reprint": true, "digital": false, "set_type": "core"}, {"name": "Vizzerdrix", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/5/25711022-7270-4335-a48b-9f2b8275ceeb.jpg?1562873595", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/5/25711022-7270-4335-a48b-9f2b8275ceeb.jpg?1562873595"}, "reprint": false, "digital": false, "set_type": "starter"}, {"name": "Voracious Typhon", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/f/efa2bccb-0e01-4629-b9a8-5c0ea26239b3.jpg?1581480923", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/f/efa2bccb-0e01-4629-b9a8-5c0ea26239b3.jpg?1581480923"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Vulshok War Boar", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/b/bb6b232a-834c-4c9a-bf36-821d125dc318.jpg?1562639233", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/b/bb6b232a-834c-4c9a-bf36-821d125dc318.jpg?1562639233"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "War Behemoth", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/5/652109b9-d607-42b6-945d-0c0dd5bba89c.jpg?1562787724", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/5/652109b9-d607-42b6-945d-0c0dd5bba89c.jpg?1562787724"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Wayward Guide-Beast", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/0/d00f8ab0-61cd-4721-b974-a2516da77d39.jpg?1604198443", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/0/d00f8ab0-61cd-4721-b974-a2516da77d39.jpg?1604198443"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Weaver of Lies", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/2/12172d0e-0c73-4482-9f83-2c23ace9b7a0.jpg?1562898647", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/2/12172d0e-0c73-4482-9f83-2c23ace9b7a0.jpg?1562898647"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Wild Colos", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/d/2d39f746-7b82-476a-9774-3375debb47bd.jpg?1562443743", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/d/2d39f746-7b82-476a-9774-3375debb47bd.jpg?1562443743"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Woodland Bellower", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/7/a706d4bb-0b44-4e43-b340-7de799c086b8.jpg?1562034880", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/7/a706d4bb-0b44-4e43-b340-7de799c086b8.jpg?1562034880"}, "reprint": false, "digital": false, "set_type": "core"}, {"name": "Woodripper", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/1/5126b782-d74c-40ca-a9b2-a6c78f94d138.jpg?1562629900", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/1/5126b782-d74c-40ca-a9b2-a6c78f94d138.jpg?1562629900"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Woolly Razorback", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/5/95ed6354-161e-496e-9ac7-74432f9b0818.jpg?1593274871", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/5/95ed6354-161e-496e-9ac7-74432f9b0818.jpg?1593274871"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Woolly Thoctar", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/d/7d5907d5-ae5c-4c9d-a5df-61f1c94f979d.jpg?1562705775", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/d/7d5907d5-ae5c-4c9d-a5df-61f1c94f979d.jpg?1562705775"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Woolly Thoctar", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/b/fb3a2bb2-3ba7-4486-84c9-3aab85c368e1.jpg?1561758467", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/b/fb3a2bb2-3ba7-4486-84c9-3aab85c368e1.jpg?1561758467"}, "reprint": true, "digital": false, "set_type": "promo"}, {"name": "Wormfang Behemoth", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/c/1c7f29aa-c069-4adb-b313-6a56849905d4.jpg?1562628869", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/c/1c7f29aa-c069-4adb-b313-6a56849905d4.jpg?1562628869"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Wormfang Manta", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/c/bc9bf91d-6f7c-4fb5-bbc6-c012212e62e9.jpg?1562631728", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/c/bc9bf91d-6f7c-4fb5-bbc6-c012212e62e9.jpg?1562631728"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Wormfang Newt", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/f/df8012c1-76ec-4c36-8b38-5bc41ce5e156.jpg?1562632319", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/f/df8012c1-76ec-4c36-8b38-5bc41ce5e156.jpg?1562632319"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Wormfang Turtle", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/8/48404362-7579-4896-a71a-8eb40e5ac416.jpg?1562629707", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/8/48404362-7579-4896-a71a-8eb40e5ac416.jpg?1562629707"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Wrecking Beast", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/4/74e6f7be-4493-4081-ac67-d782ab2b3723.jpg?1584831344", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/4/74e6f7be-4493-4081-ac67-d782ab2b3723.jpg?1584831344"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Wretched Anurid", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/a/aab525ad-1f62-4d9c-9b74-c7b0048da452.jpg?1562935315", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/a/aab525ad-1f62-4d9c-9b74-c7b0048da452.jpg?1562935315"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Yoked Plowbeast", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/d/ddbbc7dc-efdf-46e8-bf19-0daa4034f6ec.jpg?1562709823", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/d/ddbbc7dc-efdf-46e8-bf19-0daa4034f6ec.jpg?1562709823"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Zhur-Taa Ancient", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/0/2076308f-0f4e-4b31-9e75-c2965942e7d1.jpg?1562900996", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/0/2076308f-0f4e-4b31-9e75-c2965942e7d1.jpg?1562900996"}, "reprint": false, "digital": false, "set_type": "expansion"}]} \ No newline at end of file diff --git a/web/public/mtg/jsons/burn1.json b/web/public/mtg/jsons/burn1.json index 7301aead..885fcb4e 100644 --- a/web/public/mtg/jsons/burn1.json +++ b/web/public/mtg/jsons/burn1.json @@ -1 +1 @@ -{"object": "list", "total_cards": 474, "has_more": true, "next_page": "https://api.scryfall.com/cards/search?format=json&include_extras=true&include_multilingual=false&order=name&page=2&q=%28o%3A%2Fdamage+to+them%2F+or+%28o%3Adeals+o%3Adamage+o%3A%2Fcontroller%28%5C.%7C+%29%2F%29+or+o%3A%2F~+deals+%28.%7C..%29+damage+to+%28any+target%7C.%2Aplayer%28%5C.%7C+or+planeswalker%29%7C.%2Aopponent%28%5C.%7C+or+planeswalker%29%29%2F%29+%28type%3Ainstant+or+type%3Asorcery%29+not%3Aadventure+-%28set%3Asld+%28%28cn%3E%3D231+cn%3C%3D233%29+or+%28cn%3E%3D321+cn%3C%3D324%29+or+%28cn%3E%3D185+cn%3C%3D189%29+or+%28cn%3E%3D138+cn%3C%3D142%29+or+%28cn%3E%3D364+cn%3C%3D368%29+or+cn%3A669+or+cn%3A670%29%29+-name%3A%2F%5Ea-%2F+not%3Adfc+not%3Asplit+-set%3Acmb2+-set%3Acmb1+-set%3Aplist+-set%3Adbl+-frame%3Aextendedart+language%3Aenglish&unique=art", "data": [{"object": "card", "id": "539ac5e1-4bad-4f70-abac-e70c406bebec", "oracle_id": "41681a1f-0777-4b96-8c7e-d6a5d1b1c8fc", "multiverse_ids": [23034], "mtgo_id": 14387, "mtgo_foil_id": 14388, "tcgplayer_id": 7410, "cardmarket_id": 3406, "name": "Agonizing Demise", "lang": "en", "released_at": "2000-10-02", "uri": "https://api.scryfall.com/cards/539ac5e1-4bad-4f70-abac-e70c406bebec", "scryfall_uri": "https://scryfall.com/card/inv/92/agonizing-demise?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/5/3/539ac5e1-4bad-4f70-abac-e70c406bebec.jpg?1562912008", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/3/539ac5e1-4bad-4f70-abac-e70c406bebec.jpg?1562912008", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/5/3/539ac5e1-4bad-4f70-abac-e70c406bebec.jpg?1562912008", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/5/3/539ac5e1-4bad-4f70-abac-e70c406bebec.png?1562912008", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/3/539ac5e1-4bad-4f70-abac-e70c406bebec.jpg?1562912008", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/5/3/539ac5e1-4bad-4f70-abac-e70c406bebec.jpg?1562912008"}, "mana_cost": "{3}{B}", "cmc": 4.0, "type_line": "Instant", "oracle_text": "Kicker {1}{R} (You may pay an additional {1}{R} as you cast this spell.)\nDestroy target nonblack creature. It can't be regenerated. If this spell was kicked, Agonizing Demise deals damage equal to that creature's power to the creature's controller.", "colors": ["B"], "color_identity": ["B", "R"], "keywords": ["Kicker"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "b9ae5e02-7726-47ca-b5e4-5ec402b41cd1", "set": "inv", "set_name": "Invasion", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/b9ae5e02-7726-47ca-b5e4-5ec402b41cd1", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ainv&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/inv?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/539ac5e1-4bad-4f70-abac-e70c406bebec/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A41681a1f-0777-4b96-8c7e-d6a5d1b1c8fc&unique=prints", "collector_number": "92", "digital": false, "rarity": "common", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Mark Brill", "artist_ids": ["46dc4b5e-e42c-4d65-a4f3-ad75b0f6f6dd"], "illustration_id": "7cf9049f-c675-4c71-9f01-4c843abbbda2", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 17235, "prices": {"usd": "0.11", "usd_foil": "2.41", "usd_etched": null, "eur": "0.05", "eur_foil": "0.50", "tix": "0.11"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=23034", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Agonizing+Demise&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Agonizing+Demise&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Agonizing+Demise"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/7410?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Agonizing+Demise&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/14387?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "0d8efd95-1c2f-4dd1-b70b-3cfb10ff3a28", "oracle_id": "11669fe5-9298-4e1a-a4f7-6a4598dbc8dd", "multiverse_ids": [466837], "mtgo_id": 73065, "arena_id": 69868, "tcgplayer_id": 192871, "cardmarket_id": 379452, "name": "Agonizing Syphon", "lang": "en", "released_at": "2019-07-12", "uri": "https://api.scryfall.com/cards/0d8efd95-1c2f-4dd1-b70b-3cfb10ff3a28", "scryfall_uri": "https://scryfall.com/card/m20/83/agonizing-syphon?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/0/d/0d8efd95-1c2f-4dd1-b70b-3cfb10ff3a28.jpg?1592516558", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/d/0d8efd95-1c2f-4dd1-b70b-3cfb10ff3a28.jpg?1592516558", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/0/d/0d8efd95-1c2f-4dd1-b70b-3cfb10ff3a28.jpg?1592516558", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/0/d/0d8efd95-1c2f-4dd1-b70b-3cfb10ff3a28.png?1592516558", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/d/0d8efd95-1c2f-4dd1-b70b-3cfb10ff3a28.jpg?1592516558", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/0/d/0d8efd95-1c2f-4dd1-b70b-3cfb10ff3a28.jpg?1592516558"}, "mana_cost": "{3}{B}", "cmc": 4.0, "type_line": "Sorcery", "oracle_text": "Agonizing Syphon deals 3 damage to any target and you gain 3 life.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "4a787360-9767-4f44-80b1-2405dc5e39c7", "set": "m20", "set_name": "Core Set 2020", "set_type": "core", "set_uri": "https://api.scryfall.com/sets/4a787360-9767-4f44-80b1-2405dc5e39c7", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Am20&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/m20?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/0d8efd95-1c2f-4dd1-b70b-3cfb10ff3a28/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A11669fe5-9298-4e1a-a4f7-6a4598dbc8dd&unique=prints", "collector_number": "83", "digital": false, "rarity": "common", "flavor_text": "\"Your death will take a mere moment, but it will feel like an eternity.\"\n\u2014Vilis, Broker of Blood", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Seb McKinnon", "artist_ids": ["ad4caca0-8d89-44ce-a1a6-d5ca905bd6fb"], "illustration_id": "4130013d-5603-4ede-8050-078ce1eb0792", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 13650, "prices": {"usd": "0.01", "usd_foil": null, "usd_etched": null, "eur": "0.05", "eur_foil": "0.15", "tix": "0.05"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=466837", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Agonizing+Syphon&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Agonizing+Syphon&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Agonizing+Syphon"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/192871?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Agonizing+Syphon&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/73065?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "708006ba-d494-4093-b108-8249b110831e", "oracle_id": "61f3a549-77b4-4403-afa2-a0f02603f2e6", "multiverse_ids": [441898], "mtgo_id": 66875, "arena_id": 67039, "tcgplayer_id": 154407, "cardmarket_id": 314466, "name": "Angrath's Fury", "lang": "en", "released_at": "2018-01-19", "uri": "https://api.scryfall.com/cards/708006ba-d494-4093-b108-8249b110831e", "scryfall_uri": "https://scryfall.com/card/rix/204/angraths-fury?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/7/0/708006ba-d494-4093-b108-8249b110831e.jpg?1555041214", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/0/708006ba-d494-4093-b108-8249b110831e.jpg?1555041214", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/7/0/708006ba-d494-4093-b108-8249b110831e.jpg?1555041214", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/7/0/708006ba-d494-4093-b108-8249b110831e.png?1555041214", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/0/708006ba-d494-4093-b108-8249b110831e.jpg?1555041214", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/7/0/708006ba-d494-4093-b108-8249b110831e.jpg?1555041214"}, "mana_cost": "{3}{B}{R}", "cmc": 5.0, "type_line": "Sorcery", "oracle_text": "Destroy target creature. Angrath's Fury deals 3 damage to target player or planeswalker. You may search your library and/or graveyard for a card named Angrath, Minotaur Pirate, reveal it, and put it into your hand. If you search your library this way, shuffle.", "colors": ["B", "R"], "color_identity": ["B", "R"], "keywords": [], "all_parts": [{"object": "related_card", "id": "f17103dd-f31b-4f6e-b2ea-4ea91815bdd6", "component": "combo_piece", "name": "Angrath, Minotaur Pirate", "type_line": "Legendary Planeswalker \u2014 Angrath", "uri": "https://api.scryfall.com/cards/f17103dd-f31b-4f6e-b2ea-4ea91815bdd6"}, {"object": "related_card", "id": "708006ba-d494-4093-b108-8249b110831e", "component": "combo_piece", "name": "Angrath's Fury", "type_line": "Sorcery", "uri": "https://api.scryfall.com/cards/708006ba-d494-4093-b108-8249b110831e"}], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "2f7e40fc-772d-4a85-bfdd-01653c41d0fa", "set": "rix", "set_name": "Rivals of Ixalan", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/2f7e40fc-772d-4a85-bfdd-01653c41d0fa", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Arix&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/rix?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/708006ba-d494-4093-b108-8249b110831e/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A61f3a549-77b4-4403-afa2-a0f02603f2e6&unique=prints", "collector_number": "204", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Lake Hurwitz", "artist_ids": ["3677c64b-55e6-4a0d-a952-bdbb05531220"], "illustration_id": "f568e396-1fdb-4f95-b738-2f0dd6d8b49e", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "promo_types": ["planeswalkerdeck"], "edhrec_rank": 14094, "prices": {"usd": "0.22", "usd_foil": null, "usd_etched": null, "eur": "0.22", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=441898", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Angrath%27s+Fury&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Angrath%27s+Fury&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Angrath%27s+Fury"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/154407?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Angrath%27s+Fury&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/66875?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "ae12fd10-c13e-4777-a233-96204ec75ac1", "oracle_id": "762f891e-5d88-42b0-8abf-c69f3421011b", "multiverse_ids": [270801], "mtgo_id": 46341, "mtgo_foil_id": 46342, "tcgplayer_id": 66518, "cardmarket_id": 258445, "name": "Annihilating Fire", "lang": "en", "released_at": "2012-10-05", "uri": "https://api.scryfall.com/cards/ae12fd10-c13e-4777-a233-96204ec75ac1", "scryfall_uri": "https://scryfall.com/card/rtr/85/annihilating-fire?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/a/e/ae12fd10-c13e-4777-a233-96204ec75ac1.jpg?1562791532", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/e/ae12fd10-c13e-4777-a233-96204ec75ac1.jpg?1562791532", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/a/e/ae12fd10-c13e-4777-a233-96204ec75ac1.jpg?1562791532", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/a/e/ae12fd10-c13e-4777-a233-96204ec75ac1.png?1562791532", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/e/ae12fd10-c13e-4777-a233-96204ec75ac1.jpg?1562791532", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/a/e/ae12fd10-c13e-4777-a233-96204ec75ac1.jpg?1562791532"}, "mana_cost": "{1}{R}{R}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Annihilating Fire deals 3 damage to any target. If a creature dealt damage this way would die this turn, exile it instead.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "80b2374d-c5f1-403e-9772-f6c806fd275e", "set": "rtr", "set_name": "Return to Ravnica", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/80b2374d-c5f1-403e-9772-f6c806fd275e", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Artr&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/rtr?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/ae12fd10-c13e-4777-a233-96204ec75ac1/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A762f891e-5d88-42b0-8abf-c69f3421011b&unique=prints", "collector_number": "85", "digital": false, "rarity": "common", "flavor_text": "\"The most impressive performances can be done only once.\"\n\u2014Mote, Rakdos madcap", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Clint Cearley", "artist_ids": ["03b75350-d5a0-4e3a-b3b4-8d4a5554385b"], "illustration_id": "1e1693c0-c556-4455-8bcc-cf32587e8d5f", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 14886, "penny_rank": 10726, "prices": {"usd": "0.03", "usd_foil": "0.09", "usd_etched": null, "eur": "0.18", "eur_foil": "0.15", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=270801", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Annihilating+Fire&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Annihilating+Fire&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Annihilating+Fire"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/66518?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Annihilating+Fire&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/46341?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "4d1c04fb-213f-4be1-9bba-94c737826bf8", "oracle_id": "2c7c42e1-b097-4443-aa02-1f1dfcbb9732", "multiverse_ids": [126193], "mtgo_id": 26646, "mtgo_foil_id": 26647, "tcgplayer_id": 14845, "cardmarket_id": 15086, "name": "Arc Blade", "lang": "en", "released_at": "2007-05-04", "uri": "https://api.scryfall.com/cards/4d1c04fb-213f-4be1-9bba-94c737826bf8", "scryfall_uri": "https://scryfall.com/card/fut/94/arc-blade?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/4/d/4d1c04fb-213f-4be1-9bba-94c737826bf8.jpg?1562910601", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/d/4d1c04fb-213f-4be1-9bba-94c737826bf8.jpg?1562910601", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/4/d/4d1c04fb-213f-4be1-9bba-94c737826bf8.jpg?1562910601", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/4/d/4d1c04fb-213f-4be1-9bba-94c737826bf8.png?1562910601", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/d/4d1c04fb-213f-4be1-9bba-94c737826bf8.jpg?1562910601", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/4/d/4d1c04fb-213f-4be1-9bba-94c737826bf8.jpg?1562910601"}, "mana_cost": "{3}{R}{R}", "cmc": 5.0, "type_line": "Sorcery", "oracle_text": "Arc Blade deals 2 damage to any target. Exile Arc Blade with three time counters on it.\nSuspend 3\u2014{2}{R} (Rather than cast this card from your hand, you may pay {2}{R} and exile it with three time counters on it. At the beginning of your upkeep, remove a time counter. When the last is removed, cast it without paying its mana cost.)", "colors": ["R"], "color_identity": ["R"], "keywords": ["Suspend"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "bf951ddb-4445-4923-87cb-3fe4ac3c6b9a", "set": "fut", "set_name": "Future Sight", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/bf951ddb-4445-4923-87cb-3fe4ac3c6b9a", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Afut&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/fut?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/4d1c04fb-213f-4be1-9bba-94c737826bf8/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A2c7c42e1-b097-4443-aa02-1f1dfcbb9732&unique=prints", "collector_number": "94", "digital": false, "rarity": "uncommon", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Shishizaru", "artist_ids": ["f993a598-f922-49c8-bb03-6beb3b780b0d"], "illustration_id": "043a8aef-e9a8-494e-9215-3aa91d19c772", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 12393, "penny_rank": 6640, "prices": {"usd": "0.15", "usd_foil": "0.74", "usd_etched": null, "eur": "0.18", "eur_foil": "0.50", "tix": "0.04"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=126193", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Arc+Blade&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Arc+Blade&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Arc+Blade"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/14845?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Arc+Blade&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/26646?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "445e3a0a-29a7-4dc0-80fe-569b9e751db3", "oracle_id": "f1c26b25-371e-4fbf-a43d-7fd59a364d3a", "multiverse_ids": [206343], "mtgo_id": 38151, "mtgo_foil_id": 38152, "tcgplayer_id": 36466, "cardmarket_id": 242785, "name": "Arc Trail", "lang": "en", "released_at": "2010-10-01", "uri": "https://api.scryfall.com/cards/445e3a0a-29a7-4dc0-80fe-569b9e751db3", "scryfall_uri": "https://scryfall.com/card/som/81/arc-trail?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/4/4/445e3a0a-29a7-4dc0-80fe-569b9e751db3.jpg?1562816934", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/4/445e3a0a-29a7-4dc0-80fe-569b9e751db3.jpg?1562816934", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/4/4/445e3a0a-29a7-4dc0-80fe-569b9e751db3.jpg?1562816934", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/4/4/445e3a0a-29a7-4dc0-80fe-569b9e751db3.png?1562816934", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/4/445e3a0a-29a7-4dc0-80fe-569b9e751db3.jpg?1562816934", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/4/4/445e3a0a-29a7-4dc0-80fe-569b9e751db3.jpg?1562816934"}, "mana_cost": "{1}{R}", "cmc": 2.0, "type_line": "Sorcery", "oracle_text": "Arc Trail deals 2 damage to any target and 1 damage to another target.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "8f403072-9b22-4e69-8d59-22dc4c97fd8d", "set": "som", "set_name": "Scars of Mirrodin", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/8f403072-9b22-4e69-8d59-22dc4c97fd8d", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Asom&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/som?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/445e3a0a-29a7-4dc0-80fe-569b9e751db3/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Af1c26b25-371e-4fbf-a43d-7fd59a364d3a&unique=prints", "collector_number": "81", "digital": false, "rarity": "uncommon", "watermark": "mirran", "flavor_text": "\"Don't try to hit your enemies. Concentrate on the space between them, and fill the air with doom.\"\n\u2014Spear-Tribe teaching", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Marc Simonetti", "artist_ids": ["8089db55-5105-47b0-8c64-f320e08c97f0"], "illustration_id": "eaff59f5-7ca8-4e78-a4a7-7e482a8c72a3", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 12587, "penny_rank": 677, "prices": {"usd": "0.10", "usd_foil": "1.18", "usd_etched": null, "eur": "0.24", "eur_foil": "0.50", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=206343", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Arc+Trail&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Arc+Trail&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Arc+Trail"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/36466?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Arc+Trail&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/38151?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "c57534fb-2591-4003-aeec-6452faa4a759", "oracle_id": "a0ce2f5a-9c0b-4801-9105-72f84d8a4a1f", "multiverse_ids": [386481], "mtgo_id": 54358, "mtgo_foil_id": 54359, "tcgplayer_id": 93194, "cardmarket_id": 269488, "name": "Arrow Storm", "lang": "en", "released_at": "2014-09-26", "uri": "https://api.scryfall.com/cards/c57534fb-2591-4003-aeec-6452faa4a759", "scryfall_uri": "https://scryfall.com/card/ktk/98/arrow-storm?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/c/5/c57534fb-2591-4003-aeec-6452faa4a759.jpg?1562793262", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/5/c57534fb-2591-4003-aeec-6452faa4a759.jpg?1562793262", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/c/5/c57534fb-2591-4003-aeec-6452faa4a759.jpg?1562793262", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/c/5/c57534fb-2591-4003-aeec-6452faa4a759.png?1562793262", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/5/c57534fb-2591-4003-aeec-6452faa4a759.jpg?1562793262", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/c/5/c57534fb-2591-4003-aeec-6452faa4a759.jpg?1562793262"}, "mana_cost": "{3}{R}{R}", "cmc": 5.0, "type_line": "Sorcery", "oracle_text": "Arrow Storm deals 4 damage to any target.\nRaid \u2014 If you attacked this turn, instead Arrow Storm deals 5 damage to that permanent or player and the damage can't be prevented.", "colors": ["R"], "color_identity": ["R"], "keywords": ["Raid"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "6c7a715c-ded9-449e-89b0-c665773e9c3c", "set": "ktk", "set_name": "Khans of Tarkir", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/6c7a715c-ded9-449e-89b0-c665773e9c3c", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aktk&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ktk?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/c57534fb-2591-4003-aeec-6452faa4a759/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aa0ce2f5a-9c0b-4801-9105-72f84d8a4a1f&unique=prints", "collector_number": "98", "digital": false, "rarity": "common", "watermark": "mardu", "flavor_text": "First the thunder, then the rain.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Steve Prescott", "artist_ids": ["a1139fb8-41f5-4a9e-9a74-f662e1a23b35"], "illustration_id": "fe7d20b5-c185-42d4-95d7-e02d6e2a22f3", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 18512, "penny_rank": 11953, "prices": {"usd": "0.03", "usd_foil": "0.24", "usd_etched": null, "eur": "0.05", "eur_foil": "0.05", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=386481", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Arrow+Storm&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Arrow+Storm&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Arrow+Storm"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/93194?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Arrow+Storm&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/54358?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "034522ae-f531-44d9-b186-ada046ce0abc", "oracle_id": "d14a8d90-13c0-4eb0-ab7b-86edb2c7fb96", "multiverse_ids": [218081], "mtgo_id": 39874, "mtgo_foil_id": 39875, "tcgplayer_id": 39488, "cardmarket_id": 245906, "name": "Artillerize", "lang": "en", "released_at": "2011-05-13", "uri": "https://api.scryfall.com/cards/034522ae-f531-44d9-b186-ada046ce0abc", "scryfall_uri": "https://scryfall.com/card/nph/79/artillerize?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/0/3/034522ae-f531-44d9-b186-ada046ce0abc.jpg?1562875185", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/3/034522ae-f531-44d9-b186-ada046ce0abc.jpg?1562875185", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/0/3/034522ae-f531-44d9-b186-ada046ce0abc.jpg?1562875185", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/0/3/034522ae-f531-44d9-b186-ada046ce0abc.png?1562875185", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/3/034522ae-f531-44d9-b186-ada046ce0abc.jpg?1562875185", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/0/3/034522ae-f531-44d9-b186-ada046ce0abc.jpg?1562875185"}, "mana_cost": "{3}{R}", "cmc": 4.0, "type_line": "Instant", "oracle_text": "As an additional cost to cast this spell, sacrifice an artifact or creature.\nArtillerize deals 5 damage to any target.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "e8e356d8-6d01-4dab-aa07-d0999dc9359f", "set": "nph", "set_name": "New Phyrexia", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/e8e356d8-6d01-4dab-aa07-d0999dc9359f", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Anph&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/nph?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/034522ae-f531-44d9-b186-ada046ce0abc/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ad14a8d90-13c0-4eb0-ab7b-86edb2c7fb96&unique=prints", "collector_number": "79", "digital": false, "rarity": "common", "watermark": "phyrexian", "flavor_text": "Phyrexian or Mirran, most goblins stick to the job they know best.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Johann Bodin", "artist_ids": ["d92e2dd9-9ef6-43f6-81f8-df87f9066983"], "illustration_id": "cb28e371-8e14-4b4a-86bc-5494cd663df5", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 17170, "penny_rank": 9493, "prices": {"usd": "0.04", "usd_foil": "0.25", "usd_etched": null, "eur": "0.11", "eur_foil": "0.25", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=218081", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Artillerize&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Artillerize&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Artillerize"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/39488?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Artillerize&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/39874?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "903d78c9-c5b3-45c3-a6d0-7e92b4196ae3", "oracle_id": "1943cbb0-2b12-4450-90af-060b8c8627c3", "multiverse_ids": [394502], "mtgo_id": 56040, "mtgo_foil_id": 56041, "tcgplayer_id": 96470, "cardmarket_id": 273143, "name": "Atarka's Command", "lang": "en", "released_at": "2015-03-27", "uri": "https://api.scryfall.com/cards/903d78c9-c5b3-45c3-a6d0-7e92b4196ae3", "scryfall_uri": "https://scryfall.com/card/dtk/213/atarkas-command?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/9/0/903d78c9-c5b3-45c3-a6d0-7e92b4196ae3.jpg?1562789860", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/0/903d78c9-c5b3-45c3-a6d0-7e92b4196ae3.jpg?1562789860", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/9/0/903d78c9-c5b3-45c3-a6d0-7e92b4196ae3.jpg?1562789860", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/9/0/903d78c9-c5b3-45c3-a6d0-7e92b4196ae3.png?1562789860", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/0/903d78c9-c5b3-45c3-a6d0-7e92b4196ae3.jpg?1562789860", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/9/0/903d78c9-c5b3-45c3-a6d0-7e92b4196ae3.jpg?1562789860"}, "mana_cost": "{R}{G}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Choose two \u2014\n\u2022 Your opponents can't gain life this turn.\n\u2022 Atarka's Command deals 3 damage to each opponent.\n\u2022 You may put a land card from your hand onto the battlefield.\n\u2022 Creatures you control get +1/+1 and gain reach until end of turn.", "colors": ["G", "R"], "color_identity": ["G", "R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "7e72625f-f320-4552-a719-d11e2f1853bd", "set": "dtk", "set_name": "Dragons of Tarkir", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/7e72625f-f320-4552-a719-d11e2f1853bd", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Adtk&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/dtk?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/903d78c9-c5b3-45c3-a6d0-7e92b4196ae3/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A1943cbb0-2b12-4450-90af-060b8c8627c3&unique=prints", "collector_number": "213", "digital": false, "rarity": "rare", "watermark": "atarka", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Chris Rahn", "artist_ids": ["7742047e-0f80-4c0f-a530-d07460165e86"], "illustration_id": "d4ea949e-be2f-4ce0-ad2a-b61affd26e01", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 7417, "prices": {"usd": "1.80", "usd_foil": "5.13", "usd_etched": null, "eur": "3.92", "eur_foil": "3.98", "tix": "0.07"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=394502", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Atarka%27s+Command&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Atarka%27s+Command&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Atarka%27s+Command"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/96470?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Atarka%27s+Command&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/56040?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "dadf030d-5451-43fc-bf0c-c1629fdf88ec", "oracle_id": "3db9bf7b-da4e-428f-aa5d-a0cd1afeb16c", "multiverse_ids": [23171], "mtgo_id": 14603, "mtgo_foil_id": 14604, "tcgplayer_id": 7429, "cardmarket_id": 3424, "name": "Backlash", "lang": "en", "released_at": "2000-10-02", "uri": "https://api.scryfall.com/cards/dadf030d-5451-43fc-bf0c-c1629fdf88ec", "scryfall_uri": "https://scryfall.com/card/inv/234/backlash?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/d/a/dadf030d-5451-43fc-bf0c-c1629fdf88ec.jpg?1562938984", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/a/dadf030d-5451-43fc-bf0c-c1629fdf88ec.jpg?1562938984", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/d/a/dadf030d-5451-43fc-bf0c-c1629fdf88ec.jpg?1562938984", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/d/a/dadf030d-5451-43fc-bf0c-c1629fdf88ec.png?1562938984", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/a/dadf030d-5451-43fc-bf0c-c1629fdf88ec.jpg?1562938984", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/d/a/dadf030d-5451-43fc-bf0c-c1629fdf88ec.jpg?1562938984"}, "mana_cost": "{1}{B}{R}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Tap target untapped creature. That creature deals damage equal to its power to its controller.", "colors": ["B", "R"], "color_identity": ["B", "R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "b9ae5e02-7726-47ca-b5e4-5ec402b41cd1", "set": "inv", "set_name": "Invasion", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/b9ae5e02-7726-47ca-b5e4-5ec402b41cd1", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ainv&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/inv?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/dadf030d-5451-43fc-bf0c-c1629fdf88ec/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A3db9bf7b-da4e-428f-aa5d-a0cd1afeb16c&unique=prints", "collector_number": "234", "digital": false, "rarity": "uncommon", "flavor_text": "Darigaaz decided his foe would be more useful as a weapon.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Chippy", "artist_ids": ["a36f01a0-e51a-48b2-a556-b9b3bc73f969"], "illustration_id": "aee067f7-fd6b-44a1-9329-14b9d258fdc9", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 9166, "prices": {"usd": "1.51", "usd_foil": "20.42", "usd_etched": null, "eur": "1.08", "eur_foil": "2.99", "tix": "0.04"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=23171", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Backlash&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Backlash&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Backlash"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/7429?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Backlash&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/14603?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "b188c68a-e9df-4803-a722-1993dd88f833", "oracle_id": "5eff8a06-e0d6-435a-a7c0-db9f9d98636a", "multiverse_ids": [186613], "mtgo_id": 31883, "mtgo_foil_id": 31884, "tcgplayer_id": 28502, "cardmarket_id": 20701, "name": "Banefire", "lang": "en", "released_at": "2009-02-06", "uri": "https://api.scryfall.com/cards/b188c68a-e9df-4803-a722-1993dd88f833", "scryfall_uri": "https://scryfall.com/card/con/58/banefire?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/b/1/b188c68a-e9df-4803-a722-1993dd88f833.jpg?1562803150", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/1/b188c68a-e9df-4803-a722-1993dd88f833.jpg?1562803150", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/b/1/b188c68a-e9df-4803-a722-1993dd88f833.jpg?1562803150", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/b/1/b188c68a-e9df-4803-a722-1993dd88f833.png?1562803150", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/1/b188c68a-e9df-4803-a722-1993dd88f833.jpg?1562803150", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/b/1/b188c68a-e9df-4803-a722-1993dd88f833.jpg?1562803150"}, "mana_cost": "{X}{R}", "cmc": 1.0, "type_line": "Sorcery", "oracle_text": "Banefire deals X damage to any target.\nIf X is 5 or more, this spell can't be countered and the damage can't be prevented.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "76b2db58-904c-4e49-8580-9f62f7b3cca4", "set": "con", "set_name": "Conflux", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/76b2db58-904c-4e49-8580-9f62f7b3cca4", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Acon&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/con?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/b188c68a-e9df-4803-a722-1993dd88f833/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A5eff8a06-e0d6-435a-a7c0-db9f9d98636a&unique=prints", "collector_number": "58", "digital": false, "rarity": "rare", "flavor_text": "For Sarkhan Vol, the dragon is the purest expression of life's savage splendor.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Raymond Swanland", "artist_ids": ["e956bacc-077d-4c12-b6bc-ba798b718af9"], "illustration_id": "bafd83df-55d2-4bb9-8e59-f314c3ca4fd1", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 2407, "penny_rank": 2257, "prices": {"usd": "1.10", "usd_foil": "3.57", "usd_etched": null, "eur": "0.58", "eur_foil": "1.99", "tix": "0.01"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=186613", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Banefire&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Banefire&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Banefire"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/28502?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Banefire&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/31883?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "2509482a-68d8-4e94-9d1e-5b069ebdc2e4", "oracle_id": "f6e1eb52-9f13-425c-8309-1b08ed6557db", "multiverse_ids": [49012], "mtgo_id": 20565, "mtgo_foil_id": 20566, "tcgplayer_id": 11704, "cardmarket_id": 418, "name": "Barbed Lightning", "lang": "en", "released_at": "2004-02-06", "uri": "https://api.scryfall.com/cards/2509482a-68d8-4e94-9d1e-5b069ebdc2e4", "scryfall_uri": "https://scryfall.com/card/dst/55/barbed-lightning?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/2/5/2509482a-68d8-4e94-9d1e-5b069ebdc2e4.jpg?1562635839", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/5/2509482a-68d8-4e94-9d1e-5b069ebdc2e4.jpg?1562635839", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/2/5/2509482a-68d8-4e94-9d1e-5b069ebdc2e4.jpg?1562635839", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/2/5/2509482a-68d8-4e94-9d1e-5b069ebdc2e4.png?1562635839", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/5/2509482a-68d8-4e94-9d1e-5b069ebdc2e4.jpg?1562635839", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/2/5/2509482a-68d8-4e94-9d1e-5b069ebdc2e4.jpg?1562635839"}, "mana_cost": "{2}{R}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Choose one \u2014\n\u2022 Barbed Lightning deals 3 damage to target creature.\n\u2022 Barbed Lightning deals 3 damage to target player or planeswalker.\nEntwine {2} (Choose both if you pay the entwine cost.)", "colors": ["R"], "color_identity": ["R"], "keywords": ["Entwine"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "e29cb2dd-1345-4032-abfe-e52e8c8ce074", "set": "dst", "set_name": "Darksteel", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/e29cb2dd-1345-4032-abfe-e52e8c8ce074", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Adst&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/dst?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/2509482a-68d8-4e94-9d1e-5b069ebdc2e4/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Af6e1eb52-9f13-425c-8309-1b08ed6557db&unique=prints", "collector_number": "55", "digital": false, "rarity": "common", "flavor_text": "Every creature on Mirrodin is a lightning rod.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Hugh Jamieson", "artist_ids": ["ae735af7-4895-45e0-aeb5-58c82343942e"], "illustration_id": "13eedef7-1865-4d62-aa64-d8016cbdee1c", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 16235, "penny_rank": 5273, "prices": {"usd": "0.10", "usd_foil": "0.06", "usd_etched": null, "eur": "0.15", "eur_foil": "0.15", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=49012", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Barbed+Lightning&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Barbed+Lightning&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Barbed+Lightning"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/11704?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Barbed+Lightning&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/20565?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "c0fae532-7189-450e-aa7f-e639163278fc", "oracle_id": "15feb59b-bbbe-462a-8d38-d20735bbc2f3", "multiverse_ids": [51612], "mtgo_id": 20850, "mtgo_foil_id": 20851, "tcgplayer_id": 11869, "cardmarket_id": 577, "name": "Beacon of Destruction", "lang": "en", "released_at": "2004-06-04", "uri": "https://api.scryfall.com/cards/c0fae532-7189-450e-aa7f-e639163278fc", "scryfall_uri": "https://scryfall.com/card/5dn/61/beacon-of-destruction?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/c/0/c0fae532-7189-450e-aa7f-e639163278fc.jpg?1562879532", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/0/c0fae532-7189-450e-aa7f-e639163278fc.jpg?1562879532", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/c/0/c0fae532-7189-450e-aa7f-e639163278fc.jpg?1562879532", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/c/0/c0fae532-7189-450e-aa7f-e639163278fc.png?1562879532", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/0/c0fae532-7189-450e-aa7f-e639163278fc.jpg?1562879532", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/c/0/c0fae532-7189-450e-aa7f-e639163278fc.jpg?1562879532"}, "mana_cost": "{3}{R}{R}", "cmc": 5.0, "type_line": "Instant", "oracle_text": "Beacon of Destruction deals 5 damage to any target. Shuffle Beacon of Destruction into its owner's library.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "e4bc1b87-5476-463c-8640-4c414ecf1763", "set": "5dn", "set_name": "Fifth Dawn", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/e4bc1b87-5476-463c-8640-4c414ecf1763", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3A5dn&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/5dn?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/c0fae532-7189-450e-aa7f-e639163278fc/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A15feb59b-bbbe-462a-8d38-d20735bbc2f3&unique=prints", "collector_number": "61", "digital": false, "rarity": "rare", "flavor_text": "The Great Furnace's blessing is a spectacular sight, but the best view comes at a high cost.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Greg Hildebrandt", "artist_ids": ["020f967b-0d2f-4166-aabe-901dba8bc7ec"], "illustration_id": "6c7ca22c-51c5-42fc-8b4b-57bc27083b70", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 11430, "penny_rank": 7562, "prices": {"usd": "0.26", "usd_foil": "1.99", "usd_etched": null, "eur": "0.05", "eur_foil": "1.95", "tix": "0.01"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=51612", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Beacon+of+Destruction&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Beacon+of+Destruction&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Beacon+of+Destruction"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/11869?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Beacon+of+Destruction&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/20850?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "74dc1f90-8227-47ad-8551-a4e7e565738d", "oracle_id": "f637d525-2f29-488a-9269-8e5aa377fbb7", "multiverse_ids": [6633], "tcgplayer_id": 108, "cardmarket_id": 9884, "name": "Bee Sting", "lang": "en", "released_at": "1998-06-24", "uri": "https://api.scryfall.com/cards/74dc1f90-8227-47ad-8551-a4e7e565738d", "scryfall_uri": "https://scryfall.com/card/p02/124/bee-sting?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/7/4/74dc1f90-8227-47ad-8551-a4e7e565738d.jpg?1562922580", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/4/74dc1f90-8227-47ad-8551-a4e7e565738d.jpg?1562922580", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/7/4/74dc1f90-8227-47ad-8551-a4e7e565738d.jpg?1562922580", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/7/4/74dc1f90-8227-47ad-8551-a4e7e565738d.png?1562922580", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/4/74dc1f90-8227-47ad-8551-a4e7e565738d.jpg?1562922580", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/7/4/74dc1f90-8227-47ad-8551-a4e7e565738d.jpg?1562922580"}, "mana_cost": "{3}{G}", "cmc": 4.0, "type_line": "Sorcery", "oracle_text": "Bee Sting deals 2 damage to any target.", "colors": ["G"], "color_identity": ["G"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "ac67f18a-4f0e-407e-bab1-a9fe4f659565", "set": "p02", "set_name": "Portal Second Age", "set_type": "starter", "set_uri": "https://api.scryfall.com/sets/ac67f18a-4f0e-407e-bab1-a9fe4f659565", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ap02&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/p02?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/74dc1f90-8227-47ad-8551-a4e7e565738d/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Af637d525-2f29-488a-9269-8e5aa377fbb7&unique=prints", "collector_number": "124", "digital": false, "rarity": "uncommon", "flavor_text": "Busy as a bumblebee, blistered as a goblin.\n\u2014Alaborn saying", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Cris Dornaus", "artist_ids": ["1dece336-cfd2-4d65-865a-71b274d68d77"], "illustration_id": "4b43e0cf-768c-4e7c-9099-b25a4ad5cd31", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 21706, "penny_rank": 13741, "prices": {"usd": "0.18", "usd_foil": null, "usd_etched": null, "eur": "0.15", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=6633", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Bee+Sting&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Bee+Sting&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Bee+Sting"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/108?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Bee+Sting&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Bee+Sting&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "23bcf64a-ae3d-4abb-acc7-81bba237f37b", "oracle_id": "f637d525-2f29-488a-9269-8e5aa377fbb7", "multiverse_ids": [4289], "tcgplayer_id": 619, "cardmarket_id": 10068, "name": "Bee Sting", "lang": "en", "released_at": "1997-05-01", "uri": "https://api.scryfall.com/cards/23bcf64a-ae3d-4abb-acc7-81bba237f37b", "scryfall_uri": "https://scryfall.com/card/por/159/bee-sting?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/2/3/23bcf64a-ae3d-4abb-acc7-81bba237f37b.jpg?1562445698", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/3/23bcf64a-ae3d-4abb-acc7-81bba237f37b.jpg?1562445698", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/2/3/23bcf64a-ae3d-4abb-acc7-81bba237f37b.jpg?1562445698", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/2/3/23bcf64a-ae3d-4abb-acc7-81bba237f37b.png?1562445698", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/3/23bcf64a-ae3d-4abb-acc7-81bba237f37b.jpg?1562445698", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/2/3/23bcf64a-ae3d-4abb-acc7-81bba237f37b.jpg?1562445698"}, "mana_cost": "{3}{G}", "cmc": 4.0, "type_line": "Sorcery", "oracle_text": "Bee Sting deals 2 damage to any target.", "colors": ["G"], "color_identity": ["G"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "478c47df-5058-4ce6-830e-7e80732b2ca9", "set": "por", "set_name": "Portal", "set_type": "starter", "set_uri": "https://api.scryfall.com/sets/478c47df-5058-4ce6-830e-7e80732b2ca9", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Apor&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/por?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/23bcf64a-ae3d-4abb-acc7-81bba237f37b/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Af637d525-2f29-488a-9269-8e5aa377fbb7&unique=prints", "collector_number": "159", "digital": false, "rarity": "uncommon", "flavor_text": "There are few things as motivating as a swarm of bees.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Phil Foglio", "artist_ids": ["3bfc0fd7-f6ce-4c3f-a755-aaafc84ac704"], "illustration_id": "b0498d7c-c244-4f18-9ec6-912557d45fb1", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 21706, "penny_rank": 13741, "prices": {"usd": "0.22", "usd_foil": null, "usd_etched": null, "eur": "0.77", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=4289", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Bee+Sting&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Bee+Sting&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Bee+Sting"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/619?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Bee+Sting&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Bee+Sting&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "5ca23782-80d3-4656-afba-f8440c813253", "oracle_id": "08638828-ce88-44d4-a6b2-1effb68ccbdf", "multiverse_ids": [74227], "tcgplayer_id": 37828, "cardmarket_id": 14835, "name": "Blast from the Past", "lang": "en", "released_at": "2004-11-19", "uri": "https://api.scryfall.com/cards/5ca23782-80d3-4656-afba-f8440c813253", "scryfall_uri": "https://scryfall.com/card/unh/72/blast-from-the-past?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/5/c/5ca23782-80d3-4656-afba-f8440c813253.jpg?1562488402", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/c/5ca23782-80d3-4656-afba-f8440c813253.jpg?1562488402", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/5/c/5ca23782-80d3-4656-afba-f8440c813253.jpg?1562488402", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/5/c/5ca23782-80d3-4656-afba-f8440c813253.png?1562488402", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/c/5ca23782-80d3-4656-afba-f8440c813253.jpg?1562488402", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/5/c/5ca23782-80d3-4656-afba-f8440c813253.jpg?1562488402"}, "mana_cost": "{2}{R}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Madness {R}, cycling {1}{R}, kicker {2}{R}, flashback {3}{R}, buyback {4}{R}\nBlast from the Past deals 2 damage to any target. If this spell was kicked, create a 1/1 red Goblin creature token.", "colors": ["R"], "color_identity": ["R"], "keywords": ["Madness", "Buyback", "Flashback", "Cycling", "Kicker"], "all_parts": [{"object": "related_card", "id": "5ca23782-80d3-4656-afba-f8440c813253", "component": "combo_piece", "name": "Blast from the Past", "type_line": "Instant", "uri": "https://api.scryfall.com/cards/5ca23782-80d3-4656-afba-f8440c813253"}, {"object": "related_card", "id": "4bca62e7-8fb5-45ff-ac9a-17db8095e76c", "component": "token", "name": "Goblin", "type_line": "Token Creature \u2014 Goblin", "uri": "https://api.scryfall.com/cards/4bca62e7-8fb5-45ff-ac9a-17db8095e76c"}], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "not_legal", "pauper": "not_legal", "vintage": "not_legal", "penny": "not_legal", "commander": "not_legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "not_legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "4c8bc76a-05a5-43db-aaf0-34deb347b871", "set": "unh", "set_name": "Unhinged", "set_type": "funny", "set_uri": "https://api.scryfall.com/sets/4c8bc76a-05a5-43db-aaf0-34deb347b871", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aunh&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/unh?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/5ca23782-80d3-4656-afba-f8440c813253/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A08638828-ce88-44d4-a6b2-1effb68ccbdf&unique=prints", "collector_number": "72", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Douglas Shuler", "artist_ids": ["a9ddb513-51c7-455c-ab8f-5b90aae9f75b"], "illustration_id": "0d542ce6-7715-4869-ad47-921ab5391454", "border_color": "silver", "frame": "1997", "frame_effects": ["tombstone"], "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "prices": {"usd": "1.09", "usd_foil": null, "usd_etched": null, "eur": "1.50", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=74227", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Blast+from+the+Past&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Blast+from+the+Past&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Blast+from+the+Past"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/37828?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Blast+from+the+Past&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Blast+from+the+Past&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "26f8c6ab-ae62-4e2e-a5ba-2ec5bbe22445", "oracle_id": "0596920f-9946-42f4-a03b-24aab67f9f1b", "multiverse_ids": [13187], "mtgo_id": 15382, "mtgo_foil_id": 15383, "tcgplayer_id": 2833, "cardmarket_id": 2937, "name": "Blaze", "lang": "en", "released_at": "2001-04-11", "uri": "https://api.scryfall.com/cards/26f8c6ab-ae62-4e2e-a5ba-2ec5bbe22445", "scryfall_uri": "https://scryfall.com/card/7ed/175/blaze?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/2/6/26f8c6ab-ae62-4e2e-a5ba-2ec5bbe22445.jpg?1562234516", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/6/26f8c6ab-ae62-4e2e-a5ba-2ec5bbe22445.jpg?1562234516", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/2/6/26f8c6ab-ae62-4e2e-a5ba-2ec5bbe22445.jpg?1562234516", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/2/6/26f8c6ab-ae62-4e2e-a5ba-2ec5bbe22445.png?1562234516", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/6/26f8c6ab-ae62-4e2e-a5ba-2ec5bbe22445.jpg?1562234516", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/2/6/26f8c6ab-ae62-4e2e-a5ba-2ec5bbe22445.jpg?1562234516"}, "mana_cost": "{X}{R}", "cmc": 1.0, "type_line": "Sorcery", "oracle_text": "Blaze deals X damage to any target.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "230f38aa-9511-4db8-a3aa-aeddbc3f7bb9", "set": "7ed", "set_name": "Seventh Edition", "set_type": "core", "set_uri": "https://api.scryfall.com/sets/230f38aa-9511-4db8-a3aa-aeddbc3f7bb9", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3A7ed&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/7ed?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/26f8c6ab-ae62-4e2e-a5ba-2ec5bbe22445/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A0596920f-9946-42f4-a03b-24aab67f9f1b&unique=prints", "collector_number": "175", "digital": false, "rarity": "uncommon", "flavor_text": "Fire never dies alone.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Alex Horley-Orlandelli", "artist_ids": ["1631a2ad-bf03-4ab9-b86c-60da982d58a1"], "illustration_id": "cfb796c0-cfe8-4221-8859-f6a05a6aac85", "border_color": "white", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 9218, "penny_rank": 5651, "prices": {"usd": "0.24", "usd_foil": "14.24", "usd_etched": null, "eur": "0.50", "eur_foil": "9.00", "tix": "0.11"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=13187", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Blaze&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Blaze&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Blaze"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/2833?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Blaze&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/15382?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "a8b6cfd3-4fb1-40a7-a090-de6f8b283cb3", "oracle_id": "0596920f-9946-42f4-a03b-24aab67f9f1b", "multiverse_ids": [10507], "tcgplayer_id": 429, "cardmarket_id": 11295, "name": "Blaze", "lang": "en", "released_at": "1999-07-06", "uri": "https://api.scryfall.com/cards/a8b6cfd3-4fb1-40a7-a090-de6f8b283cb3", "scryfall_uri": "https://scryfall.com/card/ptk/102/blaze?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/a/8/a8b6cfd3-4fb1-40a7-a090-de6f8b283cb3.jpg?1562257515", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/8/a8b6cfd3-4fb1-40a7-a090-de6f8b283cb3.jpg?1562257515", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/a/8/a8b6cfd3-4fb1-40a7-a090-de6f8b283cb3.jpg?1562257515", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/a/8/a8b6cfd3-4fb1-40a7-a090-de6f8b283cb3.png?1562257515", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/8/a8b6cfd3-4fb1-40a7-a090-de6f8b283cb3.jpg?1562257515", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/a/8/a8b6cfd3-4fb1-40a7-a090-de6f8b283cb3.jpg?1562257515"}, "mana_cost": "{X}{R}", "cmc": 1.0, "type_line": "Sorcery", "oracle_text": "Blaze deals X damage to any target.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "2676ff2e-9d86-4b5b-b935-e84e41b0755e", "set": "ptk", "set_name": "Portal Three Kingdoms", "set_type": "starter", "set_uri": "https://api.scryfall.com/sets/2676ff2e-9d86-4b5b-b935-e84e41b0755e", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aptk&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ptk?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/a8b6cfd3-4fb1-40a7-a090-de6f8b283cb3/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A0596920f-9946-42f4-a03b-24aab67f9f1b&unique=prints", "collector_number": "102", "digital": false, "rarity": "uncommon", "flavor_text": "\"Spreading flames illumined cloud and sea: Cao Cao went down; 'twas Zhou Yu's victory.\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Qu Xin", "artist_ids": ["e7eb4904-b4de-49f4-8139-a7ec2a9b6ba5"], "illustration_id": "4a00b5bc-0304-44c3-b2a7-c1fe3d79f25a", "border_color": "white", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 9218, "penny_rank": 5651, "prices": {"usd": "10.99", "usd_foil": null, "usd_etched": null, "eur": "3.15", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=10507", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Blaze&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Blaze&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Blaze"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/429?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Blaze&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Blaze&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "3940d0ca-0ca2-4446-9330-a554c3e89824", "oracle_id": "0596920f-9946-42f4-a03b-24aab67f9f1b", "multiverse_ids": [6600], "tcgplayer_id": 109, "cardmarket_id": 9911, "name": "Blaze", "lang": "en", "released_at": "1998-06-24", "uri": "https://api.scryfall.com/cards/3940d0ca-0ca2-4446-9330-a554c3e89824", "scryfall_uri": "https://scryfall.com/card/p02/91/blaze?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/3/9/3940d0ca-0ca2-4446-9330-a554c3e89824.jpg?1562908488", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/9/3940d0ca-0ca2-4446-9330-a554c3e89824.jpg?1562908488", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/3/9/3940d0ca-0ca2-4446-9330-a554c3e89824.jpg?1562908488", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/3/9/3940d0ca-0ca2-4446-9330-a554c3e89824.png?1562908488", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/9/3940d0ca-0ca2-4446-9330-a554c3e89824.jpg?1562908488", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/3/9/3940d0ca-0ca2-4446-9330-a554c3e89824.jpg?1562908488"}, "mana_cost": "{X}{R}", "cmc": 1.0, "type_line": "Sorcery", "oracle_text": "Blaze deals X damage to any target.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "ac67f18a-4f0e-407e-bab1-a9fe4f659565", "set": "p02", "set_name": "Portal Second Age", "set_type": "starter", "set_uri": "https://api.scryfall.com/sets/ac67f18a-4f0e-407e-bab1-a9fe4f659565", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ap02&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/p02?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/3940d0ca-0ca2-4446-9330-a554c3e89824/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A0596920f-9946-42f4-a03b-24aab67f9f1b&unique=prints", "collector_number": "91", "digital": false, "rarity": "uncommon", "flavor_text": "\"This isn't what I meant by 'facing the heat of battle!'\"\n\u2014Jefan, Talas ship captain", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "David A. Cherry", "artist_ids": ["7a6b152c-eb22-4d73-beee-08876768e931"], "illustration_id": "9c1faa49-4d2e-480e-80f8-57a853ff7835", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 9218, "penny_rank": 5651, "prices": {"usd": "0.27", "usd_foil": null, "usd_etched": null, "eur": "0.34", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=6600", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Blaze&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Blaze&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Blaze"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/109?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Blaze&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Blaze&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "f175c959-3b5d-46a3-9194-fad2359bbff9", "oracle_id": "0596920f-9946-42f4-a03b-24aab67f9f1b", "multiverse_ids": [4328], "tcgplayer_id": 620, "cardmarket_id": 10108, "name": "Blaze", "lang": "en", "released_at": "1997-05-01", "uri": "https://api.scryfall.com/cards/f175c959-3b5d-46a3-9194-fad2359bbff9", "scryfall_uri": "https://scryfall.com/card/por/118/blaze?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/f/1/f175c959-3b5d-46a3-9194-fad2359bbff9.jpg?1546740055", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/1/f175c959-3b5d-46a3-9194-fad2359bbff9.jpg?1546740055", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/f/1/f175c959-3b5d-46a3-9194-fad2359bbff9.jpg?1546740055", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/f/1/f175c959-3b5d-46a3-9194-fad2359bbff9.png?1546740055", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/1/f175c959-3b5d-46a3-9194-fad2359bbff9.jpg?1546740055", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/f/1/f175c959-3b5d-46a3-9194-fad2359bbff9.jpg?1546740055"}, "mana_cost": "{X}{R}", "cmc": 1.0, "type_line": "Sorcery", "oracle_text": "Blaze deals X damage to any target.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "478c47df-5058-4ce6-830e-7e80732b2ca9", "set": "por", "set_name": "Portal", "set_type": "starter", "set_uri": "https://api.scryfall.com/sets/478c47df-5058-4ce6-830e-7e80732b2ca9", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Apor&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/por?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/f175c959-3b5d-46a3-9194-fad2359bbff9/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A0596920f-9946-42f4-a03b-24aab67f9f1b&unique=prints", "collector_number": "118", "digital": false, "rarity": "uncommon", "flavor_text": "Fire never dies alone.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Gerry Grace", "artist_ids": ["09922e8b-c57f-4374-97e4-c0b86b66ef4b"], "illustration_id": "63b88d5b-5b9b-41c0-bab8-397a3db71891", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 9218, "penny_rank": 5651, "prices": {"usd": "0.26", "usd_foil": null, "usd_etched": null, "eur": "0.40", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=4328", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Blaze&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Blaze&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Blaze"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/620?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Blaze&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Blaze&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "f7d192ef-a174-4df5-b67f-22918c32cf71", "oracle_id": "e6681d22-821a-47c8-9c0d-042a7d44f843", "multiverse_ids": [29858], "mtgo_id": 16701, "mtgo_foil_id": 16702, "tcgplayer_id": 9453, "cardmarket_id": 2590, "name": "Blazing Salvo", "lang": "en", "released_at": "2001-10-01", "uri": "https://api.scryfall.com/cards/f7d192ef-a174-4df5-b67f-22918c32cf71", "scryfall_uri": "https://scryfall.com/card/ody/178/blazing-salvo?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/f/7/f7d192ef-a174-4df5-b67f-22918c32cf71.jpg?1562941547", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/7/f7d192ef-a174-4df5-b67f-22918c32cf71.jpg?1562941547", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/f/7/f7d192ef-a174-4df5-b67f-22918c32cf71.jpg?1562941547", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/f/7/f7d192ef-a174-4df5-b67f-22918c32cf71.png?1562941547", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/7/f7d192ef-a174-4df5-b67f-22918c32cf71.jpg?1562941547", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/f/7/f7d192ef-a174-4df5-b67f-22918c32cf71.jpg?1562941547"}, "mana_cost": "{R}", "cmc": 1.0, "type_line": "Instant", "oracle_text": "Blazing Salvo deals 3 damage to target creature unless that creature's controller has Blazing Salvo deal 5 damage to them.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "b0d90d2d-494a-4224-bfa0-36ce5ee281b1", "set": "ody", "set_name": "Odyssey", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/b0d90d2d-494a-4224-bfa0-36ce5ee281b1", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aody&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ody?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/f7d192ef-a174-4df5-b67f-22918c32cf71/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ae6681d22-821a-47c8-9c0d-042a7d44f843&unique=prints", "collector_number": "178", "digital": false, "rarity": "common", "flavor_text": "Barbarians equate courage with the ability to endure pain.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "rk post", "artist_ids": ["81ae0f3f-1d88-4125-9aeb-b15b4c734c82"], "illustration_id": "ce9b8592-89ef-4144-a89e-0c8642d7e958", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 14000, "penny_rank": 9818, "prices": {"usd": "0.16", "usd_foil": "1.33", "usd_etched": null, "eur": "1.00", "eur_foil": "0.95", "tix": "0.06"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=29858", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Blazing+Salvo&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Blazing+Salvo&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Blazing+Salvo"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/9453?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Blazing+Salvo&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/16701?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "68ba5a86-ef90-45fd-bc7a-e870e91a207c", "oracle_id": "a6496440-dc0c-4d9b-bf37-f537b6f0187b", "multiverse_ids": [368483], "mtgo_id": 48159, "mtgo_foil_id": 48160, "tcgplayer_id": 67860, "cardmarket_id": 260834, "name": "Blightning", "lang": "en", "released_at": "2013-03-15", "uri": "https://api.scryfall.com/cards/68ba5a86-ef90-45fd-bc7a-e870e91a207c", "scryfall_uri": "https://scryfall.com/card/ddk/69/blightning?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/6/8/68ba5a86-ef90-45fd-bc7a-e870e91a207c.jpg?1592714653", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/8/68ba5a86-ef90-45fd-bc7a-e870e91a207c.jpg?1592714653", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/6/8/68ba5a86-ef90-45fd-bc7a-e870e91a207c.jpg?1592714653", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/6/8/68ba5a86-ef90-45fd-bc7a-e870e91a207c.png?1592714653", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/8/68ba5a86-ef90-45fd-bc7a-e870e91a207c.jpg?1592714653", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/6/8/68ba5a86-ef90-45fd-bc7a-e870e91a207c.jpg?1592714653"}, "mana_cost": "{1}{B}{R}", "cmc": 3.0, "type_line": "Sorcery", "oracle_text": "Blightning deals 3 damage to target player or planeswalker. That player or that planeswalker's controller discards two cards.", "colors": ["B", "R"], "color_identity": ["B", "R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "529a5259-8a88-4baf-86a0-cd88098c3ce7", "set": "ddk", "set_name": "Duel Decks: Sorin vs. Tibalt", "set_type": "duel_deck", "set_uri": "https://api.scryfall.com/sets/529a5259-8a88-4baf-86a0-cd88098c3ce7", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Addk&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ddk?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/68ba5a86-ef90-45fd-bc7a-e870e91a207c/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aa6496440-dc0c-4d9b-bf37-f537b6f0187b&unique=prints", "collector_number": "69", "digital": false, "rarity": "common", "flavor_text": "In the spirit of inquiry, Tibalt applied a battery of agony spells. They yielded nothing on the vampire's whereabouts, but the screams were reward enough.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Dan Scott", "artist_ids": ["f852fa13-137e-40f2-bbc1-0f01df09c0e0"], "illustration_id": "d362472d-1d79-4103-8474-758ba78218e9", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "edhrec_rank": 10733, "penny_rank": 858, "prices": {"usd": "0.35", "usd_foil": null, "usd_etched": null, "eur": "0.15", "eur_foil": null, "tix": "0.16"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=368483", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Blightning&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Blightning&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Blightning"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/67860?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Blightning&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/48159?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "3c05e8a2-b7d0-4f24-b2ae-8e4db30e5842", "oracle_id": "a6496440-dc0c-4d9b-bf37-f537b6f0187b", "multiverse_ids": [174917], "mtgo_id": 30983, "mtgo_foil_id": 30984, "tcgplayer_id": 27617, "cardmarket_id": 19717, "name": "Blightning", "lang": "en", "released_at": "2008-10-03", "uri": "https://api.scryfall.com/cards/3c05e8a2-b7d0-4f24-b2ae-8e4db30e5842", "scryfall_uri": "https://scryfall.com/card/ala/156/blightning?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/3/c/3c05e8a2-b7d0-4f24-b2ae-8e4db30e5842.jpg?1562702945", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/c/3c05e8a2-b7d0-4f24-b2ae-8e4db30e5842.jpg?1562702945", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/3/c/3c05e8a2-b7d0-4f24-b2ae-8e4db30e5842.jpg?1562702945", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/3/c/3c05e8a2-b7d0-4f24-b2ae-8e4db30e5842.png?1562702945", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/c/3c05e8a2-b7d0-4f24-b2ae-8e4db30e5842.jpg?1562702945", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/3/c/3c05e8a2-b7d0-4f24-b2ae-8e4db30e5842.jpg?1562702945"}, "mana_cost": "{1}{B}{R}", "cmc": 3.0, "type_line": "Sorcery", "oracle_text": "Blightning deals 3 damage to target player or planeswalker. That player or that planeswalker's controller discards two cards.", "colors": ["B", "R"], "color_identity": ["B", "R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "d667aaec-09b7-4406-b6fa-60795132dc11", "set": "ala", "set_name": "Shards of Alara", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/d667aaec-09b7-4406-b6fa-60795132dc11", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aala&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ala?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/3c05e8a2-b7d0-4f24-b2ae-8e4db30e5842/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aa6496440-dc0c-4d9b-bf37-f537b6f0187b&unique=prints", "collector_number": "156", "digital": false, "rarity": "common", "flavor_text": "While the smell of burning flesh is common in Grixis, the odor of smoldering brain matter is a rare treat.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Thomas M. Baxa", "artist_ids": ["ff346569-557d-4043-ae44-97c2c7cabd7d"], "illustration_id": "419261f6-546c-453c-a3cc-5684a5e3cacd", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 10733, "penny_rank": 858, "prices": {"usd": "0.26", "usd_foil": "2.00", "usd_etched": null, "eur": "0.25", "eur_foil": "0.75", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=174917", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Blightning&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Blightning&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Blightning"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/27617?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Blightning&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/30983?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "7a1b4c07-588a-444f-9677-3eb1493b5394", "oracle_id": "a6496440-dc0c-4d9b-bf37-f537b6f0187b", "multiverse_ids": [], "tcgplayer_id": 38295, "cardmarket_id": 20874, "name": "Blightning", "lang": "en", "released_at": "2009-01-01", "uri": "https://api.scryfall.com/cards/7a1b4c07-588a-444f-9677-3eb1493b5394", "scryfall_uri": "https://scryfall.com/card/p09/6/blightning?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/7/a/7a1b4c07-588a-444f-9677-3eb1493b5394.jpg?1561757438", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/a/7a1b4c07-588a-444f-9677-3eb1493b5394.jpg?1561757438", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/7/a/7a1b4c07-588a-444f-9677-3eb1493b5394.jpg?1561757438", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/7/a/7a1b4c07-588a-444f-9677-3eb1493b5394.png?1561757438", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/a/7a1b4c07-588a-444f-9677-3eb1493b5394.jpg?1561757438", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/7/a/7a1b4c07-588a-444f-9677-3eb1493b5394.jpg?1561757438"}, "mana_cost": "{1}{B}{R}", "cmc": 3.0, "type_line": "Sorcery", "oracle_text": "Blightning deals 3 damage to target player or planeswalker. That player or that planeswalker's controller discards two cards.", "colors": ["B", "R"], "color_identity": ["B", "R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": true, "reprint": true, "variation": false, "set_id": "824eec08-e609-41db-8de4-4e58d8aeb37d", "set": "p09", "set_name": "Magic Player Rewards 2009", "set_type": "promo", "set_uri": "https://api.scryfall.com/sets/824eec08-e609-41db-8de4-4e58d8aeb37d", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ap09&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/p09?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/7a1b4c07-588a-444f-9677-3eb1493b5394/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aa6496440-dc0c-4d9b-bf37-f537b6f0187b&unique=prints", "collector_number": "6", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Jim Pavelec", "artist_ids": ["1431bdd4-c187-40ea-847a-e1dcd835598a"], "illustration_id": "6574077b-ae4e-4a0c-b3a9-6b4a76d03bab", "border_color": "black", "frame": "2003", "full_art": true, "textless": true, "booster": false, "story_spotlight": false, "promo_types": ["playerrewards"], "edhrec_rank": 10733, "penny_rank": 858, "prices": {"usd": "2.61", "usd_foil": null, "usd_etched": null, "eur": "0.79", "eur_foil": null, "tix": null}, "related_uris": {"tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Blightning&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Blightning&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Blightning"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/38295?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Blightning&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Blightning&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "b53f5b9b-d24b-4e9a-bc90-7ed198cd1132", "oracle_id": "65410f7a-c749-4b23-ad61-8a7136efcad2", "multiverse_ids": [430773], "mtgo_id": 64652, "mtgo_foil_id": 64653, "tcgplayer_id": 136678, "cardmarket_id": 298835, "name": "Blur of Blades", "lang": "en", "released_at": "2017-07-14", "uri": "https://api.scryfall.com/cards/b53f5b9b-d24b-4e9a-bc90-7ed198cd1132", "scryfall_uri": "https://scryfall.com/card/hou/84/blur-of-blades?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/b/5/b53f5b9b-d24b-4e9a-bc90-7ed198cd1132.jpg?1562811539", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/5/b53f5b9b-d24b-4e9a-bc90-7ed198cd1132.jpg?1562811539", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/b/5/b53f5b9b-d24b-4e9a-bc90-7ed198cd1132.jpg?1562811539", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/b/5/b53f5b9b-d24b-4e9a-bc90-7ed198cd1132.png?1562811539", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/5/b53f5b9b-d24b-4e9a-bc90-7ed198cd1132.jpg?1562811539", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/b/5/b53f5b9b-d24b-4e9a-bc90-7ed198cd1132.jpg?1562811539"}, "mana_cost": "{1}{R}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Put a -1/-1 counter on target creature. Blur of Blades deals 2 damage to that creature's controller.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "65ff168b-bb94-47a5-a8f9-4ec6c213e768", "set": "hou", "set_name": "Hour of Devastation", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/65ff168b-bb94-47a5-a8f9-4ec6c213e768", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ahou&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/hou?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/b53f5b9b-d24b-4e9a-bc90-7ed198cd1132/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A65410f7a-c749-4b23-ad61-8a7136efcad2&unique=prints", "collector_number": "84", "digital": false, "rarity": "common", "flavor_text": "Samut battled her way through the hordes, shouting the names of those who'd died in her crop and those she hoped yet to save.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Anna Steinbauer", "artist_ids": ["3516496c-c279-4b56-8239-720683d03ae0"], "illustration_id": "0b602e44-cb76-4fd2-b92c-5325381e8fea", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 15363, "penny_rank": 5360, "prices": {"usd": "0.03", "usd_foil": "0.24", "usd_etched": null, "eur": "0.01", "eur_foil": "0.24", "tix": "0.05"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=430773", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Blur+of+Blades&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Blur+of+Blades&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Blur+of+Blades"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/136678?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Blur+of+Blades&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/64652?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "4df70b14-5d67-4a92-aaba-72480c621d10", "oracle_id": "e07f50fb-98b2-40b7-9610-b8e9438be394", "multiverse_ids": [378461], "mtgo_id": 51637, "mtgo_foil_id": 51638, "tcgplayer_id": 79160, "cardmarket_id": 266040, "name": "Bolt of Keranos", "lang": "en", "released_at": "2014-02-07", "uri": "https://api.scryfall.com/cards/4df70b14-5d67-4a92-aaba-72480c621d10", "scryfall_uri": "https://scryfall.com/card/bng/89/bolt-of-keranos?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/4/d/4df70b14-5d67-4a92-aaba-72480c621d10.jpg?1593092169", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/d/4df70b14-5d67-4a92-aaba-72480c621d10.jpg?1593092169", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/4/d/4df70b14-5d67-4a92-aaba-72480c621d10.jpg?1593092169", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/4/d/4df70b14-5d67-4a92-aaba-72480c621d10.png?1593092169", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/d/4df70b14-5d67-4a92-aaba-72480c621d10.jpg?1593092169", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/4/d/4df70b14-5d67-4a92-aaba-72480c621d10.jpg?1593092169"}, "mana_cost": "{1}{R}{R}", "cmc": 3.0, "type_line": "Sorcery", "oracle_text": "Bolt of Keranos deals 3 damage to any target. Scry 1. (Look at the top card of your library. You may put that card on the bottom of your library.)", "colors": ["R"], "color_identity": ["R"], "keywords": ["Scry"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "50a80fe4-a757-408f-ad23-52c5cc5f45cc", "set": "bng", "set_name": "Born of the Gods", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/50a80fe4-a757-408f-ad23-52c5cc5f45cc", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Abng&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/bng?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/4df70b14-5d67-4a92-aaba-72480c621d10/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ae07f50fb-98b2-40b7-9610-b8e9438be394&unique=prints", "collector_number": "89", "digital": false, "rarity": "common", "flavor_text": "The breakthroughs granted by Keranos, god of epiphany, can be surprisingly literal.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Karl Kopinski", "artist_ids": ["0fad2c48-a56e-4a0b-b512-224f6f238f20"], "illustration_id": "e191d638-803a-4e66-a011-6a206d4394ab", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 15840, "penny_rank": 7830, "prices": {"usd": "0.03", "usd_foil": "0.13", "usd_etched": null, "eur": "0.02", "eur_foil": "0.20", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=378461", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Bolt+of+Keranos&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Bolt+of+Keranos&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Bolt+of+Keranos"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/79160?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Bolt+of+Keranos&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/51637?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "e60610fe-891d-46de-b556-d03b637dccec", "oracle_id": "13822dcf-0639-4852-9a7f-e1d55719e82c", "multiverse_ids": [271095], "mtgo_id": 44191, "mtgo_foil_id": 44192, "tcgplayer_id": 58296, "cardmarket_id": 254417, "name": "Bonfire of the Damned", "lang": "en", "released_at": "2012-05-04", "uri": "https://api.scryfall.com/cards/e60610fe-891d-46de-b556-d03b637dccec", "scryfall_uri": "https://scryfall.com/card/avr/129/bonfire-of-the-damned?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/e/6/e60610fe-891d-46de-b556-d03b637dccec.jpg?1592709031", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/6/e60610fe-891d-46de-b556-d03b637dccec.jpg?1592709031", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/e/6/e60610fe-891d-46de-b556-d03b637dccec.jpg?1592709031", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/e/6/e60610fe-891d-46de-b556-d03b637dccec.png?1592709031", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/6/e60610fe-891d-46de-b556-d03b637dccec.jpg?1592709031", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/e/6/e60610fe-891d-46de-b556-d03b637dccec.jpg?1592709031"}, "mana_cost": "{X}{X}{R}", "cmc": 1.0, "type_line": "Sorcery", "oracle_text": "Bonfire of the Damned deals X damage to target player or planeswalker and each creature that player or that planeswalker's controller controls.\nMiracle {X}{R} (You may cast this card for its miracle cost when you draw it if it's the first card you drew this turn.)", "colors": ["R"], "color_identity": ["R"], "keywords": ["Miracle"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "039810a9-92d7-4f2d-b2d0-ca661ac586c0", "set": "avr", "set_name": "Avacyn Restored", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/039810a9-92d7-4f2d-b2d0-ca661ac586c0", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aavr&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/avr?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/e60610fe-891d-46de-b556-d03b637dccec/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A13822dcf-0639-4852-9a7f-e1d55719e82c&unique=prints", "collector_number": "129", "digital": false, "rarity": "mythic", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "James Paick", "artist_ids": ["1a7be0a2-d8ac-45c7-b0a0-eb0886f47b5f"], "illustration_id": "6446deae-9e18-44c0-8ecd-1b7f2d7821fd", "border_color": "black", "frame": "2003", "frame_effects": ["miracle"], "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 6725, "prices": {"usd": "1.68", "usd_foil": "7.35", "usd_etched": null, "eur": "1.49", "eur_foil": "4.94", "tix": "0.06"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=271095", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Bonfire+of+the+Damned&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Bonfire+of+the+Damned&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Bonfire+of+the+Damned"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/58296?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Bonfire+of+the+Damned&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/44191?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "bead678c-7b6a-4668-9919-623312e08a65", "oracle_id": "644a8946-4890-4c2b-978f-02eedc95b5ad", "multiverse_ids": [35891], "mtgo_id": 17522, "mtgo_foil_id": 17523, "tcgplayer_id": 10240, "cardmarket_id": 2206, "name": "Book Burning", "lang": "en", "released_at": "2002-05-27", "uri": "https://api.scryfall.com/cards/bead678c-7b6a-4668-9919-623312e08a65", "scryfall_uri": "https://scryfall.com/card/jud/80/book-burning?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/b/e/bead678c-7b6a-4668-9919-623312e08a65.jpg?1562631756", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/e/bead678c-7b6a-4668-9919-623312e08a65.jpg?1562631756", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/b/e/bead678c-7b6a-4668-9919-623312e08a65.jpg?1562631756", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/b/e/bead678c-7b6a-4668-9919-623312e08a65.png?1562631756", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/e/bead678c-7b6a-4668-9919-623312e08a65.jpg?1562631756", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/b/e/bead678c-7b6a-4668-9919-623312e08a65.jpg?1562631756"}, "mana_cost": "{1}{R}", "cmc": 2.0, "type_line": "Sorcery", "oracle_text": "Any player may have Book Burning deal 6 damage to them. If no one does, target player mills six cards.", "colors": ["R"], "color_identity": ["R"], "keywords": ["Mill"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "cd82de1a-36fd-4618-bfe8-b45532a582d9", "set": "jud", "set_name": "Judgment", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/cd82de1a-36fd-4618-bfe8-b45532a582d9", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ajud&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/jud?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/bead678c-7b6a-4668-9919-623312e08a65/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A644a8946-4890-4c2b-978f-02eedc95b5ad&unique=prints", "collector_number": "80", "digital": false, "rarity": "common", "flavor_text": "The wizard's spellbook was full of burning questions.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Dave Dorman", "artist_ids": ["9235458b-ce92-45bd-a430-a72ecd8e6176"], "illustration_id": "3c5cd074-22b7-44e9-9ea5-9b31bc8d42d5", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 16112, "penny_rank": 11295, "prices": {"usd": "0.14", "usd_foil": "1.70", "usd_etched": null, "eur": "0.20", "eur_foil": "0.19", "tix": "0.04"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=35891", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Book+Burning&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Book+Burning&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Book+Burning"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/10240?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Book+Burning&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/17522?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "d4ddf9cc-40a7-4b4f-bb51-b08171453c9a", "oracle_id": "2679d0dd-ba30-4a1c-b6a0-b3ac6c790496", "multiverse_ids": [366435], "mtgo_id": 47477, "mtgo_foil_id": 47478, "tcgplayer_id": 67424, "cardmarket_id": 259914, "name": "Boros Charm", "lang": "en", "released_at": "2013-02-01", "uri": "https://api.scryfall.com/cards/d4ddf9cc-40a7-4b4f-bb51-b08171453c9a", "scryfall_uri": "https://scryfall.com/card/gtc/148/boros-charm?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/d/4/d4ddf9cc-40a7-4b4f-bb51-b08171453c9a.jpg?1561848093", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/4/d4ddf9cc-40a7-4b4f-bb51-b08171453c9a.jpg?1561848093", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/d/4/d4ddf9cc-40a7-4b4f-bb51-b08171453c9a.jpg?1561848093", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/d/4/d4ddf9cc-40a7-4b4f-bb51-b08171453c9a.png?1561848093", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/4/d4ddf9cc-40a7-4b4f-bb51-b08171453c9a.jpg?1561848093", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/d/4/d4ddf9cc-40a7-4b4f-bb51-b08171453c9a.jpg?1561848093"}, "mana_cost": "{R}{W}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Choose one \u2014\n\u2022 Boros Charm deals 4 damage to target player or planeswalker.\n\u2022 Permanents you control gain indestructible until end of turn.\n\u2022 Target creature gains double strike until end of turn.", "colors": ["R", "W"], "color_identity": ["R", "W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "035a05f7-e020-4f50-a141-ed16ba704bd2", "set": "gtc", "set_name": "Gatecrash", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/035a05f7-e020-4f50-a141-ed16ba704bd2", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Agtc&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/gtc?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/d4ddf9cc-40a7-4b4f-bb51-b08171453c9a/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A2679d0dd-ba30-4a1c-b6a0-b3ac6c790496&unique=prints", "collector_number": "148", "digital": false, "rarity": "uncommon", "watermark": "boros", "flavor_text": "\"Practice compassion and mercy. But know when they must end.\"\n\u2014Aurelia", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Zoltan Boros", "artist_ids": ["1885e6cb-c827-4896-994e-3d0a027d602f"], "illustration_id": "a31e2d3d-dd7c-4b92-95c4-92cbf512a962", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 139, "prices": {"usd": "1.07", "usd_foil": "8.85", "usd_etched": null, "eur": "2.09", "eur_foil": "3.95", "tix": "0.60"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=366435", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Boros+Charm&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Boros+Charm&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Boros+Charm"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/67424?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Boros+Charm&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/47477?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "ac8cd7a1-3f79-405b-8930-2206f32c2035", "oracle_id": "2679d0dd-ba30-4a1c-b6a0-b3ac6c790496", "multiverse_ids": [], "mtgo_id": 87205, "tcgplayer_id": 232585, "cardmarket_id": 567151, "name": "Boros Charm", "lang": "en", "released_at": "2021-02-12", "uri": "https://api.scryfall.com/cards/ac8cd7a1-3f79-405b-8930-2206f32c2035", "scryfall_uri": "https://scryfall.com/card/sld/217/boros-charm?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/a/c/ac8cd7a1-3f79-405b-8930-2206f32c2035.jpg?1622938151", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/c/ac8cd7a1-3f79-405b-8930-2206f32c2035.jpg?1622938151", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/a/c/ac8cd7a1-3f79-405b-8930-2206f32c2035.jpg?1622938151", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/a/c/ac8cd7a1-3f79-405b-8930-2206f32c2035.png?1622938151", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/c/ac8cd7a1-3f79-405b-8930-2206f32c2035.jpg?1622938151", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/a/c/ac8cd7a1-3f79-405b-8930-2206f32c2035.jpg?1622938151"}, "mana_cost": "{R}{W}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Choose one \u2014\n\u2022 Boros Charm deals 4 damage to target player or planeswalker.\n\u2022 Permanents you control gain indestructible until end of turn.\n\u2022 Target creature gains double strike until end of turn.", "colors": ["R", "W"], "color_identity": ["R", "W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "4d92a8a7-ccb0-437d-abdc-9d70fc5ed672", "set": "sld", "set_name": "Secret Lair Drop", "set_type": "box", "set_uri": "https://api.scryfall.com/sets/4d92a8a7-ccb0-437d-abdc-9d70fc5ed672", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Asld&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/sld?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/ac8cd7a1-3f79-405b-8930-2206f32c2035/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A2679d0dd-ba30-4a1c-b6a0-b3ac6c790496&unique=prints", "collector_number": "217", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Brandi Milne", "artist_ids": ["01cc1b83-03de-40a7-aa38-a9d23cf2fe8b"], "illustration_id": "97ec7583-f5d0-462b-a7ac-3afb5bedf589", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "edhrec_rank": 139, "prices": {"usd": "15.68", "usd_foil": "18.04", "usd_etched": null, "eur": "12.95", "eur_foil": "17.50", "tix": "0.76"}, "related_uris": {"tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Boros+Charm&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Boros+Charm&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Boros+Charm"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/232585?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Boros+Charm&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/87205?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "c46b2f5c-3c7a-4421-9d6f-81197e93d8d0", "oracle_id": "20eff2ce-f26d-48a2-8a1f-435a7e2968c8", "multiverse_ids": [89006], "mtgo_id": 23386, "mtgo_foil_id": 23387, "tcgplayer_id": 13206, "cardmarket_id": 13309, "name": "Boros Fury-Shield", "lang": "en", "released_at": "2005-10-07", "uri": "https://api.scryfall.com/cards/c46b2f5c-3c7a-4421-9d6f-81197e93d8d0", "scryfall_uri": "https://scryfall.com/card/rav/5/boros-fury-shield?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/c/4/c46b2f5c-3c7a-4421-9d6f-81197e93d8d0.jpg?1598913470", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/4/c46b2f5c-3c7a-4421-9d6f-81197e93d8d0.jpg?1598913470", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/c/4/c46b2f5c-3c7a-4421-9d6f-81197e93d8d0.jpg?1598913470", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/c/4/c46b2f5c-3c7a-4421-9d6f-81197e93d8d0.png?1598913470", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/4/c46b2f5c-3c7a-4421-9d6f-81197e93d8d0.jpg?1598913470", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/c/4/c46b2f5c-3c7a-4421-9d6f-81197e93d8d0.jpg?1598913470"}, "mana_cost": "{2}{W}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Prevent all combat damage that would be dealt by target attacking or blocking creature this turn. If {R} was spent to cast this spell, Boros Fury-Shield deals damage to that creature's controller equal to the creature's power.", "colors": ["W"], "color_identity": ["R", "W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "15fccbe8-2825-41ca-9d0a-67aebdf91c4a", "set": "rav", "set_name": "Ravnica: City of Guilds", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/15fccbe8-2825-41ca-9d0a-67aebdf91c4a", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Arav&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/rav?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/c46b2f5c-3c7a-4421-9d6f-81197e93d8d0/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A20eff2ce-f26d-48a2-8a1f-435a7e2968c8&unique=prints", "collector_number": "5", "digital": false, "rarity": "common", "watermark": "boros", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Wayne England", "artist_ids": ["62dc90c0-4bc2-4d42-ad76-59cad9243566"], "illustration_id": "2c65ef9d-8587-4223-91f6-8b222bae06e5", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 13020, "prices": {"usd": "0.15", "usd_foil": "0.68", "usd_etched": null, "eur": "0.15", "eur_foil": "0.45", "tix": "0.04"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=89006", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Boros+Fury-Shield&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Boros+Fury-Shield&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Boros+Fury-Shield"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/13206?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Boros+Fury-Shield&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/23386?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "96ba9014-d750-4924-aa6f-8b9f421807f9", "oracle_id": "79334732-8db1-4393-9fed-3cde3c572c5c", "multiverse_ids": [10549], "tcgplayer_id": 431, "cardmarket_id": 11326, "name": "Borrowing the East Wind", "lang": "en", "released_at": "1999-07-06", "uri": "https://api.scryfall.com/cards/96ba9014-d750-4924-aa6f-8b9f421807f9", "scryfall_uri": "https://scryfall.com/card/ptk/133/borrowing-the-east-wind?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/9/6/96ba9014-d750-4924-aa6f-8b9f421807f9.jpg?1562257056", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/6/96ba9014-d750-4924-aa6f-8b9f421807f9.jpg?1562257056", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/9/6/96ba9014-d750-4924-aa6f-8b9f421807f9.jpg?1562257056", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/9/6/96ba9014-d750-4924-aa6f-8b9f421807f9.png?1562257056", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/6/96ba9014-d750-4924-aa6f-8b9f421807f9.jpg?1562257056", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/9/6/96ba9014-d750-4924-aa6f-8b9f421807f9.jpg?1562257056"}, "mana_cost": "{X}{G}{G}", "cmc": 2.0, "type_line": "Sorcery", "oracle_text": "Borrowing the East Wind deals X damage to each creature with horsemanship and each player.", "colors": ["G"], "color_identity": ["G"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "2676ff2e-9d86-4b5b-b935-e84e41b0755e", "set": "ptk", "set_name": "Portal Three Kingdoms", "set_type": "starter", "set_uri": "https://api.scryfall.com/sets/2676ff2e-9d86-4b5b-b935-e84e41b0755e", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aptk&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ptk?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/96ba9014-d750-4924-aa6f-8b9f421807f9/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A79334732-8db1-4393-9fed-3cde3c572c5c&unique=prints", "collector_number": "133", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Gao Yan", "artist_ids": ["0d253eb0-2579-4201-bde4-f0a9f0963827"], "illustration_id": "ed8252f9-0b45-4b9e-a9f8-da212eccdbce", "border_color": "white", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 19288, "prices": {"usd": "119.00", "usd_foil": null, "usd_etched": null, "eur": "19.90", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=10549", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Borrowing+the+East+Wind&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Borrowing+the+East+Wind&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Borrowing+the+East+Wind"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/431?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Borrowing+the+East+Wind&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Borrowing+the+East+Wind&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "765ec2c9-8ffe-488a-bebe-e5dd63825a8c", "oracle_id": "a648b9ed-810a-41db-af40-3b5b4658db90", "multiverse_ids": [29856], "mtgo_id": 17554, "mtgo_foil_id": 17555, "tcgplayer_id": 10241, "cardmarket_id": 2207, "name": "Breaking Point", "lang": "en", "released_at": "2002-05-27", "uri": "https://api.scryfall.com/cards/765ec2c9-8ffe-488a-bebe-e5dd63825a8c", "scryfall_uri": "https://scryfall.com/card/jud/81/breaking-point?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/7/6/765ec2c9-8ffe-488a-bebe-e5dd63825a8c.jpg?1562630501", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/6/765ec2c9-8ffe-488a-bebe-e5dd63825a8c.jpg?1562630501", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/7/6/765ec2c9-8ffe-488a-bebe-e5dd63825a8c.jpg?1562630501", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/7/6/765ec2c9-8ffe-488a-bebe-e5dd63825a8c.png?1562630501", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/6/765ec2c9-8ffe-488a-bebe-e5dd63825a8c.jpg?1562630501", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/7/6/765ec2c9-8ffe-488a-bebe-e5dd63825a8c.jpg?1562630501"}, "mana_cost": "{1}{R}{R}", "cmc": 3.0, "type_line": "Sorcery", "oracle_text": "Any player may have Breaking Point deal 6 damage to them. If no one does, destroy all creatures. Creatures destroyed this way can't be regenerated.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "cd82de1a-36fd-4618-bfe8-b45532a582d9", "set": "jud", "set_name": "Judgment", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/cd82de1a-36fd-4618-bfe8-b45532a582d9", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ajud&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/jud?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/765ec2c9-8ffe-488a-bebe-e5dd63825a8c/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aa648b9ed-810a-41db-af40-3b5b4658db90&unique=prints", "collector_number": "81", "digital": false, "rarity": "rare", "flavor_text": "\"Enough!\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Matthew D. Wilson", "artist_ids": ["4fbafd13-0cf9-42a1-870d-7f8ea276f140"], "illustration_id": "cad69814-f050-4e70-9db1-266265bee7d8", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 11790, "penny_rank": 11165, "prices": {"usd": "0.58", "usd_foil": "6.37", "usd_etched": null, "eur": "0.59", "eur_foil": "4.99", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=29856", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Breaking+Point&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Breaking+Point&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Breaking+Point"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/10241?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Breaking+Point&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/17554?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "480bb7e3-df03-454d-ada0-592ef8a4a6f0", "oracle_id": "1954994f-17bf-4ea5-af72-60f9bfcb6569", "multiverse_ids": [23090], "mtgo_id": 14613, "mtgo_foil_id": 14614, "tcgplayer_id": 7445, "cardmarket_id": 3440, "name": "Breath of Darigaaz", "lang": "en", "released_at": "2000-10-02", "uri": "https://api.scryfall.com/cards/480bb7e3-df03-454d-ada0-592ef8a4a6f0", "scryfall_uri": "https://scryfall.com/card/inv/138/breath-of-darigaaz?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/4/8/480bb7e3-df03-454d-ada0-592ef8a4a6f0.jpg?1562909692", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/8/480bb7e3-df03-454d-ada0-592ef8a4a6f0.jpg?1562909692", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/4/8/480bb7e3-df03-454d-ada0-592ef8a4a6f0.jpg?1562909692", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/4/8/480bb7e3-df03-454d-ada0-592ef8a4a6f0.png?1562909692", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/8/480bb7e3-df03-454d-ada0-592ef8a4a6f0.jpg?1562909692", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/4/8/480bb7e3-df03-454d-ada0-592ef8a4a6f0.jpg?1562909692"}, "mana_cost": "{1}{R}", "cmc": 2.0, "type_line": "Sorcery", "oracle_text": "Kicker {2} (You may pay an additional {2} as you cast this spell.)\nBreath of Darigaaz deals 1 damage to each creature without flying and each player. If this spell was kicked, it deals 4 damage to each creature without flying and each player instead.", "colors": ["R"], "color_identity": ["R"], "keywords": ["Kicker"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "b9ae5e02-7726-47ca-b5e4-5ec402b41cd1", "set": "inv", "set_name": "Invasion", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/b9ae5e02-7726-47ca-b5e4-5ec402b41cd1", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ainv&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/inv?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/480bb7e3-df03-454d-ada0-592ef8a4a6f0/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A1954994f-17bf-4ea5-af72-60f9bfcb6569&unique=prints", "collector_number": "138", "digital": false, "rarity": "uncommon", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Greg Hildebrandt & Tim Hildebrandt", "artist_ids": ["020f967b-0d2f-4166-aabe-901dba8bc7ec", "caa7228c-f74c-4145-91fb-1af8d623c353"], "illustration_id": "bb2f58ae-11d6-4888-8d0d-7951f0e092a5", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 6602, "penny_rank": 2255, "prices": {"usd": "0.34", "usd_foil": "16.61", "usd_etched": null, "eur": "0.24", "eur_foil": "3.99", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=23090", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Breath+of+Darigaaz&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Breath+of+Darigaaz&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Breath+of+Darigaaz"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/7445?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Breath+of+Darigaaz&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/14613?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "7a12e4d0-8471-46ac-85e4-a2ea5be8bf8f", "oracle_id": "81e6ade9-a38f-4655-b09c-9ca41a11face", "multiverse_ids": [161291], "mtgo_id": 32248, "mtgo_foil_id": 32249, "tcgplayer_id": 31707, "cardmarket_id": 20914, "name": "Breath of Malfegor", "lang": "en", "released_at": "2009-04-30", "uri": "https://api.scryfall.com/cards/7a12e4d0-8471-46ac-85e4-a2ea5be8bf8f", "scryfall_uri": "https://scryfall.com/card/arb/35/breath-of-malfegor?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/7/a/7a12e4d0-8471-46ac-85e4-a2ea5be8bf8f.jpg?1562642287", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/a/7a12e4d0-8471-46ac-85e4-a2ea5be8bf8f.jpg?1562642287", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/7/a/7a12e4d0-8471-46ac-85e4-a2ea5be8bf8f.jpg?1562642287", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/7/a/7a12e4d0-8471-46ac-85e4-a2ea5be8bf8f.png?1562642287", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/a/7a12e4d0-8471-46ac-85e4-a2ea5be8bf8f.jpg?1562642287", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/7/a/7a12e4d0-8471-46ac-85e4-a2ea5be8bf8f.jpg?1562642287"}, "mana_cost": "{3}{B}{R}", "cmc": 5.0, "type_line": "Instant", "oracle_text": "Breath of Malfegor deals 5 damage to each opponent.", "colors": ["B", "R"], "color_identity": ["B", "R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "db486ec5-141d-4781-9ee5-5456926934c1", "set": "arb", "set_name": "Alara Reborn", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/db486ec5-141d-4781-9ee5-5456926934c1", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aarb&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/arb?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/7a12e4d0-8471-46ac-85e4-a2ea5be8bf8f/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A81e6ade9-a38f-4655-b09c-9ca41a11face&unique=prints", "collector_number": "35", "digital": false, "rarity": "common", "flavor_text": "The blood of the demons quickened as their master rose over the battlefield. The blood of the angels also quickened: here was the chance to finally end the war started millennia ago.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Vance Kovacs", "artist_ids": ["b5516011-4722-4fc8-8542-102cecc52b71"], "illustration_id": "721358b1-3271-4bcc-809b-5b32cb6507d0", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 9812, "penny_rank": 13751, "prices": {"usd": "0.17", "usd_foil": "0.43", "usd_etched": null, "eur": "0.08", "eur_foil": "0.20", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=161291", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Breath+of+Malfegor&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Breath+of+Malfegor&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Breath+of+Malfegor"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/31707?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Breath+of+Malfegor&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/32248?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "5b3eb5c5-7ff8-4557-afe7-056ea5f09a49", "oracle_id": "81e6ade9-a38f-4655-b09c-9ca41a11face", "multiverse_ids": [], "tcgplayer_id": 71420, "cardmarket_id": 259780, "name": "Breath of Malfegor", "lang": "en", "released_at": "2012-01-01", "uri": "https://api.scryfall.com/cards/5b3eb5c5-7ff8-4557-afe7-056ea5f09a49", "scryfall_uri": "https://scryfall.com/card/pidw/8/breath-of-malfegor?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/5/b/5b3eb5c5-7ff8-4557-afe7-056ea5f09a49.jpg?1561757216", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/b/5b3eb5c5-7ff8-4557-afe7-056ea5f09a49.jpg?1561757216", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/5/b/5b3eb5c5-7ff8-4557-afe7-056ea5f09a49.jpg?1561757216", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/5/b/5b3eb5c5-7ff8-4557-afe7-056ea5f09a49.png?1561757216", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/b/5b3eb5c5-7ff8-4557-afe7-056ea5f09a49.jpg?1561757216", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/5/b/5b3eb5c5-7ff8-4557-afe7-056ea5f09a49.jpg?1561757216"}, "mana_cost": "{3}{B}{R}", "cmc": 5.0, "type_line": "Instant", "oracle_text": "Breath of Malfegor deals 5 damage to each opponent.", "colors": ["B", "R"], "color_identity": ["B", "R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": true, "reprint": true, "variation": false, "set_id": "33438cf7-6acb-48f0-8581-215d1e4995e5", "set": "pidw", "set_name": "IDW Comics 2012", "set_type": "promo", "set_uri": "https://api.scryfall.com/sets/33438cf7-6acb-48f0-8581-215d1e4995e5", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Apidw&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/pidw?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/5b3eb5c5-7ff8-4557-afe7-056ea5f09a49/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A81e6ade9-a38f-4655-b09c-9ca41a11face&unique=prints", "collector_number": "8", "digital": false, "rarity": "rare", "flavor_text": "The draconic demon loomed over Dack, and he suddenly sensed he wasn't the only Planeswalker that Malfegor had encountered.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Alex Horley-Orlandelli", "artist_ids": ["1631a2ad-bf03-4ab9-b86c-60da982d58a1"], "illustration_id": "c07eaf3a-dc63-4586-87ec-00fb37baae6b", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "promo_types": ["mediainsert"], "edhrec_rank": 9812, "penny_rank": 13751, "prices": {"usd": "2.61", "usd_foil": null, "usd_etched": null, "eur": "3.00", "eur_foil": null, "tix": null}, "related_uris": {"tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Breath+of+Malfegor&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Breath+of+Malfegor&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Breath+of+Malfegor"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/71420?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Breath+of+Malfegor&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Breath+of+Malfegor&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "6960f2da-6b84-4680-8ab2-f0567a5d1b0a", "oracle_id": "d12e374d-ed09-4d5e-bb7a-6c7d9ea80a1e", "multiverse_ids": [233253], "mtgo_id": 42580, "mtgo_foil_id": 42581, "tcgplayer_id": 55915, "cardmarket_id": 250601, "name": "Brimstone Volley", "lang": "en", "released_at": "2011-09-30", "uri": "https://api.scryfall.com/cards/6960f2da-6b84-4680-8ab2-f0567a5d1b0a", "scryfall_uri": "https://scryfall.com/card/isd/132/brimstone-volley?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/6/9/6960f2da-6b84-4680-8ab2-f0567a5d1b0a.jpg?1562831550", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/9/6960f2da-6b84-4680-8ab2-f0567a5d1b0a.jpg?1562831550", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/6/9/6960f2da-6b84-4680-8ab2-f0567a5d1b0a.jpg?1562831550", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/6/9/6960f2da-6b84-4680-8ab2-f0567a5d1b0a.png?1562831550", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/9/6960f2da-6b84-4680-8ab2-f0567a5d1b0a.jpg?1562831550", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/6/9/6960f2da-6b84-4680-8ab2-f0567a5d1b0a.jpg?1562831550"}, "mana_cost": "{2}{R}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Brimstone Volley deals 3 damage to any target.\nMorbid \u2014 Brimstone Volley deals 5 damage instead if a creature died this turn.", "colors": ["R"], "color_identity": ["R"], "keywords": ["Morbid"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "d1026945-2969-42b9-be53-f941405a58cb", "set": "isd", "set_name": "Innistrad", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/d1026945-2969-42b9-be53-f941405a58cb", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aisd&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/isd?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/6960f2da-6b84-4680-8ab2-f0567a5d1b0a/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ad12e374d-ed09-4d5e-bb7a-6c7d9ea80a1e&unique=prints", "collector_number": "132", "digital": false, "rarity": "common", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Eytan Zana", "artist_ids": ["0d8d6726-4051-445a-8374-a919aad98f38"], "illustration_id": "1efbc712-95ce-41e6-b7b2-2305b1774816", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 11881, "penny_rank": 2184, "prices": {"usd": "0.06", "usd_foil": "0.51", "usd_etched": null, "eur": "0.10", "eur_foil": "0.45", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=233253", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Brimstone+Volley&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Brimstone+Volley&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Brimstone+Volley"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/55915?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Brimstone+Volley&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/42580?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "77c0eb52-8e09-471a-b00c-aaa1ae244afc", "oracle_id": "11cd0c42-4148-4d82-9172-b1a1967fe319", "multiverse_ids": [368528], "mtgo_id": 48163, "mtgo_foil_id": 48164, "tcgplayer_id": 67858, "cardmarket_id": 260832, "name": "Browbeat", "lang": "en", "released_at": "2013-03-15", "uri": "https://api.scryfall.com/cards/77c0eb52-8e09-471a-b00c-aaa1ae244afc", "scryfall_uri": "https://scryfall.com/card/ddk/66/browbeat?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/7/7/77c0eb52-8e09-471a-b00c-aaa1ae244afc.jpg?1592714628", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/7/77c0eb52-8e09-471a-b00c-aaa1ae244afc.jpg?1592714628", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/7/7/77c0eb52-8e09-471a-b00c-aaa1ae244afc.jpg?1592714628", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/7/7/77c0eb52-8e09-471a-b00c-aaa1ae244afc.png?1592714628", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/7/77c0eb52-8e09-471a-b00c-aaa1ae244afc.jpg?1592714628", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/7/7/77c0eb52-8e09-471a-b00c-aaa1ae244afc.jpg?1592714628"}, "mana_cost": "{2}{R}", "cmc": 3.0, "type_line": "Sorcery", "oracle_text": "Any player may have Browbeat deal 5 damage to them. If no one does, target player draws three cards.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "529a5259-8a88-4baf-86a0-cd88098c3ce7", "set": "ddk", "set_name": "Duel Decks: Sorin vs. Tibalt", "set_type": "duel_deck", "set_uri": "https://api.scryfall.com/sets/529a5259-8a88-4baf-86a0-cd88098c3ce7", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Addk&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ddk?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/77c0eb52-8e09-471a-b00c-aaa1ae244afc/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A11cd0c42-4148-4d82-9172-b1a1967fe319&unique=prints", "collector_number": "66", "digital": false, "rarity": "uncommon", "flavor_text": "\"Pained defiance or shameful surrender\u2014every reaction is a pleasant surprise.\"\n\u2014Tibalt", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Chris Rahn", "artist_ids": ["7742047e-0f80-4c0f-a530-d07460165e86"], "illustration_id": "1ecca2f2-6d37-4fda-a368-2e2444d98f5c", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "edhrec_rank": 5142, "penny_rank": 1780, "prices": {"usd": "0.33", "usd_foil": null, "usd_etched": null, "eur": "1.00", "eur_foil": null, "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=368528", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Browbeat&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Browbeat&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Browbeat"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/67858?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Browbeat&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/48163?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "74f20068-f225-4055-be7a-5c4a18e33b0b", "oracle_id": "11cd0c42-4148-4d82-9172-b1a1967fe319", "multiverse_ids": [36038], "mtgo_id": 17530, "mtgo_foil_id": 17531, "tcgplayer_id": 10242, "cardmarket_id": 2208, "name": "Browbeat", "lang": "en", "released_at": "2002-05-27", "uri": "https://api.scryfall.com/cards/74f20068-f225-4055-be7a-5c4a18e33b0b", "scryfall_uri": "https://scryfall.com/card/jud/82/browbeat?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/7/4/74f20068-f225-4055-be7a-5c4a18e33b0b.jpg?1562630478", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/4/74f20068-f225-4055-be7a-5c4a18e33b0b.jpg?1562630478", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/7/4/74f20068-f225-4055-be7a-5c4a18e33b0b.jpg?1562630478", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/7/4/74f20068-f225-4055-be7a-5c4a18e33b0b.png?1562630478", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/4/74f20068-f225-4055-be7a-5c4a18e33b0b.jpg?1562630478", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/7/4/74f20068-f225-4055-be7a-5c4a18e33b0b.jpg?1562630478"}, "mana_cost": "{2}{R}", "cmc": 3.0, "type_line": "Sorcery", "oracle_text": "Any player may have Browbeat deal 5 damage to them. If no one does, target player draws three cards.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "cd82de1a-36fd-4618-bfe8-b45532a582d9", "set": "jud", "set_name": "Judgment", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/cd82de1a-36fd-4618-bfe8-b45532a582d9", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ajud&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/jud?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/74f20068-f225-4055-be7a-5c4a18e33b0b/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A11cd0c42-4148-4d82-9172-b1a1967fe319&unique=prints", "collector_number": "82", "digital": false, "rarity": "uncommon", "flavor_text": "\"Even the threat of power has power.\"\n\u2014Jeska, warrior adept", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Mark Tedin", "artist_ids": ["9ee9a9cc-c09e-486f-918b-69f80cbc4188"], "illustration_id": "5af1d34d-293c-4f22-ae14-18081e87e876", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 5142, "penny_rank": 1780, "prices": {"usd": "0.42", "usd_foil": "4.00", "usd_etched": null, "eur": "0.35", "eur_foil": "2.90", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=36038", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Browbeat&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Browbeat&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Browbeat"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/10242?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Browbeat&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/17530?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "1170ee2d-ab25-4c7f-a910-cc01471a2cab", "oracle_id": "11cd0c42-4148-4d82-9172-b1a1967fe319", "multiverse_ids": [], "tcgplayer_id": 38074, "cardmarket_id": 21977, "name": "Browbeat", "lang": "en", "released_at": "2009-01-01", "uri": "https://api.scryfall.com/cards/1170ee2d-ab25-4c7f-a910-cc01471a2cab", "scryfall_uri": "https://scryfall.com/card/f09/10/browbeat?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/1/1/1170ee2d-ab25-4c7f-a910-cc01471a2cab.jpg?1562639679", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/1/1170ee2d-ab25-4c7f-a910-cc01471a2cab.jpg?1562639679", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/1/1/1170ee2d-ab25-4c7f-a910-cc01471a2cab.jpg?1562639679", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/1/1/1170ee2d-ab25-4c7f-a910-cc01471a2cab.png?1562639679", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/1/1170ee2d-ab25-4c7f-a910-cc01471a2cab.jpg?1562639679", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/1/1/1170ee2d-ab25-4c7f-a910-cc01471a2cab.jpg?1562639679"}, "mana_cost": "{2}{R}", "cmc": 3.0, "type_line": "Sorcery", "oracle_text": "Any player may have Browbeat deal 5 damage to them. If no one does, target player draws three cards.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper"], "reserved": false, "foil": true, "nonfoil": false, "finishes": ["foil"], "oversized": false, "promo": true, "reprint": true, "variation": false, "set_id": "a540bc4f-d0c3-4758-9636-547ec9df7fc9", "set": "f09", "set_name": "Friday Night Magic 2009", "set_type": "promo", "set_uri": "https://api.scryfall.com/sets/a540bc4f-d0c3-4758-9636-547ec9df7fc9", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Af09&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/f09?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/1170ee2d-ab25-4c7f-a910-cc01471a2cab/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A11cd0c42-4148-4d82-9172-b1a1967fe319&unique=prints", "collector_number": "10", "digital": false, "rarity": "rare", "watermark": "fnm", "flavor_text": "\"Even the threat of power has power.\"\n\u2014Jeska, warrior adept", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Kieran Yanner", "artist_ids": ["aa7e89ed-d294-4633-9057-ce04dacfcfa4"], "illustration_id": "71d5f0b2-67a9-4467-a3a9-44446fdf54b6", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "promo_types": ["tourney", "fnm"], "edhrec_rank": 5142, "penny_rank": 1780, "prices": {"usd": null, "usd_foil": "2.19", "usd_etched": null, "eur": null, "eur_foil": "0.50", "tix": null}, "related_uris": {"tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Browbeat&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Browbeat&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Browbeat"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/38074?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Browbeat&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Browbeat&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "f8bdc165-4c6f-47e6-8bda-877c0be3613b", "oracle_id": "8a1ccbdb-3d89-42fb-a731-6db4241acf24", "multiverse_ids": [409899], "mtgo_id": 60200, "mtgo_foil_id": 60201, "tcgplayer_id": 115981, "cardmarket_id": 289066, "name": "Burn from Within", "lang": "en", "released_at": "2016-04-08", "uri": "https://api.scryfall.com/cards/f8bdc165-4c6f-47e6-8bda-877c0be3613b", "scryfall_uri": "https://scryfall.com/card/soi/148/burn-from-within?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/f/8/f8bdc165-4c6f-47e6-8bda-877c0be3613b.jpg?1576384673", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/8/f8bdc165-4c6f-47e6-8bda-877c0be3613b.jpg?1576384673", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/f/8/f8bdc165-4c6f-47e6-8bda-877c0be3613b.jpg?1576384673", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/f/8/f8bdc165-4c6f-47e6-8bda-877c0be3613b.png?1576384673", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/8/f8bdc165-4c6f-47e6-8bda-877c0be3613b.jpg?1576384673", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/f/8/f8bdc165-4c6f-47e6-8bda-877c0be3613b.jpg?1576384673"}, "mana_cost": "{X}{R}", "cmc": 1.0, "type_line": "Sorcery", "oracle_text": "Burn from Within deals X damage to any target. If a creature is dealt damage this way, it loses indestructible until end of turn. If that creature would die this turn, exile it instead.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "5e914d7e-c1e9-446c-a33d-d093c02b2743", "set": "soi", "set_name": "Shadows over Innistrad", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/5e914d7e-c1e9-446c-a33d-d093c02b2743", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Asoi&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/soi?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/f8bdc165-4c6f-47e6-8bda-877c0be3613b/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A8a1ccbdb-3d89-42fb-a731-6db4241acf24&unique=prints", "collector_number": "148", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "James Ryman", "artist_ids": ["3852bbc9-11c0-4fe3-8722-a06ad7e2bcc5"], "illustration_id": "2d9e1451-73cc-4d0f-ab21-7766d377b028", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 7557, "penny_rank": 9472, "prices": {"usd": "0.16", "usd_foil": "0.45", "usd_etched": null, "eur": "0.21", "eur_foil": "0.22", "tix": "0.01"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=409899", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Burn+from+Within&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Burn+from+Within&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Burn+from+Within"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/115981?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Burn+from+Within&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/60200?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "dee12f01-581e-4a3c-a8b5-41bef2516781", "oracle_id": "b3b58231-d532-423b-91d0-78d9c0f66f0f", "multiverse_ids": [10555], "tcgplayer_id": 434, "cardmarket_id": 11296, "name": "Burning Fields", "lang": "en", "released_at": "1999-07-06", "uri": "https://api.scryfall.com/cards/dee12f01-581e-4a3c-a8b5-41bef2516781", "scryfall_uri": "https://scryfall.com/card/ptk/103/burning-fields?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/d/e/dee12f01-581e-4a3c-a8b5-41bef2516781.jpg?1562257986", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/e/dee12f01-581e-4a3c-a8b5-41bef2516781.jpg?1562257986", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/d/e/dee12f01-581e-4a3c-a8b5-41bef2516781.jpg?1562257986", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/d/e/dee12f01-581e-4a3c-a8b5-41bef2516781.png?1562257986", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/e/dee12f01-581e-4a3c-a8b5-41bef2516781.jpg?1562257986", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/d/e/dee12f01-581e-4a3c-a8b5-41bef2516781.jpg?1562257986"}, "mana_cost": "{4}{R}", "cmc": 5.0, "type_line": "Sorcery", "oracle_text": "Burning Fields deals 5 damage to target opponent or planeswalker.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "2676ff2e-9d86-4b5b-b935-e84e41b0755e", "set": "ptk", "set_name": "Portal Three Kingdoms", "set_type": "starter", "set_uri": "https://api.scryfall.com/sets/2676ff2e-9d86-4b5b-b935-e84e41b0755e", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aptk&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ptk?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/dee12f01-581e-4a3c-a8b5-41bef2516781/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ab3b58231-d532-423b-91d0-78d9c0f66f0f&unique=prints", "collector_number": "103", "digital": false, "rarity": "common", "flavor_text": "\"In raiding and plundering, be like fire, in immovability like a mountain.\"\n\u2014Sun Tzu, *Art of War* (trans. Giles)", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Yang Hong", "artist_ids": ["4a9bbac6-55de-440a-bb65-58aedc3380ed"], "illustration_id": "fe7526d9-9cf8-4c5d-972d-2b98cc3a708e", "border_color": "white", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 22545, "prices": {"usd": "6.42", "usd_foil": null, "usd_etched": null, "eur": "0.99", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=10555", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Burning+Fields&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Burning+Fields&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Burning+Fields"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/434?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Burning+Fields&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Burning+Fields&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "ff4d4e6b-564d-46da-8e32-09ed08c8ddc5", "oracle_id": "b5aae42b-3fde-4f10-b85e-882c528badef", "multiverse_ids": [534908], "mtgo_id": 93230, "arena_id": 78479, "tcgplayer_id": 248258, "cardmarket_id": 575053, "name": "Burn the Accursed", "lang": "en", "released_at": "2021-09-24", "uri": "https://api.scryfall.com/cards/ff4d4e6b-564d-46da-8e32-09ed08c8ddc5", "scryfall_uri": "https://scryfall.com/card/mid/132/burn-the-accursed?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/f/f/ff4d4e6b-564d-46da-8e32-09ed08c8ddc5.jpg?1634350484", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/f/ff4d4e6b-564d-46da-8e32-09ed08c8ddc5.jpg?1634350484", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/f/f/ff4d4e6b-564d-46da-8e32-09ed08c8ddc5.jpg?1634350484", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/f/f/ff4d4e6b-564d-46da-8e32-09ed08c8ddc5.png?1634350484", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/f/ff4d4e6b-564d-46da-8e32-09ed08c8ddc5.jpg?1634350484", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/f/f/ff4d4e6b-564d-46da-8e32-09ed08c8ddc5.jpg?1634350484"}, "mana_cost": "{4}{R}", "cmc": 5.0, "type_line": "Instant", "oracle_text": "Burn the Accursed deals 5 damage to target creature and 2 damage to that creature's controller. If that creature would die this turn, exile it instead.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "44b8eb8f-fa23-401a-98b5-1fbb9871128e", "set": "mid", "set_name": "Innistrad: Midnight Hunt", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/44b8eb8f-fa23-401a-98b5-1fbb9871128e", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Amid&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/mid?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/ff4d4e6b-564d-46da-8e32-09ed08c8ddc5/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ab5aae42b-3fde-4f10-b85e-882c528badef&unique=prints", "collector_number": "132", "digital": false, "rarity": "common", "flavor_text": "Nothing remained but a few drifting embers and the smell of smoldering hair.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "David Auden Nash", "artist_ids": ["092827e0-03f2-4e73-852e-d95eba0fef20"], "illustration_id": "7072d726-cc63-435e-9430-ec1da444dcc1", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 14053, "prices": {"usd": "0.01", "usd_foil": "0.02", "usd_etched": null, "eur": "0.03", "eur_foil": "0.11", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=534908", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Burn+the+Accursed&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Burn+the+Accursed&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Burn+the+Accursed"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/248258?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Burn+the+Accursed&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/93230?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "b5641730-428d-4484-866e-ec1ac669537f", "oracle_id": "9503c801-eb6f-4f34-9062-c56105509b7b", "multiverse_ids": [213771], "mtgo_id": 39395, "mtgo_foil_id": 39396, "tcgplayer_id": 39171, "cardmarket_id": 245416, "name": "Burn the Impure", "lang": "en", "released_at": "2011-02-04", "uri": "https://api.scryfall.com/cards/b5641730-428d-4484-866e-ec1ac669537f", "scryfall_uri": "https://scryfall.com/card/mbs/59/burn-the-impure?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/b/5/b5641730-428d-4484-866e-ec1ac669537f.jpg?1562614054", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/5/b5641730-428d-4484-866e-ec1ac669537f.jpg?1562614054", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/b/5/b5641730-428d-4484-866e-ec1ac669537f.jpg?1562614054", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/b/5/b5641730-428d-4484-866e-ec1ac669537f.png?1562614054", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/5/b5641730-428d-4484-866e-ec1ac669537f.jpg?1562614054", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/b/5/b5641730-428d-4484-866e-ec1ac669537f.jpg?1562614054"}, "mana_cost": "{1}{R}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Burn the Impure deals 3 damage to target creature. If that creature has infect, Burn the Impure deals 3 damage to that creature's controller.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "f46c57e3-9301-4006-a6ca-06f3f65961fb", "set": "mbs", "set_name": "Mirrodin Besieged", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/f46c57e3-9301-4006-a6ca-06f3f65961fb", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ambs&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/mbs?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/b5641730-428d-4484-866e-ec1ac669537f/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A9503c801-eb6f-4f34-9062-c56105509b7b&unique=prints", "collector_number": "59", "digital": false, "rarity": "common", "watermark": "mirran", "flavor_text": "Flame doesn't kneel to Phyrexia.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Nic Klein", "artist_ids": ["b948d330-3fbd-44cc-b140-02bcc5d46f79"], "illustration_id": "47b366f2-226e-469a-845b-2c2ed1f8d867", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 20569, "penny_rank": 8672, "prices": {"usd": "0.03", "usd_foil": "0.07", "usd_etched": null, "eur": "0.05", "eur_foil": "0.09", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=213771", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Burn+the+Impure&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Burn+the+Impure&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Burn+the+Impure"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/39171?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Burn+the+Impure&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/39395?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "7f01f9a0-f1d0-4241-a270-df4ed673d1fd", "oracle_id": "566b4dcc-b7d7-4443-b2d0-954f1fc33a11", "multiverse_ids": [158688], "mtgo_id": 29785, "mtgo_foil_id": 29786, "tcgplayer_id": 18585, "cardmarket_id": 19100, "name": "Burn Trail", "lang": "en", "released_at": "2008-05-02", "uri": "https://api.scryfall.com/cards/7f01f9a0-f1d0-4241-a270-df4ed673d1fd", "scryfall_uri": "https://scryfall.com/card/shm/86/burn-trail?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/7/f/7f01f9a0-f1d0-4241-a270-df4ed673d1fd.jpg?1562832261", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/f/7f01f9a0-f1d0-4241-a270-df4ed673d1fd.jpg?1562832261", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/7/f/7f01f9a0-f1d0-4241-a270-df4ed673d1fd.jpg?1562832261", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/7/f/7f01f9a0-f1d0-4241-a270-df4ed673d1fd.png?1562832261", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/f/7f01f9a0-f1d0-4241-a270-df4ed673d1fd.jpg?1562832261", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/7/f/7f01f9a0-f1d0-4241-a270-df4ed673d1fd.jpg?1562832261"}, "mana_cost": "{3}{R}", "cmc": 4.0, "type_line": "Sorcery", "oracle_text": "Burn Trail deals 3 damage to any target.\nConspire (As you cast this spell, you may tap two untapped creatures you control that share a color with it. When you do, copy it and you may choose a new target for the copy.)", "colors": ["R"], "color_identity": ["R"], "keywords": ["Conspire"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "c18c0ba1-2081-4808-9b2e-549bc3a666f3", "set": "shm", "set_name": "Shadowmoor", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/c18c0ba1-2081-4808-9b2e-549bc3a666f3", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ashm&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/shm?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/7f01f9a0-f1d0-4241-a270-df4ed673d1fd/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A566b4dcc-b7d7-4443-b2d0-954f1fc33a11&unique=prints", "collector_number": "86", "digital": false, "rarity": "common", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Nils Hamm", "artist_ids": ["c540d1fc-1500-457f-93cf-d6069ee66546"], "illustration_id": "ad3f3970-10d7-44f5-9d8b-30b33cb3e1ce", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 20893, "prices": {"usd": "0.12", "usd_foil": "0.32", "usd_etched": null, "eur": "0.02", "eur_foil": "0.25", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=158688", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Burn+Trail&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Burn+Trail&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Burn+Trail"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/18585?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Burn+Trail&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/29785?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "2dc16614-5cf8-444d-a5ae-cac25018af68", "oracle_id": "ac2086fe-98ee-4280-9c7c-c5c2d6548a8b", "multiverse_ids": [177558], "mtgo_id": 34408, "mtgo_foil_id": 34409, "tcgplayer_id": 33270, "cardmarket_id": 21919, "name": "Burst Lightning", "lang": "en", "released_at": "2009-10-02", "uri": "https://api.scryfall.com/cards/2dc16614-5cf8-444d-a5ae-cac25018af68", "scryfall_uri": "https://scryfall.com/card/zen/119/burst-lightning?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/2/d/2dc16614-5cf8-444d-a5ae-cac25018af68.jpg?1562610949", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/d/2dc16614-5cf8-444d-a5ae-cac25018af68.jpg?1562610949", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/2/d/2dc16614-5cf8-444d-a5ae-cac25018af68.jpg?1562610949", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/2/d/2dc16614-5cf8-444d-a5ae-cac25018af68.png?1562610949", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/d/2dc16614-5cf8-444d-a5ae-cac25018af68.jpg?1562610949", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/2/d/2dc16614-5cf8-444d-a5ae-cac25018af68.jpg?1562610949"}, "mana_cost": "{R}", "cmc": 1.0, "type_line": "Instant", "oracle_text": "Kicker {4} (You may pay an additional {4} as you cast this spell.)\nBurst Lightning deals 2 damage to any target. If this spell was kicked, it deals 4 damage instead.", "colors": ["R"], "color_identity": ["R"], "keywords": ["Kicker"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "eb16a2bd-a218-4e4e-8339-4aa1afc0c8d2", "set": "zen", "set_name": "Zendikar", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/eb16a2bd-a218-4e4e-8339-4aa1afc0c8d2", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Azen&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/zen?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/2dc16614-5cf8-444d-a5ae-cac25018af68/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aac2086fe-98ee-4280-9c7c-c5c2d6548a8b&unique=prints", "collector_number": "119", "digital": false, "rarity": "common", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Vance Kovacs", "artist_ids": ["b5516011-4722-4fc8-8542-102cecc52b71"], "illustration_id": "a83bc7b1-e450-4e82-85c9-d8223a789bd6", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 9612, "penny_rank": 18, "prices": {"usd": "0.17", "usd_foil": "4.04", "usd_etched": null, "eur": "0.27", "eur_foil": "0.84", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=177558", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Burst+Lightning&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Burst+Lightning&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Burst+Lightning"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/33270?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Burst+Lightning&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/34408?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "db539e3e-cefe-4f2c-bc8e-df049426895f", "oracle_id": "ac2086fe-98ee-4280-9c7c-c5c2d6548a8b", "multiverse_ids": [], "tcgplayer_id": 38297, "cardmarket_id": 242020, "name": "Burst Lightning", "lang": "en", "released_at": "2010-01-01", "uri": "https://api.scryfall.com/cards/db539e3e-cefe-4f2c-bc8e-df049426895f", "scryfall_uri": "https://scryfall.com/card/p10/8/burst-lightning?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/d/b/db539e3e-cefe-4f2c-bc8e-df049426895f.jpg?1561758208", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/b/db539e3e-cefe-4f2c-bc8e-df049426895f.jpg?1561758208", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/d/b/db539e3e-cefe-4f2c-bc8e-df049426895f.jpg?1561758208", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/d/b/db539e3e-cefe-4f2c-bc8e-df049426895f.png?1561758208", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/b/db539e3e-cefe-4f2c-bc8e-df049426895f.jpg?1561758208", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/d/b/db539e3e-cefe-4f2c-bc8e-df049426895f.jpg?1561758208"}, "mana_cost": "{R}", "cmc": 1.0, "type_line": "Instant", "oracle_text": "Kicker {4} (You may pay an additional {4} as you cast this spell.)\nBurst Lightning deals 2 damage to any target. If this spell was kicked, it deals 4 damage instead.", "colors": ["R"], "color_identity": ["R"], "keywords": ["Kicker"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": true, "reprint": true, "variation": false, "set_id": "d871e33b-7086-4549-89d6-fedd4422161f", "set": "p10", "set_name": "Magic Player Rewards 2010", "set_type": "promo", "set_uri": "https://api.scryfall.com/sets/d871e33b-7086-4549-89d6-fedd4422161f", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ap10&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/p10?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/db539e3e-cefe-4f2c-bc8e-df049426895f/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aac2086fe-98ee-4280-9c7c-c5c2d6548a8b&unique=prints", "collector_number": "8", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Jung Park", "artist_ids": ["269392ac-4c06-4650-98e2-d49a5a7f2371"], "illustration_id": "9a5eb971-9eee-4eb6-b410-194de49818dc", "border_color": "black", "frame": "2003", "full_art": true, "textless": true, "booster": false, "story_spotlight": false, "promo_types": ["playerrewards"], "edhrec_rank": 9612, "penny_rank": 18, "prices": {"usd": "1.29", "usd_foil": null, "usd_etched": null, "eur": "1.09", "eur_foil": null, "tix": null}, "related_uris": {"tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Burst+Lightning&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Burst+Lightning&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Burst+Lightning"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/38297?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Burst+Lightning&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Burst+Lightning&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "a54a371e-fb82-41f1-892c-975f932b668e", "oracle_id": "ab48147c-0bd7-4875-8e11-0e26185453dd", "multiverse_ids": [107258], "mtgo_id": 24093, "mtgo_foil_id": 24094, "tcgplayer_id": 13838, "cardmarket_id": 12974, "name": "Cackling Flames", "lang": "en", "released_at": "2006-05-05", "uri": "https://api.scryfall.com/cards/a54a371e-fb82-41f1-892c-975f932b668e", "scryfall_uri": "https://scryfall.com/card/dis/59/cackling-flames?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/a/5/a54a371e-fb82-41f1-892c-975f932b668e.jpg?1593273099", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/5/a54a371e-fb82-41f1-892c-975f932b668e.jpg?1593273099", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/a/5/a54a371e-fb82-41f1-892c-975f932b668e.jpg?1593273099", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/a/5/a54a371e-fb82-41f1-892c-975f932b668e.png?1593273099", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/5/a54a371e-fb82-41f1-892c-975f932b668e.jpg?1593273099", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/a/5/a54a371e-fb82-41f1-892c-975f932b668e.jpg?1593273099"}, "mana_cost": "{3}{R}", "cmc": 4.0, "type_line": "Instant", "oracle_text": "Cackling Flames deals 3 damage to any target.\nHellbent \u2014 Cackling Flames deals 5 damage instead if you have no cards in hand.", "colors": ["R"], "color_identity": ["R"], "keywords": ["Hellbent"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "fdebeda1-b95f-4343-8a94-d125821e6b5c", "set": "dis", "set_name": "Dissension", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/fdebeda1-b95f-4343-8a94-d125821e6b5c", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Adis&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/dis?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/a54a371e-fb82-41f1-892c-975f932b668e/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aab48147c-0bd7-4875-8e11-0e26185453dd&unique=prints", "collector_number": "59", "digital": false, "rarity": "common", "watermark": "rakdos", "flavor_text": "\"I like a little entertainment with my dinner.\"\n\u2014Rakdos", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Shishizaru", "artist_ids": ["f993a598-f922-49c8-bb03-6beb3b780b0d"], "illustration_id": "54a7fca3-474e-4bb4-a6ad-1a6822a03613", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 20570, "penny_rank": 11678, "prices": {"usd": "0.06", "usd_foil": null, "usd_etched": null, "eur": "0.25", "eur_foil": "0.20", "tix": "0.04"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=107258", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Cackling+Flames&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Cackling+Flames&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Cackling+Flames"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/13838?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Cackling+Flames&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/24093?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "ead68c0a-eed1-4a9c-a790-56f8a79b444c", "oracle_id": "ca54e14c-67ee-4de2-bc0f-19a5f9461d37", "multiverse_ids": [555304], "mtgo_id": 98425, "arena_id": 80254, "tcgplayer_id": 268786, "cardmarket_id": 651842, "name": "Call In a Professional", "lang": "en", "released_at": "2022-04-29", "uri": "https://api.scryfall.com/cards/ead68c0a-eed1-4a9c-a790-56f8a79b444c", "scryfall_uri": "https://scryfall.com/card/snc/103/call-in-a-professional?utm_source=api", "layout": "normal", "highres_image": false, "image_status": "lowres", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/e/a/ead68c0a-eed1-4a9c-a790-56f8a79b444c.jpg?1649936108", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/a/ead68c0a-eed1-4a9c-a790-56f8a79b444c.jpg?1649936108", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/e/a/ead68c0a-eed1-4a9c-a790-56f8a79b444c.jpg?1649936108", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/e/a/ead68c0a-eed1-4a9c-a790-56f8a79b444c.png?1649936108", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/a/ead68c0a-eed1-4a9c-a790-56f8a79b444c.jpg?1649936108", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/e/a/ead68c0a-eed1-4a9c-a790-56f8a79b444c.jpg?1649936108"}, "mana_cost": "{2}{R}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Players can't gain life this turn. Damage can't be prevented this turn. Call In a Professional deals 3 damage to any target. (Shield counters don't prevent this damage as they're removed.)", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo", "arena"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "df837242-8c15-42e4-b049-c933a02dc501", "set": "snc", "set_name": "Streets of New Capenna", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/df837242-8c15-42e4-b049-c933a02dc501", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Asnc&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/snc?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/ead68c0a-eed1-4a9c-a790-56f8a79b444c/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aca54e14c-67ee-4de2-bc0f-19a5f9461d37&unique=prints", "collector_number": "103", "digital": false, "rarity": "uncommon", "flavor_text": "For the next week, Park Heights smelled of burnt oil paint and brimstone.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Filip Burburan", "artist_ids": ["66082c3b-a623-4d34-be51-2475214b85d3"], "illustration_id": "3e2465a4-323a-47d5-a0df-760e72a8953c", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 13830, "penny_rank": 3592, "preview": {"source": "JS2mtg", "source_uri": "https://twitter.com/JS2mtg/status/1513417811187875840", "previewed_at": "2022-04-11"}, "prices": {"usd": "0.01", "usd_foil": "0.03", "usd_etched": null, "eur": "0.13", "eur_foil": "0.02", "tix": "0.01"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=555304", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Call+In+a+Professional&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Call+In+a+Professional&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Call+In+a+Professional"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/268786?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Call+In+a+Professional&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/98425?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "2e19d68e-7554-4627-a316-beb1f75fa494", "oracle_id": "a151c45f-0b9e-41af-90b3-fafa12e3bbce", "multiverse_ids": [23134], "mtgo_id": 14361, "mtgo_foil_id": 14362, "tcgplayer_id": 7447, "cardmarket_id": 3442, "name": "Canopy Surge", "lang": "en", "released_at": "2000-10-02", "uri": "https://api.scryfall.com/cards/2e19d68e-7554-4627-a316-beb1f75fa494", "scryfall_uri": "https://scryfall.com/card/inv/184/canopy-surge?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/2/e/2e19d68e-7554-4627-a316-beb1f75fa494.jpg?1562904391", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/e/2e19d68e-7554-4627-a316-beb1f75fa494.jpg?1562904391", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/2/e/2e19d68e-7554-4627-a316-beb1f75fa494.jpg?1562904391", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/2/e/2e19d68e-7554-4627-a316-beb1f75fa494.png?1562904391", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/e/2e19d68e-7554-4627-a316-beb1f75fa494.jpg?1562904391", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/2/e/2e19d68e-7554-4627-a316-beb1f75fa494.jpg?1562904391"}, "mana_cost": "{1}{G}", "cmc": 2.0, "type_line": "Sorcery", "oracle_text": "Kicker {2} (You may pay an additional {2} as you cast this spell.)\nCanopy Surge deals 1 damage to each creature with flying and each player. If this spell was kicked, it deals 4 damage to each creature with flying and each player instead.", "colors": ["G"], "color_identity": ["G"], "keywords": ["Kicker"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "b9ae5e02-7726-47ca-b5e4-5ec402b41cd1", "set": "inv", "set_name": "Invasion", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/b9ae5e02-7726-47ca-b5e4-5ec402b41cd1", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ainv&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/inv?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/2e19d68e-7554-4627-a316-beb1f75fa494/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aa151c45f-0b9e-41af-90b3-fafa12e3bbce&unique=prints", "collector_number": "184", "digital": false, "rarity": "uncommon", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Matt Cavotta", "artist_ids": ["2e6a0611-9411-4ba4-98e3-c0e18cbf9f83"], "illustration_id": "aaa69b02-f0f8-4b90-b9cc-87ade15312e5", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 12745, "prices": {"usd": "0.20", "usd_foil": "1.93", "usd_etched": null, "eur": "0.20", "eur_foil": "0.50", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=23134", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Canopy+Surge&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Canopy+Surge&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Canopy+Surge"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/7447?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Canopy+Surge&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/14361?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "d4b4767b-edd1-4e36-b363-52114a9afe5e", "oracle_id": "a32795a2-a965-4a85-9944-fd9eed464e65", "multiverse_ids": [413664], "mtgo_id": 60937, "mtgo_foil_id": 60938, "tcgplayer_id": 118713, "cardmarket_id": 290408, "name": "Carbonize", "lang": "en", "released_at": "2016-06-10", "uri": "https://api.scryfall.com/cards/d4b4767b-edd1-4e36-b363-52114a9afe5e", "scryfall_uri": "https://scryfall.com/card/ema/122/carbonize?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/d/4/d4b4767b-edd1-4e36-b363-52114a9afe5e.jpg?1580014480", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/4/d4b4767b-edd1-4e36-b363-52114a9afe5e.jpg?1580014480", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/d/4/d4b4767b-edd1-4e36-b363-52114a9afe5e.jpg?1580014480", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/d/4/d4b4767b-edd1-4e36-b363-52114a9afe5e.png?1580014480", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/4/d4b4767b-edd1-4e36-b363-52114a9afe5e.jpg?1580014480", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/d/4/d4b4767b-edd1-4e36-b363-52114a9afe5e.jpg?1580014480"}, "mana_cost": "{2}{R}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Carbonize deals 3 damage to any target. If it's a creature, it can't be regenerated this turn, and if it would die this turn, exile it instead.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "1f29f022-3ace-4c96-85e8-1f7b63aadf7e", "set": "ema", "set_name": "Eternal Masters", "set_type": "masters", "set_uri": "https://api.scryfall.com/sets/1f29f022-3ace-4c96-85e8-1f7b63aadf7e", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aema&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ema?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/d4b4767b-edd1-4e36-b363-52114a9afe5e/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aa32795a2-a965-4a85-9944-fd9eed464e65&unique=prints", "collector_number": "122", "digital": false, "rarity": "common", "flavor_text": "\"There's no coming back from that.\"\n\u2014Jaya Ballard", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Lake Hurwitz", "artist_ids": ["3677c64b-55e6-4a0d-a952-bdbb05531220"], "illustration_id": "fdb368dc-efdc-41cd-aec7-83904cb1891b", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 18148, "penny_rank": 12567, "prices": {"usd": "0.02", "usd_foil": "0.03", "usd_etched": null, "eur": "0.02", "eur_foil": "0.05", "tix": "0.04"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=413664", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Carbonize&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Carbonize&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Carbonize"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/118713?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Carbonize&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/60937?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "6f565fa1-a1a0-4dd0-b7f4-df65a807d156", "oracle_id": "a32795a2-a965-4a85-9944-fd9eed464e65", "multiverse_ids": [47226], "mtgo_id": 18922, "mtgo_foil_id": 18923, "tcgplayer_id": 10908, "cardmarket_id": 1076, "name": "Carbonize", "lang": "en", "released_at": "2003-05-26", "uri": "https://api.scryfall.com/cards/6f565fa1-a1a0-4dd0-b7f4-df65a807d156", "scryfall_uri": "https://scryfall.com/card/scg/83/carbonize?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/6/f/6f565fa1-a1a0-4dd0-b7f4-df65a807d156.jpg?1562530228", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/f/6f565fa1-a1a0-4dd0-b7f4-df65a807d156.jpg?1562530228", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/6/f/6f565fa1-a1a0-4dd0-b7f4-df65a807d156.jpg?1562530228", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/6/f/6f565fa1-a1a0-4dd0-b7f4-df65a807d156.png?1562530228", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/f/6f565fa1-a1a0-4dd0-b7f4-df65a807d156.jpg?1562530228", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/6/f/6f565fa1-a1a0-4dd0-b7f4-df65a807d156.jpg?1562530228"}, "mana_cost": "{2}{R}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Carbonize deals 3 damage to any target. If it's a creature, it can't be regenerated this turn, and if it would die this turn, exile it instead.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "5133c3a1-1412-4ce6-a1f0-73b695966ded", "set": "scg", "set_name": "Scourge", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/5133c3a1-1412-4ce6-a1f0-73b695966ded", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ascg&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/scg?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/6f565fa1-a1a0-4dd0-b7f4-df65a807d156/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aa32795a2-a965-4a85-9944-fd9eed464e65&unique=prints", "collector_number": "83", "digital": false, "rarity": "uncommon", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Alex Horley-Orlandelli", "artist_ids": ["1631a2ad-bf03-4ab9-b86c-60da982d58a1"], "illustration_id": "771f9672-c661-487e-b8bb-badf6ec37fd1", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 18148, "penny_rank": 12567, "prices": {"usd": "0.09", "usd_foil": "0.07", "usd_etched": null, "eur": "0.03", "eur_foil": "0.99", "tix": "0.05"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=47226", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Carbonize&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Carbonize&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Carbonize"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/10908?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Carbonize&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/18922?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "440d9d26-f304-467d-af79-914cc65f082e", "oracle_id": "7d937265-02f5-4f2c-9fef-c5930e13b3be", "multiverse_ids": [19725], "mtgo_id": 13617, "mtgo_foil_id": 13618, "tcgplayer_id": 6461, "cardmarket_id": 11553, "name": "Cave-In", "lang": "en", "released_at": "1999-10-04", "uri": "https://api.scryfall.com/cards/440d9d26-f304-467d-af79-914cc65f082e", "scryfall_uri": "https://scryfall.com/card/mmq/180/cave-in?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/4/4/440d9d26-f304-467d-af79-914cc65f082e.jpg?1562380418", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/4/440d9d26-f304-467d-af79-914cc65f082e.jpg?1562380418", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/4/4/440d9d26-f304-467d-af79-914cc65f082e.jpg?1562380418", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/4/4/440d9d26-f304-467d-af79-914cc65f082e.png?1562380418", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/4/440d9d26-f304-467d-af79-914cc65f082e.jpg?1562380418", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/4/4/440d9d26-f304-467d-af79-914cc65f082e.jpg?1562380418"}, "mana_cost": "{3}{R}{R}", "cmc": 5.0, "type_line": "Sorcery", "oracle_text": "You may exile a red card from your hand rather than pay this spell's mana cost.\nCave-In deals 2 damage to each creature and each player.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "385e11a4-492b-4d07-b4a6-a1409ef829b8", "set": "mmq", "set_name": "Mercadian Masques", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/385e11a4-492b-4d07-b4a6-a1409ef829b8", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ammq&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/mmq?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/440d9d26-f304-467d-af79-914cc65f082e/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A7d937265-02f5-4f2c-9fef-c5930e13b3be&unique=prints", "collector_number": "180", "digital": false, "rarity": "rare", "flavor_text": "One fleet was gone; others were poised.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Mark Tedin", "artist_ids": ["9ee9a9cc-c09e-486f-918b-69f80cbc4188"], "illustration_id": "74c8c4bb-b53a-45db-9958-027195a5ef5d", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 12173, "prices": {"usd": "0.83", "usd_foil": "38.99", "usd_etched": null, "eur": "0.50", "eur_foil": "1.05", "tix": "1.66"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=19725", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Cave-In&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Cave-In&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Cave-In"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/6461?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Cave-In&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/13617?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "b5883762-ca0a-4932-8d2a-41a45796a5f8", "oracle_id": "8785f42f-87b9-4a0a-89ce-ea423649ba9c", "multiverse_ids": [1563], "tcgplayer_id": 3824, "cardmarket_id": 7109, "name": "Chain Lightning", "lang": "en", "released_at": "1994-06-01", "uri": "https://api.scryfall.com/cards/b5883762-ca0a-4932-8d2a-41a45796a5f8", "scryfall_uri": "https://scryfall.com/card/leg/137/chain-lightning?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/b/5/b5883762-ca0a-4932-8d2a-41a45796a5f8.jpg?1562860651", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/5/b5883762-ca0a-4932-8d2a-41a45796a5f8.jpg?1562860651", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/b/5/b5883762-ca0a-4932-8d2a-41a45796a5f8.jpg?1562860651", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/b/5/b5883762-ca0a-4932-8d2a-41a45796a5f8.png?1562860651", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/5/b5883762-ca0a-4932-8d2a-41a45796a5f8.jpg?1562860651", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/b/5/b5883762-ca0a-4932-8d2a-41a45796a5f8.jpg?1562860651"}, "mana_cost": "{R}", "cmc": 1.0, "type_line": "Sorcery", "oracle_text": "Chain Lightning deals 3 damage to any target. Then that player or that permanent's controller may pay {R}{R}. If the player does, they may copy this spell and may choose a new target for that copy.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "78c50b4b-b220-455b-a2d5-cee458fa56f3", "set": "leg", "set_name": "Legends", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/78c50b4b-b220-455b-a2d5-cee458fa56f3", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aleg&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/leg?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/b5883762-ca0a-4932-8d2a-41a45796a5f8/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A8785f42f-87b9-4a0a-89ce-ea423649ba9c&unique=prints", "collector_number": "137", "digital": false, "rarity": "common", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Sandra Everingham", "artist_ids": ["8a8ac2c8-84c9-4274-9960-a19a97f0bde5"], "illustration_id": "9818faaf-c517-443b-989b-7b80438c11fb", "border_color": "black", "frame": "1993", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 6449, "penny_rank": 21, "prices": {"usd": "11.81", "usd_foil": null, "usd_etched": null, "eur": "22.99", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=1563", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Chain+Lightning&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Chain+Lightning&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Chain+Lightning"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/3824?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Chain+Lightning&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Chain+Lightning&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "bfb7fe8e-e348-4bf9-aa71-65f0675147e4", "oracle_id": "8785f42f-87b9-4a0a-89ce-ea423649ba9c", "multiverse_ids": [], "tcgplayer_id": 251971, "cardmarket_id": 651048, "name": "Chain Lightning", "lang": "en", "released_at": "2021-10-22", "uri": "https://api.scryfall.com/cards/bfb7fe8e-e348-4bf9-aa71-65f0675147e4", "scryfall_uri": "https://scryfall.com/card/sld/370/chain-lightning?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/b/f/bfb7fe8e-e348-4bf9-aa71-65f0675147e4.jpg?1636769610", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/f/bfb7fe8e-e348-4bf9-aa71-65f0675147e4.jpg?1636769610", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/b/f/bfb7fe8e-e348-4bf9-aa71-65f0675147e4.jpg?1636769610", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/b/f/bfb7fe8e-e348-4bf9-aa71-65f0675147e4.png?1636769610", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/f/bfb7fe8e-e348-4bf9-aa71-65f0675147e4.jpg?1636769610", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/b/f/bfb7fe8e-e348-4bf9-aa71-65f0675147e4.jpg?1636769610"}, "mana_cost": "{R}", "cmc": 1.0, "type_line": "Sorcery", "oracle_text": "Chain Lightning deals 3 damage to any target. Then that player or that permanent's controller may pay {R}{R}. If the player does, they may copy this spell and may choose a new target for that copy.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "4d92a8a7-ccb0-437d-abdc-9d70fc5ed672", "set": "sld", "set_name": "Secret Lair Drop", "set_type": "box", "set_uri": "https://api.scryfall.com/sets/4d92a8a7-ccb0-437d-abdc-9d70fc5ed672", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Asld&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/sld?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/bfb7fe8e-e348-4bf9-aa71-65f0675147e4/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A8785f42f-87b9-4a0a-89ce-ea423649ba9c&unique=prints", "collector_number": "370", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Ayako Ishiguro", "artist_ids": ["fd5f7154-aa8d-4a27-a05c-9c03af2d3046"], "illustration_id": "58b34471-9bb3-472f-bf7f-792e668f80f5", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "edhrec_rank": 6449, "penny_rank": 21, "prices": {"usd": "9.42", "usd_foil": "26.13", "usd_etched": null, "eur": "23.75", "eur_foil": "63.50", "tix": null}, "related_uris": {"tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Chain+Lightning&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Chain+Lightning&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Chain+Lightning"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/251971?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Chain+Lightning&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Chain+Lightning&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "14bd3d19-033e-41a7-8710-02b73ba0b4e4", "oracle_id": "8785f42f-87b9-4a0a-89ce-ea423649ba9c", "multiverse_ids": [429885], "mtgo_id": 64406, "mtgo_foil_id": 64407, "tcgplayer_id": 129538, "cardmarket_id": 296604, "name": "Chain Lightning", "lang": "en", "released_at": "2017-04-28", "uri": "https://api.scryfall.com/cards/14bd3d19-033e-41a7-8710-02b73ba0b4e4", "scryfall_uri": "https://scryfall.com/card/mp2/26/chain-lightning?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/1/4/14bd3d19-033e-41a7-8710-02b73ba0b4e4.jpg?1562899148", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/4/14bd3d19-033e-41a7-8710-02b73ba0b4e4.jpg?1562899148", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/1/4/14bd3d19-033e-41a7-8710-02b73ba0b4e4.jpg?1562899148", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/1/4/14bd3d19-033e-41a7-8710-02b73ba0b4e4.png?1562899148", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/4/14bd3d19-033e-41a7-8710-02b73ba0b4e4.jpg?1562899148", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/1/4/14bd3d19-033e-41a7-8710-02b73ba0b4e4.jpg?1562899148"}, "mana_cost": "{R}", "cmc": 1.0, "type_line": "Sorcery", "oracle_text": "Chain Lightning deals 3 damage to any target. Then that player or that permanent's controller may pay {R}{R}. If the player does, they may copy this spell and may choose a new target for that copy.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": false, "finishes": ["foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "c26402e7-838e-48db-a4b2-7abfc305998a", "set": "mp2", "set_name": "Amonkhet Invocations", "set_type": "masterpiece", "set_uri": "https://api.scryfall.com/sets/c26402e7-838e-48db-a4b2-7abfc305998a", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Amp2&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/mp2?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/14bd3d19-033e-41a7-8710-02b73ba0b4e4/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A8785f42f-87b9-4a0a-89ce-ea423649ba9c&unique=prints", "collector_number": "26", "digital": false, "rarity": "mythic", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Igor Kieryluk", "artist_ids": ["9c3e9d17-509f-485c-9360-46d897ce716b"], "illustration_id": "4010a42c-2e3a-4000-99a4-d7664a5c7567", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 6449, "penny_rank": 21, "prices": {"usd": null, "usd_foil": "34.26", "usd_etched": null, "eur": null, "eur_foil": "39.00", "tix": "0.90"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=429885", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Chain+Lightning&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Chain+Lightning&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Chain+Lightning"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/129538?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Chain+Lightning&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/64406?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "9ca05db2-ad92-4f4a-992d-b7f08f4f9c26", "oracle_id": "8785f42f-87b9-4a0a-89ce-ea423649ba9c", "multiverse_ids": [217977], "mtgo_id": 39266, "mtgo_foil_id": 39267, "tcgplayer_id": 38666, "cardmarket_id": 244219, "name": "Chain Lightning", "lang": "en", "released_at": "2010-11-19", "uri": "https://api.scryfall.com/cards/9ca05db2-ad92-4f4a-992d-b7f08f4f9c26", "scryfall_uri": "https://scryfall.com/card/pd2/16/chain-lightning?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/9/c/9ca05db2-ad92-4f4a-992d-b7f08f4f9c26.jpg?1562928035", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/c/9ca05db2-ad92-4f4a-992d-b7f08f4f9c26.jpg?1562928035", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/9/c/9ca05db2-ad92-4f4a-992d-b7f08f4f9c26.jpg?1562928035", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/9/c/9ca05db2-ad92-4f4a-992d-b7f08f4f9c26.png?1562928035", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/c/9ca05db2-ad92-4f4a-992d-b7f08f4f9c26.jpg?1562928035", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/9/c/9ca05db2-ad92-4f4a-992d-b7f08f4f9c26.jpg?1562928035"}, "mana_cost": "{R}", "cmc": 1.0, "type_line": "Sorcery", "oracle_text": "Chain Lightning deals 3 damage to any target. Then that player or that permanent's controller may pay {R}{R}. If the player does, they may copy this spell and may choose a new target for that copy.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": false, "finishes": ["foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "e0d91aba-be11-4ddd-96a4-4753e708458a", "set": "pd2", "set_name": "Premium Deck Series: Fire and Lightning", "set_type": "premium_deck", "set_uri": "https://api.scryfall.com/sets/e0d91aba-be11-4ddd-96a4-4753e708458a", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Apd2&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/pd2?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/9ca05db2-ad92-4f4a-992d-b7f08f4f9c26/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A8785f42f-87b9-4a0a-89ce-ea423649ba9c&unique=prints", "collector_number": "16", "digital": false, "rarity": "common", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Christopher Moeller", "artist_ids": ["21e10012-06ae-44f2-b38d-3824dd2e73d4"], "illustration_id": "3e297899-ab77-4da1-be4d-3ce4d8df62c8", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "edhrec_rank": 6449, "penny_rank": 21, "prices": {"usd": null, "usd_foil": "3.40", "usd_etched": null, "eur": null, "eur_foil": "2.48", "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=217977", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Chain+Lightning&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Chain+Lightning&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Chain+Lightning"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/38666?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Chain+Lightning&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/39266?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "f94aa774-9036-4016-8880-4bde2710cb90", "oracle_id": "029d08cb-da4d-4f4e-b667-62712af63260", "multiverse_ids": [12449], "mtgo_id": 18069, "mtgo_foil_id": 18070, "tcgplayer_id": 10351, "cardmarket_id": 1824, "name": "Chain of Plasma", "lang": "en", "released_at": "2002-10-07", "uri": "https://api.scryfall.com/cards/f94aa774-9036-4016-8880-4bde2710cb90", "scryfall_uri": "https://scryfall.com/card/ons/193/chain-of-plasma?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/f/9/f94aa774-9036-4016-8880-4bde2710cb90.jpg?1562954081", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/9/f94aa774-9036-4016-8880-4bde2710cb90.jpg?1562954081", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/f/9/f94aa774-9036-4016-8880-4bde2710cb90.jpg?1562954081", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/f/9/f94aa774-9036-4016-8880-4bde2710cb90.png?1562954081", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/9/f94aa774-9036-4016-8880-4bde2710cb90.jpg?1562954081", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/f/9/f94aa774-9036-4016-8880-4bde2710cb90.jpg?1562954081"}, "mana_cost": "{1}{R}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Chain of Plasma deals 3 damage to any target. Then that player or that permanent's controller may discard a card. If the player does, they may copy this spell and may choose a new target for that copy.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "914a6c6d-cb3b-45e8-a2db-9978a2339faf", "set": "ons", "set_name": "Onslaught", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/914a6c6d-cb3b-45e8-a2db-9978a2339faf", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aons&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ons?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/f94aa774-9036-4016-8880-4bde2710cb90/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A029d08cb-da4d-4f4e-b667-62712af63260&unique=prints", "collector_number": "193", "digital": false, "rarity": "uncommon", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Gary Ruddell", "artist_ids": ["086111c7-93f0-4bab-b339-6fe1c00d693c"], "illustration_id": "44206554-ca71-47af-b30b-030b251d1fc0", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 14784, "penny_rank": 1434, "prices": {"usd": "0.26", "usd_foil": "8.97", "usd_etched": null, "eur": "0.15", "eur_foil": "3.02", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=12449", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Chain+of+Plasma&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Chain+of+Plasma&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Chain+of+Plasma"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/10351?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Chain+of+Plasma&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/18069?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "e761acf6-6618-44cc-8f65-1d7ad7e520fe", "oracle_id": "eb16f188-fe12-4a13-9947-d43cd6ce270c", "multiverse_ids": [], "tcgplayer_id": 79346, "cardmarket_id": 263000, "name": "Chandra's Fury", "lang": "en", "released_at": "2013-03-22", "uri": "https://api.scryfall.com/cards/e761acf6-6618-44cc-8f65-1d7ad7e520fe", "scryfall_uri": "https://scryfall.com/card/purl/5/chandras-fury?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/e/7/e761acf6-6618-44cc-8f65-1d7ad7e520fe.jpg?1561758344", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/7/e761acf6-6618-44cc-8f65-1d7ad7e520fe.jpg?1561758344", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/e/7/e761acf6-6618-44cc-8f65-1d7ad7e520fe.jpg?1561758344", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/e/7/e761acf6-6618-44cc-8f65-1d7ad7e520fe.png?1561758344", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/7/e761acf6-6618-44cc-8f65-1d7ad7e520fe.jpg?1561758344", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/e/7/e761acf6-6618-44cc-8f65-1d7ad7e520fe.jpg?1561758344"}, "mana_cost": "{4}{R}", "cmc": 5.0, "type_line": "Instant", "oracle_text": "Chandra's Fury deals 4 damage to target player or planeswalker and 1 damage to each creature that player or that planeswalker's controller controls.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": true, "nonfoil": false, "finishes": ["foil"], "oversized": false, "promo": true, "reprint": true, "variation": false, "set_id": "a9fbcd3c-290f-4fa1-b227-dbab037c0c91", "set": "purl", "set_name": "URL/Convention Promos", "set_type": "promo", "set_uri": "https://api.scryfall.com/sets/a9fbcd3c-290f-4fa1-b227-dbab037c0c91", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Apurl&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/purl?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/e761acf6-6618-44cc-8f65-1d7ad7e520fe/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aeb16f188-fe12-4a13-9947-d43cd6ce270c&unique=prints", "collector_number": "5", "digital": false, "rarity": "rare", "watermark": "wotc", "flavor_text": "www.MagicTheGathering.com", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Volkan Ba\u01f5a", "artist_ids": ["93bec3c0-0260-4d31-8064-5d01efb4153f"], "illustration_id": "158eab18-f4cf-4946-b5ab-8d6400848aba", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "promo_types": ["convention"], "edhrec_rank": 12206, "penny_rank": 8060, "prices": {"usd": null, "usd_foil": "1.55", "usd_etched": null, "eur": null, "eur_foil": "1.30", "tix": null}, "related_uris": {"tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Chandra%27s+Fury&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Chandra%27s+Fury&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Chandra%27s+Fury"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/79346?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Chandra%27s+Fury&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Chandra%27s+Fury&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "f1e849c3-f357-4e81-a580-be5056bed51b", "oracle_id": "894a344e-a8a7-4ddc-833d-eea41f1918d7", "multiverse_ids": [445854], "mtgo_id": 67459, "arena_id": 67656, "tcgplayer_id": 164218, "cardmarket_id": 320883, "name": "Chandra's Outburst", "lang": "en", "released_at": "2018-04-27", "uri": "https://api.scryfall.com/cards/f1e849c3-f357-4e81-a580-be5056bed51b", "scryfall_uri": "https://scryfall.com/card/dom/276/chandras-outburst?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/f/1/f1e849c3-f357-4e81-a580-be5056bed51b.jpg?1562745440", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/1/f1e849c3-f357-4e81-a580-be5056bed51b.jpg?1562745440", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/f/1/f1e849c3-f357-4e81-a580-be5056bed51b.jpg?1562745440", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/f/1/f1e849c3-f357-4e81-a580-be5056bed51b.png?1562745440", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/1/f1e849c3-f357-4e81-a580-be5056bed51b.jpg?1562745440", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/f/1/f1e849c3-f357-4e81-a580-be5056bed51b.jpg?1562745440"}, "mana_cost": "{3}{R}{R}", "cmc": 5.0, "type_line": "Sorcery", "oracle_text": "Chandra's Outburst deals 4 damage to target player or planeswalker.\nSearch your library and/or graveyard for a card named Chandra, Bold Pyromancer, reveal it, and put it into your hand. If you search your library this way, shuffle.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "all_parts": [{"object": "related_card", "id": "ba9d2384-5c3f-4eb1-86b4-26ee13f1c767", "component": "combo_piece", "name": "Chandra, Bold Pyromancer", "type_line": "Legendary Planeswalker \u2014 Chandra", "uri": "https://api.scryfall.com/cards/ba9d2384-5c3f-4eb1-86b4-26ee13f1c767"}, {"object": "related_card", "id": "f1e849c3-f357-4e81-a580-be5056bed51b", "component": "combo_piece", "name": "Chandra's Outburst", "type_line": "Sorcery", "uri": "https://api.scryfall.com/cards/f1e849c3-f357-4e81-a580-be5056bed51b"}], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "be1daba3-51c9-4e7e-9212-36e68addc26c", "set": "dom", "set_name": "Dominaria", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/be1daba3-51c9-4e7e-9212-36e68addc26c", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Adom&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/dom?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/f1e849c3-f357-4e81-a580-be5056bed51b/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A894a344e-a8a7-4ddc-833d-eea41f1918d7&unique=prints", "collector_number": "276", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Yongjae Choi", "artist_ids": ["5ab91c3b-a6da-4751-a56e-81d0f61a67ab"], "illustration_id": "19536617-9f8c-4eee-ad4f-f6e9c3646ed6", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "promo_types": ["planeswalkerdeck"], "edhrec_rank": 12560, "prices": {"usd": "0.16", "usd_foil": null, "usd_etched": null, "eur": "0.03", "eur_foil": null, "tix": "0.79"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=445854", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Chandra%27s+Outburst&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Chandra%27s+Outburst&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Chandra%27s+Outburst"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/164218?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Chandra%27s+Outburst&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/67459?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "3282db18-8564-418e-8c26-62e610b160f2", "oracle_id": "47437865-0032-4f47-b0ab-034cc841bb84", "multiverse_ids": [220513], "tcgplayer_id": 37109, "cardmarket_id": 240551, "name": "Chandra's Outrage", "lang": "en", "released_at": "2010-06-18", "uri": "https://api.scryfall.com/cards/3282db18-8564-418e-8c26-62e610b160f2", "scryfall_uri": "https://scryfall.com/card/arc/32/chandras-outrage?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/3/2/3282db18-8564-418e-8c26-62e610b160f2.jpg?1562905547", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/2/3282db18-8564-418e-8c26-62e610b160f2.jpg?1562905547", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/3/2/3282db18-8564-418e-8c26-62e610b160f2.jpg?1562905547", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/3/2/3282db18-8564-418e-8c26-62e610b160f2.png?1562905547", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/2/3282db18-8564-418e-8c26-62e610b160f2.jpg?1562905547", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/3/2/3282db18-8564-418e-8c26-62e610b160f2.jpg?1562905547"}, "mana_cost": "{2}{R}{R}", "cmc": 4.0, "type_line": "Instant", "oracle_text": "Chandra's Outrage deals 4 damage to target creature and 2 damage to that creature's controller.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "8bc5ec64-18d5-4c81-96a1-8f619d81a019", "set": "arc", "set_name": "Archenemy", "set_type": "archenemy", "set_uri": "https://api.scryfall.com/sets/8bc5ec64-18d5-4c81-96a1-8f619d81a019", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aarc&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/arc?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/3282db18-8564-418e-8c26-62e610b160f2/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A47437865-0032-4f47-b0ab-034cc841bb84&unique=prints", "collector_number": "32", "digital": false, "rarity": "common", "flavor_text": "\"Her mind is an incredible mix of emotion and power. Even if I could grasp it, I couldn't hold it for long.\"\n\u2014Jace Beleren, on Chandra Nalaar", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Christopher Moeller", "artist_ids": ["21e10012-06ae-44f2-b38d-3824dd2e73d4"], "illustration_id": "7fd1f857-5bda-4bf4-8a9e-a4fe538fbb06", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "edhrec_rank": 10820, "penny_rank": 9610, "prices": {"usd": "0.09", "usd_foil": null, "usd_etched": null, "eur": "0.26", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=220513", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Chandra%27s+Outrage&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Chandra%27s+Outrage&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Chandra%27s+Outrage"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/37109?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Chandra%27s+Outrage&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Chandra%27s+Outrage&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "ff3a24af-e995-4d05-ac2c-e9676048675d", "oracle_id": "e57d90ad-2f54-46ca-8237-aa383353a0de", "multiverse_ids": [87942], "mtgo_id": 23212, "mtgo_foil_id": 23213, "tcgplayer_id": 13223, "cardmarket_id": 13326, "name": "Char", "lang": "en", "released_at": "2005-10-07", "uri": "https://api.scryfall.com/cards/ff3a24af-e995-4d05-ac2c-e9676048675d", "scryfall_uri": "https://scryfall.com/card/rav/117/char?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/f/f/ff3a24af-e995-4d05-ac2c-e9676048675d.jpg?1598915384", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/f/ff3a24af-e995-4d05-ac2c-e9676048675d.jpg?1598915384", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/f/f/ff3a24af-e995-4d05-ac2c-e9676048675d.jpg?1598915384", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/f/f/ff3a24af-e995-4d05-ac2c-e9676048675d.png?1598915384", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/f/ff3a24af-e995-4d05-ac2c-e9676048675d.jpg?1598915384", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/f/f/ff3a24af-e995-4d05-ac2c-e9676048675d.jpg?1598915384"}, "mana_cost": "{2}{R}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Char deals 4 damage to any target and 2 damage to you.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "15fccbe8-2825-41ca-9d0a-67aebdf91c4a", "set": "rav", "set_name": "Ravnica: City of Guilds", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/15fccbe8-2825-41ca-9d0a-67aebdf91c4a", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Arav&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/rav?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/ff3a24af-e995-4d05-ac2c-e9676048675d/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ae57d90ad-2f54-46ca-8237-aa383353a0de&unique=prints", "collector_number": "117", "digital": false, "rarity": "rare", "flavor_text": "Izzet mages often acquire their magic reagents from dubious sources, so the potency of their spells is never predictable.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Adam Rex", "artist_ids": ["445bd2fb-4a70-4599-87a4-83cf5979fc56"], "illustration_id": "c621541e-4d85-4d84-a8a6-33417dff9683", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 14324, "penny_rank": 2017, "prices": {"usd": "0.38", "usd_foil": "1.58", "usd_etched": null, "eur": "0.24", "eur_foil": "1.00", "tix": "0.01"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=87942", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Char&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Char&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Char"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/13223?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Char&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/23212?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "3dc5f957-c1e4-452d-a78b-8d772ea0b940", "oracle_id": "e57d90ad-2f54-46ca-8237-aa383353a0de", "multiverse_ids": [], "tcgplayer_id": 38408, "cardmarket_id": 19973, "name": "Char", "lang": "en", "released_at": "2008-04-01", "uri": "https://api.scryfall.com/cards/3dc5f957-c1e4-452d-a78b-8d772ea0b940", "scryfall_uri": "https://scryfall.com/card/p15a/1/char?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/3/d/3dc5f957-c1e4-452d-a78b-8d772ea0b940.jpg?1561756964", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/d/3dc5f957-c1e4-452d-a78b-8d772ea0b940.jpg?1561756964", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/3/d/3dc5f957-c1e4-452d-a78b-8d772ea0b940.jpg?1561756964", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/3/d/3dc5f957-c1e4-452d-a78b-8d772ea0b940.png?1561756964", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/d/3dc5f957-c1e4-452d-a78b-8d772ea0b940.jpg?1561756964", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/3/d/3dc5f957-c1e4-452d-a78b-8d772ea0b940.jpg?1561756964"}, "mana_cost": "{2}{R}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Char deals 4 damage to any target and 2 damage to you.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": true, "nonfoil": false, "finishes": ["foil"], "oversized": false, "promo": true, "reprint": true, "variation": false, "set_id": "09c785bc-370d-4746-b618-c22d767cb34f", "set": "p15a", "set_name": "15th Anniversary Cards", "set_type": "promo", "set_uri": "https://api.scryfall.com/sets/09c785bc-370d-4746-b618-c22d767cb34f", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ap15a&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/p15a?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/3dc5f957-c1e4-452d-a78b-8d772ea0b940/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ae57d90ad-2f54-46ca-8237-aa383353a0de&unique=prints", "collector_number": "1", "digital": false, "rarity": "rare", "watermark": "mtg15", "flavor_text": "If you've never choked on the embers of your own spell, you aren't casting it hard enough.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Dave Dorman", "artist_ids": ["9235458b-ce92-45bd-a430-a72ecd8e6176"], "illustration_id": "2884a5cb-143b-4feb-bc04-7ad154bc1d12", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "edhrec_rank": 14324, "penny_rank": 2017, "prices": {"usd": null, "usd_foil": "2.84", "usd_etched": null, "eur": null, "eur_foil": "3.99", "tix": null}, "related_uris": {"tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Char&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Char&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Char"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/38408?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Char&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Char&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "e41c15fb-01a1-446e-9e88-71e8e95d9bce", "oracle_id": "3bcb7436-f7d9-4bb0-81be-7a3db9d8329f", "multiverse_ids": [3282], "mtgo_id": 6859, "mtgo_foil_id": 6860, "tcgplayer_id": 5007, "cardmarket_id": 8062, "name": "Choking Sands", "lang": "en", "released_at": "1996-10-08", "uri": "https://api.scryfall.com/cards/e41c15fb-01a1-446e-9e88-71e8e95d9bce", "scryfall_uri": "https://scryfall.com/card/mir/113/choking-sands?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/e/4/e41c15fb-01a1-446e-9e88-71e8e95d9bce.jpg?1562722377", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/4/e41c15fb-01a1-446e-9e88-71e8e95d9bce.jpg?1562722377", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/e/4/e41c15fb-01a1-446e-9e88-71e8e95d9bce.jpg?1562722377", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/e/4/e41c15fb-01a1-446e-9e88-71e8e95d9bce.png?1562722377", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/4/e41c15fb-01a1-446e-9e88-71e8e95d9bce.jpg?1562722377", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/e/4/e41c15fb-01a1-446e-9e88-71e8e95d9bce.jpg?1562722377"}, "mana_cost": "{1}{B}{B}", "cmc": 3.0, "type_line": "Sorcery", "oracle_text": "Destroy target non-Swamp land. If that land was nonbasic, Choking Sands deals 2 damage to the land's controller.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "5f06acf3-8123-4a78-b2e7-089b0b775a4a", "set": "mir", "set_name": "Mirage", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/5f06acf3-8123-4a78-b2e7-089b0b775a4a", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Amir&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/mir?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/e41c15fb-01a1-446e-9e88-71e8e95d9bce/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A3bcb7436-f7d9-4bb0-81be-7a3db9d8329f&unique=prints", "collector_number": "113", "digital": false, "rarity": "common", "flavor_text": "\"The people wiped the sand from their eyes and cursed\u2014and left the barren land to the hyenas and vipers.\"\n\u2014Afari, *Tales*", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Roger Raupp", "artist_ids": ["79d6f296-1948-4a24-a2ce-a76e89057f23"], "illustration_id": "605bb78d-f36a-4fa6-98ec-04e084449e3f", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 15784, "penny_rank": 2136, "prices": {"usd": "0.22", "usd_foil": null, "usd_etched": null, "eur": "0.51", "eur_foil": null, "tix": "0.05"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=3282", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Choking+Sands&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Choking+Sands&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Choking+Sands"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/5007?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Choking+Sands&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/6859?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "f044c470-50ce-4a6c-b8ab-665357c3c11e", "oracle_id": "f64ea1a7-0e10-4549-8056-25ebc2ce0175", "multiverse_ids": [3436], "mtgo_id": 6861, "mtgo_foil_id": 6862, "tcgplayer_id": 5008, "cardmarket_id": 8216, "name": "Cinder Cloud", "lang": "en", "released_at": "1996-10-08", "uri": "https://api.scryfall.com/cards/f044c470-50ce-4a6c-b8ab-665357c3c11e", "scryfall_uri": "https://scryfall.com/card/mir/165/cinder-cloud?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/f/0/f044c470-50ce-4a6c-b8ab-665357c3c11e.jpg?1562722408", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/0/f044c470-50ce-4a6c-b8ab-665357c3c11e.jpg?1562722408", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/f/0/f044c470-50ce-4a6c-b8ab-665357c3c11e.jpg?1562722408", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/f/0/f044c470-50ce-4a6c-b8ab-665357c3c11e.png?1562722408", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/0/f044c470-50ce-4a6c-b8ab-665357c3c11e.jpg?1562722408", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/f/0/f044c470-50ce-4a6c-b8ab-665357c3c11e.jpg?1562722408"}, "mana_cost": "{3}{R}{R}", "cmc": 5.0, "type_line": "Instant", "oracle_text": "Destroy target creature. If a white creature dies this way, Cinder Cloud deals damage to that creature's controller equal to the creature's power.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "5f06acf3-8123-4a78-b2e7-089b0b775a4a", "set": "mir", "set_name": "Mirage", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/5f06acf3-8123-4a78-b2e7-089b0b775a4a", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Amir&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/mir?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/f044c470-50ce-4a6c-b8ab-665357c3c11e/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Af64ea1a7-0e10-4549-8056-25ebc2ce0175&unique=prints", "collector_number": "165", "digital": false, "rarity": "uncommon", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Jock", "artist_ids": ["e0ee5fd3-b2a0-4521-a8af-5418d1e6ff78"], "illustration_id": "6de27e24-c024-497f-8dde-f93e9770693e", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 18768, "penny_rank": 4629, "prices": {"usd": "0.17", "usd_foil": null, "usd_etched": null, "eur": "0.49", "eur_foil": null, "tix": "0.09"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=3436", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Cinder+Cloud&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Cinder+Cloud&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Cinder+Cloud"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/5008?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Cinder+Cloud&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/6861?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "9e2d16c1-6226-438f-be1e-eaab3df687e1", "oracle_id": "c7971968-c4ee-4437-92ec-1238bce1935f", "multiverse_ids": [20201], "tcgplayer_id": 273, "cardmarket_id": 14527, "name": "Cinder Storm", "lang": "en", "released_at": "1999-07-01", "uri": "https://api.scryfall.com/cards/9e2d16c1-6226-438f-be1e-eaab3df687e1", "scryfall_uri": "https://scryfall.com/card/s99/93/cinder-storm?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/9/e/9e2d16c1-6226-438f-be1e-eaab3df687e1.jpg?1562875024", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/e/9e2d16c1-6226-438f-be1e-eaab3df687e1.jpg?1562875024", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/9/e/9e2d16c1-6226-438f-be1e-eaab3df687e1.jpg?1562875024", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/9/e/9e2d16c1-6226-438f-be1e-eaab3df687e1.png?1562875024", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/e/9e2d16c1-6226-438f-be1e-eaab3df687e1.jpg?1562875024", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/9/e/9e2d16c1-6226-438f-be1e-eaab3df687e1.jpg?1562875024"}, "mana_cost": "{6}{R}", "cmc": 7.0, "type_line": "Sorcery", "oracle_text": "Cinder Storm deals 7 damage to any target.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "7e345c51-7a88-4c7a-8184-4e1ba493b40d", "set": "s99", "set_name": "Starter 1999", "set_type": "starter", "set_uri": "https://api.scryfall.com/sets/7e345c51-7a88-4c7a-8184-4e1ba493b40d", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3As99&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/s99?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/9e2d16c1-6226-438f-be1e-eaab3df687e1/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ac7971968-c4ee-4437-92ec-1238bce1935f&unique=prints", "collector_number": "93", "digital": false, "rarity": "uncommon", "flavor_text": "When the sky's rain has turned to fire, what will put it out?", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Mark Tedin", "artist_ids": ["9ee9a9cc-c09e-486f-918b-69f80cbc4188"], "illustration_id": "ecdc1105-a91c-423d-9c51-acb7a21f8007", "border_color": "white", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 17301, "penny_rank": 8757, "prices": {"usd": "1.15", "usd_foil": null, "usd_etched": null, "eur": "1.49", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=20201", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Cinder+Storm&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Cinder+Storm&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Cinder+Storm"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/273?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Cinder+Storm&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Cinder+Storm&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "efa05298-9c94-4179-b75a-49ee2ca92920", "oracle_id": "abcf5e77-88fc-4b76-a1e8-907a5b27d612", "multiverse_ids": [366468], "mtgo_id": 47789, "mtgo_foil_id": 47790, "tcgplayer_id": 67357, "cardmarket_id": 259840, "name": "Clan Defiance", "lang": "en", "released_at": "2013-02-01", "uri": "https://api.scryfall.com/cards/efa05298-9c94-4179-b75a-49ee2ca92920", "scryfall_uri": "https://scryfall.com/card/gtc/151/clan-defiance?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/e/f/efa05298-9c94-4179-b75a-49ee2ca92920.jpg?1561851654", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/f/efa05298-9c94-4179-b75a-49ee2ca92920.jpg?1561851654", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/e/f/efa05298-9c94-4179-b75a-49ee2ca92920.jpg?1561851654", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/e/f/efa05298-9c94-4179-b75a-49ee2ca92920.png?1561851654", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/f/efa05298-9c94-4179-b75a-49ee2ca92920.jpg?1561851654", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/e/f/efa05298-9c94-4179-b75a-49ee2ca92920.jpg?1561851654"}, "mana_cost": "{X}{R}{G}", "cmc": 2.0, "type_line": "Sorcery", "oracle_text": "Choose one or more \u2014\n\u2022 Clan Defiance deals X damage to target creature with flying.\n\u2022 Clan Defiance deals X damage to target creature without flying.\n\u2022 Clan Defiance deals X damage to target player or planeswalker.", "colors": ["G", "R"], "color_identity": ["G", "R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "035a05f7-e020-4f50-a141-ed16ba704bd2", "set": "gtc", "set_name": "Gatecrash", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/035a05f7-e020-4f50-a141-ed16ba704bd2", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Agtc&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/gtc?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/efa05298-9c94-4179-b75a-49ee2ca92920/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aabcf5e77-88fc-4b76-a1e8-907a5b27d612&unique=prints", "collector_number": "151", "digital": false, "rarity": "rare", "watermark": "gruul", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Daarken", "artist_ids": ["e607a0d4-fc12-4c01-9e3f-501f5269b9cb"], "illustration_id": "6440666d-534a-49fa-87e8-bec538cdde25", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 7415, "penny_rank": 5929, "prices": {"usd": "0.22", "usd_foil": "0.46", "usd_etched": null, "eur": "0.27", "eur_foil": "0.75", "tix": "0.01"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=366468", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Clan+Defiance&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Clan+Defiance&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Clan+Defiance"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/67357?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Clan+Defiance&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/47789?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "b94cd33f-40b6-4b11-97a4-8676ef27631e", "oracle_id": "4ef6ec4a-bbd2-487f-98c2-c0e78aebb550", "multiverse_ids": [43541], "mtgo_id": 18696, "mtgo_foil_id": 18697, "tcgplayer_id": 10934, "cardmarket_id": 1107, "name": "Claws of Wirewood", "lang": "en", "released_at": "2003-05-26", "uri": "https://api.scryfall.com/cards/b94cd33f-40b6-4b11-97a4-8676ef27631e", "scryfall_uri": "https://scryfall.com/card/scg/114/claws-of-wirewood?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/b/9/b94cd33f-40b6-4b11-97a4-8676ef27631e.jpg?1562533774", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/9/b94cd33f-40b6-4b11-97a4-8676ef27631e.jpg?1562533774", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/b/9/b94cd33f-40b6-4b11-97a4-8676ef27631e.jpg?1562533774", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/b/9/b94cd33f-40b6-4b11-97a4-8676ef27631e.png?1562533774", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/9/b94cd33f-40b6-4b11-97a4-8676ef27631e.jpg?1562533774", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/b/9/b94cd33f-40b6-4b11-97a4-8676ef27631e.jpg?1562533774"}, "mana_cost": "{3}{G}", "cmc": 4.0, "type_line": "Sorcery", "oracle_text": "Claws of Wirewood deals 3 damage to each creature with flying and each player.\nCycling {2} ({2}, Discard this card: Draw a card.)", "colors": ["G"], "color_identity": ["G"], "keywords": ["Cycling"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "5133c3a1-1412-4ce6-a1f0-73b695966ded", "set": "scg", "set_name": "Scourge", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/5133c3a1-1412-4ce6-a1f0-73b695966ded", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ascg&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/scg?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/b94cd33f-40b6-4b11-97a4-8676ef27631e/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A4ef6ec4a-bbd2-487f-98c2-c0e78aebb550&unique=prints", "collector_number": "114", "digital": false, "rarity": "uncommon", "flavor_text": "They say the forest has eyes. They never mention its claws.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Tony Szczudlo", "artist_ids": ["1952c90b-a5a7-4328-9f7c-e11064f59daf"], "illustration_id": "2a151dab-b685-4503-a52e-5e4689a652a4", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 18520, "penny_rank": 8789, "prices": {"usd": "0.13", "usd_foil": "0.68", "usd_etched": null, "eur": "0.04", "eur_foil": "0.60", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=43541", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Claws+of+Wirewood&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Claws+of+Wirewood&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Claws+of+Wirewood"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/10934?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Claws+of+Wirewood&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/18696?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "79928b26-fcac-4c3f-9edd-292769c2e56e", "oracle_id": "4523c22b-363b-4bc6-ba23-b428054abc5d", "multiverse_ids": [447085], "tcgplayer_id": 168331, "cardmarket_id": 359417, "name": "Cleansing Screech", "lang": "en", "released_at": "2018-06-22", "uri": "https://api.scryfall.com/cards/79928b26-fcac-4c3f-9edd-292769c2e56e", "scryfall_uri": "https://scryfall.com/card/gs1/37/cleansing-screech?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/7/9/79928b26-fcac-4c3f-9edd-292769c2e56e.jpg?1562131561", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/9/79928b26-fcac-4c3f-9edd-292769c2e56e.jpg?1562131561", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/7/9/79928b26-fcac-4c3f-9edd-292769c2e56e.jpg?1562131561", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/7/9/79928b26-fcac-4c3f-9edd-292769c2e56e.png?1562131561", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/9/79928b26-fcac-4c3f-9edd-292769c2e56e.jpg?1562131561", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/7/9/79928b26-fcac-4c3f-9edd-292769c2e56e.jpg?1562131561"}, "mana_cost": "{4}{R}", "cmc": 5.0, "type_line": "Sorcery", "oracle_text": "Cleansing Screech deals 4 damage to any target.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "19c285e9-68e0-45e1-b82b-ac6051eb43be", "set": "gs1", "set_name": "Global Series Jiang Yanggu & Mu Yanling", "set_type": "duel_deck", "set_uri": "https://api.scryfall.com/sets/19c285e9-68e0-45e1-b82b-ac6051eb43be", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ags1&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/gs1?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/79928b26-fcac-4c3f-9edd-292769c2e56e/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A4523c22b-363b-4bc6-ba23-b428054abc5d&unique=prints", "collector_number": "37", "digital": false, "rarity": "common", "flavor_text": "\"Crackle\" and \"pop\" are the most wondrous sounds.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Tingting Yeh", "artist_ids": ["39d11b40-5702-41cc-b3da-22c1d75abe79"], "illustration_id": "864d61f2-bbd4-46cd-ab99-183b7296984a", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "edhrec_rank": 22119, "prices": {"usd": "0.06", "usd_foil": null, "usd_etched": null, "eur": "0.02", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=447085", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Cleansing+Screech&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Cleansing+Screech&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Cleansing+Screech"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/168331?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Cleansing+Screech&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Cleansing+Screech&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "fb738362-b0b4-4811-9fbf-5f45c852c822", "oracle_id": "b89dd47e-0f65-41f0-ad23-cefc61e68978", "multiverse_ids": [391811], "mtgo_id": 55386, "mtgo_foil_id": 55387, "tcgplayer_id": 95406, "cardmarket_id": 271687, "name": "Collateral Damage", "lang": "en", "released_at": "2015-01-23", "uri": "https://api.scryfall.com/cards/fb738362-b0b4-4811-9fbf-5f45c852c822", "scryfall_uri": "https://scryfall.com/card/frf/95/collateral-damage?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/f/b/fb738362-b0b4-4811-9fbf-5f45c852c822.jpg?1562831834", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/b/fb738362-b0b4-4811-9fbf-5f45c852c822.jpg?1562831834", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/f/b/fb738362-b0b4-4811-9fbf-5f45c852c822.jpg?1562831834", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/f/b/fb738362-b0b4-4811-9fbf-5f45c852c822.png?1562831834", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/b/fb738362-b0b4-4811-9fbf-5f45c852c822.jpg?1562831834", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/f/b/fb738362-b0b4-4811-9fbf-5f45c852c822.jpg?1562831834"}, "mana_cost": "{R}", "cmc": 1.0, "type_line": "Instant", "oracle_text": "As an additional cost to cast this spell, sacrifice a creature.\nCollateral Damage deals 3 damage to any target.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "7bb5cb2b-081a-4c8c-b7e1-494046e6baa1", "set": "frf", "set_name": "Fate Reforged", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/7bb5cb2b-081a-4c8c-b7e1-494046e6baa1", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Afrf&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/frf?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/fb738362-b0b4-4811-9fbf-5f45c852c822/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ab89dd47e-0f65-41f0-ad23-cefc61e68978&unique=prints", "collector_number": "95", "digital": false, "rarity": "common", "flavor_text": "It is much easier to create fire than to contain it.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Ryan Barger", "artist_ids": ["a4e0102e-bbeb-497c-babc-1c0741fea914"], "illustration_id": "400a4a09-e937-4e34-a448-5ba2585fec2c", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 12064, "penny_rank": 5022, "prices": {"usd": "0.06", "usd_foil": "0.38", "usd_etched": null, "eur": "0.04", "eur_foil": "0.40", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=391811", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Collateral+Damage&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Collateral+Damage&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Collateral+Damage"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/95406?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Collateral+Damage&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/55386?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "8960883f-3813-412b-9a5b-f8cf8d566fac", "oracle_id": "43ddc3e8-936b-4be0-9e64-484bbbd69016", "multiverse_ids": [414420], "mtgo_id": 61424, "mtgo_foil_id": 61425, "tcgplayer_id": 120258, "cardmarket_id": 291057, "name": "Collective Defiance", "lang": "en", "released_at": "2016-07-22", "uri": "https://api.scryfall.com/cards/8960883f-3813-412b-9a5b-f8cf8d566fac", "scryfall_uri": "https://scryfall.com/card/emn/123/collective-defiance?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/8/9/8960883f-3813-412b-9a5b-f8cf8d566fac.jpg?1576384546", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/9/8960883f-3813-412b-9a5b-f8cf8d566fac.jpg?1576384546", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/8/9/8960883f-3813-412b-9a5b-f8cf8d566fac.jpg?1576384546", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/8/9/8960883f-3813-412b-9a5b-f8cf8d566fac.png?1576384546", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/9/8960883f-3813-412b-9a5b-f8cf8d566fac.jpg?1576384546", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/8/9/8960883f-3813-412b-9a5b-f8cf8d566fac.jpg?1576384546"}, "mana_cost": "{1}{R}{R}", "cmc": 3.0, "type_line": "Sorcery", "oracle_text": "Escalate {1} (Pay this cost for each mode chosen beyond the first.)\nChoose one or more \u2014\n\u2022 Target player discards all the cards in their hand, then draws that many cards.\n\u2022 Collective Defiance deals 4 damage to target creature.\n\u2022 Collective Defiance deals 3 damage to target opponent or planeswalker.", "colors": ["R"], "color_identity": ["R"], "keywords": ["Escalate"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "5f0e4093-334f-4439-bbb5-a0affafd0ffc", "set": "emn", "set_name": "Eldritch Moon", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/5f0e4093-334f-4439-bbb5-a0affafd0ffc", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aemn&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/emn?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/8960883f-3813-412b-9a5b-f8cf8d566fac/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A43ddc3e8-936b-4be0-9e64-484bbbd69016&unique=prints", "collector_number": "123", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Kieran Yanner", "artist_ids": ["aa7e89ed-d294-4633-9057-ce04dacfcfa4"], "illustration_id": "32ada496-6fb1-4b1f-89a3-d18ff2317d89", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 4590, "penny_rank": 1712, "prices": {"usd": "2.17", "usd_foil": "5.60", "usd_etched": null, "eur": "1.95", "eur_foil": "6.58", "tix": "0.01"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=414420", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Collective+Defiance&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Collective+Defiance&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Collective+Defiance"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/120258?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Collective+Defiance&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/61424?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "92d59c06-41f7-4009-9157-70ba90cc978b", "oracle_id": "01f29158-2dc9-4b9d-b726-add5d3fd5782", "multiverse_ids": [389465], "mtgo_id": 55133, "mtgo_foil_id": 55134, "tcgplayer_id": 94212, "cardmarket_id": 270518, "name": "Comeuppance", "lang": "en", "released_at": "2014-11-07", "uri": "https://api.scryfall.com/cards/92d59c06-41f7-4009-9157-70ba90cc978b", "scryfall_uri": "https://scryfall.com/card/c14/4/comeuppance?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/9/2/92d59c06-41f7-4009-9157-70ba90cc978b.jpg?1561950558", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/2/92d59c06-41f7-4009-9157-70ba90cc978b.jpg?1561950558", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/9/2/92d59c06-41f7-4009-9157-70ba90cc978b.jpg?1561950558", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/9/2/92d59c06-41f7-4009-9157-70ba90cc978b.png?1561950558", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/2/92d59c06-41f7-4009-9157-70ba90cc978b.jpg?1561950558", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/9/2/92d59c06-41f7-4009-9157-70ba90cc978b.jpg?1561950558"}, "mana_cost": "{3}{W}", "cmc": 4.0, "type_line": "Instant", "oracle_text": "Prevent all damage that would be dealt to you and planeswalkers you control this turn by sources you don't control. If damage from a creature source is prevented this way, Comeuppance deals that much damage to that creature. If damage from a noncreature source is prevented this way, Comeuppance deals that much damage to the source's controller.", "colors": ["W"], "color_identity": ["W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "0980a6e2-eb78-4ad2-8396-cef08fce365e", "set": "c14", "set_name": "Commander 2014", "set_type": "commander", "set_uri": "https://api.scryfall.com/sets/0980a6e2-eb78-4ad2-8396-cef08fce365e", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ac14&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/c14?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/92d59c06-41f7-4009-9157-70ba90cc978b/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A01f29158-2dc9-4b9d-b726-add5d3fd5782&unique=prints", "collector_number": "4", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Marco Nelor", "artist_ids": ["c0f95ec3-c7ca-47d6-be5c-b37dfce37be5"], "illustration_id": "673090f1-9c4a-44b4-90ad-eedfa7609496", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "edhrec_rank": 3841, "prices": {"usd": "11.40", "usd_foil": null, "usd_etched": null, "eur": "10.99", "eur_foil": null, "tix": "3.31"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=389465", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Comeuppance&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Comeuppance&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Comeuppance"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/94212?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Comeuppance&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/55133?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "41b68e85-a381-441d-aa18-491f9e202a10", "oracle_id": "e99958bf-458c-403b-aae2-91d60c055ee2", "multiverse_ids": [213756], "mtgo_id": 39367, "mtgo_foil_id": 39368, "tcgplayer_id": 39110, "cardmarket_id": 245387, "name": "Concussive Bolt", "lang": "en", "released_at": "2011-02-04", "uri": "https://api.scryfall.com/cards/41b68e85-a381-441d-aa18-491f9e202a10", "scryfall_uri": "https://scryfall.com/card/mbs/60/concussive-bolt?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/4/1/41b68e85-a381-441d-aa18-491f9e202a10.jpg?1562610848", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/1/41b68e85-a381-441d-aa18-491f9e202a10.jpg?1562610848", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/4/1/41b68e85-a381-441d-aa18-491f9e202a10.jpg?1562610848", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/4/1/41b68e85-a381-441d-aa18-491f9e202a10.png?1562610848", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/1/41b68e85-a381-441d-aa18-491f9e202a10.jpg?1562610848", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/4/1/41b68e85-a381-441d-aa18-491f9e202a10.jpg?1562610848"}, "mana_cost": "{3}{R}{R}", "cmc": 5.0, "type_line": "Sorcery", "oracle_text": "Concussive Bolt deals 4 damage to target player or planeswalker.\nMetalcraft \u2014 If you control three or more artifacts, creatures controlled by that player or by that planeswalker's controller can't block this turn.", "colors": ["R"], "color_identity": ["R"], "keywords": ["Metalcraft"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "f46c57e3-9301-4006-a6ca-06f3f65961fb", "set": "mbs", "set_name": "Mirrodin Besieged", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/f46c57e3-9301-4006-a6ca-06f3f65961fb", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ambs&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/mbs?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/41b68e85-a381-441d-aa18-491f9e202a10/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ae99958bf-458c-403b-aae2-91d60c055ee2&unique=prints", "collector_number": "60", "digital": false, "rarity": "common", "watermark": "mirran", "flavor_text": "Shock one, awe the rest.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Johann Bodin", "artist_ids": ["d92e2dd9-9ef6-43f6-81f8-df87f9066983"], "illustration_id": "5b391c43-5cc7-4c73-8f07-05965436d50a", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 17303, "penny_rank": 11599, "prices": {"usd": "0.04", "usd_foil": "0.09", "usd_etched": null, "eur": "0.15", "eur_foil": "0.48", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=213756", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Concussive+Bolt&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Concussive+Bolt&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Concussive+Bolt"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/39110?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Concussive+Bolt&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/39367?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "bec5e56a-5bab-4965-9035-128c3f1ae175", "oracle_id": "62879f3d-ed6d-4004-8196-f3fd7f614695", "multiverse_ids": [130535], "mtgo_id": 27178, "mtgo_foil_id": 27179, "tcgplayer_id": 15082, "cardmarket_id": 16358, "name": "Cone of Flame", "lang": "en", "released_at": "2007-07-13", "uri": "https://api.scryfall.com/cards/bec5e56a-5bab-4965-9035-128c3f1ae175", "scryfall_uri": "https://scryfall.com/card/10e/194/cone-of-flame?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/b/e/bec5e56a-5bab-4965-9035-128c3f1ae175.jpg?1562554444", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/e/bec5e56a-5bab-4965-9035-128c3f1ae175.jpg?1562554444", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/b/e/bec5e56a-5bab-4965-9035-128c3f1ae175.jpg?1562554444", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/b/e/bec5e56a-5bab-4965-9035-128c3f1ae175.png?1562554444", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/e/bec5e56a-5bab-4965-9035-128c3f1ae175.jpg?1562554444", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/b/e/bec5e56a-5bab-4965-9035-128c3f1ae175.jpg?1562554444"}, "mana_cost": "{3}{R}{R}", "cmc": 5.0, "type_line": "Sorcery", "oracle_text": "Cone of Flame deals 1 damage to any target, 2 damage to another target, and 3 damage to a third target.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "a66a6124-0d81-488d-b080-91f5ba7fbad0", "set": "10e", "set_name": "Tenth Edition", "set_type": "core", "set_uri": "https://api.scryfall.com/sets/a66a6124-0d81-488d-b080-91f5ba7fbad0", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3A10e&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/10e?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/bec5e56a-5bab-4965-9035-128c3f1ae175/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A62879f3d-ed6d-4004-8196-f3fd7f614695&unique=prints", "collector_number": "194", "digital": false, "rarity": "uncommon", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Chippy", "artist_ids": ["a36f01a0-e51a-48b2-a556-b9b3bc73f969"], "illustration_id": "74fe0162-9c70-4c85-819c-3822e5b5ddb2", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 16443, "penny_rank": 6941, "prices": {"usd": "0.07", "usd_foil": "0.47", "usd_etched": null, "eur": "0.02", "eur_foil": "0.45", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=130535", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Cone+of+Flame&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Cone+of+Flame&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Cone+of+Flame"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/15082?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Cone+of+Flame&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/27178?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "5713f17a-9a57-41f8-b492-ced876e1a37f", "oracle_id": "62879f3d-ed6d-4004-8196-f3fd7f614695", "multiverse_ids": [4541], "mtgo_id": 9425, "mtgo_foil_id": 9426, "tcgplayer_id": 6008, "cardmarket_id": 8663, "name": "Cone of Flame", "lang": "en", "released_at": "1997-06-09", "uri": "https://api.scryfall.com/cards/5713f17a-9a57-41f8-b492-ced876e1a37f", "scryfall_uri": "https://scryfall.com/card/wth/95/cone-of-flame?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/5/7/5713f17a-9a57-41f8-b492-ced876e1a37f.jpg?1562800924", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/7/5713f17a-9a57-41f8-b492-ced876e1a37f.jpg?1562800924", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/5/7/5713f17a-9a57-41f8-b492-ced876e1a37f.jpg?1562800924", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/5/7/5713f17a-9a57-41f8-b492-ced876e1a37f.png?1562800924", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/7/5713f17a-9a57-41f8-b492-ced876e1a37f.jpg?1562800924", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/5/7/5713f17a-9a57-41f8-b492-ced876e1a37f.jpg?1562800924"}, "mana_cost": "{3}{R}{R}", "cmc": 5.0, "type_line": "Sorcery", "oracle_text": "Cone of Flame deals 1 damage to any target, 2 damage to another target, and 3 damage to a third target.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "700997ac-add2-4ce2-992e-5efa0fdfc0e9", "set": "wth", "set_name": "Weatherlight", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/700997ac-add2-4ce2-992e-5efa0fdfc0e9", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Awth&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/wth?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/5713f17a-9a57-41f8-b492-ced876e1a37f/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A62879f3d-ed6d-4004-8196-f3fd7f614695&unique=prints", "collector_number": "95", "digital": false, "rarity": "uncommon", "flavor_text": "\"Mine is not the warmth of compassion.\"\n\u2014Ertai, wizard adept", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Ron Spencer", "artist_ids": ["dab52c11-0564-4207-a4a1-c1735c946a65"], "illustration_id": "d36e38df-29d9-4aa3-bdc1-2b940312dda5", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 16443, "penny_rank": 6941, "prices": {"usd": "0.12", "usd_foil": null, "usd_etched": null, "eur": "0.14", "eur_foil": null, "tix": "0.09"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=4541", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Cone+of+Flame&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Cone+of+Flame&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Cone+of+Flame"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/6008?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Cone+of+Flame&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/9425?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "09991fad-4282-4a17-bfb1-03eaa13502df", "oracle_id": "b0c50079-5376-47ff-82c5-d52dbf49afdf", "multiverse_ids": [457213], "mtgo_id": 71138, "arena_id": 69197, "tcgplayer_id": 183417, "cardmarket_id": 368568, "name": "Consign to the Pit", "lang": "en", "released_at": "2019-01-25", "uri": "https://api.scryfall.com/cards/09991fad-4282-4a17-bfb1-03eaa13502df", "scryfall_uri": "https://scryfall.com/card/rna/69/consign-to-the-pit?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/0/9/09991fad-4282-4a17-bfb1-03eaa13502df.jpg?1584830536", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/9/09991fad-4282-4a17-bfb1-03eaa13502df.jpg?1584830536", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/0/9/09991fad-4282-4a17-bfb1-03eaa13502df.jpg?1584830536", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/0/9/09991fad-4282-4a17-bfb1-03eaa13502df.png?1584830536", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/9/09991fad-4282-4a17-bfb1-03eaa13502df.jpg?1584830536", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/0/9/09991fad-4282-4a17-bfb1-03eaa13502df.jpg?1584830536"}, "mana_cost": "{5}{B}", "cmc": 6.0, "type_line": "Sorcery", "oracle_text": "Destroy target creature. Consign to the Pit deals 2 damage to that creature's controller.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "97a7fd84-8d89-45a3-b48b-c951f6a3f9f1", "set": "rna", "set_name": "Ravnica Allegiance", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/97a7fd84-8d89-45a3-b48b-c951f6a3f9f1", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Arna&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/rna?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/09991fad-4282-4a17-bfb1-03eaa13502df/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ab0c50079-5376-47ff-82c5-d52dbf49afdf&unique=prints", "collector_number": "69", "digital": false, "rarity": "common", "flavor_text": "First your whole life flashes before your eyes. Then you have considerable time to reflect on every regret as you plummet.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Colin Boyer", "artist_ids": ["9c201dbe-db56-429a-87e6-189ea70c2632"], "illustration_id": "b4295e33-f4e0-43af-a27b-0cb220dda198", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 19294, "prices": {"usd": "0.02", "usd_foil": "0.02", "usd_etched": null, "eur": "0.01", "eur_foil": "0.10", "tix": "0.05"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=457213", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Consign+to+the+Pit&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Consign+to+the+Pit&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Consign+to+the+Pit"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/183417?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Consign+to+the+Pit&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/71138?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "5db2f958-947b-4b52-a5cd-e8f8b5576803", "oracle_id": "861fa80d-99e0-4332-a2b8-5aa959fd41a4", "multiverse_ids": [189893], "mtgo_id": 32917, "mtgo_foil_id": 32918, "tcgplayer_id": 32576, "cardmarket_id": 21135, "name": "Consume Spirit", "lang": "en", "released_at": "2009-07-17", "uri": "https://api.scryfall.com/cards/5db2f958-947b-4b52-a5cd-e8f8b5576803", "scryfall_uri": "https://scryfall.com/card/m10/89/consume-spirit?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/5/d/5db2f958-947b-4b52-a5cd-e8f8b5576803.jpg?1561981784", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/d/5db2f958-947b-4b52-a5cd-e8f8b5576803.jpg?1561981784", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/5/d/5db2f958-947b-4b52-a5cd-e8f8b5576803.jpg?1561981784", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/5/d/5db2f958-947b-4b52-a5cd-e8f8b5576803.png?1561981784", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/d/5db2f958-947b-4b52-a5cd-e8f8b5576803.jpg?1561981784", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/5/d/5db2f958-947b-4b52-a5cd-e8f8b5576803.jpg?1561981784"}, "mana_cost": "{X}{1}{B}", "cmc": 2.0, "type_line": "Sorcery", "oracle_text": "Spend only black mana on X.\nConsume Spirit deals X damage to any target and you gain X life.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "0dba38a9-6b9d-4768-9831-4e03e8970a0b", "set": "m10", "set_name": "Magic 2010", "set_type": "core", "set_uri": "https://api.scryfall.com/sets/0dba38a9-6b9d-4768-9831-4e03e8970a0b", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Am10&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/m10?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/5db2f958-947b-4b52-a5cd-e8f8b5576803/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A861fa80d-99e0-4332-a2b8-5aa959fd41a4&unique=prints", "collector_number": "89", "digital": false, "rarity": "uncommon", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Justin Sweet", "artist_ids": ["bb15780e-8f96-4823-b258-a7a9fd79b02c"], "illustration_id": "81adf78a-caf0-43d5-8482-22f71a9a9578", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 8158, "penny_rank": 3408, "prices": {"usd": "0.11", "usd_foil": "0.46", "usd_etched": null, "eur": "0.04", "eur_foil": "0.14", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=189893", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Consume+Spirit&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Consume+Spirit&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Consume+Spirit"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/32576?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Consume+Spirit&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/32917?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "f375a49c-806a-4d8b-9513-6b4afc19497b", "oracle_id": "861fa80d-99e0-4332-a2b8-5aa959fd41a4", "multiverse_ids": [45987], "mtgo_id": 19709, "mtgo_foil_id": 19710, "tcgplayer_id": 11381, "cardmarket_id": 60, "name": "Consume Spirit", "lang": "en", "released_at": "2003-10-02", "uri": "https://api.scryfall.com/cards/f375a49c-806a-4d8b-9513-6b4afc19497b", "scryfall_uri": "https://scryfall.com/card/mrd/60/consume-spirit?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/f/3/f375a49c-806a-4d8b-9513-6b4afc19497b.jpg?1562163025", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/3/f375a49c-806a-4d8b-9513-6b4afc19497b.jpg?1562163025", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/f/3/f375a49c-806a-4d8b-9513-6b4afc19497b.jpg?1562163025", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/f/3/f375a49c-806a-4d8b-9513-6b4afc19497b.png?1562163025", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/3/f375a49c-806a-4d8b-9513-6b4afc19497b.jpg?1562163025", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/f/3/f375a49c-806a-4d8b-9513-6b4afc19497b.jpg?1562163025"}, "mana_cost": "{X}{1}{B}", "cmc": 2.0, "type_line": "Sorcery", "oracle_text": "Spend only black mana on X.\nConsume Spirit deals X damage to any target and you gain X life.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "1d4f90ba-8d4a-4ee5-bc2f-e2d6bffe4955", "set": "mrd", "set_name": "Mirrodin", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/1d4f90ba-8d4a-4ee5-bc2f-e2d6bffe4955", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Amrd&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/mrd?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/f375a49c-806a-4d8b-9513-6b4afc19497b/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A861fa80d-99e0-4332-a2b8-5aa959fd41a4&unique=prints", "collector_number": "60", "digital": false, "rarity": "common", "flavor_text": "Mephidross changes all who dwell there, taking their lives and adding them to its own.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Matt Thompson", "artist_ids": ["469f170d-e056-4cfd-893a-458ef021ab73"], "illustration_id": "fc8e60f0-6d09-4f1e-af71-262f3d2c0096", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 8158, "penny_rank": 3408, "prices": {"usd": "0.12", "usd_foil": "0.58", "usd_etched": null, "eur": "0.05", "eur_foil": "0.15", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=45987", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Consume+Spirit&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Consume+Spirit&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Consume+Spirit"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/11381?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Consume+Spirit&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/19709?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "f267137c-57f5-43b1-9a4b-98f2b84106b9", "oracle_id": "861fa80d-99e0-4332-a2b8-5aa959fd41a4", "multiverse_ids": [], "tcgplayer_id": 71421, "cardmarket_id": 259168, "name": "Consume Spirit", "lang": "en", "released_at": "2012-01-01", "uri": "https://api.scryfall.com/cards/f267137c-57f5-43b1-9a4b-98f2b84106b9", "scryfall_uri": "https://scryfall.com/card/pidw/6/consume-spirit?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/f/2/f267137c-57f5-43b1-9a4b-98f2b84106b9.jpg?1561758413", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/2/f267137c-57f5-43b1-9a4b-98f2b84106b9.jpg?1561758413", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/f/2/f267137c-57f5-43b1-9a4b-98f2b84106b9.jpg?1561758413", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/f/2/f267137c-57f5-43b1-9a4b-98f2b84106b9.png?1561758413", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/2/f267137c-57f5-43b1-9a4b-98f2b84106b9.jpg?1561758413", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/f/2/f267137c-57f5-43b1-9a4b-98f2b84106b9.jpg?1561758413"}, "mana_cost": "{X}{1}{B}", "cmc": 2.0, "type_line": "Sorcery", "oracle_text": "Spend only black mana on X.\nConsume Spirit deals X damage to any target and you gain X life.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": true, "reprint": true, "variation": false, "set_id": "33438cf7-6acb-48f0-8581-215d1e4995e5", "set": "pidw", "set_name": "IDW Comics 2012", "set_type": "promo", "set_uri": "https://api.scryfall.com/sets/33438cf7-6acb-48f0-8581-215d1e4995e5", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Apidw&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/pidw?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/f267137c-57f5-43b1-9a4b-98f2b84106b9/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A861fa80d-99e0-4332-a2b8-5aa959fd41a4&unique=prints", "collector_number": "6", "digital": false, "rarity": "rare", "flavor_text": "\"Youth is wasted on the young. So I help myself to some of it from time to time.\"\n\u2014Sifa Grent", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Dan Scott", "artist_ids": ["f852fa13-137e-40f2-bbc1-0f01df09c0e0"], "illustration_id": "7f9bf072-0b12-48b2-90ef-51109813e40c", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "promo_types": ["mediainsert"], "edhrec_rank": 8158, "penny_rank": 3408, "prices": {"usd": "9.57", "usd_foil": null, "usd_etched": null, "eur": "4.99", "eur_foil": null, "tix": null}, "related_uris": {"tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Consume+Spirit&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Consume+Spirit&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Consume+Spirit"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/71421?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Consume+Spirit&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Consume+Spirit&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "82a42b28-3d1b-4432-b8c9-2d42e4d0e1c5", "oracle_id": "03fde598-5b6b-4c7f-ba13-c06ed1fa918a", "multiverse_ids": [407604], "mtgo_id": 59549, "mtgo_foil_id": 59550, "tcgplayer_id": 111023, "cardmarket_id": 287376, "name": "Consuming Sinkhole", "lang": "en", "released_at": "2016-01-22", "uri": "https://api.scryfall.com/cards/82a42b28-3d1b-4432-b8c9-2d42e4d0e1c5", "scryfall_uri": "https://scryfall.com/card/ogw/94/consuming-sinkhole?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/8/2/82a42b28-3d1b-4432-b8c9-2d42e4d0e1c5.jpg?1562921426", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/2/82a42b28-3d1b-4432-b8c9-2d42e4d0e1c5.jpg?1562921426", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/8/2/82a42b28-3d1b-4432-b8c9-2d42e4d0e1c5.jpg?1562921426", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/8/2/82a42b28-3d1b-4432-b8c9-2d42e4d0e1c5.png?1562921426", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/2/82a42b28-3d1b-4432-b8c9-2d42e4d0e1c5.jpg?1562921426", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/8/2/82a42b28-3d1b-4432-b8c9-2d42e4d0e1c5.jpg?1562921426"}, "mana_cost": "{3}{R}", "cmc": 4.0, "type_line": "Instant", "oracle_text": "Devoid (This card has no color.)\nChoose one \u2014\n\u2022 Exile target land creature.\n\u2022 Consuming Sinkhole deals 4 damage to target player or planeswalker.", "colors": [], "color_identity": ["R"], "keywords": ["Devoid"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "cd51d245-8f95-45b0-ab5f-e2b3a3eb5dfe", "set": "ogw", "set_name": "Oath of the Gatewatch", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/cd51d245-8f95-45b0-ab5f-e2b3a3eb5dfe", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aogw&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ogw?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/82a42b28-3d1b-4432-b8c9-2d42e4d0e1c5/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A03fde598-5b6b-4c7f-ba13-c06ed1fa918a&unique=prints", "collector_number": "94", "digital": false, "rarity": "common", "flavor_text": "\"What will not yield will be consumed.\"\n\u2014Ayli, high priest of the Eternal Pilgrims", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Igor Kieryluk", "artist_ids": ["9c3e9d17-509f-485c-9360-46d897ce716b"], "illustration_id": "af003833-c76e-4954-b119-97e6134e7155", "border_color": "black", "frame": "2015", "frame_effects": ["devoid"], "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 19846, "prices": {"usd": "0.02", "usd_foil": "0.11", "usd_etched": null, "eur": "0.02", "eur_foil": "0.03", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=407604", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Consuming+Sinkhole&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Consuming+Sinkhole&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Consuming+Sinkhole"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/111023?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Consuming+Sinkhole&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/59549?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "752b7d05-19d7-4765-9bf8-05a7cb539c3f", "oracle_id": "20ca6a15-ba88-4efd-b5bd-da5938e9a43e", "multiverse_ids": [383217], "mtgo_id": 53686, "mtgo_foil_id": 53687, "tcgplayer_id": 90847, "cardmarket_id": 267195, "name": "Covenant of Blood", "lang": "en", "released_at": "2014-07-18", "uri": "https://api.scryfall.com/cards/752b7d05-19d7-4765-9bf8-05a7cb539c3f", "scryfall_uri": "https://scryfall.com/card/m15/91/covenant-of-blood?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/7/5/752b7d05-19d7-4765-9bf8-05a7cb539c3f.jpg?1562789193", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/5/752b7d05-19d7-4765-9bf8-05a7cb539c3f.jpg?1562789193", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/7/5/752b7d05-19d7-4765-9bf8-05a7cb539c3f.jpg?1562789193", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/7/5/752b7d05-19d7-4765-9bf8-05a7cb539c3f.png?1562789193", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/5/752b7d05-19d7-4765-9bf8-05a7cb539c3f.jpg?1562789193", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/7/5/752b7d05-19d7-4765-9bf8-05a7cb539c3f.jpg?1562789193"}, "mana_cost": "{6}{B}", "cmc": 7.0, "type_line": "Sorcery", "oracle_text": "Convoke (Your creatures can help cast this spell. Each creature you tap while casting this spell pays for {1} or one mana of that creature's color.)\nCovenant of Blood deals 4 damage to any target and you gain 4 life.", "colors": ["B"], "color_identity": ["B"], "keywords": ["Convoke"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "6ce49890-3b37-42a5-8932-dbeef1d7b62c", "set": "m15", "set_name": "Magic 2015", "set_type": "core", "set_uri": "https://api.scryfall.com/sets/6ce49890-3b37-42a5-8932-dbeef1d7b62c", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Am15&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/m15?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/752b7d05-19d7-4765-9bf8-05a7cb539c3f/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A20ca6a15-ba88-4efd-b5bd-da5938e9a43e&unique=prints", "collector_number": "91", "digital": false, "rarity": "common", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Seb McKinnon", "artist_ids": ["ad4caca0-8d89-44ce-a1a6-d5ca905bd6fb"], "illustration_id": "9b5d76d6-114e-4782-bec0-53340807ed6f", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 18969, "prices": {"usd": "0.08", "usd_foil": "0.24", "usd_etched": null, "eur": "0.05", "eur_foil": "0.49", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=383217", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Covenant+of+Blood&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Covenant+of+Blood&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Covenant+of+Blood"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/90847?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Covenant+of+Blood&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/53686?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "f83c7d53-2599-42a9-ae96-a2699c5164cb", "oracle_id": "ee81f37b-2a81-46d7-8d2f-9091123846c4", "multiverse_ids": [386507], "mtgo_id": 54432, "mtgo_foil_id": 54433, "tcgplayer_id": 92820, "cardmarket_id": 269201, "name": "Crackling Doom", "lang": "en", "released_at": "2014-09-26", "uri": "https://api.scryfall.com/cards/f83c7d53-2599-42a9-ae96-a2699c5164cb", "scryfall_uri": "https://scryfall.com/card/ktk/171/crackling-doom?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/f/8/f83c7d53-2599-42a9-ae96-a2699c5164cb.jpg?1562796251", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/8/f83c7d53-2599-42a9-ae96-a2699c5164cb.jpg?1562796251", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/f/8/f83c7d53-2599-42a9-ae96-a2699c5164cb.jpg?1562796251", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/f/8/f83c7d53-2599-42a9-ae96-a2699c5164cb.png?1562796251", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/8/f83c7d53-2599-42a9-ae96-a2699c5164cb.jpg?1562796251", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/f/8/f83c7d53-2599-42a9-ae96-a2699c5164cb.jpg?1562796251"}, "mana_cost": "{R}{W}{B}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Crackling Doom deals 2 damage to each opponent. Each opponent sacrifices a creature with the greatest power among creatures that player controls.", "colors": ["B", "R", "W"], "color_identity": ["B", "R", "W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "6c7a715c-ded9-449e-89b0-c665773e9c3c", "set": "ktk", "set_name": "Khans of Tarkir", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/6c7a715c-ded9-449e-89b0-c665773e9c3c", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aktk&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ktk?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/f83c7d53-2599-42a9-ae96-a2699c5164cb/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aee81f37b-2a81-46d7-8d2f-9091123846c4&unique=prints", "collector_number": "171", "digital": false, "rarity": "rare", "watermark": "mardu", "flavor_text": "Do not fear the lightning. Fear the one it obeys.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Yohann Schepacz", "artist_ids": ["c40c8ec8-d8b3-48a5-8de2-a7c96cbded5b"], "illustration_id": "8ab37866-af45-4960-857c-8ae62bc7f39d", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 1345, "penny_rank": 2272, "prices": {"usd": "0.24", "usd_foil": "2.96", "usd_etched": null, "eur": "0.23", "eur_foil": "0.50", "tix": "0.01"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=386507", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Crackling+Doom&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Crackling+Doom&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Crackling+Doom"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/92820?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Crackling+Doom&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/54432?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "95dde66b-b4a1-4a1e-8c9e-0bec4790b1e5", "oracle_id": "b8cf8614-14f4-4c20-9697-2e5ea34e0039", "multiverse_ids": [386509], "mtgo_id": 54374, "mtgo_foil_id": 54375, "tcgplayer_id": 92953, "cardmarket_id": 269205, "name": "Crater's Claws", "lang": "en", "released_at": "2014-09-26", "uri": "https://api.scryfall.com/cards/95dde66b-b4a1-4a1e-8c9e-0bec4790b1e5", "scryfall_uri": "https://scryfall.com/card/ktk/106/craters-claws?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/9/5/95dde66b-b4a1-4a1e-8c9e-0bec4790b1e5.jpg?1562790652", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/5/95dde66b-b4a1-4a1e-8c9e-0bec4790b1e5.jpg?1562790652", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/9/5/95dde66b-b4a1-4a1e-8c9e-0bec4790b1e5.jpg?1562790652", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/9/5/95dde66b-b4a1-4a1e-8c9e-0bec4790b1e5.png?1562790652", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/5/95dde66b-b4a1-4a1e-8c9e-0bec4790b1e5.jpg?1562790652", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/9/5/95dde66b-b4a1-4a1e-8c9e-0bec4790b1e5.jpg?1562790652"}, "mana_cost": "{X}{R}", "cmc": 1.0, "type_line": "Sorcery", "oracle_text": "Crater's Claws deals X damage to any target.\nFerocious \u2014 Crater's Claws deals X plus 2 damage instead if you control a creature with power 4 or greater.", "colors": ["R"], "color_identity": ["R"], "keywords": ["Ferocious"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "6c7a715c-ded9-449e-89b0-c665773e9c3c", "set": "ktk", "set_name": "Khans of Tarkir", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/6c7a715c-ded9-449e-89b0-c665773e9c3c", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aktk&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ktk?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/95dde66b-b4a1-4a1e-8c9e-0bec4790b1e5/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ab8cf8614-14f4-4c20-9697-2e5ea34e0039&unique=prints", "collector_number": "106", "digital": false, "rarity": "rare", "watermark": "temur", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Noah Bradley", "artist_ids": ["81995d11-da98-4f8b-89bd-b88ca2ddb06b"], "illustration_id": "929ec510-9e89-4d90-a599-6c084fc0312b", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 10976, "penny_rank": 1148, "prices": {"usd": "0.15", "usd_foil": "0.54", "usd_etched": null, "eur": "0.05", "eur_foil": "0.19", "tix": "0.01"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=386509", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Crater%27s+Claws&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Crater%27s+Claws&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Crater%27s+Claws"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/92953?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Crater%27s+Claws&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/54374?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "eab58d87-bf01-45dc-8958-e2b3375f914b", "oracle_id": "ffc79d71-5a1f-40a8-80af-84c85e12ba6e", "multiverse_ids": [513663], "mtgo_id": 88849, "arena_id": 76579, "tcgplayer_id": 235623, "cardmarket_id": 557277, "name": "Creative Outburst", "lang": "en", "released_at": "2021-04-23", "uri": "https://api.scryfall.com/cards/eab58d87-bf01-45dc-8958-e2b3375f914b", "scryfall_uri": "https://scryfall.com/card/stx/171/creative-outburst?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/e/a/eab58d87-bf01-45dc-8958-e2b3375f914b.jpg?1627428357", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/a/eab58d87-bf01-45dc-8958-e2b3375f914b.jpg?1627428357", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/e/a/eab58d87-bf01-45dc-8958-e2b3375f914b.jpg?1627428357", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/e/a/eab58d87-bf01-45dc-8958-e2b3375f914b.png?1627428357", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/a/eab58d87-bf01-45dc-8958-e2b3375f914b.jpg?1627428357", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/e/a/eab58d87-bf01-45dc-8958-e2b3375f914b.jpg?1627428357"}, "mana_cost": "{3}{U}{U}{R}{R}", "cmc": 7.0, "type_line": "Instant", "oracle_text": "Creative Outburst deals 5 damage to any target. Look at the top five cards of your library. Put one of them into your hand and the rest on the bottom of your library in a random order.\n{U/R}{U/R}, Discard Creative Outburst: Create a Treasure token.", "colors": ["R", "U"], "color_identity": ["R", "U"], "keywords": [], "all_parts": [{"object": "related_card", "id": "eab58d87-bf01-45dc-8958-e2b3375f914b", "component": "combo_piece", "name": "Creative Outburst", "type_line": "Instant", "uri": "https://api.scryfall.com/cards/eab58d87-bf01-45dc-8958-e2b3375f914b"}, {"object": "related_card", "id": "1a2d027f-8996-4761-a776-47cd428f6779", "component": "token", "name": "Treasure", "type_line": "Token Artifact \u2014 Treasure", "uri": "https://api.scryfall.com/cards/1a2d027f-8996-4761-a776-47cd428f6779"}], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "541c3c28-8747-40e5-a231-8e8f33234859", "set": "stx", "set_name": "Strixhaven: School of Mages", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/541c3c28-8747-40e5-a231-8e8f33234859", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Astx&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/stx?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/eab58d87-bf01-45dc-8958-e2b3375f914b/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Affc79d71-5a1f-40a8-80af-84c85e12ba6e&unique=prints", "collector_number": "171", "digital": false, "rarity": "uncommon", "watermark": "prismari", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Igor Kieryluk", "artist_ids": ["9c3e9d17-509f-485c-9360-46d897ce716b"], "illustration_id": "77f34542-3e8c-4ddb-a7c8-9ad5a9b8bfe1", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 9174, "penny_rank": 8246, "preview": {"source": "Mani Davoudi", "source_uri": "https://twitter.com/Zapgaze/status/1376866964056907776", "previewed_at": "2021-03-30"}, "prices": {"usd": "0.09", "usd_foil": "0.13", "usd_etched": null, "eur": "0.06", "eur_foil": "0.08", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=513663", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Creative+Outburst&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Creative+Outburst&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Creative+Outburst"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/235623?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Creative+Outburst&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/88849?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "6a892711-a1a4-4402-957f-92077d00320d", "oracle_id": "77c14618-ced1-4a46-a7fd-06cb2f7f38ff", "multiverse_ids": [121169], "mtgo_id": 24603, "mtgo_foil_id": 24604, "tcgplayer_id": 14021, "cardmarket_id": 13628, "name": "Cryoclasm", "lang": "en", "released_at": "2006-07-21", "uri": "https://api.scryfall.com/cards/6a892711-a1a4-4402-957f-92077d00320d", "scryfall_uri": "https://scryfall.com/card/csp/79/cryoclasm?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/6/a/6a892711-a1a4-4402-957f-92077d00320d.jpg?1593275219", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/a/6a892711-a1a4-4402-957f-92077d00320d.jpg?1593275219", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/6/a/6a892711-a1a4-4402-957f-92077d00320d.jpg?1593275219", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/6/a/6a892711-a1a4-4402-957f-92077d00320d.png?1593275219", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/a/6a892711-a1a4-4402-957f-92077d00320d.jpg?1593275219", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/6/a/6a892711-a1a4-4402-957f-92077d00320d.jpg?1593275219"}, "mana_cost": "{2}{R}", "cmc": 3.0, "type_line": "Sorcery", "oracle_text": "Destroy target Plains or Island. Cryoclasm deals 3 damage to that land's controller.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "1f4f105f-73e4-4f03-849e-82a204807847", "set": "csp", "set_name": "Coldsnap", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/1f4f105f-73e4-4f03-849e-82a204807847", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Acsp&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/csp?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/6a892711-a1a4-4402-957f-92077d00320d/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A77c14618-ced1-4a46-a7fd-06cb2f7f38ff&unique=prints", "collector_number": "79", "digital": false, "rarity": "uncommon", "flavor_text": "The people of Terisiare had come to live on frozen fields as though on solid ground. Nothing reminded them of the difference more clearly than the rifts brought on by the Thaw.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Zoltan Boros & Gabor Szikszai", "artist_ids": ["1885e6cb-c827-4896-994e-3d0a027d602f", "44c3877f-8771-43dc-9e40-f4c765f59d2e"], "illustration_id": "72a7dadc-a0f9-443c-9232-4bda23712bbf", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 20311, "penny_rank": 6470, "prices": {"usd": "0.10", "usd_foil": null, "usd_etched": null, "eur": "0.08", "eur_foil": "0.75", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=121169", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Cryoclasm&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Cryoclasm&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Cryoclasm"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/14021?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Cryoclasm&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/24603?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "2483060e-9d3f-48ae-80ea-0119bf6b4d67", "oracle_id": "d4e124af-d335-4c42-b60a-fe578f69f7ed", "multiverse_ids": [513665], "mtgo_id": 88853, "arena_id": 76581, "tcgplayer_id": 235669, "cardmarket_id": 557499, "name": "Culmination of Studies", "lang": "en", "released_at": "2021-04-23", "uri": "https://api.scryfall.com/cards/2483060e-9d3f-48ae-80ea-0119bf6b4d67", "scryfall_uri": "https://scryfall.com/card/stx/173/culmination-of-studies?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/2/4/2483060e-9d3f-48ae-80ea-0119bf6b4d67.jpg?1627428427", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/4/2483060e-9d3f-48ae-80ea-0119bf6b4d67.jpg?1627428427", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/2/4/2483060e-9d3f-48ae-80ea-0119bf6b4d67.jpg?1627428427", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/2/4/2483060e-9d3f-48ae-80ea-0119bf6b4d67.png?1627428427", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/4/2483060e-9d3f-48ae-80ea-0119bf6b4d67.jpg?1627428427", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/2/4/2483060e-9d3f-48ae-80ea-0119bf6b4d67.jpg?1627428427"}, "mana_cost": "{X}{U}{R}", "cmc": 2.0, "type_line": "Sorcery", "oracle_text": "Exile the top X cards of your library. For each land card exiled this way, create a Treasure token. For each blue card exiled this way, draw a card. For each red card exiled this way, Culmination of Studies deals 1 damage to each opponent.", "colors": ["R", "U"], "color_identity": ["R", "U"], "keywords": [], "all_parts": [{"object": "related_card", "id": "2483060e-9d3f-48ae-80ea-0119bf6b4d67", "component": "combo_piece", "name": "Culmination of Studies", "type_line": "Sorcery", "uri": "https://api.scryfall.com/cards/2483060e-9d3f-48ae-80ea-0119bf6b4d67"}, {"object": "related_card", "id": "1a2d027f-8996-4761-a776-47cd428f6779", "component": "token", "name": "Treasure", "type_line": "Token Artifact \u2014 Treasure", "uri": "https://api.scryfall.com/cards/1a2d027f-8996-4761-a776-47cd428f6779"}], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "541c3c28-8747-40e5-a231-8e8f33234859", "set": "stx", "set_name": "Strixhaven: School of Mages", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/541c3c28-8747-40e5-a231-8e8f33234859", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Astx&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/stx?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/2483060e-9d3f-48ae-80ea-0119bf6b4d67/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ad4e124af-d335-4c42-b60a-fe578f69f7ed&unique=prints", "collector_number": "173", "digital": false, "rarity": "rare", "watermark": "prismari", "flavor_text": "Will's quick thinking meshed with Rowan's raw power to bring down the Blood Avatar.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Bryan Sola", "artist_ids": ["e6879299-a28b-48bc-8db1-9cafcf36de09"], "illustration_id": "dfd1ab3a-17c1-4fa6-80aa-40d36259bb76", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": true, "story_spotlight": true, "edhrec_rank": 9668, "penny_rank": 12113, "preview": {"source": "Marshall Sutcliffe", "source_uri": "https://twitter.com/Marshall_LR/status/1376957012370579461", "previewed_at": "2021-03-30"}, "prices": {"usd": "0.10", "usd_foil": "0.16", "usd_etched": null, "eur": "0.12", "eur_foil": "0.11", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=513665", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Culmination+of+Studies&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Culmination+of+Studies&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Culmination+of+Studies"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/235669?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Culmination+of+Studies&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/88853?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "e4991f81-3190-4d33-bf09-9d5387cbec11", "oracle_id": "a01491b7-89c8-4d6e-a516-431440ff3e88", "multiverse_ids": [391814], "mtgo_id": 55468, "mtgo_foil_id": 55469, "tcgplayer_id": 95290, "cardmarket_id": 271522, "name": "Cunning Strike", "lang": "en", "released_at": "2015-01-23", "uri": "https://api.scryfall.com/cards/e4991f81-3190-4d33-bf09-9d5387cbec11", "scryfall_uri": "https://scryfall.com/card/frf/150/cunning-strike?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/e/4/e4991f81-3190-4d33-bf09-9d5387cbec11.jpg?1562830894", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/4/e4991f81-3190-4d33-bf09-9d5387cbec11.jpg?1562830894", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/e/4/e4991f81-3190-4d33-bf09-9d5387cbec11.jpg?1562830894", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/e/4/e4991f81-3190-4d33-bf09-9d5387cbec11.png?1562830894", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/4/e4991f81-3190-4d33-bf09-9d5387cbec11.jpg?1562830894", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/e/4/e4991f81-3190-4d33-bf09-9d5387cbec11.jpg?1562830894"}, "mana_cost": "{3}{U}{R}", "cmc": 5.0, "type_line": "Instant", "oracle_text": "Cunning Strike deals 2 damage to target creature and 2 damage to target player or planeswalker.\nDraw a card.", "colors": ["R", "U"], "color_identity": ["R", "U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "7bb5cb2b-081a-4c8c-b7e1-494046e6baa1", "set": "frf", "set_name": "Fate Reforged", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/7bb5cb2b-081a-4c8c-b7e1-494046e6baa1", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Afrf&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/frf?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/e4991f81-3190-4d33-bf09-9d5387cbec11/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aa01491b7-89c8-4d6e-a516-431440ff3e88&unique=prints", "collector_number": "150", "digital": false, "rarity": "common", "flavor_text": "\"The opponent who blocks the path, becomes the path.\"\n\u2014Shu Yun, the Silent Tempest", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Clint Cearley", "artist_ids": ["03b75350-d5a0-4e3a-b3b4-8d4a5554385b"], "illustration_id": "71567231-2d7d-4606-bfc9-ca1e791778ad", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 17092, "prices": {"usd": "0.03", "usd_foil": "0.10", "usd_etched": null, "eur": "0.10", "eur_foil": "0.04", "tix": "0.05"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=391814", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Cunning+Strike&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Cunning+Strike&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Cunning+Strike"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/95290?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Cunning+Strike&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/55468?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "58b38ef1-5839-4292-91d6-e45698c69a75", "oracle_id": "a6cc516d-5a4b-455a-ab16-367d64215527", "multiverse_ids": [6571], "tcgplayer_id": 120, "cardmarket_id": 9829, "name": "Dakmor Plague", "lang": "en", "released_at": "1998-06-24", "uri": "https://api.scryfall.com/cards/58b38ef1-5839-4292-91d6-e45698c69a75", "scryfall_uri": "https://scryfall.com/card/p02/69/dakmor-plague?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/5/8/58b38ef1-5839-4292-91d6-e45698c69a75.jpg?1562915882", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/8/58b38ef1-5839-4292-91d6-e45698c69a75.jpg?1562915882", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/5/8/58b38ef1-5839-4292-91d6-e45698c69a75.jpg?1562915882", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/5/8/58b38ef1-5839-4292-91d6-e45698c69a75.png?1562915882", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/8/58b38ef1-5839-4292-91d6-e45698c69a75.jpg?1562915882", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/5/8/58b38ef1-5839-4292-91d6-e45698c69a75.jpg?1562915882"}, "mana_cost": "{3}{B}{B}", "cmc": 5.0, "type_line": "Sorcery", "oracle_text": "Dakmor Plague deals 3 damage to each creature and each player.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "ac67f18a-4f0e-407e-bab1-a9fe4f659565", "set": "p02", "set_name": "Portal Second Age", "set_type": "starter", "set_uri": "https://api.scryfall.com/sets/ac67f18a-4f0e-407e-bab1-a9fe4f659565", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ap02&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/p02?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/58b38ef1-5839-4292-91d6-e45698c69a75/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aa6cc516d-5a4b-455a-ab16-367d64215527&unique=prints", "collector_number": "69", "digital": false, "rarity": "uncommon", "flavor_text": "The tiniest cough can be deadlier than the fiercest dragon.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Jeff Miracola", "artist_ids": ["9b465bde-3656-4495-ace4-af4ce29999ed"], "illustration_id": "c18a4e1d-5d0e-4a94-9b18-b43725897fc1", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 20898, "penny_rank": 7938, "prices": {"usd": "0.43", "usd_foil": null, "usd_etched": null, "eur": "0.15", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=6571", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Dakmor+Plague&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Dakmor+Plague&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Dakmor+Plague"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/120?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Dakmor+Plague&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Dakmor+Plague&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "cf4c9d6a-86eb-45be-9405-473eb263b94c", "oracle_id": "7ee01801-5e42-4916-a359-64e9975090a7", "multiverse_ids": [25864], "mtgo_id": 15087, "mtgo_foil_id": 15088, "tcgplayer_id": 7777, "cardmarket_id": 3355, "name": "Darigaaz's Charm", "lang": "en", "released_at": "2001-02-05", "uri": "https://api.scryfall.com/cards/cf4c9d6a-86eb-45be-9405-473eb263b94c", "scryfall_uri": "https://scryfall.com/card/pls/100/darigaazs-charm?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/c/f/cf4c9d6a-86eb-45be-9405-473eb263b94c.jpg?1562938851", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/f/cf4c9d6a-86eb-45be-9405-473eb263b94c.jpg?1562938851", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/c/f/cf4c9d6a-86eb-45be-9405-473eb263b94c.jpg?1562938851", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/c/f/cf4c9d6a-86eb-45be-9405-473eb263b94c.png?1562938851", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/f/cf4c9d6a-86eb-45be-9405-473eb263b94c.jpg?1562938851", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/c/f/cf4c9d6a-86eb-45be-9405-473eb263b94c.jpg?1562938851"}, "mana_cost": "{B}{R}{G}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Choose one \u2014\n\u2022 Return target creature card from your graveyard to your hand.\n\u2022 Darigaaz's Charm deals 3 damage to any target.\n\u2022 Target creature gets +3/+3 until end of turn.", "colors": ["B", "G", "R"], "color_identity": ["B", "G", "R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "82dc193b-bd5f-4883-a93f-a4155b467ee0", "set": "pls", "set_name": "Planeshift", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/82dc193b-bd5f-4883-a93f-a4155b467ee0", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Apls&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/pls?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/cf4c9d6a-86eb-45be-9405-473eb263b94c/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A7ee01801-5e42-4916-a359-64e9975090a7&unique=prints", "collector_number": "100", "digital": false, "rarity": "uncommon", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "David Martin", "artist_ids": ["996ad764-4ae0-4952-8bb5-5a75c9d68275"], "illustration_id": "931a3cf7-168b-4889-924d-2278283c87f0", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 12479, "penny_rank": 8734, "prices": {"usd": "0.21", "usd_foil": "4.25", "usd_etched": null, "eur": "0.10", "eur_foil": "1.50", "tix": "0.09"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=25864", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Darigaaz%27s+Charm&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Darigaaz%27s+Charm&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Darigaaz%27s+Charm"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/7777?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Darigaaz%27s+Charm&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/15087?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "053c4cf0-992b-4f76-b8d1-cd67f894172c", "oracle_id": "95650a60-6f1d-4594-8b53-7fd406212207", "multiverse_ids": [435251], "mtgo_id": 65210, "mtgo_foil_id": 65211, "arena_id": 66159, "tcgplayer_id": 145781, "cardmarket_id": 301776, "name": "Dark Nourishment", "lang": "en", "released_at": "2017-09-29", "uri": "https://api.scryfall.com/cards/053c4cf0-992b-4f76-b8d1-cd67f894172c", "scryfall_uri": "https://scryfall.com/card/xln/97/dark-nourishment?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/0/5/053c4cf0-992b-4f76-b8d1-cd67f894172c.jpg?1562550007", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/5/053c4cf0-992b-4f76-b8d1-cd67f894172c.jpg?1562550007", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/0/5/053c4cf0-992b-4f76-b8d1-cd67f894172c.jpg?1562550007", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/0/5/053c4cf0-992b-4f76-b8d1-cd67f894172c.png?1562550007", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/5/053c4cf0-992b-4f76-b8d1-cd67f894172c.jpg?1562550007", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/0/5/053c4cf0-992b-4f76-b8d1-cd67f894172c.jpg?1562550007"}, "mana_cost": "{4}{B}", "cmc": 5.0, "type_line": "Instant", "oracle_text": "Dark Nourishment deals 3 damage to any target. You gain 3 life.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "fe0dad85-54bc-4151-9200-d68da84dd0f2", "set": "xln", "set_name": "Ixalan", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/fe0dad85-54bc-4151-9200-d68da84dd0f2", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Axln&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/xln?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/053c4cf0-992b-4f76-b8d1-cd67f894172c/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A95650a60-6f1d-4594-8b53-7fd406212207&unique=prints", "collector_number": "97", "digital": false, "rarity": "uncommon", "flavor_text": "Demons lurk in the shadows of ancient ruins, spreading plague and corruption across the land.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Josh Hass", "artist_ids": ["8fa1fdf0-96d6-46f4-a7ff-b1c0257c3735"], "illustration_id": "5a42b301-1d18-4304-a073-66be733f1cf0", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 19331, "prices": {"usd": "0.03", "usd_foil": null, "usd_etched": null, "eur": "0.02", "eur_foil": "0.06", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=435251", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Dark+Nourishment&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Dark+Nourishment&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Dark+Nourishment"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/145781?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Dark+Nourishment&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/65210?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "de905517-983d-4996-a680-3a5cf91bfe11", "oracle_id": "beb161c8-8cfa-4492-8866-d140b2eb9646", "multiverse_ids": [74359], "tcgplayer_id": 37843, "cardmarket_id": 14837, "name": "Deal Damage", "lang": "en", "released_at": "2004-11-19", "uri": "https://api.scryfall.com/cards/de905517-983d-4996-a680-3a5cf91bfe11", "scryfall_uri": "https://scryfall.com/card/unh/74/deal-damage?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/d/e/de905517-983d-4996-a680-3a5cf91bfe11.jpg?1562489827", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/e/de905517-983d-4996-a680-3a5cf91bfe11.jpg?1562489827", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/d/e/de905517-983d-4996-a680-3a5cf91bfe11.jpg?1562489827", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/d/e/de905517-983d-4996-a680-3a5cf91bfe11.png?1562489827", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/e/de905517-983d-4996-a680-3a5cf91bfe11.jpg?1562489827", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/d/e/de905517-983d-4996-a680-3a5cf91bfe11.jpg?1562489827"}, "mana_cost": "{2}{R}{R}", "cmc": 4.0, "type_line": "Instant", "oracle_text": "Deal Damage deals 4 damage to any target.\nGotcha \u2014 If an opponent says \"deal\" or \"damage,\" you may say \"Gotcha!\" When you do, return Deal Damage from your graveyard to your hand.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "not_legal", "pauper": "not_legal", "vintage": "not_legal", "penny": "not_legal", "commander": "not_legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "not_legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "4c8bc76a-05a5-43db-aaf0-34deb347b871", "set": "unh", "set_name": "Unhinged", "set_type": "funny", "set_uri": "https://api.scryfall.com/sets/4c8bc76a-05a5-43db-aaf0-34deb347b871", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aunh&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/unh?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/de905517-983d-4996-a680-3a5cf91bfe11/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Abeb161c8-8cfa-4492-8866-d140b2eb9646&unique=prints", "collector_number": "74", "digital": false, "rarity": "uncommon", "flavor_text": "Until he got singed . . .", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Scott M. Fischer", "artist_ids": ["23b0cf43-3e43-44c6-8329-96446eca5bce"], "illustration_id": "e18f503f-f850-4282-bd6f-bd80fa39e617", "border_color": "silver", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "prices": {"usd": "0.29", "usd_foil": "1.35", "usd_etched": null, "eur": "0.27", "eur_foil": "0.49", "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=74359", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Deal+Damage&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Deal+Damage&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Deal+Damage"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/37843?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Deal+Damage&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Deal+Damage&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "b53775ac-c207-45ec-a868-6354888e30d6", "oracle_id": "a2335149-d2db-48c1-9699-0df8ce12d4dd", "multiverse_ids": [368495], "mtgo_id": 48149, "mtgo_foil_id": 48150, "tcgplayer_id": 67819, "cardmarket_id": 260804, "name": "Death Grasp", "lang": "en", "released_at": "2013-03-15", "uri": "https://api.scryfall.com/cards/b53775ac-c207-45ec-a868-6354888e30d6", "scryfall_uri": "https://scryfall.com/card/ddk/32/death-grasp?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/b/5/b53775ac-c207-45ec-a868-6354888e30d6.jpg?1592714388", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/5/b53775ac-c207-45ec-a868-6354888e30d6.jpg?1592714388", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/b/5/b53775ac-c207-45ec-a868-6354888e30d6.jpg?1592714388", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/b/5/b53775ac-c207-45ec-a868-6354888e30d6.png?1592714388", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/5/b53775ac-c207-45ec-a868-6354888e30d6.jpg?1592714388", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/b/5/b53775ac-c207-45ec-a868-6354888e30d6.jpg?1592714388"}, "mana_cost": "{X}{W}{B}", "cmc": 2.0, "type_line": "Sorcery", "oracle_text": "Death Grasp deals X damage to any target. You gain X life.", "colors": ["B", "W"], "color_identity": ["B", "W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "529a5259-8a88-4baf-86a0-cd88098c3ce7", "set": "ddk", "set_name": "Duel Decks: Sorin vs. Tibalt", "set_type": "duel_deck", "set_uri": "https://api.scryfall.com/sets/529a5259-8a88-4baf-86a0-cd88098c3ce7", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Addk&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ddk?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/b53775ac-c207-45ec-a868-6354888e30d6/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aa2335149-d2db-48c1-9699-0df8ce12d4dd&unique=prints", "collector_number": "32", "digital": false, "rarity": "rare", "flavor_text": "Plate mail, the skin of the chest, the rib cage, the heart\u2014all useless against the mage who can reach directly for the soul.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Raymond Swanland", "artist_ids": ["e956bacc-077d-4c12-b6bc-ba798b718af9"], "illustration_id": "0078ef8e-8a5f-4846-8cc0-43b2813059ab", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "edhrec_rank": 8040, "penny_rank": 3927, "prices": {"usd": "0.24", "usd_foil": null, "usd_etched": null, "eur": "0.14", "eur_foil": null, "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=368495", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Death+Grasp&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Death+Grasp&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Death+Grasp"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/67819?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Death+Grasp&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/48149?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "0e893dd4-8c37-496e-bc39-cd83d42b4cc4", "oracle_id": "a2335149-d2db-48c1-9699-0df8ce12d4dd", "multiverse_ids": [29415], "mtgo_id": 16190, "mtgo_foil_id": 16191, "tcgplayer_id": 7932, "cardmarket_id": 3207, "name": "Death Grasp", "lang": "en", "released_at": "2001-06-04", "uri": "https://api.scryfall.com/cards/0e893dd4-8c37-496e-bc39-cd83d42b4cc4", "scryfall_uri": "https://scryfall.com/card/apc/95/death-grasp?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/0/e/0e893dd4-8c37-496e-bc39-cd83d42b4cc4.jpg?1562898339", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/e/0e893dd4-8c37-496e-bc39-cd83d42b4cc4.jpg?1562898339", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/0/e/0e893dd4-8c37-496e-bc39-cd83d42b4cc4.jpg?1562898339", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/0/e/0e893dd4-8c37-496e-bc39-cd83d42b4cc4.png?1562898339", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/e/0e893dd4-8c37-496e-bc39-cd83d42b4cc4.jpg?1562898339", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/0/e/0e893dd4-8c37-496e-bc39-cd83d42b4cc4.jpg?1562898339"}, "mana_cost": "{X}{W}{B}", "cmc": 2.0, "type_line": "Sorcery", "oracle_text": "Death Grasp deals X damage to any target. You gain X life.", "colors": ["B", "W"], "color_identity": ["B", "W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "e4e00913-d08d-4899-86ea-5cf631e09ce0", "set": "apc", "set_name": "Apocalypse", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/e4e00913-d08d-4899-86ea-5cf631e09ce0", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aapc&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/apc?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/0e893dd4-8c37-496e-bc39-cd83d42b4cc4/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aa2335149-d2db-48c1-9699-0df8ce12d4dd&unique=prints", "collector_number": "95", "digital": false, "rarity": "rare", "flavor_text": "Yawgmoth's greatest joy came from watching one hero defeat another.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Eric Peterson", "artist_ids": ["0fc26d3b-4c0e-41d1-8eb3-286ab55a2328"], "illustration_id": "37281940-6bb9-4b23-8a81-cc76cc86c4f2", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 8040, "penny_rank": 3927, "prices": {"usd": "0.25", "usd_foil": "11.00", "usd_etched": null, "eur": "0.18", "eur_foil": "6.00", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=29415", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Death+Grasp&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Death+Grasp&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Death+Grasp"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/7932?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Death+Grasp&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/16190?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "ba841b44-475c-402c-ac11-763de0cf27d9", "oracle_id": "4b23a89c-89ba-41ad-b894-ec02221689eb", "multiverse_ids": [3168], "mtgo_id": 24493, "tcgplayer_id": 4124, "cardmarket_id": 7955, "name": "Death Spark", "lang": "en", "released_at": "1996-06-10", "uri": "https://api.scryfall.com/cards/ba841b44-475c-402c-ac11-763de0cf27d9", "scryfall_uri": "https://scryfall.com/card/all/70/death-spark?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/b/a/ba841b44-475c-402c-ac11-763de0cf27d9.jpg?1562770162", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/a/ba841b44-475c-402c-ac11-763de0cf27d9.jpg?1562770162", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/b/a/ba841b44-475c-402c-ac11-763de0cf27d9.jpg?1562770162", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/b/a/ba841b44-475c-402c-ac11-763de0cf27d9.png?1562770162", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/a/ba841b44-475c-402c-ac11-763de0cf27d9.jpg?1562770162", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/b/a/ba841b44-475c-402c-ac11-763de0cf27d9.jpg?1562770162"}, "mana_cost": "{R}", "cmc": 1.0, "type_line": "Instant", "oracle_text": "Death Spark deals 1 damage to any target.\nAt the beginning of your upkeep, if Death Spark is in your graveyard with a creature card directly above it, you may pay {1}. If you do, return Death Spark to your hand.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "64987b06-4a5c-443d-b560-ff5691744582", "set": "all", "set_name": "Alliances", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/64987b06-4a5c-443d-b560-ff5691744582", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aall&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/all?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/ba841b44-475c-402c-ac11-763de0cf27d9/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A4b23a89c-89ba-41ad-b894-ec02221689eb&unique=prints", "collector_number": "70", "digital": false, "rarity": "uncommon", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Mark Tedin", "artist_ids": ["9ee9a9cc-c09e-486f-918b-69f80cbc4188"], "illustration_id": "b46cd171-cb32-4802-8050-d3eeb20f2469", "border_color": "black", "frame": "1993", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 19296, "penny_rank": 3252, "prices": {"usd": "0.18", "usd_foil": null, "usd_etched": null, "eur": "0.20", "eur_foil": null, "tix": "0.44"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=3168", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Death+Spark&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Death+Spark&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Death+Spark"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/4124?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Death+Spark&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/24493?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "32374918-1bcb-4516-96af-f27da752517e", "oracle_id": "dc5dffc8-fac5-4956-bac4-1ad2cc16f6be", "multiverse_ids": [386516], "mtgo_id": 54454, "mtgo_foil_id": 54455, "tcgplayer_id": 92988, "cardmarket_id": 269335, "name": "Deflecting Palm", "lang": "en", "released_at": "2014-09-26", "uri": "https://api.scryfall.com/cards/32374918-1bcb-4516-96af-f27da752517e", "scryfall_uri": "https://scryfall.com/card/ktk/173/deflecting-palm?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/3/2/32374918-1bcb-4516-96af-f27da752517e.jpg?1562784565", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/2/32374918-1bcb-4516-96af-f27da752517e.jpg?1562784565", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/3/2/32374918-1bcb-4516-96af-f27da752517e.jpg?1562784565", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/3/2/32374918-1bcb-4516-96af-f27da752517e.png?1562784565", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/2/32374918-1bcb-4516-96af-f27da752517e.jpg?1562784565", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/3/2/32374918-1bcb-4516-96af-f27da752517e.jpg?1562784565"}, "mana_cost": "{R}{W}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "The next time a source of your choice would deal damage to you this turn, prevent that damage. If damage is prevented this way, Deflecting Palm deals that much damage to that source's controller.", "colors": ["R", "W"], "color_identity": ["R", "W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "6c7a715c-ded9-449e-89b0-c665773e9c3c", "set": "ktk", "set_name": "Khans of Tarkir", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/6c7a715c-ded9-449e-89b0-c665773e9c3c", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aktk&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ktk?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/32374918-1bcb-4516-96af-f27da752517e/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Adc5dffc8-fac5-4956-bac4-1ad2cc16f6be&unique=prints", "collector_number": "173", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Eric Deschamps", "artist_ids": ["37970e22-9cee-44c1-af44-5ee27cf26b76"], "illustration_id": "b2581a6d-0eb7-41c8-ba92-5b002831ad2a", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 1464, "penny_rank": 8834, "prices": {"usd": "1.84", "usd_foil": "14.56", "usd_etched": null, "eur": "0.89", "eur_foil": "2.49", "tix": "0.16"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=386516", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Deflecting+Palm&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Deflecting+Palm&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Deflecting+Palm"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/92988?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Deflecting+Palm&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/54454?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "af2ad333-722e-4d7e-972a-903c24068931", "oracle_id": "314a5c76-1a68-433b-a383-1834400254a8", "multiverse_ids": [107252], "mtgo_id": 24087, "mtgo_foil_id": 24088, "tcgplayer_id": 13852, "cardmarket_id": 12988, "name": "Demonfire", "lang": "en", "released_at": "2006-05-05", "uri": "https://api.scryfall.com/cards/af2ad333-722e-4d7e-972a-903c24068931", "scryfall_uri": "https://scryfall.com/card/dis/60/demonfire?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/a/f/af2ad333-722e-4d7e-972a-903c24068931.jpg?1593273111", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/f/af2ad333-722e-4d7e-972a-903c24068931.jpg?1593273111", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/a/f/af2ad333-722e-4d7e-972a-903c24068931.jpg?1593273111", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/a/f/af2ad333-722e-4d7e-972a-903c24068931.png?1593273111", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/f/af2ad333-722e-4d7e-972a-903c24068931.jpg?1593273111", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/a/f/af2ad333-722e-4d7e-972a-903c24068931.jpg?1593273111"}, "mana_cost": "{X}{R}", "cmc": 1.0, "type_line": "Sorcery", "oracle_text": "Demonfire deals X damage to any target. If a creature dealt damage this way would die this turn, exile it instead.\nHellbent \u2014 If you have no cards in hand, this spell can't be countered and the damage can't be prevented.", "colors": ["R"], "color_identity": ["R"], "keywords": ["Hellbent"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "fdebeda1-b95f-4343-8a94-d125821e6b5c", "set": "dis", "set_name": "Dissension", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/fdebeda1-b95f-4343-8a94-d125821e6b5c", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Adis&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/dis?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/af2ad333-722e-4d7e-972a-903c24068931/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A314a5c76-1a68-433b-a383-1834400254a8&unique=prints", "collector_number": "60", "digital": false, "rarity": "rare", "watermark": "rakdos", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Greg Staples", "artist_ids": ["93d65564-bf00-447b-8406-e2031f03b6b1"], "illustration_id": "15adadb2-29ff-4393-b647-ee234697e94b", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 11178, "penny_rank": 2897, "prices": {"usd": "0.66", "usd_foil": "12.71", "usd_etched": null, "eur": "0.20", "eur_foil": "1.48", "tix": "0.01"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=107252", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Demonfire&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Demonfire&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Demonfire"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/13852?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Demonfire&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/24087?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "bc2eb53a-3d0f-4bb3-be36-f8024f2a1d4d", "oracle_id": "7165fade-ea96-4026-bc80-620729b8f70c", "multiverse_ids": [373351], "mtgo_id": 49993, "mtgo_foil_id": 49994, "tcgplayer_id": 71075, "cardmarket_id": 263771, "name": "Destructive Revelry", "lang": "en", "released_at": "2013-09-06", "uri": "https://api.scryfall.com/cards/bc2eb53a-3d0f-4bb3-be36-f8024f2a1d4d", "scryfall_uri": "https://scryfall.com/card/ddl/66/destructive-revelry?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/b/c/bc2eb53a-3d0f-4bb3-be36-f8024f2a1d4d.jpg?1592752246", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/c/bc2eb53a-3d0f-4bb3-be36-f8024f2a1d4d.jpg?1592752246", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/b/c/bc2eb53a-3d0f-4bb3-be36-f8024f2a1d4d.jpg?1592752246", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/b/c/bc2eb53a-3d0f-4bb3-be36-f8024f2a1d4d.png?1592752246", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/c/bc2eb53a-3d0f-4bb3-be36-f8024f2a1d4d.jpg?1592752246", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/b/c/bc2eb53a-3d0f-4bb3-be36-f8024f2a1d4d.jpg?1592752246"}, "mana_cost": "{R}{G}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Destroy target artifact or enchantment. Destructive Revelry deals 2 damage to that permanent's controller.", "colors": ["G", "R"], "color_identity": ["G", "R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "7dfc5406-c4cf-479d-b005-11e578752dc9", "set": "ddl", "set_name": "Duel Decks: Heroes vs. Monsters", "set_type": "duel_deck", "set_uri": "https://api.scryfall.com/sets/7dfc5406-c4cf-479d-b005-11e578752dc9", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Addl&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ddl?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/bc2eb53a-3d0f-4bb3-be36-f8024f2a1d4d/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A7165fade-ea96-4026-bc80-620729b8f70c&unique=prints", "collector_number": "66", "digital": false, "rarity": "uncommon", "flavor_text": "\"Stoke a fire hot enough and you'll never run out of things to burn.\"\n\u2014Xenagos, the Reveler", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Kev Walker", "artist_ids": ["f366a0ee-a0cd-466d-ba6a-90058c7a31a6"], "illustration_id": "8213e438-3845-4790-b3cc-5b5735c40c78", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "edhrec_rank": 5157, "penny_rank": 8783, "prices": {"usd": "0.27", "usd_foil": null, "usd_etched": null, "eur": "0.35", "eur_foil": null, "tix": "0.92"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=373351", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Destructive+Revelry&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Destructive+Revelry&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Destructive+Revelry"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/71075?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Destructive+Revelry&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/49993?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "237eedf5-8a8f-4668-a911-e2bf66f8221e", "oracle_id": "daa90a75-c600-41bd-9311-ec21cf51480b", "multiverse_ids": [46110], "mtgo_id": 19965, "mtgo_foil_id": 19966, "tcgplayer_id": 11408, "cardmarket_id": 88, "name": "Detonate", "lang": "en", "released_at": "2003-10-02", "uri": "https://api.scryfall.com/cards/237eedf5-8a8f-4668-a911-e2bf66f8221e", "scryfall_uri": "https://scryfall.com/card/mrd/88/detonate?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/2/3/237eedf5-8a8f-4668-a911-e2bf66f8221e.jpg?1562138293", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/3/237eedf5-8a8f-4668-a911-e2bf66f8221e.jpg?1562138293", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/2/3/237eedf5-8a8f-4668-a911-e2bf66f8221e.jpg?1562138293", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/2/3/237eedf5-8a8f-4668-a911-e2bf66f8221e.png?1562138293", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/3/237eedf5-8a8f-4668-a911-e2bf66f8221e.jpg?1562138293", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/2/3/237eedf5-8a8f-4668-a911-e2bf66f8221e.jpg?1562138293"}, "mana_cost": "{X}{R}", "cmc": 1.0, "type_line": "Sorcery", "oracle_text": "Destroy target artifact with mana value X. It can't be regenerated. Detonate deals X damage to that artifact's controller.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "1d4f90ba-8d4a-4ee5-bc2f-e2d6bffe4955", "set": "mrd", "set_name": "Mirrodin", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/1d4f90ba-8d4a-4ee5-bc2f-e2d6bffe4955", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Amrd&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/mrd?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/237eedf5-8a8f-4668-a911-e2bf66f8221e/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Adaa90a75-c600-41bd-9311-ec21cf51480b&unique=prints", "collector_number": "88", "digital": false, "rarity": "uncommon", "flavor_text": "The goblins have forty-two different words for \"ow.\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Dave Dorman", "artist_ids": ["9235458b-ce92-45bd-a430-a72ecd8e6176"], "illustration_id": "f5bc90d7-a9f6-4f2c-bd72-2aff1e866af2", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 16385, "prices": {"usd": "0.14", "usd_foil": "0.40", "usd_etched": null, "eur": "0.11", "eur_foil": "0.13", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=46110", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Detonate&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Detonate&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Detonate"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/11408?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Detonate&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/19965?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "ffd7eb90-ae95-49df-898a-9510187bce1c", "oracle_id": "daa90a75-c600-41bd-9311-ec21cf51480b", "multiverse_ids": [1059], "tcgplayer_id": 3277, "cardmarket_id": 6960, "name": "Detonate", "lang": "en", "released_at": "1994-03-04", "uri": "https://api.scryfall.com/cards/ffd7eb90-ae95-49df-898a-9510187bce1c", "scryfall_uri": "https://scryfall.com/card/atq/24/detonate?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/f/f/ffd7eb90-ae95-49df-898a-9510187bce1c.jpg?1562949167", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/f/ffd7eb90-ae95-49df-898a-9510187bce1c.jpg?1562949167", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/f/f/ffd7eb90-ae95-49df-898a-9510187bce1c.jpg?1562949167", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/f/f/ffd7eb90-ae95-49df-898a-9510187bce1c.png?1562949167", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/f/ffd7eb90-ae95-49df-898a-9510187bce1c.jpg?1562949167", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/f/f/ffd7eb90-ae95-49df-898a-9510187bce1c.jpg?1562949167"}, "mana_cost": "{X}{R}", "cmc": 1.0, "type_line": "Sorcery", "oracle_text": "Destroy target artifact with mana value X. It can't be regenerated. Detonate deals X damage to that artifact's controller.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "legal", "premodern": "legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "819f9678-87dd-4aba-a47b-2d553bfea21f", "set": "atq", "set_name": "Antiquities", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/819f9678-87dd-4aba-a47b-2d553bfea21f", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aatq&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/atq?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/ffd7eb90-ae95-49df-898a-9510187bce1c/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Adaa90a75-c600-41bd-9311-ec21cf51480b&unique=prints", "collector_number": "24", "digital": false, "rarity": "uncommon", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Randy Asplund-Faith", "artist_ids": ["d2da8270-bbdb-4c49-b84d-bf5a380e8a78"], "illustration_id": "d3fe8be5-1227-4440-b042-5922f4c9c199", "border_color": "black", "frame": "1993", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 16385, "prices": {"usd": "8.80", "usd_foil": null, "usd_etched": null, "eur": "9.00", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=1059", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Detonate&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Detonate&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Detonate"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/3277?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Detonate&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Detonate&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "bfe7c990-a34b-475e-a612-447c22f998d3", "oracle_id": "90b3e2df-182d-4dad-9934-597a048fefc6", "multiverse_ids": [24631], "mtgo_id": 14271, "mtgo_foil_id": 14272, "tcgplayer_id": 7292, "cardmarket_id": 3981, "name": "Devastate", "lang": "en", "released_at": "2000-06-05", "uri": "https://api.scryfall.com/cards/bfe7c990-a34b-475e-a612-447c22f998d3", "scryfall_uri": "https://scryfall.com/card/pcy/87/devastate?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/b/f/bfe7c990-a34b-475e-a612-447c22f998d3.jpg?1562930849", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/f/bfe7c990-a34b-475e-a612-447c22f998d3.jpg?1562930849", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/b/f/bfe7c990-a34b-475e-a612-447c22f998d3.jpg?1562930849", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/b/f/bfe7c990-a34b-475e-a612-447c22f998d3.png?1562930849", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/f/bfe7c990-a34b-475e-a612-447c22f998d3.jpg?1562930849", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/b/f/bfe7c990-a34b-475e-a612-447c22f998d3.jpg?1562930849"}, "mana_cost": "{3}{R}{R}", "cmc": 5.0, "type_line": "Sorcery", "oracle_text": "Destroy target land. Devastate deals 1 damage to each creature and each player.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "c233bd36-57c0-4aa2-ae6c-7aeabfb4e3ce", "set": "pcy", "set_name": "Prophecy", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/c233bd36-57c0-4aa2-ae6c-7aeabfb4e3ce", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Apcy&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/pcy?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/bfe7c990-a34b-475e-a612-447c22f998d3/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A90b3e2df-182d-4dad-9934-597a048fefc6&unique=prints", "collector_number": "87", "digital": false, "rarity": "common", "flavor_text": "\"You're willing to die for your homeland. I'm willing to kill for it.\"\n\u2014Latulla, Keldon overseer", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Greg Staples", "artist_ids": ["93d65564-bf00-447b-8406-e2031f03b6b1"], "illustration_id": "6f56cfd0-03a2-42b4-8f75-672cceae273a", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 19997, "prices": {"usd": "0.07", "usd_foil": "1.39", "usd_etched": null, "eur": "0.02", "eur_foil": "0.74", "tix": "0.04"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=24631", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Devastate&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Devastate&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Devastate"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/7292?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Devastate&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/14271?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "c80596a4-b464-4b9e-8186-94a1c44838eb", "oracle_id": "ee9f0b29-8a54-4cb8-8e2c-7bd67c2184ba", "multiverse_ids": [247419], "mtgo_id": 42818, "mtgo_foil_id": 42819, "tcgplayer_id": 52183, "cardmarket_id": 250398, "name": "Devil's Play", "lang": "en", "released_at": "2011-09-30", "uri": "https://api.scryfall.com/cards/c80596a4-b464-4b9e-8186-94a1c44838eb", "scryfall_uri": "https://scryfall.com/card/isd/140/devils-play?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/c/8/c80596a4-b464-4b9e-8186-94a1c44838eb.jpg?1562836883", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/8/c80596a4-b464-4b9e-8186-94a1c44838eb.jpg?1562836883", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/c/8/c80596a4-b464-4b9e-8186-94a1c44838eb.jpg?1562836883", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/c/8/c80596a4-b464-4b9e-8186-94a1c44838eb.png?1562836883", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/8/c80596a4-b464-4b9e-8186-94a1c44838eb.jpg?1562836883", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/c/8/c80596a4-b464-4b9e-8186-94a1c44838eb.jpg?1562836883"}, "mana_cost": "{X}{R}", "cmc": 1.0, "type_line": "Sorcery", "oracle_text": "Devil's Play deals X damage to any target.\nFlashback {X}{R}{R}{R} (You may cast this card from your graveyard for its flashback cost. Then exile it.)", "colors": ["R"], "color_identity": ["R"], "keywords": ["Flashback"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "d1026945-2969-42b9-be53-f941405a58cb", "set": "isd", "set_name": "Innistrad", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/d1026945-2969-42b9-be53-f941405a58cb", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aisd&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/isd?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/c80596a4-b464-4b9e-8186-94a1c44838eb/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aee9f0b29-8a54-4cb8-8e2c-7bd67c2184ba&unique=prints", "collector_number": "140", "digital": false, "rarity": "rare", "flavor_text": "A devil's hands are never idle.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Austin Hsu", "artist_ids": ["c5e439d8-b3db-4c13-ae93-4e129e3b9478"], "illustration_id": "836ddd52-4a85-4ce3-ad94-1ac12f95c12e", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 5020, "penny_rank": 2978, "prices": {"usd": "0.19", "usd_foil": "0.78", "usd_etched": null, "eur": "0.10", "eur_foil": "0.49", "tix": "0.01"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=247419", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Devil%27s+Play&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Devil%27s+Play&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Devil%27s+Play"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/52183?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Devil%27s+Play&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/42818?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "e6dd2f9e-16c2-4d25-98c4-0017ccd42228", "oracle_id": "ee9f0b29-8a54-4cb8-8e2c-7bd67c2184ba", "multiverse_ids": [], "tcgplayer_id": 57076, "cardmarket_id": 251072, "name": "Devil's Play", "lang": "en", "released_at": "2011-09-24", "uri": "https://api.scryfall.com/cards/e6dd2f9e-16c2-4d25-98c4-0017ccd42228", "scryfall_uri": "https://scryfall.com/card/pisd/140/devils-play?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/e/6/e6dd2f9e-16c2-4d25-98c4-0017ccd42228.jpg?1561758340", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/6/e6dd2f9e-16c2-4d25-98c4-0017ccd42228.jpg?1561758340", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/e/6/e6dd2f9e-16c2-4d25-98c4-0017ccd42228.jpg?1561758340", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/e/6/e6dd2f9e-16c2-4d25-98c4-0017ccd42228.png?1561758340", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/6/e6dd2f9e-16c2-4d25-98c4-0017ccd42228.jpg?1561758340", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/e/6/e6dd2f9e-16c2-4d25-98c4-0017ccd42228.jpg?1561758340"}, "mana_cost": "{X}{R}", "cmc": 1.0, "type_line": "Sorcery", "oracle_text": "Devil's Play deals X damage to any target.\nFlashback {X}{R}{R}{R} (You may cast this card from your graveyard for its flashback cost. Then exile it.)", "colors": ["R"], "color_identity": ["R"], "keywords": ["Flashback"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": true, "nonfoil": false, "finishes": ["foil"], "oversized": false, "promo": true, "reprint": true, "variation": false, "set_id": "94d2e8a2-5ae8-4b7e-a7db-6770d5cfa6fd", "set": "pisd", "set_name": "Innistrad Promos", "set_type": "promo", "set_uri": "https://api.scryfall.com/sets/94d2e8a2-5ae8-4b7e-a7db-6770d5cfa6fd", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Apisd&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/pisd?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/e6dd2f9e-16c2-4d25-98c4-0017ccd42228/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aee9f0b29-8a54-4cb8-8e2c-7bd67c2184ba&unique=prints", "collector_number": "140", "digital": false, "rarity": "rare", "watermark": "colorpie", "flavor_text": "A devil's hands are never idle.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Raymond Swanland", "artist_ids": ["e956bacc-077d-4c12-b6bc-ba798b718af9"], "illustration_id": "8ea40371-ce2b-43e5-a735-79a0250ec17b", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "promo_types": ["setpromo", "buyabox"], "edhrec_rank": 5020, "penny_rank": 2978, "prices": {"usd": null, "usd_foil": "1.57", "usd_etched": null, "eur": null, "eur_foil": "0.25", "tix": null}, "related_uris": {"tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Devil%27s+Play&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Devil%27s+Play&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Devil%27s+Play"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/57076?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Devil%27s+Play&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Devil%27s+Play&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "166b0d75-824c-4c04-833b-7f7c69569a18", "oracle_id": "54e34440-c890-4a07-83c6-63a2f7a65639", "multiverse_ids": [452846], "mtgo_id": 69565, "arena_id": 68557, "tcgplayer_id": 175190, "cardmarket_id": 363620, "name": "Direct Current", "lang": "en", "released_at": "2018-10-05", "uri": "https://api.scryfall.com/cards/166b0d75-824c-4c04-833b-7f7c69569a18", "scryfall_uri": "https://scryfall.com/card/grn/96/direct-current?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/1/6/166b0d75-824c-4c04-833b-7f7c69569a18.jpg?1572893128", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/6/166b0d75-824c-4c04-833b-7f7c69569a18.jpg?1572893128", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/1/6/166b0d75-824c-4c04-833b-7f7c69569a18.jpg?1572893128", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/1/6/166b0d75-824c-4c04-833b-7f7c69569a18.png?1572893128", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/6/166b0d75-824c-4c04-833b-7f7c69569a18.jpg?1572893128", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/1/6/166b0d75-824c-4c04-833b-7f7c69569a18.jpg?1572893128"}, "mana_cost": "{1}{R}{R}", "cmc": 3.0, "type_line": "Sorcery", "oracle_text": "Direct Current deals 2 damage to any target.\nJump-start (You may cast this card from your graveyard by discarding a card in addition to paying its other costs. Then exile this card.)", "colors": ["R"], "color_identity": ["R"], "keywords": ["Jump-start"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "597c6d4a-8212-4903-a6af-12c4ae9e13f0", "set": "grn", "set_name": "Guilds of Ravnica", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/597c6d4a-8212-4903-a6af-12c4ae9e13f0", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Agrn&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/grn?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/166b0d75-824c-4c04-833b-7f7c69569a18/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A54e34440-c890-4a07-83c6-63a2f7a65639&unique=prints", "collector_number": "96", "digital": false, "rarity": "common", "watermark": "izzet", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Dan Scott", "artist_ids": ["f852fa13-137e-40f2-bbc1-0f01df09c0e0"], "illustration_id": "2a2817c7-0d52-41ee-8719-24a9bdc6d75f", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 16238, "penny_rank": 11135, "prices": {"usd": "0.01", "usd_foil": "0.10", "usd_etched": null, "eur": "0.11", "eur_foil": "0.24", "tix": "0.04"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=452846", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Direct+Current&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Direct+Current&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Direct+Current"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/175190?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Direct+Current&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/69565?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "8712c49e-f171-4669-bed9-87575a37af11", "oracle_id": "92d6af2f-728e-4e41-87cb-5c90878a2f2f", "multiverse_ids": [188], "tcgplayer_id": 1090, "cardmarket_id": 5374, "name": "Disintegrate", "lang": "en", "released_at": "1993-08-05", "uri": "https://api.scryfall.com/cards/8712c49e-f171-4669-bed9-87575a37af11", "scryfall_uri": "https://scryfall.com/card/lea/140/disintegrate?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/8/7/8712c49e-f171-4669-bed9-87575a37af11.jpg?1559591574", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/7/8712c49e-f171-4669-bed9-87575a37af11.jpg?1559591574", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/8/7/8712c49e-f171-4669-bed9-87575a37af11.jpg?1559591574", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/8/7/8712c49e-f171-4669-bed9-87575a37af11.png?1559591574", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/7/8712c49e-f171-4669-bed9-87575a37af11.jpg?1559591574", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/8/7/8712c49e-f171-4669-bed9-87575a37af11.jpg?1559591574"}, "mana_cost": "{X}{R}", "cmc": 1.0, "type_line": "Sorcery", "oracle_text": "Disintegrate deals X damage to any target. If it's a creature, it can't be regenerated this turn, and if it would die this turn, exile it instead.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "legal", "premodern": "legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "288bd996-960e-448b-a187-9504c1930c2c", "set": "lea", "set_name": "Limited Edition Alpha", "set_type": "core", "set_uri": "https://api.scryfall.com/sets/288bd996-960e-448b-a187-9504c1930c2c", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Alea&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/lea?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/8712c49e-f171-4669-bed9-87575a37af11/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A92d6af2f-728e-4e41-87cb-5c90878a2f2f&unique=prints", "collector_number": "140", "digital": false, "rarity": "common", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Anson Maddocks", "artist_ids": ["634430a7-b5c3-4e4a-b2ac-164e084e47c9"], "illustration_id": "04b36f31-f3a8-4341-950b-97aebad43e3a", "border_color": "black", "frame": "1993", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 11135, "penny_rank": 13720, "prices": {"usd": "121.99", "usd_foil": null, "usd_etched": null, "eur": "70.00", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=188", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Disintegrate&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Disintegrate&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Disintegrate"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/1090?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Disintegrate&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Disintegrate&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "93ca09e6-2f23-4457-80ab-c7806112888b", "oracle_id": "92d6af2f-728e-4e41-87cb-5c90878a2f2f", "multiverse_ids": [], "mtgo_id": 62429, "name": "Disintegrate", "lang": "en", "released_at": "2017-05-31", "uri": "https://api.scryfall.com/cards/93ca09e6-2f23-4457-80ab-c7806112888b", "scryfall_uri": "https://scryfall.com/card/prm/62429/disintegrate?utm_source=api", "layout": "normal", "highres_image": false, "image_status": "lowres", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/9/3/93ca09e6-2f23-4457-80ab-c7806112888b.jpg?1562546639", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/3/93ca09e6-2f23-4457-80ab-c7806112888b.jpg?1562546639", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/9/3/93ca09e6-2f23-4457-80ab-c7806112888b.jpg?1562546639", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/9/3/93ca09e6-2f23-4457-80ab-c7806112888b.png?1562546639", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/3/93ca09e6-2f23-4457-80ab-c7806112888b.jpg?1562546639", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/9/3/93ca09e6-2f23-4457-80ab-c7806112888b.jpg?1562546639"}, "mana_cost": "{X}{R}", "cmc": 1.0, "type_line": "Sorcery", "oracle_text": "Disintegrate deals X damage to any target. If it's a creature, it can't be regenerated this turn, and if it would die this turn, exile it instead.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["mtgo"], "reserved": false, "foil": true, "nonfoil": false, "finishes": ["foil"], "oversized": false, "promo": true, "reprint": true, "variation": false, "set_id": "638940fb-6be9-4be3-b83f-68d3902fbbe5", "set": "prm", "set_name": "Magic Online Promos", "set_type": "promo", "set_uri": "https://api.scryfall.com/sets/638940fb-6be9-4be3-b83f-68d3902fbbe5", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aprm&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/prm?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/93ca09e6-2f23-4457-80ab-c7806112888b/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A92d6af2f-728e-4e41-87cb-5c90878a2f2f&unique=prints", "collector_number": "62429", "digital": true, "rarity": "uncommon", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Dave Kendall", "artist_ids": ["8a5540a8-18c9-4fa9-802c-59d6866114d5"], "illustration_id": "8a59fa78-4d45-4732-b442-79252bb3c06b", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "edhrec_rank": 11135, "penny_rank": 13720, "prices": {"usd": null, "usd_foil": null, "usd_etched": null, "eur": null, "eur_foil": null, "tix": null}, "related_uris": {"tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Disintegrate&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Disintegrate&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Disintegrate"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/search/magic/product?productLineName=magic&q=Disintegrate&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall&view=grid", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Disintegrate&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/62429?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "ed8b3def-30ee-4dd2-9a25-ecf7d5663f96", "oracle_id": "55bc3a55-1458-46fa-8623-29317e4a0ecd", "multiverse_ids": [8812], "tcgplayer_id": 849, "cardmarket_id": 11889, "name": "Double Deal", "lang": "en", "released_at": "1998-08-11", "uri": "https://api.scryfall.com/cards/ed8b3def-30ee-4dd2-9a25-ecf7d5663f96", "scryfall_uri": "https://scryfall.com/card/ugl/42/double-deal?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/e/d/ed8b3def-30ee-4dd2-9a25-ecf7d5663f96.jpg?1562799187", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/d/ed8b3def-30ee-4dd2-9a25-ecf7d5663f96.jpg?1562799187", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/e/d/ed8b3def-30ee-4dd2-9a25-ecf7d5663f96.jpg?1562799187", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/e/d/ed8b3def-30ee-4dd2-9a25-ecf7d5663f96.png?1562799187", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/d/ed8b3def-30ee-4dd2-9a25-ecf7d5663f96.jpg?1562799187", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/e/d/ed8b3def-30ee-4dd2-9a25-ecf7d5663f96.jpg?1562799187"}, "mana_cost": "{4}{R}", "cmc": 5.0, "type_line": "Sorcery", "oracle_text": "Choose another player. Double Deal deals 3 damage to that player. At the beginning of the first upkeep in your next game with that player, Double Deal deals 3 damage to the player.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "not_legal", "pauper": "not_legal", "vintage": "not_legal", "penny": "not_legal", "commander": "not_legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "not_legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "3404fc78-6678-4cf4-bd39-4c0be3bb7baf", "set": "ugl", "set_name": "Unglued", "set_type": "funny", "set_uri": "https://api.scryfall.com/sets/3404fc78-6678-4cf4-bd39-4c0be3bb7baf", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Augl&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ugl?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/ed8b3def-30ee-4dd2-9a25-ecf7d5663f96/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A55bc3a55-1458-46fa-8623-29317e4a0ecd&unique=prints", "collector_number": "42", "digital": false, "rarity": "common", "flavor_text": "\"I'm facing defeat, . . .\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Edward P. Beard, Jr.", "artist_ids": ["b845b8ee-aeea-4822-bcf9-7230625ac95c"], "illustration_id": "973882c9-67d4-4f72-ba4f-25bdceff739e", "border_color": "silver", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "prices": {"usd": "0.17", "usd_foil": null, "usd_etched": null, "eur": "0.19", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=8812", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Double+Deal&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Double+Deal&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Double+Deal"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/849?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Double+Deal&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Double+Deal&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "6cf5591c-46e3-4904-8b4e-4f1f84d3118f", "oracle_id": "843af5d3-447e-40e4-a562-f5a7ed09ca3e", "multiverse_ids": [394539], "mtgo_id": 56022, "mtgo_foil_id": 56023, "tcgplayer_id": 96606, "cardmarket_id": 273202, "name": "Draconic Roar", "lang": "en", "released_at": "2015-03-27", "uri": "https://api.scryfall.com/cards/6cf5591c-46e3-4904-8b4e-4f1f84d3118f", "scryfall_uri": "https://scryfall.com/card/dtk/134/draconic-roar?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/6/c/6cf5591c-46e3-4904-8b4e-4f1f84d3118f.jpg?1562787954", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/c/6cf5591c-46e3-4904-8b4e-4f1f84d3118f.jpg?1562787954", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/6/c/6cf5591c-46e3-4904-8b4e-4f1f84d3118f.jpg?1562787954", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/6/c/6cf5591c-46e3-4904-8b4e-4f1f84d3118f.png?1562787954", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/c/6cf5591c-46e3-4904-8b4e-4f1f84d3118f.jpg?1562787954", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/6/c/6cf5591c-46e3-4904-8b4e-4f1f84d3118f.jpg?1562787954"}, "mana_cost": "{1}{R}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "As an additional cost to cast this spell, you may reveal a Dragon card from your hand.\nDraconic Roar deals 3 damage to target creature. If you revealed a Dragon card or controlled a Dragon as you cast this spell, Draconic Roar deals 3 damage to that creature's controller.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "7e72625f-f320-4552-a719-d11e2f1853bd", "set": "dtk", "set_name": "Dragons of Tarkir", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/7e72625f-f320-4552-a719-d11e2f1853bd", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Adtk&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/dtk?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/6cf5591c-46e3-4904-8b4e-4f1f84d3118f/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A843af5d3-447e-40e4-a562-f5a7ed09ca3e&unique=prints", "collector_number": "134", "digital": false, "rarity": "uncommon", "watermark": "atarka", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Kev Walker", "artist_ids": ["f366a0ee-a0cd-466d-ba6a-90058c7a31a6"], "illustration_id": "fbb4a3a4-4879-49cb-af63-c132fe67f3db", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 12099, "penny_rank": 2718, "prices": {"usd": "0.19", "usd_foil": "0.74", "usd_etched": null, "eur": "0.02", "eur_foil": "0.40", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=394539", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Draconic+Roar&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Draconic+Roar&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Draconic+Roar"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/96606?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Draconic+Roar&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/56022?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "0cb504a0-1dfb-49d0-84c3-7bd318d55481", "oracle_id": "47e191f7-6314-4875-b5ee-57e5daf089c4", "multiverse_ids": [513574], "mtgo_id": 88671, "arena_id": 76490, "tcgplayer_id": 235876, "cardmarket_id": 557510, "name": "Dragon's Approach", "lang": "en", "released_at": "2021-04-23", "uri": "https://api.scryfall.com/cards/0cb504a0-1dfb-49d0-84c3-7bd318d55481", "scryfall_uri": "https://scryfall.com/card/stx/97/dragons-approach?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/0/c/0cb504a0-1dfb-49d0-84c3-7bd318d55481.jpg?1624591696", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/c/0cb504a0-1dfb-49d0-84c3-7bd318d55481.jpg?1624591696", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/0/c/0cb504a0-1dfb-49d0-84c3-7bd318d55481.jpg?1624591696", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/0/c/0cb504a0-1dfb-49d0-84c3-7bd318d55481.png?1624591696", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/c/0cb504a0-1dfb-49d0-84c3-7bd318d55481.jpg?1624591696", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/0/c/0cb504a0-1dfb-49d0-84c3-7bd318d55481.jpg?1624591696"}, "mana_cost": "{2}{R}", "cmc": 3.0, "type_line": "Sorcery", "oracle_text": "Dragon's Approach deals 3 damage to each opponent. You may exile Dragon's Approach and four cards named Dragon's Approach from your graveyard. If you do, search your library for a Dragon creature card, put it onto the battlefield, then shuffle.\nA deck can have any number of cards named Dragon's Approach.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "541c3c28-8747-40e5-a231-8e8f33234859", "set": "stx", "set_name": "Strixhaven: School of Mages", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/541c3c28-8747-40e5-a231-8e8f33234859", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Astx&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/stx?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/0cb504a0-1dfb-49d0-84c3-7bd318d55481/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A47e191f7-6314-4875-b5ee-57e5daf089c4&unique=prints", "collector_number": "97", "digital": false, "rarity": "common", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Andrew Mar", "artist_ids": ["adad79bf-cd52-456a-b170-740ed8bff0fc"], "illustration_id": "5a0935fd-ac2b-4822-a3c0-b2643df994b3", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 4944, "penny_rank": 7054, "preview": {"source": "eSports.com", "source_uri": "https://www.esports.com/de/magic-the-gathering-strixhaven-karten-vorschau-neue-optionen-fuer-rot-19", "previewed_at": "2021-03-30"}, "prices": {"usd": "2.59", "usd_foil": "2.15", "usd_etched": null, "eur": "0.72", "eur_foil": "0.95", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=513574", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Dragon%27s+Approach&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Dragon%27s+Approach&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Dragon%27s+Approach"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/235876?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Dragon%27s+Approach&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/88671?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "41a9b3b2-4ac9-4e50-bcd2-8831d0739e85", "oracle_id": "e75ba79f-4cc2-4ede-8641-559ab94e7e36", "multiverse_ids": [3839], "tcgplayer_id": 2115, "cardmarket_id": 9389, "name": "Drain Life", "lang": "en", "released_at": "1997-03-24", "uri": "https://api.scryfall.com/cards/41a9b3b2-4ac9-4e50-bcd2-8831d0739e85", "scryfall_uri": "https://scryfall.com/card/5ed/156/drain-life?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/4/1/41a9b3b2-4ac9-4e50-bcd2-8831d0739e85.jpg?1562590638", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/1/41a9b3b2-4ac9-4e50-bcd2-8831d0739e85.jpg?1562590638", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/4/1/41a9b3b2-4ac9-4e50-bcd2-8831d0739e85.jpg?1562590638", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/4/1/41a9b3b2-4ac9-4e50-bcd2-8831d0739e85.png?1562590638", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/1/41a9b3b2-4ac9-4e50-bcd2-8831d0739e85.jpg?1562590638", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/4/1/41a9b3b2-4ac9-4e50-bcd2-8831d0739e85.jpg?1562590638"}, "mana_cost": "{X}{1}{B}", "cmc": 2.0, "type_line": "Sorcery", "oracle_text": "Spend only black mana on X.\nDrain Life deals X damage to any target. You gain life equal to the damage dealt, but not more life than the player's life total before the damage was dealt, the planeswalker's loyalty before the damage was dealt, or the creature's toughness.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "5afd2f4b-8309-4f45-a2b2-3785018474cb", "set": "5ed", "set_name": "Fifth Edition", "set_type": "core", "set_uri": "https://api.scryfall.com/sets/5afd2f4b-8309-4f45-a2b2-3785018474cb", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3A5ed&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/5ed?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/41a9b3b2-4ac9-4e50-bcd2-8831d0739e85/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ae75ba79f-4cc2-4ede-8641-559ab94e7e36&unique=prints", "collector_number": "156", "digital": false, "rarity": "common", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Andrew Robinson", "artist_ids": ["cb577db7-7f47-4f78-8682-6eaef8a77bd1"], "illustration_id": "003346b4-2687-455e-8f6c-705bad72932b", "border_color": "white", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 10172, "penny_rank": 2487, "prices": {"usd": "0.22", "usd_foil": null, "usd_etched": null, "eur": "0.10", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=3839", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Drain+Life&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Drain+Life&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Drain+Life"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/2115?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Drain+Life&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Drain+Life&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "e8f030a5-62c6-439d-93b6-43f2cf927a7f", "oracle_id": "e75ba79f-4cc2-4ede-8641-559ab94e7e36", "multiverse_ids": [3287], "mtgo_id": 6915, "mtgo_foil_id": 6916, "tcgplayer_id": 5035, "cardmarket_id": 8067, "name": "Drain Life", "lang": "en", "released_at": "1996-10-08", "uri": "https://api.scryfall.com/cards/e8f030a5-62c6-439d-93b6-43f2cf927a7f", "scryfall_uri": "https://scryfall.com/card/mir/118/drain-life?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/e/8/e8f030a5-62c6-439d-93b6-43f2cf927a7f.jpg?1562722390", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/8/e8f030a5-62c6-439d-93b6-43f2cf927a7f.jpg?1562722390", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/e/8/e8f030a5-62c6-439d-93b6-43f2cf927a7f.jpg?1562722390", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/e/8/e8f030a5-62c6-439d-93b6-43f2cf927a7f.png?1562722390", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/8/e8f030a5-62c6-439d-93b6-43f2cf927a7f.jpg?1562722390", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/e/8/e8f030a5-62c6-439d-93b6-43f2cf927a7f.jpg?1562722390"}, "mana_cost": "{X}{1}{B}", "cmc": 2.0, "type_line": "Sorcery", "oracle_text": "Spend only black mana on X.\nDrain Life deals X damage to any target. You gain life equal to the damage dealt, but not more life than the player's life total before the damage was dealt, the planeswalker's loyalty before the damage was dealt, or the creature's toughness.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "5f06acf3-8123-4a78-b2e7-089b0b775a4a", "set": "mir", "set_name": "Mirage", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/5f06acf3-8123-4a78-b2e7-089b0b775a4a", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Amir&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/mir?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/e8f030a5-62c6-439d-93b6-43f2cf927a7f/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ae75ba79f-4cc2-4ede-8641-559ab94e7e36&unique=prints", "collector_number": "118", "digital": false, "rarity": "common", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Richard Kane Ferguson", "artist_ids": ["191620ed-2361-444e-96a6-1fe7ce32ef3b"], "illustration_id": "c4297218-31cb-4bc6-80c5-c74f08279cfe", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 10172, "penny_rank": 2487, "prices": {"usd": "0.14", "usd_foil": null, "usd_etched": null, "eur": "0.49", "eur_foil": null, "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=3287", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Drain+Life&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Drain+Life&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Drain+Life"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/5035?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Drain+Life&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/6915?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "5d077a49-73d4-4958-b42a-31b814e110e8", "oracle_id": "e75ba79f-4cc2-4ede-8641-559ab94e7e36", "multiverse_ids": [61], "tcgplayer_id": 1093, "cardmarket_id": 5247, "name": "Drain Life", "lang": "en", "released_at": "1993-08-05", "uri": "https://api.scryfall.com/cards/5d077a49-73d4-4958-b42a-31b814e110e8", "scryfall_uri": "https://scryfall.com/card/lea/105/drain-life?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/5/d/5d077a49-73d4-4958-b42a-31b814e110e8.jpg?1559591706", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/d/5d077a49-73d4-4958-b42a-31b814e110e8.jpg?1559591706", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/5/d/5d077a49-73d4-4958-b42a-31b814e110e8.jpg?1559591706", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/5/d/5d077a49-73d4-4958-b42a-31b814e110e8.png?1559591706", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/d/5d077a49-73d4-4958-b42a-31b814e110e8.jpg?1559591706", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/5/d/5d077a49-73d4-4958-b42a-31b814e110e8.jpg?1559591706"}, "mana_cost": "{X}{1}{B}", "cmc": 2.0, "type_line": "Sorcery", "oracle_text": "Spend only black mana on X.\nDrain Life deals X damage to any target. You gain life equal to the damage dealt, but not more life than the player's life total before the damage was dealt, the planeswalker's loyalty before the damage was dealt, or the creature's toughness.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "legal", "premodern": "legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "288bd996-960e-448b-a187-9504c1930c2c", "set": "lea", "set_name": "Limited Edition Alpha", "set_type": "core", "set_uri": "https://api.scryfall.com/sets/288bd996-960e-448b-a187-9504c1930c2c", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Alea&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/lea?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/5d077a49-73d4-4958-b42a-31b814e110e8/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ae75ba79f-4cc2-4ede-8641-559ab94e7e36&unique=prints", "collector_number": "105", "digital": false, "rarity": "common", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Douglas Shuler", "artist_ids": ["a9ddb513-51c7-455c-ab8f-5b90aae9f75b"], "illustration_id": "7dffecb9-a7a1-4205-8541-cfc0daa9a88b", "border_color": "black", "frame": "1993", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 10172, "penny_rank": 2487, "prices": {"usd": "97.64", "usd_foil": null, "usd_etched": null, "eur": "80.00", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=61", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Drain+Life&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Drain+Life&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Drain+Life"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/1093?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Drain+Life&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Drain+Life&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "a142f369-8fdd-4dc8-b5d9-3493455cc588", "oracle_id": "980a9957-6b52-45c6-b847-f84974d5a653", "multiverse_ids": [4218], "tcgplayer_id": 657, "cardmarket_id": 9997, "name": "Dry Spell", "lang": "en", "released_at": "1997-05-01", "uri": "https://api.scryfall.com/cards/a142f369-8fdd-4dc8-b5d9-3493455cc588", "scryfall_uri": "https://scryfall.com/card/por/90/dry-spell?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/a/1/a142f369-8fdd-4dc8-b5d9-3493455cc588.jpg?1562447357", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/1/a142f369-8fdd-4dc8-b5d9-3493455cc588.jpg?1562447357", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/a/1/a142f369-8fdd-4dc8-b5d9-3493455cc588.jpg?1562447357", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/a/1/a142f369-8fdd-4dc8-b5d9-3493455cc588.png?1562447357", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/1/a142f369-8fdd-4dc8-b5d9-3493455cc588.jpg?1562447357", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/a/1/a142f369-8fdd-4dc8-b5d9-3493455cc588.jpg?1562447357"}, "mana_cost": "{1}{B}", "cmc": 2.0, "type_line": "Sorcery", "oracle_text": "Dry Spell deals 1 damage to each creature and each player.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "478c47df-5058-4ce6-830e-7e80732b2ca9", "set": "por", "set_name": "Portal", "set_type": "starter", "set_uri": "https://api.scryfall.com/sets/478c47df-5058-4ce6-830e-7e80732b2ca9", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Apor&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/por?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/a142f369-8fdd-4dc8-b5d9-3493455cc588/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A980a9957-6b52-45c6-b847-f84974d5a653&unique=prints", "collector_number": "90", "digital": false, "rarity": "uncommon", "flavor_text": "A fist of dust to line your throat, a bowl of sand to fill your belly.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Roger Raupp", "artist_ids": ["79d6f296-1948-4a24-a2ce-a76e89057f23"], "illustration_id": "9ca8dbc5-f2af-4240-bd86-f8ebcf4ddfe0", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 17430, "penny_rank": 7503, "prices": {"usd": "0.28", "usd_foil": null, "usd_etched": null, "eur": "0.19", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=4218", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Dry+Spell&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Dry+Spell&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Dry+Spell"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/657?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Dry+Spell&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Dry+Spell&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "547c10ea-8ace-4496-8b99-61863c0cec1b", "oracle_id": "980a9957-6b52-45c6-b847-f84974d5a653", "multiverse_ids": [2916], "tcgplayer_id": 4482, "cardmarket_id": 7719, "name": "Dry Spell", "lang": "en", "released_at": "1995-10-01", "uri": "https://api.scryfall.com/cards/547c10ea-8ace-4496-8b99-61863c0cec1b", "scryfall_uri": "https://scryfall.com/card/hml/46a/dry-spell?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/5/4/547c10ea-8ace-4496-8b99-61863c0cec1b.jpg?1562587287", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/4/547c10ea-8ace-4496-8b99-61863c0cec1b.jpg?1562587287", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/5/4/547c10ea-8ace-4496-8b99-61863c0cec1b.jpg?1562587287", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/5/4/547c10ea-8ace-4496-8b99-61863c0cec1b.png?1562587287", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/4/547c10ea-8ace-4496-8b99-61863c0cec1b.jpg?1562587287", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/5/4/547c10ea-8ace-4496-8b99-61863c0cec1b.jpg?1562587287"}, "mana_cost": "{1}{B}", "cmc": 2.0, "type_line": "Sorcery", "oracle_text": "Dry Spell deals 1 damage to each creature and each player.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "5ac1f606-e682-46e9-ad0f-122a3783581b", "set": "hml", "set_name": "Homelands", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/5ac1f606-e682-46e9-ad0f-122a3783581b", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ahml&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/hml?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/547c10ea-8ace-4496-8b99-61863c0cec1b/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A980a9957-6b52-45c6-b847-f84974d5a653&unique=prints", "collector_number": "46a", "digital": false, "rarity": "common", "flavor_text": "\"Wherever water is lacking, all things suffer.\"\n\u2014Autumn Willow", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Brian Sn\u00f5ddy", "artist_ids": ["770b4e16-de76-49ed-949f-84e6d2e06d25"], "illustration_id": "4ae1dccc-3671-404d-ba93-551f083fd989", "border_color": "black", "frame": "1993", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 17430, "penny_rank": 7503, "prices": {"usd": "0.09", "usd_foil": null, "usd_etched": null, "eur": "0.16", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=2916", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Dry+Spell&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Dry+Spell&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Dry+Spell"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/4482?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Dry+Spell&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Dry+Spell&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "997ea663-40a1-49b7-80f1-2e1febc1b6fa", "oracle_id": "980a9957-6b52-45c6-b847-f84974d5a653", "multiverse_ids": [2917], "tcgplayer_id": 18275, "cardmarket_id": 7720, "name": "Dry Spell", "lang": "en", "released_at": "1995-10-01", "uri": "https://api.scryfall.com/cards/997ea663-40a1-49b7-80f1-2e1febc1b6fa", "scryfall_uri": "https://scryfall.com/card/hml/46b/dry-spell?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/9/9/997ea663-40a1-49b7-80f1-2e1febc1b6fa.jpg?1562587769", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/9/997ea663-40a1-49b7-80f1-2e1febc1b6fa.jpg?1562587769", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/9/9/997ea663-40a1-49b7-80f1-2e1febc1b6fa.jpg?1562587769", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/9/9/997ea663-40a1-49b7-80f1-2e1febc1b6fa.png?1562587769", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/9/997ea663-40a1-49b7-80f1-2e1febc1b6fa.jpg?1562587769", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/9/9/997ea663-40a1-49b7-80f1-2e1febc1b6fa.jpg?1562587769"}, "mana_cost": "{1}{B}", "cmc": 2.0, "type_line": "Sorcery", "oracle_text": "Dry Spell deals 1 damage to each creature and each player.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "5ac1f606-e682-46e9-ad0f-122a3783581b", "set": "hml", "set_name": "Homelands", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/5ac1f606-e682-46e9-ad0f-122a3783581b", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ahml&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/hml?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/997ea663-40a1-49b7-80f1-2e1febc1b6fa/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A980a9957-6b52-45c6-b847-f84974d5a653&unique=prints", "collector_number": "46b", "digital": false, "rarity": "common", "flavor_text": "\"My soul thirsts for Serra's salvation, as does my body for life's breath.\"\n\u2014Ihsan's Shade", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Brian Sn\u00f5ddy", "artist_ids": ["770b4e16-de76-49ed-949f-84e6d2e06d25"], "illustration_id": "349ff7f9-637a-4a03-9234-2766e8140164", "border_color": "black", "frame": "1993", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 17430, "penny_rank": 7503, "prices": {"usd": "0.12", "usd_foil": null, "usd_etched": null, "eur": "0.08", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=2917", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Dry+Spell&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Dry+Spell&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Dry+Spell"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/18275?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Dry+Spell&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Dry+Spell&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "8f04dc5c-2764-42d0-974e-6d902222c138", "oracle_id": "9a40614b-50a3-422c-849e-53c8b7d3d204", "multiverse_ids": [11254], "mtgo_id": 15478, "mtgo_foil_id": 15479, "tcgplayer_id": 2881, "cardmarket_id": 2942, "name": "Earthquake", "lang": "en", "released_at": "2001-04-11", "uri": "https://api.scryfall.com/cards/8f04dc5c-2764-42d0-974e-6d902222c138", "scryfall_uri": "https://scryfall.com/card/7ed/180/earthquake?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/8/f/8f04dc5c-2764-42d0-974e-6d902222c138.jpg?1562242701", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/f/8f04dc5c-2764-42d0-974e-6d902222c138.jpg?1562242701", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/8/f/8f04dc5c-2764-42d0-974e-6d902222c138.jpg?1562242701", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/8/f/8f04dc5c-2764-42d0-974e-6d902222c138.png?1562242701", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/f/8f04dc5c-2764-42d0-974e-6d902222c138.jpg?1562242701", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/8/f/8f04dc5c-2764-42d0-974e-6d902222c138.jpg?1562242701"}, "mana_cost": "{X}{R}", "cmc": 1.0, "type_line": "Sorcery", "oracle_text": "Earthquake deals X damage to each creature without flying and each player.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "230f38aa-9511-4db8-a3aa-aeddbc3f7bb9", "set": "7ed", "set_name": "Seventh Edition", "set_type": "core", "set_uri": "https://api.scryfall.com/sets/230f38aa-9511-4db8-a3aa-aeddbc3f7bb9", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3A7ed&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/7ed?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/8f04dc5c-2764-42d0-974e-6d902222c138/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A9a40614b-50a3-422c-849e-53c8b7d3d204&unique=prints", "collector_number": "180", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Franz Vohwinkel", "artist_ids": ["3a243c17-3baa-4b53-9599-645311cd7d3d"], "illustration_id": "81a35fce-893f-4249-afef-3933d4935c0d", "border_color": "white", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 1437, "penny_rank": 2455, "prices": {"usd": "1.34", "usd_foil": "38.95", "usd_etched": null, "eur": "0.42", "eur_foil": "2.65", "tix": "0.11"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=11254", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Earthquake&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Earthquake&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Earthquake"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/2881?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Earthquake&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/15478?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "05126438-e806-43e6-bd81-233b629b4a1b", "oracle_id": "9a40614b-50a3-422c-849e-53c8b7d3d204", "multiverse_ids": [6609], "tcgplayer_id": 128, "cardmarket_id": 9914, "name": "Earthquake", "lang": "en", "released_at": "1998-06-24", "uri": "https://api.scryfall.com/cards/05126438-e806-43e6-bd81-233b629b4a1b", "scryfall_uri": "https://scryfall.com/card/p02/94/earthquake?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/0/5/05126438-e806-43e6-bd81-233b629b4a1b.jpg?1562896224", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/5/05126438-e806-43e6-bd81-233b629b4a1b.jpg?1562896224", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/0/5/05126438-e806-43e6-bd81-233b629b4a1b.jpg?1562896224", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/0/5/05126438-e806-43e6-bd81-233b629b4a1b.png?1562896224", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/5/05126438-e806-43e6-bd81-233b629b4a1b.jpg?1562896224", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/0/5/05126438-e806-43e6-bd81-233b629b4a1b.jpg?1562896224"}, "mana_cost": "{X}{R}", "cmc": 1.0, "type_line": "Sorcery", "oracle_text": "Earthquake deals X damage to each creature without flying and each player.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "ac67f18a-4f0e-407e-bab1-a9fe4f659565", "set": "p02", "set_name": "Portal Second Age", "set_type": "starter", "set_uri": "https://api.scryfall.com/sets/ac67f18a-4f0e-407e-bab1-a9fe4f659565", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ap02&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/p02?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/05126438-e806-43e6-bd81-233b629b4a1b/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A9a40614b-50a3-422c-849e-53c8b7d3d204&unique=prints", "collector_number": "94", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Jeffrey R. Busch", "artist_ids": ["b06664f7-1a9b-4b0c-b7d4-80df775d27a2"], "illustration_id": "507eb59a-fdb9-45c3-8c18-793bc4408203", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 1437, "penny_rank": 2455, "prices": {"usd": "6.88", "usd_foil": null, "usd_etched": null, "eur": "3.99", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=6609", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Earthquake&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Earthquake&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Earthquake"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/128?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Earthquake&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Earthquake&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "272f65a3-3c0c-417d-b5b6-276a643d643e", "oracle_id": "9a40614b-50a3-422c-849e-53c8b7d3d204", "multiverse_ids": [4335], "tcgplayer_id": 658, "cardmarket_id": 10114, "name": "Earthquake", "lang": "en", "released_at": "1997-05-01", "uri": "https://api.scryfall.com/cards/272f65a3-3c0c-417d-b5b6-276a643d643e", "scryfall_uri": "https://scryfall.com/card/por/124/earthquake?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/2/7/272f65a3-3c0c-417d-b5b6-276a643d643e.jpg?1562446144", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/7/272f65a3-3c0c-417d-b5b6-276a643d643e.jpg?1562446144", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/2/7/272f65a3-3c0c-417d-b5b6-276a643d643e.jpg?1562446144", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/2/7/272f65a3-3c0c-417d-b5b6-276a643d643e.png?1562446144", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/7/272f65a3-3c0c-417d-b5b6-276a643d643e.jpg?1562446144", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/2/7/272f65a3-3c0c-417d-b5b6-276a643d643e.jpg?1562446144"}, "mana_cost": "{X}{R}", "cmc": 1.0, "type_line": "Sorcery", "oracle_text": "Earthquake deals X damage to each creature without flying and each player.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "478c47df-5058-4ce6-830e-7e80732b2ca9", "set": "por", "set_name": "Portal", "set_type": "starter", "set_uri": "https://api.scryfall.com/sets/478c47df-5058-4ce6-830e-7e80732b2ca9", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Apor&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/por?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/272f65a3-3c0c-417d-b5b6-276a643d643e/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A9a40614b-50a3-422c-849e-53c8b7d3d204&unique=prints", "collector_number": "124", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Adrian Smith", "artist_ids": ["be42f6f3-66d4-4957-9f1e-0591f8b95364"], "illustration_id": "a19ba528-3ba5-468b-bba9-3952589c88b2", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 1437, "penny_rank": 2455, "prices": {"usd": "2.26", "usd_foil": null, "usd_etched": null, "eur": "0.95", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=4335", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Earthquake&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Earthquake&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Earthquake"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/658?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Earthquake&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Earthquake&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "01bde909-899d-4efc-aac5-57b69fa764db", "oracle_id": "9a40614b-50a3-422c-849e-53c8b7d3d204", "multiverse_ids": [4044], "tcgplayer_id": 2126, "cardmarket_id": 9595, "name": "Earthquake", "lang": "en", "released_at": "1997-03-24", "uri": "https://api.scryfall.com/cards/01bde909-899d-4efc-aac5-57b69fa764db", "scryfall_uri": "https://scryfall.com/card/5ed/223/earthquake?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/0/1/01bde909-899d-4efc-aac5-57b69fa764db.jpg?1562588740", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/1/01bde909-899d-4efc-aac5-57b69fa764db.jpg?1562588740", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/0/1/01bde909-899d-4efc-aac5-57b69fa764db.jpg?1562588740", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/0/1/01bde909-899d-4efc-aac5-57b69fa764db.png?1562588740", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/1/01bde909-899d-4efc-aac5-57b69fa764db.jpg?1562588740", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/0/1/01bde909-899d-4efc-aac5-57b69fa764db.jpg?1562588740"}, "mana_cost": "{X}{R}", "cmc": 1.0, "type_line": "Sorcery", "oracle_text": "Earthquake deals X damage to each creature without flying and each player.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "5afd2f4b-8309-4f45-a2b2-3785018474cb", "set": "5ed", "set_name": "Fifth Edition", "set_type": "core", "set_uri": "https://api.scryfall.com/sets/5afd2f4b-8309-4f45-a2b2-3785018474cb", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3A5ed&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/5ed?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/01bde909-899d-4efc-aac5-57b69fa764db/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A9a40614b-50a3-422c-849e-53c8b7d3d204&unique=prints", "collector_number": "223", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Richard Kane Ferguson", "artist_ids": ["191620ed-2361-444e-96a6-1fe7ce32ef3b"], "illustration_id": "f33d1a28-fb86-4731-992e-337ba588c2d1", "border_color": "white", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 1437, "penny_rank": 2455, "prices": {"usd": "1.69", "usd_foil": null, "usd_etched": null, "eur": "0.50", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=4044", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Earthquake&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Earthquake&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Earthquake"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/2126?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Earthquake&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Earthquake&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "e68ac362-6cdc-48a6-bdd3-4f8ea32add64", "oracle_id": "9a40614b-50a3-422c-849e-53c8b7d3d204", "multiverse_ids": [194], "tcgplayer_id": 1100, "cardmarket_id": 5380, "name": "Earthquake", "lang": "en", "released_at": "1993-08-05", "uri": "https://api.scryfall.com/cards/e68ac362-6cdc-48a6-bdd3-4f8ea32add64", "scryfall_uri": "https://scryfall.com/card/lea/146/earthquake?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/e/6/e68ac362-6cdc-48a6-bdd3-4f8ea32add64.jpg?1559591701", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/6/e68ac362-6cdc-48a6-bdd3-4f8ea32add64.jpg?1559591701", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/e/6/e68ac362-6cdc-48a6-bdd3-4f8ea32add64.jpg?1559591701", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/e/6/e68ac362-6cdc-48a6-bdd3-4f8ea32add64.png?1559591701", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/6/e68ac362-6cdc-48a6-bdd3-4f8ea32add64.jpg?1559591701", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/e/6/e68ac362-6cdc-48a6-bdd3-4f8ea32add64.jpg?1559591701"}, "mana_cost": "{X}{R}", "cmc": 1.0, "type_line": "Sorcery", "oracle_text": "Earthquake deals X damage to each creature without flying and each player.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "legal", "premodern": "legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "288bd996-960e-448b-a187-9504c1930c2c", "set": "lea", "set_name": "Limited Edition Alpha", "set_type": "core", "set_uri": "https://api.scryfall.com/sets/288bd996-960e-448b-a187-9504c1930c2c", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Alea&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/lea?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/e68ac362-6cdc-48a6-bdd3-4f8ea32add64/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A9a40614b-50a3-422c-849e-53c8b7d3d204&unique=prints", "collector_number": "146", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Dan Frazier", "artist_ids": ["059bba56-5feb-42e4-8c2e-e2f1e6ba11f9"], "illustration_id": "d7a7740b-7bd7-4c3f-b853-ff8d17f26992", "border_color": "black", "frame": "1993", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 1437, "penny_rank": 2455, "prices": {"usd": null, "usd_foil": null, "usd_etched": null, "eur": "849.99", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=194", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Earthquake&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Earthquake&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Earthquake"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/1100?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Earthquake&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Earthquake&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "5c63877b-cdab-4ce4-a1c0-c088eb62a57a", "oracle_id": "4a59d86e-405d-4c70-b2a5-c64f5cecfd9e", "multiverse_ids": [457243], "mtgo_id": 71198, "arena_id": 69227, "tcgplayer_id": 183060, "cardmarket_id": 368155, "name": "Electrodominance", "lang": "en", "released_at": "2019-01-25", "uri": "https://api.scryfall.com/cards/5c63877b-cdab-4ce4-a1c0-c088eb62a57a", "scryfall_uri": "https://scryfall.com/card/rna/99/electrodominance?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/5/c/5c63877b-cdab-4ce4-a1c0-c088eb62a57a.jpg?1584830858", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/c/5c63877b-cdab-4ce4-a1c0-c088eb62a57a.jpg?1584830858", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/5/c/5c63877b-cdab-4ce4-a1c0-c088eb62a57a.jpg?1584830858", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/5/c/5c63877b-cdab-4ce4-a1c0-c088eb62a57a.png?1584830858", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/c/5c63877b-cdab-4ce4-a1c0-c088eb62a57a.jpg?1584830858", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/5/c/5c63877b-cdab-4ce4-a1c0-c088eb62a57a.jpg?1584830858"}, "mana_cost": "{X}{R}{R}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Electrodominance deals X damage to any target. You may cast a spell with mana value X or less from your hand without paying its mana cost.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "97a7fd84-8d89-45a3-b48b-c951f6a3f9f1", "set": "rna", "set_name": "Ravnica Allegiance", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/97a7fd84-8d89-45a3-b48b-c951f6a3f9f1", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Arna&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/rna?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/5c63877b-cdab-4ce4-a1c0-c088eb62a57a/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A4a59d86e-405d-4c70-b2a5-c64f5cecfd9e&unique=prints", "collector_number": "99", "digital": false, "rarity": "rare", "flavor_text": "\"Basically, we turn a bunch of little lightnings into one big lightning.\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Dmitry Burmak", "artist_ids": ["9872f5c0-274a-48ce-a9ad-6f0d5654e29c"], "illustration_id": "41f988d7-98bd-47fc-8d73-fb907b12d896", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 1465, "preview": {"source": "Noxious", "source_uri": "https://youtu.be/Ft60UuCqPjs", "previewed_at": "2019-01-04"}, "prices": {"usd": "2.17", "usd_foil": "4.09", "usd_etched": null, "eur": "1.52", "eur_foil": "3.90", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=457243", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Electrodominance&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Electrodominance&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Electrodominance"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/183060?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Electrodominance&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/71198?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "36ba1ac9-ebb9-449d-bd3b-716631b112fb", "oracle_id": "794e1dcb-aa64-4824-8d7b-0c65fc3afa13", "multiverse_ids": [], "arena_id": 79944, "name": "Electrostatic Blast", "lang": "en", "released_at": "2021-12-09", "uri": "https://api.scryfall.com/cards/36ba1ac9-ebb9-449d-bd3b-716631b112fb", "scryfall_uri": "https://scryfall.com/card/ymid/39/electrostatic-blast?utm_source=api", "layout": "normal", "highres_image": false, "image_status": "lowres", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/3/6/36ba1ac9-ebb9-449d-bd3b-716631b112fb.jpg?1645416206", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/6/36ba1ac9-ebb9-449d-bd3b-716631b112fb.jpg?1645416206", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/3/6/36ba1ac9-ebb9-449d-bd3b-716631b112fb.jpg?1645416206", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/3/6/36ba1ac9-ebb9-449d-bd3b-716631b112fb.png?1645416206", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/6/36ba1ac9-ebb9-449d-bd3b-716631b112fb.jpg?1645416206", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/3/6/36ba1ac9-ebb9-449d-bd3b-716631b112fb.jpg?1645416206"}, "mana_cost": "{1}{R}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Electrostatic Blast deals 2 damage to any target. When you cast your next instant or sorcery spell, exile the top three cards of your library. You may play one of those cards until end of turn.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "not_legal", "pauper": "not_legal", "vintage": "not_legal", "penny": "not_legal", "commander": "not_legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "not_legal", "duel": "not_legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "8a673262-8745-452d-820a-03d5c4a4f135", "set": "ymid", "set_name": "Alchemy: Innistrad", "set_type": "alchemy", "set_uri": "https://api.scryfall.com/sets/8a673262-8745-452d-820a-03d5c4a4f135", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aymid&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ymid?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/36ba1ac9-ebb9-449d-bd3b-716631b112fb/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A794e1dcb-aa64-4824-8d7b-0c65fc3afa13&unique=prints", "collector_number": "39", "digital": true, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Paolo Puggioni", "artist_ids": ["07430718-d702-49c0-86e8-837e174bc06f"], "illustration_id": "b5d1af6b-3b57-4e4a-ad75-811ff50c039f", "border_color": "black", "frame": "2015", "security_stamp": "arena", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "preview": {"source": "Stephen Croke", "source_uri": "https://twitter.com/crokeyz/status/1467857568592769029", "previewed_at": "2021-12-06"}, "prices": {"usd": null, "usd_foil": null, "usd_etched": null, "eur": null, "eur_foil": null, "tix": null}, "related_uris": {"tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Electrostatic+Blast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Electrostatic+Blast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Electrostatic+Blast"}}, {"object": "card", "id": "6a9eb72b-9ae2-4b64-bbb9-187446b5fd2f", "oracle_id": "1f300320-ad98-4812-b34b-54885a86aee9", "multiverse_ids": [29862], "mtgo_id": 17370, "mtgo_foil_id": 17371, "tcgplayer_id": 10247, "cardmarket_id": 2213, "name": "Ember Shot", "lang": "en", "released_at": "2002-05-27", "uri": "https://api.scryfall.com/cards/6a9eb72b-9ae2-4b64-bbb9-187446b5fd2f", "scryfall_uri": "https://scryfall.com/card/jud/87/ember-shot?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/6/a/6a9eb72b-9ae2-4b64-bbb9-187446b5fd2f.jpg?1562630295", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/a/6a9eb72b-9ae2-4b64-bbb9-187446b5fd2f.jpg?1562630295", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/6/a/6a9eb72b-9ae2-4b64-bbb9-187446b5fd2f.jpg?1562630295", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/6/a/6a9eb72b-9ae2-4b64-bbb9-187446b5fd2f.png?1562630295", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/a/6a9eb72b-9ae2-4b64-bbb9-187446b5fd2f.jpg?1562630295", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/6/a/6a9eb72b-9ae2-4b64-bbb9-187446b5fd2f.jpg?1562630295"}, "mana_cost": "{6}{R}", "cmc": 7.0, "type_line": "Instant", "oracle_text": "Ember Shot deals 3 damage to any target.\nDraw a card.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "cd82de1a-36fd-4618-bfe8-b45532a582d9", "set": "jud", "set_name": "Judgment", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/cd82de1a-36fd-4618-bfe8-b45532a582d9", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ajud&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/jud?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/6a9eb72b-9ae2-4b64-bbb9-187446b5fd2f/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A1f300320-ad98-4812-b34b-54885a86aee9&unique=prints", "collector_number": "87", "digital": false, "rarity": "common", "flavor_text": "Dwarves bring poor coal to market, use good coal in their homes, and throw their best coal away.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Alan Pollack", "artist_ids": ["70c20ea3-5ad6-4082-a337-6e994ae5828e"], "illustration_id": "4da7e60e-4403-49bf-8e7b-e6d955566f6d", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 21646, "prices": {"usd": "0.07", "usd_foil": "0.47", "usd_etched": null, "eur": "0.10", "eur_foil": "0.30", "tix": "0.05"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=29862", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Ember+Shot&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Ember+Shot&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Ember+Shot"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/10247?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Ember+Shot&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/17370?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "711f4cff-0256-44b2-a2fe-1cae6e9edb2b", "oracle_id": "5c19db44-0eae-4d22-9bf4-7e6cdc6b9d8f", "multiverse_ids": [3534], "mtgo_id": 6941, "mtgo_foil_id": 6942, "tcgplayer_id": 5048, "cardmarket_id": 8374, "name": "Energy Bolt", "lang": "en", "released_at": "1996-10-08", "uri": "https://api.scryfall.com/cards/711f4cff-0256-44b2-a2fe-1cae6e9edb2b", "scryfall_uri": "https://scryfall.com/card/mir/263/energy-bolt?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/7/1/711f4cff-0256-44b2-a2fe-1cae6e9edb2b.jpg?1562719783", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/1/711f4cff-0256-44b2-a2fe-1cae6e9edb2b.jpg?1562719783", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/7/1/711f4cff-0256-44b2-a2fe-1cae6e9edb2b.jpg?1562719783", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/7/1/711f4cff-0256-44b2-a2fe-1cae6e9edb2b.png?1562719783", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/1/711f4cff-0256-44b2-a2fe-1cae6e9edb2b.jpg?1562719783", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/7/1/711f4cff-0256-44b2-a2fe-1cae6e9edb2b.jpg?1562719783"}, "mana_cost": "{X}{R}{W}", "cmc": 2.0, "type_line": "Sorcery", "oracle_text": "Choose one \u2014\n\u2022 Energy Bolt deals X damage to target player or planeswalker.\n\u2022 Target player gains X life.", "colors": ["R", "W"], "color_identity": ["R", "W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": true, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "5f06acf3-8123-4a78-b2e7-089b0b775a4a", "set": "mir", "set_name": "Mirage", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/5f06acf3-8123-4a78-b2e7-089b0b775a4a", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Amir&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/mir?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/711f4cff-0256-44b2-a2fe-1cae6e9edb2b/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A5c19db44-0eae-4d22-9bf4-7e6cdc6b9d8f&unique=prints", "collector_number": "263", "digital": false, "rarity": "rare", "flavor_text": "Life and death are two faces of the same coin.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Scott Kirschner", "artist_ids": ["a9199ae8-9891-4366-bf5b-42cfb662d840"], "illustration_id": "58b34217-32ac-44e4-b539-da141c726450", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 18153, "prices": {"usd": "4.15", "usd_foil": null, "usd_etched": null, "eur": "2.50", "eur_foil": null, "tix": "0.08"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=3534", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Energy+Bolt&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Energy+Bolt&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Energy+Bolt"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/5048?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Energy+Bolt&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/6941?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "a98609dc-ea90-4c7e-a191-5e5d0ba16847", "oracle_id": "f51ed0b4-c144-458e-b97c-618b9e1cf25d", "multiverse_ids": [290527], "mtgo_id": 46647, "mtgo_foil_id": 46648, "tcgplayer_id": 66559, "cardmarket_id": 258490, "name": "Essence Backlash", "lang": "en", "released_at": "2012-10-05", "uri": "https://api.scryfall.com/cards/a98609dc-ea90-4c7e-a191-5e5d0ba16847", "scryfall_uri": "https://scryfall.com/card/rtr/160/essence-backlash?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/a/9/a98609dc-ea90-4c7e-a191-5e5d0ba16847.jpg?1562791298", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/9/a98609dc-ea90-4c7e-a191-5e5d0ba16847.jpg?1562791298", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/a/9/a98609dc-ea90-4c7e-a191-5e5d0ba16847.jpg?1562791298", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/a/9/a98609dc-ea90-4c7e-a191-5e5d0ba16847.png?1562791298", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/9/a98609dc-ea90-4c7e-a191-5e5d0ba16847.jpg?1562791298", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/a/9/a98609dc-ea90-4c7e-a191-5e5d0ba16847.jpg?1562791298"}, "mana_cost": "{2}{U}{R}", "cmc": 4.0, "type_line": "Instant", "oracle_text": "Counter target creature spell. Essence Backlash deals damage equal to that spell's power to its controller.", "colors": ["R", "U"], "color_identity": ["R", "U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "80b2374d-c5f1-403e-9772-f6c806fd275e", "set": "rtr", "set_name": "Return to Ravnica", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/80b2374d-c5f1-403e-9772-f6c806fd275e", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Artr&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/rtr?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/a98609dc-ea90-4c7e-a191-5e5d0ba16847/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Af51ed0b4-c144-458e-b97c-618b9e1cf25d&unique=prints", "collector_number": "160", "digital": false, "rarity": "common", "watermark": "izzet", "flavor_text": "\"The other guilds will learn the hard way not to interfere with our investigations.\"\n\u2014Bori Andon, Izzet blastseeker", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Jung Park", "artist_ids": ["269392ac-4c06-4650-98e2-d49a5a7f2371"], "illustration_id": "67b7c4bf-3704-42d3-9d5c-6d898f866271", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 12930, "penny_rank": 13239, "prices": {"usd": "0.05", "usd_foil": "0.21", "usd_etched": null, "eur": "0.06", "eur_foil": "0.20", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=290527", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Essence+Backlash&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Essence+Backlash&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Essence+Backlash"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/66559?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Essence+Backlash&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/46647?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "8af61c18-a7ac-42c8-a942-d2f546c1ef57", "oracle_id": "4bf5402f-7bba-4c0c-aebd-1b231768f2b2", "multiverse_ids": [135191], "mtgo_id": 27014, "mtgo_foil_id": 27015, "tcgplayer_id": 15117, "cardmarket_id": 16305, "name": "Essence Drain", "lang": "en", "released_at": "2007-07-13", "uri": "https://api.scryfall.com/cards/8af61c18-a7ac-42c8-a942-d2f546c1ef57", "scryfall_uri": "https://scryfall.com/card/10e/141/essence-drain?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/8/a/8af61c18-a7ac-42c8-a942-d2f546c1ef57.jpg?1562551259", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/a/8af61c18-a7ac-42c8-a942-d2f546c1ef57.jpg?1562551259", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/8/a/8af61c18-a7ac-42c8-a942-d2f546c1ef57.jpg?1562551259", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/8/a/8af61c18-a7ac-42c8-a942-d2f546c1ef57.png?1562551259", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/a/8af61c18-a7ac-42c8-a942-d2f546c1ef57.jpg?1562551259", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/8/a/8af61c18-a7ac-42c8-a942-d2f546c1ef57.jpg?1562551259"}, "mana_cost": "{4}{B}", "cmc": 5.0, "type_line": "Sorcery", "oracle_text": "Essence Drain deals 3 damage to any target and you gain 3 life.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "a66a6124-0d81-488d-b080-91f5ba7fbad0", "set": "10e", "set_name": "Tenth Edition", "set_type": "core", "set_uri": "https://api.scryfall.com/sets/a66a6124-0d81-488d-b080-91f5ba7fbad0", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3A10e&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/10e?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/8af61c18-a7ac-42c8-a942-d2f546c1ef57/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A4bf5402f-7bba-4c0c-aebd-1b231768f2b2&unique=prints", "collector_number": "141", "digital": false, "rarity": "common", "flavor_text": "\"The elves are right: Death inevitably leads to life. But the truly powerful don't just experience this cycle. They control it.\"\n\u2014Crovax, ascendant evincar", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Jim Nelson", "artist_ids": ["aa9f64d1-29e1-4c82-877e-44c18183f40b"], "illustration_id": "1fb952b6-5928-4892-a5ef-c06411c66c17", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 19623, "prices": {"usd": "0.05", "usd_foil": "0.11", "usd_etched": null, "eur": "0.02", "eur_foil": "0.14", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=135191", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Essence+Drain&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Essence+Drain&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Essence+Drain"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/15117?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Essence+Drain&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/27014?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "9950052e-f674-4f09-802e-3f5f52f5e717", "oracle_id": "4bf5402f-7bba-4c0c-aebd-1b231768f2b2", "multiverse_ids": [50536], "mtgo_id": 20457, "mtgo_foil_id": 20458, "tcgplayer_id": 11673, "cardmarket_id": 385, "name": "Essence Drain", "lang": "en", "released_at": "2004-02-06", "uri": "https://api.scryfall.com/cards/9950052e-f674-4f09-802e-3f5f52f5e717", "scryfall_uri": "https://scryfall.com/card/dst/43/essence-drain?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/9/9/9950052e-f674-4f09-802e-3f5f52f5e717.jpg?1562638341", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/9/9950052e-f674-4f09-802e-3f5f52f5e717.jpg?1562638341", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/9/9/9950052e-f674-4f09-802e-3f5f52f5e717.jpg?1562638341", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/9/9/9950052e-f674-4f09-802e-3f5f52f5e717.png?1562638341", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/9/9950052e-f674-4f09-802e-3f5f52f5e717.jpg?1562638341", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/9/9/9950052e-f674-4f09-802e-3f5f52f5e717.jpg?1562638341"}, "mana_cost": "{4}{B}", "cmc": 5.0, "type_line": "Sorcery", "oracle_text": "Essence Drain deals 3 damage to any target and you gain 3 life.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "e29cb2dd-1345-4032-abfe-e52e8c8ce074", "set": "dst", "set_name": "Darksteel", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/e29cb2dd-1345-4032-abfe-e52e8c8ce074", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Adst&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/dst?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/9950052e-f674-4f09-802e-3f5f52f5e717/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A4bf5402f-7bba-4c0c-aebd-1b231768f2b2&unique=prints", "collector_number": "43", "digital": false, "rarity": "common", "flavor_text": "Mephidross claims all life within it. What cannot be twisted is absorbed.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Tony Szczudlo", "artist_ids": ["1952c90b-a5a7-4328-9f7c-e11064f59daf"], "illustration_id": "d76c4298-8848-4922-b4bd-a7af9d719a10", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 19623, "prices": {"usd": "0.03", "usd_foil": null, "usd_etched": null, "eur": "0.03", "eur_foil": "0.05", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=50536", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Essence+Drain&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Essence+Drain&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Essence+Drain"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/11673?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Essence+Drain&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/20457?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "d646feea-3c20-4737-8d20-ffad42258ced", "oracle_id": "b3119f27-45fd-4411-8a09-5f8d3cd8d927", "multiverse_ids": [1787], "tcgplayer_id": 3509, "cardmarket_id": 7341, "name": "Eternal Flame", "lang": "en", "released_at": "1994-08-01", "uri": "https://api.scryfall.com/cards/d646feea-3c20-4737-8d20-ffad42258ced", "scryfall_uri": "https://scryfall.com/card/drk/61/eternal-flame?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/d/6/d646feea-3c20-4737-8d20-ffad42258ced.jpg?1562946085", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/6/d646feea-3c20-4737-8d20-ffad42258ced.jpg?1562946085", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/d/6/d646feea-3c20-4737-8d20-ffad42258ced.jpg?1562946085", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/d/6/d646feea-3c20-4737-8d20-ffad42258ced.png?1562946085", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/6/d646feea-3c20-4737-8d20-ffad42258ced.jpg?1562946085", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/d/6/d646feea-3c20-4737-8d20-ffad42258ced.jpg?1562946085"}, "mana_cost": "{2}{R}{R}", "cmc": 4.0, "type_line": "Sorcery", "oracle_text": "Eternal Flame deals X damage to target opponent or planeswalker and half X damage, rounded up, to you, where X is the number of Mountains you control.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": true, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "a21c6836-c435-459a-81e3-22d2da174549", "set": "drk", "set_name": "The Dark", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/a21c6836-c435-459a-81e3-22d2da174549", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Adrk&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/drk?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/d646feea-3c20-4737-8d20-ffad42258ced/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ab3119f27-45fd-4411-8a09-5f8d3cd8d927&unique=prints", "collector_number": "61", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Mark Poole", "artist_ids": ["bfdeaf09-f915-4058-8e8b-bcac3bc43c33"], "illustration_id": "bac91e0d-f2d9-4779-8f92-a4c14c78241c", "border_color": "black", "frame": "1993", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 21915, "prices": {"usd": "11.04", "usd_foil": null, "usd_etched": null, "eur": "9.29", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=1787", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Eternal+Flame&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Eternal+Flame&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Eternal+Flame"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/3509?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Eternal+Flame&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Eternal+Flame&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "5d53f46f-b069-4b34-af4b-98143328c078", "oracle_id": "c0d3dfc0-1ff2-4ac3-98eb-32eaa5b84c05", "multiverse_ids": [4662], "mtgo_id": 9509, "mtgo_foil_id": 9510, "tcgplayer_id": 5545, "cardmarket_id": 8763, "name": "Evincar's Justice", "lang": "en", "released_at": "1997-10-14", "uri": "https://api.scryfall.com/cards/5d53f46f-b069-4b34-af4b-98143328c078", "scryfall_uri": "https://scryfall.com/card/tmp/134/evincars-justice?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/5/d/5d53f46f-b069-4b34-af4b-98143328c078.jpg?1562054236", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/d/5d53f46f-b069-4b34-af4b-98143328c078.jpg?1562054236", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/5/d/5d53f46f-b069-4b34-af4b-98143328c078.jpg?1562054236", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/5/d/5d53f46f-b069-4b34-af4b-98143328c078.png?1562054236", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/d/5d53f46f-b069-4b34-af4b-98143328c078.jpg?1562054236", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/5/d/5d53f46f-b069-4b34-af4b-98143328c078.jpg?1562054236"}, "mana_cost": "{2}{B}{B}", "cmc": 4.0, "type_line": "Sorcery", "oracle_text": "Buyback {3} (You may pay an additional {3} as you cast this spell. If you do, put this card into your hand as it resolves.)\nEvincar's Justice deals 2 damage to each creature and each player.", "colors": ["B"], "color_identity": ["B"], "keywords": ["Buyback"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "10df3a67-178e-4363-8668-34f0e6edf2a7", "set": "tmp", "set_name": "Tempest", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/10df3a67-178e-4363-8668-34f0e6edf2a7", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Atmp&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/tmp?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/5d53f46f-b069-4b34-af4b-98143328c078/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ac0d3dfc0-1ff2-4ac3-98eb-32eaa5b84c05&unique=prints", "collector_number": "134", "digital": false, "rarity": "common", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Hannibal King", "artist_ids": ["47fa68ed-4d79-4116-a562-fc0c11096e81"], "illustration_id": "01bbf230-a8d3-48e3-9512-603c6e26c739", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 15204, "prices": {"usd": "0.19", "usd_foil": null, "usd_etched": null, "eur": "0.18", "eur_foil": null, "tix": "0.09"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=4662", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Evincar%27s+Justice&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Evincar%27s+Justice&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Evincar%27s+Justice"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/5545?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Evincar%27s+Justice&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/9509?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "f247aaaf-4d65-4dfc-bab2-3c1331762647", "oracle_id": "1a19fc9e-a822-49ca-ade0-d58054f3caf6", "multiverse_ids": [189378], "mtgo_id": 31941, "mtgo_foil_id": 31942, "tcgplayer_id": 28532, "cardmarket_id": 20749, "name": "Exploding Borders", "lang": "en", "released_at": "2009-02-06", "uri": "https://api.scryfall.com/cards/f247aaaf-4d65-4dfc-bab2-3c1331762647", "scryfall_uri": "https://scryfall.com/card/con/106/exploding-borders?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/f/2/f247aaaf-4d65-4dfc-bab2-3c1331762647.jpg?1562804623", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/2/f247aaaf-4d65-4dfc-bab2-3c1331762647.jpg?1562804623", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/f/2/f247aaaf-4d65-4dfc-bab2-3c1331762647.jpg?1562804623", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/f/2/f247aaaf-4d65-4dfc-bab2-3c1331762647.png?1562804623", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/2/f247aaaf-4d65-4dfc-bab2-3c1331762647.jpg?1562804623", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/f/2/f247aaaf-4d65-4dfc-bab2-3c1331762647.jpg?1562804623"}, "mana_cost": "{2}{R}{G}", "cmc": 4.0, "type_line": "Sorcery", "oracle_text": "Domain \u2014 Search your library for a basic land card, put that card onto the battlefield tapped, then shuffle. Exploding Borders deals X damage to target player or planeswalker, where X is the number of basic land types among lands you control.", "colors": ["G", "R"], "color_identity": ["G", "R"], "keywords": ["Domain"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "76b2db58-904c-4e49-8580-9f62f7b3cca4", "set": "con", "set_name": "Conflux", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/76b2db58-904c-4e49-8580-9f62f7b3cca4", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Acon&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/con?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/f247aaaf-4d65-4dfc-bab2-3c1331762647/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A1a19fc9e-a822-49ca-ade0-d58054f3caf6&unique=prints", "collector_number": "106", "digital": false, "rarity": "common", "flavor_text": "Reuniting a world is not a gentle process.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Zoltan Boros & Gabor Szikszai", "artist_ids": ["1885e6cb-c827-4896-994e-3d0a027d602f", "44c3877f-8771-43dc-9e40-f4c765f59d2e"], "illustration_id": "7fa5a5c1-2c72-47a8-8131-0df270213c41", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 15291, "penny_rank": 6236, "prices": {"usd": "0.14", "usd_foil": "0.26", "usd_etched": null, "eur": "0.03", "eur_foil": "0.07", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=189378", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Exploding+Borders&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Exploding+Borders&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Exploding+Borders"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/28532?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Exploding+Borders&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/31941?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "3a3e2b45-b086-4ffd-aa1a-1d03046e0d61", "oracle_id": "5eae77d0-7653-4b07-a701-aabea13991bf", "multiverse_ids": [265393], "mtgo_id": 46619, "mtgo_foil_id": 46620, "tcgplayer_id": 66561, "cardmarket_id": 258452, "name": "Explosive Impact", "lang": "en", "released_at": "2012-10-05", "uri": "https://api.scryfall.com/cards/3a3e2b45-b086-4ffd-aa1a-1d03046e0d61", "scryfall_uri": "https://scryfall.com/card/rtr/94/explosive-impact?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/3/a/3a3e2b45-b086-4ffd-aa1a-1d03046e0d61.jpg?1562785002", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/a/3a3e2b45-b086-4ffd-aa1a-1d03046e0d61.jpg?1562785002", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/3/a/3a3e2b45-b086-4ffd-aa1a-1d03046e0d61.jpg?1562785002", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/3/a/3a3e2b45-b086-4ffd-aa1a-1d03046e0d61.png?1562785002", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/a/3a3e2b45-b086-4ffd-aa1a-1d03046e0d61.jpg?1562785002", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/3/a/3a3e2b45-b086-4ffd-aa1a-1d03046e0d61.jpg?1562785002"}, "mana_cost": "{5}{R}", "cmc": 6.0, "type_line": "Instant", "oracle_text": "Explosive Impact deals 5 damage to any target.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "80b2374d-c5f1-403e-9772-f6c806fd275e", "set": "rtr", "set_name": "Return to Ravnica", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/80b2374d-c5f1-403e-9772-f6c806fd275e", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Artr&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/rtr?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/3a3e2b45-b086-4ffd-aa1a-1d03046e0d61/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A5eae77d0-7653-4b07-a701-aabea13991bf&unique=prints", "collector_number": "94", "digital": false, "rarity": "common", "flavor_text": "\"Such boorish noise is what passes for subtlety among the Boros.\"\n\u2014Vraska", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Steve Argyle", "artist_ids": ["a44ddda4-5331-4f83-aac9-3e00ed36bd7b"], "illustration_id": "e52bb10d-2ac5-4543-bf8a-9e0276823b3c", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 18975, "prices": {"usd": "0.02", "usd_foil": "0.10", "usd_etched": null, "eur": "0.02", "eur_foil": "0.09", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=265393", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Explosive+Impact&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Explosive+Impact&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Explosive+Impact"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/66561?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Explosive+Impact&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/46619?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "e6cdd822-44a1-4d58-9de4-69fc56eae255", "oracle_id": "30d79f61-f9d9-441a-b600-83721af8553b", "multiverse_ids": [548442], "mtgo_id": 97208, "arena_id": 79569, "tcgplayer_id": 262798, "cardmarket_id": 608235, "name": "Explosive Singularity", "lang": "en", "released_at": "2022-02-18", "uri": "https://api.scryfall.com/cards/e6cdd822-44a1-4d58-9de4-69fc56eae255", "scryfall_uri": "https://scryfall.com/card/neo/140/explosive-singularity?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/e/6/e6cdd822-44a1-4d58-9de4-69fc56eae255.jpg?1654567601", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/6/e6cdd822-44a1-4d58-9de4-69fc56eae255.jpg?1654567601", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/e/6/e6cdd822-44a1-4d58-9de4-69fc56eae255.jpg?1654567601", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/e/6/e6cdd822-44a1-4d58-9de4-69fc56eae255.png?1654567601", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/6/e6cdd822-44a1-4d58-9de4-69fc56eae255.jpg?1654567601", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/e/6/e6cdd822-44a1-4d58-9de4-69fc56eae255.jpg?1654567601"}, "mana_cost": "{8}{R}{R}", "cmc": 10.0, "type_line": "Sorcery", "oracle_text": "As an additional cost to cast this spell, you may tap any number of untapped creatures you control. This spell costs {1} less to cast for each creature tapped this way.\nExplosive Singularity deals 10 damage to any target.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo", "arena"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "59a2059f-5482-433f-8761-eb2e17859b71", "set": "neo", "set_name": "Kamigawa: Neon Dynasty", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/59a2059f-5482-433f-8761-eb2e17859b71", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aneo&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/neo?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/e6cdd822-44a1-4d58-9de4-69fc56eae255/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A30d79f61-f9d9-441a-b600-83721af8553b&unique=prints", "collector_number": "140", "digital": false, "rarity": "mythic", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Liiga Smilshkalne", "artist_ids": ["5a50ced2-b301-4195-8af4-f7e1bae07d28"], "illustration_id": "e27da4b9-8c0e-4e1d-b7ff-9eb6da2eb176", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 9776, "preview": {"source": "Wizards of the Coast", "source_uri": "https://twitter.com/Wizards_MagicBR/status/1489254343333199878", "previewed_at": "2022-02-03"}, "prices": {"usd": "0.24", "usd_foil": "0.23", "usd_etched": null, "eur": "0.27", "eur_foil": "0.20", "tix": "0.04"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=548442", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Explosive+Singularity&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Explosive+Singularity&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Explosive+Singularity"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/262798?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Explosive+Singularity&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/97208?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "a1d47e98-daae-42f7-9581-1269d57bd16e", "oracle_id": "30d79f61-f9d9-441a-b600-83721af8553b", "multiverse_ids": [552257], "arena_id": 79796, "tcgplayer_id": 262874, "cardmarket_id": 608338, "name": "Explosive Singularity", "lang": "en", "released_at": "2022-02-18", "uri": "https://api.scryfall.com/cards/a1d47e98-daae-42f7-9581-1269d57bd16e", "scryfall_uri": "https://scryfall.com/card/neo/383/explosive-singularity?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/a/1/a1d47e98-daae-42f7-9581-1269d57bd16e.jpg?1654570003", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/1/a1d47e98-daae-42f7-9581-1269d57bd16e.jpg?1654570003", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/a/1/a1d47e98-daae-42f7-9581-1269d57bd16e.jpg?1654570003", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/a/1/a1d47e98-daae-42f7-9581-1269d57bd16e.png?1654570003", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/1/a1d47e98-daae-42f7-9581-1269d57bd16e.jpg?1654570003", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/a/1/a1d47e98-daae-42f7-9581-1269d57bd16e.jpg?1654570003"}, "mana_cost": "{8}{R}{R}", "cmc": 10.0, "type_line": "Sorcery", "oracle_text": "As an additional cost to cast this spell, you may tap any number of untapped creatures you control. This spell costs {1} less to cast for each creature tapped this way.\nExplosive Singularity deals 10 damage to any target.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo", "arena"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "59a2059f-5482-433f-8761-eb2e17859b71", "set": "neo", "set_name": "Kamigawa: Neon Dynasty", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/59a2059f-5482-433f-8761-eb2e17859b71", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aneo&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/neo?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/a1d47e98-daae-42f7-9581-1269d57bd16e/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A30d79f61-f9d9-441a-b600-83721af8553b&unique=prints", "collector_number": "383", "digital": false, "rarity": "mythic", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Ari", "artist_ids": ["1ae473c5-d1be-422e-9ff9-e877db5bedc5"], "illustration_id": "87b6f73c-76eb-4910-b8c4-f47592444d72", "border_color": "black", "frame": "2015", "frame_effects": ["showcase"], "security_stamp": "oval", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "promo_types": ["boosterfun"], "edhrec_rank": 9776, "preview": {"source": "Wizards of the Coast", "source_uri": "https://twitter.com/Wizards_MagicBR/status/1489254343333199878", "previewed_at": "2022-02-03"}, "prices": {"usd": "0.69", "usd_foil": "1.16", "usd_etched": null, "eur": "0.99", "eur_foil": "1.76", "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=552257", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Explosive+Singularity&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Explosive+Singularity&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Explosive+Singularity"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/262874?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Explosive+Singularity&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Explosive+Singularity&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "122c01e6-38a6-456e-971e-9004df85ac1c", "oracle_id": "ac27ccb8-81e2-42e2-a340-0b0ce9609688", "multiverse_ids": [513577], "mtgo_id": 88677, "arena_id": 76493, "tcgplayer_id": 235653, "cardmarket_id": 557352, "name": "Explosive Welcome", "lang": "en", "released_at": "2021-04-23", "uri": "https://api.scryfall.com/cards/122c01e6-38a6-456e-971e-9004df85ac1c", "scryfall_uri": "https://scryfall.com/card/stx/100/explosive-welcome?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/1/2/122c01e6-38a6-456e-971e-9004df85ac1c.jpg?1624591777", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/2/122c01e6-38a6-456e-971e-9004df85ac1c.jpg?1624591777", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/1/2/122c01e6-38a6-456e-971e-9004df85ac1c.jpg?1624591777", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/1/2/122c01e6-38a6-456e-971e-9004df85ac1c.png?1624591777", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/2/122c01e6-38a6-456e-971e-9004df85ac1c.jpg?1624591777", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/1/2/122c01e6-38a6-456e-971e-9004df85ac1c.jpg?1624591777"}, "mana_cost": "{7}{R}", "cmc": 8.0, "type_line": "Instant", "oracle_text": "Explosive Welcome deals 5 damage to any target and 3 damage to any other target. Add {R}{R}{R}.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "produced_mana": ["R"], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "541c3c28-8747-40e5-a231-8e8f33234859", "set": "stx", "set_name": "Strixhaven: School of Mages", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/541c3c28-8747-40e5-a231-8e8f33234859", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Astx&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/stx?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/122c01e6-38a6-456e-971e-9004df85ac1c/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aac27ccb8-81e2-42e2-a340-0b0ce9609688&unique=prints", "collector_number": "100", "digital": false, "rarity": "uncommon", "flavor_text": "Rowan and Will were a natural fit in Prismari College, the school of outrageous elemental arts.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Mathias Kollros", "artist_ids": ["2ae0dd12-047c-4efb-80d7-bccc3bac5fba"], "illustration_id": "81af5b06-35fd-4d91-ac70-95a9665549da", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": true, "edhrec_rank": 11569, "preview": {"source": "Wizards of the Coast", "source_uri": "https://t.co/8ZR1Pg8CJu?amp=1", "previewed_at": "2021-03-30"}, "prices": {"usd": "0.04", "usd_foil": "0.05", "usd_etched": null, "eur": "0.06", "eur_foil": "0.15", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=513577", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Explosive+Welcome&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Explosive+Welcome&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Explosive+Welcome"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/235653?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Explosive+Welcome&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/88677?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "42eca98e-a164-4f70-a0b0-7a604863f30b", "oracle_id": "e83c617f-1e07-40db-9b12-ae01122a3e24", "multiverse_ids": [398513], "mtgo_id": 58016, "mtgo_foil_id": 58017, "tcgplayer_id": 100225, "cardmarket_id": 283462, "name": "Exquisite Firecraft", "lang": "en", "released_at": "2015-07-17", "uri": "https://api.scryfall.com/cards/42eca98e-a164-4f70-a0b0-7a604863f30b", "scryfall_uri": "https://scryfall.com/card/ori/143/exquisite-firecraft?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/4/2/42eca98e-a164-4f70-a0b0-7a604863f30b.jpg?1562016890", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/2/42eca98e-a164-4f70-a0b0-7a604863f30b.jpg?1562016890", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/4/2/42eca98e-a164-4f70-a0b0-7a604863f30b.jpg?1562016890", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/4/2/42eca98e-a164-4f70-a0b0-7a604863f30b.png?1562016890", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/2/42eca98e-a164-4f70-a0b0-7a604863f30b.jpg?1562016890", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/4/2/42eca98e-a164-4f70-a0b0-7a604863f30b.jpg?1562016890"}, "mana_cost": "{1}{R}{R}", "cmc": 3.0, "type_line": "Sorcery", "oracle_text": "Exquisite Firecraft deals 4 damage to any target.\nSpell mastery \u2014 If there are two or more instant and/or sorcery cards in your graveyard, this spell can't be countered.", "colors": ["R"], "color_identity": ["R"], "keywords": ["Spell mastery"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "0eeb9a9a-20ac-404d-b55f-aeb7a43a7f62", "set": "ori", "set_name": "Magic Origins", "set_type": "core", "set_uri": "https://api.scryfall.com/sets/0eeb9a9a-20ac-404d-b55f-aeb7a43a7f62", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aori&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ori?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/42eca98e-a164-4f70-a0b0-7a604863f30b/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ae83c617f-1e07-40db-9b12-ae01122a3e24&unique=prints", "collector_number": "143", "digital": false, "rarity": "rare", "flavor_text": "Chandra's gift set her apart and others aflame.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Chase Stone", "artist_ids": ["2d753f61-5f5b-468e-97ea-8e0fdd347340"], "illustration_id": "03d2e74b-44b1-413b-a837-846a61c367fb", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 11466, "penny_rank": 2529, "prices": {"usd": "0.55", "usd_foil": "1.95", "usd_etched": null, "eur": "1.48", "eur_foil": "4.63", "tix": "0.01"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=398513", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Exquisite+Firecraft&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Exquisite+Firecraft&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Exquisite+Firecraft"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/100225?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Exquisite+Firecraft&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/58016?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "0be814f7-3c35-4b82-9fda-b8750a77cb9b", "oracle_id": "e83c617f-1e07-40db-9b12-ae01122a3e24", "multiverse_ids": [], "mtgo_id": 62503, "name": "Exquisite Firecraft", "lang": "en", "released_at": "2017-05-31", "uri": "https://api.scryfall.com/cards/0be814f7-3c35-4b82-9fda-b8750a77cb9b", "scryfall_uri": "https://scryfall.com/card/prm/62503/exquisite-firecraft?utm_source=api", "layout": "normal", "highres_image": false, "image_status": "lowres", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/0/b/0be814f7-3c35-4b82-9fda-b8750a77cb9b.jpg?1562542837", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/b/0be814f7-3c35-4b82-9fda-b8750a77cb9b.jpg?1562542837", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/0/b/0be814f7-3c35-4b82-9fda-b8750a77cb9b.jpg?1562542837", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/0/b/0be814f7-3c35-4b82-9fda-b8750a77cb9b.png?1562542837", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/b/0be814f7-3c35-4b82-9fda-b8750a77cb9b.jpg?1562542837", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/0/b/0be814f7-3c35-4b82-9fda-b8750a77cb9b.jpg?1562542837"}, "mana_cost": "{1}{R}{R}", "cmc": 3.0, "type_line": "Sorcery", "oracle_text": "Exquisite Firecraft deals 4 damage to any target.\nSpell mastery \u2014 If there are two or more instant and/or sorcery cards in your graveyard, this spell can't be countered.", "colors": ["R"], "color_identity": ["R"], "keywords": ["Spell mastery"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["mtgo"], "reserved": false, "foil": true, "nonfoil": false, "finishes": ["foil"], "oversized": false, "promo": true, "reprint": true, "variation": false, "set_id": "638940fb-6be9-4be3-b83f-68d3902fbbe5", "set": "prm", "set_name": "Magic Online Promos", "set_type": "promo", "set_uri": "https://api.scryfall.com/sets/638940fb-6be9-4be3-b83f-68d3902fbbe5", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aprm&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/prm?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/0be814f7-3c35-4b82-9fda-b8750a77cb9b/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ae83c617f-1e07-40db-9b12-ae01122a3e24&unique=prints", "collector_number": "62503", "digital": true, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Ryan Yee", "artist_ids": ["8955dca7-3e37-42b4-83a9-167c78a2178f"], "illustration_id": "1ab3115c-f0d6-46cc-a1bf-9bdbeb1dffc9", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "edhrec_rank": 11466, "penny_rank": 2529, "prices": {"usd": null, "usd_foil": null, "usd_etched": null, "eur": null, "eur_foil": null, "tix": null}, "related_uris": {"tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Exquisite+Firecraft&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Exquisite+Firecraft&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Exquisite+Firecraft"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/search/magic/product?productLineName=magic&q=Exquisite+Firecraft&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall&view=grid", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Exquisite+Firecraft&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/62503?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "2933ca2a-097b-44f4-ae56-ad524d26fd06", "oracle_id": "22647b1a-5a7c-41b5-b820-b2e9f49c7aad", "multiverse_ids": [972], "tcgplayer_id": 3191, "cardmarket_id": 6838, "name": "Eye for an Eye", "lang": "en", "released_at": "1993-12-17", "uri": "https://api.scryfall.com/cards/2933ca2a-097b-44f4-ae56-ad524d26fd06", "scryfall_uri": "https://scryfall.com/card/arn/4/eye-for-an-eye?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/2/9/2933ca2a-097b-44f4-ae56-ad524d26fd06.jpg?1562902609", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/9/2933ca2a-097b-44f4-ae56-ad524d26fd06.jpg?1562902609", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/2/9/2933ca2a-097b-44f4-ae56-ad524d26fd06.jpg?1562902609", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/2/9/2933ca2a-097b-44f4-ae56-ad524d26fd06.png?1562902609", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/9/2933ca2a-097b-44f4-ae56-ad524d26fd06.jpg?1562902609", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/2/9/2933ca2a-097b-44f4-ae56-ad524d26fd06.jpg?1562902609"}, "mana_cost": "{W}{W}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "The next time a source of your choice would deal damage to you this turn, instead that source deals that much damage to you and Eye for an Eye deals that much damage to that source's controller.", "colors": ["W"], "color_identity": ["W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "legal", "premodern": "legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "856f63eb-e056-43e5-8a56-7a58e1608940", "set": "arn", "set_name": "Arabian Nights", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/856f63eb-e056-43e5-8a56-7a58e1608940", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aarn&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/arn?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/2933ca2a-097b-44f4-ae56-ad524d26fd06/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A22647b1a-5a7c-41b5-b820-b2e9f49c7aad&unique=prints", "collector_number": "4", "digital": false, "rarity": "uncommon", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Mark Poole", "artist_ids": ["bfdeaf09-f915-4058-8e8b-bcac3bc43c33"], "illustration_id": "d4786c1c-2bf9-4666-9be8-bb707eb97223", "border_color": "black", "frame": "1993", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 16280, "prices": {"usd": "57.47", "usd_foil": null, "usd_etched": null, "eur": "37.49", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=972", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Eye+for+an+Eye&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Eye+for+an+Eye&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Eye+for+an+Eye"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/3191?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Eye+for+an+Eye&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Eye+for+an+Eye&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "64c93900-1af7-4c6b-a844-055bb7e27ddb", "oracle_id": "6477eb4b-279b-484e-9ee9-755588faf062", "multiverse_ids": [73966], "tcgplayer_id": 37853, "cardmarket_id": 14839, "name": "Face to Face", "lang": "en", "released_at": "2004-11-19", "uri": "https://api.scryfall.com/cards/64c93900-1af7-4c6b-a844-055bb7e27ddb", "scryfall_uri": "https://scryfall.com/card/unh/76/face-to-face?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/6/4/64c93900-1af7-4c6b-a844-055bb7e27ddb.jpg?1562488406", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/4/64c93900-1af7-4c6b-a844-055bb7e27ddb.jpg?1562488406", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/6/4/64c93900-1af7-4c6b-a844-055bb7e27ddb.jpg?1562488406", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/6/4/64c93900-1af7-4c6b-a844-055bb7e27ddb.png?1562488406", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/4/64c93900-1af7-4c6b-a844-055bb7e27ddb.jpg?1562488406", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/6/4/64c93900-1af7-4c6b-a844-055bb7e27ddb.jpg?1562488406"}, "mana_cost": "{1}{R}", "cmc": 2.0, "type_line": "Sorcery", "oracle_text": "You and target opponent play a best two-out-of-three Rock, Paper, Scissors match. If you win, Face to Face deals 5 damage to that player.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "not_legal", "pauper": "not_legal", "vintage": "not_legal", "penny": "not_legal", "commander": "not_legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "not_legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "4c8bc76a-05a5-43db-aaf0-34deb347b871", "set": "unh", "set_name": "Unhinged", "set_type": "funny", "set_uri": "https://api.scryfall.com/sets/4c8bc76a-05a5-43db-aaf0-34deb347b871", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aunh&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/unh?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/64c93900-1af7-4c6b-a844-055bb7e27ddb/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A6477eb4b-279b-484e-9ee9-755588faf062&unique=prints", "collector_number": "76", "digital": false, "rarity": "uncommon", "flavor_text": "Befuddled by this new game, Argg longed for the days of Rock, Rock, Rock.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Randy Gallegos", "artist_ids": ["a5048cc7-438a-4378-98e4-da99b78e1db0"], "illustration_id": "ed3fd739-eb97-480a-95dd-24d8b38d653d", "border_color": "silver", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "prices": {"usd": "0.31", "usd_foil": "2.34", "usd_etched": null, "eur": "0.05", "eur_foil": "0.99", "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=73966", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Face+to+Face&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Face+to+Face&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Face+to+Face"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/37853?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Face+to+Face&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Face+to+Face&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "a56410a7-6f99-4bdf-9385-f23571c263c3", "oracle_id": "1f82fe6b-1ec7-400b-a80d-40921b359723", "multiverse_ids": [376327], "mtgo_id": 51444, "mtgo_foil_id": 51445, "tcgplayer_id": 72110, "cardmarket_id": 264828, "name": "Famine", "lang": "en", "released_at": "2013-11-01", "uri": "https://api.scryfall.com/cards/a56410a7-6f99-4bdf-9385-f23571c263c3", "scryfall_uri": "https://scryfall.com/card/c13/77/famine?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/a/5/a56410a7-6f99-4bdf-9385-f23571c263c3.jpg?1562929852", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/5/a56410a7-6f99-4bdf-9385-f23571c263c3.jpg?1562929852", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/a/5/a56410a7-6f99-4bdf-9385-f23571c263c3.jpg?1562929852", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/a/5/a56410a7-6f99-4bdf-9385-f23571c263c3.png?1562929852", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/5/a56410a7-6f99-4bdf-9385-f23571c263c3.jpg?1562929852", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/a/5/a56410a7-6f99-4bdf-9385-f23571c263c3.jpg?1562929852"}, "mana_cost": "{3}{B}{B}", "cmc": 5.0, "type_line": "Sorcery", "oracle_text": "Famine deals 3 damage to each creature and each player.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "c62e6d4f-af8c-4f27-9bc8-361291890146", "set": "c13", "set_name": "Commander 2013", "set_type": "commander", "set_uri": "https://api.scryfall.com/sets/c62e6d4f-af8c-4f27-9bc8-361291890146", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ac13&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/c13?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/a56410a7-6f99-4bdf-9385-f23571c263c3/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A1f82fe6b-1ec7-400b-a80d-40921b359723&unique=prints", "collector_number": "77", "digital": false, "rarity": "uncommon", "flavor_text": "\"Better to starve to death than be bored to death.\"\n\u2014Liliana Vess", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Karla Ortiz", "artist_ids": ["286a7773-06e5-465c-8a2a-76dfcb4ad110"], "illustration_id": "9768c180-22cb-499f-9995-8a7d38ca0e3a", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "edhrec_rank": 17333, "penny_rank": 7628, "prices": {"usd": "0.15", "usd_foil": null, "usd_etched": null, "eur": "0.15", "eur_foil": null, "tix": "0.05"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=376327", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Famine&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Famine&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Famine"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/72110?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Famine&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/51444?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "8d6c10ca-f6d6-4322-aa17-7e874cb10bb1", "oracle_id": "1f82fe6b-1ec7-400b-a80d-40921b359723", "multiverse_ids": [10518], "tcgplayer_id": 459, "cardmarket_id": 11268, "name": "Famine", "lang": "en", "released_at": "1999-07-06", "uri": "https://api.scryfall.com/cards/8d6c10ca-f6d6-4322-aa17-7e874cb10bb1", "scryfall_uri": "https://scryfall.com/card/ptk/75/famine?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/8/d/8d6c10ca-f6d6-4322-aa17-7e874cb10bb1.jpg?1562257044", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/d/8d6c10ca-f6d6-4322-aa17-7e874cb10bb1.jpg?1562257044", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/8/d/8d6c10ca-f6d6-4322-aa17-7e874cb10bb1.jpg?1562257044", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/8/d/8d6c10ca-f6d6-4322-aa17-7e874cb10bb1.png?1562257044", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/d/8d6c10ca-f6d6-4322-aa17-7e874cb10bb1.jpg?1562257044", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/8/d/8d6c10ca-f6d6-4322-aa17-7e874cb10bb1.jpg?1562257044"}, "mana_cost": "{3}{B}{B}", "cmc": 5.0, "type_line": "Sorcery", "oracle_text": "Famine deals 3 damage to each creature and each player.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "2676ff2e-9d86-4b5b-b935-e84e41b0755e", "set": "ptk", "set_name": "Portal Three Kingdoms", "set_type": "starter", "set_uri": "https://api.scryfall.com/sets/2676ff2e-9d86-4b5b-b935-e84e41b0755e", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aptk&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ptk?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/8d6c10ca-f6d6-4322-aa17-7e874cb10bb1/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A1f82fe6b-1ec7-400b-a80d-40921b359723&unique=prints", "collector_number": "75", "digital": false, "rarity": "uncommon", "flavor_text": "\"But it was a year of dearth. People were reduced to eating leaves of jujube trees. Corpses were seen everywhere in the countryside.\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Sun Nan", "artist_ids": ["d8b1d685-d10e-4caa-81f0-5bf1ee7d88f6"], "illustration_id": "a06ddfef-5e54-478b-9a3c-441564712ad7", "border_color": "white", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 17333, "penny_rank": 7628, "prices": {"usd": "25.63", "usd_foil": null, "usd_etched": null, "eur": "15.00", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=10518", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Famine&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Famine&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Famine"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/459?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Famine&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Famine&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "79075361-e6ee-4cc9-990b-88fef27bbb1c", "oracle_id": "1d5f0a1c-88e0-4603-97af-8ed47766812e", "multiverse_ids": [5148], "mtgo_id": 10249, "mtgo_foil_id": 10250, "tcgplayer_id": 5341, "cardmarket_id": 9165, "name": "Fanning the Flames", "lang": "en", "released_at": "1998-03-02", "uri": "https://api.scryfall.com/cards/79075361-e6ee-4cc9-990b-88fef27bbb1c", "scryfall_uri": "https://scryfall.com/card/sth/80/fanning-the-flames?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/7/9/79075361-e6ee-4cc9-990b-88fef27bbb1c.jpg?1562596865", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/9/79075361-e6ee-4cc9-990b-88fef27bbb1c.jpg?1562596865", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/7/9/79075361-e6ee-4cc9-990b-88fef27bbb1c.jpg?1562596865", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/7/9/79075361-e6ee-4cc9-990b-88fef27bbb1c.png?1562596865", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/9/79075361-e6ee-4cc9-990b-88fef27bbb1c.jpg?1562596865", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/7/9/79075361-e6ee-4cc9-990b-88fef27bbb1c.jpg?1562596865"}, "mana_cost": "{X}{R}{R}", "cmc": 2.0, "type_line": "Sorcery", "oracle_text": "Buyback {3} (You may pay an additional {3} as you cast this spell. If you do, put this card into your hand as it resolves.)\nFanning the Flames deals X damage to any target.", "colors": ["R"], "color_identity": ["R"], "keywords": ["Buyback"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "5c83396a-d386-4367-926b-571a75b086a3", "set": "sth", "set_name": "Stronghold", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/5c83396a-d386-4367-926b-571a75b086a3", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Asth&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/sth?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/79075361-e6ee-4cc9-990b-88fef27bbb1c/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A1d5f0a1c-88e0-4603-97af-8ed47766812e&unique=prints", "collector_number": "80", "digital": false, "rarity": "uncommon", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Ron Spencer", "artist_ids": ["dab52c11-0564-4207-a4a1-c1735c946a65"], "illustration_id": "dfe69bab-7af3-4e17-8d51-32f9cf167344", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 10138, "penny_rank": 9158, "prices": {"usd": "0.28", "usd_foil": null, "usd_etched": null, "eur": "0.20", "eur_foil": null, "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=5148", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Fanning+the+Flames&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Fanning+the+Flames&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Fanning+the+Flames"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/5341?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Fanning+the+Flames&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/10249?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "57a46987-f05a-4b83-af56-f18000874e65", "oracle_id": "927d74c4-afe0-4856-9a02-c3fca9535c2f", "multiverse_ids": [527429], "mtgo_id": 91786, "arena_id": 77247, "tcgplayer_id": 243306, "cardmarket_id": 571504, "name": "Farideh's Fireball", "lang": "en", "released_at": "2021-07-23", "uri": "https://api.scryfall.com/cards/57a46987-f05a-4b83-af56-f18000874e65", "scryfall_uri": "https://scryfall.com/card/afr/142/faridehs-fireball?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/5/7/57a46987-f05a-4b83-af56-f18000874e65.jpg?1627706196", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/7/57a46987-f05a-4b83-af56-f18000874e65.jpg?1627706196", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/5/7/57a46987-f05a-4b83-af56-f18000874e65.jpg?1627706196", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/5/7/57a46987-f05a-4b83-af56-f18000874e65.png?1627706196", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/7/57a46987-f05a-4b83-af56-f18000874e65.jpg?1627706196", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/5/7/57a46987-f05a-4b83-af56-f18000874e65.jpg?1627706196"}, "mana_cost": "{3}{R}{R}", "cmc": 5.0, "type_line": "Instant", "oracle_text": "Farideh's Fireball deals 5 damage to target creature or planeswalker. Roll a d20.\n1\u20149 | Farideh's Fireball deals 2 damage to each player.\n10\u201420 | Farideh's Fireball deals 2 damage to each opponent.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "e1ef87ba-ba92-4573-817f-543b996d2851", "set": "afr", "set_name": "Adventures in the Forgotten Realms", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/e1ef87ba-ba92-4573-817f-543b996d2851", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aafr&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/afr?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/57a46987-f05a-4b83-af56-f18000874e65/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A927d74c4-afe0-4856-9a02-c3fca9535c2f&unique=prints", "collector_number": "142", "digital": false, "rarity": "common", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Josu Hernaiz", "artist_ids": ["74246024-92b4-43d0-a5af-a3f9f2a35d5f"], "illustration_id": "5d7424e0-452b-4fbf-8ccb-57c830ab56f4", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 8912, "penny_rank": 13567, "prices": {"usd": "0.03", "usd_foil": "0.08", "usd_etched": null, "eur": "0.02", "eur_foil": "0.15", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=527429", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Farideh%27s+Fireball&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Farideh%27s+Fireball&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Farideh%27s+Fireball"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/243306?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Farideh%27s+Fireball&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/91786?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "56455067-92c0-45b5-ac2e-525c35b41215", "oracle_id": "a5495ab6-081a-42be-b50c-f89f15a587c8", "multiverse_ids": [476384], "mtgo_id": 79390, "arena_id": 70644, "tcgplayer_id": 206865, "cardmarket_id": 431034, "name": "Fateful End", "lang": "en", "released_at": "2020-01-24", "uri": "https://api.scryfall.com/cards/56455067-92c0-45b5-ac2e-525c35b41215", "scryfall_uri": "https://scryfall.com/card/thb/133/fateful-end?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/5/6/56455067-92c0-45b5-ac2e-525c35b41215.jpg?1581480134", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/6/56455067-92c0-45b5-ac2e-525c35b41215.jpg?1581480134", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/5/6/56455067-92c0-45b5-ac2e-525c35b41215.jpg?1581480134", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/5/6/56455067-92c0-45b5-ac2e-525c35b41215.png?1581480134", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/6/56455067-92c0-45b5-ac2e-525c35b41215.jpg?1581480134", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/5/6/56455067-92c0-45b5-ac2e-525c35b41215.jpg?1581480134"}, "mana_cost": "{2}{R}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Fateful End deals 3 damage to any target. Scry 1.", "colors": ["R"], "color_identity": ["R"], "keywords": ["Scry"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "5f23a78d-cda1-462a-8be3-a62b40c34913", "set": "thb", "set_name": "Theros Beyond Death", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/5f23a78d-cda1-462a-8be3-a62b40c34913", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Athb&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/thb?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/56455067-92c0-45b5-ac2e-525c35b41215/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aa5495ab6-081a-42be-b50c-f89f15a587c8&unique=prints", "collector_number": "133", "digital": false, "rarity": "uncommon", "flavor_text": "\"Everything will be put back in its proper place.\"\n\u2014Klothys, god of destiny", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Chris Rallis", "artist_ids": ["a8e7b854-b15a-421a-b66d-6e68187ae285"], "illustration_id": "747e084f-c097-4879-928a-3626dd3f0e7f", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 15190, "penny_rank": 13271, "preview": {"source": "Aether Hub", "source_uri": "https://twitter.com/AetherHubMedia/status/1214290230913773568", "previewed_at": "2020-01-06"}, "prices": {"usd": "0.02", "usd_foil": "0.05", "usd_etched": null, "eur": "0.02", "eur_foil": "0.05", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=476384", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Fateful+End&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Fateful+End&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Fateful+End"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/206865?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Fateful+End&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/79390?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "cab4fd0e-9f84-4628-92a7-858ad8064531", "oracle_id": "ed743b88-0866-4f88-9f30-d49d2cf36b99", "multiverse_ids": [8867], "mtgo_id": 12125, "mtgo_foil_id": 12126, "tcgplayer_id": 6869, "cardmarket_id": 10392, "name": "Fault Line", "lang": "en", "released_at": "1998-10-12", "uri": "https://api.scryfall.com/cards/cab4fd0e-9f84-4628-92a7-858ad8064531", "scryfall_uri": "https://scryfall.com/card/usg/185/fault-line?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/c/a/cab4fd0e-9f84-4628-92a7-858ad8064531.jpg?1562937807", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/a/cab4fd0e-9f84-4628-92a7-858ad8064531.jpg?1562937807", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/c/a/cab4fd0e-9f84-4628-92a7-858ad8064531.jpg?1562937807", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/c/a/cab4fd0e-9f84-4628-92a7-858ad8064531.png?1562937807", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/a/cab4fd0e-9f84-4628-92a7-858ad8064531.jpg?1562937807", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/c/a/cab4fd0e-9f84-4628-92a7-858ad8064531.jpg?1562937807"}, "mana_cost": "{X}{R}{R}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Fault Line deals X damage to each creature without flying and each player.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "c330df40-51db-4caf-bde6-48df6c181001", "set": "usg", "set_name": "Urza's Saga", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/c330df40-51db-4caf-bde6-48df6c181001", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ausg&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/usg?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/cab4fd0e-9f84-4628-92a7-858ad8064531/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aed743b88-0866-4f88-9f30-d49d2cf36b99&unique=prints", "collector_number": "185", "digital": false, "rarity": "rare", "flavor_text": "We live on the serpent's back.\n\u2014Viashino saying", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Ron Spencer", "artist_ids": ["dab52c11-0564-4207-a4a1-c1735c946a65"], "illustration_id": "dfbf777d-8501-4a94-8cd9-292a1afaf4ea", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 7890, "prices": {"usd": "7.43", "usd_foil": null, "usd_etched": null, "eur": "5.41", "eur_foil": null, "tix": "0.28"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=8867", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Fault+Line&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Fault+Line&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Fault+Line"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/6869?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Fault+Line&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/12125?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "7b61c9bc-16e8-417f-99e7-8bd83d4666c5", "oracle_id": "3c22e031-4804-4c31-bd3c-c3f29d456b34", "multiverse_ids": [405230], "tcgplayer_id": 107740, "cardmarket_id": 285734, "name": "Fiery Confluence", "lang": "en", "released_at": "2015-11-13", "uri": "https://api.scryfall.com/cards/7b61c9bc-16e8-417f-99e7-8bd83d4666c5", "scryfall_uri": "https://scryfall.com/card/c15/26/fiery-confluence?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/7/b/7b61c9bc-16e8-417f-99e7-8bd83d4666c5.jpg?1562706203", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/b/7b61c9bc-16e8-417f-99e7-8bd83d4666c5.jpg?1562706203", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/7/b/7b61c9bc-16e8-417f-99e7-8bd83d4666c5.jpg?1562706203", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/7/b/7b61c9bc-16e8-417f-99e7-8bd83d4666c5.png?1562706203", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/b/7b61c9bc-16e8-417f-99e7-8bd83d4666c5.jpg?1562706203", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/7/b/7b61c9bc-16e8-417f-99e7-8bd83d4666c5.jpg?1562706203"}, "mana_cost": "{2}{R}{R}", "cmc": 4.0, "type_line": "Sorcery", "oracle_text": "Choose three. You may choose the same mode more than once.\n\u2022 Fiery Confluence deals 1 damage to each creature.\n\u2022 Fiery Confluence deals 2 damage to each opponent.\n\u2022 Destroy target artifact.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "ea6c99f9-5489-4504-b30c-c819fa3b1fd3", "set": "c15", "set_name": "Commander 2015", "set_type": "commander", "set_uri": "https://api.scryfall.com/sets/ea6c99f9-5489-4504-b30c-c819fa3b1fd3", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ac15&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/c15?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/7b61c9bc-16e8-417f-99e7-8bd83d4666c5/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A3c22e031-4804-4c31-bd3c-c3f29d456b34&unique=prints", "collector_number": "26", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Kieran Yanner", "artist_ids": ["aa7e89ed-d294-4633-9057-ce04dacfcfa4"], "illustration_id": "7c01324f-f56d-448b-b562-e6366b7ae01d", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "edhrec_rank": 2218, "prices": {"usd": "1.56", "usd_foil": null, "usd_etched": null, "eur": "3.90", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=405230", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Fiery+Confluence&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Fiery+Confluence&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Fiery+Confluence"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/107740?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Fiery+Confluence&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Fiery+Confluence&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "4c454a20-8ec8-41d9-b9c3-acaa510d050b", "oracle_id": "3c22e031-4804-4c31-bd3c-c3f29d456b34", "multiverse_ids": [], "tcgplayer_id": 215319, "cardmarket_id": 465664, "name": "Fiery Confluence", "lang": "en", "released_at": "2020-06-26", "uri": "https://api.scryfall.com/cards/4c454a20-8ec8-41d9-b9c3-acaa510d050b", "scryfall_uri": "https://scryfall.com/card/ss3/3/fiery-confluence?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/4/c/4c454a20-8ec8-41d9-b9c3-acaa510d050b.jpg?1593559583", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/c/4c454a20-8ec8-41d9-b9c3-acaa510d050b.jpg?1593559583", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/4/c/4c454a20-8ec8-41d9-b9c3-acaa510d050b.jpg?1593559583", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/4/c/4c454a20-8ec8-41d9-b9c3-acaa510d050b.png?1593559583", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/c/4c454a20-8ec8-41d9-b9c3-acaa510d050b.jpg?1593559583", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/4/c/4c454a20-8ec8-41d9-b9c3-acaa510d050b.jpg?1593559583"}, "mana_cost": "{2}{R}{R}", "cmc": 4.0, "type_line": "Sorcery", "oracle_text": "Choose three. You may choose the same mode more than once.\n\u2022 Fiery Confluence deals 1 damage to each creature.\n\u2022 Fiery Confluence deals 2 damage to each opponent.\n\u2022 Destroy target artifact.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "4887d21f-71e7-4d7a-a079-e9521fd7e6d7", "set": "ss3", "set_name": "Signature Spellbook: Chandra", "set_type": "spellbook", "set_uri": "https://api.scryfall.com/sets/4887d21f-71e7-4d7a-a079-e9521fd7e6d7", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ass3&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ss3?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/4c454a20-8ec8-41d9-b9c3-acaa510d050b/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A3c22e031-4804-4c31-bd3c-c3f29d456b34&unique=prints", "collector_number": "3", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Micah Epstein", "artist_ids": ["957ec398-9a5e-4f54-9090-37a06d57b96c"], "illustration_id": "2ffa8766-a524-4764-a527-b70c0c16255f", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "edhrec_rank": 2218, "prices": {"usd": "1.16", "usd_foil": "2.92", "usd_etched": null, "eur": "0.90", "eur_foil": "2.95", "tix": null}, "related_uris": {"tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Fiery+Confluence&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Fiery+Confluence&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Fiery+Confluence"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/215319?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Fiery+Confluence&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Fiery+Confluence&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "a91376ed-5868-4887-8389-5ef5b9471786", "oracle_id": "78497c54-7179-41b7-9454-7b915fd96cd5", "multiverse_ids": [48073], "mtgo_id": 20085, "mtgo_foil_id": 20086, "tcgplayer_id": 11410, "cardmarket_id": 90, "name": "Fiery Gambit", "lang": "en", "released_at": "2003-10-02", "uri": "https://api.scryfall.com/cards/a91376ed-5868-4887-8389-5ef5b9471786", "scryfall_uri": "https://scryfall.com/card/mrd/90/fiery-gambit?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/a/9/a91376ed-5868-4887-8389-5ef5b9471786.jpg?1562153660", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/9/a91376ed-5868-4887-8389-5ef5b9471786.jpg?1562153660", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/a/9/a91376ed-5868-4887-8389-5ef5b9471786.jpg?1562153660", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/a/9/a91376ed-5868-4887-8389-5ef5b9471786.png?1562153660", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/9/a91376ed-5868-4887-8389-5ef5b9471786.jpg?1562153660", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/a/9/a91376ed-5868-4887-8389-5ef5b9471786.jpg?1562153660"}, "mana_cost": "{2}{R}", "cmc": 3.0, "type_line": "Sorcery", "oracle_text": "Flip a coin until you lose a flip or choose to stop flipping. If you lose a flip, Fiery Gambit has no effect. If you win one or more flips, Fiery Gambit deals 3 damage to target creature. If you win two or more flips, Fiery Gambit deals 6 damage to each opponent. If you win three or more flips, draw nine cards and untap all lands you control.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "1d4f90ba-8d4a-4ee5-bc2f-e2d6bffe4955", "set": "mrd", "set_name": "Mirrodin", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/1d4f90ba-8d4a-4ee5-bc2f-e2d6bffe4955", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Amrd&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/mrd?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/a91376ed-5868-4887-8389-5ef5b9471786/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A78497c54-7179-41b7-9454-7b915fd96cd5&unique=prints", "collector_number": "90", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Scott M. Fischer", "artist_ids": ["23b0cf43-3e43-44c6-8329-96446eca5bce"], "illustration_id": "2fc505ff-b737-49d7-8a7c-7800514f8cb0", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 4908, "penny_rank": 5343, "prices": {"usd": "2.92", "usd_foil": "6.39", "usd_etched": null, "eur": "0.58", "eur_foil": "1.00", "tix": "0.01"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=48073", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Fiery+Gambit&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Fiery+Gambit&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Fiery+Gambit"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/11410?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Fiery+Gambit&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/20085?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "61caf82d-e077-4931-a6ad-09fa7f04b36f", "oracle_id": "f07bd49d-8e71-4d56-be2a-638514011318", "multiverse_ids": [409908], "mtgo_id": 59934, "mtgo_foil_id": 59935, "tcgplayer_id": 115275, "cardmarket_id": 288880, "name": "Fiery Temper", "lang": "en", "released_at": "2016-04-08", "uri": "https://api.scryfall.com/cards/61caf82d-e077-4931-a6ad-09fa7f04b36f", "scryfall_uri": "https://scryfall.com/card/soi/156/fiery-temper?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/6/1/61caf82d-e077-4931-a6ad-09fa7f04b36f.jpg?1576384730", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/1/61caf82d-e077-4931-a6ad-09fa7f04b36f.jpg?1576384730", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/6/1/61caf82d-e077-4931-a6ad-09fa7f04b36f.jpg?1576384730", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/6/1/61caf82d-e077-4931-a6ad-09fa7f04b36f.png?1576384730", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/1/61caf82d-e077-4931-a6ad-09fa7f04b36f.jpg?1576384730", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/6/1/61caf82d-e077-4931-a6ad-09fa7f04b36f.jpg?1576384730"}, "mana_cost": "{1}{R}{R}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Fiery Temper deals 3 damage to any target.\nMadness {R} (If you discard this card, discard it into exile. When you do, cast it for its madness cost or put it into your graveyard.)", "colors": ["R"], "color_identity": ["R"], "keywords": ["Madness"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "5e914d7e-c1e9-446c-a33d-d093c02b2743", "set": "soi", "set_name": "Shadows over Innistrad", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/5e914d7e-c1e9-446c-a33d-d093c02b2743", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Asoi&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/soi?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/61caf82d-e077-4931-a6ad-09fa7f04b36f/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Af07bd49d-8e71-4d56-be2a-638514011318&unique=prints", "collector_number": "156", "digital": false, "rarity": "common", "flavor_text": "\"Let the flames ignore the sinless.\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Johannes Voss", "artist_ids": ["3593dd7e-c547-4a32-81cd-7da725f60118"], "illustration_id": "01880a0d-358f-43ef-a869-f3d1f75aeb38", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 4566, "penny_rank": 1028, "prices": {"usd": "0.08", "usd_foil": "0.39", "usd_etched": null, "eur": "0.12", "eur_foil": "0.10", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=409908", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Fiery+Temper&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Fiery+Temper&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Fiery+Temper"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/115275?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Fiery+Temper&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/59934?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "918e46b7-cbca-4acf-8e83-94b5fcadcc49", "oracle_id": "f07bd49d-8e71-4d56-be2a-638514011318", "multiverse_ids": [32918], "mtgo_id": 17243, "mtgo_foil_id": 17244, "tcgplayer_id": 9635, "cardmarket_id": 2366, "name": "Fiery Temper", "lang": "en", "released_at": "2002-02-04", "uri": "https://api.scryfall.com/cards/918e46b7-cbca-4acf-8e83-94b5fcadcc49", "scryfall_uri": "https://scryfall.com/card/tor/97/fiery-temper?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/9/1/918e46b7-cbca-4acf-8e83-94b5fcadcc49.jpg?1562630935", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/1/918e46b7-cbca-4acf-8e83-94b5fcadcc49.jpg?1562630935", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/9/1/918e46b7-cbca-4acf-8e83-94b5fcadcc49.jpg?1562630935", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/9/1/918e46b7-cbca-4acf-8e83-94b5fcadcc49.png?1562630935", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/1/918e46b7-cbca-4acf-8e83-94b5fcadcc49.jpg?1562630935", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/9/1/918e46b7-cbca-4acf-8e83-94b5fcadcc49.jpg?1562630935"}, "mana_cost": "{1}{R}{R}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Fiery Temper deals 3 damage to any target.\nMadness {R} (If you discard this card, discard it into exile. When you do, cast it for its madness cost or put it into your graveyard.)", "colors": ["R"], "color_identity": ["R"], "keywords": ["Madness"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "e0b3fda1-a6ca-4996-849b-08b463d39484", "set": "tor", "set_name": "Torment", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/e0b3fda1-a6ca-4996-849b-08b463d39484", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ator&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/tor?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/918e46b7-cbca-4acf-8e83-94b5fcadcc49/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Af07bd49d-8e71-4d56-be2a-638514011318&unique=prints", "collector_number": "97", "digital": false, "rarity": "common", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Greg Hildebrandt & Tim Hildebrandt", "artist_ids": ["020f967b-0d2f-4166-aabe-901dba8bc7ec", "caa7228c-f74c-4145-91fb-1af8d623c353"], "illustration_id": "0db0b5d6-cb41-4359-893d-727354a59ea7", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 4566, "penny_rank": 1028, "prices": {"usd": "0.22", "usd_foil": "5.27", "usd_etched": null, "eur": "0.11", "eur_foil": "2.75", "tix": "0.09"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=32918", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Fiery+Temper&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Fiery+Temper&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Fiery+Temper"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/9635?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Fiery+Temper&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/17243?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "73493d43-7952-4202-818d-a1a05788af6f", "oracle_id": "f07bd49d-8e71-4d56-be2a-638514011318", "multiverse_ids": [], "tcgplayer_id": 125191, "cardmarket_id": 292083, "name": "Fiery Temper", "lang": "en", "released_at": "2016-01-01", "uri": "https://api.scryfall.com/cards/73493d43-7952-4202-818d-a1a05788af6f", "scryfall_uri": "https://scryfall.com/card/f16/11/fiery-temper?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/7/3/73493d43-7952-4202-818d-a1a05788af6f.jpg?1562636814", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/3/73493d43-7952-4202-818d-a1a05788af6f.jpg?1562636814", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/7/3/73493d43-7952-4202-818d-a1a05788af6f.jpg?1562636814", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/7/3/73493d43-7952-4202-818d-a1a05788af6f.png?1562636814", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/3/73493d43-7952-4202-818d-a1a05788af6f.jpg?1562636814", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/7/3/73493d43-7952-4202-818d-a1a05788af6f.jpg?1562636814"}, "mana_cost": "{1}{R}{R}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Fiery Temper deals 3 damage to any target.\nMadness {R} (If you discard this card, discard it into exile. When you do, cast it for its madness cost or put it into your graveyard.)", "colors": ["R"], "color_identity": ["R"], "keywords": ["Madness"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper"], "reserved": false, "foil": true, "nonfoil": false, "finishes": ["foil"], "oversized": false, "promo": true, "reprint": true, "variation": false, "set_id": "820ba719-0234-4ca7-9d72-e0f8d56460bb", "set": "f16", "set_name": "Friday Night Magic 2016", "set_type": "promo", "set_uri": "https://api.scryfall.com/sets/820ba719-0234-4ca7-9d72-e0f8d56460bb", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Af16&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/f16?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/73493d43-7952-4202-818d-a1a05788af6f/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Af07bd49d-8e71-4d56-be2a-638514011318&unique=prints", "collector_number": "11", "digital": false, "rarity": "rare", "watermark": "wotc", "flavor_text": "\"Let the flames ignore the sinless.\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Eric Deschamps", "artist_ids": ["37970e22-9cee-44c1-af44-5ee27cf26b76"], "illustration_id": "34b75711-4105-4032-ae6a-a609cdd5b540", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "promo_types": ["tourney", "fnm"], "edhrec_rank": 4566, "penny_rank": 1028, "prices": {"usd": null, "usd_foil": "0.25", "usd_etched": null, "eur": null, "eur_foil": "0.19", "tix": null}, "related_uris": {"tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Fiery+Temper&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Fiery+Temper&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Fiery+Temper"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/125191?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Fiery+Temper&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Fiery+Temper&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "d377a7b9-5c25-4017-84a8-ae368eceba50", "oracle_id": "f07bd49d-8e71-4d56-be2a-638514011318", "multiverse_ids": [], "tcgplayer_id": 38193, "cardmarket_id": 17555, "name": "Fiery Temper", "lang": "en", "released_at": "2006-01-01", "uri": "https://api.scryfall.com/cards/d377a7b9-5c25-4017-84a8-ae368eceba50", "scryfall_uri": "https://scryfall.com/card/pgtw/3/fiery-temper?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/d/3/d377a7b9-5c25-4017-84a8-ae368eceba50.jpg?1561758137", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/3/d377a7b9-5c25-4017-84a8-ae368eceba50.jpg?1561758137", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/d/3/d377a7b9-5c25-4017-84a8-ae368eceba50.jpg?1561758137", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/d/3/d377a7b9-5c25-4017-84a8-ae368eceba50.png?1561758137", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/3/d377a7b9-5c25-4017-84a8-ae368eceba50.jpg?1561758137", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/d/3/d377a7b9-5c25-4017-84a8-ae368eceba50.jpg?1561758137"}, "mana_cost": "{1}{R}{R}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Fiery Temper deals 3 damage to any target.\nMadness {R} (If you discard this card, discard it into exile. When you do, cast it for its madness cost or put it into your graveyard.)", "colors": ["R"], "color_identity": ["R"], "keywords": ["Madness"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper"], "reserved": false, "foil": true, "nonfoil": false, "finishes": ["foil"], "oversized": false, "promo": true, "reprint": true, "variation": false, "set_id": "ee2cd6db-f61e-411b-ad0d-882b14ff4592", "set": "pgtw", "set_name": "Gateway 2006", "set_type": "promo", "set_uri": "https://api.scryfall.com/sets/ee2cd6db-f61e-411b-ad0d-882b14ff4592", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Apgtw&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/pgtw?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/d377a7b9-5c25-4017-84a8-ae368eceba50/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Af07bd49d-8e71-4d56-be2a-638514011318&unique=prints", "collector_number": "3", "digital": false, "rarity": "rare", "watermark": "dci", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Ben Wootten", "artist_ids": ["31cdca96-ecde-4245-bfb6-653929d57d9c"], "illustration_id": "d6e47840-2b9c-42f6-bff6-e0f2f7bfb4db", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "promo_types": ["gateway"], "edhrec_rank": 4566, "penny_rank": 1028, "prices": {"usd": null, "usd_foil": "1.57", "usd_etched": null, "eur": null, "eur_foil": "0.78", "tix": null}, "related_uris": {"tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Fiery+Temper&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Fiery+Temper&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Fiery+Temper"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/38193?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Fiery+Temper&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Fiery+Temper&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "4dd8bdbd-99c9-4fa7-936a-acc7f4238507", "oracle_id": "50463946-1ce3-4ff0-ad68-2fb87adbe2fd", "multiverse_ids": [10632], "tcgplayer_id": 460, "cardmarket_id": 11304, "name": "Fire Ambush", "lang": "en", "released_at": "1999-07-06", "uri": "https://api.scryfall.com/cards/4dd8bdbd-99c9-4fa7-936a-acc7f4238507", "scryfall_uri": "https://scryfall.com/card/ptk/111/fire-ambush?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/4/d/4dd8bdbd-99c9-4fa7-936a-acc7f4238507.jpg?1562256089", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/d/4dd8bdbd-99c9-4fa7-936a-acc7f4238507.jpg?1562256089", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/4/d/4dd8bdbd-99c9-4fa7-936a-acc7f4238507.jpg?1562256089", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/4/d/4dd8bdbd-99c9-4fa7-936a-acc7f4238507.png?1562256089", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/d/4dd8bdbd-99c9-4fa7-936a-acc7f4238507.jpg?1562256089", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/4/d/4dd8bdbd-99c9-4fa7-936a-acc7f4238507.jpg?1562256089"}, "mana_cost": "{1}{R}", "cmc": 2.0, "type_line": "Sorcery", "oracle_text": "Fire Ambush deals 3 damage to any target.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "2676ff2e-9d86-4b5b-b935-e84e41b0755e", "set": "ptk", "set_name": "Portal Three Kingdoms", "set_type": "starter", "set_uri": "https://api.scryfall.com/sets/2676ff2e-9d86-4b5b-b935-e84e41b0755e", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aptk&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ptk?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/4dd8bdbd-99c9-4fa7-936a-acc7f4238507/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A50463946-1ce3-4ff0-ad68-2fb87adbe2fd&unique=prints", "collector_number": "111", "digital": false, "rarity": "common", "flavor_text": "\"With fire he broke the battle at Bowang . . . . Striking fear deep into Cao Cao's soul, thus Kongming scored a coup at his debut.\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Tang Xiaogu", "artist_ids": ["2519d1e1-dcbd-4ee5-a505-d20f8574268c"], "illustration_id": "04d8742d-1b05-4353-a4b5-c0dbaa46ba77", "border_color": "white", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 20459, "penny_rank": 4857, "prices": {"usd": "5.95", "usd_foil": null, "usd_etched": null, "eur": "8.00", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=10632", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Fire+Ambush&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Fire+Ambush&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Fire+Ambush"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/460?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Fire+Ambush&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Fire+Ambush&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "44ab6601-409b-416f-a26c-b995e08fe6f3", "oracle_id": "9dd7f27a-e862-47d7-9158-034cf4d353b8", "multiverse_ids": [382935], "mtgo_id": 53071, "mtgo_foil_id": 53072, "name": "Fireblast", "lang": "en", "released_at": "2014-06-16", "uri": "https://api.scryfall.com/cards/44ab6601-409b-416f-a26c-b995e08fe6f3", "scryfall_uri": "https://scryfall.com/card/vma/159/fireblast?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/4/4/44ab6601-409b-416f-a26c-b995e08fe6f3.jpg?1562908902", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/4/44ab6601-409b-416f-a26c-b995e08fe6f3.jpg?1562908902", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/4/4/44ab6601-409b-416f-a26c-b995e08fe6f3.jpg?1562908902", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/4/4/44ab6601-409b-416f-a26c-b995e08fe6f3.png?1562908902", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/4/44ab6601-409b-416f-a26c-b995e08fe6f3.jpg?1562908902", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/4/4/44ab6601-409b-416f-a26c-b995e08fe6f3.jpg?1562908902"}, "mana_cost": "{4}{R}{R}", "cmc": 6.0, "type_line": "Instant", "oracle_text": "You may sacrifice two Mountains rather than pay this spell's mana cost.\nFireblast deals 4 damage to any target.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "a944551a-73fa-41cd-9159-e8d0e4674403", "set": "vma", "set_name": "Vintage Masters", "set_type": "masters", "set_uri": "https://api.scryfall.com/sets/a944551a-73fa-41cd-9159-e8d0e4674403", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Avma&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/vma?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/44ab6601-409b-416f-a26c-b995e08fe6f3/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A9dd7f27a-e862-47d7-9158-034cf4d353b8&unique=prints", "collector_number": "159", "digital": true, "rarity": "uncommon", "flavor_text": "Embermages aren't well known for their diplomatic skills.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Mike Bierek", "artist_ids": ["e5f52ef5-1a2e-4128-90b0-ccc71cd47ea7"], "illustration_id": "35373c98-b49e-41ff-9d5f-16d6d20d8ec0", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 12398, "prices": {"usd": null, "usd_foil": null, "usd_etched": null, "eur": null, "eur_foil": null, "tix": "0.49"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=382935", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Fireblast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Fireblast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Fireblast"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/search/magic/product?productLineName=magic&q=Fireblast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall&view=grid", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Fireblast&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/53071?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "b1eb5b2c-1f02-48a6-a287-88eb189d6780", "oracle_id": "9dd7f27a-e862-47d7-9158-034cf4d353b8", "multiverse_ids": [3686], "mtgo_id": 7551, "mtgo_foil_id": 7552, "tcgplayer_id": 5841, "cardmarket_id": 8480, "name": "Fireblast", "lang": "en", "released_at": "1997-02-03", "uri": "https://api.scryfall.com/cards/b1eb5b2c-1f02-48a6-a287-88eb189d6780", "scryfall_uri": "https://scryfall.com/card/vis/79/fireblast?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/b/1/b1eb5b2c-1f02-48a6-a287-88eb189d6780.jpg?1562278616", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/1/b1eb5b2c-1f02-48a6-a287-88eb189d6780.jpg?1562278616", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/b/1/b1eb5b2c-1f02-48a6-a287-88eb189d6780.jpg?1562278616", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/b/1/b1eb5b2c-1f02-48a6-a287-88eb189d6780.png?1562278616", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/1/b1eb5b2c-1f02-48a6-a287-88eb189d6780.jpg?1562278616", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/b/1/b1eb5b2c-1f02-48a6-a287-88eb189d6780.jpg?1562278616"}, "mana_cost": "{4}{R}{R}", "cmc": 6.0, "type_line": "Instant", "oracle_text": "You may sacrifice two Mountains rather than pay this spell's mana cost.\nFireblast deals 4 damage to any target.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "2c32f1a9-7921-4826-bea0-80bbac70532c", "set": "vis", "set_name": "Visions", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/2c32f1a9-7921-4826-bea0-80bbac70532c", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Avis&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/vis?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/b1eb5b2c-1f02-48a6-a287-88eb189d6780/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A9dd7f27a-e862-47d7-9158-034cf4d353b8&unique=prints", "collector_number": "79", "digital": false, "rarity": "common", "flavor_text": "Embermages aren't well known for their diplomatic skills.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Michael Danza", "artist_ids": ["e4a116a8-650e-4dba-bd2c-e94f2abc17ef"], "illustration_id": "f001571b-d24f-4ac1-8a1a-8182584e19f6", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 12398, "prices": {"usd": "1.64", "usd_foil": null, "usd_etched": null, "eur": "1.35", "eur_foil": null, "tix": "1.34"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=3686", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Fireblast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Fireblast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Fireblast"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/5841?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Fireblast&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/7551?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "90aae741-88af-4d21-a230-9a2592acdc87", "oracle_id": "7aa31280-12c3-479d-a6dd-f1c669043083", "multiverse_ids": [413672], "mtgo_id": 60939, "mtgo_foil_id": 60940, "tcgplayer_id": 118509, "cardmarket_id": 290236, "name": "Firebolt", "lang": "en", "released_at": "2016-06-10", "uri": "https://api.scryfall.com/cards/90aae741-88af-4d21-a230-9a2592acdc87", "scryfall_uri": "https://scryfall.com/card/ema/130/firebolt?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/9/0/90aae741-88af-4d21-a230-9a2592acdc87.jpg?1580014536", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/0/90aae741-88af-4d21-a230-9a2592acdc87.jpg?1580014536", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/9/0/90aae741-88af-4d21-a230-9a2592acdc87.jpg?1580014536", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/9/0/90aae741-88af-4d21-a230-9a2592acdc87.png?1580014536", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/0/90aae741-88af-4d21-a230-9a2592acdc87.jpg?1580014536", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/9/0/90aae741-88af-4d21-a230-9a2592acdc87.jpg?1580014536"}, "mana_cost": "{R}", "cmc": 1.0, "type_line": "Sorcery", "oracle_text": "Firebolt deals 2 damage to any target.\nFlashback {4}{R} (You may cast this card from your graveyard for its flashback cost. Then exile it.)", "colors": ["R"], "color_identity": ["R"], "keywords": ["Flashback"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "1f29f022-3ace-4c96-85e8-1f7b63aadf7e", "set": "ema", "set_name": "Eternal Masters", "set_type": "masters", "set_uri": "https://api.scryfall.com/sets/1f29f022-3ace-4c96-85e8-1f7b63aadf7e", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aema&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ema?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/90aae741-88af-4d21-a230-9a2592acdc87/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A7aa31280-12c3-479d-a6dd-f1c669043083&unique=prints", "collector_number": "130", "digital": false, "rarity": "common", "flavor_text": "\"There's more where that came from!\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Chris Rallis", "artist_ids": ["a8e7b854-b15a-421a-b66d-6e68187ae285"], "illustration_id": "b2784f2e-fdd7-45f4-8cfb-516837c3c1c1", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 10653, "penny_rank": 492, "prices": {"usd": "0.08", "usd_foil": "0.18", "usd_etched": null, "eur": "0.25", "eur_foil": "0.22", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=413672", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Firebolt&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Firebolt&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Firebolt"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/118509?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Firebolt&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/60939?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "d5e45005-dd81-4d80-b043-02f719aca929", "oracle_id": "7aa31280-12c3-479d-a6dd-f1c669043083", "multiverse_ids": [30570], "mtgo_id": 16705, "mtgo_foil_id": 16706, "tcgplayer_id": 9468, "cardmarket_id": 2605, "name": "Firebolt", "lang": "en", "released_at": "2001-10-01", "uri": "https://api.scryfall.com/cards/d5e45005-dd81-4d80-b043-02f719aca929", "scryfall_uri": "https://scryfall.com/card/ody/193/firebolt?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/d/5/d5e45005-dd81-4d80-b043-02f719aca929.jpg?1562934963", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/5/d5e45005-dd81-4d80-b043-02f719aca929.jpg?1562934963", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/d/5/d5e45005-dd81-4d80-b043-02f719aca929.jpg?1562934963", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/d/5/d5e45005-dd81-4d80-b043-02f719aca929.png?1562934963", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/5/d5e45005-dd81-4d80-b043-02f719aca929.jpg?1562934963", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/d/5/d5e45005-dd81-4d80-b043-02f719aca929.jpg?1562934963"}, "mana_cost": "{R}", "cmc": 1.0, "type_line": "Sorcery", "oracle_text": "Firebolt deals 2 damage to any target.\nFlashback {4}{R} (You may cast this card from your graveyard for its flashback cost. Then exile it.)", "colors": ["R"], "color_identity": ["R"], "keywords": ["Flashback"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "b0d90d2d-494a-4224-bfa0-36ce5ee281b1", "set": "ody", "set_name": "Odyssey", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/b0d90d2d-494a-4224-bfa0-36ce5ee281b1", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aody&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ody?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/d5e45005-dd81-4d80-b043-02f719aca929/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A7aa31280-12c3-479d-a6dd-f1c669043083&unique=prints", "collector_number": "193", "digital": false, "rarity": "common", "flavor_text": "Reach out and torch someone.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Ron Spencer", "artist_ids": ["dab52c11-0564-4207-a4a1-c1735c946a65"], "illustration_id": "d6ad6bdd-9fd2-46c8-86d8-2d6af455aa1a", "border_color": "black", "frame": "1997", "frame_effects": ["tombstone"], "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 10653, "penny_rank": 492, "prices": {"usd": "0.25", "usd_foil": "18.52", "usd_etched": null, "eur": "0.33", "eur_foil": "5.50", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=30570", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Firebolt&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Firebolt&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Firebolt"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/9468?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Firebolt&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/16705?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "6d94aaa4-c2fd-4714-9198-8415158b9c4d", "oracle_id": "205bcab6-8b6b-4d09-9890-0b7391d59788", "multiverse_ids": [262832], "mtgo_id": 43387, "mtgo_foil_id": 43388, "tcgplayer_id": 57827, "cardmarket_id": 252595, "name": "Fires of Undeath", "lang": "en", "released_at": "2012-02-03", "uri": "https://api.scryfall.com/cards/6d94aaa4-c2fd-4714-9198-8415158b9c4d", "scryfall_uri": "https://scryfall.com/card/dka/88/fires-of-undeath?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/6/d/6d94aaa4-c2fd-4714-9198-8415158b9c4d.jpg?1562920799", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/d/6d94aaa4-c2fd-4714-9198-8415158b9c4d.jpg?1562920799", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/6/d/6d94aaa4-c2fd-4714-9198-8415158b9c4d.jpg?1562920799", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/6/d/6d94aaa4-c2fd-4714-9198-8415158b9c4d.png?1562920799", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/d/6d94aaa4-c2fd-4714-9198-8415158b9c4d.jpg?1562920799", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/6/d/6d94aaa4-c2fd-4714-9198-8415158b9c4d.jpg?1562920799"}, "mana_cost": "{2}{R}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Fires of Undeath deals 2 damage to any target.\nFlashback {5}{B} (You may cast this card from your graveyard for its flashback cost. Then exile it.)", "colors": ["R"], "color_identity": ["B", "R"], "keywords": ["Flashback"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "8052750a-aaf2-46fc-b46d-633f14124017", "set": "dka", "set_name": "Dark Ascension", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/8052750a-aaf2-46fc-b46d-633f14124017", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Adka&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/dka?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/6d94aaa4-c2fd-4714-9198-8415158b9c4d/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A205bcab6-8b6b-4d09-9890-0b7391d59788&unique=prints", "collector_number": "88", "digital": false, "rarity": "common", "flavor_text": "\"I drink of those who are worthy of my palate. The rest I burn.\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Jason Chan", "artist_ids": ["8062d5a9-51b6-4822-933f-fa9e9dba8416"], "illustration_id": "c780ffc0-0e7a-48f3-8a4f-6a6aca15c7c4", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 22204, "prices": {"usd": "0.05", "usd_foil": "0.38", "usd_etched": null, "eur": "0.25", "eur_foil": "0.06", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=262832", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Fires+of+Undeath&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Fires+of+Undeath&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Fires+of+Undeath"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/57827?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Fires+of+Undeath&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/43387?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "92334ebe-3d7a-46de-8b91-931e5d56a5a5", "oracle_id": "ede6a352-52de-4ae0-816f-50140033dedf", "multiverse_ids": [4339], "tcgplayer_id": 672, "cardmarket_id": 10118, "name": "Fire Tempest", "lang": "en", "released_at": "1997-05-01", "uri": "https://api.scryfall.com/cards/92334ebe-3d7a-46de-8b91-931e5d56a5a5", "scryfall_uri": "https://scryfall.com/card/por/128/fire-tempest?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/9/2/92334ebe-3d7a-46de-8b91-931e5d56a5a5.jpg?1562447336", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/2/92334ebe-3d7a-46de-8b91-931e5d56a5a5.jpg?1562447336", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/9/2/92334ebe-3d7a-46de-8b91-931e5d56a5a5.jpg?1562447336", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/9/2/92334ebe-3d7a-46de-8b91-931e5d56a5a5.png?1562447336", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/2/92334ebe-3d7a-46de-8b91-931e5d56a5a5.jpg?1562447336", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/9/2/92334ebe-3d7a-46de-8b91-931e5d56a5a5.jpg?1562447336"}, "mana_cost": "{5}{R}{R}", "cmc": 7.0, "type_line": "Sorcery", "oracle_text": "Fire Tempest deals 6 damage to each creature and each player.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "478c47df-5058-4ce6-830e-7e80732b2ca9", "set": "por", "set_name": "Portal", "set_type": "starter", "set_uri": "https://api.scryfall.com/sets/478c47df-5058-4ce6-830e-7e80732b2ca9", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Apor&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/por?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/92334ebe-3d7a-46de-8b91-931e5d56a5a5/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aede6a352-52de-4ae0-816f-50140033dedf&unique=prints", "collector_number": "128", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Mike Dringenberg", "artist_ids": ["a1407afa-0f54-43f8-938b-88b268074f91"], "illustration_id": "c81d15a8-5111-432a-aac8-04eba4d3b506", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 17139, "penny_rank": 12542, "prices": {"usd": "0.98", "usd_foil": null, "usd_etched": null, "eur": "0.75", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=4339", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Fire+Tempest&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Fire+Tempest&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Fire+Tempest"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/672?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Fire+Tempest&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Fire+Tempest&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "d6e5e360-ed47-40c1-8ad7-57645c2854ca", "oracle_id": "b6a89457-1581-46d4-b75b-c5b8704d9f6f", "multiverse_ids": [74451], "mtgo_id": 21721, "mtgo_foil_id": 21722, "tcgplayer_id": 12255, "cardmarket_id": 12813, "name": "First Volley", "lang": "en", "released_at": "2005-02-04", "uri": "https://api.scryfall.com/cards/d6e5e360-ed47-40c1-8ad7-57645c2854ca", "scryfall_uri": "https://scryfall.com/card/bok/100/first-volley?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/d/6/d6e5e360-ed47-40c1-8ad7-57645c2854ca.jpg?1562880074", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/6/d6e5e360-ed47-40c1-8ad7-57645c2854ca.jpg?1562880074", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/d/6/d6e5e360-ed47-40c1-8ad7-57645c2854ca.jpg?1562880074", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/d/6/d6e5e360-ed47-40c1-8ad7-57645c2854ca.png?1562880074", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/6/d6e5e360-ed47-40c1-8ad7-57645c2854ca.jpg?1562880074", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/d/6/d6e5e360-ed47-40c1-8ad7-57645c2854ca.jpg?1562880074"}, "mana_cost": "{1}{R}", "cmc": 2.0, "type_line": "Instant \u2014 Arcane", "oracle_text": "First Volley deals 1 damage to target creature and 1 damage to that creature's controller.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "d4b88587-a1f5-4b47-9e24-78ec9e57bd0e", "set": "bok", "set_name": "Betrayers of Kamigawa", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/d4b88587-a1f5-4b47-9e24-78ec9e57bd0e", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Abok&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/bok?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/d6e5e360-ed47-40c1-8ad7-57645c2854ca/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ab6a89457-1581-46d4-b75b-c5b8704d9f6f&unique=prints", "collector_number": "100", "digital": false, "rarity": "common", "flavor_text": "\"We searched their bodies for signs of the blades that had killed them, but found nothing more than scorched flesh.\"\n\u2014Tender-Hand, kitsune healer", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Glen Angus", "artist_ids": ["7be3b9e4-de9b-4a3d-884e-e67b9681d409"], "illustration_id": "107b9640-f37b-4271-bd8b-2bee0981a98f", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 20362, "prices": {"usd": "0.05", "usd_foil": "0.25", "usd_etched": null, "eur": "0.03", "eur_foil": "0.10", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=74451", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=First+Volley&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=First+Volley&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=First+Volley"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/12255?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=First+Volley&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/21721?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "87e1f06f-7c87-4da8-b339-e571e391cab1", "oracle_id": "9e608ace-2844-419b-9204-9054127557b2", "multiverse_ids": [50539], "mtgo_id": 20459, "mtgo_foil_id": 20460, "tcgplayer_id": 11605, "cardmarket_id": 424, "name": "Flamebreak", "lang": "en", "released_at": "2004-02-06", "uri": "https://api.scryfall.com/cards/87e1f06f-7c87-4da8-b339-e571e391cab1", "scryfall_uri": "https://scryfall.com/card/dst/61/flamebreak?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/8/7/87e1f06f-7c87-4da8-b339-e571e391cab1.jpg?1562637920", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/7/87e1f06f-7c87-4da8-b339-e571e391cab1.jpg?1562637920", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/8/7/87e1f06f-7c87-4da8-b339-e571e391cab1.jpg?1562637920", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/8/7/87e1f06f-7c87-4da8-b339-e571e391cab1.png?1562637920", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/7/87e1f06f-7c87-4da8-b339-e571e391cab1.jpg?1562637920", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/8/7/87e1f06f-7c87-4da8-b339-e571e391cab1.jpg?1562637920"}, "mana_cost": "{R}{R}{R}", "cmc": 3.0, "type_line": "Sorcery", "oracle_text": "Flamebreak deals 3 damage to each creature without flying and each player. Creatures dealt damage this way can't be regenerated this turn.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "e29cb2dd-1345-4032-abfe-e52e8c8ce074", "set": "dst", "set_name": "Darksteel", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/e29cb2dd-1345-4032-abfe-e52e8c8ce074", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Adst&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/dst?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/87e1f06f-7c87-4da8-b339-e571e391cab1/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A9e608ace-2844-419b-9204-9054127557b2&unique=prints", "collector_number": "61", "digital": false, "rarity": "rare", "flavor_text": "\"Now I'm thirsty.\"\n\u2014Korva, Vulshok battlemaster", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Trevor Hairsine", "artist_ids": ["7c1d7b59-dbf1-4ca8-9975-8e01c593da6e"], "illustration_id": "c0d65360-80eb-4cfb-8449-f61188d27e2e", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 10064, "penny_rank": 4720, "prices": {"usd": "1.51", "usd_foil": "2.49", "usd_etched": null, "eur": "0.48", "eur_foil": "3.00", "tix": "0.01"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=50539", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Flamebreak&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Flamebreak&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Flamebreak"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/11605?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Flamebreak&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/20459?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "64bbd438-7df2-4d7b-88ad-4531ebaf3931", "oracle_id": "37e44e1c-481d-4f5d-b76b-036f40e9124e", "multiverse_ids": [29767], "mtgo_id": 16937, "mtgo_foil_id": 16938, "tcgplayer_id": 9469, "cardmarket_id": 2606, "name": "Flame Burst", "lang": "en", "released_at": "2001-10-01", "uri": "https://api.scryfall.com/cards/64bbd438-7df2-4d7b-88ad-4531ebaf3931", "scryfall_uri": "https://scryfall.com/card/ody/194/flame-burst?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/6/4/64bbd438-7df2-4d7b-88ad-4531ebaf3931.jpg?1562913643", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/4/64bbd438-7df2-4d7b-88ad-4531ebaf3931.jpg?1562913643", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/6/4/64bbd438-7df2-4d7b-88ad-4531ebaf3931.jpg?1562913643", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/6/4/64bbd438-7df2-4d7b-88ad-4531ebaf3931.png?1562913643", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/4/64bbd438-7df2-4d7b-88ad-4531ebaf3931.jpg?1562913643", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/6/4/64bbd438-7df2-4d7b-88ad-4531ebaf3931.jpg?1562913643"}, "mana_cost": "{1}{R}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Flame Burst deals X damage to any target, where X is 2 plus the number of cards named Flame Burst in all graveyards.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "all_parts": [{"object": "related_card", "id": "64bbd438-7df2-4d7b-88ad-4531ebaf3931", "component": "combo_piece", "name": "Flame Burst", "type_line": "Instant", "uri": "https://api.scryfall.com/cards/64bbd438-7df2-4d7b-88ad-4531ebaf3931"}, {"object": "related_card", "id": "16858395-c742-4657-88c2-5af20c92718d", "component": "combo_piece", "name": "Pardic Firecat", "type_line": "Creature \u2014 Elemental Cat", "uri": "https://api.scryfall.com/cards/16858395-c742-4657-88c2-5af20c92718d"}], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "b0d90d2d-494a-4224-bfa0-36ce5ee281b1", "set": "ody", "set_name": "Odyssey", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/b0d90d2d-494a-4224-bfa0-36ce5ee281b1", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aody&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ody?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/64bbd438-7df2-4d7b-88ad-4531ebaf3931/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A37e44e1c-481d-4f5d-b76b-036f40e9124e&unique=prints", "collector_number": "194", "digital": false, "rarity": "common", "flavor_text": "As hot as a dwarf's rage.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Ron Spencer", "artist_ids": ["dab52c11-0564-4207-a4a1-c1735c946a65"], "illustration_id": "d847de15-3fdd-4f8b-b093-1487101eb825", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 23065, "penny_rank": 8392, "prices": {"usd": "0.07", "usd_foil": "0.46", "usd_etched": null, "eur": "0.03", "eur_foil": "4.00", "tix": "0.05"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=29767", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Flame+Burst&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Flame+Burst&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Flame+Burst"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/9469?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Flame+Burst&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/16937?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "06c2b6b2-485e-41e6-b106-4f6f402e0ec3", "oracle_id": "05eccdee-84f8-42d5-b79c-36d081656915", "multiverse_ids": [153432], "mtgo_id": 30094, "mtgo_foil_id": 30095, "tcgplayer_id": 27118, "cardmarket_id": 19515, "name": "Flame Jab", "lang": "en", "released_at": "2008-07-25", "uri": "https://api.scryfall.com/cards/06c2b6b2-485e-41e6-b106-4f6f402e0ec3", "scryfall_uri": "https://scryfall.com/card/eve/53/flame-jab?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/0/6/06c2b6b2-485e-41e6-b106-4f6f402e0ec3.jpg?1562896430", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/6/06c2b6b2-485e-41e6-b106-4f6f402e0ec3.jpg?1562896430", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/0/6/06c2b6b2-485e-41e6-b106-4f6f402e0ec3.jpg?1562896430", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/0/6/06c2b6b2-485e-41e6-b106-4f6f402e0ec3.png?1562896430", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/6/06c2b6b2-485e-41e6-b106-4f6f402e0ec3.jpg?1562896430", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/0/6/06c2b6b2-485e-41e6-b106-4f6f402e0ec3.jpg?1562896430"}, "mana_cost": "{R}", "cmc": 1.0, "type_line": "Sorcery", "oracle_text": "Flame Jab deals 1 damage to any target.\nRetrace (You may cast this card from your graveyard by discarding a land card in addition to paying its other costs.)", "colors": ["R"], "color_identity": ["R"], "keywords": ["Retrace"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "86b4dfef-f2d1-49d6-825d-7df6bda44357", "set": "eve", "set_name": "Eventide", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/86b4dfef-f2d1-49d6-825d-7df6bda44357", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aeve&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/eve?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/06c2b6b2-485e-41e6-b106-4f6f402e0ec3/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A05eccdee-84f8-42d5-b79c-36d081656915&unique=prints", "collector_number": "53", "digital": false, "rarity": "common", "flavor_text": "\"Fire's out. Should be safe now.\"\n\u2014Gnarltrunk", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "rk post", "artist_ids": ["81ae0f3f-1d88-4125-9aeb-b15b4c734c82"], "illustration_id": "91f8557b-be29-4559-8cbd-1387450cacc0", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 11694, "penny_rank": 3000, "prices": {"usd": "0.13", "usd_foil": "1.94", "usd_etched": null, "eur": "0.10", "eur_foil": "0.80", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=153432", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Flame+Jab&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Flame+Jab&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Flame+Jab"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/27118?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Flame+Jab&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/30094?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "a567b570-81e4-4068-929c-9ce406fe7474", "oracle_id": "58363090-bf89-4174-bbb2-636afc1c7a06", "multiverse_ids": [146017], "mtgo_id": 29425, "mtgo_foil_id": 29426, "tcgplayer_id": 18630, "cardmarket_id": 19106, "name": "Flame Javelin", "lang": "en", "released_at": "2008-05-02", "uri": "https://api.scryfall.com/cards/a567b570-81e4-4068-929c-9ce406fe7474", "scryfall_uri": "https://scryfall.com/card/shm/92/flame-javelin?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/a/5/a567b570-81e4-4068-929c-9ce406fe7474.jpg?1562834196", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/5/a567b570-81e4-4068-929c-9ce406fe7474.jpg?1562834196", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/a/5/a567b570-81e4-4068-929c-9ce406fe7474.jpg?1562834196", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/a/5/a567b570-81e4-4068-929c-9ce406fe7474.png?1562834196", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/5/a567b570-81e4-4068-929c-9ce406fe7474.jpg?1562834196", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/a/5/a567b570-81e4-4068-929c-9ce406fe7474.jpg?1562834196"}, "mana_cost": "{2/R}{2/R}{2/R}", "cmc": 6.0, "type_line": "Instant", "oracle_text": "({2/R} can be paid with any two mana or with {R}. This card's mana value is 6.)\nFlame Javelin deals 4 damage to any target.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "c18c0ba1-2081-4808-9b2e-549bc3a666f3", "set": "shm", "set_name": "Shadowmoor", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/c18c0ba1-2081-4808-9b2e-549bc3a666f3", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ashm&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/shm?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/a567b570-81e4-4068-929c-9ce406fe7474/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A58363090-bf89-4174-bbb2-636afc1c7a06&unique=prints", "collector_number": "92", "digital": false, "rarity": "uncommon", "flavor_text": "Gyara Spearhurler would have been renowned for her deadly accuracy, if it weren't for her deadly accuracy.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Trevor Hairsine", "artist_ids": ["7c1d7b59-dbf1-4ca8-9975-8e01c593da6e"], "illustration_id": "c83d8fd8-b12d-4145-8b79-8eaa992cbf0d", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 13964, "penny_rank": 568, "prices": {"usd": "0.21", "usd_foil": "2.75", "usd_etched": null, "eur": "0.35", "eur_foil": "0.85", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=146017", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Flame+Javelin&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Flame+Javelin&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Flame+Javelin"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/18630?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Flame+Javelin&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/29425?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "407858c8-316d-47a7-8234-c490a0bc87a6", "oracle_id": "58363090-bf89-4174-bbb2-636afc1c7a06", "multiverse_ids": [], "tcgplayer_id": 38309, "cardmarket_id": 19967, "name": "Flame Javelin", "lang": "en", "released_at": "2009-01-01", "uri": "https://api.scryfall.com/cards/407858c8-316d-47a7-8234-c490a0bc87a6", "scryfall_uri": "https://scryfall.com/card/p09/2/flame-javelin?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/4/0/407858c8-316d-47a7-8234-c490a0bc87a6.jpg?1561756991", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/0/407858c8-316d-47a7-8234-c490a0bc87a6.jpg?1561756991", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/4/0/407858c8-316d-47a7-8234-c490a0bc87a6.jpg?1561756991", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/4/0/407858c8-316d-47a7-8234-c490a0bc87a6.png?1561756991", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/0/407858c8-316d-47a7-8234-c490a0bc87a6.jpg?1561756991", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/4/0/407858c8-316d-47a7-8234-c490a0bc87a6.jpg?1561756991"}, "mana_cost": "{2/R}{2/R}{2/R}", "cmc": 6.0, "type_line": "Instant", "oracle_text": "({2/R} can be paid with any two mana or with {R}. This card's mana value is 6.)\nFlame Javelin deals 4 damage to any target.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": true, "reprint": true, "variation": false, "set_id": "824eec08-e609-41db-8de4-4e58d8aeb37d", "set": "p09", "set_name": "Magic Player Rewards 2009", "set_type": "promo", "set_uri": "https://api.scryfall.com/sets/824eec08-e609-41db-8de4-4e58d8aeb37d", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ap09&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/p09?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/407858c8-316d-47a7-8234-c490a0bc87a6/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A58363090-bf89-4174-bbb2-636afc1c7a06&unique=prints", "collector_number": "2", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Zoltan Boros & Gabor Szikszai", "artist_ids": ["1885e6cb-c827-4896-994e-3d0a027d602f", "44c3877f-8771-43dc-9e40-f4c765f59d2e"], "illustration_id": "f9208814-6021-4f0c-8922-c137566b943a", "border_color": "black", "frame": "2003", "full_art": true, "textless": true, "booster": false, "story_spotlight": false, "promo_types": ["playerrewards"], "edhrec_rank": 13964, "penny_rank": 568, "prices": {"usd": "0.53", "usd_foil": null, "usd_etched": null, "eur": "0.25", "eur_foil": null, "tix": null}, "related_uris": {"tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Flame+Javelin&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Flame+Javelin&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Flame+Javelin"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/38309?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Flame+Javelin&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Flame+Javelin&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "a511f9df-b53b-4fea-87cd-9f18f6833f92", "oracle_id": "8a9d6a30-e2c2-4da5-ad3b-d64fb2b5543c", "multiverse_ids": [15201], "mtgo_id": 12867, "mtgo_foil_id": 12868, "tcgplayer_id": 6175, "cardmarket_id": 10781, "name": "Flame Jet", "lang": "en", "released_at": "1999-06-07", "uri": "https://api.scryfall.com/cards/a511f9df-b53b-4fea-87cd-9f18f6833f92", "scryfall_uri": "https://scryfall.com/card/uds/81/flame-jet?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/a/5/a511f9df-b53b-4fea-87cd-9f18f6833f92.jpg?1562444727", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/5/a511f9df-b53b-4fea-87cd-9f18f6833f92.jpg?1562444727", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/a/5/a511f9df-b53b-4fea-87cd-9f18f6833f92.jpg?1562444727", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/a/5/a511f9df-b53b-4fea-87cd-9f18f6833f92.png?1562444727", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/5/a511f9df-b53b-4fea-87cd-9f18f6833f92.jpg?1562444727", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/a/5/a511f9df-b53b-4fea-87cd-9f18f6833f92.jpg?1562444727"}, "mana_cost": "{1}{R}", "cmc": 2.0, "type_line": "Sorcery", "oracle_text": "Flame Jet deals 3 damage to target player or planeswalker.\nCycling {2} ({2}, Discard this card: Draw a card.)", "colors": ["R"], "color_identity": ["R"], "keywords": ["Cycling"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "44f17b37-dcf8-4239-baab-1efc00cd3480", "set": "uds", "set_name": "Urza's Destiny", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/44f17b37-dcf8-4239-baab-1efc00cd3480", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Auds&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/uds?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/a511f9df-b53b-4fea-87cd-9f18f6833f92/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A8a9d6a30-e2c2-4da5-ad3b-d64fb2b5543c&unique=prints", "collector_number": "81", "digital": false, "rarity": "common", "flavor_text": "Did the land make the Keldons? Did the Keldons make the land? Or were they simply meant for each other?", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "John Avon", "artist_ids": ["798f3932-30e0-4420-aa3f-db4d613f89ca"], "illustration_id": "dd454468-848b-479d-a799-b2a41486212e", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 18214, "penny_rank": 4930, "prices": {"usd": "0.08", "usd_foil": "7.28", "usd_etched": null, "eur": "0.08", "eur_foil": "0.20", "tix": "0.05"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=15201", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Flame+Jet&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Flame+Jet&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Flame+Jet"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/6175?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Flame+Jet&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/12867?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "ac44e3cb-cc69-4222-87bc-ffa54b7ab34a", "oracle_id": "c65e804b-9222-4fa8-88d1-df06a3279f22", "multiverse_ids": [420479], "mtgo_id": 62191, "mtgo_foil_id": 62192, "tcgplayer_id": 122876, "cardmarket_id": 292656, "name": "Flame Lash", "lang": "en", "released_at": "2016-09-30", "uri": "https://api.scryfall.com/cards/ac44e3cb-cc69-4222-87bc-ffa54b7ab34a", "scryfall_uri": "https://scryfall.com/card/kld/266/flame-lash?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/a/c/ac44e3cb-cc69-4222-87bc-ffa54b7ab34a.jpg?1562741297", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/c/ac44e3cb-cc69-4222-87bc-ffa54b7ab34a.jpg?1562741297", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/a/c/ac44e3cb-cc69-4222-87bc-ffa54b7ab34a.jpg?1562741297", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/a/c/ac44e3cb-cc69-4222-87bc-ffa54b7ab34a.png?1562741297", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/c/ac44e3cb-cc69-4222-87bc-ffa54b7ab34a.jpg?1562741297", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/a/c/ac44e3cb-cc69-4222-87bc-ffa54b7ab34a.jpg?1562741297"}, "mana_cost": "{3}{R}", "cmc": 4.0, "type_line": "Instant", "oracle_text": "Flame Lash deals 4 damage to any target.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "d667e468-be8f-411f-a030-473d148deb74", "set": "kld", "set_name": "Kaladesh", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/d667e468-be8f-411f-a030-473d148deb74", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Akld&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/kld?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/ac44e3cb-cc69-4222-87bc-ffa54b7ab34a/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ac65e804b-9222-4fa8-88d1-df06a3279f22&unique=prints", "collector_number": "266", "digital": false, "rarity": "common", "flavor_text": "\"This is just my warm-up.\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Viktor Titov", "artist_ids": ["2270c0b0-afb4-42b0-bcb6-25fe4ad6eef2"], "illustration_id": "da115e38-7cc8-42c3-a762-3b4e85b9f5b1", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "promo_types": ["planeswalkerdeck"], "edhrec_rank": 17706, "prices": {"usd": "0.04", "usd_foil": null, "usd_etched": null, "eur": "0.05", "eur_foil": null, "tix": "0.41"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=420479", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Flame+Lash&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Flame+Lash&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Flame+Lash"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/122876?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Flame+Lash&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/62191?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "e63ed449-d249-4639-85d2-f8fe75496d5c", "oracle_id": "28479aa8-d1cd-421a-8bbb-0594bb4dd410", "multiverse_ids": [526249], "mtgo_id": 90979, "tcgplayer_id": 239806, "tcgplayer_etched_id": 240819, "cardmarket_id": 566330, "name": "Flame Rift", "lang": "en", "released_at": "2021-06-18", "uri": "https://api.scryfall.com/cards/e63ed449-d249-4639-85d2-f8fe75496d5c", "scryfall_uri": "https://scryfall.com/card/mh2/278/flame-rift?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/e/6/e63ed449-d249-4639-85d2-f8fe75496d5c.jpg?1626100460", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/6/e63ed449-d249-4639-85d2-f8fe75496d5c.jpg?1626100460", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/e/6/e63ed449-d249-4639-85d2-f8fe75496d5c.jpg?1626100460", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/e/6/e63ed449-d249-4639-85d2-f8fe75496d5c.png?1626100460", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/6/e63ed449-d249-4639-85d2-f8fe75496d5c.jpg?1626100460", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/e/6/e63ed449-d249-4639-85d2-f8fe75496d5c.jpg?1626100460"}, "mana_cost": "{1}{R}", "cmc": 2.0, "type_line": "Sorcery", "oracle_text": "Flame Rift deals 4 damage to each player.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil", "etched"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "c1c7eb8c-f205-40ab-a609-767cb296544e", "set": "mh2", "set_name": "Modern Horizons 2", "set_type": "draft_innovation", "set_uri": "https://api.scryfall.com/sets/c1c7eb8c-f205-40ab-a609-767cb296544e", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Amh2&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/mh2?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/e63ed449-d249-4639-85d2-f8fe75496d5c/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A28479aa8-d1cd-421a-8bbb-0594bb4dd410&unique=prints", "collector_number": "278", "digital": false, "rarity": "uncommon", "watermark": "set", "flavor_text": "\"You might want to step back.\"\n\u2014Jaya Ballard, task mage", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Anastasia Ovchinnikova", "artist_ids": ["3605d81f-5c97-4958-9dcc-d44a85e10305"], "illustration_id": "9787a493-accd-4614-a3a3-f46f03012921", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 4521, "penny_rank": 662, "preview": {"source": "Cardmarket", "source_uri": "https://www.cardmarket.com/it/Magic/Insight/Articles/Exclusive-Preview-Three-New-Cards-on-Moderns-Horizon", "previewed_at": "2021-05-27"}, "prices": {"usd": "0.06", "usd_foil": "0.15", "usd_etched": "0.42", "eur": "0.15", "eur_foil": "0.37", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=526249", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Flame+Rift&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Flame+Rift&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Flame+Rift"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/239806?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Flame+Rift&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/90979?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "7717eeb9-c457-4a65-93a0-e91c7f6a1970", "oracle_id": "28479aa8-d1cd-421a-8bbb-0594bb4dd410", "multiverse_ids": [22290], "mtgo_id": 13993, "mtgo_foil_id": 13994, "tcgplayer_id": 7153, "cardmarket_id": 11803, "name": "Flame Rift", "lang": "en", "released_at": "2000-02-14", "uri": "https://api.scryfall.com/cards/7717eeb9-c457-4a65-93a0-e91c7f6a1970", "scryfall_uri": "https://scryfall.com/card/nem/80/flame-rift?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/7/7/7717eeb9-c457-4a65-93a0-e91c7f6a1970.jpg?1562630580", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/7/7717eeb9-c457-4a65-93a0-e91c7f6a1970.jpg?1562630580", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/7/7/7717eeb9-c457-4a65-93a0-e91c7f6a1970.jpg?1562630580", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/7/7/7717eeb9-c457-4a65-93a0-e91c7f6a1970.png?1562630580", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/7/7717eeb9-c457-4a65-93a0-e91c7f6a1970.jpg?1562630580", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/7/7/7717eeb9-c457-4a65-93a0-e91c7f6a1970.jpg?1562630580"}, "mana_cost": "{1}{R}", "cmc": 2.0, "type_line": "Sorcery", "oracle_text": "Flame Rift deals 4 damage to each player.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "fa5d1fdb-f781-473d-b14d-50396d40d43f", "set": "nem", "set_name": "Nemesis", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/fa5d1fdb-f781-473d-b14d-50396d40d43f", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Anem&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/nem?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/7717eeb9-c457-4a65-93a0-e91c7f6a1970/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A28479aa8-d1cd-421a-8bbb-0594bb4dd410&unique=prints", "collector_number": "80", "digital": false, "rarity": "common", "flavor_text": "Crovax hungered for power, and the stronghold devoured the sky.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Ben Thompson", "artist_ids": ["f3116c88-57f4-4fd1-95f3-cfd163977661"], "illustration_id": "696f4b1c-0d89-4e3b-b8dc-6f1705453d86", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 4521, "penny_rank": 662, "prices": {"usd": "0.23", "usd_foil": "16.28", "usd_etched": null, "eur": "0.25", "eur_foil": "24.00", "tix": "0.11"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=22290", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Flame+Rift&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Flame+Rift&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Flame+Rift"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/7153?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Flame+Rift&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/13993?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "a79701b4-d220-4c3e-b96c-7a77a22ba899", "oracle_id": "4e9df979-c1c2-4de1-944e-c5e2d782e66e", "multiverse_ids": [74625], "mtgo_id": 21865, "mtgo_foil_id": 21866, "tcgplayer_id": 12256, "cardmarket_id": 12814, "name": "Flames of the Blood Hand", "lang": "en", "released_at": "2005-02-04", "uri": "https://api.scryfall.com/cards/a79701b4-d220-4c3e-b96c-7a77a22ba899", "scryfall_uri": "https://scryfall.com/card/bok/101/flames-of-the-blood-hand?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/a/7/a79701b4-d220-4c3e-b96c-7a77a22ba899.jpg?1651124386", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/7/a79701b4-d220-4c3e-b96c-7a77a22ba899.jpg?1651124386", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/a/7/a79701b4-d220-4c3e-b96c-7a77a22ba899.jpg?1651124386", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/a/7/a79701b4-d220-4c3e-b96c-7a77a22ba899.png?1651124386", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/7/a79701b4-d220-4c3e-b96c-7a77a22ba899.jpg?1651124386", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/a/7/a79701b4-d220-4c3e-b96c-7a77a22ba899.jpg?1651124386"}, "mana_cost": "{2}{R}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Flames of the Blood Hand deals 4 damage to target player or planeswalker. The damage can't be prevented. If that player or that planeswalker's controller would gain life this turn, that player gains no life instead.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "d4b88587-a1f5-4b47-9e24-78ec9e57bd0e", "set": "bok", "set_name": "Betrayers of Kamigawa", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/d4b88587-a1f5-4b47-9e24-78ec9e57bd0e", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Abok&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/bok?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/a79701b4-d220-4c3e-b96c-7a77a22ba899/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A4e9df979-c1c2-4de1-944e-c5e2d782e66e&unique=prints", "collector_number": "101", "digital": false, "rarity": "uncommon", "flavor_text": "Many ogres extracted blood oaths from the oni they summoned. Others simply extracted blood.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Aleksi Briclot", "artist_ids": ["5e470014-31cb-41b0-b054-e23374484449"], "illustration_id": "3f443bb9-2321-429d-af46-336a5706fba7", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 14675, "penny_rank": 1550, "prices": {"usd": "0.29", "usd_foil": "2.04", "usd_etched": null, "eur": "0.18", "eur_foil": "2.00", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=74625", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Flames+of+the+Blood+Hand&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Flames+of+the+Blood+Hand&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Flames+of+the+Blood+Hand"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/12256?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Flames+of+the+Blood+Hand&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/21865?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "b3090004-d7dd-47bc-92e5-977be4fd9ae5", "oracle_id": "de6ebf55-f1df-4c3c-bba5-8655b7daf488", "multiverse_ids": [479637], "mtgo_id": 80243, "arena_id": 71184, "tcgplayer_id": 212612, "cardmarket_id": 454903, "name": "Flame Spill", "lang": "en", "released_at": "2020-04-24", "uri": "https://api.scryfall.com/cards/b3090004-d7dd-47bc-92e5-977be4fd9ae5", "scryfall_uri": "https://scryfall.com/card/iko/117/flame-spill?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/b/3/b3090004-d7dd-47bc-92e5-977be4fd9ae5.jpg?1591227197", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/3/b3090004-d7dd-47bc-92e5-977be4fd9ae5.jpg?1591227197", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/b/3/b3090004-d7dd-47bc-92e5-977be4fd9ae5.jpg?1591227197", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/b/3/b3090004-d7dd-47bc-92e5-977be4fd9ae5.png?1591227197", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/3/b3090004-d7dd-47bc-92e5-977be4fd9ae5.jpg?1591227197", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/b/3/b3090004-d7dd-47bc-92e5-977be4fd9ae5.jpg?1591227197"}, "mana_cost": "{2}{R}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Flame Spill deals 4 damage to target creature. Excess damage is dealt to that creature's controller instead.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "19feda43-15ab-427e-a0e4-148a4bf2b03a", "set": "iko", "set_name": "Ikoria: Lair of Behemoths", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/19feda43-15ab-427e-a0e4-148a4bf2b03a", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aiko&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/iko?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/b3090004-d7dd-47bc-92e5-977be4fd9ae5/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ade6ebf55-f1df-4c3c-bba5-8655b7daf488&unique=prints", "collector_number": "117", "digital": false, "rarity": "uncommon", "flavor_text": "Fragile, floating Skysail suddenly seemed like an appealingly safe place to live.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Zoltan Boros", "artist_ids": ["1885e6cb-c827-4896-994e-3d0a027d602f"], "illustration_id": "84a8d00e-65da-4b9a-b9ca-d967b3fa9e2c", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 10729, "penny_rank": 10398, "preview": {"source": "Mark Rosewater", "source_uri": "https://twitter.com/maro254/status/1248021703986315264", "previewed_at": "2020-04-08"}, "prices": {"usd": "0.03", "usd_foil": "0.09", "usd_etched": null, "eur": "0.05", "eur_foil": "0.04", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=479637", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Flame+Spill&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Flame+Spill&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Flame+Spill"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/212612?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Flame+Spill&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/80243?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "e069d90a-e7d9-4967-a872-0dd8a0a9934a", "oracle_id": "cee8ec5f-e36d-4bca-9b19-cb33113835b1", "multiverse_ids": [5150], "mtgo_id": 10253, "mtgo_foil_id": 10254, "tcgplayer_id": 5342, "cardmarket_id": 9166, "name": "Flame Wave", "lang": "en", "released_at": "1998-03-02", "uri": "https://api.scryfall.com/cards/e069d90a-e7d9-4967-a872-0dd8a0a9934a", "scryfall_uri": "https://scryfall.com/card/sth/81/flame-wave?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/e/0/e069d90a-e7d9-4967-a872-0dd8a0a9934a.jpg?1562597824", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/0/e069d90a-e7d9-4967-a872-0dd8a0a9934a.jpg?1562597824", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/e/0/e069d90a-e7d9-4967-a872-0dd8a0a9934a.jpg?1562597824", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/e/0/e069d90a-e7d9-4967-a872-0dd8a0a9934a.png?1562597824", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/0/e069d90a-e7d9-4967-a872-0dd8a0a9934a.jpg?1562597824", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/e/0/e069d90a-e7d9-4967-a872-0dd8a0a9934a.jpg?1562597824"}, "mana_cost": "{3}{R}{R}{R}{R}", "cmc": 7.0, "type_line": "Sorcery", "oracle_text": "Flame Wave deals 4 damage to target player or planeswalker and each creature that player or that planeswalker's controller controls.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "5c83396a-d386-4367-926b-571a75b086a3", "set": "sth", "set_name": "Stronghold", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/5c83396a-d386-4367-926b-571a75b086a3", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Asth&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/sth?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/e069d90a-e7d9-4967-a872-0dd8a0a9934a/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Acee8ec5f-e36d-4bca-9b19-cb33113835b1&unique=prints", "collector_number": "81", "digital": false, "rarity": "uncommon", "flavor_text": "\"I hear the roaring of a wave whose waters are red and whose mists are black.\"\n\u2014Oracle *en*-Vec", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Donato Giancola", "artist_ids": ["90332db2-aecb-4d79-917b-95cbeb8d0cb6"], "illustration_id": "bea15e10-8acc-4811-b63e-98bb69430510", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 16328, "penny_rank": 9970, "prices": {"usd": "0.13", "usd_foil": null, "usd_etched": null, "eur": "0.22", "eur_foil": null, "tix": "0.09"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=5150", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Flame+Wave&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Flame+Wave&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Flame+Wave"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/5342?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Flame+Wave&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/10253?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "fb7fd9b7-c394-4ab3-b945-b4aab694eb6a", "oracle_id": "fab8c985-d7a9-41eb-9884-01128b97af5c", "multiverse_ids": [32921], "mtgo_id": 17261, "mtgo_foil_id": 17262, "tcgplayer_id": 9750, "cardmarket_id": 2367, "name": "Flaming Gambit", "lang": "en", "released_at": "2002-02-04", "uri": "https://api.scryfall.com/cards/fb7fd9b7-c394-4ab3-b945-b4aab694eb6a", "scryfall_uri": "https://scryfall.com/card/tor/98/flaming-gambit?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/f/b/fb7fd9b7-c394-4ab3-b945-b4aab694eb6a.jpg?1562632851", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/b/fb7fd9b7-c394-4ab3-b945-b4aab694eb6a.jpg?1562632851", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/f/b/fb7fd9b7-c394-4ab3-b945-b4aab694eb6a.jpg?1562632851", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/f/b/fb7fd9b7-c394-4ab3-b945-b4aab694eb6a.png?1562632851", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/b/fb7fd9b7-c394-4ab3-b945-b4aab694eb6a.jpg?1562632851", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/f/b/fb7fd9b7-c394-4ab3-b945-b4aab694eb6a.jpg?1562632851"}, "mana_cost": "{X}{R}", "cmc": 1.0, "type_line": "Instant", "oracle_text": "Flaming Gambit deals X damage to target player or planeswalker. That player or that planeswalker's controller may choose a creature they control and have Flaming Gambit deal that damage to it instead.\nFlashback {X}{R}{R} (You may cast this card from your graveyard for its flashback cost. Then exile it.)", "colors": ["R"], "color_identity": ["R"], "keywords": ["Flashback"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "e0b3fda1-a6ca-4996-849b-08b463d39484", "set": "tor", "set_name": "Torment", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/e0b3fda1-a6ca-4996-849b-08b463d39484", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ator&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/tor?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/fb7fd9b7-c394-4ab3-b945-b4aab694eb6a/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Afab8c985-d7a9-41eb-9884-01128b97af5c&unique=prints", "collector_number": "98", "digital": false, "rarity": "uncommon", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Donato Giancola", "artist_ids": ["90332db2-aecb-4d79-917b-95cbeb8d0cb6"], "illustration_id": "96b49c5b-6899-4f47-949b-4b481635973f", "border_color": "black", "frame": "1997", "frame_effects": ["tombstone"], "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 19671, "penny_rank": 6633, "prices": {"usd": "0.20", "usd_foil": "0.49", "usd_etched": null, "eur": "0.22", "eur_foil": "0.35", "tix": "0.06"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=32921", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Flaming+Gambit&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Flaming+Gambit&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Flaming+Gambit"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/9750?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Flaming+Gambit&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/17261?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "abc046c2-be9b-4f93-ac7d-e7dea6c4df9a", "oracle_id": "ff8fae94-3a34-4bc6-aaa2-7ab7d2e2d0dd", "multiverse_ids": [4051], "tcgplayer_id": 2150, "cardmarket_id": 9602, "name": "Flare", "lang": "en", "released_at": "1997-03-24", "uri": "https://api.scryfall.com/cards/abc046c2-be9b-4f93-ac7d-e7dea6c4df9a", "scryfall_uri": "https://scryfall.com/card/5ed/230/flare?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/a/b/abc046c2-be9b-4f93-ac7d-e7dea6c4df9a.jpg?1562593271", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/b/abc046c2-be9b-4f93-ac7d-e7dea6c4df9a.jpg?1562593271", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/a/b/abc046c2-be9b-4f93-ac7d-e7dea6c4df9a.jpg?1562593271", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/a/b/abc046c2-be9b-4f93-ac7d-e7dea6c4df9a.png?1562593271", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/b/abc046c2-be9b-4f93-ac7d-e7dea6c4df9a.jpg?1562593271", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/a/b/abc046c2-be9b-4f93-ac7d-e7dea6c4df9a.jpg?1562593271"}, "mana_cost": "{2}{R}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Flare deals 1 damage to any target.\nDraw a card at the beginning of the next turn's upkeep.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "5afd2f4b-8309-4f45-a2b2-3785018474cb", "set": "5ed", "set_name": "Fifth Edition", "set_type": "core", "set_uri": "https://api.scryfall.com/sets/5afd2f4b-8309-4f45-a2b2-3785018474cb", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3A5ed&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/5ed?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/abc046c2-be9b-4f93-ac7d-e7dea6c4df9a/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aff8fae94-3a34-4bc6-aaa2-7ab7d2e2d0dd&unique=prints", "collector_number": "230", "digital": false, "rarity": "common", "flavor_text": "The secret of destruction is simple: everything burns.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Andrew Robinson", "artist_ids": ["cb577db7-7f47-4f78-8682-6eaef8a77bd1"], "illustration_id": "ac8279bc-0e8e-4ef7-abcb-a68604e04d36", "border_color": "white", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 19257, "penny_rank": 4698, "prices": {"usd": "0.17", "usd_foil": null, "usd_etched": null, "eur": "0.10", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=4051", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Flare&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Flare&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Flare"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/2150?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Flare&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Flare&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "1bd7755f-7ca5-4948-8baf-976823906891", "oracle_id": "ff8fae94-3a34-4bc6-aaa2-7ab7d2e2d0dd", "multiverse_ids": [3447], "mtgo_id": 6979, "mtgo_foil_id": 6980, "tcgplayer_id": 5067, "cardmarket_id": 8227, "name": "Flare", "lang": "en", "released_at": "1996-10-08", "uri": "https://api.scryfall.com/cards/1bd7755f-7ca5-4948-8baf-976823906891", "scryfall_uri": "https://scryfall.com/card/mir/176/flare?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/1/b/1bd7755f-7ca5-4948-8baf-976823906891.jpg?1617148194", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/b/1bd7755f-7ca5-4948-8baf-976823906891.jpg?1617148194", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/1/b/1bd7755f-7ca5-4948-8baf-976823906891.jpg?1617148194", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/1/b/1bd7755f-7ca5-4948-8baf-976823906891.png?1617148194", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/b/1bd7755f-7ca5-4948-8baf-976823906891.jpg?1617148194", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/1/b/1bd7755f-7ca5-4948-8baf-976823906891.jpg?1617148194"}, "mana_cost": "{2}{R}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Flare deals 1 damage to any target.\nDraw a card at the beginning of the next turn's upkeep.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "5f06acf3-8123-4a78-b2e7-089b0b775a4a", "set": "mir", "set_name": "Mirage", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/5f06acf3-8123-4a78-b2e7-089b0b775a4a", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Amir&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/mir?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/1bd7755f-7ca5-4948-8baf-976823906891/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aff8fae94-3a34-4bc6-aaa2-7ab7d2e2d0dd&unique=prints", "collector_number": "176", "digital": false, "rarity": "common", "flavor_text": "\"In the forest, fires light the sky as black clouds unfold their weight.\"\n\u2014\"Love Song of Night and Day\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Greg Simanson", "artist_ids": ["13f79e83-d576-4017-93b5-54c47313ed88"], "illustration_id": "b6197a6f-3e42-4015-9a21-9fbd580f7333", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 19257, "penny_rank": 4698, "prices": {"usd": "0.07", "usd_foil": null, "usd_etched": null, "eur": "0.02", "eur_foil": null, "tix": "0.11"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=3447", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Flare&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Flare&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Flare"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/5067?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Flare&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/6979?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "d5350236-7bd2-462d-9768-50087626c764", "oracle_id": "ff8fae94-3a34-4bc6-aaa2-7ab7d2e2d0dd", "multiverse_ids": [2621], "tcgplayer_id": 4673, "cardmarket_id": 6397, "name": "Flare", "lang": "en", "released_at": "1995-06-03", "uri": "https://api.scryfall.com/cards/d5350236-7bd2-462d-9768-50087626c764", "scryfall_uri": "https://scryfall.com/card/ice/185/flare?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/d/5/d5350236-7bd2-462d-9768-50087626c764.jpg?1562934818", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/5/d5350236-7bd2-462d-9768-50087626c764.jpg?1562934818", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/d/5/d5350236-7bd2-462d-9768-50087626c764.jpg?1562934818", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/d/5/d5350236-7bd2-462d-9768-50087626c764.png?1562934818", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/5/d5350236-7bd2-462d-9768-50087626c764.jpg?1562934818", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/d/5/d5350236-7bd2-462d-9768-50087626c764.jpg?1562934818"}, "mana_cost": "{2}{R}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Flare deals 1 damage to any target.\nDraw a card at the beginning of the next turn's upkeep.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "b0e08eea-5c01-4406-a6e2-dcd09c5e5b67", "set": "ice", "set_name": "Ice Age", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/b0e08eea-5c01-4406-a6e2-dcd09c5e5b67", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aice&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ice?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/d5350236-7bd2-462d-9768-50087626c764/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aff8fae94-3a34-4bc6-aaa2-7ab7d2e2d0dd&unique=prints", "collector_number": "185", "digital": false, "rarity": "common", "flavor_text": "\"I strive for elegance and speed in my work.\"\n\u2014Jaya Ballard, Task Mage", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Drew Tucker", "artist_ids": ["22eef389-7b21-4dda-95dc-4c9a0f1bf4dd"], "illustration_id": "96d3b925-b752-4f4c-9fc0-3edb8b93edc5", "border_color": "black", "frame": "1993", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 19257, "penny_rank": 4698, "prices": {"usd": "0.07", "usd_foil": null, "usd_etched": null, "eur": "0.15", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=2621", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Flare&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Flare&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Flare"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/4673?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Flare&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Flare&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "d000670f-1151-4abf-a7ec-b35a6e587183", "oracle_id": "bec0127a-ab3c-4923-93c2-c43ba8998091", "multiverse_ids": [146447], "mtgo_id": 28733, "mtgo_foil_id": 28734, "tcgplayer_id": 15495, "cardmarket_id": 17855, "name": "Fodder Launch", "lang": "en", "released_at": "2007-10-12", "uri": "https://api.scryfall.com/cards/d000670f-1151-4abf-a7ec-b35a6e587183", "scryfall_uri": "https://scryfall.com/card/lrw/114/fodder-launch?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/d/0/d000670f-1151-4abf-a7ec-b35a6e587183.jpg?1562369114", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/0/d000670f-1151-4abf-a7ec-b35a6e587183.jpg?1562369114", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/d/0/d000670f-1151-4abf-a7ec-b35a6e587183.jpg?1562369114", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/d/0/d000670f-1151-4abf-a7ec-b35a6e587183.png?1562369114", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/0/d000670f-1151-4abf-a7ec-b35a6e587183.jpg?1562369114", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/d/0/d000670f-1151-4abf-a7ec-b35a6e587183.jpg?1562369114"}, "mana_cost": "{3}{B}", "cmc": 4.0, "type_line": "Tribal Sorcery \u2014 Goblin", "oracle_text": "As an additional cost to cast this spell, sacrifice a Goblin.\nTarget creature gets -5/-5 until end of turn. Fodder Launch deals 5 damage to that creature's controller.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "30ec97cb-dca9-4bf4-a98b-310f9d8ceaff", "set": "lrw", "set_name": "Lorwyn", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/30ec97cb-dca9-4bf4-a98b-310f9d8ceaff", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Alrw&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/lrw?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/d000670f-1151-4abf-a7ec-b35a6e587183/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Abec0127a-ab3c-4923-93c2-c43ba8998091&unique=prints", "collector_number": "114", "digital": false, "rarity": "uncommon", "flavor_text": "Leave it to a boggart to come up with a projectile as disgusting as it is deadly.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Nils Hamm", "artist_ids": ["c540d1fc-1500-457f-93cf-d6069ee66546"], "illustration_id": "1450a184-c63b-4f70-b42d-56d107248c8b", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 13920, "penny_rank": 5352, "prices": {"usd": "0.19", "usd_foil": "1.19", "usd_etched": null, "eur": "0.18", "eur_foil": "0.15", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=146447", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Fodder+Launch&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Fodder+Launch&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Fodder+Launch"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/15495?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Fodder+Launch&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/28733?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}]} \ No newline at end of file +{"has_more": true, "data": [{"name": "Angrath's Fury", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/0/708006ba-d494-4093-b108-8249b110831e.jpg?1555041214", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/0/708006ba-d494-4093-b108-8249b110831e.jpg?1555041214"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Annihilating Fire", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/e/ae12fd10-c13e-4777-a233-96204ec75ac1.jpg?1562791532", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/e/ae12fd10-c13e-4777-a233-96204ec75ac1.jpg?1562791532"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Arc Blade", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/d/4d1c04fb-213f-4be1-9bba-94c737826bf8.jpg?1562910601", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/d/4d1c04fb-213f-4be1-9bba-94c737826bf8.jpg?1562910601"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Arc Trail", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/4/445e3a0a-29a7-4dc0-80fe-569b9e751db3.jpg?1562816934", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/4/445e3a0a-29a7-4dc0-80fe-569b9e751db3.jpg?1562816934"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Arrow Storm", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/5/c57534fb-2591-4003-aeec-6452faa4a759.jpg?1562793262", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/5/c57534fb-2591-4003-aeec-6452faa4a759.jpg?1562793262"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Artillerize", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/3/034522ae-f531-44d9-b186-ada046ce0abc.jpg?1562875185", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/3/034522ae-f531-44d9-b186-ada046ce0abc.jpg?1562875185"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Atarka's Command", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/0/903d78c9-c5b3-45c3-a6d0-7e92b4196ae3.jpg?1562789860", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/0/903d78c9-c5b3-45c3-a6d0-7e92b4196ae3.jpg?1562789860"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Backlash", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/a/dadf030d-5451-43fc-bf0c-c1629fdf88ec.jpg?1562938984", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/a/dadf030d-5451-43fc-bf0c-c1629fdf88ec.jpg?1562938984"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Banefire", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/1/b188c68a-e9df-4803-a722-1993dd88f833.jpg?1562803150", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/1/b188c68a-e9df-4803-a722-1993dd88f833.jpg?1562803150"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Barbed Lightning", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/5/2509482a-68d8-4e94-9d1e-5b069ebdc2e4.jpg?1562635839", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/5/2509482a-68d8-4e94-9d1e-5b069ebdc2e4.jpg?1562635839"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Beacon of Destruction", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/0/c0fae532-7189-450e-aa7f-e639163278fc.jpg?1562879532", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/0/c0fae532-7189-450e-aa7f-e639163278fc.jpg?1562879532"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Blast from the Past", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/c/5ca23782-80d3-4656-afba-f8440c813253.jpg?1562488402", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/c/5ca23782-80d3-4656-afba-f8440c813253.jpg?1562488402"}, "reprint": false, "frame_effects": ["tombstone"], "digital": false, "set_type": "funny"}, {"name": "Blaze", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/6/26f8c6ab-ae62-4e2e-a5ba-2ec5bbe22445.jpg?1562234516", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/6/26f8c6ab-ae62-4e2e-a5ba-2ec5bbe22445.jpg?1562234516"}, "reprint": true, "digital": false, "set_type": "core"}, {"name": "Blaze", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/8/a8b6cfd3-4fb1-40a7-a090-de6f8b283cb3.jpg?1562257515", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/8/a8b6cfd3-4fb1-40a7-a090-de6f8b283cb3.jpg?1562257515"}, "reprint": true, "digital": false, "set_type": "starter"}, {"name": "Blaze", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/9/3940d0ca-0ca2-4446-9330-a554c3e89824.jpg?1562908488", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/9/3940d0ca-0ca2-4446-9330-a554c3e89824.jpg?1562908488"}, "reprint": true, "digital": false, "set_type": "starter"}, {"name": "Blaze", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/1/f175c959-3b5d-46a3-9194-fad2359bbff9.jpg?1546740055", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/1/f175c959-3b5d-46a3-9194-fad2359bbff9.jpg?1546740055"}, "reprint": false, "digital": false, "set_type": "starter"}, {"name": "Blazing Salvo", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/7/f7d192ef-a174-4df5-b67f-22918c32cf71.jpg?1562941547", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/7/f7d192ef-a174-4df5-b67f-22918c32cf71.jpg?1562941547"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Blightning", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/8/68ba5a86-ef90-45fd-bc7a-e870e91a207c.jpg?1592714653", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/8/68ba5a86-ef90-45fd-bc7a-e870e91a207c.jpg?1592714653"}, "reprint": true, "digital": false, "set_type": "duel_deck"}, {"name": "Blightning", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/c/3c05e8a2-b7d0-4f24-b2ae-8e4db30e5842.jpg?1562702945", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/c/3c05e8a2-b7d0-4f24-b2ae-8e4db30e5842.jpg?1562702945"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Blightning", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/a/7a1b4c07-588a-444f-9677-3eb1493b5394.jpg?1561757438", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/a/7a1b4c07-588a-444f-9677-3eb1493b5394.jpg?1561757438"}, "reprint": true, "digital": false, "set_type": "promo"}, {"name": "Blur of Blades", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/5/b53f5b9b-d24b-4e9a-bc90-7ed198cd1132.jpg?1562811539", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/5/b53f5b9b-d24b-4e9a-bc90-7ed198cd1132.jpg?1562811539"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Bolt of Keranos", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/d/4df70b14-5d67-4a92-aaba-72480c621d10.jpg?1593092169", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/d/4df70b14-5d67-4a92-aaba-72480c621d10.jpg?1593092169"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Bonfire of the Damned", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/6/e60610fe-891d-46de-b556-d03b637dccec.jpg?1592709031", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/6/e60610fe-891d-46de-b556-d03b637dccec.jpg?1592709031"}, "reprint": false, "frame_effects": ["miracle"], "digital": false, "set_type": "expansion"}, {"name": "Book Burning", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/e/bead678c-7b6a-4668-9919-623312e08a65.jpg?1562631756", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/e/bead678c-7b6a-4668-9919-623312e08a65.jpg?1562631756"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Boros Charm", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/4/d4ddf9cc-40a7-4b4f-bb51-b08171453c9a.jpg?1561848093", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/4/d4ddf9cc-40a7-4b4f-bb51-b08171453c9a.jpg?1561848093"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Boros Charm", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/c/ac8cd7a1-3f79-405b-8930-2206f32c2035.jpg?1622938151", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/c/ac8cd7a1-3f79-405b-8930-2206f32c2035.jpg?1622938151"}, "reprint": true, "digital": false, "set_type": "box"}, {"name": "Breaking Point", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/6/765ec2c9-8ffe-488a-bebe-e5dd63825a8c.jpg?1562630501", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/6/765ec2c9-8ffe-488a-bebe-e5dd63825a8c.jpg?1562630501"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Breath of Darigaaz", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/8/480bb7e3-df03-454d-ada0-592ef8a4a6f0.jpg?1562909692", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/8/480bb7e3-df03-454d-ada0-592ef8a4a6f0.jpg?1562909692"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Breath of Malfegor", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/a/7a12e4d0-8471-46ac-85e4-a2ea5be8bf8f.jpg?1562642287", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/a/7a12e4d0-8471-46ac-85e4-a2ea5be8bf8f.jpg?1562642287"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Breath of Malfegor", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/b/5b3eb5c5-7ff8-4557-afe7-056ea5f09a49.jpg?1561757216", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/b/5b3eb5c5-7ff8-4557-afe7-056ea5f09a49.jpg?1561757216"}, "reprint": true, "digital": false, "set_type": "promo"}, {"name": "Brimstone Volley", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/9/6960f2da-6b84-4680-8ab2-f0567a5d1b0a.jpg?1562831550", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/9/6960f2da-6b84-4680-8ab2-f0567a5d1b0a.jpg?1562831550"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Browbeat", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/7/77c0eb52-8e09-471a-b00c-aaa1ae244afc.jpg?1592714628", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/7/77c0eb52-8e09-471a-b00c-aaa1ae244afc.jpg?1592714628"}, "reprint": true, "digital": false, "set_type": "duel_deck"}, {"name": "Browbeat", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/4/74f20068-f225-4055-be7a-5c4a18e33b0b.jpg?1562630478", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/4/74f20068-f225-4055-be7a-5c4a18e33b0b.jpg?1562630478"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Browbeat", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/1/1170ee2d-ab25-4c7f-a910-cc01471a2cab.jpg?1562639679", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/1/1170ee2d-ab25-4c7f-a910-cc01471a2cab.jpg?1562639679"}, "reprint": true, "digital": false, "set_type": "promo"}, {"name": "Burn from Within", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/8/f8bdc165-4c6f-47e6-8bda-877c0be3613b.jpg?1576384673", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/8/f8bdc165-4c6f-47e6-8bda-877c0be3613b.jpg?1576384673"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Burning Fields", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/e/dee12f01-581e-4a3c-a8b5-41bef2516781.jpg?1562257986", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/e/dee12f01-581e-4a3c-a8b5-41bef2516781.jpg?1562257986"}, "reprint": false, "digital": false, "set_type": "starter"}, {"name": "Burn the Accursed", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/f/ff4d4e6b-564d-46da-8e32-09ed08c8ddc5.jpg?1634350484", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/f/ff4d4e6b-564d-46da-8e32-09ed08c8ddc5.jpg?1634350484"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Burn the Impure", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/5/b5641730-428d-4484-866e-ec1ac669537f.jpg?1562614054", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/5/b5641730-428d-4484-866e-ec1ac669537f.jpg?1562614054"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Burn Trail", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/f/7f01f9a0-f1d0-4241-a270-df4ed673d1fd.jpg?1562832261", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/f/7f01f9a0-f1d0-4241-a270-df4ed673d1fd.jpg?1562832261"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Burst Lightning", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/d/2dc16614-5cf8-444d-a5ae-cac25018af68.jpg?1562610949", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/d/2dc16614-5cf8-444d-a5ae-cac25018af68.jpg?1562610949"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Burst Lightning", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/b/db539e3e-cefe-4f2c-bc8e-df049426895f.jpg?1561758208", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/b/db539e3e-cefe-4f2c-bc8e-df049426895f.jpg?1561758208"}, "reprint": true, "digital": false, "set_type": "promo"}, {"name": "Cackling Flames", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/5/a54a371e-fb82-41f1-892c-975f932b668e.jpg?1593273099", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/5/a54a371e-fb82-41f1-892c-975f932b668e.jpg?1593273099"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Call In a Professional", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/a/ead68c0a-eed1-4a9c-a790-56f8a79b444c.jpg?1649936108", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/a/ead68c0a-eed1-4a9c-a790-56f8a79b444c.jpg?1649936108"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Carbonize", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/4/d4b4767b-edd1-4e36-b363-52114a9afe5e.jpg?1580014480", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/4/d4b4767b-edd1-4e36-b363-52114a9afe5e.jpg?1580014480"}, "reprint": true, "digital": false, "set_type": "masters"}, {"name": "Carbonize", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/f/6f565fa1-a1a0-4dd0-b7f4-df65a807d156.jpg?1562530228", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/f/6f565fa1-a1a0-4dd0-b7f4-df65a807d156.jpg?1562530228"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Cave-In", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/4/440d9d26-f304-467d-af79-914cc65f082e.jpg?1562380418", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/4/440d9d26-f304-467d-af79-914cc65f082e.jpg?1562380418"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Chain Lightning", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/5/b5883762-ca0a-4932-8d2a-41a45796a5f8.jpg?1562860651", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/5/b5883762-ca0a-4932-8d2a-41a45796a5f8.jpg?1562860651"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Chain Lightning", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/f/bfb7fe8e-e348-4bf9-aa71-65f0675147e4.jpg?1636769610", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/f/bfb7fe8e-e348-4bf9-aa71-65f0675147e4.jpg?1636769610"}, "reprint": true, "digital": false, "set_type": "box"}, {"name": "Chain Lightning", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/4/14bd3d19-033e-41a7-8710-02b73ba0b4e4.jpg?1562899148", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/4/14bd3d19-033e-41a7-8710-02b73ba0b4e4.jpg?1562899148"}, "reprint": true, "digital": false, "set_type": "masterpiece"}, {"name": "Chain Lightning", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/c/9ca05db2-ad92-4f4a-992d-b7f08f4f9c26.jpg?1562928035", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/c/9ca05db2-ad92-4f4a-992d-b7f08f4f9c26.jpg?1562928035"}, "reprint": true, "digital": false, "set_type": "premium_deck"}, {"name": "Chain of Plasma", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/9/f94aa774-9036-4016-8880-4bde2710cb90.jpg?1562954081", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/9/f94aa774-9036-4016-8880-4bde2710cb90.jpg?1562954081"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Chandra's Fury", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/7/e761acf6-6618-44cc-8f65-1d7ad7e520fe.jpg?1561758344", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/7/e761acf6-6618-44cc-8f65-1d7ad7e520fe.jpg?1561758344"}, "reprint": true, "digital": false, "set_type": "promo"}, {"name": "Chandra's Outburst", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/1/f1e849c3-f357-4e81-a580-be5056bed51b.jpg?1562745440", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/1/f1e849c3-f357-4e81-a580-be5056bed51b.jpg?1562745440"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Chandra's Outrage", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/2/3282db18-8564-418e-8c26-62e610b160f2.jpg?1562905547", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/2/3282db18-8564-418e-8c26-62e610b160f2.jpg?1562905547"}, "reprint": false, "digital": false, "set_type": "archenemy"}, {"name": "Char", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/f/ff3a24af-e995-4d05-ac2c-e9676048675d.jpg?1598915384", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/f/ff3a24af-e995-4d05-ac2c-e9676048675d.jpg?1598915384"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Char", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/d/3dc5f957-c1e4-452d-a78b-8d772ea0b940.jpg?1561756964", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/d/3dc5f957-c1e4-452d-a78b-8d772ea0b940.jpg?1561756964"}, "reprint": true, "digital": false, "set_type": "promo"}, {"name": "Cinder Cloud", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/0/f044c470-50ce-4a6c-b8ab-665357c3c11e.jpg?1562722408", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/0/f044c470-50ce-4a6c-b8ab-665357c3c11e.jpg?1562722408"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Cinder Storm", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/e/9e2d16c1-6226-438f-be1e-eaab3df687e1.jpg?1562875024", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/e/9e2d16c1-6226-438f-be1e-eaab3df687e1.jpg?1562875024"}, "reprint": false, "digital": false, "set_type": "starter"}, {"name": "Clan Defiance", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/f/efa05298-9c94-4179-b75a-49ee2ca92920.jpg?1561851654", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/f/efa05298-9c94-4179-b75a-49ee2ca92920.jpg?1561851654"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Cleansing Screech", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/9/79928b26-fcac-4c3f-9edd-292769c2e56e.jpg?1562131561", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/9/79928b26-fcac-4c3f-9edd-292769c2e56e.jpg?1562131561"}, "reprint": false, "digital": false, "set_type": "duel_deck"}, {"name": "Collateral Damage", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/b/fb738362-b0b4-4811-9fbf-5f45c852c822.jpg?1562831834", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/b/fb738362-b0b4-4811-9fbf-5f45c852c822.jpg?1562831834"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Collective Defiance", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/9/8960883f-3813-412b-9a5b-f8cf8d566fac.jpg?1576384546", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/9/8960883f-3813-412b-9a5b-f8cf8d566fac.jpg?1576384546"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Concussive Bolt", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/1/41b68e85-a381-441d-aa18-491f9e202a10.jpg?1562610848", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/1/41b68e85-a381-441d-aa18-491f9e202a10.jpg?1562610848"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Cone of Flame", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/e/bec5e56a-5bab-4965-9035-128c3f1ae175.jpg?1562554444", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/e/bec5e56a-5bab-4965-9035-128c3f1ae175.jpg?1562554444"}, "reprint": true, "digital": false, "set_type": "core"}, {"name": "Cone of Flame", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/7/5713f17a-9a57-41f8-b492-ced876e1a37f.jpg?1562800924", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/7/5713f17a-9a57-41f8-b492-ced876e1a37f.jpg?1562800924"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Consuming Sinkhole", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/2/82a42b28-3d1b-4432-b8c9-2d42e4d0e1c5.jpg?1562921426", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/2/82a42b28-3d1b-4432-b8c9-2d42e4d0e1c5.jpg?1562921426"}, "reprint": false, "frame_effects": ["devoid"], "digital": false, "set_type": "expansion"}, {"name": "Crackling Doom", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/8/f83c7d53-2599-42a9-ae96-a2699c5164cb.jpg?1562796251", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/8/f83c7d53-2599-42a9-ae96-a2699c5164cb.jpg?1562796251"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Crater's Claws", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/5/95dde66b-b4a1-4a1e-8c9e-0bec4790b1e5.jpg?1562790652", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/5/95dde66b-b4a1-4a1e-8c9e-0bec4790b1e5.jpg?1562790652"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Creative Outburst", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/a/eab58d87-bf01-45dc-8958-e2b3375f914b.jpg?1627428357", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/a/eab58d87-bf01-45dc-8958-e2b3375f914b.jpg?1627428357"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Cryoclasm", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/a/6a892711-a1a4-4402-957f-92077d00320d.jpg?1593275219", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/a/6a892711-a1a4-4402-957f-92077d00320d.jpg?1593275219"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Culmination of Studies", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/4/2483060e-9d3f-48ae-80ea-0119bf6b4d67.jpg?1627428427", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/4/2483060e-9d3f-48ae-80ea-0119bf6b4d67.jpg?1627428427"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Cunning Strike", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/4/e4991f81-3190-4d33-bf09-9d5387cbec11.jpg?1562830894", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/4/e4991f81-3190-4d33-bf09-9d5387cbec11.jpg?1562830894"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Darigaaz's Charm", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/f/cf4c9d6a-86eb-45be-9405-473eb263b94c.jpg?1562938851", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/f/cf4c9d6a-86eb-45be-9405-473eb263b94c.jpg?1562938851"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Deal Damage", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/e/de905517-983d-4996-a680-3a5cf91bfe11.jpg?1562489827", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/e/de905517-983d-4996-a680-3a5cf91bfe11.jpg?1562489827"}, "reprint": false, "digital": false, "set_type": "funny"}, {"name": "Death Spark", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/a/ba841b44-475c-402c-ac11-763de0cf27d9.jpg?1562770162", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/a/ba841b44-475c-402c-ac11-763de0cf27d9.jpg?1562770162"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Deflecting Palm", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/2/32374918-1bcb-4516-96af-f27da752517e.jpg?1562784565", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/2/32374918-1bcb-4516-96af-f27da752517e.jpg?1562784565"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Demonfire", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/f/af2ad333-722e-4d7e-972a-903c24068931.jpg?1593273111", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/f/af2ad333-722e-4d7e-972a-903c24068931.jpg?1593273111"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Destructive Revelry", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/c/bc2eb53a-3d0f-4bb3-be36-f8024f2a1d4d.jpg?1592752246", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/c/bc2eb53a-3d0f-4bb3-be36-f8024f2a1d4d.jpg?1592752246"}, "reprint": true, "digital": false, "set_type": "duel_deck"}, {"name": "Detonate", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/3/237eedf5-8a8f-4668-a911-e2bf66f8221e.jpg?1562138293", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/3/237eedf5-8a8f-4668-a911-e2bf66f8221e.jpg?1562138293"}, "reprint": true, "digital": false, "set_type": "expansion"}, {"name": "Detonate", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/f/ffd7eb90-ae95-49df-898a-9510187bce1c.jpg?1562949167", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/f/ffd7eb90-ae95-49df-898a-9510187bce1c.jpg?1562949167"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Devastate", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/f/bfe7c990-a34b-475e-a612-447c22f998d3.jpg?1562930849", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/f/bfe7c990-a34b-475e-a612-447c22f998d3.jpg?1562930849"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Devil's Play", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/8/c80596a4-b464-4b9e-8186-94a1c44838eb.jpg?1562836883", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/8/c80596a4-b464-4b9e-8186-94a1c44838eb.jpg?1562836883"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Devil's Play", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/6/e6dd2f9e-16c2-4d25-98c4-0017ccd42228.jpg?1561758340", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/6/e6dd2f9e-16c2-4d25-98c4-0017ccd42228.jpg?1561758340"}, "reprint": true, "digital": false, "set_type": "promo"}, {"name": "Direct Current", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/6/166b0d75-824c-4c04-833b-7f7c69569a18.jpg?1572893128", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/6/166b0d75-824c-4c04-833b-7f7c69569a18.jpg?1572893128"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Disintegrate", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/7/8712c49e-f171-4669-bed9-87575a37af11.jpg?1559591574", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/7/8712c49e-f171-4669-bed9-87575a37af11.jpg?1559591574"}, "reprint": false, "digital": false, "set_type": "core"}, {"name": "Disintegrate", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/3/93ca09e6-2f23-4457-80ab-c7806112888b.jpg?1562546639", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/3/93ca09e6-2f23-4457-80ab-c7806112888b.jpg?1562546639"}, "reprint": true, "digital": true, "set_type": "promo"}, {"name": "Double Deal", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/d/ed8b3def-30ee-4dd2-9a25-ecf7d5663f96.jpg?1562799187", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/d/ed8b3def-30ee-4dd2-9a25-ecf7d5663f96.jpg?1562799187"}, "reprint": false, "digital": false, "set_type": "funny"}, {"name": "Draconic Roar", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/c/6cf5591c-46e3-4904-8b4e-4f1f84d3118f.jpg?1562787954", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/c/6cf5591c-46e3-4904-8b4e-4f1f84d3118f.jpg?1562787954"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Dragon's Approach", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/c/0cb504a0-1dfb-49d0-84c3-7bd318d55481.jpg?1624591696", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/c/0cb504a0-1dfb-49d0-84c3-7bd318d55481.jpg?1624591696"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Earthquake", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/f/8f04dc5c-2764-42d0-974e-6d902222c138.jpg?1562242701", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/f/8f04dc5c-2764-42d0-974e-6d902222c138.jpg?1562242701"}, "reprint": true, "digital": false, "set_type": "core"}, {"name": "Earthquake", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/5/05126438-e806-43e6-bd81-233b629b4a1b.jpg?1562896224", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/5/05126438-e806-43e6-bd81-233b629b4a1b.jpg?1562896224"}, "reprint": true, "digital": false, "set_type": "starter"}, {"name": "Earthquake", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/7/272f65a3-3c0c-417d-b5b6-276a643d643e.jpg?1562446144", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/7/272f65a3-3c0c-417d-b5b6-276a643d643e.jpg?1562446144"}, "reprint": true, "digital": false, "set_type": "starter"}, {"name": "Earthquake", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/1/01bde909-899d-4efc-aac5-57b69fa764db.jpg?1562588740", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/1/01bde909-899d-4efc-aac5-57b69fa764db.jpg?1562588740"}, "reprint": true, "digital": false, "set_type": "core"}, {"name": "Earthquake", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/6/e68ac362-6cdc-48a6-bdd3-4f8ea32add64.jpg?1559591701", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/6/e68ac362-6cdc-48a6-bdd3-4f8ea32add64.jpg?1559591701"}, "reprint": false, "digital": false, "set_type": "core"}, {"name": "Electrodominance", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/c/5c63877b-cdab-4ce4-a1c0-c088eb62a57a.jpg?1584830858", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/c/5c63877b-cdab-4ce4-a1c0-c088eb62a57a.jpg?1584830858"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Electrostatic Blast", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/6/36ba1ac9-ebb9-449d-bd3b-716631b112fb.jpg?1645416206", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/6/36ba1ac9-ebb9-449d-bd3b-716631b112fb.jpg?1645416206"}, "reprint": false, "digital": true, "set_type": "alchemy"}, {"name": "Ember Shot", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/a/6a9eb72b-9ae2-4b64-bbb9-187446b5fd2f.jpg?1562630295", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/a/6a9eb72b-9ae2-4b64-bbb9-187446b5fd2f.jpg?1562630295"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Energy Bolt", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/1/711f4cff-0256-44b2-a2fe-1cae6e9edb2b.jpg?1562719783", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/1/711f4cff-0256-44b2-a2fe-1cae6e9edb2b.jpg?1562719783"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Essence Backlash", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/9/a98609dc-ea90-4c7e-a191-5e5d0ba16847.jpg?1562791298", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/9/a98609dc-ea90-4c7e-a191-5e5d0ba16847.jpg?1562791298"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Eternal Flame", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/6/d646feea-3c20-4737-8d20-ffad42258ced.jpg?1562946085", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/6/d646feea-3c20-4737-8d20-ffad42258ced.jpg?1562946085"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Exploding Borders", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/2/f247aaaf-4d65-4dfc-bab2-3c1331762647.jpg?1562804623", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/2/f247aaaf-4d65-4dfc-bab2-3c1331762647.jpg?1562804623"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Explosive Impact", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/a/3a3e2b45-b086-4ffd-aa1a-1d03046e0d61.jpg?1562785002", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/a/3a3e2b45-b086-4ffd-aa1a-1d03046e0d61.jpg?1562785002"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Explosive Singularity", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/6/e6cdd822-44a1-4d58-9de4-69fc56eae255.jpg?1654567601", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/6/e6cdd822-44a1-4d58-9de4-69fc56eae255.jpg?1654567601"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Explosive Singularity", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/1/a1d47e98-daae-42f7-9581-1269d57bd16e.jpg?1654570003", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/1/a1d47e98-daae-42f7-9581-1269d57bd16e.jpg?1654570003"}, "reprint": false, "frame_effects": ["showcase"], "digital": false, "set_type": "expansion"}, {"name": "Explosive Welcome", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/2/122c01e6-38a6-456e-971e-9004df85ac1c.jpg?1624591777", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/2/122c01e6-38a6-456e-971e-9004df85ac1c.jpg?1624591777"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Exquisite Firecraft", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/2/42eca98e-a164-4f70-a0b0-7a604863f30b.jpg?1562016890", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/2/42eca98e-a164-4f70-a0b0-7a604863f30b.jpg?1562016890"}, "reprint": false, "digital": false, "set_type": "core"}, {"name": "Exquisite Firecraft", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/b/0be814f7-3c35-4b82-9fda-b8750a77cb9b.jpg?1562542837", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/b/0be814f7-3c35-4b82-9fda-b8750a77cb9b.jpg?1562542837"}, "reprint": true, "digital": true, "set_type": "promo"}, {"name": "Face to Face", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/4/64c93900-1af7-4c6b-a844-055bb7e27ddb.jpg?1562488406", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/4/64c93900-1af7-4c6b-a844-055bb7e27ddb.jpg?1562488406"}, "reprint": false, "digital": false, "set_type": "funny"}, {"name": "Fanning the Flames", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/9/79075361-e6ee-4cc9-990b-88fef27bbb1c.jpg?1562596865", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/9/79075361-e6ee-4cc9-990b-88fef27bbb1c.jpg?1562596865"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Farideh's Fireball", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/7/57a46987-f05a-4b83-af56-f18000874e65.jpg?1627706196", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/7/57a46987-f05a-4b83-af56-f18000874e65.jpg?1627706196"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Fateful End", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/6/56455067-92c0-45b5-ac2e-525c35b41215.jpg?1581480134", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/6/56455067-92c0-45b5-ac2e-525c35b41215.jpg?1581480134"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Fault Line", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/a/cab4fd0e-9f84-4628-92a7-858ad8064531.jpg?1562937807", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/a/cab4fd0e-9f84-4628-92a7-858ad8064531.jpg?1562937807"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Fiery Confluence", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/b/7b61c9bc-16e8-417f-99e7-8bd83d4666c5.jpg?1562706203", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/b/7b61c9bc-16e8-417f-99e7-8bd83d4666c5.jpg?1562706203"}, "reprint": false, "digital": false, "set_type": "commander"}, {"name": "Fiery Confluence", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/c/4c454a20-8ec8-41d9-b9c3-acaa510d050b.jpg?1593559583", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/c/4c454a20-8ec8-41d9-b9c3-acaa510d050b.jpg?1593559583"}, "reprint": true, "digital": false, "set_type": "spellbook"}, {"name": "Fiery Gambit", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/9/a91376ed-5868-4887-8389-5ef5b9471786.jpg?1562153660", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/9/a91376ed-5868-4887-8389-5ef5b9471786.jpg?1562153660"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Fiery Temper", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/1/61caf82d-e077-4931-a6ad-09fa7f04b36f.jpg?1576384730", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/1/61caf82d-e077-4931-a6ad-09fa7f04b36f.jpg?1576384730"}, "reprint": true, "digital": false, "set_type": "expansion"}, {"name": "Fiery Temper", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/1/918e46b7-cbca-4acf-8e83-94b5fcadcc49.jpg?1562630935", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/1/918e46b7-cbca-4acf-8e83-94b5fcadcc49.jpg?1562630935"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Fiery Temper", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/3/73493d43-7952-4202-818d-a1a05788af6f.jpg?1562636814", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/3/73493d43-7952-4202-818d-a1a05788af6f.jpg?1562636814"}, "reprint": true, "digital": false, "set_type": "promo"}, {"name": "Fiery Temper", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/3/d377a7b9-5c25-4017-84a8-ae368eceba50.jpg?1561758137", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/3/d377a7b9-5c25-4017-84a8-ae368eceba50.jpg?1561758137"}, "reprint": true, "digital": false, "set_type": "promo"}, {"name": "Fire Ambush", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/d/4dd8bdbd-99c9-4fa7-936a-acc7f4238507.jpg?1562256089", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/d/4dd8bdbd-99c9-4fa7-936a-acc7f4238507.jpg?1562256089"}, "reprint": false, "digital": false, "set_type": "starter"}, {"name": "Fireblast", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/4/44ab6601-409b-416f-a26c-b995e08fe6f3.jpg?1562908902", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/4/44ab6601-409b-416f-a26c-b995e08fe6f3.jpg?1562908902"}, "reprint": true, "digital": true, "set_type": "masters"}, {"name": "Fireblast", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/1/b1eb5b2c-1f02-48a6-a287-88eb189d6780.jpg?1562278616", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/1/b1eb5b2c-1f02-48a6-a287-88eb189d6780.jpg?1562278616"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Firebolt", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/0/90aae741-88af-4d21-a230-9a2592acdc87.jpg?1580014536", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/0/90aae741-88af-4d21-a230-9a2592acdc87.jpg?1580014536"}, "reprint": true, "digital": false, "set_type": "masters"}, {"name": "Firebolt", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/5/d5e45005-dd81-4d80-b043-02f719aca929.jpg?1562934963", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/5/d5e45005-dd81-4d80-b043-02f719aca929.jpg?1562934963"}, "reprint": false, "frame_effects": ["tombstone"], "digital": false, "set_type": "expansion"}, {"name": "Fires of Undeath", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/d/6d94aaa4-c2fd-4714-9198-8415158b9c4d.jpg?1562920799", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/d/6d94aaa4-c2fd-4714-9198-8415158b9c4d.jpg?1562920799"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Fire Tempest", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/2/92334ebe-3d7a-46de-8b91-931e5d56a5a5.jpg?1562447336", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/2/92334ebe-3d7a-46de-8b91-931e5d56a5a5.jpg?1562447336"}, "reprint": false, "digital": false, "set_type": "starter"}, {"name": "First Volley", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/6/d6e5e360-ed47-40c1-8ad7-57645c2854ca.jpg?1562880074", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/6/d6e5e360-ed47-40c1-8ad7-57645c2854ca.jpg?1562880074"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Flamebreak", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/7/87e1f06f-7c87-4da8-b339-e571e391cab1.jpg?1562637920", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/7/87e1f06f-7c87-4da8-b339-e571e391cab1.jpg?1562637920"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Flame Burst", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/4/64bbd438-7df2-4d7b-88ad-4531ebaf3931.jpg?1562913643", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/4/64bbd438-7df2-4d7b-88ad-4531ebaf3931.jpg?1562913643"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Flame Jab", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/6/06c2b6b2-485e-41e6-b106-4f6f402e0ec3.jpg?1562896430", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/6/06c2b6b2-485e-41e6-b106-4f6f402e0ec3.jpg?1562896430"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Flame Javelin", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/5/a567b570-81e4-4068-929c-9ce406fe7474.jpg?1562834196", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/5/a567b570-81e4-4068-929c-9ce406fe7474.jpg?1562834196"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Flame Javelin", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/0/407858c8-316d-47a7-8234-c490a0bc87a6.jpg?1561756991", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/0/407858c8-316d-47a7-8234-c490a0bc87a6.jpg?1561756991"}, "reprint": true, "digital": false, "set_type": "promo"}, {"name": "Flame Jet", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/5/a511f9df-b53b-4fea-87cd-9f18f6833f92.jpg?1562444727", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/5/a511f9df-b53b-4fea-87cd-9f18f6833f92.jpg?1562444727"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Flame Lash", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/c/ac44e3cb-cc69-4222-87bc-ffa54b7ab34a.jpg?1562741297", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/c/ac44e3cb-cc69-4222-87bc-ffa54b7ab34a.jpg?1562741297"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Flame Rift", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/6/e63ed449-d249-4639-85d2-f8fe75496d5c.jpg?1626100460", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/6/e63ed449-d249-4639-85d2-f8fe75496d5c.jpg?1626100460"}, "reprint": true, "digital": false, "set_type": "draft_innovation"}, {"name": "Flame Rift", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/7/7717eeb9-c457-4a65-93a0-e91c7f6a1970.jpg?1562630580", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/7/7717eeb9-c457-4a65-93a0-e91c7f6a1970.jpg?1562630580"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Flames of the Blood Hand", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/7/a79701b4-d220-4c3e-b96c-7a77a22ba899.jpg?1651124386", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/7/a79701b4-d220-4c3e-b96c-7a77a22ba899.jpg?1651124386"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Flame Spill", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/3/b3090004-d7dd-47bc-92e5-977be4fd9ae5.jpg?1591227197", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/3/b3090004-d7dd-47bc-92e5-977be4fd9ae5.jpg?1591227197"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Flame Wave", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/0/e069d90a-e7d9-4967-a872-0dd8a0a9934a.jpg?1562597824", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/0/e069d90a-e7d9-4967-a872-0dd8a0a9934a.jpg?1562597824"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Flaming Gambit", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/b/fb7fd9b7-c394-4ab3-b945-b4aab694eb6a.jpg?1562632851", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/b/fb7fd9b7-c394-4ab3-b945-b4aab694eb6a.jpg?1562632851"}, "reprint": false, "frame_effects": ["tombstone"], "digital": false, "set_type": "expansion"}, {"name": "Flare", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/b/abc046c2-be9b-4f93-ac7d-e7dea6c4df9a.jpg?1562593271", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/b/abc046c2-be9b-4f93-ac7d-e7dea6c4df9a.jpg?1562593271"}, "reprint": true, "digital": false, "set_type": "core"}, {"name": "Flare", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/b/1bd7755f-7ca5-4948-8baf-976823906891.jpg?1617148194", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/b/1bd7755f-7ca5-4948-8baf-976823906891.jpg?1617148194"}, "reprint": true, "digital": false, "set_type": "expansion"}, {"name": "Flare", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/5/d5350236-7bd2-462d-9768-50087626c764.jpg?1562934818", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/5/d5350236-7bd2-462d-9768-50087626c764.jpg?1562934818"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Foundry Helix", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/c/9c54b7c6-f94c-4349-8725-319c54240409.jpg?1626098329", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/c/9c54b7c6-f94c-4349-8725-319c54240409.jpg?1626098329"}, "reprint": false, "digital": false, "set_type": "draft_innovation"}, {"name": "Friendly Fire", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/c/ac4272ca-bb15-415c-a589-a472953a0dd9.jpg?1562828722", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/c/ac4272ca-bb15-415c-a589-a472953a0dd9.jpg?1562828722"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Galvanic Blast", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/5/f5881bbc-8600-464d-9dcd-5a7780918d1d.jpg?1562825173", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/5/f5881bbc-8600-464d-9dcd-5a7780918d1d.jpg?1562825173"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Geistblast", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/9/19b1dfd9-b717-4c23-b8e5-a6ec835b278a.jpg?1576384765", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/9/19b1dfd9-b717-4c23-b8e5-a6ec835b278a.jpg?1576384765"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Geistflame", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/b/1b856f31-ac80-4338-95a5-3f8acda74cfe.jpg?1562826976", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/b/1b856f31-ac80-4338-95a5-3f8acda74cfe.jpg?1562826976"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Ghitu Fire", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/8/78827acd-a526-411b-bd22-ab9b538c75dd.jpg?1562919168", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/8/78827acd-a526-411b-bd22-ab9b538c75dd.jpg?1562919168"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Ghostfire", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/6/a60475e5-0d37-4af0-b717-da4c8dea45ac.jpg?1562928542", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/6/a60475e5-0d37-4af0-b717-da4c8dea45ac.jpg?1562928542"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Giant's Ire", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/4/046fa2db-4c73-401a-b9a4-b039554be625.jpg?1562336735", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/4/046fa2db-4c73-401a-b9a4-b039554be625.jpg?1562336735"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Glacial Ray", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/4/04c713fd-df47-4b35-bd37-ab65d853bdc8.jpg?1562271537", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/4/04c713fd-df47-4b35-bd37-ab65d853bdc8.jpg?1562271537"}, "reprint": true, "digital": false, "set_type": "promo"}, {"name": "Goblin Barrage", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/8/4849db5d-cd41-49f6-acd5-697cdc8263f6.jpg?1562735067", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/8/4849db5d-cd41-49f6-acd5-697cdc8263f6.jpg?1562735067"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Goblin Grenade", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/9/394cc2aa-0318-4ccd-a550-99a7eac933c3.jpg?1562639104", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/9/394cc2aa-0318-4ccd-a550-99a7eac933c3.jpg?1562639104"}, "reprint": true, "digital": false, "set_type": "core"}, {"name": "Goblin Grenade", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/8/8837eaba-9602-4f63-9897-85583fcdcf51.jpg?1562920228", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/8/8837eaba-9602-4f63-9897-85583fcdcf51.jpg?1562920228"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Goblin Grenade", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/e/dee262da-3002-4c08-8043-4e40e1b46822.jpg?1562936623", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/e/dee262da-3002-4c08-8043-4e40e1b46822.jpg?1562936623"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Goblin Grenade", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/b/1befdfc7-a1e3-4a2a-ad68-7d0fee170f3f.jpg?1562900237", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/b/1befdfc7-a1e3-4a2a-ad68-7d0fee170f3f.jpg?1562900237"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Grapeshot", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/c/8cd49f85-7dbd-4cb6-b916-2adee29bb745.jpg?1561967853", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/c/8cd49f85-7dbd-4cb6-b916-2adee29bb745.jpg?1561967853"}, "reprint": true, "digital": false, "set_type": "masters"}, {"name": "Grapeshot", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/e/4ee33cb6-768e-44a0-b6f4-b8638aa84330.jpg?1562911525", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/e/4ee33cb6-768e-44a0-b6f4-b8638aa84330.jpg?1562911525"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Grapeshot", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/9/b99b45df-9602-4037-a695-09decb5f21d7.jpg?1623890288", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/9/b99b45df-9602-4037-a695-09decb5f21d7.jpg?1623890288"}, "reprint": true, "digital": false, "set_type": "masterpiece"}, {"name": "Guerrilla Tactics", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/b/9bf3bac0-6e63-4bd3-bbd6-547f46c2d126.jpg?1562552299", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/b/9bf3bac0-6e63-4bd3-bbd6-547f46c2d126.jpg?1562552299"}, "reprint": true, "digital": false, "set_type": "core"}, {"name": "Guerrilla Tactics", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/3/63535f0e-dc14-420e-bcb7-b5ef8fafb93f.jpg?1562915110", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/3/63535f0e-dc14-420e-bcb7-b5ef8fafb93f.jpg?1562915110"}, "reprint": true, "digital": false, "set_type": "core"}, {"name": "Guerrilla Tactics", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/1/51811f2a-7002-4ba7-98d8-5b09d887975c.jpg?1562768705", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/1/51811f2a-7002-4ba7-98d8-5b09d887975c.jpg?1562768705"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Guerrilla Tactics", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/c/3c005ca3-0508-4ac2-afec-3d4a27334c31.jpg?1562768254", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/c/3c005ca3-0508-4ac2-afec-3d4a27334c31.jpg?1562768254"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Gut Shot", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/5/a54a2a30-b96a-49c7-9151-1f4b0d4a4413.jpg?1562880417", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/5/a54a2a30-b96a-49c7-9151-1f4b0d4a4413.jpg?1562880417"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Hammer of Bogardan", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/7/f7285f52-5df0-4f90-9cf7-a57295d90fd4.jpg?1562722857", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/7/f7285f52-5df0-4f90-9cf7-a57295d90fd4.jpg?1562722857"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Hanabi Blast", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/8/881fecf4-8c14-4614-84bd-c1a3dcdbb5ff.jpg?1562762458", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/8/881fecf4-8c14-4614-84bd-c1a3dcdbb5ff.jpg?1562762458"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Heartfire", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/d/7db219ea-2ed1-4a86-955c-d61ecedbc019.jpg?1557576716", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/d/7db219ea-2ed1-4a86-955c-d61ecedbc019.jpg?1557576716"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Hidetsugu's Second Rite", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/e/2e48eb77-3bd7-444a-9262-799cc706c05a.jpg?1562493025", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/e/2e48eb77-3bd7-444a-9262-799cc706c05a.jpg?1562493025"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Hungry Flames", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/c/4ca23676-f36f-4266-ba4f-5e9ebf3adb57.jpg?1592419490", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/c/4ca23676-f36f-4266-ba4f-5e9ebf3adb57.jpg?1592419490"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Igneous Inspiration", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/7/5781ad7b-dc1b-4cc1-9e72-6e714b9ba1de.jpg?1624591976", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/7/5781ad7b-dc1b-4cc1-9e72-6e714b9ba1de.jpg?1624591976"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Illuminate", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/e/ceef2761-7301-42de-8f54-49b8cd1e457b.jpg?1562943833", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/e/ceef2761-7301-42de-8f54-49b8cd1e457b.jpg?1562943833"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Improvised Weaponry", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/9/29d5fd00-c616-4079-a91e-4da0bcaf9120.jpg?1627706453", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/9/29d5fd00-c616-4079-a91e-4da0bcaf9120.jpg?1627706453"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Incendiary Command", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/1/512367a2-f8f6-4c28-9eb3-8e04d2694e4b.jpg?1562348065", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/1/512367a2-f8f6-4c28-9eb3-8e04d2694e4b.jpg?1562348065"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Incendiary Flow", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/f/cf464f61-8a7f-493b-a80f-2f2b0ebd8bf6.jpg?1576384613", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/f/cf464f61-8a7f-493b-a80f-2f2b0ebd8bf6.jpg?1576384613"}, "reprint": false, "digital": false, "set_type": "expansion"}]} \ No newline at end of file diff --git a/web/public/mtg/jsons/burn2.json b/web/public/mtg/jsons/burn2.json index 30da91d3..c1116e11 100644 --- a/web/public/mtg/jsons/burn2.json +++ b/web/public/mtg/jsons/burn2.json @@ -1 +1 @@ -{"object": "list", "total_cards": 474, "has_more": true, "next_page": "https://api.scryfall.com/cards/search?format=json&include_extras=true&include_multilingual=false&order=name&page=3&q=%28o%3A%2Fdamage+to+them%2F+or+%28o%3Adeals+o%3Adamage+o%3A%2Fcontroller%28%5C.%7C+%29%2F%29+or+o%3A%2F~+deals+%28.%7C..%29+damage+to+%28any+target%7C.%2Aplayer%28%5C.%7C+or+planeswalker%29%7C.%2Aopponent%28%5C.%7C+or+planeswalker%29%29%2F%29+%28type%3Ainstant+or+type%3Asorcery%29+not%3Aadventure+-%28set%3Asld+%28%28cn%3E%3D231+cn%3C%3D233%29+or+%28cn%3E%3D321+cn%3C%3D324%29+or+%28cn%3E%3D185+cn%3C%3D189%29+or+%28cn%3E%3D138+cn%3C%3D142%29+or+%28cn%3E%3D364+cn%3C%3D368%29+or+cn%3A669+or+cn%3A670%29%29+-name%3A%2F%5Ea-%2F+not%3Adfc+not%3Asplit+-set%3Acmb2+-set%3Acmb1+-set%3Aplist+-set%3Adbl+-frame%3Aextendedart+language%3Aenglish&unique=art", "data": [{"object": "card", "id": "9c54b7c6-f94c-4349-8725-319c54240409", "oracle_id": "f4f66558-3c99-4488-ad2d-90626a922042", "multiverse_ids": [522272], "mtgo_id": 90769, "tcgplayer_id": 240410, "cardmarket_id": 566926, "name": "Foundry Helix", "lang": "en", "released_at": "2021-06-18", "uri": "https://api.scryfall.com/cards/9c54b7c6-f94c-4349-8725-319c54240409", "scryfall_uri": "https://scryfall.com/card/mh2/196/foundry-helix?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/9/c/9c54b7c6-f94c-4349-8725-319c54240409.jpg?1626098329", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/c/9c54b7c6-f94c-4349-8725-319c54240409.jpg?1626098329", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/9/c/9c54b7c6-f94c-4349-8725-319c54240409.jpg?1626098329", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/9/c/9c54b7c6-f94c-4349-8725-319c54240409.png?1626098329", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/c/9c54b7c6-f94c-4349-8725-319c54240409.jpg?1626098329", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/9/c/9c54b7c6-f94c-4349-8725-319c54240409.jpg?1626098329"}, "mana_cost": "{1}{R}{W}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "As an additional cost to cast this spell, sacrifice a permanent.\nFoundry Helix deals 4 damage to any target. If the sacrificed permanent was an artifact, you gain 4 life.", "colors": ["R", "W"], "color_identity": ["R", "W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "c1c7eb8c-f205-40ab-a609-767cb296544e", "set": "mh2", "set_name": "Modern Horizons 2", "set_type": "draft_innovation", "set_uri": "https://api.scryfall.com/sets/c1c7eb8c-f205-40ab-a609-767cb296544e", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Amh2&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/mh2?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/9c54b7c6-f94c-4349-8725-319c54240409/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Af4f66558-3c99-4488-ad2d-90626a922042&unique=prints", "collector_number": "196", "digital": false, "rarity": "common", "flavor_text": "Steel never forgets the strike of the forge.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Zezhou Chen", "artist_ids": ["810677e5-a502-4c03-b726-78cd808a75d4"], "illustration_id": "42e105bd-dd7e-4779-b5b3-f739f14a973b", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 11681, "penny_rank": 9716, "prices": {"usd": "0.01", "usd_foil": "0.06", "usd_etched": null, "eur": "0.03", "eur_foil": "0.05", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=522272", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Foundry+Helix&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Foundry+Helix&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Foundry+Helix"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/240410?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Foundry+Helix&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/90769?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "ac4272ca-bb15-415c-a589-a472953a0dd9", "oracle_id": "d4ab3e1d-e1c4-43c3-8068-1809938ab094", "multiverse_ids": [391838], "mtgo_id": 55564, "mtgo_foil_id": 55565, "tcgplayer_id": 95412, "cardmarket_id": 271691, "name": "Friendly Fire", "lang": "en", "released_at": "2015-01-23", "uri": "https://api.scryfall.com/cards/ac4272ca-bb15-415c-a589-a472953a0dd9", "scryfall_uri": "https://scryfall.com/card/frf/101/friendly-fire?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/a/c/ac4272ca-bb15-415c-a589-a472953a0dd9.jpg?1562828722", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/c/ac4272ca-bb15-415c-a589-a472953a0dd9.jpg?1562828722", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/a/c/ac4272ca-bb15-415c-a589-a472953a0dd9.jpg?1562828722", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/a/c/ac4272ca-bb15-415c-a589-a472953a0dd9.png?1562828722", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/c/ac4272ca-bb15-415c-a589-a472953a0dd9.jpg?1562828722", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/a/c/ac4272ca-bb15-415c-a589-a472953a0dd9.jpg?1562828722"}, "mana_cost": "{3}{R}", "cmc": 4.0, "type_line": "Instant", "oracle_text": "Target creature's controller reveals a card at random from their hand. Friendly Fire deals damage to that creature and that player equal to the revealed card's mana value.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "7bb5cb2b-081a-4c8c-b7e1-494046e6baa1", "set": "frf", "set_name": "Fate Reforged", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/7bb5cb2b-081a-4c8c-b7e1-494046e6baa1", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Afrf&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/frf?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/ac4272ca-bb15-415c-a589-a472953a0dd9/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ad4ab3e1d-e1c4-43c3-8068-1809938ab094&unique=prints", "collector_number": "101", "digital": false, "rarity": "uncommon", "flavor_text": "\"Never tell goblins to 'fire at will.'\"\n\u2014Urut Barzeel, Mardu hordechief", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Anthony Palumbo", "artist_ids": ["afd2d541-4140-41ae-a28f-862436458fcb"], "illustration_id": "a31cd356-37e6-4829-8293-24059f0d8de8", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 19504, "prices": {"usd": "0.06", "usd_foil": "0.21", "usd_etched": null, "eur": "0.04", "eur_foil": "0.22", "tix": "0.04"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=391838", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Friendly+Fire&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Friendly+Fire&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Friendly+Fire"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/95412?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Friendly+Fire&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/55564?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "f5881bbc-8600-464d-9dcd-5a7780918d1d", "oracle_id": "d211c03a-03cd-40c5-b7c8-ada352fd01a6", "multiverse_ids": [208251], "mtgo_id": 38203, "mtgo_foil_id": 38204, "tcgplayer_id": 36340, "cardmarket_id": 242591, "name": "Galvanic Blast", "lang": "en", "released_at": "2010-10-01", "uri": "https://api.scryfall.com/cards/f5881bbc-8600-464d-9dcd-5a7780918d1d", "scryfall_uri": "https://scryfall.com/card/som/91/galvanic-blast?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/f/5/f5881bbc-8600-464d-9dcd-5a7780918d1d.jpg?1562825173", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/5/f5881bbc-8600-464d-9dcd-5a7780918d1d.jpg?1562825173", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/f/5/f5881bbc-8600-464d-9dcd-5a7780918d1d.jpg?1562825173", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/f/5/f5881bbc-8600-464d-9dcd-5a7780918d1d.png?1562825173", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/5/f5881bbc-8600-464d-9dcd-5a7780918d1d.jpg?1562825173", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/f/5/f5881bbc-8600-464d-9dcd-5a7780918d1d.jpg?1562825173"}, "mana_cost": "{R}", "cmc": 1.0, "type_line": "Instant", "oracle_text": "Galvanic Blast deals 2 damage to any target.\nMetalcraft \u2014 Galvanic Blast deals 4 damage instead if you control three or more artifacts.", "colors": ["R"], "color_identity": ["R"], "keywords": ["Metalcraft"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "8f403072-9b22-4e69-8d59-22dc4c97fd8d", "set": "som", "set_name": "Scars of Mirrodin", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/8f403072-9b22-4e69-8d59-22dc4c97fd8d", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Asom&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/som?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/f5881bbc-8600-464d-9dcd-5a7780918d1d/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ad211c03a-03cd-40c5-b7c8-ada352fd01a6&unique=prints", "collector_number": "91", "digital": false, "rarity": "common", "watermark": "mirran", "flavor_text": "Mirrodin has little weather, but it certainly has lightning.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Marc Simonetti", "artist_ids": ["8089db55-5105-47b0-8c64-f320e08c97f0"], "illustration_id": "057d1153-3e71-4cbb-a229-884027afc84b", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 5740, "penny_rank": 436, "prices": {"usd": "0.41", "usd_foil": "4.93", "usd_etched": null, "eur": "0.71", "eur_foil": "6.39", "tix": "0.16"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=208251", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Galvanic+Blast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Galvanic+Blast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Galvanic+Blast"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/36340?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Galvanic+Blast&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/38203?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "19b1dfd9-b717-4c23-b8e5-a6ec835b278a", "oracle_id": "10891656-070f-49f4-80e0-78061b773f17", "multiverse_ids": [409914], "mtgo_id": 60174, "mtgo_foil_id": 60175, "tcgplayer_id": 116396, "cardmarket_id": 289183, "name": "Geistblast", "lang": "en", "released_at": "2016-04-08", "uri": "https://api.scryfall.com/cards/19b1dfd9-b717-4c23-b8e5-a6ec835b278a", "scryfall_uri": "https://scryfall.com/card/soi/160/geistblast?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/1/9/19b1dfd9-b717-4c23-b8e5-a6ec835b278a.jpg?1576384765", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/9/19b1dfd9-b717-4c23-b8e5-a6ec835b278a.jpg?1576384765", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/1/9/19b1dfd9-b717-4c23-b8e5-a6ec835b278a.jpg?1576384765", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/1/9/19b1dfd9-b717-4c23-b8e5-a6ec835b278a.png?1576384765", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/9/19b1dfd9-b717-4c23-b8e5-a6ec835b278a.jpg?1576384765", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/1/9/19b1dfd9-b717-4c23-b8e5-a6ec835b278a.jpg?1576384765"}, "mana_cost": "{2}{R}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Geistblast deals 2 damage to any target.\n{2}{U}, Exile Geistblast from your graveyard: Copy target instant or sorcery spell you control. You may choose new targets for the copy.", "colors": ["R"], "color_identity": ["R", "U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "5e914d7e-c1e9-446c-a33d-d093c02b2743", "set": "soi", "set_name": "Shadows over Innistrad", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/5e914d7e-c1e9-446c-a33d-d093c02b2743", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Asoi&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/soi?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/19b1dfd9-b717-4c23-b8e5-a6ec835b278a/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A10891656-070f-49f4-80e0-78061b773f17&unique=prints", "collector_number": "160", "digital": false, "rarity": "uncommon", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Raymond Swanland", "artist_ids": ["e956bacc-077d-4c12-b6bc-ba798b718af9"], "illustration_id": "5d874cc9-4103-4a32-83a9-1f1a785b7a62", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 12749, "penny_rank": 7169, "prices": {"usd": "0.06", "usd_foil": "0.23", "usd_etched": null, "eur": "0.10", "eur_foil": "0.30", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=409914", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Geistblast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Geistblast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Geistblast"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/116396?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Geistblast&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/60174?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "1b856f31-ac80-4338-95a5-3f8acda74cfe", "oracle_id": "2f01c3d9-e0fc-4cdf-b4db-daeb8bb24bc3", "multiverse_ids": [247427], "mtgo_id": 42780, "mtgo_foil_id": 42781, "tcgplayer_id": 56294, "cardmarket_id": 250629, "name": "Geistflame", "lang": "en", "released_at": "2011-09-30", "uri": "https://api.scryfall.com/cards/1b856f31-ac80-4338-95a5-3f8acda74cfe", "scryfall_uri": "https://scryfall.com/card/isd/144/geistflame?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/1/b/1b856f31-ac80-4338-95a5-3f8acda74cfe.jpg?1562826976", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/b/1b856f31-ac80-4338-95a5-3f8acda74cfe.jpg?1562826976", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/1/b/1b856f31-ac80-4338-95a5-3f8acda74cfe.jpg?1562826976", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/1/b/1b856f31-ac80-4338-95a5-3f8acda74cfe.png?1562826976", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/b/1b856f31-ac80-4338-95a5-3f8acda74cfe.jpg?1562826976", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/1/b/1b856f31-ac80-4338-95a5-3f8acda74cfe.jpg?1562826976"}, "mana_cost": "{R}", "cmc": 1.0, "type_line": "Instant", "oracle_text": "Geistflame deals 1 damage to any target.\nFlashback {3}{R} (You may cast this card from your graveyard for its flashback cost. Then exile it.)", "colors": ["R"], "color_identity": ["R"], "keywords": ["Flashback"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "d1026945-2969-42b9-be53-f941405a58cb", "set": "isd", "set_name": "Innistrad", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/d1026945-2969-42b9-be53-f941405a58cb", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aisd&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/isd?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/1b856f31-ac80-4338-95a5-3f8acda74cfe/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A2f01c3d9-e0fc-4cdf-b4db-daeb8bb24bc3&unique=prints", "collector_number": "144", "digital": false, "rarity": "common", "flavor_text": "Innistrad pyromancers find their best raw materials in the fury of the dead.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Scott Chou", "artist_ids": ["9e048547-f9c3-4958-9c2c-91e45df7c6ae"], "illustration_id": "1aab8398-4dda-48b6-a977-6bafae621472", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 16536, "penny_rank": 1774, "prices": {"usd": "0.05", "usd_foil": "0.28", "usd_etched": null, "eur": "0.25", "eur_foil": "0.07", "tix": "0.04"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=247427", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Geistflame&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Geistflame&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Geistflame"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/56294?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Geistflame&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/42780?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "78827acd-a526-411b-bd22-ab9b538c75dd", "oracle_id": "c15ae9d8-b423-4628-ad88-3f44515e0c77", "multiverse_ids": [23086], "mtgo_id": 14855, "mtgo_foil_id": 14856, "tcgplayer_id": 7508, "cardmarket_id": 3504, "name": "Ghitu Fire", "lang": "en", "released_at": "2000-10-02", "uri": "https://api.scryfall.com/cards/78827acd-a526-411b-bd22-ab9b538c75dd", "scryfall_uri": "https://scryfall.com/card/inv/144/ghitu-fire?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/7/8/78827acd-a526-411b-bd22-ab9b538c75dd.jpg?1562919168", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/8/78827acd-a526-411b-bd22-ab9b538c75dd.jpg?1562919168", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/7/8/78827acd-a526-411b-bd22-ab9b538c75dd.jpg?1562919168", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/7/8/78827acd-a526-411b-bd22-ab9b538c75dd.png?1562919168", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/8/78827acd-a526-411b-bd22-ab9b538c75dd.jpg?1562919168", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/7/8/78827acd-a526-411b-bd22-ab9b538c75dd.jpg?1562919168"}, "mana_cost": "{X}{R}", "cmc": 1.0, "type_line": "Sorcery", "oracle_text": "You may cast Ghitu Fire as though it had flash if you pay {2} more to cast it. (You may cast it any time you could cast an instant.)\nGhitu Fire deals X damage to any target.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "b9ae5e02-7726-47ca-b5e4-5ec402b41cd1", "set": "inv", "set_name": "Invasion", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/b9ae5e02-7726-47ca-b5e4-5ec402b41cd1", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ainv&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/inv?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/78827acd-a526-411b-bd22-ab9b538c75dd/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ac15ae9d8-b423-4628-ad88-3f44515e0c77&unique=prints", "collector_number": "144", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Glen Angus", "artist_ids": ["7be3b9e4-de9b-4a3d-884e-e67b9681d409"], "illustration_id": "72ca7476-4eb5-4503-84ee-ac05dcc16a12", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 16710, "penny_rank": 6168, "prices": {"usd": "0.27", "usd_foil": null, "usd_etched": null, "eur": "0.18", "eur_foil": "9.99", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=23086", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Ghitu+Fire&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Ghitu+Fire&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Ghitu+Fire"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/7508?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Ghitu+Fire&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/14855?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "a60475e5-0d37-4af0-b717-da4c8dea45ac", "oracle_id": "3479a4e6-c67d-4958-8a47-43d3a2f69bb1", "multiverse_ids": [136044], "mtgo_id": 26816, "mtgo_foil_id": 26817, "tcgplayer_id": 14893, "cardmarket_id": 15107, "name": "Ghostfire", "lang": "en", "released_at": "2007-05-04", "uri": "https://api.scryfall.com/cards/a60475e5-0d37-4af0-b717-da4c8dea45ac", "scryfall_uri": "https://scryfall.com/card/fut/115/ghostfire?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/a/6/a60475e5-0d37-4af0-b717-da4c8dea45ac.jpg?1562928542", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/6/a60475e5-0d37-4af0-b717-da4c8dea45ac.jpg?1562928542", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/a/6/a60475e5-0d37-4af0-b717-da4c8dea45ac.jpg?1562928542", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/a/6/a60475e5-0d37-4af0-b717-da4c8dea45ac.png?1562928542", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/6/a60475e5-0d37-4af0-b717-da4c8dea45ac.jpg?1562928542", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/a/6/a60475e5-0d37-4af0-b717-da4c8dea45ac.jpg?1562928542"}, "mana_cost": "{2}{R}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Ghostfire is colorless.\nGhostfire deals 3 damage to any target.", "colors": [], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "bf951ddb-4445-4923-87cb-3fe4ac3c6b9a", "set": "fut", "set_name": "Future Sight", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/bf951ddb-4445-4923-87cb-3fe4ac3c6b9a", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Afut&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/fut?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/a60475e5-0d37-4af0-b717-da4c8dea45ac/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A3479a4e6-c67d-4958-8a47-43d3a2f69bb1&unique=prints", "collector_number": "115", "digital": false, "rarity": "common", "flavor_text": "Only those gifted with the eye of Ugin, the spirit dragon, can see his fiery breath.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Cyril Van Der Haegen", "artist_ids": ["90edbd2e-9462-4394-b0b4-02885b4e56b3"], "illustration_id": "03175630-3cc6-4bed-b27e-dd29a6684346", "border_color": "black", "frame": "future", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 18484, "penny_rank": 4309, "prices": {"usd": "0.14", "usd_foil": "1.24", "usd_etched": null, "eur": "0.13", "eur_foil": "0.20", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=136044", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Ghostfire&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Ghostfire&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Ghostfire"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/14893?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Ghostfire&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/26816?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "046fa2db-4c73-401a-b9a4-b039554be625", "oracle_id": "73d175b3-f0dc-4599-8702-2967a8ead06a", "multiverse_ids": [139477], "mtgo_id": 28301, "mtgo_foil_id": 28302, "tcgplayer_id": 15504, "cardmarket_id": 17911, "name": "Giant's Ire", "lang": "en", "released_at": "2007-10-12", "uri": "https://api.scryfall.com/cards/046fa2db-4c73-401a-b9a4-b039554be625", "scryfall_uri": "https://scryfall.com/card/lrw/170/giants-ire?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/0/4/046fa2db-4c73-401a-b9a4-b039554be625.jpg?1562336735", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/4/046fa2db-4c73-401a-b9a4-b039554be625.jpg?1562336735", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/0/4/046fa2db-4c73-401a-b9a4-b039554be625.jpg?1562336735", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/0/4/046fa2db-4c73-401a-b9a4-b039554be625.png?1562336735", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/4/046fa2db-4c73-401a-b9a4-b039554be625.jpg?1562336735", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/0/4/046fa2db-4c73-401a-b9a4-b039554be625.jpg?1562336735"}, "mana_cost": "{3}{R}", "cmc": 4.0, "type_line": "Tribal Sorcery \u2014 Giant", "oracle_text": "Giant's Ire deals 4 damage to target player or planeswalker. If you control a Giant, draw a card.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "30ec97cb-dca9-4bf4-a98b-310f9d8ceaff", "set": "lrw", "set_name": "Lorwyn", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/30ec97cb-dca9-4bf4-a98b-310f9d8ceaff", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Alrw&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/lrw?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/046fa2db-4c73-401a-b9a4-b039554be625/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A73d175b3-f0dc-4599-8702-2967a8ead06a&unique=prints", "collector_number": "170", "digital": false, "rarity": "common", "flavor_text": "The only feeling greater than hurling something a mile is crushing something else with it that was really, really irritating you.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Alex Horley-Orlandelli", "artist_ids": ["1631a2ad-bf03-4ab9-b86c-60da982d58a1"], "illustration_id": "8b864ba5-dc56-48f6-8099-c7f68195fe2b", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 13679, "prices": {"usd": "0.14", "usd_foil": "0.53", "usd_etched": null, "eur": "0.11", "eur_foil": "0.10", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=139477", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Giant%27s+Ire&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Giant%27s+Ire&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Giant%27s+Ire"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/15504?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Giant%27s+Ire&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/28301?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "04c713fd-df47-4b35-bd37-ab65d853bdc8", "oracle_id": "e65a8ab8-84a7-4fe2-b009-ceb87bec6b4e", "multiverse_ids": [], "tcgplayer_id": 37995, "cardmarket_id": 18227, "name": "Glacial Ray", "lang": "en", "released_at": "2004-01-01", "uri": "https://api.scryfall.com/cards/04c713fd-df47-4b35-bd37-ab65d853bdc8", "scryfall_uri": "https://scryfall.com/card/pal04/8/glacial-ray?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/0/4/04c713fd-df47-4b35-bd37-ab65d853bdc8.jpg?1562271537", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/4/04c713fd-df47-4b35-bd37-ab65d853bdc8.jpg?1562271537", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/0/4/04c713fd-df47-4b35-bd37-ab65d853bdc8.jpg?1562271537", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/0/4/04c713fd-df47-4b35-bd37-ab65d853bdc8.png?1562271537", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/4/04c713fd-df47-4b35-bd37-ab65d853bdc8.jpg?1562271537", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/0/4/04c713fd-df47-4b35-bd37-ab65d853bdc8.jpg?1562271537"}, "mana_cost": "{1}{R}", "cmc": 2.0, "type_line": "Instant \u2014 Arcane", "oracle_text": "Glacial Ray deals 2 damage to any target.\nSplice onto Arcane {1}{R} (As you cast an Arcane spell, you may reveal this card from your hand and pay its splice cost. If you do, add this card's effects to that spell.)", "colors": ["R"], "color_identity": ["R"], "keywords": ["Splice"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": true, "nonfoil": false, "finishes": ["foil"], "oversized": false, "promo": true, "reprint": true, "variation": false, "set_id": "2afca034-842a-4488-af35-c79df13eb21d", "set": "pal04", "set_name": "Arena League 2004", "set_type": "promo", "set_uri": "https://api.scryfall.com/sets/2afca034-842a-4488-af35-c79df13eb21d", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Apal04&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/pal04?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/04c713fd-df47-4b35-bd37-ab65d853bdc8/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ae65a8ab8-84a7-4fe2-b009-ceb87bec6b4e&unique=prints", "collector_number": "8", "digital": false, "rarity": "rare", "watermark": "arena", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Jim Murray", "artist_ids": ["1c906f9b-5bbe-4643-8f5c-90eb1c7f0c43"], "illustration_id": "364d11ae-ce12-4a83-a2c1-9206752ab4af", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "promo_types": ["arenaleague"], "edhrec_rank": 15218, "penny_rank": 6539, "prices": {"usd": null, "usd_foil": "0.53", "usd_etched": null, "eur": null, "eur_foil": "0.60", "tix": null}, "related_uris": {"tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Glacial+Ray&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Glacial+Ray&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Glacial+Ray"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/37995?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Glacial+Ray&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Glacial+Ray&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "4849db5d-cd41-49f6-acd5-697cdc8263f6", "oracle_id": "0071723e-388d-4ae7-bc99-c143dd356c63", "multiverse_ids": [443016], "mtgo_id": 67721, "arena_id": 67360, "tcgplayer_id": 162164, "cardmarket_id": 319791, "name": "Goblin Barrage", "lang": "en", "released_at": "2018-04-27", "uri": "https://api.scryfall.com/cards/4849db5d-cd41-49f6-acd5-697cdc8263f6", "scryfall_uri": "https://scryfall.com/card/dom/128/goblin-barrage?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/4/8/4849db5d-cd41-49f6-acd5-697cdc8263f6.jpg?1562735067", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/8/4849db5d-cd41-49f6-acd5-697cdc8263f6.jpg?1562735067", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/4/8/4849db5d-cd41-49f6-acd5-697cdc8263f6.jpg?1562735067", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/4/8/4849db5d-cd41-49f6-acd5-697cdc8263f6.png?1562735067", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/8/4849db5d-cd41-49f6-acd5-697cdc8263f6.jpg?1562735067", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/4/8/4849db5d-cd41-49f6-acd5-697cdc8263f6.jpg?1562735067"}, "mana_cost": "{3}{R}", "cmc": 4.0, "type_line": "Sorcery", "oracle_text": "Kicker\u2014Sacrifice an artifact or Goblin. (You may sacrifice an artifact or Goblin in addition to any other costs as you cast this spell.)\nGoblin Barrage deals 4 damage to target creature. If this spell was kicked, it also deals 4 damage to target player or planeswalker.", "colors": ["R"], "color_identity": ["R"], "keywords": ["Kicker"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "be1daba3-51c9-4e7e-9212-36e68addc26c", "set": "dom", "set_name": "Dominaria", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/be1daba3-51c9-4e7e-9212-36e68addc26c", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Adom&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/dom?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/4849db5d-cd41-49f6-acd5-697cdc8263f6/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A0071723e-388d-4ae7-bc99-c143dd356c63&unique=prints", "collector_number": "128", "digital": false, "rarity": "uncommon", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Bram Sels", "artist_ids": ["2e90d3c1-e8ac-45c7-9d5a-63385c1a384d"], "illustration_id": "a22ad545-3cd2-4c27-aeb8-1d3f2feafe72", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 14747, "penny_rank": 13845, "prices": {"usd": "0.06", "usd_foil": "0.17", "usd_etched": null, "eur": "0.05", "eur_foil": "0.16", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=443016", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Goblin+Barrage&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Goblin+Barrage&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Goblin+Barrage"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/162164?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Goblin+Barrage&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/67721?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "394cc2aa-0318-4ccd-a550-99a7eac933c3", "oracle_id": "20aecb7b-7e37-4efe-ac27-f9f9042203f4", "multiverse_ids": [220435], "mtgo_id": 41531, "mtgo_foil_id": 41532, "tcgplayer_id": 47243, "cardmarket_id": 247904, "name": "Goblin Grenade", "lang": "en", "released_at": "2011-07-15", "uri": "https://api.scryfall.com/cards/394cc2aa-0318-4ccd-a550-99a7eac933c3", "scryfall_uri": "https://scryfall.com/card/m12/140/goblin-grenade?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/3/9/394cc2aa-0318-4ccd-a550-99a7eac933c3.jpg?1562639104", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/9/394cc2aa-0318-4ccd-a550-99a7eac933c3.jpg?1562639104", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/3/9/394cc2aa-0318-4ccd-a550-99a7eac933c3.jpg?1562639104", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/3/9/394cc2aa-0318-4ccd-a550-99a7eac933c3.png?1562639104", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/9/394cc2aa-0318-4ccd-a550-99a7eac933c3.jpg?1562639104", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/3/9/394cc2aa-0318-4ccd-a550-99a7eac933c3.jpg?1562639104"}, "mana_cost": "{R}", "cmc": 1.0, "type_line": "Sorcery", "oracle_text": "As an additional cost to cast this spell, sacrifice a Goblin.\nGoblin Grenade deals 5 damage to any target.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "5cdd2643-229c-4441-a62a-c34e4b531e1c", "set": "m12", "set_name": "Magic 2012", "set_type": "core", "set_uri": "https://api.scryfall.com/sets/5cdd2643-229c-4441-a62a-c34e4b531e1c", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Am12&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/m12?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/394cc2aa-0318-4ccd-a550-99a7eac933c3/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A20aecb7b-7e37-4efe-ac27-f9f9042203f4&unique=prints", "collector_number": "140", "digital": false, "rarity": "uncommon", "flavor_text": "Don't underestimate the aerodynamic qualities of the common goblin.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Kev Walker", "artist_ids": ["f366a0ee-a0cd-466d-ba6a-90058c7a31a6"], "illustration_id": "5e32fea8-e379-4fbe-986c-e4ab209c08fc", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 5797, "penny_rank": 1122, "prices": {"usd": "0.89", "usd_foil": "6.86", "usd_etched": null, "eur": "0.44", "eur_foil": "3.00", "tix": "0.14"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=220435", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Goblin+Grenade&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Goblin+Grenade&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Goblin+Grenade"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/47243?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Goblin+Grenade&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/41531?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "8837eaba-9602-4f63-9897-85583fcdcf51", "oracle_id": "20aecb7b-7e37-4efe-ac27-f9f9042203f4", "multiverse_ids": [1951], "tcgplayer_id": 3655, "cardmarket_id": 7514, "name": "Goblin Grenade", "lang": "en", "released_at": "1994-11-01", "uri": "https://api.scryfall.com/cards/8837eaba-9602-4f63-9897-85583fcdcf51", "scryfall_uri": "https://scryfall.com/card/fem/56a/goblin-grenade?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/8/8/8837eaba-9602-4f63-9897-85583fcdcf51.jpg?1562920228", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/8/8837eaba-9602-4f63-9897-85583fcdcf51.jpg?1562920228", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/8/8/8837eaba-9602-4f63-9897-85583fcdcf51.jpg?1562920228", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/8/8/8837eaba-9602-4f63-9897-85583fcdcf51.png?1562920228", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/8/8837eaba-9602-4f63-9897-85583fcdcf51.jpg?1562920228", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/8/8/8837eaba-9602-4f63-9897-85583fcdcf51.jpg?1562920228"}, "mana_cost": "{R}", "cmc": 1.0, "type_line": "Sorcery", "oracle_text": "As an additional cost to cast this spell, sacrifice a Goblin.\nGoblin Grenade deals 5 damage to any target.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "cf7390b1-341a-4ae8-a325-da0f5f322f13", "set": "fem", "set_name": "Fallen Empires", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/cf7390b1-341a-4ae8-a325-da0f5f322f13", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Afem&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/fem?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/8837eaba-9602-4f63-9897-85583fcdcf51/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A20aecb7b-7e37-4efe-ac27-f9f9042203f4&unique=prints", "collector_number": "56a", "digital": false, "rarity": "common", "flavor_text": "\"According to accepted theory, the Grenade held some kind of flammable mixture and was carried to its target by a hapless Goblin.\"\n\u2014*Sarpadian Empires, vol. IV*", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Ron Spencer", "artist_ids": ["dab52c11-0564-4207-a4a1-c1735c946a65"], "illustration_id": "cb8e9bad-29e8-4251-a256-4c30abe10d7b", "border_color": "black", "frame": "1993", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 5797, "penny_rank": 1122, "prices": {"usd": "0.45", "usd_foil": null, "usd_etched": null, "eur": "0.73", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=1951", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Goblin+Grenade&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Goblin+Grenade&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Goblin+Grenade"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/3655?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Goblin+Grenade&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Goblin+Grenade&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "dee262da-3002-4c08-8043-4e40e1b46822", "oracle_id": "20aecb7b-7e37-4efe-ac27-f9f9042203f4", "multiverse_ids": [1952], "tcgplayer_id": 18206, "cardmarket_id": 7515, "name": "Goblin Grenade", "lang": "en", "released_at": "1994-11-01", "uri": "https://api.scryfall.com/cards/dee262da-3002-4c08-8043-4e40e1b46822", "scryfall_uri": "https://scryfall.com/card/fem/56b/goblin-grenade?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/d/e/dee262da-3002-4c08-8043-4e40e1b46822.jpg?1562936623", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/e/dee262da-3002-4c08-8043-4e40e1b46822.jpg?1562936623", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/d/e/dee262da-3002-4c08-8043-4e40e1b46822.jpg?1562936623", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/d/e/dee262da-3002-4c08-8043-4e40e1b46822.png?1562936623", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/e/dee262da-3002-4c08-8043-4e40e1b46822.jpg?1562936623", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/d/e/dee262da-3002-4c08-8043-4e40e1b46822.jpg?1562936623"}, "mana_cost": "{R}", "cmc": 1.0, "type_line": "Sorcery", "oracle_text": "As an additional cost to cast this spell, sacrifice a Goblin.\nGoblin Grenade deals 5 damage to any target.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "cf7390b1-341a-4ae8-a325-da0f5f322f13", "set": "fem", "set_name": "Fallen Empires", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/cf7390b1-341a-4ae8-a325-da0f5f322f13", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Afem&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/fem?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/dee262da-3002-4c08-8043-4e40e1b46822/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A20aecb7b-7e37-4efe-ac27-f9f9042203f4&unique=prints", "collector_number": "56b", "digital": false, "rarity": "common", "flavor_text": "\"I don't suppose we could teach them to *throw* the cursed things?\"\n\u2014Ivra Jursdotter", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Dan Frazier", "artist_ids": ["059bba56-5feb-42e4-8c2e-e2f1e6ba11f9"], "illustration_id": "b90664a7-5cd0-4af2-9019-dcc86393452b", "border_color": "black", "frame": "1993", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 5797, "penny_rank": 1122, "prices": {"usd": "0.29", "usd_foil": null, "usd_etched": null, "eur": "0.45", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=1952", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Goblin+Grenade&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Goblin+Grenade&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Goblin+Grenade"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/18206?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Goblin+Grenade&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Goblin+Grenade&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "1befdfc7-a1e3-4a2a-ad68-7d0fee170f3f", "oracle_id": "20aecb7b-7e37-4efe-ac27-f9f9042203f4", "multiverse_ids": [1953], "tcgplayer_id": 18207, "cardmarket_id": 7516, "name": "Goblin Grenade", "lang": "en", "released_at": "1994-11-01", "uri": "https://api.scryfall.com/cards/1befdfc7-a1e3-4a2a-ad68-7d0fee170f3f", "scryfall_uri": "https://scryfall.com/card/fem/56c/goblin-grenade?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/1/b/1befdfc7-a1e3-4a2a-ad68-7d0fee170f3f.jpg?1562900237", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/b/1befdfc7-a1e3-4a2a-ad68-7d0fee170f3f.jpg?1562900237", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/1/b/1befdfc7-a1e3-4a2a-ad68-7d0fee170f3f.jpg?1562900237", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/1/b/1befdfc7-a1e3-4a2a-ad68-7d0fee170f3f.png?1562900237", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/b/1befdfc7-a1e3-4a2a-ad68-7d0fee170f3f.jpg?1562900237", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/1/b/1befdfc7-a1e3-4a2a-ad68-7d0fee170f3f.jpg?1562900237"}, "mana_cost": "{R}", "cmc": 1.0, "type_line": "Sorcery", "oracle_text": "As an additional cost to cast this spell, sacrifice a Goblin.\nGoblin Grenade deals 5 damage to any target.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "cf7390b1-341a-4ae8-a325-da0f5f322f13", "set": "fem", "set_name": "Fallen Empires", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/cf7390b1-341a-4ae8-a325-da0f5f322f13", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Afem&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/fem?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/1befdfc7-a1e3-4a2a-ad68-7d0fee170f3f/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A20aecb7b-7e37-4efe-ac27-f9f9042203f4&unique=prints", "collector_number": "56c", "digital": false, "rarity": "common", "flavor_text": "\"Without their massive numbers, the Goblins could never have launched such a successful offensive.\"\n\u2014*Sarpadian Empires, vol. VI*", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Christopher Rush", "artist_ids": ["c96773f0-346c-4f7d-9271-2d98cc5d86e1"], "illustration_id": "830066f2-0dca-4f15-a0c3-e1838bef084c", "border_color": "black", "frame": "1993", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 5797, "penny_rank": 1122, "prices": {"usd": "0.24", "usd_foil": null, "usd_etched": null, "eur": "0.69", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=1953", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Goblin+Grenade&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Goblin+Grenade&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Goblin+Grenade"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/18207?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Goblin+Grenade&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Goblin+Grenade&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "8cd49f85-7dbd-4cb6-b916-2adee29bb745", "oracle_id": "ebd2d760-5ad8-4027-b124-171822f3edfe", "multiverse_ids": [370472], "mtgo_id": 48886, "mtgo_foil_id": 48887, "tcgplayer_id": 68248, "cardmarket_id": 261930, "name": "Grapeshot", "lang": "en", "released_at": "2013-06-07", "uri": "https://api.scryfall.com/cards/8cd49f85-7dbd-4cb6-b916-2adee29bb745", "scryfall_uri": "https://scryfall.com/card/mma/116/grapeshot?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/8/c/8cd49f85-7dbd-4cb6-b916-2adee29bb745.jpg?1561967853", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/c/8cd49f85-7dbd-4cb6-b916-2adee29bb745.jpg?1561967853", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/8/c/8cd49f85-7dbd-4cb6-b916-2adee29bb745.jpg?1561967853", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/8/c/8cd49f85-7dbd-4cb6-b916-2adee29bb745.png?1561967853", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/c/8cd49f85-7dbd-4cb6-b916-2adee29bb745.jpg?1561967853", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/8/c/8cd49f85-7dbd-4cb6-b916-2adee29bb745.jpg?1561967853"}, "mana_cost": "{1}{R}", "cmc": 2.0, "type_line": "Sorcery", "oracle_text": "Grapeshot deals 1 damage to any target.\nStorm (When you cast this spell, copy it for each spell cast before it this turn. You may choose new targets for the copies.)", "colors": ["R"], "color_identity": ["R"], "keywords": ["Storm"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "banned", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "0b7020f2-336d-4706-9ce6-f6710b9ebd5c", "set": "mma", "set_name": "Modern Masters", "set_type": "masters", "set_uri": "https://api.scryfall.com/sets/0b7020f2-336d-4706-9ce6-f6710b9ebd5c", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Amma&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/mma?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/8cd49f85-7dbd-4cb6-b916-2adee29bb745/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aebd2d760-5ad8-4027-b124-171822f3edfe&unique=prints", "collector_number": "116", "digital": false, "rarity": "common", "flavor_text": "Mages often seek to emulate the powerful relics lost to time and apocalypse.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Clint Cearley", "artist_ids": ["03b75350-d5a0-4e3a-b3b4-8d4a5554385b"], "illustration_id": "fcf41555-df2b-46ef-8e15-9b3107f67f0c", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 1146, "penny_rank": 1187, "prices": {"usd": "0.21", "usd_foil": "0.83", "usd_etched": null, "eur": "0.20", "eur_foil": "0.75", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=370472", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Grapeshot&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Grapeshot&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Grapeshot"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/68248?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Grapeshot&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/48886?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "4ee33cb6-768e-44a0-b6f4-b8638aa84330", "oracle_id": "ebd2d760-5ad8-4027-b124-171822f3edfe", "multiverse_ids": [118882], "mtgo_id": 25797, "mtgo_foil_id": 25798, "tcgplayer_id": 14250, "cardmarket_id": 13860, "name": "Grapeshot", "lang": "en", "released_at": "2006-10-06", "uri": "https://api.scryfall.com/cards/4ee33cb6-768e-44a0-b6f4-b8638aa84330", "scryfall_uri": "https://scryfall.com/card/tsp/160/grapeshot?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/4/e/4ee33cb6-768e-44a0-b6f4-b8638aa84330.jpg?1562911525", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/e/4ee33cb6-768e-44a0-b6f4-b8638aa84330.jpg?1562911525", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/4/e/4ee33cb6-768e-44a0-b6f4-b8638aa84330.jpg?1562911525", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/4/e/4ee33cb6-768e-44a0-b6f4-b8638aa84330.png?1562911525", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/e/4ee33cb6-768e-44a0-b6f4-b8638aa84330.jpg?1562911525", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/4/e/4ee33cb6-768e-44a0-b6f4-b8638aa84330.jpg?1562911525"}, "mana_cost": "{1}{R}", "cmc": 2.0, "type_line": "Sorcery", "oracle_text": "Grapeshot deals 1 damage to any target.\nStorm (When you cast this spell, copy it for each spell cast before it this turn. You may choose new targets for the copies.)", "colors": ["R"], "color_identity": ["R"], "keywords": ["Storm"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "banned", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "c1d109bc-ffd8-428f-8d7d-3f8d7e648046", "set": "tsp", "set_name": "Time Spiral", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/c1d109bc-ffd8-428f-8d7d-3f8d7e648046", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Atsp&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/tsp?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/4ee33cb6-768e-44a0-b6f4-b8638aa84330/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aebd2d760-5ad8-4027-b124-171822f3edfe&unique=prints", "collector_number": "160", "digital": false, "rarity": "common", "flavor_text": "Mages often seek to emulate the powerful relics lost to time and apocalypse.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Pete Venters", "artist_ids": ["d54c4a1a-c0c5-4834-84db-125d341f3ad8"], "illustration_id": "6fb5ccb4-3049-47c8-bdd9-5c86437a222d", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 1146, "penny_rank": 1187, "prices": {"usd": "0.20", "usd_foil": "8.72", "usd_etched": null, "eur": "0.50", "eur_foil": "2.99", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=118882", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Grapeshot&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Grapeshot&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Grapeshot"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/14250?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Grapeshot&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/25797?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "b99b45df-9602-4037-a695-09decb5f21d7", "oracle_id": "ebd2d760-5ad8-4027-b124-171822f3edfe", "multiverse_ids": [517589], "mtgo_id": 89135, "arena_id": 77518, "tcgplayer_id": 235513, "tcgplayer_etched_id": 235514, "cardmarket_id": 556944, "name": "Grapeshot", "lang": "en", "released_at": "2021-04-23", "uri": "https://api.scryfall.com/cards/b99b45df-9602-4037-a695-09decb5f21d7", "scryfall_uri": "https://scryfall.com/card/sta/39/grapeshot?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/b/9/b99b45df-9602-4037-a695-09decb5f21d7.jpg?1623890288", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/9/b99b45df-9602-4037-a695-09decb5f21d7.jpg?1623890288", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/b/9/b99b45df-9602-4037-a695-09decb5f21d7.jpg?1623890288", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/b/9/b99b45df-9602-4037-a695-09decb5f21d7.png?1623890288", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/9/b99b45df-9602-4037-a695-09decb5f21d7.jpg?1623890288", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/b/9/b99b45df-9602-4037-a695-09decb5f21d7.jpg?1623890288"}, "mana_cost": "{1}{R}", "cmc": 2.0, "type_line": "Sorcery", "oracle_text": "Grapeshot deals 1 damage to any target.\nStorm (When you cast this spell, copy it for each spell cast before it this turn. You may choose new targets for the copies.)", "colors": ["R"], "color_identity": ["R"], "keywords": ["Storm"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "banned", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil", "etched"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "5064a720-907f-4cb6-a425-766dc1dd7374", "set": "sta", "set_name": "Strixhaven Mystical Archive", "set_type": "masterpiece", "set_uri": "https://api.scryfall.com/sets/5064a720-907f-4cb6-a425-766dc1dd7374", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Asta&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/sta?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/b99b45df-9602-4037-a695-09decb5f21d7/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aebd2d760-5ad8-4027-b124-171822f3edfe&unique=prints", "collector_number": "39", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Minttu Hynninen", "artist_ids": ["95f2b92b-3031-4abb-85f1-bcebf0a032f5"], "illustration_id": "7b81525f-510e-44cb-b42a-5912d0e535e9", "border_color": "borderless", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "edhrec_rank": 1146, "penny_rank": 1187, "preview": {"source": "Wizards of the Coast", "source_uri": "https://twitter.com/MagicEsports/status/1375555271708250115", "previewed_at": "2021-03-26"}, "prices": {"usd": "0.31", "usd_foil": "1.15", "usd_etched": "2.42", "eur": "0.37", "eur_foil": "1.75", "tix": "0.16"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=517589", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Grapeshot&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Grapeshot&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Grapeshot"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/235513?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Grapeshot&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/89135?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "9bf3bac0-6e63-4bd3-bbd6-547f46c2d126", "oracle_id": "65ad90f5-4dae-494b-83fb-8052e77e0b12", "multiverse_ids": [129588], "mtgo_id": 27132, "mtgo_foil_id": 27133, "tcgplayer_id": 15154, "cardmarket_id": 16375, "name": "Guerrilla Tactics", "lang": "en", "released_at": "2007-07-13", "uri": "https://api.scryfall.com/cards/9bf3bac0-6e63-4bd3-bbd6-547f46c2d126", "scryfall_uri": "https://scryfall.com/card/10e/211/guerrilla-tactics?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/9/b/9bf3bac0-6e63-4bd3-bbd6-547f46c2d126.jpg?1562552299", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/b/9bf3bac0-6e63-4bd3-bbd6-547f46c2d126.jpg?1562552299", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/9/b/9bf3bac0-6e63-4bd3-bbd6-547f46c2d126.jpg?1562552299", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/9/b/9bf3bac0-6e63-4bd3-bbd6-547f46c2d126.png?1562552299", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/b/9bf3bac0-6e63-4bd3-bbd6-547f46c2d126.jpg?1562552299", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/9/b/9bf3bac0-6e63-4bd3-bbd6-547f46c2d126.jpg?1562552299"}, "mana_cost": "{1}{R}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Guerrilla Tactics deals 2 damage to any target.\nWhen a spell or ability an opponent controls causes you to discard Guerrilla Tactics, Guerrilla Tactics deals 4 damage to any target.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "a66a6124-0d81-488d-b080-91f5ba7fbad0", "set": "10e", "set_name": "Tenth Edition", "set_type": "core", "set_uri": "https://api.scryfall.com/sets/a66a6124-0d81-488d-b080-91f5ba7fbad0", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3A10e&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/10e?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/9bf3bac0-6e63-4bd3-bbd6-547f46c2d126/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A65ad90f5-4dae-494b-83fb-8052e77e0b12&unique=prints", "collector_number": "211", "digital": false, "rarity": "uncommon", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Dave Dorman", "artist_ids": ["9235458b-ce92-45bd-a430-a72ecd8e6176"], "illustration_id": "8f09d35d-c293-412c-be2b-620ab4f5c0f5", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 20054, "penny_rank": 8121, "prices": {"usd": "0.11", "usd_foil": "0.30", "usd_etched": null, "eur": "0.03", "eur_foil": "0.42", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=129588", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Guerrilla+Tactics&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Guerrilla+Tactics&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Guerrilla+Tactics"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/15154?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Guerrilla+Tactics&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/27132?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "63535f0e-dc14-420e-bcb7-b5ef8fafb93f", "oracle_id": "65ad90f5-4dae-494b-83fb-8052e77e0b12", "multiverse_ids": [45376], "mtgo_id": 19585, "mtgo_foil_id": 19586, "tcgplayer_id": 11152, "cardmarket_id": 828, "name": "Guerrilla Tactics", "lang": "en", "released_at": "2003-07-28", "uri": "https://api.scryfall.com/cards/63535f0e-dc14-420e-bcb7-b5ef8fafb93f", "scryfall_uri": "https://scryfall.com/card/8ed/192/guerrilla-tactics?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/6/3/63535f0e-dc14-420e-bcb7-b5ef8fafb93f.jpg?1562915110", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/3/63535f0e-dc14-420e-bcb7-b5ef8fafb93f.jpg?1562915110", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/6/3/63535f0e-dc14-420e-bcb7-b5ef8fafb93f.jpg?1562915110", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/6/3/63535f0e-dc14-420e-bcb7-b5ef8fafb93f.png?1562915110", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/3/63535f0e-dc14-420e-bcb7-b5ef8fafb93f.jpg?1562915110", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/6/3/63535f0e-dc14-420e-bcb7-b5ef8fafb93f.jpg?1562915110"}, "mana_cost": "{1}{R}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Guerrilla Tactics deals 2 damage to any target.\nWhen a spell or ability an opponent controls causes you to discard Guerrilla Tactics, Guerrilla Tactics deals 4 damage to any target.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "cae8d29d-5979-4d8f-884d-7f3183bcc886", "set": "8ed", "set_name": "Eighth Edition", "set_type": "core", "set_uri": "https://api.scryfall.com/sets/cae8d29d-5979-4d8f-884d-7f3183bcc886", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3A8ed&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/8ed?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/63535f0e-dc14-420e-bcb7-b5ef8fafb93f/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A65ad90f5-4dae-494b-83fb-8052e77e0b12&unique=prints", "collector_number": "192", "digital": false, "rarity": "uncommon", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Ron Spencer", "artist_ids": ["dab52c11-0564-4207-a4a1-c1735c946a65"], "illustration_id": "81672e65-5fac-4988-9515-0cf96d8234a1", "border_color": "white", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 20054, "penny_rank": 8121, "prices": {"usd": "0.10", "usd_foil": "0.52", "usd_etched": null, "eur": "0.05", "eur_foil": "0.70", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=45376", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Guerrilla+Tactics&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Guerrilla+Tactics&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Guerrilla+Tactics"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/11152?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Guerrilla+Tactics&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/19585?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "51811f2a-7002-4ba7-98d8-5b09d887975c", "oracle_id": "65ad90f5-4dae-494b-83fb-8052e77e0b12", "multiverse_ids": [3176], "tcgplayer_id": 81828, "cardmarket_id": 7963, "name": "Guerrilla Tactics", "lang": "en", "released_at": "1996-06-10", "uri": "https://api.scryfall.com/cards/51811f2a-7002-4ba7-98d8-5b09d887975c", "scryfall_uri": "https://scryfall.com/card/all/74a/guerrilla-tactics?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/5/1/51811f2a-7002-4ba7-98d8-5b09d887975c.jpg?1562768705", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/1/51811f2a-7002-4ba7-98d8-5b09d887975c.jpg?1562768705", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/5/1/51811f2a-7002-4ba7-98d8-5b09d887975c.jpg?1562768705", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/5/1/51811f2a-7002-4ba7-98d8-5b09d887975c.png?1562768705", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/1/51811f2a-7002-4ba7-98d8-5b09d887975c.jpg?1562768705", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/5/1/51811f2a-7002-4ba7-98d8-5b09d887975c.jpg?1562768705"}, "mana_cost": "{1}{R}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Guerrilla Tactics deals 2 damage to any target.\nWhen a spell or ability an opponent controls causes you to discard Guerrilla Tactics, Guerrilla Tactics deals 4 damage to any target.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "64987b06-4a5c-443d-b560-ff5691744582", "set": "all", "set_name": "Alliances", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/64987b06-4a5c-443d-b560-ff5691744582", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aall&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/all?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/51811f2a-7002-4ba7-98d8-5b09d887975c/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A65ad90f5-4dae-494b-83fb-8052e77e0b12&unique=prints", "collector_number": "74a", "digital": false, "rarity": "common", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Randy Asplund-Faith", "artist_ids": ["d2da8270-bbdb-4c49-b84d-bf5a380e8a78"], "illustration_id": "cd196d10-5ef2-4645-bc02-224af5a4bfe0", "border_color": "black", "frame": "1993", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 20054, "penny_rank": 8121, "prices": {"usd": "0.09", "usd_foil": null, "usd_etched": null, "eur": "0.10", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=3176", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Guerrilla+Tactics&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Guerrilla+Tactics&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Guerrilla+Tactics"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/81828?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Guerrilla+Tactics&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Guerrilla+Tactics&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "3c005ca3-0508-4ac2-afec-3d4a27334c31", "oracle_id": "65ad90f5-4dae-494b-83fb-8052e77e0b12", "multiverse_ids": [3175], "tcgplayer_id": 4162, "cardmarket_id": 7962, "name": "Guerrilla Tactics", "lang": "en", "released_at": "1996-06-10", "uri": "https://api.scryfall.com/cards/3c005ca3-0508-4ac2-afec-3d4a27334c31", "scryfall_uri": "https://scryfall.com/card/all/74b/guerrilla-tactics?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/3/c/3c005ca3-0508-4ac2-afec-3d4a27334c31.jpg?1562768254", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/c/3c005ca3-0508-4ac2-afec-3d4a27334c31.jpg?1562768254", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/3/c/3c005ca3-0508-4ac2-afec-3d4a27334c31.jpg?1562768254", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/3/c/3c005ca3-0508-4ac2-afec-3d4a27334c31.png?1562768254", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/c/3c005ca3-0508-4ac2-afec-3d4a27334c31.jpg?1562768254", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/3/c/3c005ca3-0508-4ac2-afec-3d4a27334c31.jpg?1562768254"}, "mana_cost": "{1}{R}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Guerrilla Tactics deals 2 damage to any target.\nWhen a spell or ability an opponent controls causes you to discard Guerrilla Tactics, Guerrilla Tactics deals 4 damage to any target.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "64987b06-4a5c-443d-b560-ff5691744582", "set": "all", "set_name": "Alliances", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/64987b06-4a5c-443d-b560-ff5691744582", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aall&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/all?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/3c005ca3-0508-4ac2-afec-3d4a27334c31/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A65ad90f5-4dae-494b-83fb-8052e77e0b12&unique=prints", "collector_number": "74b", "digital": false, "rarity": "common", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Randy Asplund-Faith", "artist_ids": ["d2da8270-bbdb-4c49-b84d-bf5a380e8a78"], "illustration_id": "c275ea51-7002-47db-90c9-45ffcde7fb1c", "border_color": "black", "frame": "1993", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 20054, "penny_rank": 8121, "prices": {"usd": "0.06", "usd_foil": null, "usd_etched": null, "eur": "0.05", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=3175", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Guerrilla+Tactics&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Guerrilla+Tactics&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Guerrilla+Tactics"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/4162?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Guerrilla+Tactics&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Guerrilla+Tactics&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "a54a2a30-b96a-49c7-9151-1f4b0d4a4413", "oracle_id": "9afb3b6e-4909-4efa-aa79-81c0229411c9", "multiverse_ids": [230074], "mtgo_id": 39932, "mtgo_foil_id": 39933, "tcgplayer_id": 39528, "cardmarket_id": 245913, "name": "Gut Shot", "lang": "en", "released_at": "2011-05-13", "uri": "https://api.scryfall.com/cards/a54a2a30-b96a-49c7-9151-1f4b0d4a4413", "scryfall_uri": "https://scryfall.com/card/nph/86/gut-shot?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/a/5/a54a2a30-b96a-49c7-9151-1f4b0d4a4413.jpg?1562880417", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/5/a54a2a30-b96a-49c7-9151-1f4b0d4a4413.jpg?1562880417", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/a/5/a54a2a30-b96a-49c7-9151-1f4b0d4a4413.jpg?1562880417", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/a/5/a54a2a30-b96a-49c7-9151-1f4b0d4a4413.png?1562880417", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/5/a54a2a30-b96a-49c7-9151-1f4b0d4a4413.jpg?1562880417", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/a/5/a54a2a30-b96a-49c7-9151-1f4b0d4a4413.jpg?1562880417"}, "mana_cost": "{R/P}", "cmc": 1.0, "type_line": "Instant", "oracle_text": "({R/P} can be paid with either {R} or 2 life.)\nGut Shot deals 1 damage to any target.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "e8e356d8-6d01-4dab-aa07-d0999dc9359f", "set": "nph", "set_name": "New Phyrexia", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/e8e356d8-6d01-4dab-aa07-d0999dc9359f", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Anph&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/nph?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/a54a2a30-b96a-49c7-9151-1f4b0d4a4413/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A9afb3b6e-4909-4efa-aa79-81c0229411c9&unique=prints", "collector_number": "86", "digital": false, "rarity": "uncommon", "watermark": "phyrexian", "flavor_text": "\"Down here, we have a more pointed version of the scriptures.\"\n\u2014Urabrask's enforcer", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Greg Staples", "artist_ids": ["93d65564-bf00-447b-8406-e2031f03b6b1"], "illustration_id": "2ab58a06-eb98-497d-a1f3-b684b8880eeb", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 7255, "prices": {"usd": "1.34", "usd_foil": "16.53", "usd_etched": null, "eur": "1.06", "eur_foil": "6.78", "tix": "1.66"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=230074", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Gut+Shot&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Gut+Shot&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Gut+Shot"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/39528?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Gut+Shot&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/39932?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "f7285f52-5df0-4f90-9cf7-a57295d90fd4", "oracle_id": "3089bdd7-87e6-4d0e-ad98-c32e6f861c30", "multiverse_ids": [3452], "mtgo_id": 7033, "mtgo_foil_id": 7034, "tcgplayer_id": 5094, "cardmarket_id": 8232, "name": "Hammer of Bogardan", "lang": "en", "released_at": "1996-10-08", "uri": "https://api.scryfall.com/cards/f7285f52-5df0-4f90-9cf7-a57295d90fd4", "scryfall_uri": "https://scryfall.com/card/mir/181/hammer-of-bogardan?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/f/7/f7285f52-5df0-4f90-9cf7-a57295d90fd4.jpg?1562722857", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/7/f7285f52-5df0-4f90-9cf7-a57295d90fd4.jpg?1562722857", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/f/7/f7285f52-5df0-4f90-9cf7-a57295d90fd4.jpg?1562722857", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/f/7/f7285f52-5df0-4f90-9cf7-a57295d90fd4.png?1562722857", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/7/f7285f52-5df0-4f90-9cf7-a57295d90fd4.jpg?1562722857", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/f/7/f7285f52-5df0-4f90-9cf7-a57295d90fd4.jpg?1562722857"}, "mana_cost": "{1}{R}{R}", "cmc": 3.0, "type_line": "Sorcery", "oracle_text": "Hammer of Bogardan deals 3 damage to any target.\n{2}{R}{R}{R}: Return Hammer of Bogardan from your graveyard to your hand. Activate only during your upkeep.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "5f06acf3-8123-4a78-b2e7-089b0b775a4a", "set": "mir", "set_name": "Mirage", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/5f06acf3-8123-4a78-b2e7-089b0b775a4a", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Amir&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/mir?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/f7285f52-5df0-4f90-9cf7-a57295d90fd4/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A3089bdd7-87e6-4d0e-ad98-c32e6f861c30&unique=prints", "collector_number": "181", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Ron Spencer", "artist_ids": ["dab52c11-0564-4207-a4a1-c1735c946a65"], "illustration_id": "588f58c1-8e7c-4d4e-be2a-eec1ec7512f5", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 16773, "penny_rank": 4310, "prices": {"usd": "3.72", "usd_foil": null, "usd_etched": null, "eur": "4.37", "eur_foil": null, "tix": "0.41"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=3452", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Hammer+of+Bogardan&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Hammer+of+Bogardan&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Hammer+of+Bogardan"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/5094?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Hammer+of+Bogardan&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/7033?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "881fecf4-8c14-4614-84bd-c1a3dcdbb5ff", "oracle_id": "8e47b355-98fe-452a-a81e-b901c1f2cb6f", "multiverse_ids": [75357], "mtgo_id": 21141, "mtgo_foil_id": 21142, "tcgplayer_id": 12011, "cardmarket_id": 12030, "name": "Hanabi Blast", "lang": "en", "released_at": "2004-10-01", "uri": "https://api.scryfall.com/cards/881fecf4-8c14-4614-84bd-c1a3dcdbb5ff", "scryfall_uri": "https://scryfall.com/card/chk/170/hanabi-blast?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/8/8/881fecf4-8c14-4614-84bd-c1a3dcdbb5ff.jpg?1562762458", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/8/881fecf4-8c14-4614-84bd-c1a3dcdbb5ff.jpg?1562762458", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/8/8/881fecf4-8c14-4614-84bd-c1a3dcdbb5ff.jpg?1562762458", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/8/8/881fecf4-8c14-4614-84bd-c1a3dcdbb5ff.png?1562762458", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/8/881fecf4-8c14-4614-84bd-c1a3dcdbb5ff.jpg?1562762458", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/8/8/881fecf4-8c14-4614-84bd-c1a3dcdbb5ff.jpg?1562762458"}, "mana_cost": "{1}{R}{R}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Hanabi Blast deals 2 damage to any target. Return Hanabi Blast to its owner's hand, then discard a card at random.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "6183d21f-a0af-4118-ba58-aca1d8719c01", "set": "chk", "set_name": "Champions of Kamigawa", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/6183d21f-a0af-4118-ba58-aca1d8719c01", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Achk&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/chk?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/881fecf4-8c14-4614-84bd-c1a3dcdbb5ff/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A8e47b355-98fe-452a-a81e-b901c1f2cb6f&unique=prints", "collector_number": "170", "digital": false, "rarity": "uncommon", "flavor_text": "The most powerful of akki fire spells were developed at the cost of blood, toil, tears, sweat, and usually a nose or two.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Paolo Parente", "artist_ids": ["d48dd097-720d-476a-8722-6a02854ae28b"], "illustration_id": "409a5d16-5879-4f13-a618-403a2f14b5c0", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 22564, "penny_rank": 10183, "prices": {"usd": "0.09", "usd_foil": "0.44", "usd_etched": null, "eur": "0.01", "eur_foil": "0.14", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=75357", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Hanabi+Blast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Hanabi+Blast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Hanabi+Blast"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/12011?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Hanabi+Blast&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/21141?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "3657001a-7f79-4d3f-9d35-462ecf684fa8", "oracle_id": "fe4bee2c-f03f-44a4-94a4-55a06bcd0ad8", "multiverse_ids": [4386], "tcgplayer_id": 692, "cardmarket_id": 10165, "name": "Harsh Justice", "lang": "en", "released_at": "1997-05-01", "uri": "https://api.scryfall.com/cards/3657001a-7f79-4d3f-9d35-462ecf684fa8", "scryfall_uri": "https://scryfall.com/card/por/18/harsh-justice?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/3/6/3657001a-7f79-4d3f-9d35-462ecf684fa8.jpg?1562446166", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/6/3657001a-7f79-4d3f-9d35-462ecf684fa8.jpg?1562446166", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/3/6/3657001a-7f79-4d3f-9d35-462ecf684fa8.jpg?1562446166", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/3/6/3657001a-7f79-4d3f-9d35-462ecf684fa8.png?1562446166", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/6/3657001a-7f79-4d3f-9d35-462ecf684fa8.jpg?1562446166", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/3/6/3657001a-7f79-4d3f-9d35-462ecf684fa8.jpg?1562446166"}, "mana_cost": "{2}{W}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Cast this spell only during the declare attackers step and only if you've been attacked this step.\nThis turn, whenever an attacking creature deals combat damage to you, it deals that much damage to its controller.", "colors": ["W"], "color_identity": ["W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "478c47df-5058-4ce6-830e-7e80732b2ca9", "set": "por", "set_name": "Portal", "set_type": "starter", "set_uri": "https://api.scryfall.com/sets/478c47df-5058-4ce6-830e-7e80732b2ca9", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Apor&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/por?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/3657001a-7f79-4d3f-9d35-462ecf684fa8/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Afe4bee2c-f03f-44a4-94a4-55a06bcd0ad8&unique=prints", "collector_number": "18", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "John Coulthart", "artist_ids": ["55e5567a-7673-418e-8ba2-aee7efd6f94b"], "illustration_id": "1e37e31d-5570-4ed2-9942-86aae30f0ee5", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 16260, "penny_rank": 13342, "prices": {"usd": "11.86", "usd_foil": null, "usd_etched": null, "eur": "9.45", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=4386", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Harsh+Justice&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Harsh+Justice&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Harsh+Justice"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/692?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Harsh+Justice&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Harsh+Justice&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "770d60a0-23fc-4224-873c-2e5549b3a816", "oracle_id": "f5cf471f-032c-4ebb-823c-8841de209216", "multiverse_ids": [391851], "mtgo_id": 55336, "mtgo_foil_id": 55337, "tcgplayer_id": 95296, "cardmarket_id": 271520, "name": "Harsh Sustenance", "lang": "en", "released_at": "2015-01-23", "uri": "https://api.scryfall.com/cards/770d60a0-23fc-4224-873c-2e5549b3a816", "scryfall_uri": "https://scryfall.com/card/frf/154/harsh-sustenance?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/7/7/770d60a0-23fc-4224-873c-2e5549b3a816.jpg?1562826633", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/7/770d60a0-23fc-4224-873c-2e5549b3a816.jpg?1562826633", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/7/7/770d60a0-23fc-4224-873c-2e5549b3a816.jpg?1562826633", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/7/7/770d60a0-23fc-4224-873c-2e5549b3a816.png?1562826633", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/7/770d60a0-23fc-4224-873c-2e5549b3a816.jpg?1562826633", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/7/7/770d60a0-23fc-4224-873c-2e5549b3a816.jpg?1562826633"}, "mana_cost": "{1}{W}{B}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Harsh Sustenance deals X damage to any target and you gain X life, where X is the number of creatures you control.", "colors": ["B", "W"], "color_identity": ["B", "W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "7bb5cb2b-081a-4c8c-b7e1-494046e6baa1", "set": "frf", "set_name": "Fate Reforged", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/7bb5cb2b-081a-4c8c-b7e1-494046e6baa1", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Afrf&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/frf?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/770d60a0-23fc-4224-873c-2e5549b3a816/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Af5cf471f-032c-4ebb-823c-8841de209216&unique=prints", "collector_number": "154", "digital": false, "rarity": "common", "flavor_text": "The Shifting Wastes provide refuge to those who know where to look for it.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Cynthia Sheppard", "artist_ids": ["9dfbdd58-65e6-40cf-951a-80e141061939"], "illustration_id": "b060e72c-f278-4770-8d1d-a53f26e231cf", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 10815, "penny_rank": 10656, "prices": {"usd": "0.07", "usd_foil": "0.39", "usd_etched": null, "eur": "0.09", "eur_foil": "0.30", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=391851", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Harsh+Sustenance&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Harsh+Sustenance&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Harsh+Sustenance"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/95296?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Harsh+Sustenance&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/55336?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "939b83ba-8ba8-4b98-8a13-a037ba7805e9", "oracle_id": "8db6651b-c368-46fd-b9c2-69a4d6562246", "multiverse_ids": [4459], "mtgo_id": 9153, "mtgo_foil_id": 9154, "tcgplayer_id": 6043, "cardmarket_id": 8581, "name": "Haunting Misery", "lang": "en", "released_at": "1997-06-09", "uri": "https://api.scryfall.com/cards/939b83ba-8ba8-4b98-8a13-a037ba7805e9", "scryfall_uri": "https://scryfall.com/card/wth/71/haunting-misery?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/9/3/939b83ba-8ba8-4b98-8a13-a037ba7805e9.jpg?1562802204", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/3/939b83ba-8ba8-4b98-8a13-a037ba7805e9.jpg?1562802204", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/9/3/939b83ba-8ba8-4b98-8a13-a037ba7805e9.jpg?1562802204", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/9/3/939b83ba-8ba8-4b98-8a13-a037ba7805e9.png?1562802204", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/3/939b83ba-8ba8-4b98-8a13-a037ba7805e9.jpg?1562802204", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/9/3/939b83ba-8ba8-4b98-8a13-a037ba7805e9.jpg?1562802204"}, "mana_cost": "{1}{B}{B}", "cmc": 3.0, "type_line": "Sorcery", "oracle_text": "As an additional cost to cast this spell, exile X creature cards from your graveyard.\nHaunting Misery deals X damage to target player or planeswalker.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "700997ac-add2-4ce2-992e-5efa0fdfc0e9", "set": "wth", "set_name": "Weatherlight", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/700997ac-add2-4ce2-992e-5efa0fdfc0e9", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Awth&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/wth?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/939b83ba-8ba8-4b98-8a13-a037ba7805e9/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A8db6651b-c368-46fd-b9c2-69a4d6562246&unique=prints", "collector_number": "71", "digital": false, "rarity": "common", "flavor_text": "\"I am condemned without end.\"\n\u2014Crovax", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Gary Leach", "artist_ids": ["fb608209-fd37-435a-b2fb-a158aeb3f927"], "illustration_id": "d3e6bc09-0c4b-406c-aeae-9265e1097a31", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 20468, "penny_rank": 10423, "prices": {"usd": "0.12", "usd_foil": null, "usd_etched": null, "eur": "0.15", "eur_foil": null, "tix": "0.06"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=4459", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Haunting+Misery&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Haunting+Misery&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Haunting+Misery"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/6043?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Haunting+Misery&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/9153?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "7db219ea-2ed1-4a86-955c-d61ecedbc019", "oracle_id": "2f6f5054-4a48-458e-969e-3a0f0e507354", "multiverse_ids": [461058], "mtgo_id": 71868, "arena_id": 69582, "tcgplayer_id": 188301, "cardmarket_id": 371990, "name": "Heartfire", "lang": "en", "released_at": "2019-05-03", "uri": "https://api.scryfall.com/cards/7db219ea-2ed1-4a86-955c-d61ecedbc019", "scryfall_uri": "https://scryfall.com/card/war/131/heartfire?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/7/d/7db219ea-2ed1-4a86-955c-d61ecedbc019.jpg?1557576716", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/d/7db219ea-2ed1-4a86-955c-d61ecedbc019.jpg?1557576716", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/7/d/7db219ea-2ed1-4a86-955c-d61ecedbc019.jpg?1557576716", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/7/d/7db219ea-2ed1-4a86-955c-d61ecedbc019.png?1557576716", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/d/7db219ea-2ed1-4a86-955c-d61ecedbc019.jpg?1557576716", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/7/d/7db219ea-2ed1-4a86-955c-d61ecedbc019.jpg?1557576716"}, "mana_cost": "{1}{R}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "As an additional cost to cast this spell, sacrifice a creature or planeswalker.\nHeartfire deals 4 damage to any target.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "ee044f0b-e101-4ead-8d0e-aa510aad4277", "set": "war", "set_name": "War of the Spark", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/ee044f0b-e101-4ead-8d0e-aa510aad4277", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Awar&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/war?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/7db219ea-2ed1-4a86-955c-d61ecedbc019/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A2f6f5054-4a48-458e-969e-3a0f0e507354&unique=prints", "collector_number": "131", "digital": false, "rarity": "common", "flavor_text": "The mage looked within and realized there was still one piece of fuel to burn.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Craig J Spearing", "artist_ids": ["b0f15e74-0dd6-4156-959e-c5e30c5cdc52"], "illustration_id": "9fa43ba2-a835-4909-8ba3-4860e5ae55f8", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 12606, "penny_rank": 2775, "preview": {"source": "John Rolf", "source_uri": "https://www.twitch.tv/videos/406580848", "previewed_at": "2019-04-05"}, "prices": {"usd": "0.03", "usd_foil": "0.33", "usd_etched": null, "eur": "0.05", "eur_foil": "0.30", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=461058", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Heartfire&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Heartfire&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Heartfire"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/188301?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Heartfire&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/71868?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "2e48eb77-3bd7-444a-9262-799cc706c05a", "oracle_id": "749683c9-8cc0-4e8e-8d90-adda5e5f4e93", "multiverse_ids": [88818], "mtgo_id": 22226, "mtgo_foil_id": 22227, "tcgplayer_id": 12451, "cardmarket_id": 12679, "name": "Hidetsugu's Second Rite", "lang": "en", "released_at": "2005-06-03", "uri": "https://api.scryfall.com/cards/2e48eb77-3bd7-444a-9262-799cc706c05a", "scryfall_uri": "https://scryfall.com/card/sok/102/hidetsugus-second-rite?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/2/e/2e48eb77-3bd7-444a-9262-799cc706c05a.jpg?1562493025", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/e/2e48eb77-3bd7-444a-9262-799cc706c05a.jpg?1562493025", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/2/e/2e48eb77-3bd7-444a-9262-799cc706c05a.jpg?1562493025", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/2/e/2e48eb77-3bd7-444a-9262-799cc706c05a.png?1562493025", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/e/2e48eb77-3bd7-444a-9262-799cc706c05a.jpg?1562493025", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/2/e/2e48eb77-3bd7-444a-9262-799cc706c05a.jpg?1562493025"}, "mana_cost": "{3}{R}", "cmc": 4.0, "type_line": "Instant", "oracle_text": "If target player has exactly 10 life, Hidetsugu's Second Rite deals 10 damage to that player.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "4db16ad3-2b95-442f-bb6b-e9aa7fe7f769", "set": "sok", "set_name": "Saviors of Kamigawa", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/4db16ad3-2b95-442f-bb6b-e9aa7fe7f769", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Asok&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/sok?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/2e48eb77-3bd7-444a-9262-799cc706c05a/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A749683c9-8cc0-4e8e-8d90-adda5e5f4e93&unique=prints", "collector_number": "102", "digital": false, "rarity": "rare", "flavor_text": "Hidetsugu never relinquished a grudge. He let it burn within him, gathering ever greater intensity until the final moment of vengeance.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Jeff Miracola", "artist_ids": ["9b465bde-3656-4495-ace4-af4ce29999ed"], "illustration_id": "c2131da8-21cb-4680-9c86-4504b0e00856", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 15823, "penny_rank": 5886, "prices": {"usd": "0.84", "usd_foil": "10.67", "usd_etched": null, "eur": "0.89", "eur_foil": "3.50", "tix": "0.01"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=88818", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Hidetsugu%27s+Second+Rite&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Hidetsugu%27s+Second+Rite&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Hidetsugu%27s+Second+Rite"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/12451?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Hidetsugu%27s+Second+Rite&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/22226?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "6559d301-98bd-40a9-abf4-1079d7283214", "oracle_id": "66805334-1015-4b41-ba9b-116de94b0744", "multiverse_ids": [3714], "mtgo_id": 7583, "mtgo_foil_id": 7584, "tcgplayer_id": 5857, "cardmarket_id": 8508, "name": "Honorable Passage", "lang": "en", "released_at": "1997-02-03", "uri": "https://api.scryfall.com/cards/6559d301-98bd-40a9-abf4-1079d7283214", "scryfall_uri": "https://scryfall.com/card/vis/7/honorable-passage?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/6/5/6559d301-98bd-40a9-abf4-1079d7283214.jpg?1562277679", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/5/6559d301-98bd-40a9-abf4-1079d7283214.jpg?1562277679", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/6/5/6559d301-98bd-40a9-abf4-1079d7283214.jpg?1562277679", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/6/5/6559d301-98bd-40a9-abf4-1079d7283214.png?1562277679", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/5/6559d301-98bd-40a9-abf4-1079d7283214.jpg?1562277679", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/6/5/6559d301-98bd-40a9-abf4-1079d7283214.jpg?1562277679"}, "mana_cost": "{1}{W}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "The next time a source of your choice would deal damage to any target this turn, prevent that damage. If damage from a red source is prevented this way, Honorable Passage deals that much damage to the source's controller.", "colors": ["W"], "color_identity": ["W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "2c32f1a9-7921-4826-bea0-80bbac70532c", "set": "vis", "set_name": "Visions", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/2c32f1a9-7921-4826-bea0-80bbac70532c", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Avis&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/vis?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/6559d301-98bd-40a9-abf4-1079d7283214/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A66805334-1015-4b41-ba9b-116de94b0744&unique=prints", "collector_number": "7", "digital": false, "rarity": "uncommon", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Jeff Miracola", "artist_ids": ["9b465bde-3656-4495-ace4-af4ce29999ed"], "illustration_id": "30a20aea-4350-419a-bce0-bd619d2a5204", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 18340, "penny_rank": 3801, "prices": {"usd": "0.17", "usd_foil": null, "usd_etched": null, "eur": "0.04", "eur_foil": null, "tix": "0.11"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=3714", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Honorable+Passage&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Honorable+Passage&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Honorable+Passage"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/5857?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Honorable+Passage&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/7583?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "af6b3bf7-bd09-4f0d-a670-2efc1c6d416f", "oracle_id": "25edeff3-7727-4b80-9459-2bb6b8587fb9", "multiverse_ids": [205050], "mtgo_id": 37442, "mtgo_foil_id": 37443, "tcgplayer_id": 35637, "cardmarket_id": 241989, "name": "Hornet Sting", "lang": "en", "released_at": "2010-07-16", "uri": "https://api.scryfall.com/cards/af6b3bf7-bd09-4f0d-a670-2efc1c6d416f", "scryfall_uri": "https://scryfall.com/card/m11/181/hornet-sting?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/a/f/af6b3bf7-bd09-4f0d-a670-2efc1c6d416f.jpg?1562471839", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/f/af6b3bf7-bd09-4f0d-a670-2efc1c6d416f.jpg?1562471839", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/a/f/af6b3bf7-bd09-4f0d-a670-2efc1c6d416f.jpg?1562471839", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/a/f/af6b3bf7-bd09-4f0d-a670-2efc1c6d416f.png?1562471839", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/f/af6b3bf7-bd09-4f0d-a670-2efc1c6d416f.jpg?1562471839", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/a/f/af6b3bf7-bd09-4f0d-a670-2efc1c6d416f.jpg?1562471839"}, "mana_cost": "{G}", "cmc": 1.0, "type_line": "Instant", "oracle_text": "Hornet Sting deals 1 damage to any target.", "colors": ["G"], "color_identity": ["G"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "485d2468-18c8-42a4-9482-ca1c51e0470e", "set": "m11", "set_name": "Magic 2011", "set_type": "core", "set_uri": "https://api.scryfall.com/sets/485d2468-18c8-42a4-9482-ca1c51e0470e", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Am11&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/m11?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/af6b3bf7-bd09-4f0d-a670-2efc1c6d416f/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A25edeff3-7727-4b80-9459-2bb6b8587fb9&unique=prints", "collector_number": "181", "digital": false, "rarity": "common", "flavor_text": "It was only then\u2014to his infinite sorrow\u2014that Gork realized hornets don't make honey.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Matt Stewart", "artist_ids": ["20871267-2d8a-41d5-b03a-be3d557c5734"], "illustration_id": "daf9c520-0f97-4306-9a5d-17f2cad6b80b", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 18378, "penny_rank": 2920, "prices": {"usd": "0.08", "usd_foil": "0.57", "usd_etched": null, "eur": "0.02", "eur_foil": "0.40", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=205050", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Hornet+Sting&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Hornet+Sting&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Hornet+Sting"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/35637?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Hornet+Sting&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/37442?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "9917cf32-0236-4463-9b1d-e8193754ff97", "oracle_id": "06118cec-ae63-4720-988d-df9cc15ccfab", "multiverse_ids": [29776], "mtgo_id": 16623, "mtgo_foil_id": 16624, "tcgplayer_id": 9519, "cardmarket_id": 2656, "name": "Howling Gale", "lang": "en", "released_at": "2001-10-01", "uri": "https://api.scryfall.com/cards/9917cf32-0236-4463-9b1d-e8193754ff97", "scryfall_uri": "https://scryfall.com/card/ody/244/howling-gale?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/9/9/9917cf32-0236-4463-9b1d-e8193754ff97.jpg?1562923428", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/9/9917cf32-0236-4463-9b1d-e8193754ff97.jpg?1562923428", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/9/9/9917cf32-0236-4463-9b1d-e8193754ff97.jpg?1562923428", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/9/9/9917cf32-0236-4463-9b1d-e8193754ff97.png?1562923428", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/9/9917cf32-0236-4463-9b1d-e8193754ff97.jpg?1562923428", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/9/9/9917cf32-0236-4463-9b1d-e8193754ff97.jpg?1562923428"}, "mana_cost": "{1}{G}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Howling Gale deals 1 damage to each creature with flying and each player.\nFlashback {1}{G} (You may cast this card from your graveyard for its flashback cost. Then exile it.)", "colors": ["G"], "color_identity": ["G"], "keywords": ["Flashback"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "b0d90d2d-494a-4224-bfa0-36ce5ee281b1", "set": "ody", "set_name": "Odyssey", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/b0d90d2d-494a-4224-bfa0-36ce5ee281b1", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aody&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ody?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/9917cf32-0236-4463-9b1d-e8193754ff97/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A06118cec-ae63-4720-988d-df9cc15ccfab&unique=prints", "collector_number": "244", "digital": false, "rarity": "uncommon", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Greg Staples", "artist_ids": ["93d65564-bf00-447b-8406-e2031f03b6b1"], "illustration_id": "b7f4c912-78e4-44ad-b9ea-d28edf2ea214", "border_color": "black", "frame": "1997", "frame_effects": ["tombstone"], "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 19760, "prices": {"usd": "0.13", "usd_foil": "1.29", "usd_etched": null, "eur": "0.02", "eur_foil": "0.50", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=29776", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Howling+Gale&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Howling+Gale&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Howling+Gale"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/9519?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Howling+Gale&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/16623?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "4ca23676-f36f-4266-ba4f-5e9ebf3adb57", "oracle_id": "a2c00788-14e7-4ab5-8c71-2a176621a177", "multiverse_ids": [423751], "mtgo_id": 62739, "mtgo_foil_id": 62740, "tcgplayer_id": 126348, "cardmarket_id": 294769, "name": "Hungry Flames", "lang": "en", "released_at": "2017-01-20", "uri": "https://api.scryfall.com/cards/4ca23676-f36f-4266-ba4f-5e9ebf3adb57", "scryfall_uri": "https://scryfall.com/card/aer/84/hungry-flames?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/4/c/4ca23676-f36f-4266-ba4f-5e9ebf3adb57.jpg?1592419490", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/c/4ca23676-f36f-4266-ba4f-5e9ebf3adb57.jpg?1592419490", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/4/c/4ca23676-f36f-4266-ba4f-5e9ebf3adb57.jpg?1592419490", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/4/c/4ca23676-f36f-4266-ba4f-5e9ebf3adb57.png?1592419490", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/c/4ca23676-f36f-4266-ba4f-5e9ebf3adb57.jpg?1592419490", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/4/c/4ca23676-f36f-4266-ba4f-5e9ebf3adb57.jpg?1592419490"}, "mana_cost": "{2}{R}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Hungry Flames deals 3 damage to target creature and 2 damage to target player or planeswalker.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "a4a0db50-8826-4e73-833c-3fd934375f96", "set": "aer", "set_name": "Aether Revolt", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/a4a0db50-8826-4e73-833c-3fd934375f96", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aaer&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/aer?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/4ca23676-f36f-4266-ba4f-5e9ebf3adb57/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aa2c00788-14e7-4ab5-8c71-2a176621a177&unique=prints", "collector_number": "84", "digital": false, "rarity": "uncommon", "flavor_text": "In the hold of the *Heart of Kiran*, Chandra answered Dovin Baan's sabotage with an explosive retort.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Izzy", "artist_ids": ["2c3d2473-ff5d-4309-8194-e0b2def2ab65"], "illustration_id": "5afcf6ca-f2c3-4207-83d7-bc65ab5610f8", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 13967, "penny_rank": 4903, "prices": {"usd": "0.04", "usd_foil": "0.25", "usd_etched": null, "eur": "0.15", "eur_foil": "0.15", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=423751", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Hungry+Flames&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Hungry+Flames&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Hungry+Flames"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/126348?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Hungry+Flames&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/62739?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "f0526077-79b6-40ae-8178-8b97c33a53fb", "oracle_id": "9c021685-4017-49c7-9f58-2ae0243361a0", "multiverse_ids": [10844], "mtgo_id": 16010, "mtgo_foil_id": 16011, "tcgplayer_id": 2951, "cardmarket_id": 3014, "name": "Hurricane", "lang": "en", "released_at": "2001-04-11", "uri": "https://api.scryfall.com/cards/f0526077-79b6-40ae-8178-8b97c33a53fb", "scryfall_uri": "https://scryfall.com/card/7ed/252/hurricane?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/f/0/f0526077-79b6-40ae-8178-8b97c33a53fb.jpg?1562250875", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/0/f0526077-79b6-40ae-8178-8b97c33a53fb.jpg?1562250875", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/f/0/f0526077-79b6-40ae-8178-8b97c33a53fb.jpg?1562250875", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/f/0/f0526077-79b6-40ae-8178-8b97c33a53fb.png?1562250875", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/0/f0526077-79b6-40ae-8178-8b97c33a53fb.jpg?1562250875", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/f/0/f0526077-79b6-40ae-8178-8b97c33a53fb.jpg?1562250875"}, "mana_cost": "{X}{G}", "cmc": 1.0, "type_line": "Sorcery", "oracle_text": "Hurricane deals X damage to each creature with flying and each player.", "colors": ["G"], "color_identity": ["G"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "230f38aa-9511-4db8-a3aa-aeddbc3f7bb9", "set": "7ed", "set_name": "Seventh Edition", "set_type": "core", "set_uri": "https://api.scryfall.com/sets/230f38aa-9511-4db8-a3aa-aeddbc3f7bb9", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3A7ed&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/7ed?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/f0526077-79b6-40ae-8178-8b97c33a53fb/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A9c021685-4017-49c7-9f58-2ae0243361a0&unique=prints", "collector_number": "252", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "John Howe", "artist_ids": ["040fab39-e3db-4d09-9b2d-214a4e40c6fa"], "illustration_id": "3bc80d3e-237e-479b-a55c-a503529016ef", "border_color": "white", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 5205, "penny_rank": 3401, "prices": {"usd": "0.27", "usd_foil": "35.90", "usd_etched": null, "eur": "0.25", "eur_foil": "65.25", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=10844", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Hurricane&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Hurricane&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Hurricane"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/2951?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Hurricane&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/16010?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "6b4dd722-4729-444a-9d81-e2e93317fbd5", "oracle_id": "9c021685-4017-49c7-9f58-2ae0243361a0", "multiverse_ids": [6640], "tcgplayer_id": 153, "cardmarket_id": 9889, "name": "Hurricane", "lang": "en", "released_at": "1998-06-24", "uri": "https://api.scryfall.com/cards/6b4dd722-4729-444a-9d81-e2e93317fbd5", "scryfall_uri": "https://scryfall.com/card/p02/129/hurricane?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/6/b/6b4dd722-4729-444a-9d81-e2e93317fbd5.jpg?1562920277", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/b/6b4dd722-4729-444a-9d81-e2e93317fbd5.jpg?1562920277", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/6/b/6b4dd722-4729-444a-9d81-e2e93317fbd5.jpg?1562920277", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/6/b/6b4dd722-4729-444a-9d81-e2e93317fbd5.png?1562920277", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/b/6b4dd722-4729-444a-9d81-e2e93317fbd5.jpg?1562920277", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/6/b/6b4dd722-4729-444a-9d81-e2e93317fbd5.jpg?1562920277"}, "mana_cost": "{X}{G}", "cmc": 1.0, "type_line": "Sorcery", "oracle_text": "Hurricane deals X damage to each creature with flying and each player.", "colors": ["G"], "color_identity": ["G"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "ac67f18a-4f0e-407e-bab1-a9fe4f659565", "set": "p02", "set_name": "Portal Second Age", "set_type": "starter", "set_uri": "https://api.scryfall.com/sets/ac67f18a-4f0e-407e-bab1-a9fe4f659565", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ap02&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/p02?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/6b4dd722-4729-444a-9d81-e2e93317fbd5/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A9c021685-4017-49c7-9f58-2ae0243361a0&unique=prints", "collector_number": "129", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Rob Alexander", "artist_ids": ["35906871-6c78-4ab2-9ed1-e6792c8efb74"], "illustration_id": "0b611468-9fe7-41f3-b7f0-b0bace6825e3", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 5205, "penny_rank": 3401, "prices": {"usd": "0.87", "usd_foil": null, "usd_etched": null, "eur": "0.62", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=6640", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Hurricane&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Hurricane&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Hurricane"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/153?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Hurricane&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Hurricane&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "7b97904e-80ba-4d65-808a-a528200430f8", "oracle_id": "9c021685-4017-49c7-9f58-2ae0243361a0", "multiverse_ids": [4301], "tcgplayer_id": 699, "cardmarket_id": 10080, "name": "Hurricane", "lang": "en", "released_at": "1997-05-01", "uri": "https://api.scryfall.com/cards/7b97904e-80ba-4d65-808a-a528200430f8", "scryfall_uri": "https://scryfall.com/card/por/170/hurricane?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/7/b/7b97904e-80ba-4d65-808a-a528200430f8.jpg?1562446872", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/b/7b97904e-80ba-4d65-808a-a528200430f8.jpg?1562446872", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/7/b/7b97904e-80ba-4d65-808a-a528200430f8.jpg?1562446872", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/7/b/7b97904e-80ba-4d65-808a-a528200430f8.png?1562446872", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/b/7b97904e-80ba-4d65-808a-a528200430f8.jpg?1562446872", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/7/b/7b97904e-80ba-4d65-808a-a528200430f8.jpg?1562446872"}, "mana_cost": "{X}{G}", "cmc": 1.0, "type_line": "Sorcery", "oracle_text": "Hurricane deals X damage to each creature with flying and each player.", "colors": ["G"], "color_identity": ["G"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "478c47df-5058-4ce6-830e-7e80732b2ca9", "set": "por", "set_name": "Portal", "set_type": "starter", "set_uri": "https://api.scryfall.com/sets/478c47df-5058-4ce6-830e-7e80732b2ca9", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Apor&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/por?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/7b97904e-80ba-4d65-808a-a528200430f8/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A9c021685-4017-49c7-9f58-2ae0243361a0&unique=prints", "collector_number": "170", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Andrew Robinson", "artist_ids": ["cb577db7-7f47-4f78-8682-6eaef8a77bd1"], "illustration_id": "b2022af8-4078-4075-9e76-48cbc6c054f4", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 5205, "penny_rank": 3401, "prices": {"usd": "0.74", "usd_foil": null, "usd_etched": null, "eur": "1.45", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=4301", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Hurricane&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Hurricane&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Hurricane"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/699?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Hurricane&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Hurricane&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "a8cc6db7-1f40-40e3-a7ea-92f1d05e2e3d", "oracle_id": "9c021685-4017-49c7-9f58-2ae0243361a0", "multiverse_ids": [2573], "tcgplayer_id": 4725, "cardmarket_id": 6349, "name": "Hurricane", "lang": "en", "released_at": "1995-06-03", "uri": "https://api.scryfall.com/cards/a8cc6db7-1f40-40e3-a7ea-92f1d05e2e3d", "scryfall_uri": "https://scryfall.com/card/ice/249/hurricane?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/a/8/a8cc6db7-1f40-40e3-a7ea-92f1d05e2e3d.jpg?1562926538", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/8/a8cc6db7-1f40-40e3-a7ea-92f1d05e2e3d.jpg?1562926538", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/a/8/a8cc6db7-1f40-40e3-a7ea-92f1d05e2e3d.jpg?1562926538", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/a/8/a8cc6db7-1f40-40e3-a7ea-92f1d05e2e3d.png?1562926538", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/8/a8cc6db7-1f40-40e3-a7ea-92f1d05e2e3d.jpg?1562926538", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/a/8/a8cc6db7-1f40-40e3-a7ea-92f1d05e2e3d.jpg?1562926538"}, "mana_cost": "{X}{G}", "cmc": 1.0, "type_line": "Sorcery", "oracle_text": "Hurricane deals X damage to each creature with flying and each player.", "colors": ["G"], "color_identity": ["G"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "b0e08eea-5c01-4406-a6e2-dcd09c5e5b67", "set": "ice", "set_name": "Ice Age", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/b0e08eea-5c01-4406-a6e2-dcd09c5e5b67", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aice&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ice?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/a8cc6db7-1f40-40e3-a7ea-92f1d05e2e3d/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A9c021685-4017-49c7-9f58-2ae0243361a0&unique=prints", "collector_number": "249", "digital": false, "rarity": "uncommon", "flavor_text": "\"This was quite possibly the least pleasant occurrence on the entire expedition.\"\n\u2014Disa the Restless, journal entry", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Cornelius Brudi", "artist_ids": ["1dac5a8b-ce8d-43f0-95ee-2180a4502344"], "illustration_id": "e1b57f5e-2ccf-48fd-878a-7dd0a07c296f", "border_color": "black", "frame": "1993", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 5205, "penny_rank": 3401, "prices": {"usd": "0.25", "usd_foil": null, "usd_etched": null, "eur": "0.39", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=2573", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Hurricane&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Hurricane&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Hurricane"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/4725?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Hurricane&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Hurricane&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "52f5a19f-16e4-4d35-89e1-969ac8202f88", "oracle_id": "9c021685-4017-49c7-9f58-2ae0243361a0", "multiverse_ids": [156], "tcgplayer_id": 1143, "cardmarket_id": 5342, "name": "Hurricane", "lang": "en", "released_at": "1993-08-05", "uri": "https://api.scryfall.com/cards/52f5a19f-16e4-4d35-89e1-969ac8202f88", "scryfall_uri": "https://scryfall.com/card/lea/200/hurricane?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/5/2/52f5a19f-16e4-4d35-89e1-969ac8202f88.jpg?1559591426", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/2/52f5a19f-16e4-4d35-89e1-969ac8202f88.jpg?1559591426", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/5/2/52f5a19f-16e4-4d35-89e1-969ac8202f88.jpg?1559591426", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/5/2/52f5a19f-16e4-4d35-89e1-969ac8202f88.png?1559591426", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/2/52f5a19f-16e4-4d35-89e1-969ac8202f88.jpg?1559591426", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/5/2/52f5a19f-16e4-4d35-89e1-969ac8202f88.jpg?1559591426"}, "mana_cost": "{X}{G}", "cmc": 1.0, "type_line": "Sorcery", "oracle_text": "Hurricane deals X damage to each creature with flying and each player.", "colors": ["G"], "color_identity": ["G"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "legal", "premodern": "legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "288bd996-960e-448b-a187-9504c1930c2c", "set": "lea", "set_name": "Limited Edition Alpha", "set_type": "core", "set_uri": "https://api.scryfall.com/sets/288bd996-960e-448b-a187-9504c1930c2c", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Alea&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/lea?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/52f5a19f-16e4-4d35-89e1-969ac8202f88/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A9c021685-4017-49c7-9f58-2ae0243361a0&unique=prints", "collector_number": "200", "digital": false, "rarity": "uncommon", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Dameon Willich", "artist_ids": ["606a37b0-9d2d-477b-b679-100bc30b46b3"], "illustration_id": "6f2e014e-7806-44fa-b98a-f6bbe813df0d", "border_color": "black", "frame": "1993", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 5205, "penny_rank": 3401, "prices": {"usd": "349.00", "usd_foil": null, "usd_etched": null, "eur": "264.98", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=156", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Hurricane&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Hurricane&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Hurricane"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/1143?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Hurricane&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Hurricane&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "14b4dd4d-c617-4603-8a87-761ec6fc6883", "oracle_id": "8c0a6ac1-b1cc-405a-95fb-f06b7fecbb54", "multiverse_ids": [2458], "tcgplayer_id": 4732, "cardmarket_id": 6234, "name": "Icequake", "lang": "en", "released_at": "1995-06-03", "uri": "https://api.scryfall.com/cards/14b4dd4d-c617-4603-8a87-761ec6fc6883", "scryfall_uri": "https://scryfall.com/card/ice/134/icequake?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/1/4/14b4dd4d-c617-4603-8a87-761ec6fc6883.jpg?1562898923", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/4/14b4dd4d-c617-4603-8a87-761ec6fc6883.jpg?1562898923", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/1/4/14b4dd4d-c617-4603-8a87-761ec6fc6883.jpg?1562898923", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/1/4/14b4dd4d-c617-4603-8a87-761ec6fc6883.png?1562898923", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/4/14b4dd4d-c617-4603-8a87-761ec6fc6883.jpg?1562898923", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/1/4/14b4dd4d-c617-4603-8a87-761ec6fc6883.jpg?1562898923"}, "mana_cost": "{1}{B}{B}", "cmc": 3.0, "type_line": "Sorcery", "oracle_text": "Destroy target land. If that land was a snow land, Icequake deals 1 damage to that land's controller.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "b0e08eea-5c01-4406-a6e2-dcd09c5e5b67", "set": "ice", "set_name": "Ice Age", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/b0e08eea-5c01-4406-a6e2-dcd09c5e5b67", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aice&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ice?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/14b4dd4d-c617-4603-8a87-761ec6fc6883/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A8c0a6ac1-b1cc-405a-95fb-f06b7fecbb54&unique=prints", "collector_number": "134", "digital": false, "rarity": "uncommon", "flavor_text": "\"When the earth shakes, and their animals are swallowed up by the ground, perhaps they will think twice before attacking again.\"\n\u2014Lim-D\u00fbl, the Necromancer", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Richard Kane Ferguson", "artist_ids": ["191620ed-2361-444e-96a6-1fe7ce32ef3b"], "illustration_id": "fa40a898-d6cd-47c2-9039-9c85c065a2df", "border_color": "black", "frame": "1993", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 17801, "prices": {"usd": "0.45", "usd_foil": null, "usd_etched": null, "eur": "0.95", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=2458", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Icequake&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Icequake&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Icequake"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/4732?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Icequake&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Icequake&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "5781ad7b-dc1b-4cc1-9e72-6e714b9ba1de", "oracle_id": "2e31af8f-5e94-4888-857d-911253eac2cd", "multiverse_ids": [513584], "mtgo_id": 88691, "arena_id": 76500, "tcgplayer_id": 235665, "cardmarket_id": 557493, "name": "Igneous Inspiration", "lang": "en", "released_at": "2021-04-23", "uri": "https://api.scryfall.com/cards/5781ad7b-dc1b-4cc1-9e72-6e714b9ba1de", "scryfall_uri": "https://scryfall.com/card/stx/107/igneous-inspiration?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/5/7/5781ad7b-dc1b-4cc1-9e72-6e714b9ba1de.jpg?1624591976", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/7/5781ad7b-dc1b-4cc1-9e72-6e714b9ba1de.jpg?1624591976", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/5/7/5781ad7b-dc1b-4cc1-9e72-6e714b9ba1de.jpg?1624591976", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/5/7/5781ad7b-dc1b-4cc1-9e72-6e714b9ba1de.png?1624591976", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/7/5781ad7b-dc1b-4cc1-9e72-6e714b9ba1de.jpg?1624591976", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/5/7/5781ad7b-dc1b-4cc1-9e72-6e714b9ba1de.jpg?1624591976"}, "mana_cost": "{2}{R}", "cmc": 3.0, "type_line": "Sorcery", "oracle_text": "Igneous Inspiration deals 3 damage to any target.\nLearn. (You may reveal a Lesson card you own from outside the game and put it into your hand, or discard a card to draw a card.)", "colors": ["R"], "color_identity": ["R"], "keywords": ["Learn"], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "541c3c28-8747-40e5-a231-8e8f33234859", "set": "stx", "set_name": "Strixhaven: School of Mages", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/541c3c28-8747-40e5-a231-8e8f33234859", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Astx&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/stx?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/5781ad7b-dc1b-4cc1-9e72-6e714b9ba1de/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A2e31af8f-5e94-4888-857d-911253eac2cd&unique=prints", "collector_number": "107", "digital": false, "rarity": "uncommon", "flavor_text": "Prismari fosters a burning need to create.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "PINDURSKI", "artist_ids": ["f333a7f0-7330-40e9-8c58-667eea2f0f60"], "illustration_id": "a7f37023-fecb-45de-9e47-9c968c1f8dcf", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 15824, "penny_rank": 5238, "preview": {"source": "Bloody", "source_uri": "https://twitter.com/Bloody/status/1376927573763096578", "previewed_at": "2021-03-30"}, "prices": {"usd": "0.06", "usd_foil": "0.12", "usd_etched": null, "eur": "0.03", "eur_foil": "0.15", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=513584", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Igneous+Inspiration&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Igneous+Inspiration&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Igneous+Inspiration"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/235665?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Igneous+Inspiration&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/88691?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "ceef2761-7301-42de-8f54-49b8cd1e457b", "oracle_id": "f944c245-08ff-41a8-bdfc-7d21a6a63eae", "multiverse_ids": [26447], "mtgo_id": 16082, "mtgo_foil_id": 16083, "tcgplayer_id": 7969, "cardmarket_id": 3175, "name": "Illuminate", "lang": "en", "released_at": "2001-06-04", "uri": "https://api.scryfall.com/cards/ceef2761-7301-42de-8f54-49b8cd1e457b", "scryfall_uri": "https://scryfall.com/card/apc/63/illuminate?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/c/e/ceef2761-7301-42de-8f54-49b8cd1e457b.jpg?1562943833", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/e/ceef2761-7301-42de-8f54-49b8cd1e457b.jpg?1562943833", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/c/e/ceef2761-7301-42de-8f54-49b8cd1e457b.jpg?1562943833", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/c/e/ceef2761-7301-42de-8f54-49b8cd1e457b.png?1562943833", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/e/ceef2761-7301-42de-8f54-49b8cd1e457b.jpg?1562943833", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/c/e/ceef2761-7301-42de-8f54-49b8cd1e457b.jpg?1562943833"}, "mana_cost": "{X}{R}", "cmc": 1.0, "type_line": "Sorcery", "oracle_text": "Kicker {2}{R} and/or {3}{U} (You may pay an additional {2}{R} and/or {3}{U} as you cast this spell.)\nIlluminate deals X damage to target creature. If this spell was kicked with its {2}{R} kicker, it deals X damage to that creature's controller. If this spell was kicked with its {3}{U} kicker, you draw X cards.", "colors": ["R"], "color_identity": ["R", "U"], "keywords": ["Kicker"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "e4e00913-d08d-4899-86ea-5cf631e09ce0", "set": "apc", "set_name": "Apocalypse", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/e4e00913-d08d-4899-86ea-5cf631e09ce0", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aapc&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/apc?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/ceef2761-7301-42de-8f54-49b8cd1e457b/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Af944c245-08ff-41a8-bdfc-7d21a6a63eae&unique=prints", "collector_number": "63", "digital": false, "rarity": "uncommon", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Christopher Moeller", "artist_ids": ["21e10012-06ae-44f2-b38d-3824dd2e73d4"], "illustration_id": "93e5a43a-8790-4747-9616-8f209141489c", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 18038, "penny_rank": 13148, "prices": {"usd": "0.15", "usd_foil": "1.35", "usd_etched": null, "eur": "0.19", "eur_foil": "1.44", "tix": "0.09"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=26447", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Illuminate&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Illuminate&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Illuminate"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/7969?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Illuminate&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/16082?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "29d5fd00-c616-4079-a91e-4da0bcaf9120", "oracle_id": "fa5dad0b-8e23-4b88-b383-849f7318e01f", "multiverse_ids": [527437], "mtgo_id": 91802, "arena_id": 77255, "tcgplayer_id": 243227, "cardmarket_id": 571297, "name": "Improvised Weaponry", "lang": "en", "released_at": "2021-07-23", "uri": "https://api.scryfall.com/cards/29d5fd00-c616-4079-a91e-4da0bcaf9120", "scryfall_uri": "https://scryfall.com/card/afr/150/improvised-weaponry?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/2/9/29d5fd00-c616-4079-a91e-4da0bcaf9120.jpg?1627706453", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/9/29d5fd00-c616-4079-a91e-4da0bcaf9120.jpg?1627706453", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/2/9/29d5fd00-c616-4079-a91e-4da0bcaf9120.jpg?1627706453", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/2/9/29d5fd00-c616-4079-a91e-4da0bcaf9120.png?1627706453", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/9/29d5fd00-c616-4079-a91e-4da0bcaf9120.jpg?1627706453", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/2/9/29d5fd00-c616-4079-a91e-4da0bcaf9120.jpg?1627706453"}, "mana_cost": "{2}{R}", "cmc": 3.0, "type_line": "Sorcery", "oracle_text": "Improvised Weaponry deals 2 damage to any target. Create a Treasure token. (It's an artifact with \"{T}, Sacrifice this artifact: Add one mana of any color.\")", "colors": ["R"], "color_identity": ["R"], "keywords": [], "produced_mana": ["B", "G", "R", "U", "W"], "all_parts": [{"object": "related_card", "id": "29d5fd00-c616-4079-a91e-4da0bcaf9120", "component": "combo_piece", "name": "Improvised Weaponry", "type_line": "Sorcery", "uri": "https://api.scryfall.com/cards/29d5fd00-c616-4079-a91e-4da0bcaf9120"}, {"object": "related_card", "id": "a3a684b7-27e0-4d9e-a064-9e03c6e50c89", "component": "token", "name": "Treasure", "type_line": "Token Artifact \u2014 Treasure", "uri": "https://api.scryfall.com/cards/a3a684b7-27e0-4d9e-a064-9e03c6e50c89"}], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "e1ef87ba-ba92-4573-817f-543b996d2851", "set": "afr", "set_name": "Adventures in the Forgotten Realms", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/e1ef87ba-ba92-4573-817f-543b996d2851", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aafr&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/afr?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/29d5fd00-c616-4079-a91e-4da0bcaf9120/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Afa5dad0b-8e23-4b88-b383-849f7318e01f&unique=prints", "collector_number": "150", "digital": false, "rarity": "common", "flavor_text": "Anything can be a weapon if you swing it hard enough.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Alix Branwyn", "artist_ids": ["4f0a0e38-d74c-4e0b-ad91-fecccb1afa5d"], "illustration_id": "caf5c893-a71b-4949-89f4-d2ad0071574a", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 10028, "preview": {"source": "Pixie Kitten Plays", "source_uri": "https://twitter.com/PKP_Magic/status/1410297259615473666", "previewed_at": "2021-07-01"}, "prices": {"usd": "0.03", "usd_foil": "0.04", "usd_etched": null, "eur": "0.08", "eur_foil": "0.07", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=527437", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Improvised+Weaponry&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Improvised+Weaponry&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Improvised+Weaponry"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/243227?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Improvised+Weaponry&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/91802?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "512367a2-f8f6-4c28-9eb3-8e04d2694e4b", "oracle_id": "d45a4924-daa0-4ac3-afd7-b66f636ce870", "multiverse_ids": [141830], "mtgo_id": 28509, "mtgo_foil_id": 28510, "tcgplayer_id": 15536, "cardmarket_id": 17920, "name": "Incendiary Command", "lang": "en", "released_at": "2007-10-12", "uri": "https://api.scryfall.com/cards/512367a2-f8f6-4c28-9eb3-8e04d2694e4b", "scryfall_uri": "https://scryfall.com/card/lrw/179/incendiary-command?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/5/1/512367a2-f8f6-4c28-9eb3-8e04d2694e4b.jpg?1562348065", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/1/512367a2-f8f6-4c28-9eb3-8e04d2694e4b.jpg?1562348065", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/5/1/512367a2-f8f6-4c28-9eb3-8e04d2694e4b.jpg?1562348065", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/5/1/512367a2-f8f6-4c28-9eb3-8e04d2694e4b.png?1562348065", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/1/512367a2-f8f6-4c28-9eb3-8e04d2694e4b.jpg?1562348065", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/5/1/512367a2-f8f6-4c28-9eb3-8e04d2694e4b.jpg?1562348065"}, "mana_cost": "{3}{R}{R}", "cmc": 5.0, "type_line": "Sorcery", "oracle_text": "Choose two \u2014\n\u2022 Incendiary Command deals 4 damage to target player or planeswalker.\n\u2022 Incendiary Command deals 2 damage to each creature.\n\u2022 Destroy target nonbasic land.\n\u2022 Each player discards all the cards in their hand, then draws that many cards.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "30ec97cb-dca9-4bf4-a98b-310f9d8ceaff", "set": "lrw", "set_name": "Lorwyn", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/30ec97cb-dca9-4bf4-a98b-310f9d8ceaff", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Alrw&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/lrw?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/512367a2-f8f6-4c28-9eb3-8e04d2694e4b/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ad45a4924-daa0-4ac3-afd7-b66f636ce870&unique=prints", "collector_number": "179", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Wayne England", "artist_ids": ["62dc90c0-4bc2-4d42-ad76-59cad9243566"], "illustration_id": "ffe30ed6-5341-4446-9f16-acef7e52e97e", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 3725, "penny_rank": 4921, "prices": {"usd": "2.41", "usd_foil": "10.97", "usd_etched": null, "eur": "0.30", "eur_foil": "0.95", "tix": "0.01"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=141830", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Incendiary+Command&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Incendiary+Command&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Incendiary+Command"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/15536?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Incendiary+Command&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/28509?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "cf464f61-8a7f-493b-a80f-2f2b0ebd8bf6", "oracle_id": "91b2ffe8-155d-4b9f-82dd-868cc895856b", "multiverse_ids": [414432], "mtgo_id": 61208, "mtgo_foil_id": 61209, "tcgplayer_id": 120263, "cardmarket_id": 291008, "name": "Incendiary Flow", "lang": "en", "released_at": "2016-07-22", "uri": "https://api.scryfall.com/cards/cf464f61-8a7f-493b-a80f-2f2b0ebd8bf6", "scryfall_uri": "https://scryfall.com/card/emn/133/incendiary-flow?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/c/f/cf464f61-8a7f-493b-a80f-2f2b0ebd8bf6.jpg?1576384613", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/f/cf464f61-8a7f-493b-a80f-2f2b0ebd8bf6.jpg?1576384613", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/c/f/cf464f61-8a7f-493b-a80f-2f2b0ebd8bf6.jpg?1576384613", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/c/f/cf464f61-8a7f-493b-a80f-2f2b0ebd8bf6.png?1576384613", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/f/cf464f61-8a7f-493b-a80f-2f2b0ebd8bf6.jpg?1576384613", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/c/f/cf464f61-8a7f-493b-a80f-2f2b0ebd8bf6.jpg?1576384613"}, "mana_cost": "{1}{R}", "cmc": 2.0, "type_line": "Sorcery", "oracle_text": "Incendiary Flow deals 3 damage to any target. If a creature dealt damage this way would die this turn, exile it instead.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "5f0e4093-334f-4439-bbb5-a0affafd0ffc", "set": "emn", "set_name": "Eldritch Moon", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/5f0e4093-334f-4439-bbb5-a0affafd0ffc", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aemn&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/emn?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/cf464f61-8a7f-493b-a80f-2f2b0ebd8bf6/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A91b2ffe8-155d-4b9f-82dd-868cc895856b&unique=prints", "collector_number": "133", "digital": false, "rarity": "uncommon", "flavor_text": "\"What's your plan?\" Gideon asked.\n\"Are you serious?\" Chandra replied.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Raymond Swanland", "artist_ids": ["e956bacc-077d-4c12-b6bc-ba798b718af9"], "illustration_id": "64f0231c-d447-4bd8-9cd3-3424e027562e", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 12859, "penny_rank": 670, "prices": {"usd": "0.08", "usd_foil": "0.27", "usd_etched": null, "eur": "0.19", "eur_foil": "0.20", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=414432", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Incendiary+Flow&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Incendiary+Flow&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Incendiary+Flow"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/120263?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Incendiary+Flow&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/61208?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "ae93a313-c265-435f-b745-7b7a7ed6208e", "oracle_id": "91b2ffe8-155d-4b9f-82dd-868cc895856b", "multiverse_ids": [], "tcgplayer_id": 127516, "cardmarket_id": 294571, "name": "Incendiary Flow", "lang": "en", "released_at": "2017-01-01", "uri": "https://api.scryfall.com/cards/ae93a313-c265-435f-b745-7b7a7ed6208e", "scryfall_uri": "https://scryfall.com/card/f17/3/incendiary-flow?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/a/e/ae93a313-c265-435f-b745-7b7a7ed6208e.jpg?1562636873", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/e/ae93a313-c265-435f-b745-7b7a7ed6208e.jpg?1562636873", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/a/e/ae93a313-c265-435f-b745-7b7a7ed6208e.jpg?1562636873", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/a/e/ae93a313-c265-435f-b745-7b7a7ed6208e.png?1562636873", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/e/ae93a313-c265-435f-b745-7b7a7ed6208e.jpg?1562636873", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/a/e/ae93a313-c265-435f-b745-7b7a7ed6208e.jpg?1562636873"}, "mana_cost": "{1}{R}", "cmc": 2.0, "type_line": "Sorcery", "oracle_text": "Incendiary Flow deals 3 damage to any target. If a creature dealt damage this way would die this turn, exile it instead.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": true, "nonfoil": false, "finishes": ["foil"], "oversized": false, "promo": true, "reprint": true, "variation": false, "set_id": "690dae5c-2de4-4071-b77c-19883791f987", "set": "f17", "set_name": "Friday Night Magic 2017", "set_type": "promo", "set_uri": "https://api.scryfall.com/sets/690dae5c-2de4-4071-b77c-19883791f987", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Af17&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/f17?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/ae93a313-c265-435f-b745-7b7a7ed6208e/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A91b2ffe8-155d-4b9f-82dd-868cc895856b&unique=prints", "collector_number": "3", "digital": false, "rarity": "rare", "watermark": "wotc", "flavor_text": "\"What's your plan?\" Gideon asked. \"Are you serious?\" Chandra replied.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Slawomir Maniak", "artist_ids": ["d887bc66-2779-416c-a1ff-d8720242063e"], "illustration_id": "aed6b8c1-e1d2-4b09-b15a-c7d3e02f77e6", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "promo_types": ["tourney", "fnm"], "edhrec_rank": 12859, "penny_rank": 670, "prices": {"usd": null, "usd_foil": "0.18", "usd_etched": null, "eur": null, "eur_foil": "0.25", "tix": null}, "related_uris": {"tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Incendiary+Flow&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Incendiary+Flow&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Incendiary+Flow"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/127516?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Incendiary+Flow&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Incendiary+Flow&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "8503210d-be78-4271-a050-53caa94f735d", "oracle_id": "d8fd7a34-8418-4e98-b79b-119c4348c667", "multiverse_ids": [185818], "mtgo_id": 31568, "mtgo_foil_id": 31569, "tcgplayer_id": 37017, "cardmarket_id": 20004, "name": "Incinerate", "lang": "en", "released_at": "2008-11-07", "uri": "https://api.scryfall.com/cards/8503210d-be78-4271-a050-53caa94f735d", "scryfall_uri": "https://scryfall.com/card/dd2/51/incinerate?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/8/5/8503210d-be78-4271-a050-53caa94f735d.jpg?1562844302", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/5/8503210d-be78-4271-a050-53caa94f735d.jpg?1562844302", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/8/5/8503210d-be78-4271-a050-53caa94f735d.jpg?1562844302", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/8/5/8503210d-be78-4271-a050-53caa94f735d.png?1562844302", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/5/8503210d-be78-4271-a050-53caa94f735d.jpg?1562844302", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/8/5/8503210d-be78-4271-a050-53caa94f735d.jpg?1562844302"}, "mana_cost": "{1}{R}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Incinerate deals 3 damage to any target. A creature dealt damage this way can't be regenerated this turn.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "7161cc1c-adbd-479c-9125-df4c40b0e3ad", "set": "dd2", "set_name": "Duel Decks: Jace vs. Chandra", "set_type": "duel_deck", "set_uri": "https://api.scryfall.com/sets/7161cc1c-adbd-479c-9125-df4c40b0e3ad", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Add2&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/dd2?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/8503210d-be78-4271-a050-53caa94f735d/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ad8fd7a34-8418-4e98-b79b-119c4348c667&unique=prints", "collector_number": "51", "digital": false, "rarity": "common", "flavor_text": "\"Who said there are no assurances in life? I assure you this is going to hurt.\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Steve Prescott", "artist_ids": ["a1139fb8-41f5-4a9e-9a74-f662e1a23b35"], "illustration_id": "3a79ae96-128f-4ece-a9af-aefe2f83099d", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "edhrec_rank": 8662, "penny_rank": 106, "prices": {"usd": "0.30", "usd_foil": null, "usd_etched": null, "eur": "0.49", "eur_foil": null, "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=185818", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Incinerate&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Incinerate&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Incinerate"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/37017?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Incinerate&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/31568?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "723fb62e-735a-4ca6-9d38-f1c3944fe69a", "oracle_id": "d8fd7a34-8418-4e98-b79b-119c4348c667", "multiverse_ids": [134751], "mtgo_id": 27056, "mtgo_foil_id": 27057, "tcgplayer_id": 15174, "cardmarket_id": 16377, "name": "Incinerate", "lang": "en", "released_at": "2007-07-13", "uri": "https://api.scryfall.com/cards/723fb62e-735a-4ca6-9d38-f1c3944fe69a", "scryfall_uri": "https://scryfall.com/card/10e/213/incinerate?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/7/2/723fb62e-735a-4ca6-9d38-f1c3944fe69a.jpg?1562549678", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/2/723fb62e-735a-4ca6-9d38-f1c3944fe69a.jpg?1562549678", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/7/2/723fb62e-735a-4ca6-9d38-f1c3944fe69a.jpg?1562549678", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/7/2/723fb62e-735a-4ca6-9d38-f1c3944fe69a.png?1562549678", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/2/723fb62e-735a-4ca6-9d38-f1c3944fe69a.jpg?1562549678", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/7/2/723fb62e-735a-4ca6-9d38-f1c3944fe69a.jpg?1562549678"}, "mana_cost": "{1}{R}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Incinerate deals 3 damage to any target. A creature dealt damage this way can't be regenerated this turn.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "a66a6124-0d81-488d-b080-91f5ba7fbad0", "set": "10e", "set_name": "Tenth Edition", "set_type": "core", "set_uri": "https://api.scryfall.com/sets/a66a6124-0d81-488d-b080-91f5ba7fbad0", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3A10e&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/10e?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/723fb62e-735a-4ca6-9d38-f1c3944fe69a/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ad8fd7a34-8418-4e98-b79b-119c4348c667&unique=prints", "collector_number": "213", "digital": false, "rarity": "common", "flavor_text": "\"Yes, I think 'toast' is an appropriate description.\"\n\u2014Jaya Ballard, task mage", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Zoltan Boros & Gabor Szikszai", "artist_ids": ["1885e6cb-c827-4896-994e-3d0a027d602f", "44c3877f-8771-43dc-9e40-f4c765f59d2e"], "illustration_id": "020f4c92-3c44-4496-8a8a-f12025cea454", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 8662, "penny_rank": 106, "prices": {"usd": "0.11", "usd_foil": "1.16", "usd_etched": null, "eur": "0.10", "eur_foil": "1.99", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=134751", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Incinerate&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Incinerate&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Incinerate"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/15174?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Incinerate&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/27056?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "aa0f7e1f-bcb5-414f-a2e9-6a158fec2ff5", "oracle_id": "d8fd7a34-8418-4e98-b79b-119c4348c667", "multiverse_ids": [4063], "tcgplayer_id": 2211, "cardmarket_id": 9614, "name": "Incinerate", "lang": "en", "released_at": "1997-03-24", "uri": "https://api.scryfall.com/cards/aa0f7e1f-bcb5-414f-a2e9-6a158fec2ff5", "scryfall_uri": "https://scryfall.com/card/5ed/242/incinerate?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/a/a/aa0f7e1f-bcb5-414f-a2e9-6a158fec2ff5.jpg?1562593262", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/a/aa0f7e1f-bcb5-414f-a2e9-6a158fec2ff5.jpg?1562593262", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/a/a/aa0f7e1f-bcb5-414f-a2e9-6a158fec2ff5.jpg?1562593262", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/a/a/aa0f7e1f-bcb5-414f-a2e9-6a158fec2ff5.png?1562593262", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/a/aa0f7e1f-bcb5-414f-a2e9-6a158fec2ff5.jpg?1562593262", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/a/a/aa0f7e1f-bcb5-414f-a2e9-6a158fec2ff5.jpg?1562593262"}, "mana_cost": "{1}{R}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Incinerate deals 3 damage to any target. A creature dealt damage this way can't be regenerated this turn.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "5afd2f4b-8309-4f45-a2b2-3785018474cb", "set": "5ed", "set_name": "Fifth Edition", "set_type": "core", "set_uri": "https://api.scryfall.com/sets/5afd2f4b-8309-4f45-a2b2-3785018474cb", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3A5ed&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/5ed?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/aa0f7e1f-bcb5-414f-a2e9-6a158fec2ff5/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ad8fd7a34-8418-4e98-b79b-119c4348c667&unique=prints", "collector_number": "242", "digital": false, "rarity": "common", "flavor_text": "\"Yes, I think 'toast' is an appropriate description.\"\n\u2014Jaya Ballard, task mage", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Scott M. Fischer", "artist_ids": ["23b0cf43-3e43-44c6-8329-96446eca5bce"], "illustration_id": "583cf9f8-9906-48c6-85bd-27cdfe43c5ce", "border_color": "white", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 8662, "penny_rank": 106, "prices": {"usd": "0.12", "usd_foil": null, "usd_etched": null, "eur": "0.12", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=4063", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Incinerate&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Incinerate&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Incinerate"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/2211?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Incinerate&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Incinerate&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "409b2be8-5bb6-45e0-ab87-ca73b4e3a396", "oracle_id": "d8fd7a34-8418-4e98-b79b-119c4348c667", "multiverse_ids": [3455], "mtgo_id": 7057, "mtgo_foil_id": 7058, "tcgplayer_id": 5106, "cardmarket_id": 8235, "name": "Incinerate", "lang": "en", "released_at": "1996-10-08", "uri": "https://api.scryfall.com/cards/409b2be8-5bb6-45e0-ab87-ca73b4e3a396", "scryfall_uri": "https://scryfall.com/card/mir/184/incinerate?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/4/0/409b2be8-5bb6-45e0-ab87-ca73b4e3a396.jpg?1562718795", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/0/409b2be8-5bb6-45e0-ab87-ca73b4e3a396.jpg?1562718795", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/4/0/409b2be8-5bb6-45e0-ab87-ca73b4e3a396.jpg?1562718795", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/4/0/409b2be8-5bb6-45e0-ab87-ca73b4e3a396.png?1562718795", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/0/409b2be8-5bb6-45e0-ab87-ca73b4e3a396.jpg?1562718795", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/4/0/409b2be8-5bb6-45e0-ab87-ca73b4e3a396.jpg?1562718795"}, "mana_cost": "{1}{R}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Incinerate deals 3 damage to any target. A creature dealt damage this way can't be regenerated this turn.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "5f06acf3-8123-4a78-b2e7-089b0b775a4a", "set": "mir", "set_name": "Mirage", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/5f06acf3-8123-4a78-b2e7-089b0b775a4a", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Amir&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/mir?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/409b2be8-5bb6-45e0-ab87-ca73b4e3a396/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ad8fd7a34-8418-4e98-b79b-119c4348c667&unique=prints", "collector_number": "184", "digital": false, "rarity": "common", "flavor_text": "\"Never taunt an embermage, 'What are you going to do about it?'\"\n\u2014Akin, seasoned askari", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Brian Sn\u00f5ddy", "artist_ids": ["770b4e16-de76-49ed-949f-84e6d2e06d25"], "illustration_id": "992cfdc1-4d37-4d98-848b-1c81a70789bf", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 8662, "penny_rank": 106, "prices": {"usd": "0.17", "usd_foil": null, "usd_etched": null, "eur": "0.22", "eur_foil": null, "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=3455", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Incinerate&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Incinerate&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Incinerate"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/5106?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Incinerate&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/7057?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "9c3f00af-010d-4485-b8b7-47400d99c496", "oracle_id": "d8fd7a34-8418-4e98-b79b-119c4348c667", "multiverse_ids": [2630], "mtgo_id": 24425, "tcgplayer_id": 4741, "cardmarket_id": 6406, "name": "Incinerate", "lang": "en", "released_at": "1995-06-03", "uri": "https://api.scryfall.com/cards/9c3f00af-010d-4485-b8b7-47400d99c496", "scryfall_uri": "https://scryfall.com/card/ice/194/incinerate?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/9/c/9c3f00af-010d-4485-b8b7-47400d99c496.jpg?1562924091", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/c/9c3f00af-010d-4485-b8b7-47400d99c496.jpg?1562924091", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/9/c/9c3f00af-010d-4485-b8b7-47400d99c496.jpg?1562924091", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/9/c/9c3f00af-010d-4485-b8b7-47400d99c496.png?1562924091", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/c/9c3f00af-010d-4485-b8b7-47400d99c496.jpg?1562924091", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/9/c/9c3f00af-010d-4485-b8b7-47400d99c496.jpg?1562924091"}, "mana_cost": "{1}{R}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Incinerate deals 3 damage to any target. A creature dealt damage this way can't be regenerated this turn.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "b0e08eea-5c01-4406-a6e2-dcd09c5e5b67", "set": "ice", "set_name": "Ice Age", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/b0e08eea-5c01-4406-a6e2-dcd09c5e5b67", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aice&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ice?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/9c3f00af-010d-4485-b8b7-47400d99c496/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ad8fd7a34-8418-4e98-b79b-119c4348c667&unique=prints", "collector_number": "194", "digital": false, "rarity": "common", "flavor_text": "\"Yes, I think 'toast' is an appropriate description.\"\n\u2014Jaya Ballard, Task Mage", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Mark Poole", "artist_ids": ["bfdeaf09-f915-4058-8e8b-bcac3bc43c33"], "illustration_id": "511c5f94-e549-4b11-a550-b7293febde26", "border_color": "black", "frame": "1993", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 8662, "penny_rank": 106, "prices": {"usd": "0.24", "usd_foil": null, "usd_etched": null, "eur": "0.08", "eur_foil": null, "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=2630", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Incinerate&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Incinerate&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Incinerate"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/4741?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Incinerate&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/24425?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "28b0495d-0c3f-4491-8331-4cbabbd6eac5", "oracle_id": "d8fd7a34-8418-4e98-b79b-119c4348c667", "multiverse_ids": [], "tcgplayer_id": 21704, "cardmarket_id": 18988, "name": "Incinerate", "lang": "en", "released_at": "1995-01-01", "uri": "https://api.scryfall.com/cards/28b0495d-0c3f-4491-8331-4cbabbd6eac5", "scryfall_uri": "https://scryfall.com/card/plgm/2/incinerate?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/2/8/28b0495d-0c3f-4491-8331-4cbabbd6eac5.jpg?1561756819", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/8/28b0495d-0c3f-4491-8331-4cbabbd6eac5.jpg?1561756819", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/2/8/28b0495d-0c3f-4491-8331-4cbabbd6eac5.jpg?1561756819", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/2/8/28b0495d-0c3f-4491-8331-4cbabbd6eac5.png?1561756819", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/8/28b0495d-0c3f-4491-8331-4cbabbd6eac5.jpg?1561756819", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/2/8/28b0495d-0c3f-4491-8331-4cbabbd6eac5.jpg?1561756819"}, "mana_cost": "{1}{R}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Incinerate deals 3 damage to any target. A creature dealt damage this way can't be regenerated this turn.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": true, "reprint": true, "variation": false, "set_id": "5b6a6daa-5a80-435c-a534-fd5dd04c5540", "set": "plgm", "set_name": "DCI Legend Membership", "set_type": "promo", "set_uri": "https://api.scryfall.com/sets/5b6a6daa-5a80-435c-a534-fd5dd04c5540", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aplgm&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/plgm?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/28b0495d-0c3f-4491-8331-4cbabbd6eac5/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ad8fd7a34-8418-4e98-b79b-119c4348c667&unique=prints", "collector_number": "2", "digital": false, "rarity": "rare", "flavor_text": "\"Yes, I think 'toast' is an appropriate description.\"\n\u2014Jaya Ballard, Task Mage", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Jock", "artist_ids": ["e0ee5fd3-b2a0-4521-a8af-5418d1e6ff78"], "illustration_id": "ba4c04c6-d44b-4ed1-af76-6f6d7b08e327", "border_color": "black", "frame": "1993", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "promo_types": ["instore"], "edhrec_rank": 8662, "penny_rank": 106, "prices": {"usd": "6.38", "usd_foil": null, "usd_etched": null, "eur": "1.50", "eur_foil": null, "tix": null}, "related_uris": {"tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Incinerate&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Incinerate&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Incinerate"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/21704?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Incinerate&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Incinerate&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "46651efd-0906-4350-a1b8-52e3f8aff45d", "oracle_id": "5fcc057e-e6c2-4e37-a786-9a5ef94926e1", "multiverse_ids": [452857], "mtgo_id": 69587, "arena_id": 68568, "tcgplayer_id": 176686, "cardmarket_id": 364117, "name": "Inescapable Blaze", "lang": "en", "released_at": "2018-10-05", "uri": "https://api.scryfall.com/cards/46651efd-0906-4350-a1b8-52e3f8aff45d", "scryfall_uri": "https://scryfall.com/card/grn/107/inescapable-blaze?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/4/6/46651efd-0906-4350-a1b8-52e3f8aff45d.jpg?1572893201", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/6/46651efd-0906-4350-a1b8-52e3f8aff45d.jpg?1572893201", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/4/6/46651efd-0906-4350-a1b8-52e3f8aff45d.jpg?1572893201", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/4/6/46651efd-0906-4350-a1b8-52e3f8aff45d.png?1572893201", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/6/46651efd-0906-4350-a1b8-52e3f8aff45d.jpg?1572893201", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/4/6/46651efd-0906-4350-a1b8-52e3f8aff45d.jpg?1572893201"}, "mana_cost": "{4}{R}{R}", "cmc": 6.0, "type_line": "Instant", "oracle_text": "This spell can't be countered.\nInescapable Blaze deals 6 damage to any target.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "597c6d4a-8212-4903-a6af-12c4ae9e13f0", "set": "grn", "set_name": "Guilds of Ravnica", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/597c6d4a-8212-4903-a6af-12c4ae9e13f0", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Agrn&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/grn?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/46651efd-0906-4350-a1b8-52e3f8aff45d/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A5fcc057e-e6c2-4e37-a786-9a5ef94926e1&unique=prints", "collector_number": "107", "digital": false, "rarity": "uncommon", "flavor_text": "\"The Izzet are blamed for every little disaster, which is unfair because we only cause most of them.\"\n\u2014Mizzix of the Izmagnus", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Steve Argyle", "artist_ids": ["a44ddda4-5331-4f83-aac9-3e00ed36bd7b"], "illustration_id": "786a0ad2-0082-4d99-beee-07865a64df07", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 13934, "penny_rank": 8284, "prices": {"usd": "0.06", "usd_foil": "0.41", "usd_etched": null, "eur": "0.10", "eur_foil": "0.50", "tix": "0.04"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=452857", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Inescapable+Blaze&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Inescapable+Blaze&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Inescapable+Blaze"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/176686?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Inescapable+Blaze&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/69587?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "e411b7b5-ab91-410a-af6d-b3a21a8e3b70", "oracle_id": "69e2df4e-c7f3-4c3a-be5b-1c4afb29cead", "multiverse_ids": [15815], "mtgo_id": 15614, "mtgo_foil_id": 15615, "tcgplayer_id": 2954, "cardmarket_id": 2960, "name": "Inferno", "lang": "en", "released_at": "2001-04-11", "uri": "https://api.scryfall.com/cards/e411b7b5-ab91-410a-af6d-b3a21a8e3b70", "scryfall_uri": "https://scryfall.com/card/7ed/198/inferno?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/e/4/e411b7b5-ab91-410a-af6d-b3a21a8e3b70.jpg?1562249896", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/4/e411b7b5-ab91-410a-af6d-b3a21a8e3b70.jpg?1562249896", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/e/4/e411b7b5-ab91-410a-af6d-b3a21a8e3b70.jpg?1562249896", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/e/4/e411b7b5-ab91-410a-af6d-b3a21a8e3b70.png?1562249896", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/4/e411b7b5-ab91-410a-af6d-b3a21a8e3b70.jpg?1562249896", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/e/4/e411b7b5-ab91-410a-af6d-b3a21a8e3b70.jpg?1562249896"}, "mana_cost": "{5}{R}{R}", "cmc": 7.0, "type_line": "Instant", "oracle_text": "Inferno deals 6 damage to each creature and each player.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "230f38aa-9511-4db8-a3aa-aeddbc3f7bb9", "set": "7ed", "set_name": "Seventh Edition", "set_type": "core", "set_uri": "https://api.scryfall.com/sets/230f38aa-9511-4db8-a3aa-aeddbc3f7bb9", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3A7ed&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/7ed?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/e411b7b5-ab91-410a-af6d-b3a21a8e3b70/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A69e2df4e-c7f3-4c3a-be5b-1c4afb29cead&unique=prints", "collector_number": "198", "digital": false, "rarity": "rare", "flavor_text": "\"Some have said there is no subtlety to destruction. You know what? They're dead.\"\n\u2014Wandering mage", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Don Hazeltine", "artist_ids": ["b4117364-73af-47e5-8cf0-901eeea09e01"], "illustration_id": "a102dcb2-34d7-40d9-a303-e93ad3155171", "border_color": "white", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 10782, "penny_rank": 10258, "prices": {"usd": "0.32", "usd_foil": null, "usd_etched": null, "eur": "0.30", "eur_foil": "59.57", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=15815", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Inferno&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Inferno&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Inferno"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/2954?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Inferno&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/15614?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "68d04a75-647f-400f-b0dc-c4544f7db2d4", "oracle_id": "69e2df4e-c7f3-4c3a-be5b-1c4afb29cead", "multiverse_ids": [4064], "tcgplayer_id": 2212, "cardmarket_id": 9615, "name": "Inferno", "lang": "en", "released_at": "1997-03-24", "uri": "https://api.scryfall.com/cards/68d04a75-647f-400f-b0dc-c4544f7db2d4", "scryfall_uri": "https://scryfall.com/card/5ed/243/inferno?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/6/8/68d04a75-647f-400f-b0dc-c4544f7db2d4.jpg?1562591355", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/8/68d04a75-647f-400f-b0dc-c4544f7db2d4.jpg?1562591355", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/6/8/68d04a75-647f-400f-b0dc-c4544f7db2d4.jpg?1562591355", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/6/8/68d04a75-647f-400f-b0dc-c4544f7db2d4.png?1562591355", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/8/68d04a75-647f-400f-b0dc-c4544f7db2d4.jpg?1562591355", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/6/8/68d04a75-647f-400f-b0dc-c4544f7db2d4.jpg?1562591355"}, "mana_cost": "{5}{R}{R}", "cmc": 7.0, "type_line": "Instant", "oracle_text": "Inferno deals 6 damage to each creature and each player.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "5afd2f4b-8309-4f45-a2b2-3785018474cb", "set": "5ed", "set_name": "Fifth Edition", "set_type": "core", "set_uri": "https://api.scryfall.com/sets/5afd2f4b-8309-4f45-a2b2-3785018474cb", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3A5ed&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/5ed?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/68d04a75-647f-400f-b0dc-c4544f7db2d4/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A69e2df4e-c7f3-4c3a-be5b-1c4afb29cead&unique=prints", "collector_number": "243", "digital": false, "rarity": "rare", "flavor_text": "\"Some have said there is no subtlety to destruction. You know what? They're dead.\"\n\u2014Jaya Ballard, task mage", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Mike Kerr", "artist_ids": ["5a31751b-ee0e-42be-922b-c264ec7a8cfe"], "illustration_id": "8be1cb5e-1ac4-49a2-84cb-fe2bad250369", "border_color": "white", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 10782, "penny_rank": 10258, "prices": {"usd": "0.33", "usd_foil": null, "usd_etched": null, "eur": "0.45", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=4064", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Inferno&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Inferno&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Inferno"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/2212?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Inferno&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Inferno&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "a6b61512-5b24-424c-966f-36b595781e14", "oracle_id": "69e2df4e-c7f3-4c3a-be5b-1c4afb29cead", "multiverse_ids": [1797], "tcgplayer_id": 3533, "cardmarket_id": 7351, "name": "Inferno", "lang": "en", "released_at": "1994-08-01", "uri": "https://api.scryfall.com/cards/a6b61512-5b24-424c-966f-36b595781e14", "scryfall_uri": "https://scryfall.com/card/drk/71/inferno?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/a/6/a6b61512-5b24-424c-966f-36b595781e14.jpg?1562934483", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/6/a6b61512-5b24-424c-966f-36b595781e14.jpg?1562934483", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/a/6/a6b61512-5b24-424c-966f-36b595781e14.jpg?1562934483", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/a/6/a6b61512-5b24-424c-966f-36b595781e14.png?1562934483", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/6/a6b61512-5b24-424c-966f-36b595781e14.jpg?1562934483", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/a/6/a6b61512-5b24-424c-966f-36b595781e14.jpg?1562934483"}, "mana_cost": "{5}{R}{R}", "cmc": 7.0, "type_line": "Instant", "oracle_text": "Inferno deals 6 damage to each creature and each player.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "legal", "premodern": "legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "a21c6836-c435-459a-81e3-22d2da174549", "set": "drk", "set_name": "The Dark", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/a21c6836-c435-459a-81e3-22d2da174549", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Adrk&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/drk?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/a6b61512-5b24-424c-966f-36b595781e14/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A69e2df4e-c7f3-4c3a-be5b-1c4afb29cead&unique=prints", "collector_number": "71", "digital": false, "rarity": "rare", "flavor_text": "\"Any scrap of compassion that still existed in my soul was permanently snuffed out when they cast me out into the flames.\" \u2014Mairsil, called the Pretender", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Randy Asplund-Faith", "artist_ids": ["d2da8270-bbdb-4c49-b84d-bf5a380e8a78"], "illustration_id": "a197d923-8ffd-4063-a70c-48f939f379ff", "border_color": "black", "frame": "1993", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 10782, "penny_rank": 10258, "prices": {"usd": "10.01", "usd_foil": null, "usd_etched": null, "eur": "12.89", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=1797", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Inferno&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Inferno&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Inferno"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/3533?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Inferno&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Inferno&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "3ac1649a-629b-4598-be09-74a57905753f", "oracle_id": "69e2df4e-c7f3-4c3a-be5b-1c4afb29cead", "multiverse_ids": [], "mtgo_id": 62439, "name": "Inferno", "lang": "en", "released_at": "2017-05-31", "uri": "https://api.scryfall.com/cards/3ac1649a-629b-4598-be09-74a57905753f", "scryfall_uri": "https://scryfall.com/card/prm/62439/inferno?utm_source=api", "layout": "normal", "highres_image": false, "image_status": "lowres", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/3/a/3ac1649a-629b-4598-be09-74a57905753f.jpg?1562544107", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/a/3ac1649a-629b-4598-be09-74a57905753f.jpg?1562544107", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/3/a/3ac1649a-629b-4598-be09-74a57905753f.jpg?1562544107", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/3/a/3ac1649a-629b-4598-be09-74a57905753f.png?1562544107", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/a/3ac1649a-629b-4598-be09-74a57905753f.jpg?1562544107", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/3/a/3ac1649a-629b-4598-be09-74a57905753f.jpg?1562544107"}, "mana_cost": "{5}{R}{R}", "cmc": 7.0, "type_line": "Instant", "oracle_text": "Inferno deals 6 damage to each creature and each player.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["mtgo"], "reserved": false, "foil": true, "nonfoil": false, "finishes": ["foil"], "oversized": false, "promo": true, "reprint": true, "variation": false, "set_id": "638940fb-6be9-4be3-b83f-68d3902fbbe5", "set": "prm", "set_name": "Magic Online Promos", "set_type": "promo", "set_uri": "https://api.scryfall.com/sets/638940fb-6be9-4be3-b83f-68d3902fbbe5", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aprm&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/prm?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/3ac1649a-629b-4598-be09-74a57905753f/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A69e2df4e-c7f3-4c3a-be5b-1c4afb29cead&unique=prints", "collector_number": "62439", "digital": true, "rarity": "rare", "flavor_text": "\"Some have said there is no subtlety to destruction. You know what? They're dead.\"\n\u2014Jaya Ballard, task mage", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Vance Kovacs", "artist_ids": ["b5516011-4722-4fc8-8542-102cecc52b71"], "illustration_id": "fde7a034-5cdd-4dfa-8ffa-1923f49b8b75", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "edhrec_rank": 10782, "penny_rank": 10258, "prices": {"usd": null, "usd_foil": null, "usd_etched": null, "eur": null, "eur_foil": null, "tix": null}, "related_uris": {"tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Inferno&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Inferno&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Inferno"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/search/magic/product?productLineName=magic&q=Inferno&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall&view=grid", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Inferno&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/62439?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "0c6a43fe-369d-4943-a825-570eb3cceba4", "oracle_id": "50c13b38-9865-4c60-b2df-3fd6e3a9c6a2", "multiverse_ids": [430788], "mtgo_id": 64682, "mtgo_foil_id": 64683, "tcgplayer_id": 134874, "cardmarket_id": 298547, "name": "Inferno Jet", "lang": "en", "released_at": "2017-07-14", "uri": "https://api.scryfall.com/cards/0c6a43fe-369d-4943-a825-570eb3cceba4", "scryfall_uri": "https://scryfall.com/card/hou/99/inferno-jet?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/0/c/0c6a43fe-369d-4943-a825-570eb3cceba4.jpg?1562788752", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/c/0c6a43fe-369d-4943-a825-570eb3cceba4.jpg?1562788752", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/0/c/0c6a43fe-369d-4943-a825-570eb3cceba4.jpg?1562788752", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/0/c/0c6a43fe-369d-4943-a825-570eb3cceba4.png?1562788752", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/c/0c6a43fe-369d-4943-a825-570eb3cceba4.jpg?1562788752", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/0/c/0c6a43fe-369d-4943-a825-570eb3cceba4.jpg?1562788752"}, "mana_cost": "{5}{R}", "cmc": 6.0, "type_line": "Sorcery", "oracle_text": "Inferno Jet deals 6 damage to target opponent or planeswalker.\nCycling {2} ({2}, Discard this card: Draw a card.)", "colors": ["R"], "color_identity": ["R"], "keywords": ["Cycling"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "65ff168b-bb94-47a5-a8f9-4ec6c213e768", "set": "hou", "set_name": "Hour of Devastation", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/65ff168b-bb94-47a5-a8f9-4ec6c213e768", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ahou&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/hou?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/0c6a43fe-369d-4943-a825-570eb3cceba4/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A50c13b38-9865-4c60-b2df-3fd6e3a9c6a2&unique=prints", "collector_number": "99", "digital": false, "rarity": "uncommon", "flavor_text": "\"When the whole world is crazy, it's important to find something you can rely on.\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Jakub Kasper", "artist_ids": ["36901417-ce61-4636-8b77-6db14a9cb68a"], "illustration_id": "67f3186d-bcb7-46a9-af91-0eeec2f05bca", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 16286, "penny_rank": 9252, "prices": {"usd": "0.10", "usd_foil": "0.24", "usd_etched": null, "eur": "0.02", "eur_foil": "0.10", "tix": "0.05"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=430788", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Inferno+Jet&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Inferno+Jet&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Inferno+Jet"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/134874?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Inferno+Jet&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/64682?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "dd64f064-8f05-41ef-b95b-1b723137f846", "oracle_id": "76ca315a-4979-4fda-8d3f-b7f4e5d3a622", "multiverse_ids": [479711], "mtgo_id": 80391, "arena_id": 71258, "tcgplayer_id": 212700, "cardmarket_id": 455373, "name": "Inspired Ultimatum", "lang": "en", "released_at": "2020-04-24", "uri": "https://api.scryfall.com/cards/dd64f064-8f05-41ef-b95b-1b723137f846", "scryfall_uri": "https://scryfall.com/card/iko/191/inspired-ultimatum?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/d/d/dd64f064-8f05-41ef-b95b-1b723137f846.jpg?1591228071", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/d/dd64f064-8f05-41ef-b95b-1b723137f846.jpg?1591228071", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/d/d/dd64f064-8f05-41ef-b95b-1b723137f846.jpg?1591228071", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/d/d/dd64f064-8f05-41ef-b95b-1b723137f846.png?1591228071", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/d/dd64f064-8f05-41ef-b95b-1b723137f846.jpg?1591228071", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/d/d/dd64f064-8f05-41ef-b95b-1b723137f846.jpg?1591228071"}, "mana_cost": "{U}{U}{R}{R}{R}{W}{W}", "cmc": 7.0, "type_line": "Sorcery", "oracle_text": "Target player gains 5 life, Inspired Ultimatum deals 5 damage to any target, then you draw five cards.", "colors": ["R", "U", "W"], "color_identity": ["R", "U", "W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "19feda43-15ab-427e-a0e4-148a4bf2b03a", "set": "iko", "set_name": "Ikoria: Lair of Behemoths", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/19feda43-15ab-427e-a0e4-148a4bf2b03a", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aiko&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/iko?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/dd64f064-8f05-41ef-b95b-1b723137f846/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A76ca315a-4979-4fda-8d3f-b7f4e5d3a622&unique=prints", "collector_number": "191", "digital": false, "rarity": "rare", "flavor_text": "\"Inner peace is wonderful, and worth striving for. Outer peace is much less important.\"\n\u2014Taelya, Lavabrink pyromage", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Tyler Jacobson", "artist_ids": ["522af130-8db4-4b4b-950c-6e2b246339cf"], "illustration_id": "25cd940f-b0c0-4343-9834-fb61b811add2", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 5945, "penny_rank": 3848, "preview": {"source": "846kizuQ", "source_uri": "https://twitter.com/846kizuQ/status/1248237373135060992", "previewed_at": "2020-04-09"}, "prices": {"usd": "0.19", "usd_foil": "0.22", "usd_etched": null, "eur": "0.25", "eur_foil": "0.50", "tix": "0.01"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=479711", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Inspired+Ultimatum&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Inspired+Ultimatum&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Inspired+Ultimatum"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/212700?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Inspired+Ultimatum&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/80391?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "58d8e41a-5990-4ceb-9d41-76632faa7883", "oracle_id": "2037659f-2efe-4321-afaf-961bbec35e9e", "multiverse_ids": [83630], "mtgo_id": 23615, "mtgo_foil_id": 23616, "tcgplayer_id": 13715, "cardmarket_id": 13197, "name": "Invoke the Firemind", "lang": "en", "released_at": "2006-02-03", "uri": "https://api.scryfall.com/cards/58d8e41a-5990-4ceb-9d41-76632faa7883", "scryfall_uri": "https://scryfall.com/card/gpt/118/invoke-the-firemind?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/5/8/58d8e41a-5990-4ceb-9d41-76632faa7883.jpg?1593272700", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/8/58d8e41a-5990-4ceb-9d41-76632faa7883.jpg?1593272700", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/5/8/58d8e41a-5990-4ceb-9d41-76632faa7883.jpg?1593272700", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/5/8/58d8e41a-5990-4ceb-9d41-76632faa7883.png?1593272700", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/8/58d8e41a-5990-4ceb-9d41-76632faa7883.jpg?1593272700", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/5/8/58d8e41a-5990-4ceb-9d41-76632faa7883.jpg?1593272700"}, "mana_cost": "{X}{U}{U}{R}", "cmc": 3.0, "type_line": "Sorcery", "oracle_text": "Choose one \u2014\n\u2022 Draw X cards.\n\u2022 Invoke the Firemind deals X damage to any target.", "colors": ["R", "U"], "color_identity": ["R", "U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "594b4d09-8ce1-494d-bdb2-842c124bd087", "set": "gpt", "set_name": "Guildpact", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/594b4d09-8ce1-494d-bdb2-842c124bd087", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Agpt&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/gpt?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/58d8e41a-5990-4ceb-9d41-76632faa7883/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A2037659f-2efe-4321-afaf-961bbec35e9e&unique=prints", "collector_number": "118", "digital": false, "rarity": "rare", "watermark": "izzet", "flavor_text": "To those in tune with the Firemind, there is no difference between knowledge and flame.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Zoltan Boros & Gabor Szikszai", "artist_ids": ["1885e6cb-c827-4896-994e-3d0a027d602f", "44c3877f-8771-43dc-9e40-f4c765f59d2e"], "illustration_id": "bd6a4909-c73b-4a10-906e-dc69af17993a", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 7629, "penny_rank": 5463, "prices": {"usd": "0.32", "usd_foil": "3.91", "usd_etched": null, "eur": "0.39", "eur_foil": "1.50", "tix": "0.01"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=83630", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Invoke+the+Firemind&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Invoke+the+Firemind&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Invoke+the+Firemind"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/13715?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Invoke+the+Firemind&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/23615?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "f161f7d2-eaa1-4931-93f9-befa8b5df821", "oracle_id": "01da67a5-e3dc-44f4-8a93-513bfa4d8fbc", "multiverse_ids": [452929], "mtgo_id": 69731, "arena_id": 68640, "tcgplayer_id": 176422, "cardmarket_id": 363952, "name": "Ionize", "lang": "en", "released_at": "2018-10-05", "uri": "https://api.scryfall.com/cards/f161f7d2-eaa1-4931-93f9-befa8b5df821", "scryfall_uri": "https://scryfall.com/card/grn/179/ionize?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/f/1/f161f7d2-eaa1-4931-93f9-befa8b5df821.jpg?1572893679", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/1/f161f7d2-eaa1-4931-93f9-befa8b5df821.jpg?1572893679", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/f/1/f161f7d2-eaa1-4931-93f9-befa8b5df821.jpg?1572893679", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/f/1/f161f7d2-eaa1-4931-93f9-befa8b5df821.png?1572893679", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/1/f161f7d2-eaa1-4931-93f9-befa8b5df821.jpg?1572893679", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/f/1/f161f7d2-eaa1-4931-93f9-befa8b5df821.jpg?1572893679"}, "mana_cost": "{1}{U}{R}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Counter target spell. Ionize deals 2 damage to that spell's controller.", "colors": ["R", "U"], "color_identity": ["R", "U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "597c6d4a-8212-4903-a6af-12c4ae9e13f0", "set": "grn", "set_name": "Guilds of Ravnica", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/597c6d4a-8212-4903-a6af-12c4ae9e13f0", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Agrn&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/grn?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/f161f7d2-eaa1-4931-93f9-befa8b5df821/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A01da67a5-e3dc-44f4-8a93-513bfa4d8fbc&unique=prints", "collector_number": "179", "digital": false, "rarity": "rare", "watermark": "izzet", "flavor_text": "\"Countermagic is a simple process of breaking matter into its elementary particles.\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Chase Stone", "artist_ids": ["2d753f61-5f5b-468e-97ea-8e0fdd347340"], "illustration_id": "5035de86-267e-491c-885f-a5188299b730", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 4399, "penny_rank": 3356, "prices": {"usd": "0.26", "usd_foil": "0.99", "usd_etched": null, "eur": "0.34", "eur_foil": "1.39", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=452929", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Ionize&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Ionize&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Ionize"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/176422?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Ionize&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/69731?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "61289196-a56b-4d24-b340-9cf067c77f45", "oracle_id": "a07698f6-5ad5-49a3-9da2-f82d407f5cd7", "multiverse_ids": [338413], "mtgo_id": 46129, "mtgo_foil_id": 46130, "tcgplayer_id": 66311, "cardmarket_id": 258129, "name": "Izzet Charm", "lang": "en", "released_at": "2012-09-07", "uri": "https://api.scryfall.com/cards/61289196-a56b-4d24-b340-9cf067c77f45", "scryfall_uri": "https://scryfall.com/card/ddj/21/izzet-charm?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/6/1/61289196-a56b-4d24-b340-9cf067c77f45.jpg?1592713417", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/1/61289196-a56b-4d24-b340-9cf067c77f45.jpg?1592713417", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/6/1/61289196-a56b-4d24-b340-9cf067c77f45.jpg?1592713417", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/6/1/61289196-a56b-4d24-b340-9cf067c77f45.png?1592713417", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/1/61289196-a56b-4d24-b340-9cf067c77f45.jpg?1592713417", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/6/1/61289196-a56b-4d24-b340-9cf067c77f45.jpg?1592713417"}, "mana_cost": "{U}{R}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Choose one \u2014\n\u2022 Counter target noncreature spell unless its controller pays {2}.\n\u2022 Izzet Charm deals 2 damage to target creature.\n\u2022 Draw two cards, then discard two cards.", "colors": ["R", "U"], "color_identity": ["R", "U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "2dfea68b-b0c4-4f63-ba6c-36c9a6e3030f", "set": "ddj", "set_name": "Duel Decks: Izzet vs. Golgari", "set_type": "duel_deck", "set_uri": "https://api.scryfall.com/sets/2dfea68b-b0c4-4f63-ba6c-36c9a6e3030f", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Addj&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ddj?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/61289196-a56b-4d24-b340-9cf067c77f45/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aa07698f6-5ad5-49a3-9da2-f82d407f5cd7&unique=prints", "collector_number": "21", "digital": false, "rarity": "uncommon", "watermark": "izzet", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Zoltan Boros", "artist_ids": ["1885e6cb-c827-4896-994e-3d0a027d602f"], "illustration_id": "1b8be289-53f7-4fd8-9877-7085486c242d", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "edhrec_rank": 1220, "penny_rank": 304, "prices": {"usd": "0.35", "usd_foil": null, "usd_etched": null, "eur": "0.05", "eur_foil": null, "tix": "0.89"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=338413", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Izzet+Charm&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Izzet+Charm&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Izzet+Charm"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/66311?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Izzet+Charm&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/46129?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "e8e84a97-8e40-42fa-a114-df90e820ede6", "oracle_id": "a07698f6-5ad5-49a3-9da2-f82d407f5cd7", "multiverse_ids": [], "tcgplayer_id": 70766, "cardmarket_id": 262171, "name": "Izzet Charm", "lang": "en", "released_at": "2013-01-01", "uri": "https://api.scryfall.com/cards/e8e84a97-8e40-42fa-a114-df90e820ede6", "scryfall_uri": "https://scryfall.com/card/f13/6/izzet-charm?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/e/8/e8e84a97-8e40-42fa-a114-df90e820ede6.jpg?1562497263", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/8/e8e84a97-8e40-42fa-a114-df90e820ede6.jpg?1562497263", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/e/8/e8e84a97-8e40-42fa-a114-df90e820ede6.jpg?1562497263", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/e/8/e8e84a97-8e40-42fa-a114-df90e820ede6.png?1562497263", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/8/e8e84a97-8e40-42fa-a114-df90e820ede6.jpg?1562497263", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/e/8/e8e84a97-8e40-42fa-a114-df90e820ede6.jpg?1562497263"}, "mana_cost": "{U}{R}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Choose one \u2014\n\u2022 Counter target noncreature spell unless its controller pays {2}.\n\u2022 Izzet Charm deals 2 damage to target creature.\n\u2022 Draw two cards, then discard two cards.", "colors": ["R", "U"], "color_identity": ["R", "U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": true, "nonfoil": false, "finishes": ["foil"], "oversized": false, "promo": true, "reprint": true, "variation": false, "set_id": "4f0f5416-2f39-4339-8b9a-5454d94a4ca6", "set": "f13", "set_name": "Friday Night Magic 2013", "set_type": "promo", "set_uri": "https://api.scryfall.com/sets/4f0f5416-2f39-4339-8b9a-5454d94a4ca6", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Af13&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/f13?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/e8e84a97-8e40-42fa-a114-df90e820ede6/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aa07698f6-5ad5-49a3-9da2-f82d407f5cd7&unique=prints", "collector_number": "6", "digital": false, "rarity": "rare", "watermark": "izzet", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Zoltan Boros", "artist_ids": ["1885e6cb-c827-4896-994e-3d0a027d602f"], "illustration_id": "d6a18e94-d65e-45de-936e-6a065ebd8af4", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "promo_types": ["tourney", "fnm"], "edhrec_rank": 1220, "penny_rank": 304, "prices": {"usd": null, "usd_foil": "1.99", "usd_etched": null, "eur": null, "eur_foil": "1.22", "tix": null}, "related_uris": {"tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Izzet+Charm&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Izzet+Charm&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Izzet+Charm"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/70766?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Izzet+Charm&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Izzet+Charm&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "ca268705-ef04-4bf1-8a5d-866bb3e5bb61", "oracle_id": "2a9a05b4-1910-4f97-a0fe-0f57017f6df0", "multiverse_ids": [386573], "mtgo_id": 54130, "mtgo_foil_id": 54131, "tcgplayer_id": 92968, "cardmarket_id": 269336, "name": "Jeskai Charm", "lang": "en", "released_at": "2014-09-26", "uri": "https://api.scryfall.com/cards/ca268705-ef04-4bf1-8a5d-866bb3e5bb61", "scryfall_uri": "https://scryfall.com/card/ktk/181/jeskai-charm?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/c/a/ca268705-ef04-4bf1-8a5d-866bb3e5bb61.jpg?1562793488", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/a/ca268705-ef04-4bf1-8a5d-866bb3e5bb61.jpg?1562793488", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/c/a/ca268705-ef04-4bf1-8a5d-866bb3e5bb61.jpg?1562793488", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/c/a/ca268705-ef04-4bf1-8a5d-866bb3e5bb61.png?1562793488", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/a/ca268705-ef04-4bf1-8a5d-866bb3e5bb61.jpg?1562793488", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/c/a/ca268705-ef04-4bf1-8a5d-866bb3e5bb61.jpg?1562793488"}, "mana_cost": "{U}{R}{W}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Choose one \u2014\n\u2022 Put target creature on top of its owner's library.\n\u2022 Jeskai Charm deals 4 damage to target opponent or planeswalker.\n\u2022 Creatures you control get +1/+1 and gain lifelink until end of turn.", "colors": ["R", "U", "W"], "color_identity": ["R", "U", "W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "6c7a715c-ded9-449e-89b0-c665773e9c3c", "set": "ktk", "set_name": "Khans of Tarkir", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/6c7a715c-ded9-449e-89b0-c665773e9c3c", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aktk&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ktk?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/ca268705-ef04-4bf1-8a5d-866bb3e5bb61/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A2a9a05b4-1910-4f97-a0fe-0f57017f6df0&unique=prints", "collector_number": "181", "digital": false, "rarity": "uncommon", "watermark": "jeskai", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Mathias Kollros", "artist_ids": ["2ae0dd12-047c-4efb-80d7-bccc3bac5fba"], "illustration_id": "9d1f2b85-59cc-467a-a290-5694f2f2693c", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 7536, "penny_rank": 5335, "prices": {"usd": "0.12", "usd_foil": "0.65", "usd_etched": null, "eur": "0.09", "eur_foil": "0.70", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=386573", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Jeskai+Charm&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Jeskai+Charm&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Jeskai+Charm"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/92968?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Jeskai+Charm&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/54130?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "7a42ef95-92ec-40fe-ab30-a476f012a525", "oracle_id": "daa86c76-aacb-4244-9639-81f758c634b2", "multiverse_ids": [3541], "mtgo_id": 7087, "mtgo_foil_id": 7088, "tcgplayer_id": 5121, "cardmarket_id": 8381, "name": "Kaervek's Purge", "lang": "en", "released_at": "1996-10-08", "uri": "https://api.scryfall.com/cards/7a42ef95-92ec-40fe-ab30-a476f012a525", "scryfall_uri": "https://scryfall.com/card/mir/270/kaerveks-purge?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/7/a/7a42ef95-92ec-40fe-ab30-a476f012a525.jpg?1562720237", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/a/7a42ef95-92ec-40fe-ab30-a476f012a525.jpg?1562720237", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/7/a/7a42ef95-92ec-40fe-ab30-a476f012a525.jpg?1562720237", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/7/a/7a42ef95-92ec-40fe-ab30-a476f012a525.png?1562720237", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/a/7a42ef95-92ec-40fe-ab30-a476f012a525.jpg?1562720237", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/7/a/7a42ef95-92ec-40fe-ab30-a476f012a525.jpg?1562720237"}, "mana_cost": "{X}{B}{R}", "cmc": 2.0, "type_line": "Sorcery", "oracle_text": "Destroy target creature with mana value X. If that creature dies this way, Kaervek's Purge deals damage equal to the creature's power to the creature's controller.", "colors": ["B", "R"], "color_identity": ["B", "R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "5f06acf3-8123-4a78-b2e7-089b0b775a4a", "set": "mir", "set_name": "Mirage", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/5f06acf3-8123-4a78-b2e7-089b0b775a4a", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Amir&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/mir?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/7a42ef95-92ec-40fe-ab30-a476f012a525/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Adaa86c76-aacb-4244-9639-81f758c634b2&unique=prints", "collector_number": "270", "digital": false, "rarity": "uncommon", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Richard Kane Ferguson", "artist_ids": ["191620ed-2361-444e-96a6-1fe7ce32ef3b"], "illustration_id": "fcdfbc78-8f2c-46ff-9095-ca6671720801", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 19310, "prices": {"usd": "0.19", "usd_foil": null, "usd_etched": null, "eur": "0.14", "eur_foil": null, "tix": "0.11"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=3541", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Kaervek%27s+Purge&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Kaervek%27s+Purge&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Kaervek%27s+Purge"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/5121?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Kaervek%27s+Purge&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/7087?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "0a1624ab-e50e-48a3-acf7-457069914616", "oracle_id": "c629feae-084c-452f-9c09-4b9716331498", "multiverse_ids": [3456], "mtgo_id": 7089, "mtgo_foil_id": 7090, "tcgplayer_id": 5122, "cardmarket_id": 8236, "name": "Kaervek's Torch", "lang": "en", "released_at": "1996-10-08", "uri": "https://api.scryfall.com/cards/0a1624ab-e50e-48a3-acf7-457069914616", "scryfall_uri": "https://scryfall.com/card/mir/185/kaerveks-torch?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/0/a/0a1624ab-e50e-48a3-acf7-457069914616.jpg?1562717831", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/a/0a1624ab-e50e-48a3-acf7-457069914616.jpg?1562717831", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/0/a/0a1624ab-e50e-48a3-acf7-457069914616.jpg?1562717831", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/0/a/0a1624ab-e50e-48a3-acf7-457069914616.png?1562717831", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/a/0a1624ab-e50e-48a3-acf7-457069914616.jpg?1562717831", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/0/a/0a1624ab-e50e-48a3-acf7-457069914616.jpg?1562717831"}, "mana_cost": "{X}{R}", "cmc": 1.0, "type_line": "Sorcery", "oracle_text": "As long as Kaervek's Torch is on the stack, spells that target it cost {2} more to cast.\nKaervek's Torch deals X damage to any target.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "5f06acf3-8123-4a78-b2e7-089b0b775a4a", "set": "mir", "set_name": "Mirage", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/5f06acf3-8123-4a78-b2e7-089b0b775a4a", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Amir&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/mir?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/0a1624ab-e50e-48a3-acf7-457069914616/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ac629feae-084c-452f-9c09-4b9716331498&unique=prints", "collector_number": "185", "digital": false, "rarity": "common", "flavor_text": "The pulsing heat of the midday Sun burns in the Lion's eye.\n\u2014Stone inscription, source unknown", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "John Coulthart", "artist_ids": ["55e5567a-7673-418e-8ba2-aee7efd6f94b"], "illustration_id": "304a812b-77d0-4eb4-80f0-3a172ca27c3f", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 12665, "penny_rank": 5240, "prices": {"usd": "0.19", "usd_foil": null, "usd_etched": null, "eur": "0.19", "eur_foil": null, "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=3456", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Kaervek%27s+Torch&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Kaervek%27s+Torch&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Kaervek%27s+Torch"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/5122?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Kaervek%27s+Torch&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/7089?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "a5f07603-fd79-437a-9b12-495fc5a39b68", "oracle_id": "b02bd695-ec7f-47be-b797-e2b4b309cc2a", "multiverse_ids": [522209], "mtgo_id": 90643, "tcgplayer_id": 240307, "cardmarket_id": 566867, "name": "Kaleidoscorch", "lang": "en", "released_at": "2021-06-18", "uri": "https://api.scryfall.com/cards/a5f07603-fd79-437a-9b12-495fc5a39b68", "scryfall_uri": "https://scryfall.com/card/mh2/133/kaleidoscorch?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/a/5/a5f07603-fd79-437a-9b12-495fc5a39b68.jpg?1626096801", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/5/a5f07603-fd79-437a-9b12-495fc5a39b68.jpg?1626096801", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/a/5/a5f07603-fd79-437a-9b12-495fc5a39b68.jpg?1626096801", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/a/5/a5f07603-fd79-437a-9b12-495fc5a39b68.png?1626096801", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/5/a5f07603-fd79-437a-9b12-495fc5a39b68.jpg?1626096801", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/a/5/a5f07603-fd79-437a-9b12-495fc5a39b68.jpg?1626096801"}, "mana_cost": "{1}{R}", "cmc": 2.0, "type_line": "Sorcery", "oracle_text": "Converge \u2014 Kaleidoscorch deals X damage to any target, where X is the number of colors of mana spent to cast this spell.\nFlashback {4}{R} (You may cast this card from your graveyard for its flashback cost. Then exile it.)", "colors": ["R"], "color_identity": ["R"], "keywords": ["Converge", "Flashback"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "c1c7eb8c-f205-40ab-a609-767cb296544e", "set": "mh2", "set_name": "Modern Horizons 2", "set_type": "draft_innovation", "set_uri": "https://api.scryfall.com/sets/c1c7eb8c-f205-40ab-a609-767cb296544e", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Amh2&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/mh2?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/a5f07603-fd79-437a-9b12-495fc5a39b68/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ab02bd695-ec7f-47be-b797-e2b4b309cc2a&unique=prints", "collector_number": "133", "digital": false, "rarity": "uncommon", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Andrew Mar", "artist_ids": ["adad79bf-cd52-456a-b170-740ed8bff0fc"], "illustration_id": "976f19f7-84a9-448f-a8fb-01fbdac88941", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 20426, "penny_rank": 4154, "preview": {"source": "Travis Sowers\n", "source_uri": "https://twitter.com/Semulin/status/1399797862586892288", "previewed_at": "2021-06-01"}, "prices": {"usd": "0.01", "usd_foil": "0.05", "usd_etched": null, "eur": "0.02", "eur_foil": "0.05", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=522209", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Kaleidoscorch&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Kaleidoscorch&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Kaleidoscorch"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/240307?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Kaleidoscorch&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/90643?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "38c55518-7bdf-4a42-ae30-cd6525557a59", "oracle_id": "defa9b92-4b54-4b00-852e-6c5ec4015643", "multiverse_ids": [32229], "mtgo_id": 17245, "mtgo_foil_id": 17246, "tcgplayer_id": 9752, "cardmarket_id": 2371, "name": "Kamahl's Sledge", "lang": "en", "released_at": "2002-02-04", "uri": "https://api.scryfall.com/cards/38c55518-7bdf-4a42-ae30-cd6525557a59", "scryfall_uri": "https://scryfall.com/card/tor/102/kamahls-sledge?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/3/8/38c55518-7bdf-4a42-ae30-cd6525557a59.jpg?1562629270", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/8/38c55518-7bdf-4a42-ae30-cd6525557a59.jpg?1562629270", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/3/8/38c55518-7bdf-4a42-ae30-cd6525557a59.jpg?1562629270", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/3/8/38c55518-7bdf-4a42-ae30-cd6525557a59.png?1562629270", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/8/38c55518-7bdf-4a42-ae30-cd6525557a59.jpg?1562629270", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/3/8/38c55518-7bdf-4a42-ae30-cd6525557a59.jpg?1562629270"}, "mana_cost": "{5}{R}{R}", "cmc": 7.0, "type_line": "Sorcery", "oracle_text": "Kamahl's Sledge deals 4 damage to target creature.\nThreshold \u2014 If seven or more cards are in your graveyard, instead Kamahl's Sledge deals 4 damage to that creature and 4 damage to that creature's controller.", "colors": ["R"], "color_identity": ["R"], "keywords": ["Threshold"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "e0b3fda1-a6ca-4996-849b-08b463d39484", "set": "tor", "set_name": "Torment", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/e0b3fda1-a6ca-4996-849b-08b463d39484", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ator&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/tor?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/38c55518-7bdf-4a42-ae30-cd6525557a59/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Adefa9b92-4b54-4b00-852e-6c5ec4015643&unique=prints", "collector_number": "102", "digital": false, "rarity": "common", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Don Hazeltine", "artist_ids": ["b4117364-73af-47e5-8cf0-901eeea09e01"], "illustration_id": "542a7201-8331-44f0-add5-86095a7f7e05", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 22140, "prices": {"usd": "0.09", "usd_foil": "0.34", "usd_etched": null, "eur": "0.05", "eur_foil": "0.20", "tix": "0.05"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=32229", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Kamahl%27s+Sledge&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Kamahl%27s+Sledge&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Kamahl%27s+Sledge"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/9752?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Kamahl%27s+Sledge&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/17245?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "bef5d58e-b490-4682-9a44-12cd61a94c0f", "oracle_id": "d76fc3aa-3962-4d64-a082-765e09bcdf25", "multiverse_ids": [548453], "mtgo_id": 97230, "arena_id": 79580, "tcgplayer_id": 262805, "cardmarket_id": 608240, "name": "Kami's Flare", "lang": "en", "released_at": "2022-02-18", "uri": "https://api.scryfall.com/cards/bef5d58e-b490-4682-9a44-12cd61a94c0f", "scryfall_uri": "https://scryfall.com/card/neo/150/kamis-flare?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/b/e/bef5d58e-b490-4682-9a44-12cd61a94c0f.jpg?1654567705", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/e/bef5d58e-b490-4682-9a44-12cd61a94c0f.jpg?1654567705", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/b/e/bef5d58e-b490-4682-9a44-12cd61a94c0f.jpg?1654567705", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/b/e/bef5d58e-b490-4682-9a44-12cd61a94c0f.png?1654567705", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/e/bef5d58e-b490-4682-9a44-12cd61a94c0f.jpg?1654567705", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/b/e/bef5d58e-b490-4682-9a44-12cd61a94c0f.jpg?1654567705"}, "mana_cost": "{1}{R}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Kami's Flare deals 3 damage to target creature or planeswalker. Kami's Flare also deals 2 damage to that permanent's controller if you control a modified creature. (Equipment, Auras you control, and counters are modifications.)", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo", "arena"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "59a2059f-5482-433f-8761-eb2e17859b71", "set": "neo", "set_name": "Kamigawa: Neon Dynasty", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/59a2059f-5482-433f-8761-eb2e17859b71", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aneo&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/neo?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/bef5d58e-b490-4682-9a44-12cd61a94c0f/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ad76fc3aa-3962-4d64-a082-765e09bcdf25&unique=prints", "collector_number": "150", "digital": false, "rarity": "common", "flavor_text": "\"The flames are a gift from my companion. They won't hurt me. You, on the other hand...\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Tia Masic", "artist_ids": ["eccd93d5-9f94-461b-8d70-895e723a285e"], "illustration_id": "a2b60fe7-596c-4340-83a2-e4d1cc457547", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 15059, "penny_rank": 8181, "prices": {"usd": "0.05", "usd_foil": "0.07", "usd_etched": null, "eur": "0.12", "eur_foil": "0.12", "tix": "0.01"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=548453", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Kami%27s+Flare&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Kami%27s+Flare&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Kami%27s+Flare"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/262805?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Kami%27s+Flare&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/97230?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "930745eb-b038-4b55-97f3-bf8d99b54d32", "oracle_id": "9397a23b-770a-43fc-8bc2-2c3abb0683c5", "multiverse_ids": [4826], "mtgo_id": 9587, "mtgo_foil_id": 9588, "tcgplayer_id": 5603, "cardmarket_id": 8919, "name": "Kindle", "lang": "en", "released_at": "1997-10-14", "uri": "https://api.scryfall.com/cards/930745eb-b038-4b55-97f3-bf8d99b54d32", "scryfall_uri": "https://scryfall.com/card/tmp/184/kindle?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/9/3/930745eb-b038-4b55-97f3-bf8d99b54d32.jpg?1562055431", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/3/930745eb-b038-4b55-97f3-bf8d99b54d32.jpg?1562055431", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/9/3/930745eb-b038-4b55-97f3-bf8d99b54d32.jpg?1562055431", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/9/3/930745eb-b038-4b55-97f3-bf8d99b54d32.png?1562055431", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/3/930745eb-b038-4b55-97f3-bf8d99b54d32.jpg?1562055431", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/9/3/930745eb-b038-4b55-97f3-bf8d99b54d32.jpg?1562055431"}, "mana_cost": "{1}{R}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Kindle deals X damage to any target, where X is 2 plus the number of cards named Kindle in all graveyards.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "10df3a67-178e-4363-8668-34f0e6edf2a7", "set": "tmp", "set_name": "Tempest", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/10df3a67-178e-4363-8668-34f0e6edf2a7", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Atmp&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/tmp?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/930745eb-b038-4b55-97f3-bf8d99b54d32/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A9397a23b-770a-43fc-8bc2-2c3abb0683c5&unique=prints", "collector_number": "184", "digital": false, "rarity": "common", "flavor_text": "Hope of deliverance is scorched by the fire of futility.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Donato Giancola", "artist_ids": ["90332db2-aecb-4d79-917b-95cbeb8d0cb6"], "illustration_id": "f78e7fd4-db86-4821-9e51-78ba7c711365", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 23074, "penny_rank": 1457, "prices": {"usd": "0.11", "usd_foil": null, "usd_etched": null, "eur": "0.13", "eur_foil": null, "tix": "0.05"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=4826", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Kindle&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Kindle&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Kindle"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/5603?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Kindle&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/9587?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "bf6832c1-a0a9-49ec-a787-879e510aee08", "oracle_id": "c2c25406-e84a-47b0-8a46-fe60f9b0cffa", "multiverse_ids": [6572], "tcgplayer_id": 160, "cardmarket_id": 9836, "name": "Kiss of Death", "lang": "en", "released_at": "1998-06-24", "uri": "https://api.scryfall.com/cards/bf6832c1-a0a9-49ec-a787-879e510aee08", "scryfall_uri": "https://scryfall.com/card/p02/76/kiss-of-death?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/b/f/bf6832c1-a0a9-49ec-a787-879e510aee08.jpg?1562940179", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/f/bf6832c1-a0a9-49ec-a787-879e510aee08.jpg?1562940179", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/b/f/bf6832c1-a0a9-49ec-a787-879e510aee08.jpg?1562940179", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/b/f/bf6832c1-a0a9-49ec-a787-879e510aee08.png?1562940179", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/f/bf6832c1-a0a9-49ec-a787-879e510aee08.jpg?1562940179", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/b/f/bf6832c1-a0a9-49ec-a787-879e510aee08.jpg?1562940179"}, "mana_cost": "{4}{B}{B}", "cmc": 6.0, "type_line": "Sorcery", "oracle_text": "Kiss of Death deals 4 damage to target opponent or planeswalker. You gain 4 life.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "ac67f18a-4f0e-407e-bab1-a9fe4f659565", "set": "p02", "set_name": "Portal Second Age", "set_type": "starter", "set_uri": "https://api.scryfall.com/sets/ac67f18a-4f0e-407e-bab1-a9fe4f659565", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ap02&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/p02?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/bf6832c1-a0a9-49ec-a787-879e510aee08/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ac2c25406-e84a-47b0-8a46-fe60f9b0cffa&unique=prints", "collector_number": "76", "digital": false, "rarity": "uncommon", "flavor_text": "\"I'd sooner lock lips with a viper. At least I might walk away from *that*.\"\n\u2014Elvish scout", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Melissa A. Benson", "artist_ids": ["9ade7727-1436-4828-9a1d-487c3d2ad1d9"], "illustration_id": "cb6b11ec-581a-4eab-872a-7a5cab6b68ef", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 23138, "prices": {"usd": "0.28", "usd_foil": null, "usd_etched": null, "eur": "0.35", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=6572", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Kiss+of+Death&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Kiss+of+Death&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Kiss+of+Death"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/160?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Kiss+of+Death&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Kiss+of+Death&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "7c884e1e-fecb-4330-b3de-5fc2a60f7173", "oracle_id": "45f1e957-09f0-4d46-8e32-238f26060a87", "multiverse_ids": [394613], "mtgo_id": 56082, "mtgo_foil_id": 56083, "tcgplayer_id": 96518, "cardmarket_id": 273203, "name": "Kolaghan's Command", "lang": "en", "released_at": "2015-03-27", "uri": "https://api.scryfall.com/cards/7c884e1e-fecb-4330-b3de-5fc2a60f7173", "scryfall_uri": "https://scryfall.com/card/dtk/224/kolaghans-command?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/7/c/7c884e1e-fecb-4330-b3de-5fc2a60f7173.jpg?1562788780", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/c/7c884e1e-fecb-4330-b3de-5fc2a60f7173.jpg?1562788780", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/7/c/7c884e1e-fecb-4330-b3de-5fc2a60f7173.jpg?1562788780", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/7/c/7c884e1e-fecb-4330-b3de-5fc2a60f7173.png?1562788780", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/c/7c884e1e-fecb-4330-b3de-5fc2a60f7173.jpg?1562788780", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/7/c/7c884e1e-fecb-4330-b3de-5fc2a60f7173.jpg?1562788780"}, "mana_cost": "{1}{B}{R}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Choose two \u2014\n\u2022 Return target creature card from your graveyard to your hand.\n\u2022 Target player discards a card.\n\u2022 Destroy target artifact.\n\u2022 Kolaghan's Command deals 2 damage to any target.", "colors": ["B", "R"], "color_identity": ["B", "R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "7e72625f-f320-4552-a719-d11e2f1853bd", "set": "dtk", "set_name": "Dragons of Tarkir", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/7e72625f-f320-4552-a719-d11e2f1853bd", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Adtk&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/dtk?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/7c884e1e-fecb-4330-b3de-5fc2a60f7173/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A45f1e957-09f0-4d46-8e32-238f26060a87&unique=prints", "collector_number": "224", "digital": false, "rarity": "rare", "watermark": "kolaghan", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Daarken", "artist_ids": ["e607a0d4-fc12-4c01-9e3f-501f5269b9cb"], "illustration_id": "ad9fbd57-2375-42c7-8fe7-39b01adacda3", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 3451, "prices": {"usd": "5.72", "usd_foil": "36.46", "usd_etched": null, "eur": "6.47", "eur_foil": "24.95", "tix": "0.96"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=394613", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Kolaghan%27s+Command&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Kolaghan%27s+Command&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Kolaghan%27s+Command"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/96518?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Kolaghan%27s+Command&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/56082?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "1e8bdd10-0bdc-4339-bd84-b540606438d6", "oracle_id": "45f1e957-09f0-4d46-8e32-238f26060a87", "multiverse_ids": [573043], "tcgplayer_id": 277059, "cardmarket_id": 665819, "name": "Kolaghan's Command", "lang": "en", "released_at": "2022-07-08", "uri": "https://api.scryfall.com/cards/1e8bdd10-0bdc-4339-bd84-b540606438d6", "scryfall_uri": "https://scryfall.com/card/2x2/381/kolaghans-command?utm_source=api", "layout": "normal", "highres_image": false, "image_status": "lowres", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/1/e/1e8bdd10-0bdc-4339-bd84-b540606438d6.jpg?1656000872", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/e/1e8bdd10-0bdc-4339-bd84-b540606438d6.jpg?1656000872", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/1/e/1e8bdd10-0bdc-4339-bd84-b540606438d6.jpg?1656000872", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/1/e/1e8bdd10-0bdc-4339-bd84-b540606438d6.png?1656000872", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/e/1e8bdd10-0bdc-4339-bd84-b540606438d6.jpg?1656000872", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/1/e/1e8bdd10-0bdc-4339-bd84-b540606438d6.jpg?1656000872"}, "mana_cost": "{1}{B}{R}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Choose two \u2014\n\u2022 Return target creature card from your graveyard to your hand.\n\u2022 Target player discards a card.\n\u2022 Destroy target artifact.\n\u2022 Kolaghan's Command deals 2 damage to any target.", "colors": ["B", "R"], "color_identity": ["B", "R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "5a645837-b050-449f-ac90-1e7ccbf45031", "set": "2x2", "set_name": "Double Masters 2022", "set_type": "masters", "set_uri": "https://api.scryfall.com/sets/5a645837-b050-449f-ac90-1e7ccbf45031", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3A2x2&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/2x2?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/1e8bdd10-0bdc-4339-bd84-b540606438d6/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A45f1e957-09f0-4d46-8e32-238f26060a87&unique=prints", "collector_number": "381", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Alex Horley-Orlandelli", "artist_ids": ["1631a2ad-bf03-4ab9-b86c-60da982d58a1"], "illustration_id": "2f74d0ea-3309-4650-bb7b-4c29ec757716", "border_color": "borderless", "frame": "2015", "frame_effects": ["inverted"], "security_stamp": "oval", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "promo_types": ["boosterfun"], "edhrec_rank": 3451, "preview": {"source": "Star City Games", "source_uri": "https://articles.starcitygames.com/magic-the-gathering/double-masters-2022-brings-back-mythic-rare-dragon-fan-favorite-command/", "previewed_at": "2022-06-23"}, "prices": {"usd": "7.25", "usd_foil": "11.56", "usd_etched": null, "eur": "9.00", "eur_foil": "19.78", "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=573043", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Kolaghan%27s+Command&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Kolaghan%27s+Command&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Kolaghan%27s+Command"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/277059?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Kolaghan%27s+Command&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Kolaghan%27s+Command&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "de2c0c8b-5442-44fb-9686-d3dff5742501", "oracle_id": "398d57bb-4653-4652-aa42-7cea4317be0a", "multiverse_ids": [145987], "mtgo_id": 28687, "mtgo_foil_id": 28688, "tcgplayer_id": 15558, "cardmarket_id": 17924, "name": "Lash Out", "lang": "en", "released_at": "2007-10-12", "uri": "https://api.scryfall.com/cards/de2c0c8b-5442-44fb-9686-d3dff5742501", "scryfall_uri": "https://scryfall.com/card/lrw/183/lash-out?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/d/e/de2c0c8b-5442-44fb-9686-d3dff5742501.jpg?1562371092", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/e/de2c0c8b-5442-44fb-9686-d3dff5742501.jpg?1562371092", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/d/e/de2c0c8b-5442-44fb-9686-d3dff5742501.jpg?1562371092", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/d/e/de2c0c8b-5442-44fb-9686-d3dff5742501.png?1562371092", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/e/de2c0c8b-5442-44fb-9686-d3dff5742501.jpg?1562371092", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/d/e/de2c0c8b-5442-44fb-9686-d3dff5742501.jpg?1562371092"}, "mana_cost": "{1}{R}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Lash Out deals 3 damage to target creature. Clash with an opponent. If you win, Lash Out deals 3 damage to that creature's controller. (Each clashing player reveals the top card of their library, then puts that card on the top or bottom. A player wins if their card had a higher mana value.)", "colors": ["R"], "color_identity": ["R"], "keywords": ["Clash"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "30ec97cb-dca9-4bf4-a98b-310f9d8ceaff", "set": "lrw", "set_name": "Lorwyn", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/30ec97cb-dca9-4bf4-a98b-310f9d8ceaff", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Alrw&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/lrw?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/de2c0c8b-5442-44fb-9686-d3dff5742501/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A398d57bb-4653-4652-aa42-7cea4317be0a&unique=prints", "collector_number": "183", "digital": false, "rarity": "common", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Scott Hampton", "artist_ids": ["1675947d-e663-4200-a6ce-5ad7bb3c83b1"], "illustration_id": "7ac32c03-8629-402c-9acf-5dc55f272781", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 19025, "penny_rank": 5712, "prices": {"usd": "0.11", "usd_foil": "0.31", "usd_etched": null, "eur": "0.11", "eur_foil": "0.35", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=145987", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Lash+Out&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Lash+Out&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Lash+Out"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/15558?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Lash+Out&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/28687?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "807e5102-1fab-4ff4-aad8-94defbbb8a6b", "oracle_id": "387b6b07-a283-412d-94c3-f7f1dc76e858", "multiverse_ids": [13185], "mtgo_id": 15642, "mtgo_foil_id": 15643, "tcgplayer_id": 2970, "cardmarket_id": 2961, "name": "Lava Axe", "lang": "en", "released_at": "2001-04-11", "uri": "https://api.scryfall.com/cards/807e5102-1fab-4ff4-aad8-94defbbb8a6b", "scryfall_uri": "https://scryfall.com/card/7ed/199/lava-axe?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/8/0/807e5102-1fab-4ff4-aad8-94defbbb8a6b.jpg?1562241656", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/0/807e5102-1fab-4ff4-aad8-94defbbb8a6b.jpg?1562241656", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/8/0/807e5102-1fab-4ff4-aad8-94defbbb8a6b.jpg?1562241656", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/8/0/807e5102-1fab-4ff4-aad8-94defbbb8a6b.png?1562241656", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/0/807e5102-1fab-4ff4-aad8-94defbbb8a6b.jpg?1562241656", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/8/0/807e5102-1fab-4ff4-aad8-94defbbb8a6b.jpg?1562241656"}, "mana_cost": "{4}{R}", "cmc": 5.0, "type_line": "Sorcery", "oracle_text": "Lava Axe deals 5 damage to target player or planeswalker.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "230f38aa-9511-4db8-a3aa-aeddbc3f7bb9", "set": "7ed", "set_name": "Seventh Edition", "set_type": "core", "set_uri": "https://api.scryfall.com/sets/230f38aa-9511-4db8-a3aa-aeddbc3f7bb9", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3A7ed&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/7ed?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/807e5102-1fab-4ff4-aad8-94defbbb8a6b/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A387b6b07-a283-412d-94c3-f7f1dc76e858&unique=prints", "collector_number": "199", "digital": false, "rarity": "common", "flavor_text": "\"Catch!\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Ray Lago", "artist_ids": ["a72b1f7b-b72a-4e8b-bc97-d6720c0e5837"], "illustration_id": "11568d1f-d512-4e70-89f2-796670d133ed", "border_color": "white", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 13203, "penny_rank": 6107, "prices": {"usd": "0.10", "usd_foil": "12.82", "usd_etched": null, "eur": "0.06", "eur_foil": "25.00", "tix": "0.09"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=13185", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Lava+Axe&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Lava+Axe&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Lava+Axe"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/2970?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Lava+Axe&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/15642?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "e11ec278-46f5-4970-ad0b-f6718c73de6c", "oracle_id": "387b6b07-a283-412d-94c3-f7f1dc76e858", "multiverse_ids": [12947], "mtgo_id": 12631, "mtgo_foil_id": 12632, "tcgplayer_id": 6336, "cardmarket_id": 10641, "name": "Lava Axe", "lang": "en", "released_at": "1999-02-15", "uri": "https://api.scryfall.com/cards/e11ec278-46f5-4970-ad0b-f6718c73de6c", "scryfall_uri": "https://scryfall.com/card/ulg/84/lava-axe?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/e/1/e11ec278-46f5-4970-ad0b-f6718c73de6c.jpg?1562864233", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/1/e11ec278-46f5-4970-ad0b-f6718c73de6c.jpg?1562864233", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/e/1/e11ec278-46f5-4970-ad0b-f6718c73de6c.jpg?1562864233", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/e/1/e11ec278-46f5-4970-ad0b-f6718c73de6c.png?1562864233", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/1/e11ec278-46f5-4970-ad0b-f6718c73de6c.jpg?1562864233", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/e/1/e11ec278-46f5-4970-ad0b-f6718c73de6c.jpg?1562864233"}, "mana_cost": "{4}{R}", "cmc": 5.0, "type_line": "Sorcery", "oracle_text": "Lava Axe deals 5 damage to target player or planeswalker.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "78ced61b-4b8a-4b33-b6b2-f5bd66f1a75a", "set": "ulg", "set_name": "Urza's Legacy", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/78ced61b-4b8a-4b33-b6b2-f5bd66f1a75a", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aulg&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ulg?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/e11ec278-46f5-4970-ad0b-f6718c73de6c/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A387b6b07-a283-412d-94c3-f7f1dc76e858&unique=prints", "collector_number": "84", "digital": false, "rarity": "common", "flavor_text": "\"Catch!\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Brian Sn\u00f5ddy", "artist_ids": ["770b4e16-de76-49ed-949f-84e6d2e06d25"], "illustration_id": "bcc54fa7-0acf-49ba-b1e7-56a5f03ab28c", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 13203, "penny_rank": 6107, "prices": {"usd": "0.07", "usd_foil": "2.49", "usd_etched": null, "eur": "0.10", "eur_foil": "4.60", "tix": "0.09"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=12947", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Lava+Axe&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Lava+Axe&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Lava+Axe"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/6336?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Lava+Axe&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/12631?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "fe6cff90-ecec-4610-82ea-0f2a109959cf", "oracle_id": "387b6b07-a283-412d-94c3-f7f1dc76e858", "multiverse_ids": [6591], "tcgplayer_id": 161, "cardmarket_id": 9927, "name": "Lava Axe", "lang": "en", "released_at": "1998-06-24", "uri": "https://api.scryfall.com/cards/fe6cff90-ecec-4610-82ea-0f2a109959cf", "scryfall_uri": "https://scryfall.com/card/p02/107/lava-axe?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/f/e/fe6cff90-ecec-4610-82ea-0f2a109959cf.jpg?1562955255", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/e/fe6cff90-ecec-4610-82ea-0f2a109959cf.jpg?1562955255", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/f/e/fe6cff90-ecec-4610-82ea-0f2a109959cf.jpg?1562955255", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/f/e/fe6cff90-ecec-4610-82ea-0f2a109959cf.png?1562955255", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/e/fe6cff90-ecec-4610-82ea-0f2a109959cf.jpg?1562955255", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/f/e/fe6cff90-ecec-4610-82ea-0f2a109959cf.jpg?1562955255"}, "mana_cost": "{4}{R}", "cmc": 5.0, "type_line": "Sorcery", "oracle_text": "Lava Axe deals 5 damage to target player or planeswalker.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "ac67f18a-4f0e-407e-bab1-a9fe4f659565", "set": "p02", "set_name": "Portal Second Age", "set_type": "starter", "set_uri": "https://api.scryfall.com/sets/ac67f18a-4f0e-407e-bab1-a9fe4f659565", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ap02&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/p02?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/fe6cff90-ecec-4610-82ea-0f2a109959cf/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A387b6b07-a283-412d-94c3-f7f1dc76e858&unique=prints", "collector_number": "107", "digital": false, "rarity": "common", "flavor_text": "Meant to cut through the body and burn straight to the soul.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Edward P. Beard, Jr.", "artist_ids": ["b845b8ee-aeea-4822-bcf9-7230625ac95c"], "illustration_id": "9e1bd06d-346e-43d0-88de-03c486b0f5be", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 13203, "penny_rank": 6107, "prices": {"usd": "0.15", "usd_foil": null, "usd_etched": null, "eur": "0.08", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=6591", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Lava+Axe&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Lava+Axe&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Lava+Axe"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/161?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Lava+Axe&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Lava+Axe&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "f2bebbad-76aa-4388-891a-583e8af9509d", "oracle_id": "387b6b07-a283-412d-94c3-f7f1dc76e858", "multiverse_ids": [4348], "tcgplayer_id": 710, "cardmarket_id": 10127, "name": "Lava Axe", "lang": "en", "released_at": "1997-05-01", "uri": "https://api.scryfall.com/cards/f2bebbad-76aa-4388-891a-583e8af9509d", "scryfall_uri": "https://scryfall.com/card/por/137/lava-axe?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/f/2/f2bebbad-76aa-4388-891a-583e8af9509d.jpg?1562448334", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/2/f2bebbad-76aa-4388-891a-583e8af9509d.jpg?1562448334", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/f/2/f2bebbad-76aa-4388-891a-583e8af9509d.jpg?1562448334", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/f/2/f2bebbad-76aa-4388-891a-583e8af9509d.png?1562448334", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/2/f2bebbad-76aa-4388-891a-583e8af9509d.jpg?1562448334", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/f/2/f2bebbad-76aa-4388-891a-583e8af9509d.jpg?1562448334"}, "mana_cost": "{4}{R}", "cmc": 5.0, "type_line": "Sorcery", "oracle_text": "Lava Axe deals 5 damage to target player or planeswalker.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "478c47df-5058-4ce6-830e-7e80732b2ca9", "set": "por", "set_name": "Portal", "set_type": "starter", "set_uri": "https://api.scryfall.com/sets/478c47df-5058-4ce6-830e-7e80732b2ca9", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Apor&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/por?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/f2bebbad-76aa-4388-891a-583e8af9509d/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A387b6b07-a283-412d-94c3-f7f1dc76e858&unique=prints", "collector_number": "137", "digital": false, "rarity": "common", "flavor_text": "Swing your axe as a broom, to sweep away the foe.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Adrian Smith", "artist_ids": ["be42f6f3-66d4-4957-9f1e-0591f8b95364"], "illustration_id": "470a2b6f-8565-4a17-b4e7-05a5a0e0566f", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 13203, "penny_rank": 6107, "prices": {"usd": "0.13", "usd_foil": null, "usd_etched": null, "eur": "0.10", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=4348", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Lava+Axe&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Lava+Axe&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Lava+Axe"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/710?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Lava+Axe&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Lava+Axe&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "cd0e9e53-2710-4c2a-a8e4-48f25375ebc7", "oracle_id": "3260bede-d78d-41a6-8fe1-95ce14a2ba8c", "multiverse_ids": [29763], "mtgo_id": 16689, "mtgo_foil_id": 16690, "tcgplayer_id": 9475, "cardmarket_id": 2612, "name": "Lava Blister", "lang": "en", "released_at": "2001-10-01", "uri": "https://api.scryfall.com/cards/cd0e9e53-2710-4c2a-a8e4-48f25375ebc7", "scryfall_uri": "https://scryfall.com/card/ody/200/lava-blister?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/c/d/cd0e9e53-2710-4c2a-a8e4-48f25375ebc7.jpg?1562933365", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/d/cd0e9e53-2710-4c2a-a8e4-48f25375ebc7.jpg?1562933365", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/c/d/cd0e9e53-2710-4c2a-a8e4-48f25375ebc7.jpg?1562933365", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/c/d/cd0e9e53-2710-4c2a-a8e4-48f25375ebc7.png?1562933365", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/d/cd0e9e53-2710-4c2a-a8e4-48f25375ebc7.jpg?1562933365", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/c/d/cd0e9e53-2710-4c2a-a8e4-48f25375ebc7.jpg?1562933365"}, "mana_cost": "{1}{R}", "cmc": 2.0, "type_line": "Sorcery", "oracle_text": "Destroy target nonbasic land unless its controller has Lava Blister deal 6 damage to them.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "b0d90d2d-494a-4224-bfa0-36ce5ee281b1", "set": "ody", "set_name": "Odyssey", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/b0d90d2d-494a-4224-bfa0-36ce5ee281b1", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aody&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ody?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/cd0e9e53-2710-4c2a-a8e4-48f25375ebc7/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A3260bede-d78d-41a6-8fe1-95ce14a2ba8c&unique=prints", "collector_number": "200", "digital": false, "rarity": "uncommon", "flavor_text": "To treat flesh wounds, use earth. To treat earth wounds, use flesh.\n\u2014Barbarian saying", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Rob Alexander", "artist_ids": ["35906871-6c78-4ab2-9ed1-e6792c8efb74"], "illustration_id": "85d8f189-56bb-4385-85e5-166d7b2dd56c", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 15376, "penny_rank": 5554, "prices": {"usd": "0.34", "usd_foil": "3.99", "usd_etched": null, "eur": "0.32", "eur_foil": "3.00", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=29763", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Lava+Blister&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Lava+Blister&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Lava+Blister"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/9475?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Lava+Blister&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/16689?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "79dc0e20-5790-4927-8432-cf0e9b7381d4", "oracle_id": "f7be3da5-55b2-46f2-a5aa-277dee242b94", "multiverse_ids": [2634], "tcgplayer_id": 4777, "cardmarket_id": 6410, "name": "Lava Burst", "lang": "en", "released_at": "1995-06-03", "uri": "https://api.scryfall.com/cards/79dc0e20-5790-4927-8432-cf0e9b7381d4", "scryfall_uri": "https://scryfall.com/card/ice/198/lava-burst?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/7/9/79dc0e20-5790-4927-8432-cf0e9b7381d4.jpg?1562917534", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/9/79dc0e20-5790-4927-8432-cf0e9b7381d4.jpg?1562917534", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/7/9/79dc0e20-5790-4927-8432-cf0e9b7381d4.jpg?1562917534", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/7/9/79dc0e20-5790-4927-8432-cf0e9b7381d4.png?1562917534", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/9/79dc0e20-5790-4927-8432-cf0e9b7381d4.jpg?1562917534", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/7/9/79dc0e20-5790-4927-8432-cf0e9b7381d4.jpg?1562917534"}, "mana_cost": "{X}{R}", "cmc": 1.0, "type_line": "Sorcery", "oracle_text": "Lava Burst deals X damage to any target. If Lava Burst would deal damage to a creature, that damage can't be prevented or dealt instead to another permanent or player.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "b0e08eea-5c01-4406-a6e2-dcd09c5e5b67", "set": "ice", "set_name": "Ice Age", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/b0e08eea-5c01-4406-a6e2-dcd09c5e5b67", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aice&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ice?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/79dc0e20-5790-4927-8432-cf0e9b7381d4/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Af7be3da5-55b2-46f2-a5aa-277dee242b94&unique=prints", "collector_number": "198", "digital": false, "rarity": "common", "flavor_text": "\"Overkill? This isn't a game of Kick-the-Ouphe!\"\n\u2014Jaya Ballard, Task Mage", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Tom W\u00e4nerstrand", "artist_ids": ["c4e0aa7c-a008-4d71-80ce-d5a1ca0b251b"], "illustration_id": "8feebec1-fd96-4acd-8a7b-b6963cdc7a88", "border_color": "black", "frame": "1993", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 14642, "penny_rank": 10739, "prices": {"usd": "0.16", "usd_foil": null, "usd_etched": null, "eur": "0.04", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=2634", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Lava+Burst&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Lava+Burst&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Lava+Burst"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/4777?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Lava+Burst&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Lava+Burst&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "b16dd041-451d-4914-8c46-aa315a90d802", "oracle_id": "e48891e3-30a2-4fc8-a858-cec33c6e4ab5", "multiverse_ids": [464083], "mtgo_id": 72640, "tcgplayer_id": 190635, "cardmarket_id": 374388, "name": "Lava Dart", "lang": "en", "released_at": "2019-06-14", "uri": "https://api.scryfall.com/cards/b16dd041-451d-4914-8c46-aa315a90d802", "scryfall_uri": "https://scryfall.com/card/mh1/134/lava-dart?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/b/1/b16dd041-451d-4914-8c46-aa315a90d802.jpg?1562201890", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/1/b16dd041-451d-4914-8c46-aa315a90d802.jpg?1562201890", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/b/1/b16dd041-451d-4914-8c46-aa315a90d802.jpg?1562201890", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/b/1/b16dd041-451d-4914-8c46-aa315a90d802.png?1562201890", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/1/b16dd041-451d-4914-8c46-aa315a90d802.jpg?1562201890", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/b/1/b16dd041-451d-4914-8c46-aa315a90d802.jpg?1562201890"}, "mana_cost": "{R}", "cmc": 1.0, "type_line": "Instant", "oracle_text": "Lava Dart deals 1 damage to any target.\nFlashback\u2014Sacrifice a Mountain. (You may cast this card from your graveyard for its flashback cost. Then exile it.)", "colors": ["R"], "color_identity": ["R"], "keywords": ["Flashback"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "d7efccd6-55bc-4fb8-9138-e72577510a99", "set": "mh1", "set_name": "Modern Horizons", "set_type": "draft_innovation", "set_uri": "https://api.scryfall.com/sets/d7efccd6-55bc-4fb8-9138-e72577510a99", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Amh1&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/mh1?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/b16dd041-451d-4914-8c46-aa315a90d802/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ae48891e3-30a2-4fc8-a858-cec33c6e4ab5&unique=prints", "collector_number": "134", "digital": false, "rarity": "common", "flavor_text": "\"Small outbursts are healthy.\"\n\u2014Koth of the Hammer", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Tyler Walpole", "artist_ids": ["70c4c8c7-61a8-44e7-8fb1-161b7f943e7e"], "illustration_id": "5328fb6d-3bb0-4892-a5ef-0b0270e01edc", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 9672, "penny_rank": 540, "preview": {"source": "Wizards of the Coast", "source_uri": "https://www.twitch.tv/videos/427047692", "previewed_at": "2019-05-19"}, "prices": {"usd": "0.16", "usd_foil": "2.17", "usd_etched": null, "eur": "0.11", "eur_foil": "2.00", "tix": "0.27"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=464083", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Lava+Dart&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Lava+Dart&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Lava+Dart"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/190635?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Lava+Dart&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/72640?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "865bb1d3-5b7d-40e9-87cc-96be9524a105", "oracle_id": "e48891e3-30a2-4fc8-a858-cec33c6e4ab5", "multiverse_ids": [29766], "mtgo_id": 17520, "mtgo_foil_id": 17521, "tcgplayer_id": 10254, "cardmarket_id": 2220, "name": "Lava Dart", "lang": "en", "released_at": "2002-05-27", "uri": "https://api.scryfall.com/cards/865bb1d3-5b7d-40e9-87cc-96be9524a105", "scryfall_uri": "https://scryfall.com/card/jud/94/lava-dart?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/8/6/865bb1d3-5b7d-40e9-87cc-96be9524a105.jpg?1562630775", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/6/865bb1d3-5b7d-40e9-87cc-96be9524a105.jpg?1562630775", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/8/6/865bb1d3-5b7d-40e9-87cc-96be9524a105.jpg?1562630775", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/8/6/865bb1d3-5b7d-40e9-87cc-96be9524a105.png?1562630775", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/6/865bb1d3-5b7d-40e9-87cc-96be9524a105.jpg?1562630775", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/8/6/865bb1d3-5b7d-40e9-87cc-96be9524a105.jpg?1562630775"}, "mana_cost": "{R}", "cmc": 1.0, "type_line": "Instant", "oracle_text": "Lava Dart deals 1 damage to any target.\nFlashback\u2014Sacrifice a Mountain. (You may cast this card from your graveyard for its flashback cost. Then exile it.)", "colors": ["R"], "color_identity": ["R"], "keywords": ["Flashback"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "cd82de1a-36fd-4618-bfe8-b45532a582d9", "set": "jud", "set_name": "Judgment", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/cd82de1a-36fd-4618-bfe8-b45532a582d9", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ajud&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/jud?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/865bb1d3-5b7d-40e9-87cc-96be9524a105/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ae48891e3-30a2-4fc8-a858-cec33c6e4ab5&unique=prints", "collector_number": "94", "digital": false, "rarity": "common", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Darrell Riche", "artist_ids": ["262c8e55-4efc-467b-a042-6f734b9d2e01"], "illustration_id": "dc9632b9-24cb-4d18-bb37-ce4f056c902b", "border_color": "black", "frame": "1997", "frame_effects": ["tombstone"], "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 9672, "penny_rank": 540, "prices": {"usd": "0.30", "usd_foil": "13.40", "usd_etched": null, "eur": "0.24", "eur_foil": "6.73", "tix": "0.30"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=29766", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Lava+Dart&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Lava+Dart&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Lava+Dart"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/10254?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Lava+Dart&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/17520?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "749981d6-78e7-4f53-80a8-f211e61bd532", "oracle_id": "4475e9a7-4e94-4965-8e7e-211d40a98217", "multiverse_ids": [180612], "mtgo_id": 32386, "mtgo_foil_id": 32387, "tcgplayer_id": 31760, "cardmarket_id": 20997, "name": "Lavalanche", "lang": "en", "released_at": "2009-04-30", "uri": "https://api.scryfall.com/cards/749981d6-78e7-4f53-80a8-f211e61bd532", "scryfall_uri": "https://scryfall.com/card/arb/118/lavalanche?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/7/4/749981d6-78e7-4f53-80a8-f211e61bd532.jpg?1562642149", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/4/749981d6-78e7-4f53-80a8-f211e61bd532.jpg?1562642149", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/7/4/749981d6-78e7-4f53-80a8-f211e61bd532.jpg?1562642149", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/7/4/749981d6-78e7-4f53-80a8-f211e61bd532.png?1562642149", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/4/749981d6-78e7-4f53-80a8-f211e61bd532.jpg?1562642149", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/7/4/749981d6-78e7-4f53-80a8-f211e61bd532.jpg?1562642149"}, "mana_cost": "{X}{B}{R}{G}", "cmc": 3.0, "type_line": "Sorcery", "oracle_text": "Lavalanche deals X damage to target player or planeswalker and each creature that player or that planeswalker's controller controls.", "colors": ["B", "G", "R"], "color_identity": ["B", "G", "R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "db486ec5-141d-4781-9ee5-5456926934c1", "set": "arb", "set_name": "Alara Reborn", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/db486ec5-141d-4781-9ee5-5456926934c1", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aarb&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/arb?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/749981d6-78e7-4f53-80a8-f211e61bd532/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A4475e9a7-4e94-4965-8e7e-211d40a98217&unique=prints", "collector_number": "118", "digital": false, "rarity": "rare", "flavor_text": "Alara's burning blood cannot be contained by mere earth and stone.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Steve Argyle", "artist_ids": ["a44ddda4-5331-4f83-aac9-3e00ed36bd7b"], "illustration_id": "e8cc7f2b-950e-47d1-bd69-bf732d613902", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 5447, "penny_rank": 8361, "prices": {"usd": "0.27", "usd_foil": "1.73", "usd_etched": null, "eur": "0.15", "eur_foil": "0.49", "tix": "0.01"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=180612", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Lavalanche&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Lavalanche&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Lavalanche"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/31760?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Lavalanche&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/32386?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "79c21c1f-eaa4-454d-a1c7-b41466d0a428", "oracle_id": "2837888c-bfa8-4955-9334-0605ad409f7e", "multiverse_ids": [456732], "mtgo_id": 70345, "tcgplayer_id": 180812, "cardmarket_id": 366861, "name": "Lava Spike", "lang": "en", "released_at": "2018-12-07", "uri": "https://api.scryfall.com/cards/79c21c1f-eaa4-454d-a1c7-b41466d0a428", "scryfall_uri": "https://scryfall.com/card/uma/136/lava-spike?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/7/9/79c21c1f-eaa4-454d-a1c7-b41466d0a428.jpg?1547517298", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/9/79c21c1f-eaa4-454d-a1c7-b41466d0a428.jpg?1547517298", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/7/9/79c21c1f-eaa4-454d-a1c7-b41466d0a428.jpg?1547517298", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/7/9/79c21c1f-eaa4-454d-a1c7-b41466d0a428.png?1547517298", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/9/79c21c1f-eaa4-454d-a1c7-b41466d0a428.jpg?1547517298", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/7/9/79c21c1f-eaa4-454d-a1c7-b41466d0a428.jpg?1547517298"}, "mana_cost": "{R}", "cmc": 1.0, "type_line": "Sorcery \u2014 Arcane", "oracle_text": "Lava Spike deals 3 damage to target player or planeswalker.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "2ec77b94-6d47-4891-a480-5d0b4e5c9372", "set": "uma", "set_name": "Ultimate Masters", "set_type": "masters", "set_uri": "https://api.scryfall.com/sets/2ec77b94-6d47-4891-a480-5d0b4e5c9372", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Auma&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/uma?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/79c21c1f-eaa4-454d-a1c7-b41466d0a428/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A2837888c-bfa8-4955-9334-0605ad409f7e&unique=prints", "collector_number": "136", "digital": false, "rarity": "uncommon", "flavor_text": "It's not the most subtle incantation, but it gets the point across.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Igor Kieryluk", "artist_ids": ["9c3e9d17-509f-485c-9360-46d897ce716b"], "illustration_id": "028b4235-0eaa-4b62-8073-e46fdef37acf", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 9878, "prices": {"usd": "3.69", "usd_foil": "4.54", "usd_etched": null, "eur": "1.56", "eur_foil": "1.50", "tix": "1.92"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=456732", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Lava+Spike&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Lava+Spike&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Lava+Spike"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/180812?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Lava+Spike&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/70345?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "60b2fae1-242b-45e0-a757-b1adc02c06f3", "oracle_id": "2837888c-bfa8-4955-9334-0605ad409f7e", "multiverse_ids": [79084], "mtgo_id": 21331, "mtgo_foil_id": 21332, "tcgplayer_id": 12083, "cardmarket_id": 12102, "name": "Lava Spike", "lang": "en", "released_at": "2004-10-01", "uri": "https://api.scryfall.com/cards/60b2fae1-242b-45e0-a757-b1adc02c06f3", "scryfall_uri": "https://scryfall.com/card/chk/178/lava-spike?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/6/0/60b2fae1-242b-45e0-a757-b1adc02c06f3.jpg?1562760596", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/0/60b2fae1-242b-45e0-a757-b1adc02c06f3.jpg?1562760596", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/6/0/60b2fae1-242b-45e0-a757-b1adc02c06f3.jpg?1562760596", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/6/0/60b2fae1-242b-45e0-a757-b1adc02c06f3.png?1562760596", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/0/60b2fae1-242b-45e0-a757-b1adc02c06f3.jpg?1562760596", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/6/0/60b2fae1-242b-45e0-a757-b1adc02c06f3.jpg?1562760596"}, "mana_cost": "{R}", "cmc": 1.0, "type_line": "Sorcery \u2014 Arcane", "oracle_text": "Lava Spike deals 3 damage to target player or planeswalker.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "6183d21f-a0af-4118-ba58-aca1d8719c01", "set": "chk", "set_name": "Champions of Kamigawa", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/6183d21f-a0af-4118-ba58-aca1d8719c01", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Achk&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/chk?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/60b2fae1-242b-45e0-a757-b1adc02c06f3/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A2837888c-bfa8-4955-9334-0605ad409f7e&unique=prints", "collector_number": "178", "digital": false, "rarity": "common", "flavor_text": "Some kami attacks during the war were rife with trickery, subterfuge, and subtlety, draining hope and pride from the mortal world. Other attacks were a lot more straightforward.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Mark Tedin", "artist_ids": ["9ee9a9cc-c09e-486f-918b-69f80cbc4188"], "illustration_id": "23946403-7ac1-4237-99d6-2d3cd22daed1", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 9878, "prices": {"usd": "3.76", "usd_foil": "18.35", "usd_etched": null, "eur": "2.73", "eur_foil": "8.75", "tix": "1.70"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=79084", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Lava+Spike&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Lava+Spike&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Lava+Spike"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/12083?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Lava+Spike&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/21331?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "83e3c502-9e3c-41db-806c-538243dc0453", "oracle_id": "91fd731c-e076-4f2d-9f22-872880c3cc3d", "multiverse_ids": [13051], "mtgo_id": 15648, "mtgo_foil_id": 15649, "tcgplayer_id": 2973, "cardmarket_id": 2962, "name": "Lightning Blast", "lang": "en", "released_at": "2001-04-11", "uri": "https://api.scryfall.com/cards/83e3c502-9e3c-41db-806c-538243dc0453", "scryfall_uri": "https://scryfall.com/card/7ed/200/lightning-blast?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/8/3/83e3c502-9e3c-41db-806c-538243dc0453.jpg?1562241728", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/3/83e3c502-9e3c-41db-806c-538243dc0453.jpg?1562241728", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/8/3/83e3c502-9e3c-41db-806c-538243dc0453.jpg?1562241728", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/8/3/83e3c502-9e3c-41db-806c-538243dc0453.png?1562241728", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/3/83e3c502-9e3c-41db-806c-538243dc0453.jpg?1562241728", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/8/3/83e3c502-9e3c-41db-806c-538243dc0453.jpg?1562241728"}, "mana_cost": "{3}{R}", "cmc": 4.0, "type_line": "Instant", "oracle_text": "Lightning Blast deals 4 damage to any target.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "230f38aa-9511-4db8-a3aa-aeddbc3f7bb9", "set": "7ed", "set_name": "Seventh Edition", "set_type": "core", "set_uri": "https://api.scryfall.com/sets/230f38aa-9511-4db8-a3aa-aeddbc3f7bb9", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3A7ed&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/7ed?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/83e3c502-9e3c-41db-806c-538243dc0453/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A91fd731c-e076-4f2d-9f22-872880c3cc3d&unique=prints", "collector_number": "200", "digital": false, "rarity": "common", "flavor_text": "\"I'll climb down soon. Don't worry, it's just a thundersto\u2014\"\n\u2014Former elvish scout", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Ron Spencer", "artist_ids": ["dab52c11-0564-4207-a4a1-c1735c946a65"], "illustration_id": "2d014df0-09cc-4bd4-b22d-1fc3d0774be3", "border_color": "white", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 16835, "penny_rank": 7384, "prices": {"usd": "0.16", "usd_foil": "34.65", "usd_etched": null, "eur": "0.05", "eur_foil": "10.00", "tix": "0.09"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=13051", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Lightning+Blast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Lightning+Blast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Lightning+Blast"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/2973?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Lightning+Blast&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/15648?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "63fec3f9-d399-48e6-84b6-c8410c24c382", "oracle_id": "91fd731c-e076-4f2d-9f22-872880c3cc3d", "multiverse_ids": [4827], "mtgo_id": 9593, "mtgo_foil_id": 9594, "tcgplayer_id": 5611, "cardmarket_id": 8920, "name": "Lightning Blast", "lang": "en", "released_at": "1997-10-14", "uri": "https://api.scryfall.com/cards/63fec3f9-d399-48e6-84b6-c8410c24c382", "scryfall_uri": "https://scryfall.com/card/tmp/185/lightning-blast?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/6/3/63fec3f9-d399-48e6-84b6-c8410c24c382.jpg?1562054251", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/3/63fec3f9-d399-48e6-84b6-c8410c24c382.jpg?1562054251", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/6/3/63fec3f9-d399-48e6-84b6-c8410c24c382.jpg?1562054251", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/6/3/63fec3f9-d399-48e6-84b6-c8410c24c382.png?1562054251", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/3/63fec3f9-d399-48e6-84b6-c8410c24c382.jpg?1562054251", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/6/3/63fec3f9-d399-48e6-84b6-c8410c24c382.jpg?1562054251"}, "mana_cost": "{3}{R}", "cmc": 4.0, "type_line": "Instant", "oracle_text": "Lightning Blast deals 4 damage to any target.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "10df3a67-178e-4363-8668-34f0e6edf2a7", "set": "tmp", "set_name": "Tempest", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/10df3a67-178e-4363-8668-34f0e6edf2a7", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Atmp&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/tmp?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/63fec3f9-d399-48e6-84b6-c8410c24c382/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A91fd731c-e076-4f2d-9f22-872880c3cc3d&unique=prints", "collector_number": "185", "digital": false, "rarity": "common", "flavor_text": "\"Those who fear the darkness have never seen what the light can do.\"\n\u2014Selenia, dark angel", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Richard Thomas", "artist_ids": ["596b3aac-b331-4e1e-ae41-9ec2d3b653e1"], "illustration_id": "e26debb5-7ddf-440f-aa66-91fb6ba8fa20", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 16835, "penny_rank": 7384, "prices": {"usd": "0.07", "usd_foil": null, "usd_etched": null, "eur": "0.05", "eur_foil": null, "tix": "0.09"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=4827", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Lightning+Blast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Lightning+Blast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Lightning+Blast"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/5611?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Lightning+Blast&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/9593?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "ae5f9fb1-5a55-4db3-98a1-2628e3598c18", "oracle_id": "4457ed35-7c10-48c8-9776-456485fdf070", "multiverse_ids": [563070], "tcgplayer_id": 267051, "cardmarket_id": 650833, "name": "Lightning Bolt", "lang": "en", "released_at": "2022-06-10", "uri": "https://api.scryfall.com/cards/ae5f9fb1-5a55-4db3-98a1-2628e3598c18", "scryfall_uri": "https://scryfall.com/card/clb/187/lightning-bolt?utm_source=api", "layout": "normal", "highres_image": false, "image_status": "lowres", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/a/e/ae5f9fb1-5a55-4db3-98a1-2628e3598c18.jpg?1648155765", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/e/ae5f9fb1-5a55-4db3-98a1-2628e3598c18.jpg?1648155765", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/a/e/ae5f9fb1-5a55-4db3-98a1-2628e3598c18.jpg?1648155765", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/a/e/ae5f9fb1-5a55-4db3-98a1-2628e3598c18.png?1648155765", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/e/ae5f9fb1-5a55-4db3-98a1-2628e3598c18.jpg?1648155765", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/a/e/ae5f9fb1-5a55-4db3-98a1-2628e3598c18.jpg?1648155765"}, "mana_cost": "{R}", "cmc": 1.0, "type_line": "Instant", "oracle_text": "Lightning Bolt deals 3 damage to any target.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "banned", "gladiator": "legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "5e4c3fe8-fd57-4b20-ad56-c03790a16cea", "set": "clb", "set_name": "Commander Legends: Battle for Baldur's Gate", "set_type": "draft_innovation", "set_uri": "https://api.scryfall.com/sets/5e4c3fe8-fd57-4b20-ad56-c03790a16cea", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aclb&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/clb?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/ae5f9fb1-5a55-4db3-98a1-2628e3598c18/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A4457ed35-7c10-48c8-9776-456485fdf070&unique=prints", "collector_number": "187", "digital": false, "rarity": "common", "flavor_text": "\"Hasn't she heard of knocking?!\"\n\u2014Snerd, Flaming Fist guard", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Irina Nordsol", "artist_ids": ["1e4cb52d-476e-4c68-ac87-2e620aede6d4"], "illustration_id": "73196e32-eb76-45b3-a1f9-e4cbc08cd779", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 351, "prices": {"usd": "0.60", "usd_foil": "1.53", "usd_etched": null, "eur": "0.99", "eur_foil": "1.36", "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=563070", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Lightning+Bolt&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Lightning+Bolt&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Lightning+Bolt"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/267051?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Lightning+Bolt&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Lightning+Bolt&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "435589bb-27c6-4a6d-9d63-394d5092b9d8", "oracle_id": "4457ed35-7c10-48c8-9776-456485fdf070", "multiverse_ids": [191089], "mtgo_id": 32859, "mtgo_foil_id": 32860, "tcgplayer_id": 32656, "cardmarket_id": 21192, "name": "Lightning Bolt", "lang": "en", "released_at": "2009-07-17", "uri": "https://api.scryfall.com/cards/435589bb-27c6-4a6d-9d63-394d5092b9d8", "scryfall_uri": "https://scryfall.com/card/m10/146/lightning-bolt?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/4/3/435589bb-27c6-4a6d-9d63-394d5092b9d8.jpg?1561978182", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/3/435589bb-27c6-4a6d-9d63-394d5092b9d8.jpg?1561978182", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/4/3/435589bb-27c6-4a6d-9d63-394d5092b9d8.jpg?1561978182", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/4/3/435589bb-27c6-4a6d-9d63-394d5092b9d8.png?1561978182", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/3/435589bb-27c6-4a6d-9d63-394d5092b9d8.jpg?1561978182", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/4/3/435589bb-27c6-4a6d-9d63-394d5092b9d8.jpg?1561978182"}, "mana_cost": "{R}", "cmc": 1.0, "type_line": "Instant", "oracle_text": "Lightning Bolt deals 3 damage to any target.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "banned", "gladiator": "legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "0dba38a9-6b9d-4768-9831-4e03e8970a0b", "set": "m10", "set_name": "Magic 2010", "set_type": "core", "set_uri": "https://api.scryfall.com/sets/0dba38a9-6b9d-4768-9831-4e03e8970a0b", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Am10&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/m10?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/435589bb-27c6-4a6d-9d63-394d5092b9d8/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A4457ed35-7c10-48c8-9776-456485fdf070&unique=prints", "collector_number": "146", "digital": false, "rarity": "common", "flavor_text": "The sparkmage shrieked, calling on the rage of the storms of his youth. To his surprise, the sky responded with a fierce energy he'd never thought to see again.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Christopher Moeller", "artist_ids": ["21e10012-06ae-44f2-b38d-3824dd2e73d4"], "illustration_id": "013e7eda-ef8e-44cd-9832-4033d9de1c34", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 351, "prices": {"usd": "1.65", "usd_foil": "9.65", "usd_etched": null, "eur": "1.46", "eur_foil": "7.89", "tix": "0.56"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=191089", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Lightning+Bolt&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Lightning+Bolt&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Lightning+Bolt"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/32656?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Lightning+Bolt&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/32859?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "d573ef03-4730-45aa-93dd-e45ac1dbaf4a", "oracle_id": "4457ed35-7c10-48c8-9776-456485fdf070", "multiverse_ids": [209], "tcgplayer_id": 1174, "cardmarket_id": 5395, "name": "Lightning Bolt", "lang": "en", "released_at": "1993-08-05", "uri": "https://api.scryfall.com/cards/d573ef03-4730-45aa-93dd-e45ac1dbaf4a", "scryfall_uri": "https://scryfall.com/card/lea/161/lightning-bolt?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/d/5/d573ef03-4730-45aa-93dd-e45ac1dbaf4a.jpg?1559591645", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/5/d573ef03-4730-45aa-93dd-e45ac1dbaf4a.jpg?1559591645", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/d/5/d573ef03-4730-45aa-93dd-e45ac1dbaf4a.jpg?1559591645", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/d/5/d573ef03-4730-45aa-93dd-e45ac1dbaf4a.png?1559591645", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/5/d573ef03-4730-45aa-93dd-e45ac1dbaf4a.jpg?1559591645", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/d/5/d573ef03-4730-45aa-93dd-e45ac1dbaf4a.jpg?1559591645"}, "mana_cost": "{R}", "cmc": 1.0, "type_line": "Instant", "oracle_text": "Lightning Bolt deals 3 damage to any target.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "banned", "gladiator": "legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "legal", "premodern": "legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "288bd996-960e-448b-a187-9504c1930c2c", "set": "lea", "set_name": "Limited Edition Alpha", "set_type": "core", "set_uri": "https://api.scryfall.com/sets/288bd996-960e-448b-a187-9504c1930c2c", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Alea&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/lea?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/d573ef03-4730-45aa-93dd-e45ac1dbaf4a/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A4457ed35-7c10-48c8-9776-456485fdf070&unique=prints", "collector_number": "161", "digital": false, "rarity": "common", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Christopher Rush", "artist_ids": ["c96773f0-346c-4f7d-9271-2d98cc5d86e1"], "illustration_id": "2cb6200c-d05b-419c-bd10-8b9c146e2339", "border_color": "black", "frame": "1993", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 351, "prices": {"usd": "639.50", "usd_foil": null, "usd_etched": null, "eur": "444.50", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=209", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Lightning+Bolt&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Lightning+Bolt&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Lightning+Bolt"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/1174?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Lightning+Bolt&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Lightning+Bolt&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "c8c8390f-4072-454f-8dc4-174919187a47", "oracle_id": "4457ed35-7c10-48c8-9776-456485fdf070", "multiverse_ids": [573023], "tcgplayer_id": 276485, "cardmarket_id": 664530, "name": "Lightning Bolt", "lang": "en", "released_at": "2022-07-08", "uri": "https://api.scryfall.com/cards/c8c8390f-4072-454f-8dc4-174919187a47", "scryfall_uri": "https://scryfall.com/card/2x2/361/lightning-bolt?utm_source=api", "layout": "normal", "highres_image": false, "image_status": "lowres", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/c/8/c8c8390f-4072-454f-8dc4-174919187a47.jpg?1655641560", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/8/c8c8390f-4072-454f-8dc4-174919187a47.jpg?1655641560", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/c/8/c8c8390f-4072-454f-8dc4-174919187a47.jpg?1655641560", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/c/8/c8c8390f-4072-454f-8dc4-174919187a47.png?1655641560", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/8/c8c8390f-4072-454f-8dc4-174919187a47.jpg?1655641560", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/c/8/c8c8390f-4072-454f-8dc4-174919187a47.jpg?1655641560"}, "mana_cost": "{R}", "cmc": 1.0, "type_line": "Instant", "oracle_text": "Lightning Bolt deals 3 damage to any target.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "banned", "gladiator": "legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "5a645837-b050-449f-ac90-1e7ccbf45031", "set": "2x2", "set_name": "Double Masters 2022", "set_type": "masters", "set_uri": "https://api.scryfall.com/sets/5a645837-b050-449f-ac90-1e7ccbf45031", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3A2x2&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/2x2?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/c8c8390f-4072-454f-8dc4-174919187a47/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A4457ed35-7c10-48c8-9776-456485fdf070&unique=prints", "collector_number": "361", "digital": false, "rarity": "uncommon", "flavor_text": "\"My, how shocking.\"\n\u2014Barrin, Tolarian archmage", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Chuck Lukacs", "artist_ids": ["2bdf4da7-c66c-4c46-a253-284c856ccfab"], "illustration_id": "d959788a-fb4e-4e8c-b87b-8703179e4c53", "border_color": "borderless", "frame": "2015", "frame_effects": ["inverted"], "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "promo_types": ["boosterfun"], "edhrec_rank": 351, "preview": {"source": "Eric Portnoy", "source_uri": "https://twitter.com/BarbarianSSJ/status/1538542312636153856", "previewed_at": "2022-06-19"}, "prices": {"usd": "2.53", "usd_foil": "5.06", "usd_etched": null, "eur": "2.30", "eur_foil": "5.49", "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=573023", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Lightning+Bolt&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Lightning+Bolt&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Lightning+Bolt"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/276485?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Lightning+Bolt&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Lightning+Bolt&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "c69f668b-cf28-495a-bbe1-24e9d0089fa1", "oracle_id": "4457ed35-7c10-48c8-9776-456485fdf070", "multiverse_ids": [570274], "tcgplayer_id": 267061, "cardmarket_id": 650868, "name": "Lightning Bolt", "lang": "en", "released_at": "2022-06-10", "uri": "https://api.scryfall.com/cards/c69f668b-cf28-495a-bbe1-24e9d0089fa1", "scryfall_uri": "https://scryfall.com/card/clb/401/lightning-bolt?utm_source=api", "layout": "normal", "highres_image": false, "image_status": "lowres", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/c/6/c69f668b-cf28-495a-bbe1-24e9d0089fa1.jpg?1648155788", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/6/c69f668b-cf28-495a-bbe1-24e9d0089fa1.jpg?1648155788", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/c/6/c69f668b-cf28-495a-bbe1-24e9d0089fa1.jpg?1648155788", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/c/6/c69f668b-cf28-495a-bbe1-24e9d0089fa1.png?1648155788", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/6/c69f668b-cf28-495a-bbe1-24e9d0089fa1.jpg?1648155788", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/c/6/c69f668b-cf28-495a-bbe1-24e9d0089fa1.jpg?1648155788"}, "mana_cost": "{R}", "cmc": 1.0, "type_line": "Instant", "oracle_text": "Lightning Bolt deals 3 damage to any target.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "banned", "gladiator": "legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "5e4c3fe8-fd57-4b20-ad56-c03790a16cea", "set": "clb", "set_name": "Commander Legends: Battle for Baldur's Gate", "set_type": "draft_innovation", "set_uri": "https://api.scryfall.com/sets/5e4c3fe8-fd57-4b20-ad56-c03790a16cea", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aclb&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/clb?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/c69f668b-cf28-495a-bbe1-24e9d0089fa1/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A4457ed35-7c10-48c8-9776-456485fdf070&unique=prints", "collector_number": "401", "digital": false, "rarity": "common", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Phil Stone", "artist_ids": ["86942b2a-49d3-4edd-908c-551f6f07dd00"], "illustration_id": "35fe16cb-3436-4ed7-9773-b42b67469db9", "border_color": "black", "frame": "2015", "frame_effects": ["showcase"], "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "promo_types": ["boosterfun"], "edhrec_rank": 351, "prices": {"usd": "0.46", "usd_foil": "1.99", "usd_etched": null, "eur": "0.92", "eur_foil": "1.91", "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=570274", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Lightning+Bolt&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Lightning+Bolt&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Lightning+Bolt"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/267061?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Lightning+Bolt&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Lightning+Bolt&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "27740ea5-79c8-420f-bc49-6d5eac58dac5", "oracle_id": "4457ed35-7c10-48c8-9776-456485fdf070", "multiverse_ids": [], "tcgplayer_id": 272554, "name": "Lightning Bolt", "flavor_name": "Hadoken", "lang": "en", "released_at": "2022-02-18", "uri": "https://api.scryfall.com/cards/27740ea5-79c8-420f-bc49-6d5eac58dac5", "scryfall_uri": "https://scryfall.com/card/sld/675/lightning-bolt?utm_source=api", "layout": "normal", "highres_image": false, "image_status": "lowres", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/2/7/27740ea5-79c8-420f-bc49-6d5eac58dac5.jpg?1657119952", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/7/27740ea5-79c8-420f-bc49-6d5eac58dac5.jpg?1657119952", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/2/7/27740ea5-79c8-420f-bc49-6d5eac58dac5.jpg?1657119952", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/2/7/27740ea5-79c8-420f-bc49-6d5eac58dac5.png?1657119952", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/7/27740ea5-79c8-420f-bc49-6d5eac58dac5.jpg?1657119952", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/2/7/27740ea5-79c8-420f-bc49-6d5eac58dac5.jpg?1657119952"}, "mana_cost": "{R}", "cmc": 1.0, "type_line": "Instant", "oracle_text": "Lightning Bolt deals 3 damage to any target.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "banned", "gladiator": "legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "4d92a8a7-ccb0-437d-abdc-9d70fc5ed672", "set": "sld", "set_name": "Secret Lair Drop", "set_type": "box", "set_uri": "https://api.scryfall.com/sets/4d92a8a7-ccb0-437d-abdc-9d70fc5ed672", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Asld&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/sld?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/27740ea5-79c8-420f-bc49-6d5eac58dac5/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A4457ed35-7c10-48c8-9776-456485fdf070&unique=prints", "collector_number": "675", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Jason Rainville", "artist_ids": ["6ed7e669-579b-443d-b223-e5cbcb2a7483"], "illustration_id": "85c6f286-0e79-46ae-a576-96f28a461c0b", "border_color": "black", "frame": "2015", "security_stamp": "triangle", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "edhrec_rank": 351, "prices": {"usd": "25.90", "usd_foil": "30.89", "usd_etched": null, "eur": null, "eur_foil": null, "tix": null}, "related_uris": {"tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Lightning+Bolt&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Lightning+Bolt&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Lightning+Bolt"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/272554?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Lightning+Bolt&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Lightning+Bolt&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "4eaac4fd-95f5-4f38-b593-0101e79a20f9", "oracle_id": "4457ed35-7c10-48c8-9776-456485fdf070", "multiverse_ids": [517592], "mtgo_id": 89141, "arena_id": 77521, "tcgplayer_id": 235143, "tcgplayer_etched_id": 235144, "cardmarket_id": 556307, "name": "Lightning Bolt", "lang": "en", "released_at": "2021-04-23", "uri": "https://api.scryfall.com/cards/4eaac4fd-95f5-4f38-b593-0101e79a20f9", "scryfall_uri": "https://scryfall.com/card/sta/42/lightning-bolt?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/4/e/4eaac4fd-95f5-4f38-b593-0101e79a20f9.jpg?1623945607", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/e/4eaac4fd-95f5-4f38-b593-0101e79a20f9.jpg?1623945607", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/4/e/4eaac4fd-95f5-4f38-b593-0101e79a20f9.jpg?1623945607", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/4/e/4eaac4fd-95f5-4f38-b593-0101e79a20f9.png?1623945607", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/e/4eaac4fd-95f5-4f38-b593-0101e79a20f9.jpg?1623945607", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/4/e/4eaac4fd-95f5-4f38-b593-0101e79a20f9.jpg?1623945607"}, "mana_cost": "{R}", "cmc": 1.0, "type_line": "Instant", "oracle_text": "Lightning Bolt deals 3 damage to any target.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "banned", "gladiator": "legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil", "etched"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "5064a720-907f-4cb6-a425-766dc1dd7374", "set": "sta", "set_name": "Strixhaven Mystical Archive", "set_type": "masterpiece", "set_uri": "https://api.scryfall.com/sets/5064a720-907f-4cb6-a425-766dc1dd7374", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Asta&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/sta?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/4eaac4fd-95f5-4f38-b593-0101e79a20f9/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A4457ed35-7c10-48c8-9776-456485fdf070&unique=prints", "collector_number": "42", "digital": false, "rarity": "rare", "flavor_text": "\"The first mages witnessed the fury of the raging storm and wished to answer back.\"\n\u2014*The Stormwright Texts*", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Anato Finnstark", "artist_ids": ["05d233e7-4958-4f79-83e6-f9bf8b6ff78e"], "illustration_id": "66a2d4ec-56b4-4106-909a-dfc88136c49e", "border_color": "borderless", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "promo_types": ["boosterfun"], "edhrec_rank": 351, "preview": {"source": "Wizards of the Coast", "source_uri": "https://www.twitch.tv/videos/962571609", "previewed_at": "2021-03-28"}, "prices": {"usd": "2.69", "usd_foil": "3.74", "usd_etched": "4.16", "eur": "3.09", "eur_foil": "8.47", "tix": "1.81"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=517592", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Lightning+Bolt&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Lightning+Bolt&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Lightning+Bolt"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/235143?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Lightning+Bolt&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/89141?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "45184cd7-b037-4a85-a063-e622ca928d17", "oracle_id": "4457ed35-7c10-48c8-9776-456485fdf070", "multiverse_ids": [485315], "tcgplayer_id": 214899, "cardmarket_id": 464574, "name": "Lightning Bolt", "lang": "en", "released_at": "2020-06-04", "uri": "https://api.scryfall.com/cards/45184cd7-b037-4a85-a063-e622ca928d17", "scryfall_uri": "https://scryfall.com/card/sld/83/lightning-bolt?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/4/5/45184cd7-b037-4a85-a063-e622ca928d17.jpg?1599352446", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/5/45184cd7-b037-4a85-a063-e622ca928d17.jpg?1599352446", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/4/5/45184cd7-b037-4a85-a063-e622ca928d17.jpg?1599352446", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/4/5/45184cd7-b037-4a85-a063-e622ca928d17.png?1599352446", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/5/45184cd7-b037-4a85-a063-e622ca928d17.jpg?1599352446", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/4/5/45184cd7-b037-4a85-a063-e622ca928d17.jpg?1599352446"}, "mana_cost": "{R}", "cmc": 1.0, "type_line": "Instant", "oracle_text": "Lightning Bolt deals 3 damage to any target.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "banned", "gladiator": "legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper"], "reserved": false, "foil": true, "nonfoil": false, "finishes": ["foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "4d92a8a7-ccb0-437d-abdc-9d70fc5ed672", "set": "sld", "set_name": "Secret Lair Drop", "set_type": "box", "set_uri": "https://api.scryfall.com/sets/4d92a8a7-ccb0-437d-abdc-9d70fc5ed672", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Asld&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/sld?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/45184cd7-b037-4a85-a063-e622ca928d17/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A4457ed35-7c10-48c8-9776-456485fdf070&unique=prints", "collector_number": "83", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Noah Bradley", "artist_ids": ["81995d11-da98-4f8b-89bd-b88ca2ddb06b"], "illustration_id": "928b4c38-1997-4a49-8ce4-d5e0b7d98f4e", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "edhrec_rank": 351, "preview": {"source": "Martin J\u016fza", "source_uri": "https://twitter.com/MartinJuza/status/1265015690693664774", "previewed_at": "2020-05-25"}, "prices": {"usd": null, "usd_foil": "4.97", "usd_etched": null, "eur": null, "eur_foil": "13.99", "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=485315", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Lightning+Bolt&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Lightning+Bolt&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Lightning+Bolt"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/214899?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Lightning+Bolt&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Lightning+Bolt&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "6fb94c1b-8002-4d79-add0-c4dfef9019ee", "oracle_id": "4457ed35-7c10-48c8-9776-456485fdf070", "multiverse_ids": [485316], "tcgplayer_id": 214901, "cardmarket_id": 464579, "name": "Lightning Bolt", "lang": "en", "released_at": "2020-06-04", "uri": "https://api.scryfall.com/cards/6fb94c1b-8002-4d79-add0-c4dfef9019ee", "scryfall_uri": "https://scryfall.com/card/sld/84/lightning-bolt?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/6/f/6fb94c1b-8002-4d79-add0-c4dfef9019ee.jpg?1599352358", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/f/6fb94c1b-8002-4d79-add0-c4dfef9019ee.jpg?1599352358", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/6/f/6fb94c1b-8002-4d79-add0-c4dfef9019ee.jpg?1599352358", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/6/f/6fb94c1b-8002-4d79-add0-c4dfef9019ee.png?1599352358", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/f/6fb94c1b-8002-4d79-add0-c4dfef9019ee.jpg?1599352358", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/6/f/6fb94c1b-8002-4d79-add0-c4dfef9019ee.jpg?1599352358"}, "mana_cost": "{R}", "cmc": 1.0, "type_line": "Instant", "oracle_text": "Lightning Bolt deals 3 damage to any target.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "banned", "gladiator": "legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper"], "reserved": false, "foil": true, "nonfoil": false, "finishes": ["foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "4d92a8a7-ccb0-437d-abdc-9d70fc5ed672", "set": "sld", "set_name": "Secret Lair Drop", "set_type": "box", "set_uri": "https://api.scryfall.com/sets/4d92a8a7-ccb0-437d-abdc-9d70fc5ed672", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Asld&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/sld?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/6fb94c1b-8002-4d79-add0-c4dfef9019ee/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A4457ed35-7c10-48c8-9776-456485fdf070&unique=prints", "collector_number": "84", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Brigitte Roka", "artist_ids": ["b50e3ea6-4daa-413c-bcbe-32b31c86c819"], "illustration_id": "533f83fb-50e3-4711-b496-9ff377ed9a99", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "edhrec_rank": 351, "preview": {"source": "Martin J\u016fza", "source_uri": "https://twitter.com/MartinJuza/status/1265015690693664774", "previewed_at": "2020-05-25"}, "prices": {"usd": null, "usd_foil": "5.65", "usd_etched": null, "eur": null, "eur_foil": "13.99", "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=485316", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Lightning+Bolt&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Lightning+Bolt&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Lightning+Bolt"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/214901?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Lightning+Bolt&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Lightning+Bolt&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "6ab06973-6440-4b12-8947-8c412500fa41", "oracle_id": "4457ed35-7c10-48c8-9776-456485fdf070", "multiverse_ids": [485317], "tcgplayer_id": 214900, "cardmarket_id": 464584, "name": "Lightning Bolt", "lang": "en", "released_at": "2020-06-04", "uri": "https://api.scryfall.com/cards/6ab06973-6440-4b12-8947-8c412500fa41", "scryfall_uri": "https://scryfall.com/card/sld/85/lightning-bolt?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/6/a/6ab06973-6440-4b12-8947-8c412500fa41.jpg?1599352361", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/a/6ab06973-6440-4b12-8947-8c412500fa41.jpg?1599352361", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/6/a/6ab06973-6440-4b12-8947-8c412500fa41.jpg?1599352361", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/6/a/6ab06973-6440-4b12-8947-8c412500fa41.png?1599352361", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/a/6ab06973-6440-4b12-8947-8c412500fa41.jpg?1599352361", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/6/a/6ab06973-6440-4b12-8947-8c412500fa41.jpg?1599352361"}, "mana_cost": "{R}", "cmc": 1.0, "type_line": "Instant", "oracle_text": "Lightning Bolt deals 3 damage to any target.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "banned", "gladiator": "legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper"], "reserved": false, "foil": true, "nonfoil": false, "finishes": ["foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "4d92a8a7-ccb0-437d-abdc-9d70fc5ed672", "set": "sld", "set_name": "Secret Lair Drop", "set_type": "box", "set_uri": "https://api.scryfall.com/sets/4d92a8a7-ccb0-437d-abdc-9d70fc5ed672", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Asld&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/sld?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/6ab06973-6440-4b12-8947-8c412500fa41/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A4457ed35-7c10-48c8-9776-456485fdf070&unique=prints", "collector_number": "85", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Robbie Trevino", "artist_ids": ["34f236c4-d646-4e48-9723-9df5f507754d"], "illustration_id": "71072321-4655-4565-b37f-698c8031869f", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "edhrec_rank": 351, "preview": {"source": "Martin J\u016fza", "source_uri": "https://twitter.com/MartinJuza/status/1265015690693664774", "previewed_at": "2020-05-25"}, "prices": {"usd": null, "usd_foil": "5.50", "usd_etched": null, "eur": null, "eur_foil": "13.99", "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=485317", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Lightning+Bolt&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Lightning+Bolt&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Lightning+Bolt"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/214900?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Lightning+Bolt&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Lightning+Bolt&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "c3eb3895-b64c-46ab-b704-3c46963920ba", "oracle_id": "4457ed35-7c10-48c8-9776-456485fdf070", "multiverse_ids": [485318], "tcgplayer_id": 214898, "cardmarket_id": 464589, "name": "Lightning Bolt", "lang": "en", "released_at": "2020-06-04", "uri": "https://api.scryfall.com/cards/c3eb3895-b64c-46ab-b704-3c46963920ba", "scryfall_uri": "https://scryfall.com/card/sld/86/lightning-bolt?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/c/3/c3eb3895-b64c-46ab-b704-3c46963920ba.jpg?1599352414", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/3/c3eb3895-b64c-46ab-b704-3c46963920ba.jpg?1599352414", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/c/3/c3eb3895-b64c-46ab-b704-3c46963920ba.jpg?1599352414", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/c/3/c3eb3895-b64c-46ab-b704-3c46963920ba.png?1599352414", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/3/c3eb3895-b64c-46ab-b704-3c46963920ba.jpg?1599352414", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/c/3/c3eb3895-b64c-46ab-b704-3c46963920ba.jpg?1599352414"}, "mana_cost": "{R}", "cmc": 1.0, "type_line": "Instant", "oracle_text": "Lightning Bolt deals 3 damage to any target.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "banned", "gladiator": "legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper"], "reserved": false, "foil": true, "nonfoil": false, "finishes": ["foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "4d92a8a7-ccb0-437d-abdc-9d70fc5ed672", "set": "sld", "set_name": "Secret Lair Drop", "set_type": "box", "set_uri": "https://api.scryfall.com/sets/4d92a8a7-ccb0-437d-abdc-9d70fc5ed672", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Asld&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/sld?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/c3eb3895-b64c-46ab-b704-3c46963920ba/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A4457ed35-7c10-48c8-9776-456485fdf070&unique=prints", "collector_number": "86", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Alexis Ziritt", "artist_ids": ["add4cc84-9254-4c0b-8fcd-af4a238bdbd5"], "illustration_id": "e046c605-7f9f-4f48-be65-a3a7785cfb18", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "edhrec_rank": 351, "preview": {"source": "Martin J\u016fza", "source_uri": "https://twitter.com/MartinJuza/status/1265015690693664774", "previewed_at": "2020-05-25"}, "prices": {"usd": null, "usd_foil": "5.60", "usd_etched": null, "eur": null, "eur_foil": "13.99", "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=485318", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Lightning+Bolt&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Lightning+Bolt&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Lightning+Bolt"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/214898?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Lightning+Bolt&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Lightning+Bolt&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "ff204024-20a5-4bb9-82b6-f6b4337efd60", "oracle_id": "4457ed35-7c10-48c8-9776-456485fdf070", "multiverse_ids": [], "tcgplayer_id": 181716, "cardmarket_id": 367404, "name": "Lightning Bolt", "lang": "en", "released_at": "2019-01-01", "uri": "https://api.scryfall.com/cards/ff204024-20a5-4bb9-82b6-f6b4337efd60", "scryfall_uri": "https://scryfall.com/card/pf19/1/lightning-bolt?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/f/f/ff204024-20a5-4bb9-82b6-f6b4337efd60.jpg?1552226335", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/f/ff204024-20a5-4bb9-82b6-f6b4337efd60.jpg?1552226335", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/f/f/ff204024-20a5-4bb9-82b6-f6b4337efd60.jpg?1552226335", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/f/f/ff204024-20a5-4bb9-82b6-f6b4337efd60.png?1552226335", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/f/ff204024-20a5-4bb9-82b6-f6b4337efd60.jpg?1552226335", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/f/f/ff204024-20a5-4bb9-82b6-f6b4337efd60.jpg?1552226335"}, "mana_cost": "{R}", "cmc": 1.0, "type_line": "Instant", "oracle_text": "Lightning Bolt deals 3 damage to any target.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "banned", "gladiator": "legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": true, "reprint": true, "variation": false, "set_id": "3d0d0d5b-e6d6-4dea-9250-5cea04725638", "set": "pf19", "set_name": "MagicFest 2019", "set_type": "promo", "set_uri": "https://api.scryfall.com/sets/3d0d0d5b-e6d6-4dea-9250-5cea04725638", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Apf19&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/pf19?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/ff204024-20a5-4bb9-82b6-f6b4337efd60/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A4457ed35-7c10-48c8-9776-456485fdf070&unique=prints", "collector_number": "1", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Kekai Kotaki", "artist_ids": ["4b771085-c049-4308-930d-ec9665f803a4"], "illustration_id": "64e4a81f-06d1-4c69-9fd6-d585c445c5ad", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": true, "textless": true, "booster": false, "story_spotlight": false, "edhrec_rank": 351, "prices": {"usd": "2.23", "usd_foil": "4.07", "usd_etched": null, "eur": "4.86", "eur_foil": "9.00", "tix": null}, "related_uris": {"tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Lightning+Bolt&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Lightning+Bolt&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Lightning+Bolt"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/181716?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Lightning+Bolt&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Lightning+Bolt&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "28708c8c-4336-4d04-b43a-59a31471a9f6", "oracle_id": "4457ed35-7c10-48c8-9776-456485fdf070", "multiverse_ids": [], "tcgplayer_id": 38317, "cardmarket_id": 21797, "name": "Lightning Bolt", "lang": "en", "released_at": "2010-01-01", "uri": "https://api.scryfall.com/cards/28708c8c-4336-4d04-b43a-59a31471a9f6", "scryfall_uri": "https://scryfall.com/card/p10/1/lightning-bolt?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/2/8/28708c8c-4336-4d04-b43a-59a31471a9f6.jpg?1561756817", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/8/28708c8c-4336-4d04-b43a-59a31471a9f6.jpg?1561756817", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/2/8/28708c8c-4336-4d04-b43a-59a31471a9f6.jpg?1561756817", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/2/8/28708c8c-4336-4d04-b43a-59a31471a9f6.png?1561756817", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/8/28708c8c-4336-4d04-b43a-59a31471a9f6.jpg?1561756817", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/2/8/28708c8c-4336-4d04-b43a-59a31471a9f6.jpg?1561756817"}, "mana_cost": "{R}", "cmc": 1.0, "type_line": "Instant", "oracle_text": "Lightning Bolt deals 3 damage to any target.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "banned", "gladiator": "legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper"], "reserved": false, "foil": true, "nonfoil": false, "finishes": ["foil"], "oversized": false, "promo": true, "reprint": true, "variation": false, "set_id": "d871e33b-7086-4549-89d6-fedd4422161f", "set": "p10", "set_name": "Magic Player Rewards 2010", "set_type": "promo", "set_uri": "https://api.scryfall.com/sets/d871e33b-7086-4549-89d6-fedd4422161f", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ap10&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/p10?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/28708c8c-4336-4d04-b43a-59a31471a9f6/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A4457ed35-7c10-48c8-9776-456485fdf070&unique=prints", "collector_number": "1", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "V\u00e9ronique Meignaud", "artist_ids": ["41084244-a313-4d14-8123-db05855f9cfe"], "illustration_id": "8b6a845f-00a7-416b-a421-6527fff0873d", "border_color": "black", "frame": "2003", "full_art": true, "textless": true, "booster": false, "story_spotlight": false, "promo_types": ["playerrewards"], "edhrec_rank": 351, "prices": {"usd": null, "usd_foil": "29.43", "usd_etched": null, "eur": null, "eur_foil": "11.40", "tix": null}, "related_uris": {"tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Lightning+Bolt&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Lightning+Bolt&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Lightning+Bolt"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/38317?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Lightning+Bolt&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Lightning+Bolt&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "613789fe-fac1-4200-b0a1-c84d1fa27cff", "oracle_id": "800c258a-cfc4-4a54-a667-065ea8dea69e", "multiverse_ids": [249386], "mtgo_id": 42182, "mtgo_foil_id": 42183, "tcgplayer_id": 52103, "cardmarket_id": 250498, "name": "Lightning Helix", "lang": "en", "released_at": "2011-09-02", "uri": "https://api.scryfall.com/cards/613789fe-fac1-4200-b0a1-c84d1fa27cff", "scryfall_uri": "https://scryfall.com/card/ddh/23/lightning-helix?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/6/1/613789fe-fac1-4200-b0a1-c84d1fa27cff.jpg?1562917870", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/1/613789fe-fac1-4200-b0a1-c84d1fa27cff.jpg?1562917870", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/6/1/613789fe-fac1-4200-b0a1-c84d1fa27cff.jpg?1562917870", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/6/1/613789fe-fac1-4200-b0a1-c84d1fa27cff.png?1562917870", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/1/613789fe-fac1-4200-b0a1-c84d1fa27cff.jpg?1562917870", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/6/1/613789fe-fac1-4200-b0a1-c84d1fa27cff.jpg?1562917870"}, "mana_cost": "{R}{W}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Lightning Helix deals 3 damage to any target and you gain 3 life.", "colors": ["R", "W"], "color_identity": ["R", "W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "bad1fe7e-27df-4999-821b-d477c2ec658d", "set": "ddh", "set_name": "Duel Decks: Ajani vs. Nicol Bolas", "set_type": "duel_deck", "set_uri": "https://api.scryfall.com/sets/bad1fe7e-27df-4999-821b-d477c2ec658d", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Addh&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ddh?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/613789fe-fac1-4200-b0a1-c84d1fa27cff/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A800c258a-cfc4-4a54-a667-065ea8dea69e&unique=prints", "collector_number": "23", "digital": false, "rarity": "uncommon", "flavor_text": "\"Rage is not the answer. Rage followed by fitting vengeance is the answer.\"\n\u2014Ajani", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Raymond Swanland", "artist_ids": ["e956bacc-077d-4c12-b6bc-ba798b718af9"], "illustration_id": "85bdd8b1-f1a7-4a9c-b3e4-339867992878", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "edhrec_rank": 3819, "prices": {"usd": "0.77", "usd_foil": null, "usd_etched": null, "eur": "0.74", "eur_foil": null, "tix": "0.27"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=249386", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Lightning+Helix&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Lightning+Helix&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Lightning+Helix"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/52103?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Lightning+Helix&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/42182?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "1b2ecf55-c1cc-4b28-b7ce-e1b25305155e", "oracle_id": "800c258a-cfc4-4a54-a667-065ea8dea69e", "multiverse_ids": [87908], "mtgo_id": 23154, "mtgo_foil_id": 23155, "tcgplayer_id": 13342, "cardmarket_id": 13451, "name": "Lightning Helix", "lang": "en", "released_at": "2005-10-07", "uri": "https://api.scryfall.com/cards/1b2ecf55-c1cc-4b28-b7ce-e1b25305155e", "scryfall_uri": "https://scryfall.com/card/rav/213/lightning-helix?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/1/b/1b2ecf55-c1cc-4b28-b7ce-e1b25305155e.jpg?1598917140", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/b/1b2ecf55-c1cc-4b28-b7ce-e1b25305155e.jpg?1598917140", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/1/b/1b2ecf55-c1cc-4b28-b7ce-e1b25305155e.jpg?1598917140", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/1/b/1b2ecf55-c1cc-4b28-b7ce-e1b25305155e.png?1598917140", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/b/1b2ecf55-c1cc-4b28-b7ce-e1b25305155e.jpg?1598917140", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/1/b/1b2ecf55-c1cc-4b28-b7ce-e1b25305155e.jpg?1598917140"}, "mana_cost": "{R}{W}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Lightning Helix deals 3 damage to any target and you gain 3 life.", "colors": ["R", "W"], "color_identity": ["R", "W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "15fccbe8-2825-41ca-9d0a-67aebdf91c4a", "set": "rav", "set_name": "Ravnica: City of Guilds", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/15fccbe8-2825-41ca-9d0a-67aebdf91c4a", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Arav&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/rav?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/1b2ecf55-c1cc-4b28-b7ce-e1b25305155e/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A800c258a-cfc4-4a54-a667-065ea8dea69e&unique=prints", "collector_number": "213", "digital": false, "rarity": "uncommon", "watermark": "boros", "flavor_text": "Though less well-known than its army of soldiers, the Boros Legion's mage-priests are as respected by the innocent as they are hated by the ghosts of the guilty.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Kev Walker", "artist_ids": ["f366a0ee-a0cd-466d-ba6a-90058c7a31a6"], "illustration_id": "ee1b237c-4840-4616-b5fa-5887445c509f", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 3819, "prices": {"usd": "1.50", "usd_foil": "20.41", "usd_etched": null, "eur": "0.38", "eur_foil": "9.00", "tix": "0.04"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=87908", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Lightning+Helix&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Lightning+Helix&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Lightning+Helix"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/13342?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Lightning+Helix&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/23154?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "227ac87a-7196-40d0-ab00-98ebafcca09a", "oracle_id": "800c258a-cfc4-4a54-a667-065ea8dea69e", "multiverse_ids": [517612], "mtgo_id": 89181, "arena_id": 77541, "tcgplayer_id": 235493, "tcgplayer_etched_id": 235494, "cardmarket_id": 556924, "name": "Lightning Helix", "lang": "en", "released_at": "2021-04-23", "uri": "https://api.scryfall.com/cards/227ac87a-7196-40d0-ab00-98ebafcca09a", "scryfall_uri": "https://scryfall.com/card/sta/62/lightning-helix?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/2/2/227ac87a-7196-40d0-ab00-98ebafcca09a.jpg?1624065725", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/2/227ac87a-7196-40d0-ab00-98ebafcca09a.jpg?1624065725", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/2/2/227ac87a-7196-40d0-ab00-98ebafcca09a.jpg?1624065725", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/2/2/227ac87a-7196-40d0-ab00-98ebafcca09a.png?1624065725", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/2/227ac87a-7196-40d0-ab00-98ebafcca09a.jpg?1624065725", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/2/2/227ac87a-7196-40d0-ab00-98ebafcca09a.jpg?1624065725"}, "mana_cost": "{R}{W}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Lightning Helix deals 3 damage to any target and you gain 3 life.", "colors": ["R", "W"], "color_identity": ["R", "W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil", "etched"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "5064a720-907f-4cb6-a425-766dc1dd7374", "set": "sta", "set_name": "Strixhaven Mystical Archive", "set_type": "masterpiece", "set_uri": "https://api.scryfall.com/sets/5064a720-907f-4cb6-a425-766dc1dd7374", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Asta&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/sta?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/227ac87a-7196-40d0-ab00-98ebafcca09a/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A800c258a-cfc4-4a54-a667-065ea8dea69e&unique=prints", "collector_number": "62", "digital": false, "rarity": "rare", "flavor_text": "\"Mages in the Blood Age would call down actual thunderstorms on their enemies. I bet we can replicate their technique.\"\n\u2014Dradiel, Lorehold mage-student", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Minttu Hynninen", "artist_ids": ["95f2b92b-3031-4abb-85f1-bcebf0a032f5"], "illustration_id": "e6ba92bd-b674-4ce9-ac6a-b97e4fa7de92", "border_color": "borderless", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "edhrec_rank": 3819, "preview": {"source": "Gail Simone", "source_uri": "https://twitter.com/GailSimone/status/1375495500120530944", "previewed_at": "2021-03-26"}, "prices": {"usd": "0.95", "usd_foil": "2.78", "usd_etched": "1.62", "eur": "0.48", "eur_foil": "2.50", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=517612", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Lightning+Helix&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Lightning+Helix&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Lightning+Helix"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/235493?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Lightning+Helix&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/89181?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "4ec9e67b-1b4e-4e4e-9758-be697d308f16", "oracle_id": "800c258a-cfc4-4a54-a667-065ea8dea69e", "multiverse_ids": [], "tcgplayer_id": 38318, "cardmarket_id": 17580, "name": "Lightning Helix", "lang": "en", "released_at": "2006-01-01", "uri": "https://api.scryfall.com/cards/4ec9e67b-1b4e-4e4e-9758-be697d308f16", "scryfall_uri": "https://scryfall.com/card/p06/7/lightning-helix?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/4/e/4ec9e67b-1b4e-4e4e-9758-be697d308f16.jpg?1561757108", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/e/4ec9e67b-1b4e-4e4e-9758-be697d308f16.jpg?1561757108", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/4/e/4ec9e67b-1b4e-4e4e-9758-be697d308f16.jpg?1561757108", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/4/e/4ec9e67b-1b4e-4e4e-9758-be697d308f16.png?1561757108", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/e/4ec9e67b-1b4e-4e4e-9758-be697d308f16.jpg?1561757108", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/4/e/4ec9e67b-1b4e-4e4e-9758-be697d308f16.jpg?1561757108"}, "mana_cost": "{R}{W}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Lightning Helix deals 3 damage to any target and you gain 3 life.", "colors": ["R", "W"], "color_identity": ["R", "W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": true, "reprint": true, "variation": false, "set_id": "619f656b-94dc-4772-bc99-62bac48f1eb9", "set": "p06", "set_name": "Magic Player Rewards 2006", "set_type": "promo", "set_uri": "https://api.scryfall.com/sets/619f656b-94dc-4772-bc99-62bac48f1eb9", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ap06&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/p06?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/4ec9e67b-1b4e-4e4e-9758-be697d308f16/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A800c258a-cfc4-4a54-a667-065ea8dea69e&unique=prints", "collector_number": "7", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Kev Walker", "artist_ids": ["f366a0ee-a0cd-466d-ba6a-90058c7a31a6"], "illustration_id": "f4e32208-fe53-4fd1-a3a6-38aebb461a7e", "border_color": "black", "frame": "2003", "full_art": true, "textless": true, "booster": false, "story_spotlight": false, "promo_types": ["playerrewards"], "edhrec_rank": 3819, "prices": {"usd": "16.80", "usd_foil": null, "usd_etched": null, "eur": "4.00", "eur_foil": null, "tix": null}, "related_uris": {"tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Lightning+Helix&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Lightning+Helix&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Lightning+Helix"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/38318?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Lightning+Helix&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Lightning+Helix&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "c1ccaeed-9670-4432-8a45-d5c06119fa9f", "oracle_id": "a6f6b062-cd7e-4631-9921-40e054ab835d", "multiverse_ids": [398538], "mtgo_id": 58020, "mtgo_foil_id": 58021, "tcgplayer_id": 99763, "cardmarket_id": 283184, "name": "Lightning Javelin", "lang": "en", "released_at": "2015-07-17", "uri": "https://api.scryfall.com/cards/c1ccaeed-9670-4432-8a45-d5c06119fa9f", "scryfall_uri": "https://scryfall.com/card/ori/153/lightning-javelin?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/c/1/c1ccaeed-9670-4432-8a45-d5c06119fa9f.jpg?1562040115", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/1/c1ccaeed-9670-4432-8a45-d5c06119fa9f.jpg?1562040115", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/c/1/c1ccaeed-9670-4432-8a45-d5c06119fa9f.jpg?1562040115", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/c/1/c1ccaeed-9670-4432-8a45-d5c06119fa9f.png?1562040115", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/1/c1ccaeed-9670-4432-8a45-d5c06119fa9f.jpg?1562040115", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/c/1/c1ccaeed-9670-4432-8a45-d5c06119fa9f.jpg?1562040115"}, "mana_cost": "{3}{R}", "cmc": 4.0, "type_line": "Sorcery", "oracle_text": "Lightning Javelin deals 3 damage to any target. Scry 1. (Look at the top card of your library. You may put that card on the bottom of your library.)", "colors": ["R"], "color_identity": ["R"], "keywords": ["Scry"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "0eeb9a9a-20ac-404d-b55f-aeb7a43a7f62", "set": "ori", "set_name": "Magic Origins", "set_type": "core", "set_uri": "https://api.scryfall.com/sets/0eeb9a9a-20ac-404d-b55f-aeb7a43a7f62", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aori&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ori?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/c1ccaeed-9670-4432-8a45-d5c06119fa9f/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aa6f6b062-cd7e-4631-9921-40e054ab835d&unique=prints", "collector_number": "153", "digital": false, "rarity": "common", "flavor_text": "The harpies descended without mercy upon Akros, only to find their attack put them within range of the javelineers.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Seb McKinnon", "artist_ids": ["ad4caca0-8d89-44ce-a1a6-d5ca905bd6fb"], "illustration_id": "aeffa2bd-4c04-482e-bd7a-8661f057297f", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 18491, "penny_rank": 3940, "prices": {"usd": "0.01", "usd_foil": "0.30", "usd_etched": null, "eur": "0.05", "eur_foil": "0.35", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=398538", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Lightning+Javelin&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Lightning+Javelin&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Lightning+Javelin"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/99763?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Lightning+Javelin&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/58020?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "c9c0388e-a04c-4757-a06d-8e8046f5a783", "oracle_id": "2c0fceb6-d92d-4f4a-85a2-0af5be5bba81", "multiverse_ids": [121495], "mtgo_id": 24773, "mtgo_foil_id": 24774, "tcgplayer_id": 14073, "cardmarket_id": 13680, "name": "Lightning Storm", "lang": "en", "released_at": "2006-07-21", "uri": "https://api.scryfall.com/cards/c9c0388e-a04c-4757-a06d-8e8046f5a783", "scryfall_uri": "https://scryfall.com/card/csp/89/lightning-storm?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/c/9/c9c0388e-a04c-4757-a06d-8e8046f5a783.jpg?1593275279", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/9/c9c0388e-a04c-4757-a06d-8e8046f5a783.jpg?1593275279", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/c/9/c9c0388e-a04c-4757-a06d-8e8046f5a783.jpg?1593275279", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/c/9/c9c0388e-a04c-4757-a06d-8e8046f5a783.png?1593275279", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/9/c9c0388e-a04c-4757-a06d-8e8046f5a783.jpg?1593275279", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/c/9/c9c0388e-a04c-4757-a06d-8e8046f5a783.jpg?1593275279"}, "mana_cost": "{1}{R}{R}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Lightning Storm deals X damage to any target, where X is 3 plus the number of charge counters on Lightning Storm.\nDiscard a land card: Put two charge counters on Lightning Storm. You may choose a new target for it. Any player may activate this ability but only if Lightning Storm is on the stack.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "1f4f105f-73e4-4f03-849e-82a204807847", "set": "csp", "set_name": "Coldsnap", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/1f4f105f-73e4-4f03-849e-82a204807847", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Acsp&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/csp?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/c9c0388e-a04c-4757-a06d-8e8046f5a783/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A2c0fceb6-d92d-4f4a-85a2-0af5be5bba81&unique=prints", "collector_number": "89", "digital": false, "rarity": "uncommon", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Luca Zontini", "artist_ids": ["aa57d42a-72c1-4d94-a200-3571233c4b20"], "illustration_id": "4112d855-56fa-4dbe-b3ed-4162e12de7cf", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 15760, "penny_rank": 780, "prices": {"usd": "0.22", "usd_foil": "2.69", "usd_etched": null, "eur": "0.40", "eur_foil": "0.95", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=121495", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Lightning+Storm&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Lightning+Storm&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Lightning+Storm"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/14073?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Lightning+Storm&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/24773?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "f0f55dee-7e39-4183-8e74-844d9c299bf5", "oracle_id": "f34b9bc4-7bfe-47fd-ba23-4eeeb46026eb", "multiverse_ids": [435303], "mtgo_id": 65314, "mtgo_foil_id": 65315, "arena_id": 66263, "tcgplayer_id": 144831, "cardmarket_id": 301313, "name": "Lightning Strike", "lang": "en", "released_at": "2017-09-29", "uri": "https://api.scryfall.com/cards/f0f55dee-7e39-4183-8e74-844d9c299bf5", "scryfall_uri": "https://scryfall.com/card/xln/149/lightning-strike?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/f/0/f0f55dee-7e39-4183-8e74-844d9c299bf5.jpg?1562566447", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/0/f0f55dee-7e39-4183-8e74-844d9c299bf5.jpg?1562566447", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/f/0/f0f55dee-7e39-4183-8e74-844d9c299bf5.jpg?1562566447", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/f/0/f0f55dee-7e39-4183-8e74-844d9c299bf5.png?1562566447", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/0/f0f55dee-7e39-4183-8e74-844d9c299bf5.jpg?1562566447", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/f/0/f0f55dee-7e39-4183-8e74-844d9c299bf5.jpg?1562566447"}, "mana_cost": "{1}{R}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Lightning Strike deals 3 damage to any target.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "fe0dad85-54bc-4151-9200-d68da84dd0f2", "set": "xln", "set_name": "Ixalan", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/fe0dad85-54bc-4151-9200-d68da84dd0f2", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Axln&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/xln?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/f0f55dee-7e39-4183-8e74-844d9c299bf5/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Af34b9bc4-7bfe-47fd-ba23-4eeeb46026eb&unique=prints", "collector_number": "149", "digital": false, "rarity": "uncommon", "flavor_text": "\"Storm on the horizon, cap'n!\"\n\u2014Grick Doobin, last words", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Craig J Spearing", "artist_ids": ["b0f15e74-0dd6-4156-959e-c5e30c5cdc52"], "illustration_id": "0efac8d8-818d-4951-9f53-13b40eca1160", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 5096, "penny_rank": 951, "prices": {"usd": "0.10", "usd_foil": "0.87", "usd_etched": null, "eur": "0.02", "eur_foil": "0.20", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=435303", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Lightning+Strike&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Lightning+Strike&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Lightning+Strike"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/144831?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Lightning+Strike&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/65314?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "bbb03f2e-2b92-4aa1-afae-301ed5d151d3", "oracle_id": "f34b9bc4-7bfe-47fd-ba23-4eeeb46026eb", "multiverse_ids": [373651], "mtgo_id": 50572, "mtgo_foil_id": 50573, "tcgplayer_id": 71167, "cardmarket_id": 264103, "name": "Lightning Strike", "lang": "en", "released_at": "2013-09-27", "uri": "https://api.scryfall.com/cards/bbb03f2e-2b92-4aa1-afae-301ed5d151d3", "scryfall_uri": "https://scryfall.com/card/ths/127/lightning-strike?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/b/b/bbb03f2e-2b92-4aa1-afae-301ed5d151d3.jpg?1562827848", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/b/bbb03f2e-2b92-4aa1-afae-301ed5d151d3.jpg?1562827848", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/b/b/bbb03f2e-2b92-4aa1-afae-301ed5d151d3.jpg?1562827848", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/b/b/bbb03f2e-2b92-4aa1-afae-301ed5d151d3.png?1562827848", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/b/bbb03f2e-2b92-4aa1-afae-301ed5d151d3.jpg?1562827848", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/b/b/bbb03f2e-2b92-4aa1-afae-301ed5d151d3.jpg?1562827848"}, "mana_cost": "{1}{R}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Lightning Strike deals 3 damage to any target.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "69093d6f-e25a-41a4-8cf5-688d7f11c0fb", "set": "ths", "set_name": "Theros", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/69093d6f-e25a-41a4-8cf5-688d7f11c0fb", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aths&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ths?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/bbb03f2e-2b92-4aa1-afae-301ed5d151d3/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Af34b9bc4-7bfe-47fd-ba23-4eeeb46026eb&unique=prints", "collector_number": "127", "digital": false, "rarity": "common", "flavor_text": "\"The hand of Keranos can be seen in every rumbling storm cloud. Best not to stand where he points.\"\n\u2014Rakleia of Shrine Peak", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Adam Paquette", "artist_ids": ["89023dad-e6c0-41e0-83fb-eb2bfbbdc3f2"], "illustration_id": "a2c7a008-b897-4f90-92cb-bfa6bb35b6b4", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 5096, "penny_rank": 951, "prices": {"usd": "0.10", "usd_foil": "1.79", "usd_etched": null, "eur": "0.02", "eur_foil": "1.35", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=373651", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Lightning+Strike&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Lightning+Strike&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Lightning+Strike"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/71167?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Lightning+Strike&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/50572?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "0452d78d-eafc-4ccb-a478-d1f46bcefffe", "oracle_id": "dc55e69e-e1b8-4129-902c-c71bcb952418", "multiverse_ids": [34208], "mtgo_id": 17552, "mtgo_foil_id": 17553, "tcgplayer_id": 10256, "cardmarket_id": 2222, "name": "Lightning Surge", "lang": "en", "released_at": "2002-05-27", "uri": "https://api.scryfall.com/cards/0452d78d-eafc-4ccb-a478-d1f46bcefffe", "scryfall_uri": "https://scryfall.com/card/jud/96/lightning-surge?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/0/4/0452d78d-eafc-4ccb-a478-d1f46bcefffe.jpg?1562628459", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/4/0452d78d-eafc-4ccb-a478-d1f46bcefffe.jpg?1562628459", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/0/4/0452d78d-eafc-4ccb-a478-d1f46bcefffe.jpg?1562628459", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/0/4/0452d78d-eafc-4ccb-a478-d1f46bcefffe.png?1562628459", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/4/0452d78d-eafc-4ccb-a478-d1f46bcefffe.jpg?1562628459", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/0/4/0452d78d-eafc-4ccb-a478-d1f46bcefffe.jpg?1562628459"}, "mana_cost": "{3}{R}{R}", "cmc": 5.0, "type_line": "Sorcery", "oracle_text": "Lightning Surge deals 4 damage to any target.\nThreshold \u2014 If seven or more cards are in your graveyard, instead Lightning Surge deals 6 damage to that permanent or player and the damage can't be prevented.\nFlashback {5}{R}{R} (You may cast this card from your graveyard for its flashback cost. Then exile it.)", "colors": ["R"], "color_identity": ["R"], "keywords": ["Threshold", "Flashback"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "cd82de1a-36fd-4618-bfe8-b45532a582d9", "set": "jud", "set_name": "Judgment", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/cd82de1a-36fd-4618-bfe8-b45532a582d9", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ajud&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/jud?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/0452d78d-eafc-4ccb-a478-d1f46bcefffe/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Adc55e69e-e1b8-4129-902c-c71bcb952418&unique=prints", "collector_number": "96", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Ron Spears", "artist_ids": ["fce9030b-86bd-4439-b06a-920a1eeb184c"], "illustration_id": "8c0f160b-123a-4b0b-a550-1d95eeffce4f", "border_color": "black", "frame": "1997", "frame_effects": ["tombstone"], "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 20013, "penny_rank": 4485, "prices": {"usd": "0.23", "usd_foil": "3.46", "usd_etched": null, "eur": "0.39", "eur_foil": "5.50", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=34208", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Lightning+Surge&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Lightning+Surge&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Lightning+Surge"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/10256?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Lightning+Surge&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/17552?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "7de68154-3b82-4a94-98a6-cfc49d359e4e", "oracle_id": "4669926b-93f9-4d80-aee3-492fbf8e0a0a", "multiverse_ids": [534925], "mtgo_id": 93264, "arena_id": 78496, "tcgplayer_id": 247862, "cardmarket_id": 574726, "name": "Light Up the Night", "lang": "en", "released_at": "2021-09-24", "uri": "https://api.scryfall.com/cards/7de68154-3b82-4a94-98a6-cfc49d359e4e", "scryfall_uri": "https://scryfall.com/card/mid/146/light-up-the-night?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/7/d/7de68154-3b82-4a94-98a6-cfc49d359e4e.jpg?1636223152", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/d/7de68154-3b82-4a94-98a6-cfc49d359e4e.jpg?1636223152", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/7/d/7de68154-3b82-4a94-98a6-cfc49d359e4e.jpg?1636223152", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/7/d/7de68154-3b82-4a94-98a6-cfc49d359e4e.png?1636223152", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/d/7de68154-3b82-4a94-98a6-cfc49d359e4e.jpg?1636223152", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/7/d/7de68154-3b82-4a94-98a6-cfc49d359e4e.jpg?1636223152"}, "mana_cost": "{X}{R}", "cmc": 1.0, "type_line": "Sorcery", "oracle_text": "Light Up the Night deals X damage to any target. It deals X plus 1 damage instead if that target is a creature or planeswalker.\nFlashback\u2014{3}{R}, Remove X loyalty counters from among planeswalkers you control. If you cast this spell this way, X can't be 0. (You may cast this card from your graveyard for its flashback cost. Then exile it.)", "colors": ["R"], "color_identity": ["R"], "keywords": ["Flashback"], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "44b8eb8f-fa23-401a-98b5-1fbb9871128e", "set": "mid", "set_name": "Innistrad: Midnight Hunt", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/44b8eb8f-fa23-401a-98b5-1fbb9871128e", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Amid&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/mid?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/7de68154-3b82-4a94-98a6-cfc49d359e4e/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A4669926b-93f9-4d80-aee3-492fbf8e0a0a&unique=prints", "collector_number": "146", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Wei Wei", "artist_ids": ["8653c534-a280-4e96-8426-0dc0578e64f7"], "illustration_id": "ecfda3ec-1dd9-4266-be8b-9703dbec23ed", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": true, "story_spotlight": true, "edhrec_rank": 11422, "penny_rank": 7892, "preview": {"source": "Sean Plott (Day9TV)", "source_uri": "https://twitter.com/day9tv/status/1433459711857152008", "previewed_at": "2021-09-02"}, "prices": {"usd": "0.12", "usd_foil": "0.16", "usd_etched": null, "eur": "0.09", "eur_foil": "1.00", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=534925", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Light+Up+the+Night&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Light+Up+the+Night&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Light+Up+the+Night"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/247862?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Light+Up+the+Night&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/93264?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "e4f0885f-1049-4a19-853d-f4e6d4bec29e", "oracle_id": "107becb1-f8a3-4777-b39f-a0456c2d580e", "multiverse_ids": [513691], "mtgo_id": 88905, "arena_id": 76607, "tcgplayer_id": 233272, "cardmarket_id": 540476, "name": "Lorehold Command", "lang": "en", "released_at": "2021-04-23", "uri": "https://api.scryfall.com/cards/e4f0885f-1049-4a19-853d-f4e6d4bec29e", "scryfall_uri": "https://scryfall.com/card/stx/199/lorehold-command?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/e/4/e4f0885f-1049-4a19-853d-f4e6d4bec29e.jpg?1627429447", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/4/e4f0885f-1049-4a19-853d-f4e6d4bec29e.jpg?1627429447", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/e/4/e4f0885f-1049-4a19-853d-f4e6d4bec29e.jpg?1627429447", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/e/4/e4f0885f-1049-4a19-853d-f4e6d4bec29e.png?1627429447", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/4/e4f0885f-1049-4a19-853d-f4e6d4bec29e.jpg?1627429447", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/e/4/e4f0885f-1049-4a19-853d-f4e6d4bec29e.jpg?1627429447"}, "mana_cost": "{3}{R}{W}", "cmc": 5.0, "type_line": "Instant", "oracle_text": "Choose two \u2014\n\u2022 Create a 3/2 red and white Spirit creature token.\n\u2022 Creatures you control get +1/+0 and gain indestructible and haste until end of turn.\n\u2022 Lorehold Command deals 3 damage to any target. Target player gains 3 life.\n\u2022 Sacrifice a permanent, then draw two cards.", "colors": ["R", "W"], "color_identity": ["R", "W"], "keywords": [], "all_parts": [{"object": "related_card", "id": "e4f0885f-1049-4a19-853d-f4e6d4bec29e", "component": "combo_piece", "name": "Lorehold Command", "type_line": "Instant", "uri": "https://api.scryfall.com/cards/e4f0885f-1049-4a19-853d-f4e6d4bec29e"}, {"object": "related_card", "id": "f98c0167-7434-4607-87c4-315fa8b6972e", "component": "token", "name": "Spirit", "type_line": "Token Creature \u2014 Spirit", "uri": "https://api.scryfall.com/cards/f98c0167-7434-4607-87c4-315fa8b6972e"}], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "541c3c28-8747-40e5-a231-8e8f33234859", "set": "stx", "set_name": "Strixhaven: School of Mages", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/541c3c28-8747-40e5-a231-8e8f33234859", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Astx&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/stx?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/e4f0885f-1049-4a19-853d-f4e6d4bec29e/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A107becb1-f8a3-4777-b39f-a0456c2d580e&unique=prints", "collector_number": "199", "digital": false, "rarity": "rare", "watermark": "lorehold", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Jason Rainville", "artist_ids": ["6ed7e669-579b-443d-b223-e5cbcb2a7483"], "illustration_id": "4009fad3-a87d-4bc5-818a-de00b7c44f5c", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 4503, "penny_rank": 5004, "prices": {"usd": "0.15", "usd_foil": "0.24", "usd_etched": null, "eur": "0.17", "eur_foil": "0.50", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=513691", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Lorehold+Command&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Lorehold+Command&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Lorehold+Command"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/233272?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Lorehold+Command&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/88905?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "e9e43349-429c-43f7-b808-c4bf37370a9f", "oracle_id": "5e642112-9592-475f-ba03-d71544270cfa", "multiverse_ids": [19617], "mtgo_id": 13229, "mtgo_foil_id": 13230, "tcgplayer_id": 6598, "cardmarket_id": 11576, "name": "Lunge", "lang": "en", "released_at": "1999-10-04", "uri": "https://api.scryfall.com/cards/e9e43349-429c-43f7-b808-c4bf37370a9f", "scryfall_uri": "https://scryfall.com/card/mmq/203/lunge?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/e/9/e9e43349-429c-43f7-b808-c4bf37370a9f.jpg?1562383530", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/9/e9e43349-429c-43f7-b808-c4bf37370a9f.jpg?1562383530", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/e/9/e9e43349-429c-43f7-b808-c4bf37370a9f.jpg?1562383530", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/e/9/e9e43349-429c-43f7-b808-c4bf37370a9f.png?1562383530", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/9/e9e43349-429c-43f7-b808-c4bf37370a9f.jpg?1562383530", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/e/9/e9e43349-429c-43f7-b808-c4bf37370a9f.jpg?1562383530"}, "mana_cost": "{2}{R}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Lunge deals 2 damage to target creature and 2 damage to target player or planeswalker.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "385e11a4-492b-4d07-b4a6-a1409ef829b8", "set": "mmq", "set_name": "Mercadian Masques", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/385e11a4-492b-4d07-b4a6-a1409ef829b8", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ammq&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/mmq?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/e9e43349-429c-43f7-b808-c4bf37370a9f/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A5e642112-9592-475f-ba03-d71544270cfa&unique=prints", "collector_number": "203", "digital": false, "rarity": "common", "flavor_text": "Cho-Arrim righteousness was no match for Benalish combat training.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Dan Frazier", "artist_ids": ["059bba56-5feb-42e4-8c2e-e2f1e6ba11f9"], "illustration_id": "6468f5d7-4d90-4d91-af8d-c012eaa0a095", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 21802, "prices": {"usd": "0.12", "usd_foil": "0.39", "usd_etched": null, "eur": "0.05", "eur_foil": "1.49", "tix": "0.09"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=19617", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Lunge&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Lunge&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Lunge"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/6598?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Lunge&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/13229?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "d9752bc3-0bdf-4657-8750-73c8cbc8e83f", "oracle_id": "f5af6d60-decd-4e04-8841-da2d3000a405", "multiverse_ids": [25944], "mtgo_id": 15253, "mtgo_foil_id": 15254, "tcgplayer_id": 7823, "cardmarket_id": 3321, "name": "Magma Burst", "lang": "en", "released_at": "2001-02-05", "uri": "https://api.scryfall.com/cards/d9752bc3-0bdf-4657-8750-73c8cbc8e83f", "scryfall_uri": "https://scryfall.com/card/pls/66/magma-burst?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/d/9/d9752bc3-0bdf-4657-8750-73c8cbc8e83f.jpg?1562940942", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/9/d9752bc3-0bdf-4657-8750-73c8cbc8e83f.jpg?1562940942", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/d/9/d9752bc3-0bdf-4657-8750-73c8cbc8e83f.jpg?1562940942", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/d/9/d9752bc3-0bdf-4657-8750-73c8cbc8e83f.png?1562940942", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/9/d9752bc3-0bdf-4657-8750-73c8cbc8e83f.jpg?1562940942", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/d/9/d9752bc3-0bdf-4657-8750-73c8cbc8e83f.jpg?1562940942"}, "mana_cost": "{3}{R}", "cmc": 4.0, "type_line": "Instant", "oracle_text": "Kicker\u2014Sacrifice two lands. (You may sacrifice two lands in addition to any other costs as you cast this spell.)\nMagma Burst deals 3 damage to any target. If this spell was kicked, it deals 3 damage to another target.", "colors": ["R"], "color_identity": ["R"], "keywords": ["Kicker"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "82dc193b-bd5f-4883-a93f-a4155b467ee0", "set": "pls", "set_name": "Planeshift", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/82dc193b-bd5f-4883-a93f-a4155b467ee0", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Apls&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/pls?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/d9752bc3-0bdf-4657-8750-73c8cbc8e83f/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Af5af6d60-decd-4e04-8841-da2d3000a405&unique=prints", "collector_number": "66", "digital": false, "rarity": "common", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Bradley Williams", "artist_ids": ["24d81dfa-3745-4386-93f8-7e67dddb3c8a"], "illustration_id": "1f079df7-38ac-4342-bad7-98592a67725b", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 21337, "penny_rank": 12520, "prices": {"usd": "0.06", "usd_foil": "0.25", "usd_etched": null, "eur": "0.05", "eur_foil": "0.73", "tix": "0.11"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=25944", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Magma+Burst&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Magma+Burst&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Magma+Burst"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/7823?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Magma+Burst&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/15253?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "8af1c5b0-973d-467e-a797-51ca75c183c1", "oracle_id": "2f292253-64d3-4cf2-881f-a3eea4fda388", "multiverse_ids": [425925], "mtgo_id": 63493, "mtgo_foil_id": 63494, "tcgplayer_id": 128584, "cardmarket_id": 295861, "name": "Magma Jet", "lang": "en", "released_at": "2017-03-17", "uri": "https://api.scryfall.com/cards/8af1c5b0-973d-467e-a797-51ca75c183c1", "scryfall_uri": "https://scryfall.com/card/mm3/100/magma-jet?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/8/a/8af1c5b0-973d-467e-a797-51ca75c183c1.jpg?1593813497", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/a/8af1c5b0-973d-467e-a797-51ca75c183c1.jpg?1593813497", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/8/a/8af1c5b0-973d-467e-a797-51ca75c183c1.jpg?1593813497", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/8/a/8af1c5b0-973d-467e-a797-51ca75c183c1.png?1593813497", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/a/8af1c5b0-973d-467e-a797-51ca75c183c1.jpg?1593813497", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/8/a/8af1c5b0-973d-467e-a797-51ca75c183c1.jpg?1593813497"}, "mana_cost": "{1}{R}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Magma Jet deals 2 damage to any target. Scry 2.", "colors": ["R"], "color_identity": ["R"], "keywords": ["Scry"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "02624962-f727-4c31-bbf2-a94fa6c5b653", "set": "mm3", "set_name": "Modern Masters 2017", "set_type": "masters", "set_uri": "https://api.scryfall.com/sets/02624962-f727-4c31-bbf2-a94fa6c5b653", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Amm3&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/mm3?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/8af1c5b0-973d-467e-a797-51ca75c183c1/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A2f292253-64d3-4cf2-881f-a3eea4fda388&unique=prints", "collector_number": "100", "digital": false, "rarity": "common", "flavor_text": "Some Akroans make the dangerous pilgrimage to the volcanic temples of Purphoros, where oracles known as flamespeakers glean omens from lava.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Maciej Kuciara", "artist_ids": ["f1d0c5e9-747f-4885-a5cd-a2ea42a792ef"], "illustration_id": "c1d45a5d-ad08-437b-925b-0bf91038a840", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 9066, "penny_rank": 2399, "prices": {"usd": "0.12", "usd_foil": "0.19", "usd_etched": null, "eur": "0.10", "eur_foil": "0.10", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=425925", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Magma+Jet&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Magma+Jet&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Magma+Jet"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/128584?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Magma+Jet&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/63493?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "51ea1728-08aa-4553-90b2-919c70712ed5", "oracle_id": "2f292253-64d3-4cf2-881f-a3eea4fda388", "multiverse_ids": [51180], "mtgo_id": 20818, "mtgo_foil_id": 20819, "tcgplayer_id": 11775, "cardmarket_id": 589, "name": "Magma Jet", "lang": "en", "released_at": "2004-06-04", "uri": "https://api.scryfall.com/cards/51ea1728-08aa-4553-90b2-919c70712ed5", "scryfall_uri": "https://scryfall.com/card/5dn/73/magma-jet?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/5/1/51ea1728-08aa-4553-90b2-919c70712ed5.jpg?1562877009", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/1/51ea1728-08aa-4553-90b2-919c70712ed5.jpg?1562877009", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/5/1/51ea1728-08aa-4553-90b2-919c70712ed5.jpg?1562877009", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/5/1/51ea1728-08aa-4553-90b2-919c70712ed5.png?1562877009", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/1/51ea1728-08aa-4553-90b2-919c70712ed5.jpg?1562877009", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/5/1/51ea1728-08aa-4553-90b2-919c70712ed5.jpg?1562877009"}, "mana_cost": "{1}{R}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Magma Jet deals 2 damage to any target. Scry 2.", "colors": ["R"], "color_identity": ["R"], "keywords": ["Scry"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "e4bc1b87-5476-463c-8640-4c414ecf1763", "set": "5dn", "set_name": "Fifth Dawn", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/e4bc1b87-5476-463c-8640-4c414ecf1763", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3A5dn&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/5dn?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/51ea1728-08aa-4553-90b2-919c70712ed5/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A2f292253-64d3-4cf2-881f-a3eea4fda388&unique=prints", "collector_number": "73", "digital": false, "rarity": "uncommon", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Justin Sweet", "artist_ids": ["bb15780e-8f96-4823-b258-a7a9fd79b02c"], "illustration_id": "c2beb1df-451e-440b-9c53-a49b6c80604e", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 9066, "penny_rank": 2399, "prices": {"usd": "0.20", "usd_foil": "3.22", "usd_etched": null, "eur": "0.10", "eur_foil": "1.55", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=51180", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Magma+Jet&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Magma+Jet&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Magma+Jet"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/11775?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Magma+Jet&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/20818?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "be7552ac-4546-492d-8d11-d6678a04b9c3", "oracle_id": "2f292253-64d3-4cf2-881f-a3eea4fda388", "multiverse_ids": [], "tcgplayer_id": 38127, "cardmarket_id": 20792, "name": "Magma Jet", "lang": "en", "released_at": "2009-01-01", "uri": "https://api.scryfall.com/cards/be7552ac-4546-492d-8d11-d6678a04b9c3", "scryfall_uri": "https://scryfall.com/card/f09/1/magma-jet?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/b/e/be7552ac-4546-492d-8d11-d6678a04b9c3.jpg?1562640021", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/e/be7552ac-4546-492d-8d11-d6678a04b9c3.jpg?1562640021", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/b/e/be7552ac-4546-492d-8d11-d6678a04b9c3.jpg?1562640021", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/b/e/be7552ac-4546-492d-8d11-d6678a04b9c3.png?1562640021", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/e/be7552ac-4546-492d-8d11-d6678a04b9c3.jpg?1562640021", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/b/e/be7552ac-4546-492d-8d11-d6678a04b9c3.jpg?1562640021"}, "mana_cost": "{1}{R}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Magma Jet deals 2 damage to any target. Scry 2.", "colors": ["R"], "color_identity": ["R"], "keywords": ["Scry"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": true, "nonfoil": false, "finishes": ["foil"], "oversized": false, "promo": true, "reprint": true, "variation": false, "set_id": "a540bc4f-d0c3-4758-9636-547ec9df7fc9", "set": "f09", "set_name": "Friday Night Magic 2009", "set_type": "promo", "set_uri": "https://api.scryfall.com/sets/a540bc4f-d0c3-4758-9636-547ec9df7fc9", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Af09&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/f09?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/be7552ac-4546-492d-8d11-d6678a04b9c3/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A2f292253-64d3-4cf2-881f-a3eea4fda388&unique=prints", "collector_number": "1", "digital": false, "rarity": "rare", "watermark": "fnm", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Darrell Riche", "artist_ids": ["262c8e55-4efc-467b-a042-6f734b9d2e01"], "illustration_id": "bbee9af2-3025-4a21-894e-26e64719a718", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "promo_types": ["tourney", "fnm"], "edhrec_rank": 9066, "penny_rank": 2399, "prices": {"usd": null, "usd_foil": "1.93", "usd_etched": null, "eur": null, "eur_foil": "0.99", "tix": null}, "related_uris": {"tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Magma+Jet&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Magma+Jet&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Magma+Jet"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/38127?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Magma+Jet&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Magma+Jet&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "a2049072-5901-4edd-8305-ce55f256bca5", "oracle_id": "5de50aa5-3b30-4d7d-9203-bc8fc0f8fb34", "multiverse_ids": [414434], "mtgo_id": 61186, "mtgo_foil_id": 61187, "tcgplayer_id": 120511, "cardmarket_id": 291160, "name": "Make Mischief", "lang": "en", "released_at": "2016-07-22", "uri": "https://api.scryfall.com/cards/a2049072-5901-4edd-8305-ce55f256bca5", "scryfall_uri": "https://scryfall.com/card/emn/135/make-mischief?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/a/2/a2049072-5901-4edd-8305-ce55f256bca5.jpg?1576384624", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/2/a2049072-5901-4edd-8305-ce55f256bca5.jpg?1576384624", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/a/2/a2049072-5901-4edd-8305-ce55f256bca5.jpg?1576384624", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/a/2/a2049072-5901-4edd-8305-ce55f256bca5.png?1576384624", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/2/a2049072-5901-4edd-8305-ce55f256bca5.jpg?1576384624", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/a/2/a2049072-5901-4edd-8305-ce55f256bca5.jpg?1576384624"}, "mana_cost": "{2}{R}", "cmc": 3.0, "type_line": "Sorcery", "oracle_text": "Make Mischief deals 1 damage to any target. Create a 1/1 red Devil creature token. It has \"When this creature dies, it deals 1 damage to any target.\"", "colors": ["R"], "color_identity": ["R"], "keywords": [], "all_parts": [{"object": "related_card", "id": "a2049072-5901-4edd-8305-ce55f256bca5", "component": "combo_piece", "name": "Make Mischief", "type_line": "Sorcery", "uri": "https://api.scryfall.com/cards/a2049072-5901-4edd-8305-ce55f256bca5"}, {"object": "related_card", "id": "3e78c4b8-371b-43d7-a315-fb299704aa60", "component": "token", "name": "Devil", "type_line": "Token Creature \u2014 Devil", "uri": "https://api.scryfall.com/cards/3e78c4b8-371b-43d7-a315-fb299704aa60"}], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "5f0e4093-334f-4439-bbb5-a0affafd0ffc", "set": "emn", "set_name": "Eldritch Moon", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/5f0e4093-334f-4439-bbb5-a0affafd0ffc", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aemn&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/emn?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/a2049072-5901-4edd-8305-ce55f256bca5/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A5de50aa5-3b30-4d7d-9203-bc8fc0f8fb34&unique=prints", "collector_number": "135", "digital": false, "rarity": "common", "flavor_text": "A tidy desk is as good as an invitation.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Ben Maier", "artist_ids": ["7bc582c5-4733-4022-8cef-844b800be9f7"], "illustration_id": "f4d70ec2-6d58-4a7c-af2a-6580aec47a84", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 10642, "penny_rank": 11481, "prices": {"usd": "0.08", "usd_foil": "0.26", "usd_etched": null, "eur": "0.09", "eur_foil": "0.20", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=414434", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Make+Mischief&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Make+Mischief&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Make+Mischief"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/120511?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Make+Mischief&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/61186?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "1d94a1d1-6d24-46e1-9568-42e1a810ad31", "oracle_id": "1c0940d6-9f0d-4d84-ab28-ff6595254675", "multiverse_ids": [194106], "mtgo_id": 37991, "mtgo_foil_id": 37992, "tcgplayer_id": 36476, "cardmarket_id": 242794, "name": "Melt Terrain", "lang": "en", "released_at": "2010-10-01", "uri": "https://api.scryfall.com/cards/1d94a1d1-6d24-46e1-9568-42e1a810ad31", "scryfall_uri": "https://scryfall.com/card/som/97/melt-terrain?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/1/d/1d94a1d1-6d24-46e1-9568-42e1a810ad31.jpg?1562815251", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/d/1d94a1d1-6d24-46e1-9568-42e1a810ad31.jpg?1562815251", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/1/d/1d94a1d1-6d24-46e1-9568-42e1a810ad31.jpg?1562815251", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/1/d/1d94a1d1-6d24-46e1-9568-42e1a810ad31.png?1562815251", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/d/1d94a1d1-6d24-46e1-9568-42e1a810ad31.jpg?1562815251", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/1/d/1d94a1d1-6d24-46e1-9568-42e1a810ad31.jpg?1562815251"}, "mana_cost": "{2}{R}{R}", "cmc": 4.0, "type_line": "Sorcery", "oracle_text": "Destroy target land. Melt Terrain deals 2 damage to that land's controller.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "8f403072-9b22-4e69-8d59-22dc4c97fd8d", "set": "som", "set_name": "Scars of Mirrodin", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/8f403072-9b22-4e69-8d59-22dc4c97fd8d", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Asom&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/som?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/1d94a1d1-6d24-46e1-9568-42e1a810ad31/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A1c0940d6-9f0d-4d84-ab28-ff6595254675&unique=prints", "collector_number": "97", "digital": false, "rarity": "common", "watermark": "mirran", "flavor_text": "Just as the most finely wrought metal can warp and rust, so too does Mirrodin buckle under pressures from without and within.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "John Avon", "artist_ids": ["798f3932-30e0-4420-aa3f-db4d613f89ca"], "illustration_id": "f4a96d8d-588d-4f34-84c2-952d7692e328", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 17495, "penny_rank": 4593, "prices": {"usd": "0.13", "usd_foil": "0.28", "usd_etched": null, "eur": "0.02", "eur_foil": "0.55", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=194106", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Melt+Terrain&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Melt+Terrain&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Melt+Terrain"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/36476?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Melt+Terrain&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/37991?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "59418766-5567-4ec4-af1f-1cb2db2958d0", "oracle_id": "31f3a9f3-881e-4dc9-b71d-5d1fc86477bf", "multiverse_ids": [75248], "mtgo_id": 21109, "mtgo_foil_id": 21110, "tcgplayer_id": 12094, "cardmarket_id": 12113, "name": "Mindblaze", "lang": "en", "released_at": "2004-10-01", "uri": "https://api.scryfall.com/cards/59418766-5567-4ec4-af1f-1cb2db2958d0", "scryfall_uri": "https://scryfall.com/card/chk/180/mindblaze?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/5/9/59418766-5567-4ec4-af1f-1cb2db2958d0.jpg?1562760146", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/9/59418766-5567-4ec4-af1f-1cb2db2958d0.jpg?1562760146", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/5/9/59418766-5567-4ec4-af1f-1cb2db2958d0.jpg?1562760146", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/5/9/59418766-5567-4ec4-af1f-1cb2db2958d0.png?1562760146", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/9/59418766-5567-4ec4-af1f-1cb2db2958d0.jpg?1562760146", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/5/9/59418766-5567-4ec4-af1f-1cb2db2958d0.jpg?1562760146"}, "mana_cost": "{5}{R}", "cmc": 6.0, "type_line": "Sorcery", "oracle_text": "Choose a nonland card name and a number greater than 0. Target player reveals their library. If that library contains exactly the chosen number of cards with the chosen name, Mindblaze deals 8 damage to that player. Then that player shuffles.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "6183d21f-a0af-4118-ba58-aca1d8719c01", "set": "chk", "set_name": "Champions of Kamigawa", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/6183d21f-a0af-4118-ba58-aca1d8719c01", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Achk&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/chk?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/59418766-5567-4ec4-af1f-1cb2db2958d0/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A31f3a9f3-881e-4dc9-b71d-5d1fc86477bf&unique=prints", "collector_number": "180", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "John Avon", "artist_ids": ["798f3932-30e0-4420-aa3f-db4d613f89ca"], "illustration_id": "d5c8b08b-ce6a-4d9b-871e-6ab121dd7c7c", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 19768, "prices": {"usd": "0.23", "usd_foil": "1.50", "usd_etched": null, "eur": "0.05", "eur_foil": "0.40", "tix": "0.01"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=75248", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Mindblaze&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Mindblaze&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Mindblaze"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/12094?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Mindblaze&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/21109?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "557e8303-a021-4257-b41a-7d25f04618c8", "oracle_id": "4682c39e-c21a-4c8b-bc63-9cbac59dc563", "multiverse_ids": [386604], "mtgo_id": 54144, "mtgo_foil_id": 54145, "tcgplayer_id": 92959, "cardmarket_id": 269208, "name": "Mindswipe", "lang": "en", "released_at": "2014-09-26", "uri": "https://api.scryfall.com/cards/557e8303-a021-4257-b41a-7d25f04618c8", "scryfall_uri": "https://scryfall.com/card/ktk/189/mindswipe?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/5/5/557e8303-a021-4257-b41a-7d25f04618c8.jpg?1562786781", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/5/557e8303-a021-4257-b41a-7d25f04618c8.jpg?1562786781", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/5/5/557e8303-a021-4257-b41a-7d25f04618c8.jpg?1562786781", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/5/5/557e8303-a021-4257-b41a-7d25f04618c8.png?1562786781", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/5/557e8303-a021-4257-b41a-7d25f04618c8.jpg?1562786781", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/5/5/557e8303-a021-4257-b41a-7d25f04618c8.jpg?1562786781"}, "mana_cost": "{X}{U}{R}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Counter target spell unless its controller pays {X}. Mindswipe deals X damage to that spell's controller.", "colors": ["R", "U"], "color_identity": ["R", "U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "6c7a715c-ded9-449e-89b0-c665773e9c3c", "set": "ktk", "set_name": "Khans of Tarkir", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/6c7a715c-ded9-449e-89b0-c665773e9c3c", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aktk&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ktk?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/557e8303-a021-4257-b41a-7d25f04618c8/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A4682c39e-c21a-4c8b-bc63-9cbac59dc563&unique=prints", "collector_number": "189", "digital": false, "rarity": "rare", "flavor_text": "\"The past and the unwritten are frozen. To understand their meaning requires heat.\"\n\u2014Arel the Whisperer", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Ryan Alexander Lee", "artist_ids": ["f4d194b4-958a-4830-8d87-1a84e0b9ffbc"], "illustration_id": "5f8d5cf8-ab10-4315-92cd-e0b6efe02637", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 8274, "penny_rank": 4240, "prices": {"usd": "0.20", "usd_foil": "0.67", "usd_etched": null, "eur": "0.14", "eur_foil": "0.15", "tix": "0.01"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=386604", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Mindswipe&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Mindswipe&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Mindswipe"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/92959?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Mindswipe&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/54144?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "b14cc32a-eb4f-4690-aceb-160780743ebe", "oracle_id": "e282eb5b-f9e6-4fb3-9edf-44e23359357d", "multiverse_ids": [3225], "tcgplayer_id": 4195, "cardmarket_id": 8046, "name": "Misfortune", "lang": "en", "released_at": "1996-06-10", "uri": "https://api.scryfall.com/cards/b14cc32a-eb4f-4690-aceb-160780743ebe", "scryfall_uri": "https://scryfall.com/card/all/113/misfortune?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/b/1/b14cc32a-eb4f-4690-aceb-160780743ebe.jpg?1562770145", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/1/b14cc32a-eb4f-4690-aceb-160780743ebe.jpg?1562770145", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/b/1/b14cc32a-eb4f-4690-aceb-160780743ebe.jpg?1562770145", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/b/1/b14cc32a-eb4f-4690-aceb-160780743ebe.png?1562770145", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/1/b14cc32a-eb4f-4690-aceb-160780743ebe.jpg?1562770145", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/b/1/b14cc32a-eb4f-4690-aceb-160780743ebe.jpg?1562770145"}, "mana_cost": "{1}{B}{R}{G}", "cmc": 4.0, "type_line": "Sorcery", "oracle_text": "An opponent chooses one \u2014\n\u2022 You put a +1/+1 counter on each creature you control and gain 4 life.\n\u2022 You put a -1/-1 counter on each creature that player controls and Misfortune deals 4 damage to that player.", "colors": ["B", "G", "R"], "color_identity": ["B", "G", "R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper"], "reserved": true, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "64987b06-4a5c-443d-b560-ff5691744582", "set": "all", "set_name": "Alliances", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/64987b06-4a5c-443d-b560-ff5691744582", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aall&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/all?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/b14cc32a-eb4f-4690-aceb-160780743ebe/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ae282eb5b-f9e6-4fb3-9edf-44e23359357d&unique=prints", "collector_number": "113", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Ron Spencer", "artist_ids": ["dab52c11-0564-4207-a4a1-c1735c946a65"], "illustration_id": "cc4258f4-3d0b-4101-a43d-152d46720199", "border_color": "black", "frame": "1993", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 20167, "prices": {"usd": "3.15", "usd_foil": null, "usd_etched": null, "eur": "2.21", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=3225", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Misfortune&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Misfortune&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Misfortune"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/4195?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Misfortune&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Misfortune&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "31e0713c-dbf4-4403-ae69-58fd483e2481", "oracle_id": "21390513-1ed0-48f2-a7fa-020da8f803c0", "multiverse_ids": [136154], "mtgo_id": 26862, "mtgo_foil_id": 26863, "tcgplayer_id": 14942, "cardmarket_id": 15094, "name": "Molten Disaster", "lang": "en", "released_at": "2007-05-04", "uri": "https://api.scryfall.com/cards/31e0713c-dbf4-4403-ae69-58fd483e2481", "scryfall_uri": "https://scryfall.com/card/fut/102/molten-disaster?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/3/1/31e0713c-dbf4-4403-ae69-58fd483e2481.jpg?1562905110", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/1/31e0713c-dbf4-4403-ae69-58fd483e2481.jpg?1562905110", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/3/1/31e0713c-dbf4-4403-ae69-58fd483e2481.jpg?1562905110", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/3/1/31e0713c-dbf4-4403-ae69-58fd483e2481.png?1562905110", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/1/31e0713c-dbf4-4403-ae69-58fd483e2481.jpg?1562905110", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/3/1/31e0713c-dbf4-4403-ae69-58fd483e2481.jpg?1562905110"}, "mana_cost": "{X}{R}{R}", "cmc": 2.0, "type_line": "Sorcery", "oracle_text": "Kicker {R} (You may pay an additional {R} as you cast this spell.)\nIf this spell was kicked, it has split second. (As long as this spell is on the stack, players can't cast spells or activate abilities that aren't mana abilities.)\nMolten Disaster deals X damage to each creature without flying and each player.", "colors": ["R"], "color_identity": ["R"], "keywords": ["Kicker"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "bf951ddb-4445-4923-87cb-3fe4ac3c6b9a", "set": "fut", "set_name": "Future Sight", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/bf951ddb-4445-4923-87cb-3fe4ac3c6b9a", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Afut&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/fut?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/31e0713c-dbf4-4403-ae69-58fd483e2481/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A21390513-1ed0-48f2-a7fa-020da8f803c0&unique=prints", "collector_number": "102", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Ittoku", "artist_ids": ["d3a47c28-84e9-4b53-a236-5066ae1bb62f"], "illustration_id": "bbf80862-0e9e-4fd5-aeae-83bea9ea1ae5", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 4774, "penny_rank": 5386, "prices": {"usd": "0.53", "usd_foil": "2.68", "usd_etched": null, "eur": "0.52", "eur_foil": "3.90", "tix": "0.01"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=136154", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Molten+Disaster&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Molten+Disaster&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Molten+Disaster"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/14942?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Molten+Disaster&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/26862?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "4c2b326b-d177-4a03-a0a3-fe2c2d4af272", "oracle_id": "d955a26a-d474-4dff-9eba-69fcfe92d8ae", "multiverse_ids": [29972], "mtgo_id": 16645, "mtgo_foil_id": 16646, "tcgplayer_id": 9482, "cardmarket_id": 2619, "name": "Molten Influence", "lang": "en", "released_at": "2001-10-01", "uri": "https://api.scryfall.com/cards/4c2b326b-d177-4a03-a0a3-fe2c2d4af272", "scryfall_uri": "https://scryfall.com/card/ody/207/molten-influence?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/4/c/4c2b326b-d177-4a03-a0a3-fe2c2d4af272.jpg?1562908953", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/c/4c2b326b-d177-4a03-a0a3-fe2c2d4af272.jpg?1562908953", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/4/c/4c2b326b-d177-4a03-a0a3-fe2c2d4af272.jpg?1562908953", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/4/c/4c2b326b-d177-4a03-a0a3-fe2c2d4af272.png?1562908953", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/c/4c2b326b-d177-4a03-a0a3-fe2c2d4af272.jpg?1562908953", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/4/c/4c2b326b-d177-4a03-a0a3-fe2c2d4af272.jpg?1562908953"}, "mana_cost": "{1}{R}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Counter target instant or sorcery spell unless its controller has Molten Influence deal 4 damage to them.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "b0d90d2d-494a-4224-bfa0-36ce5ee281b1", "set": "ody", "set_name": "Odyssey", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/b0d90d2d-494a-4224-bfa0-36ce5ee281b1", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aody&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ody?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/4c2b326b-d177-4a03-a0a3-fe2c2d4af272/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ad955a26a-d474-4dff-9eba-69fcfe92d8ae&unique=prints", "collector_number": "207", "digital": false, "rarity": "rare", "flavor_text": "Lavamancers make simple requests: obey or die.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Franz Vohwinkel", "artist_ids": ["3a243c17-3baa-4b53-9599-645311cd7d3d"], "illustration_id": "ab26c6f8-b839-4e32-8df8-110741cbff11", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 14614, "penny_rank": 11017, "prices": {"usd": "2.73", "usd_foil": "29.97", "usd_etched": null, "eur": "2.00", "eur_foil": "12.95", "tix": "0.08"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=29972", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Molten+Influence&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Molten+Influence&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Molten+Influence"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/9482?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Molten+Influence&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/16645?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "ecdd414b-3d9d-4347-acce-289209d09fc4", "oracle_id": "e9774695-b2f1-4014-8504-04b2339be568", "multiverse_ids": [425928], "mtgo_id": 63525, "mtgo_foil_id": 63526, "tcgplayer_id": 128478, "cardmarket_id": 295826, "name": "Molten Rain", "lang": "en", "released_at": "2017-03-17", "uri": "https://api.scryfall.com/cards/ecdd414b-3d9d-4347-acce-289209d09fc4", "scryfall_uri": "https://scryfall.com/card/mm3/103/molten-rain?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/e/c/ecdd414b-3d9d-4347-acce-289209d09fc4.jpg?1593813519", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/c/ecdd414b-3d9d-4347-acce-289209d09fc4.jpg?1593813519", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/e/c/ecdd414b-3d9d-4347-acce-289209d09fc4.jpg?1593813519", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/e/c/ecdd414b-3d9d-4347-acce-289209d09fc4.png?1593813519", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/c/ecdd414b-3d9d-4347-acce-289209d09fc4.jpg?1593813519", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/e/c/ecdd414b-3d9d-4347-acce-289209d09fc4.jpg?1593813519"}, "mana_cost": "{1}{R}{R}", "cmc": 3.0, "type_line": "Sorcery", "oracle_text": "Destroy target land. If that land was nonbasic, Molten Rain deals 2 damage to the land's controller.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "02624962-f727-4c31-bbf2-a94fa6c5b653", "set": "mm3", "set_name": "Modern Masters 2017", "set_type": "masters", "set_uri": "https://api.scryfall.com/sets/02624962-f727-4c31-bbf2-a94fa6c5b653", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Amm3&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/mm3?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/ecdd414b-3d9d-4347-acce-289209d09fc4/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ae9774695-b2f1-4014-8504-04b2339be568&unique=prints", "collector_number": "103", "digital": false, "rarity": "uncommon", "flavor_text": "It came as a cruel answer to the farmers' prayers.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Sung Choi", "artist_ids": ["4b149402-618d-4f54-9db8-788e4a5bce70"], "illustration_id": "82ea0c59-684d-4579-9b21-fcef3fa5c1e6", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 10006, "penny_rank": 1591, "prices": {"usd": "0.25", "usd_foil": "0.50", "usd_etched": null, "eur": "0.41", "eur_foil": "3.98", "tix": "0.25"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=425928", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Molten+Rain&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Molten+Rain&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Molten+Rain"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/128478?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Molten+Rain&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/63525?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "f888b4d4-31f9-4322-8225-4d7e7a9f4dd5", "oracle_id": "e9774695-b2f1-4014-8504-04b2339be568", "multiverse_ids": [46000], "mtgo_id": 19723, "mtgo_foil_id": 19724, "tcgplayer_id": 11420, "cardmarket_id": 101, "name": "Molten Rain", "lang": "en", "released_at": "2003-10-02", "uri": "https://api.scryfall.com/cards/f888b4d4-31f9-4322-8225-4d7e7a9f4dd5", "scryfall_uri": "https://scryfall.com/card/mrd/101/molten-rain?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/f/8/f888b4d4-31f9-4322-8225-4d7e7a9f4dd5.jpg?1562163535", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/8/f888b4d4-31f9-4322-8225-4d7e7a9f4dd5.jpg?1562163535", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/f/8/f888b4d4-31f9-4322-8225-4d7e7a9f4dd5.jpg?1562163535", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/f/8/f888b4d4-31f9-4322-8225-4d7e7a9f4dd5.png?1562163535", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/8/f888b4d4-31f9-4322-8225-4d7e7a9f4dd5.jpg?1562163535", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/f/8/f888b4d4-31f9-4322-8225-4d7e7a9f4dd5.jpg?1562163535"}, "mana_cost": "{1}{R}{R}", "cmc": 3.0, "type_line": "Sorcery", "oracle_text": "Destroy target land. If that land was nonbasic, Molten Rain deals 2 damage to the land's controller.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "1d4f90ba-8d4a-4ee5-bc2f-e2d6bffe4955", "set": "mrd", "set_name": "Mirrodin", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/1d4f90ba-8d4a-4ee5-bc2f-e2d6bffe4955", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Amrd&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/mrd?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/f888b4d4-31f9-4322-8225-4d7e7a9f4dd5/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ae9774695-b2f1-4014-8504-04b2339be568&unique=prints", "collector_number": "101", "digital": false, "rarity": "common", "flavor_text": "When the molten rains fall, entire landscapes melt and flow away in rivulets of fire.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Hugh Jamieson", "artist_ids": ["ae735af7-4895-45e0-aeb5-58c82343942e"], "illustration_id": "b092ccbd-586a-40f5-acc0-bef0eed6b298", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 10006, "penny_rank": 1591, "prices": {"usd": "0.25", "usd_foil": "2.96", "usd_etched": null, "eur": "0.16", "eur_foil": "3.00", "tix": "0.22"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=46000", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Molten+Rain&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Molten+Rain&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Molten+Rain"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/11420?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Molten+Rain&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/19723?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "eb4f266b-c41c-4047-ae6f-b2226c7459e8", "oracle_id": "40a41774-fe50-438d-85e4-7f2beb29fb82", "multiverse_ids": [534927], "mtgo_id": 93268, "arena_id": 78498, "tcgplayer_id": 248274, "cardmarket_id": 575062, "name": "Moonrager's Slash", "lang": "en", "released_at": "2021-09-24", "uri": "https://api.scryfall.com/cards/eb4f266b-c41c-4047-ae6f-b2226c7459e8", "scryfall_uri": "https://scryfall.com/card/mid/148/moonragers-slash?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/e/b/eb4f266b-c41c-4047-ae6f-b2226c7459e8.jpg?1636223196", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/b/eb4f266b-c41c-4047-ae6f-b2226c7459e8.jpg?1636223196", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/e/b/eb4f266b-c41c-4047-ae6f-b2226c7459e8.jpg?1636223196", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/e/b/eb4f266b-c41c-4047-ae6f-b2226c7459e8.png?1636223196", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/b/eb4f266b-c41c-4047-ae6f-b2226c7459e8.jpg?1636223196", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/e/b/eb4f266b-c41c-4047-ae6f-b2226c7459e8.jpg?1636223196"}, "mana_cost": "{2}{R}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "This spell costs {2} less to cast if it's night.\nMoonrager's Slash deals 3 damage to any target.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "44b8eb8f-fa23-401a-98b5-1fbb9871128e", "set": "mid", "set_name": "Innistrad: Midnight Hunt", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/44b8eb8f-fa23-401a-98b5-1fbb9871128e", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Amid&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/mid?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/eb4f266b-c41c-4047-ae6f-b2226c7459e8/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A40a41774-fe50-438d-85e4-7f2beb29fb82&unique=prints", "collector_number": "148", "digital": false, "rarity": "common", "flavor_text": "The cathars fell like leaves as Tovolar himself joined the fray.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Lars Grant-West", "artist_ids": ["21ed6499-c4d3-4965-ab02-6c7228275bec"], "illustration_id": "61aaa467-0875-404d-a4f1-a6cad2370995", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 12122, "penny_rank": 6774, "prices": {"usd": "0.02", "usd_foil": "0.03", "usd_etched": null, "eur": "0.02", "eur_foil": "0.07", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=534927", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Moonrager%27s+Slash&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Moonrager%27s+Slash&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Moonrager%27s+Slash"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/248274?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Moonrager%27s+Slash&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/93268?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "47a4e7d0-ff09-4e19-8456-f4845f56dc8b", "oracle_id": "6e7e9685-ebe9-4db2-b52c-f6ce95e37e56", "multiverse_ids": [29745], "mtgo_id": 16807, "mtgo_foil_id": 16808, "tcgplayer_id": 9425, "cardmarket_id": 2562, "name": "Morbid Hunger", "lang": "en", "released_at": "2001-10-01", "uri": "https://api.scryfall.com/cards/47a4e7d0-ff09-4e19-8456-f4845f56dc8b", "scryfall_uri": "https://scryfall.com/card/ody/150/morbid-hunger?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/4/7/47a4e7d0-ff09-4e19-8456-f4845f56dc8b.jpg?1562908117", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/7/47a4e7d0-ff09-4e19-8456-f4845f56dc8b.jpg?1562908117", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/4/7/47a4e7d0-ff09-4e19-8456-f4845f56dc8b.jpg?1562908117", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/4/7/47a4e7d0-ff09-4e19-8456-f4845f56dc8b.png?1562908117", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/7/47a4e7d0-ff09-4e19-8456-f4845f56dc8b.jpg?1562908117", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/4/7/47a4e7d0-ff09-4e19-8456-f4845f56dc8b.jpg?1562908117"}, "mana_cost": "{4}{B}{B}", "cmc": 6.0, "type_line": "Sorcery", "oracle_text": "Morbid Hunger deals 3 damage to any target. You gain 3 life.\nFlashback {7}{B}{B} (You may cast this card from your graveyard for its flashback cost. Then exile it.)", "colors": ["B"], "color_identity": ["B"], "keywords": ["Flashback"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "b0d90d2d-494a-4224-bfa0-36ce5ee281b1", "set": "ody", "set_name": "Odyssey", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/b0d90d2d-494a-4224-bfa0-36ce5ee281b1", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aody&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ody?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/47a4e7d0-ff09-4e19-8456-f4845f56dc8b/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A6e7e9685-ebe9-4db2-b52c-f6ce95e37e56&unique=prints", "collector_number": "150", "digital": false, "rarity": "common", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Eric Peterson", "artist_ids": ["0fc26d3b-4c0e-41d1-8eb3-286ab55a2328"], "illustration_id": "e71a6440-81bf-4c07-b576-24c536c8c704", "border_color": "black", "frame": "1997", "frame_effects": ["tombstone"], "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 22578, "prices": {"usd": "0.08", "usd_foil": "0.29", "usd_etched": null, "eur": "0.25", "eur_foil": "0.25", "tix": "0.06"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=29745", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Morbid+Hunger&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Morbid+Hunger&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Morbid+Hunger"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/9425?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Morbid+Hunger&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/16807?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "d3f89bcf-46f8-4598-a949-7f10134606aa", "oracle_id": "8622a2b2-fe07-41bd-bef3-e60731e0d701", "multiverse_ids": [146161], "mtgo_id": 28673, "mtgo_foil_id": 28674, "tcgplayer_id": 15588, "cardmarket_id": 17927, "name": "Needle Drop", "lang": "en", "released_at": "2007-10-12", "uri": "https://api.scryfall.com/cards/d3f89bcf-46f8-4598-a949-7f10134606aa", "scryfall_uri": "https://scryfall.com/card/lrw/186/needle-drop?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/d/3/d3f89bcf-46f8-4598-a949-7f10134606aa.jpg?1562369628", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/3/d3f89bcf-46f8-4598-a949-7f10134606aa.jpg?1562369628", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/d/3/d3f89bcf-46f8-4598-a949-7f10134606aa.jpg?1562369628", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/d/3/d3f89bcf-46f8-4598-a949-7f10134606aa.png?1562369628", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/3/d3f89bcf-46f8-4598-a949-7f10134606aa.jpg?1562369628", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/d/3/d3f89bcf-46f8-4598-a949-7f10134606aa.jpg?1562369628"}, "mana_cost": "{R}", "cmc": 1.0, "type_line": "Instant", "oracle_text": "Needle Drop deals 1 damage to any target that was dealt damage this turn.\nDraw a card.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "30ec97cb-dca9-4bf4-a98b-310f9d8ceaff", "set": "lrw", "set_name": "Lorwyn", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/30ec97cb-dca9-4bf4-a98b-310f9d8ceaff", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Alrw&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/lrw?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/d3f89bcf-46f8-4598-a949-7f10134606aa/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A8622a2b2-fe07-41bd-bef3-e60731e0d701&unique=prints", "collector_number": "186", "digital": false, "rarity": "common", "flavor_text": "\"First it was plovers and mulldrifters. Now it's knitting needles the size of javelins.\"\n\u2014Calydd, kithkin farmer", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Greg Staples", "artist_ids": ["93d65564-bf00-447b-8406-e2031f03b6b1"], "illustration_id": "d135ad58-06b9-40e0-a78e-a000d2b1d4e5", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 10460, "prices": {"usd": "1.51", "usd_foil": "9.19", "usd_etched": null, "eur": "1.32", "eur_foil": "5.73", "tix": "0.31"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=146161", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Needle+Drop&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Needle+Drop&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Needle+Drop"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/15588?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Needle+Drop&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/28673?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "dee17e12-e08f-4449-9f49-05f20e0d1670", "oracle_id": "721aeedc-1de5-40d0-a04c-a2ebc056d06a", "multiverse_ids": [534930], "mtgo_id": 93274, "arena_id": 78501, "tcgplayer_id": 248279, "cardmarket_id": 575064, "name": "Neonate's Rush", "lang": "en", "released_at": "2021-09-24", "uri": "https://api.scryfall.com/cards/dee17e12-e08f-4449-9f49-05f20e0d1670", "scryfall_uri": "https://scryfall.com/card/mid/151/neonates-rush?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/d/e/dee17e12-e08f-4449-9f49-05f20e0d1670.jpg?1636223275", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/e/dee17e12-e08f-4449-9f49-05f20e0d1670.jpg?1636223275", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/d/e/dee17e12-e08f-4449-9f49-05f20e0d1670.jpg?1636223275", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/d/e/dee17e12-e08f-4449-9f49-05f20e0d1670.png?1636223275", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/e/dee17e12-e08f-4449-9f49-05f20e0d1670.jpg?1636223275", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/d/e/dee17e12-e08f-4449-9f49-05f20e0d1670.jpg?1636223275"}, "mana_cost": "{2}{R}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "This spell costs {1} less to cast if you control a Vampire.\nNeonate's Rush deals 1 damage to target creature and 1 damage to its controller. Draw a card.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "44b8eb8f-fa23-401a-98b5-1fbb9871128e", "set": "mid", "set_name": "Innistrad: Midnight Hunt", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/44b8eb8f-fa23-401a-98b5-1fbb9871128e", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Amid&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/mid?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/dee17e12-e08f-4449-9f49-05f20e0d1670/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A721aeedc-1de5-40d0-a04c-a2ebc056d06a&unique=prints", "collector_number": "151", "digital": false, "rarity": "common", "flavor_text": "\"We spend our entire existence pursuing the joy of our first night's feast.\"\n\u2014Anje Falkenrath", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Justine Cruz", "artist_ids": ["4d6acc42-7bac-42cb-ac57-a56355292e89"], "illustration_id": "38e84288-10d3-45fb-bfe0-80f1472da006", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 15043, "penny_rank": 10173, "prices": {"usd": "0.01", "usd_foil": "0.04", "usd_etched": null, "eur": "0.10", "eur_foil": "0.05", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=534930", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Neonate%27s+Rush&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Neonate%27s+Rush&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Neonate%27s+Rush"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/248279?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Neonate%27s+Rush&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/93274?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "2eb08fc5-29a4-4911-ac94-dc5ff2fc2ace", "oracle_id": "9db260cd-d6f9-4efc-b9a8-84bdc00a21ca", "multiverse_ids": [], "tcgplayer_id": 145875, "cardmarket_id": 300267, "name": "Nerf War", "lang": "en", "released_at": "2017-09-20", "uri": "https://api.scryfall.com/cards/2eb08fc5-29a4-4911-ac94-dc5ff2fc2ace", "scryfall_uri": "https://scryfall.com/card/h17/2/nerf-war?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/2/e/2eb08fc5-29a4-4911-ac94-dc5ff2fc2ace.jpg?1561756860", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/e/2eb08fc5-29a4-4911-ac94-dc5ff2fc2ace.jpg?1561756860", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/2/e/2eb08fc5-29a4-4911-ac94-dc5ff2fc2ace.jpg?1561756860", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/2/e/2eb08fc5-29a4-4911-ac94-dc5ff2fc2ace.png?1561756860", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/e/2eb08fc5-29a4-4911-ac94-dc5ff2fc2ace.jpg?1561756860", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/2/e/2eb08fc5-29a4-4911-ac94-dc5ff2fc2ace.jpg?1561756860"}, "mana_cost": "{3}{U}{R}", "cmc": 5.0, "type_line": "Sorcery", "oracle_text": "Fire a Nerf\u00ae blaster until empty at target library from at least two meters away. For each card knocked off that library, put it into its owner's graveyard and Nerf War deals \u00bd damage to that player. (Foam darts only.)", "colors": ["R", "U"], "color_identity": ["R", "U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "not_legal", "pauper": "not_legal", "vintage": "not_legal", "penny": "not_legal", "commander": "not_legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "not_legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": true, "nonfoil": false, "finishes": ["foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "2790698c-b015-4864-9eea-8b6964478432", "set": "h17", "set_name": "HasCon 2017", "set_type": "funny", "set_uri": "https://api.scryfall.com/sets/2790698c-b015-4864-9eea-8b6964478432", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ah17&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/h17?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/2eb08fc5-29a4-4911-ac94-dc5ff2fc2ace/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A9db260cd-d6f9-4efc-b9a8-84bdc00a21ca&unique=prints", "collector_number": "2", "digital": false, "rarity": "mythic", "watermark": "nerf", "flavor_text": "\"I'll tell you one thing\u2014it's not nothin'!\"\n\u2014Garj Grabclaw, goblin sergeant", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Victor Adame Minguez", "artist_ids": ["bd8f7368-5b10-4554-b6b8-d052c6aca89f"], "illustration_id": "618cabf4-037e-43e1-9dec-51321a48f1af", "border_color": "silver", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "promo_types": ["convention"], "prices": {"usd": null, "usd_foil": "54.13", "usd_etched": null, "eur": null, "eur_foil": "32.50", "tix": null}, "related_uris": {"tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Nerf+War&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Nerf+War&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Nerf+War"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/145875?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Nerf+War&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Nerf+War&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "448f9fb5-ffb5-4325-9f81-ce8782e5f9e9", "oracle_id": "8b218023-50b8-4d9d-b17b-9647479d3675", "multiverse_ids": [430794], "mtgo_id": 64694, "mtgo_foil_id": 64695, "tcgplayer_id": 134885, "cardmarket_id": 298551, "name": "Open Fire", "lang": "en", "released_at": "2017-07-14", "uri": "https://api.scryfall.com/cards/448f9fb5-ffb5-4325-9f81-ce8782e5f9e9", "scryfall_uri": "https://scryfall.com/card/hou/105/open-fire?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/4/4/448f9fb5-ffb5-4325-9f81-ce8782e5f9e9.jpg?1562797508", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/4/448f9fb5-ffb5-4325-9f81-ce8782e5f9e9.jpg?1562797508", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/4/4/448f9fb5-ffb5-4325-9f81-ce8782e5f9e9.jpg?1562797508", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/4/4/448f9fb5-ffb5-4325-9f81-ce8782e5f9e9.png?1562797508", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/4/448f9fb5-ffb5-4325-9f81-ce8782e5f9e9.jpg?1562797508", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/4/4/448f9fb5-ffb5-4325-9f81-ce8782e5f9e9.jpg?1562797508"}, "mana_cost": "{2}{R}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Open Fire deals 3 damage to any target.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "65ff168b-bb94-47a5-a8f9-4ec6c213e768", "set": "hou", "set_name": "Hour of Devastation", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/65ff168b-bb94-47a5-a8f9-4ec6c213e768", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ahou&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/hou?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/448f9fb5-ffb5-4325-9f81-ce8782e5f9e9/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A8b218023-50b8-4d9d-b17b-9647479d3675&unique=prints", "collector_number": "105", "digital": false, "rarity": "common", "flavor_text": "Some khenra archers fashion their arrows with a personal touch.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Jason Kang", "artist_ids": ["064b9176-e325-44f6-a413-2cadb7505851"], "illustration_id": "baa3a458-dd46-4b80-bd36-b7ad8e585076", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 17526, "penny_rank": 8469, "prices": {"usd": "0.04", "usd_foil": "0.11", "usd_etched": null, "eur": "0.01", "eur_foil": "0.15", "tix": "0.04"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=430794", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Open+Fire&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Open+Fire&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Open+Fire"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/134885?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Open+Fire&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/64694?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "0afae574-aa96-4500-9882-a4b10337b6f5", "oracle_id": "af224f6f-cedd-498f-a08e-7be0db5a11b7", "multiverse_ids": [509543], "mtgo_id": 86727, "tcgplayer_id": 234008, "cardmarket_id": 547006, "name": "Orcish Cannonade", "lang": "en", "released_at": "2021-03-19", "uri": "https://api.scryfall.com/cards/0afae574-aa96-4500-9882-a4b10337b6f5", "scryfall_uri": "https://scryfall.com/card/tsr/178/orcish-cannonade?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/0/a/0afae574-aa96-4500-9882-a4b10337b6f5.jpg?1619397326", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/a/0afae574-aa96-4500-9882-a4b10337b6f5.jpg?1619397326", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/0/a/0afae574-aa96-4500-9882-a4b10337b6f5.jpg?1619397326", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/0/a/0afae574-aa96-4500-9882-a4b10337b6f5.png?1619397326", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/a/0afae574-aa96-4500-9882-a4b10337b6f5.jpg?1619397326", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/0/a/0afae574-aa96-4500-9882-a4b10337b6f5.jpg?1619397326"}, "mana_cost": "{1}{R}{R}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Orcish Cannonade deals 2 damage to any target and 3 damage to you.\nDraw a card.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "11e90d1b-0502-43e6-b056-e24836523c13", "set": "tsr", "set_name": "Time Spiral Remastered", "set_type": "masters", "set_uri": "https://api.scryfall.com/sets/11e90d1b-0502-43e6-b056-e24836523c13", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Atsr&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/tsr?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/0afae574-aa96-4500-9882-a4b10337b6f5/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aaf224f6f-cedd-498f-a08e-7be0db5a11b7&unique=prints", "collector_number": "178", "digital": false, "rarity": "common", "flavor_text": "\"No ready! No aim! Just fire!\"\n\u2014Scarback Plagg, orcish captain", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Chris Seaman", "artist_ids": ["b9c49463-6f55-4039-9d32-c02a658af100"], "illustration_id": "aee530b9-5a33-42a1-9162-0ed31c8cfea5", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 18162, "penny_rank": 13552, "preview": {"source": "Wizards of the Coast", "source_uri": "", "previewed_at": "2021-03-03"}, "prices": {"usd": "0.01", "usd_foil": "0.15", "usd_etched": null, "eur": "0.01", "eur_foil": "0.35", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=509543", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Orcish+Cannonade&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Orcish+Cannonade&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Orcish+Cannonade"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/234008?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Orcish+Cannonade&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/86727?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "4e40f99c-9608-4463-8c6f-c6e142f0d716", "oracle_id": "af224f6f-cedd-498f-a08e-7be0db5a11b7", "multiverse_ids": [114902], "mtgo_id": 25687, "mtgo_foil_id": 25688, "tcgplayer_id": 14312, "cardmarket_id": 13928, "name": "Orcish Cannonade", "lang": "en", "released_at": "2006-10-06", "uri": "https://api.scryfall.com/cards/4e40f99c-9608-4463-8c6f-c6e142f0d716", "scryfall_uri": "https://scryfall.com/card/tsp/172/orcish-cannonade?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/4/e/4e40f99c-9608-4463-8c6f-c6e142f0d716.jpg?1562911399", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/e/4e40f99c-9608-4463-8c6f-c6e142f0d716.jpg?1562911399", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/4/e/4e40f99c-9608-4463-8c6f-c6e142f0d716.jpg?1562911399", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/4/e/4e40f99c-9608-4463-8c6f-c6e142f0d716.png?1562911399", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/e/4e40f99c-9608-4463-8c6f-c6e142f0d716.jpg?1562911399", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/4/e/4e40f99c-9608-4463-8c6f-c6e142f0d716.jpg?1562911399"}, "mana_cost": "{1}{R}{R}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Orcish Cannonade deals 2 damage to any target and 3 damage to you.\nDraw a card.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "c1d109bc-ffd8-428f-8d7d-3f8d7e648046", "set": "tsp", "set_name": "Time Spiral", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/c1d109bc-ffd8-428f-8d7d-3f8d7e648046", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Atsp&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/tsp?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/4e40f99c-9608-4463-8c6f-c6e142f0d716/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aaf224f6f-cedd-498f-a08e-7be0db5a11b7&unique=prints", "collector_number": "172", "digital": false, "rarity": "common", "flavor_text": "\"Crispy! Scarback! Load another volcano-ball.\"\n\u2014Stumphobbler Thuj, Orcish captain", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Pete Venters", "artist_ids": ["d54c4a1a-c0c5-4834-84db-125d341f3ad8"], "illustration_id": "1e6d1b54-92d2-4527-9547-c32796a053dd", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 18162, "penny_rank": 13552, "prices": {"usd": "0.03", "usd_foil": null, "usd_etched": null, "eur": "0.02", "eur_foil": "0.15", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=114902", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Orcish+Cannonade&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Orcish+Cannonade&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Orcish+Cannonade"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/14312?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Orcish+Cannonade&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/25687?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "891f1d29-377a-4f71-917f-ff10e785caee", "oracle_id": "a01071c5-aca5-4faa-8a8a-30b50b642f42", "multiverse_ids": [97217], "mtgo_id": 23839, "mtgo_foil_id": 23840, "tcgplayer_id": 13747, "cardmarket_id": 13229, "name": "Parallectric Feedback", "lang": "en", "released_at": "2006-02-03", "uri": "https://api.scryfall.com/cards/891f1d29-377a-4f71-917f-ff10e785caee", "scryfall_uri": "https://scryfall.com/card/gpt/71/parallectric-feedback?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/8/9/891f1d29-377a-4f71-917f-ff10e785caee.jpg?1593272344", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/9/891f1d29-377a-4f71-917f-ff10e785caee.jpg?1593272344", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/8/9/891f1d29-377a-4f71-917f-ff10e785caee.jpg?1593272344", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/8/9/891f1d29-377a-4f71-917f-ff10e785caee.png?1593272344", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/9/891f1d29-377a-4f71-917f-ff10e785caee.jpg?1593272344", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/8/9/891f1d29-377a-4f71-917f-ff10e785caee.jpg?1593272344"}, "mana_cost": "{3}{R}", "cmc": 4.0, "type_line": "Instant", "oracle_text": "Parallectric Feedback deals damage to target spell's controller equal to that spell's mana value.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "594b4d09-8ce1-494d-bdb2-842c124bd087", "set": "gpt", "set_name": "Guildpact", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/594b4d09-8ce1-494d-bdb2-842c124bd087", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Agpt&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/gpt?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/891f1d29-377a-4f71-917f-ff10e785caee/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aa01071c5-aca5-4faa-8a8a-30b50b642f42&unique=prints", "collector_number": "71", "digital": false, "rarity": "rare", "flavor_text": "\"You can't have so many people living so close together, all practicing so much magic, and not expect some feedback.\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Mitch Cotie", "artist_ids": ["657afd46-4fb0-4730-8da6-544bf5b80570"], "illustration_id": "59bf3333-f41c-42f5-a9ab-ea36cc0ebbf0", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 17941, "prices": {"usd": "0.24", "usd_foil": null, "usd_etched": null, "eur": "0.03", "eur_foil": "0.40", "tix": "0.01"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=97217", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Parallectric+Feedback&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Parallectric+Feedback&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Parallectric+Feedback"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/13747?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Parallectric+Feedback&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/23839?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "d3ab8065-cecc-4b19-be93-7cf791a93e62", "oracle_id": "7366374a-db19-4fb0-9c35-a6e466a9bbc3", "multiverse_ids": [12415], "mtgo_id": 12643, "mtgo_foil_id": 12644, "tcgplayer_id": 6355, "cardmarket_id": 10643, "name": "Parch", "lang": "en", "released_at": "1999-02-15", "uri": "https://api.scryfall.com/cards/d3ab8065-cecc-4b19-be93-7cf791a93e62", "scryfall_uri": "https://scryfall.com/card/ulg/86/parch?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/d/3/d3ab8065-cecc-4b19-be93-7cf791a93e62.jpg?1562864229", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/3/d3ab8065-cecc-4b19-be93-7cf791a93e62.jpg?1562864229", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/d/3/d3ab8065-cecc-4b19-be93-7cf791a93e62.jpg?1562864229", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/d/3/d3ab8065-cecc-4b19-be93-7cf791a93e62.png?1562864229", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/3/d3ab8065-cecc-4b19-be93-7cf791a93e62.jpg?1562864229", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/d/3/d3ab8065-cecc-4b19-be93-7cf791a93e62.jpg?1562864229"}, "mana_cost": "{1}{R}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Choose one \u2014\n\u2022 Parch deals 2 damage to any target.\n\u2022 Parch deals 4 damage to target blue creature.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "78ced61b-4b8a-4b33-b6b2-f5bd66f1a75a", "set": "ulg", "set_name": "Urza's Legacy", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/78ced61b-4b8a-4b33-b6b2-f5bd66f1a75a", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aulg&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ulg?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/d3ab8065-cecc-4b19-be93-7cf791a93e62/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A7366374a-db19-4fb0-9c35-a6e466a9bbc3&unique=prints", "collector_number": "86", "digital": false, "rarity": "common", "flavor_text": "\"Your porous flesh betrays you.\"\n\u2014Fire Eye, viashino bey", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Ron Spencer", "artist_ids": ["dab52c11-0564-4207-a4a1-c1735c946a65"], "illustration_id": "8e33fd4f-92cd-417e-86da-8aaecd31be98", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 21939, "penny_rank": 11437, "prices": {"usd": "0.07", "usd_foil": "5.22", "usd_etched": null, "eur": "0.05", "eur_foil": "0.90", "tix": "0.11"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=12415", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Parch&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Parch&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Parch"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/6355?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Parch&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/12643?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "5dc05455-4ebd-46f8-94cf-14f0d5420037", "oracle_id": "378fa12a-f3cd-4d28-9c27-8f2bf826a4f1", "multiverse_ids": [], "arena_id": 81948, "name": "Pass the Torch", "lang": "en", "released_at": "2022-06-02", "uri": "https://api.scryfall.com/cards/5dc05455-4ebd-46f8-94cf-14f0d5420037", "scryfall_uri": "https://scryfall.com/card/ysnc/11/pass-the-torch?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/5/d/5dc05455-4ebd-46f8-94cf-14f0d5420037.jpg?1654043945", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/d/5dc05455-4ebd-46f8-94cf-14f0d5420037.jpg?1654043945", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/5/d/5dc05455-4ebd-46f8-94cf-14f0d5420037.jpg?1654043945", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/5/d/5dc05455-4ebd-46f8-94cf-14f0d5420037.png?1654043945", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/d/5dc05455-4ebd-46f8-94cf-14f0d5420037.jpg?1654043945", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/5/d/5dc05455-4ebd-46f8-94cf-14f0d5420037.jpg?1654043945"}, "mana_cost": "{1}{R}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Pass the Torch deals 2 damage to any target. Choose a creature card in your hand. It perpetually gains \"Whenever this creature deals combat damage to a player, you may cast target card named Pass the Torch from your graveyard without paying its mana cost. If you do, this creature perpetually loses this ability\".", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "not_legal", "pauper": "not_legal", "vintage": "not_legal", "penny": "not_legal", "commander": "not_legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "not_legal", "duel": "not_legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "64e1763b-7bcc-45a1-b1b2-69277b754caf", "set": "ysnc", "set_name": "Alchemy: New Capenna", "set_type": "alchemy", "set_uri": "https://api.scryfall.com/sets/64e1763b-7bcc-45a1-b1b2-69277b754caf", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aysnc&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ysnc?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/5dc05455-4ebd-46f8-94cf-14f0d5420037/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A378fa12a-f3cd-4d28-9c27-8f2bf826a4f1&unique=prints", "collector_number": "11", "digital": true, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Mark Behm", "artist_ids": ["ccf77963-723f-4137-b364-7417079e8ab9"], "illustration_id": "7ea06bde-2ef1-4876-b825-7f3039c284d1", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "prices": {"usd": null, "usd_foil": null, "usd_etched": null, "eur": null, "eur_foil": null, "tix": null}, "related_uris": {"tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Pass+the+Torch&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Pass+the+Torch&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Pass+the+Torch"}}, {"object": "card", "id": "ed0a00f7-aee0-4ab2-bab6-bc0949176a7a", "oracle_id": "f34eb8a9-63af-452b-8957-8587bf4fd956", "multiverse_ids": [373507], "mtgo_id": 50610, "mtgo_foil_id": 50611, "tcgplayer_id": 71089, "cardmarket_id": 264081, "name": "Peak Eruption", "lang": "en", "released_at": "2013-09-27", "uri": "https://api.scryfall.com/cards/ed0a00f7-aee0-4ab2-bab6-bc0949176a7a", "scryfall_uri": "https://scryfall.com/card/ths/132/peak-eruption?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/e/d/ed0a00f7-aee0-4ab2-bab6-bc0949176a7a.jpg?1562836713", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/d/ed0a00f7-aee0-4ab2-bab6-bc0949176a7a.jpg?1562836713", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/e/d/ed0a00f7-aee0-4ab2-bab6-bc0949176a7a.jpg?1562836713", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/e/d/ed0a00f7-aee0-4ab2-bab6-bc0949176a7a.png?1562836713", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/d/ed0a00f7-aee0-4ab2-bab6-bc0949176a7a.jpg?1562836713", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/e/d/ed0a00f7-aee0-4ab2-bab6-bc0949176a7a.jpg?1562836713"}, "mana_cost": "{2}{R}", "cmc": 3.0, "type_line": "Sorcery", "oracle_text": "Destroy target Mountain. Peak Eruption deals 3 damage to that land's controller.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "69093d6f-e25a-41a4-8cf5-688d7f11c0fb", "set": "ths", "set_name": "Theros", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/69093d6f-e25a-41a4-8cf5-688d7f11c0fb", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aths&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ths?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/ed0a00f7-aee0-4ab2-bab6-bc0949176a7a/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Af34eb8a9-63af-452b-8957-8587bf4fd956&unique=prints", "collector_number": "132", "digital": false, "rarity": "uncommon", "flavor_text": "\"Early olive buds? A good omen. Flock of crows? Not so good. Mountain exploding? Bad. Very, very bad.\"\n\u2014Hira, street oracle", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Adam Paquette", "artist_ids": ["89023dad-e6c0-41e0-83fb-eb2bfbbdc3f2"], "illustration_id": "3414e7fa-5a84-427f-a00c-378ce79053a7", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 21811, "prices": {"usd": "0.05", "usd_foil": "0.20", "usd_etched": null, "eur": "0.02", "eur_foil": "0.15", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=373507", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Peak+Eruption&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Peak+Eruption&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Peak+Eruption"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/71089?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Peak+Eruption&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/50610?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "d285a7a1-bb7e-4a78-a49f-c2add62b829a", "oracle_id": "89abdf4c-ba9d-4602-ae50-cf79c68ea08d", "multiverse_ids": [513588], "mtgo_id": 88699, "arena_id": 76504, "tcgplayer_id": 235974, "cardmarket_id": 558026, "name": "Pigment Storm", "lang": "en", "released_at": "2021-04-23", "uri": "https://api.scryfall.com/cards/d285a7a1-bb7e-4a78-a49f-c2add62b829a", "scryfall_uri": "https://scryfall.com/card/stx/111/pigment-storm?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/d/2/d285a7a1-bb7e-4a78-a49f-c2add62b829a.jpg?1624592111", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/2/d285a7a1-bb7e-4a78-a49f-c2add62b829a.jpg?1624592111", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/d/2/d285a7a1-bb7e-4a78-a49f-c2add62b829a.jpg?1624592111", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/d/2/d285a7a1-bb7e-4a78-a49f-c2add62b829a.png?1624592111", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/2/d285a7a1-bb7e-4a78-a49f-c2add62b829a.jpg?1624592111", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/d/2/d285a7a1-bb7e-4a78-a49f-c2add62b829a.jpg?1624592111"}, "mana_cost": "{3}{R}{R}", "cmc": 5.0, "type_line": "Sorcery", "oracle_text": "Pigment Storm deals 5 damage to target creature. Excess damage is dealt to that creature's controller instead.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "541c3c28-8747-40e5-a231-8e8f33234859", "set": "stx", "set_name": "Strixhaven: School of Mages", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/541c3c28-8747-40e5-a231-8e8f33234859", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Astx&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/stx?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/d285a7a1-bb7e-4a78-a49f-c2add62b829a/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A89abdf4c-ba9d-4602-ae50-cf79c68ea08d&unique=prints", "collector_number": "111", "digital": false, "rarity": "common", "flavor_text": "When art projects collapse, Prismari students revel in the beauty of destruction. Everyone else runs for cover.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Bayard Wu", "artist_ids": ["b089963c-610a-4d50-9206-d64b7caedef1"], "illustration_id": "ad5bebe8-b326-4000-b05e-fe99602fc98e", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 15911, "preview": {"source": "Wizards of the Coast", "source_uri": "https://magic.wizards.com/en/articles/archive/card-image-gallery/strixhaven", "previewed_at": "2021-04-02"}, "prices": {"usd": "0.02", "usd_foil": "0.02", "usd_etched": null, "eur": "0.02", "eur_foil": "0.10", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=513588", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Pigment+Storm&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Pigment+Storm&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Pigment+Storm"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/235974?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Pigment+Storm&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/88699?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "c983e879-d9d2-47cc-9958-506711ca80cd", "oracle_id": "468cfc88-a493-44dc-9d0a-63d9cc89c114", "multiverse_ids": [240013], "mtgo_id": 43899, "mtgo_foil_id": 43900, "tcgplayer_id": 58838, "cardmarket_id": 254519, "name": "Pillar of Flame", "lang": "en", "released_at": "2012-05-04", "uri": "https://api.scryfall.com/cards/c983e879-d9d2-47cc-9958-506711ca80cd", "scryfall_uri": "https://scryfall.com/card/avr/149/pillar-of-flame?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/c/9/c983e879-d9d2-47cc-9958-506711ca80cd.jpg?1592709165", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/9/c983e879-d9d2-47cc-9958-506711ca80cd.jpg?1592709165", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/c/9/c983e879-d9d2-47cc-9958-506711ca80cd.jpg?1592709165", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/c/9/c983e879-d9d2-47cc-9958-506711ca80cd.png?1592709165", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/9/c983e879-d9d2-47cc-9958-506711ca80cd.jpg?1592709165", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/c/9/c983e879-d9d2-47cc-9958-506711ca80cd.jpg?1592709165"}, "mana_cost": "{R}", "cmc": 1.0, "type_line": "Sorcery", "oracle_text": "Pillar of Flame deals 2 damage to any target. If a creature dealt damage this way would die this turn, exile it instead.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "039810a9-92d7-4f2d-b2d0-ca661ac586c0", "set": "avr", "set_name": "Avacyn Restored", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/039810a9-92d7-4f2d-b2d0-ca661ac586c0", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aavr&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/avr?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/c983e879-d9d2-47cc-9958-506711ca80cd/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A468cfc88-a493-44dc-9d0a-63d9cc89c114&unique=prints", "collector_number": "149", "digital": false, "rarity": "common", "flavor_text": "\"May the worthy spend an eternity in Blessed Sleep. May the wicked find the peace of oblivion.\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Karl Kopinski", "artist_ids": ["0fad2c48-a56e-4a0b-b512-224f6f238f20"], "illustration_id": "ea74e37c-810b-465c-bedb-d41432a460fd", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 13703, "penny_rank": 1884, "prices": {"usd": "0.07", "usd_foil": "0.28", "usd_etched": null, "eur": "0.04", "eur_foil": "0.24", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=240013", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Pillar+of+Flame&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Pillar+of+Flame&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Pillar+of+Flame"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/58838?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Pillar+of+Flame&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/43899?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "c39677b8-9a43-4e62-a83a-4a9d6372310b", "oracle_id": "468cfc88-a493-44dc-9d0a-63d9cc89c114", "multiverse_ids": [], "tcgplayer_id": 67403, "cardmarket_id": 259334, "name": "Pillar of Flame", "lang": "en", "released_at": "2012-01-01", "uri": "https://api.scryfall.com/cards/c39677b8-9a43-4e62-a83a-4a9d6372310b", "scryfall_uri": "https://scryfall.com/card/f12/11/pillar-of-flame?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/c/3/c39677b8-9a43-4e62-a83a-4a9d6372310b.jpg?1562640029", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/3/c39677b8-9a43-4e62-a83a-4a9d6372310b.jpg?1562640029", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/c/3/c39677b8-9a43-4e62-a83a-4a9d6372310b.jpg?1562640029", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/c/3/c39677b8-9a43-4e62-a83a-4a9d6372310b.png?1562640029", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/3/c39677b8-9a43-4e62-a83a-4a9d6372310b.jpg?1562640029", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/c/3/c39677b8-9a43-4e62-a83a-4a9d6372310b.jpg?1562640029"}, "mana_cost": "{R}", "cmc": 1.0, "type_line": "Sorcery", "oracle_text": "Pillar of Flame deals 2 damage to any target. If a creature dealt damage this way would die this turn, exile it instead.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": true, "nonfoil": false, "finishes": ["foil"], "oversized": false, "promo": true, "reprint": true, "variation": false, "set_id": "6df07fcb-8b2a-43a6-82bc-97e92312a921", "set": "f12", "set_name": "Friday Night Magic 2012", "set_type": "promo", "set_uri": "https://api.scryfall.com/sets/6df07fcb-8b2a-43a6-82bc-97e92312a921", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Af12&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/f12?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/c39677b8-9a43-4e62-a83a-4a9d6372310b/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A468cfc88-a493-44dc-9d0a-63d9cc89c114&unique=prints", "collector_number": "11", "digital": false, "rarity": "rare", "watermark": "wotc", "flavor_text": "\"May the worthy spend an eternity in Blessed Sleep. May the wicked find the peace of oblivion.\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Dave Kendall", "artist_ids": ["8a5540a8-18c9-4fa9-802c-59d6866114d5"], "illustration_id": "b87f9f63-e54c-4468-a3d4-73971e6a4aec", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "promo_types": ["tourney", "fnm"], "edhrec_rank": 13703, "penny_rank": 1884, "prices": {"usd": null, "usd_foil": "0.24", "usd_etched": null, "eur": null, "eur_foil": "0.10", "tix": null}, "related_uris": {"tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Pillar+of+Flame&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Pillar+of+Flame&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Pillar+of+Flame"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/67403?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Pillar+of+Flame&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Pillar+of+Flame&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "42901bec-a8d0-46a3-a710-bfb7bd87f155", "oracle_id": "5ffc1e77-152b-4a82-8ea8-2c79cc31d5ef", "multiverse_ids": [539058], "tcgplayer_id": 246442, "cardmarket_id": 575973, "name": "Play with Fire", "lang": "en", "released_at": "2021-09-24", "uri": "https://api.scryfall.com/cards/42901bec-a8d0-46a3-a710-bfb7bd87f155", "scryfall_uri": "https://scryfall.com/card/mid/390/play-with-fire?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/4/2/42901bec-a8d0-46a3-a710-bfb7bd87f155.jpg?1640721639", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/2/42901bec-a8d0-46a3-a710-bfb7bd87f155.jpg?1640721639", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/4/2/42901bec-a8d0-46a3-a710-bfb7bd87f155.jpg?1640721639", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/4/2/42901bec-a8d0-46a3-a710-bfb7bd87f155.png?1640721639", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/2/42901bec-a8d0-46a3-a710-bfb7bd87f155.jpg?1640721639", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/4/2/42901bec-a8d0-46a3-a710-bfb7bd87f155.jpg?1640721639"}, "mana_cost": "{R}", "cmc": 1.0, "type_line": "Instant", "oracle_text": "Play with Fire deals 2 damage to any target. If a player is dealt damage this way, scry 1. (Look at the top card of your library. You may put that card on the bottom of your library.)", "colors": ["R"], "color_identity": ["R"], "keywords": ["Scry"], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": true, "reprint": false, "variation": false, "set_id": "44b8eb8f-fa23-401a-98b5-1fbb9871128e", "set": "mid", "set_name": "Innistrad: Midnight Hunt", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/44b8eb8f-fa23-401a-98b5-1fbb9871128e", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Amid&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/mid?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/42901bec-a8d0-46a3-a710-bfb7bd87f155/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A5ffc1e77-152b-4a82-8ea8-2c79cc31d5ef&unique=prints", "collector_number": "390", "digital": false, "rarity": "uncommon", "watermark": "planeswalker", "flavor_text": "Devils find human dwellings to be oppressively cold, dark, and unburnt.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Svetlin Velinov", "artist_ids": ["ffd063ae-c097-4f26-b2e6-b1e2137708bc"], "illustration_id": "cf93ba1b-244e-4582-aa88-95944df0bfa3", "border_color": "black", "frame": "2015", "frame_effects": ["inverted"], "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "promo_types": ["promopack"], "edhrec_rank": 8435, "penny_rank": 88, "prices": {"usd": "2.02", "usd_foil": "3.55", "usd_etched": null, "eur": "0.39", "eur_foil": "0.70", "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=539058", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Play+with+Fire&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Play+with+Fire&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Play+with+Fire"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/246442?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Play+with+Fire&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Play+with+Fire&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "cb86eeec-d50f-4823-86bd-35437926a6e4", "oracle_id": "a47ae84f-dcbc-4a60-9266-c1a02f92e7f8", "multiverse_ids": [147427], "mtgo_id": 29563, "mtgo_foil_id": 29564, "tcgplayer_id": 18742, "cardmarket_id": 19207, "name": "Poison the Well", "lang": "en", "released_at": "2008-05-02", "uri": "https://api.scryfall.com/cards/cb86eeec-d50f-4823-86bd-35437926a6e4", "scryfall_uri": "https://scryfall.com/card/shm/193/poison-the-well?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/c/b/cb86eeec-d50f-4823-86bd-35437926a6e4.jpg?1562835997", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/b/cb86eeec-d50f-4823-86bd-35437926a6e4.jpg?1562835997", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/c/b/cb86eeec-d50f-4823-86bd-35437926a6e4.jpg?1562835997", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/c/b/cb86eeec-d50f-4823-86bd-35437926a6e4.png?1562835997", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/b/cb86eeec-d50f-4823-86bd-35437926a6e4.jpg?1562835997", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/c/b/cb86eeec-d50f-4823-86bd-35437926a6e4.jpg?1562835997"}, "mana_cost": "{2}{B/R}{B/R}", "cmc": 4.0, "type_line": "Sorcery", "oracle_text": "Destroy target land. Poison the Well deals 2 damage to that land's controller.", "colors": ["B", "R"], "color_identity": ["B", "R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "c18c0ba1-2081-4808-9b2e-549bc3a666f3", "set": "shm", "set_name": "Shadowmoor", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/c18c0ba1-2081-4808-9b2e-549bc3a666f3", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ashm&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/shm?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/cb86eeec-d50f-4823-86bd-35437926a6e4/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aa47ae84f-dcbc-4a60-9266-c1a02f92e7f8&unique=prints", "collector_number": "193", "digital": false, "rarity": "common", "flavor_text": "Wells that provide clean, unhaunted water are rare enough to be worth building an entire town around.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Zoltan Boros & Gabor Szikszai", "artist_ids": ["1885e6cb-c827-4896-994e-3d0a027d602f", "44c3877f-8771-43dc-9e40-f4c765f59d2e"], "illustration_id": "e83bafb5-a2cd-4bdd-bc39-d72c63d6e61f", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 20605, "penny_rank": 9036, "prices": {"usd": "0.12", "usd_foil": "0.36", "usd_etched": null, "eur": "0.05", "eur_foil": "0.39", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=147427", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Poison+the+Well&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Poison+the+Well&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Poison+the+Well"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/18742?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Poison+the+Well&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/29563?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "a59b4e5b-e9e0-4507-b9e7-8fba7e3a54f9", "oracle_id": "5f9ea6e4-f5be-4ea2-95b4-fbdc69685ac5", "multiverse_ids": [455607], "mtgo_id": 69361, "arena_id": 68748, "tcgplayer_id": 177098, "cardmarket_id": 364330, "name": "Precision Bolt", "lang": "en", "released_at": "2018-10-05", "uri": "https://api.scryfall.com/cards/a59b4e5b-e9e0-4507-b9e7-8fba7e3a54f9", "scryfall_uri": "https://scryfall.com/card/grn/267/precision-bolt?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/a/5/a59b4e5b-e9e0-4507-b9e7-8fba7e3a54f9.jpg?1572894271", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/5/a59b4e5b-e9e0-4507-b9e7-8fba7e3a54f9.jpg?1572894271", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/a/5/a59b4e5b-e9e0-4507-b9e7-8fba7e3a54f9.jpg?1572894271", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/a/5/a59b4e5b-e9e0-4507-b9e7-8fba7e3a54f9.png?1572894271", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/5/a59b4e5b-e9e0-4507-b9e7-8fba7e3a54f9.jpg?1572894271", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/a/5/a59b4e5b-e9e0-4507-b9e7-8fba7e3a54f9.jpg?1572894271"}, "mana_cost": "{2}{R}", "cmc": 3.0, "type_line": "Sorcery", "oracle_text": "Precision Bolt deals 3 damage to any target.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "597c6d4a-8212-4903-a6af-12c4ae9e13f0", "set": "grn", "set_name": "Guilds of Ravnica", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/597c6d4a-8212-4903-a6af-12c4ae9e13f0", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Agrn&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/grn?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/a59b4e5b-e9e0-4507-b9e7-8fba7e3a54f9/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A5f9ea6e4-f5be-4ea2-95b4-fbdc69685ac5&unique=prints", "collector_number": "267", "digital": false, "rarity": "common", "flavor_text": "Ral had wielded lightning all his life but had never harnessed the power of an entire guild.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Grzegorz Rutkowski", "artist_ids": ["b5f49d0d-8056-48e3-b614-090e656b4f9c"], "illustration_id": "d1f943a0-5dba-42f6-9358-966dddf0beea", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "promo_types": ["planeswalkerdeck"], "edhrec_rank": 20120, "prices": {"usd": "0.16", "usd_foil": null, "usd_etched": null, "eur": "0.02", "eur_foil": null, "tix": "1.37"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=455607", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Precision+Bolt&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Precision+Bolt&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Precision+Bolt"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/177098?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Precision+Bolt&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/69361?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "866b7fd4-86e3-4b42-b1ea-33bad0db1f9f", "oracle_id": "fa3e28b1-131c-4223-81e0-18dfbab22c26", "multiverse_ids": [513706], "mtgo_id": 88935, "arena_id": 76622, "tcgplayer_id": 233273, "cardmarket_id": 540486, "name": "Prismari Command", "lang": "en", "released_at": "2021-04-23", "uri": "https://api.scryfall.com/cards/866b7fd4-86e3-4b42-b1ea-33bad0db1f9f", "scryfall_uri": "https://scryfall.com/card/stx/214/prismari-command?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/8/6/866b7fd4-86e3-4b42-b1ea-33bad0db1f9f.jpg?1627429955", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/6/866b7fd4-86e3-4b42-b1ea-33bad0db1f9f.jpg?1627429955", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/8/6/866b7fd4-86e3-4b42-b1ea-33bad0db1f9f.jpg?1627429955", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/8/6/866b7fd4-86e3-4b42-b1ea-33bad0db1f9f.png?1627429955", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/6/866b7fd4-86e3-4b42-b1ea-33bad0db1f9f.jpg?1627429955", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/8/6/866b7fd4-86e3-4b42-b1ea-33bad0db1f9f.jpg?1627429955"}, "mana_cost": "{1}{U}{R}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Choose two \u2014\n\u2022 Prismari Command deals 2 damage to any target.\n\u2022 Target player draws two cards, then discards two cards.\n\u2022 Target player creates a Treasure token.\n\u2022 Destroy target artifact.", "colors": ["R", "U"], "color_identity": ["R", "U"], "keywords": [], "all_parts": [{"object": "related_card", "id": "866b7fd4-86e3-4b42-b1ea-33bad0db1f9f", "component": "combo_piece", "name": "Prismari Command", "type_line": "Instant", "uri": "https://api.scryfall.com/cards/866b7fd4-86e3-4b42-b1ea-33bad0db1f9f"}, {"object": "related_card", "id": "1a2d027f-8996-4761-a776-47cd428f6779", "component": "token", "name": "Treasure", "type_line": "Token Artifact \u2014 Treasure", "uri": "https://api.scryfall.com/cards/1a2d027f-8996-4761-a776-47cd428f6779"}], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "541c3c28-8747-40e5-a231-8e8f33234859", "set": "stx", "set_name": "Strixhaven: School of Mages", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/541c3c28-8747-40e5-a231-8e8f33234859", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Astx&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/stx?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/866b7fd4-86e3-4b42-b1ea-33bad0db1f9f/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Afa3e28b1-131c-4223-81e0-18dfbab22c26&unique=prints", "collector_number": "214", "digital": false, "rarity": "rare", "watermark": "prismari", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Johannes Voss", "artist_ids": ["3593dd7e-c547-4a32-81cd-7da725f60118"], "illustration_id": "85385d8b-21b2-4c64-91d9-c9cf8b00ba8a", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 1440, "prices": {"usd": "2.94", "usd_foil": "3.73", "usd_etched": null, "eur": "5.56", "eur_foil": "6.95", "tix": "6.43"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=513706", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Prismari+Command&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Prismari+Command&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Prismari+Command"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/233273?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Prismari+Command&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/88935?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "bc8320ef-af97-4cf6-9aaf-17818174d842", "oracle_id": "6eb427e9-e679-4891-a29e-ea54b1935892", "multiverse_ids": [39845], "mtgo_id": 17925, "mtgo_foil_id": 17926, "tcgplayer_id": 10563, "cardmarket_id": 1793, "name": "Profane Prayers", "lang": "en", "released_at": "2002-10-07", "uri": "https://api.scryfall.com/cards/bc8320ef-af97-4cf6-9aaf-17818174d842", "scryfall_uri": "https://scryfall.com/card/ons/162/profane-prayers?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/b/c/bc8320ef-af97-4cf6-9aaf-17818174d842.jpg?1562939500", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/c/bc8320ef-af97-4cf6-9aaf-17818174d842.jpg?1562939500", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/b/c/bc8320ef-af97-4cf6-9aaf-17818174d842.jpg?1562939500", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/b/c/bc8320ef-af97-4cf6-9aaf-17818174d842.png?1562939500", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/c/bc8320ef-af97-4cf6-9aaf-17818174d842.jpg?1562939500", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/b/c/bc8320ef-af97-4cf6-9aaf-17818174d842.jpg?1562939500"}, "mana_cost": "{2}{B}{B}", "cmc": 4.0, "type_line": "Sorcery", "oracle_text": "Profane Prayers deals X damage to any target and you gain X life, where X is the number of Clerics on the battlefield.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "914a6c6d-cb3b-45e8-a2db-9978a2339faf", "set": "ons", "set_name": "Onslaught", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/914a6c6d-cb3b-45e8-a2db-9978a2339faf", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aons&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ons?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/bc8320ef-af97-4cf6-9aaf-17818174d842/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A6eb427e9-e679-4891-a29e-ea54b1935892&unique=prints", "collector_number": "162", "digital": false, "rarity": "common", "flavor_text": "\"We have ways to make you talk, but you have nothing interesting to say.\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Alan Pollack", "artist_ids": ["70c20ea3-5ad6-4082-a337-6e994ae5828e"], "illustration_id": "69cccfe6-357b-4907-a7b0-68d0499f1048", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 14179, "penny_rank": 10195, "prices": {"usd": "0.09", "usd_foil": "0.92", "usd_etched": null, "eur": "0.12", "eur_foil": "0.20", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=39845", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Profane+Prayers&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Profane+Prayers&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Profane+Prayers"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/10563?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Profane+Prayers&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/17925?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "101163c0-cd2f-4e1a-84b3-f64fc748807d", "oracle_id": "d5e4bf5e-1a66-4315-8c82-640c27977b88", "multiverse_ids": [338392], "mtgo_id": 46111, "mtgo_foil_id": 46112, "tcgplayer_id": 66335, "cardmarket_id": 258133, "name": "Prophetic Bolt", "lang": "en", "released_at": "2012-09-07", "uri": "https://api.scryfall.com/cards/101163c0-cd2f-4e1a-84b3-f64fc748807d", "scryfall_uri": "https://scryfall.com/card/ddj/27/prophetic-bolt?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/1/0/101163c0-cd2f-4e1a-84b3-f64fc748807d.jpg?1592713462", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/0/101163c0-cd2f-4e1a-84b3-f64fc748807d.jpg?1592713462", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/1/0/101163c0-cd2f-4e1a-84b3-f64fc748807d.jpg?1592713462", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/1/0/101163c0-cd2f-4e1a-84b3-f64fc748807d.png?1592713462", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/0/101163c0-cd2f-4e1a-84b3-f64fc748807d.jpg?1592713462", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/1/0/101163c0-cd2f-4e1a-84b3-f64fc748807d.jpg?1592713462"}, "mana_cost": "{3}{U}{R}", "cmc": 5.0, "type_line": "Instant", "oracle_text": "Prophetic Bolt deals 4 damage to any target. Look at the top four cards of your library. Put one of those cards into your hand and the rest on the bottom of your library in any order.", "colors": ["R", "U"], "color_identity": ["R", "U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "2dfea68b-b0c4-4f63-ba6c-36c9a6e3030f", "set": "ddj", "set_name": "Duel Decks: Izzet vs. Golgari", "set_type": "duel_deck", "set_uri": "https://api.scryfall.com/sets/2dfea68b-b0c4-4f63-ba6c-36c9a6e3030f", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Addj&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ddj?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/101163c0-cd2f-4e1a-84b3-f64fc748807d/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ad5e4bf5e-1a66-4315-8c82-640c27977b88&unique=prints", "collector_number": "27", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Slawomir Maniak", "artist_ids": ["d887bc66-2779-416c-a1ff-d8720242063e"], "illustration_id": "d0caa3ca-2518-4947-ae59-f950987f9d14", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "edhrec_rank": 6967, "penny_rank": 1528, "prices": {"usd": "0.17", "usd_foil": null, "usd_etched": null, "eur": "0.11", "eur_foil": null, "tix": "0.38"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=338392", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Prophetic+Bolt&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Prophetic+Bolt&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Prophetic+Bolt"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/66335?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Prophetic+Bolt&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/46111?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "79f74291-c452-4a60-bf5f-73efad6583d4", "oracle_id": "d5e4bf5e-1a66-4315-8c82-640c27977b88", "multiverse_ids": [27187], "mtgo_id": 16264, "mtgo_foil_id": 16265, "tcgplayer_id": 8013, "cardmarket_id": 3228, "name": "Prophetic Bolt", "lang": "en", "released_at": "2001-06-04", "uri": "https://api.scryfall.com/cards/79f74291-c452-4a60-bf5f-73efad6583d4", "scryfall_uri": "https://scryfall.com/card/apc/116/prophetic-bolt?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/7/9/79f74291-c452-4a60-bf5f-73efad6583d4.jpg?1562923762", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/9/79f74291-c452-4a60-bf5f-73efad6583d4.jpg?1562923762", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/7/9/79f74291-c452-4a60-bf5f-73efad6583d4.jpg?1562923762", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/7/9/79f74291-c452-4a60-bf5f-73efad6583d4.png?1562923762", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/9/79f74291-c452-4a60-bf5f-73efad6583d4.jpg?1562923762", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/7/9/79f74291-c452-4a60-bf5f-73efad6583d4.jpg?1562923762"}, "mana_cost": "{3}{U}{R}", "cmc": 5.0, "type_line": "Instant", "oracle_text": "Prophetic Bolt deals 4 damage to any target. Look at the top four cards of your library. Put one of those cards into your hand and the rest on the bottom of your library in any order.", "colors": ["R", "U"], "color_identity": ["R", "U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "e4e00913-d08d-4899-86ea-5cf631e09ce0", "set": "apc", "set_name": "Apocalypse", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/e4e00913-d08d-4899-86ea-5cf631e09ce0", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aapc&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/apc?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/79f74291-c452-4a60-bf5f-73efad6583d4/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ad5e4bf5e-1a66-4315-8c82-640c27977b88&unique=prints", "collector_number": "116", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Dave Dorman", "artist_ids": ["9235458b-ce92-45bd-a430-a72ecd8e6176"], "illustration_id": "54d15916-2062-453b-8a62-65c1b7a008db", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 6967, "penny_rank": 1528, "prices": {"usd": "0.27", "usd_foil": "21.87", "usd_etched": null, "eur": "0.30", "eur_foil": "17.50", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=27187", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Prophetic+Bolt&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Prophetic+Bolt&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Prophetic+Bolt"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/8013?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Prophetic+Bolt&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/16264?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "2727b05a-0c86-4c59-b7b4-425bdd8e775d", "oracle_id": "ac844303-487b-49e9-9170-02892153ca6a", "multiverse_ids": [503756], "mtgo_id": 87623, "arena_id": 75187, "tcgplayer_id": 230744, "cardmarket_id": 532072, "name": "Provoke the Trolls", "lang": "en", "released_at": "2021-02-05", "uri": "https://api.scryfall.com/cards/2727b05a-0c86-4c59-b7b4-425bdd8e775d", "scryfall_uri": "https://scryfall.com/card/khm/144/provoke-the-trolls?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/2/7/2727b05a-0c86-4c59-b7b4-425bdd8e775d.jpg?1631049503", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/7/2727b05a-0c86-4c59-b7b4-425bdd8e775d.jpg?1631049503", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/2/7/2727b05a-0c86-4c59-b7b4-425bdd8e775d.jpg?1631049503", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/2/7/2727b05a-0c86-4c59-b7b4-425bdd8e775d.png?1631049503", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/7/2727b05a-0c86-4c59-b7b4-425bdd8e775d.jpg?1631049503", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/2/7/2727b05a-0c86-4c59-b7b4-425bdd8e775d.jpg?1631049503"}, "mana_cost": "{3}{R}", "cmc": 4.0, "type_line": "Instant", "oracle_text": "Provoke the Trolls deals 3 damage to any target. If a creature is dealt damage this way, it gets +5/+0 until end of turn.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "43057fad-b1c1-437f-bc48-0045bce6d8c9", "set": "khm", "set_name": "Kaldheim", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/43057fad-b1c1-437f-bc48-0045bce6d8c9", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Akhm&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/khm?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/2727b05a-0c86-4c59-b7b4-425bdd8e775d/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aac844303-487b-49e9-9170-02892153ca6a&unique=prints", "collector_number": "144", "digital": false, "rarity": "uncommon", "flavor_text": "\"I like burning and pillaging as much as anyone, but sometimes it's just easier to throw a rock and let the trolls do the work.\"\n\u2014Urik, Tuskeri raid leader", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Deruchenko Alexander", "artist_ids": ["806f6ff9-6ed4-4e93-998a-a562c0b792e6"], "illustration_id": "92624ca6-5dab-41b3-bb4c-7aae9f765ae1", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 19114, "prices": {"usd": "0.01", "usd_foil": "0.03", "usd_etched": null, "eur": "0.02", "eur_foil": "0.10", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=503756", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Provoke+the+Trolls&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Provoke+the+Trolls&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Provoke+the+Trolls"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/230744?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Provoke+the+Trolls&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/87623?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "a6a86e6e-bfff-46af-9d36-c912901fea92", "oracle_id": "7f221ad6-7ec4-483d-a6b5-1456c95c1cad", "multiverse_ids": [122], "tcgplayer_id": 1227, "cardmarket_id": 5308, "name": "Psionic Blast", "lang": "en", "released_at": "1993-08-05", "uri": "https://api.scryfall.com/cards/a6a86e6e-bfff-46af-9d36-c912901fea92", "scryfall_uri": "https://scryfall.com/card/lea/74/psionic-blast?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/a/6/a6a86e6e-bfff-46af-9d36-c912901fea92.jpg?1559591679", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/6/a6a86e6e-bfff-46af-9d36-c912901fea92.jpg?1559591679", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/a/6/a6a86e6e-bfff-46af-9d36-c912901fea92.jpg?1559591679", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/a/6/a6a86e6e-bfff-46af-9d36-c912901fea92.png?1559591679", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/6/a6a86e6e-bfff-46af-9d36-c912901fea92.jpg?1559591679", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/a/6/a6a86e6e-bfff-46af-9d36-c912901fea92.jpg?1559591679"}, "mana_cost": "{2}{U}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Psionic Blast deals 4 damage to any target and 2 damage to you.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "288bd996-960e-448b-a187-9504c1930c2c", "set": "lea", "set_name": "Limited Edition Alpha", "set_type": "core", "set_uri": "https://api.scryfall.com/sets/288bd996-960e-448b-a187-9504c1930c2c", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Alea&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/lea?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/a6a86e6e-bfff-46af-9d36-c912901fea92/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A7f221ad6-7ec4-483d-a6b5-1456c95c1cad&unique=prints", "collector_number": "74", "digital": false, "rarity": "uncommon", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Douglas Shuler", "artist_ids": ["a9ddb513-51c7-455c-ab8f-5b90aae9f75b"], "illustration_id": "84a66a64-7aae-490d-b9e3-e6ef94a0da30", "border_color": "black", "frame": "1993", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 14724, "prices": {"usd": "600.00", "usd_foil": null, "usd_etched": null, "eur": "749.00", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=122", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Psionic+Blast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Psionic+Blast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Psionic+Blast"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/1227?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Psionic+Blast&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Psionic+Blast&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "1a380513-9eea-4ff9-bcc8-7a6b53c642c4", "oracle_id": "7f221ad6-7ec4-483d-a6b5-1456c95c1cad", "multiverse_ids": [], "tcgplayer_id": 38329, "cardmarket_id": 17584, "name": "Psionic Blast", "lang": "en", "released_at": "2007-01-01", "uri": "https://api.scryfall.com/cards/1a380513-9eea-4ff9-bcc8-7a6b53c642c4", "scryfall_uri": "https://scryfall.com/card/p07/4/psionic-blast?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/1/a/1a380513-9eea-4ff9-bcc8-7a6b53c642c4.jpg?1561756740", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/a/1a380513-9eea-4ff9-bcc8-7a6b53c642c4.jpg?1561756740", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/1/a/1a380513-9eea-4ff9-bcc8-7a6b53c642c4.jpg?1561756740", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/1/a/1a380513-9eea-4ff9-bcc8-7a6b53c642c4.png?1561756740", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/a/1a380513-9eea-4ff9-bcc8-7a6b53c642c4.jpg?1561756740", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/1/a/1a380513-9eea-4ff9-bcc8-7a6b53c642c4.jpg?1561756740"}, "mana_cost": "{2}{U}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Psionic Blast deals 4 damage to any target and 2 damage to you.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": true, "reprint": true, "variation": false, "set_id": "c1a38fe6-73f4-4414-897b-f1215a7c948f", "set": "p07", "set_name": "Magic Player Rewards 2007", "set_type": "promo", "set_uri": "https://api.scryfall.com/sets/c1a38fe6-73f4-4414-897b-f1215a7c948f", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ap07&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/p07?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/1a380513-9eea-4ff9-bcc8-7a6b53c642c4/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A7f221ad6-7ec4-483d-a6b5-1456c95c1cad&unique=prints", "collector_number": "4", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Aleksi Briclot", "artist_ids": ["5e470014-31cb-41b0-b054-e23374484449"], "illustration_id": "29107495-9954-4163-b6ac-07b4839998f0", "border_color": "black", "frame": "2003", "full_art": true, "textless": true, "booster": false, "story_spotlight": false, "promo_types": ["playerrewards"], "edhrec_rank": 14724, "prices": {"usd": "3.16", "usd_foil": null, "usd_etched": null, "eur": "0.88", "eur_foil": null, "tix": null}, "related_uris": {"tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Psionic+Blast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Psionic+Blast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Psionic+Blast"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/38329?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Psionic+Blast&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Psionic+Blast&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "b1103d4d-b50a-4e2c-b18a-a181bc819881", "oracle_id": "6af596d2-f075-4f55-b088-a5237fcdaa51", "multiverse_ids": [1494], "tcgplayer_id": 3981, "cardmarket_id": 7039, "name": "Psychic Purge", "lang": "en", "released_at": "1994-06-01", "uri": "https://api.scryfall.com/cards/b1103d4d-b50a-4e2c-b18a-a181bc819881", "scryfall_uri": "https://scryfall.com/card/leg/68/psychic-purge?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/b/1/b1103d4d-b50a-4e2c-b18a-a181bc819881.jpg?1562860647", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/1/b1103d4d-b50a-4e2c-b18a-a181bc819881.jpg?1562860647", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/b/1/b1103d4d-b50a-4e2c-b18a-a181bc819881.jpg?1562860647", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/b/1/b1103d4d-b50a-4e2c-b18a-a181bc819881.png?1562860647", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/1/b1103d4d-b50a-4e2c-b18a-a181bc819881.jpg?1562860647", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/b/1/b1103d4d-b50a-4e2c-b18a-a181bc819881.jpg?1562860647"}, "mana_cost": "{U}", "cmc": 1.0, "type_line": "Sorcery", "oracle_text": "Psychic Purge deals 1 damage to any target.\nWhen a spell or ability an opponent controls causes you to discard Psychic Purge, that player loses 5 life.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "78c50b4b-b220-455b-a2d5-cee458fa56f3", "set": "leg", "set_name": "Legends", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/78c50b4b-b220-455b-a2d5-cee458fa56f3", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aleg&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/leg?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/b1103d4d-b50a-4e2c-b18a-a181bc819881/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A6af596d2-f075-4f55-b088-a5237fcdaa51&unique=prints", "collector_number": "68", "digital": false, "rarity": "common", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Susan Van Camp", "artist_ids": ["8921d44a-837d-4d6e-bf9f-e4f7c33f11e8"], "illustration_id": "410506ab-dc87-435e-8bcc-56cc3aaa8794", "border_color": "black", "frame": "1993", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 22662, "penny_rank": 5735, "prices": {"usd": "2.10", "usd_foil": null, "usd_etched": null, "eur": "3.89", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=1494", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Psychic+Purge&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Psychic+Purge&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Psychic+Purge"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/3981?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Psychic+Purge&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Psychic+Purge&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "8d3f6cd2-0138-40e7-a975-3f7c68db0d93", "oracle_id": "4b6aa5e2-b539-46cd-804b-cd9e996a9456", "multiverse_ids": [33691], "mtgo_id": 17183, "mtgo_foil_id": 17184, "tcgplayer_id": 9647, "cardmarket_id": 2345, "name": "Psychotic Haze", "lang": "en", "released_at": "2002-02-04", "uri": "https://api.scryfall.com/cards/8d3f6cd2-0138-40e7-a975-3f7c68db0d93", "scryfall_uri": "https://scryfall.com/card/tor/76/psychotic-haze?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/8/d/8d3f6cd2-0138-40e7-a975-3f7c68db0d93.jpg?1562630817", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/d/8d3f6cd2-0138-40e7-a975-3f7c68db0d93.jpg?1562630817", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/8/d/8d3f6cd2-0138-40e7-a975-3f7c68db0d93.jpg?1562630817", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/8/d/8d3f6cd2-0138-40e7-a975-3f7c68db0d93.png?1562630817", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/d/8d3f6cd2-0138-40e7-a975-3f7c68db0d93.jpg?1562630817", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/8/d/8d3f6cd2-0138-40e7-a975-3f7c68db0d93.jpg?1562630817"}, "mana_cost": "{2}{B}{B}", "cmc": 4.0, "type_line": "Instant", "oracle_text": "Psychotic Haze deals 1 damage to each creature and each player.\nMadness {1}{B} (If you discard this card, discard it into exile. When you do, cast it for its madness cost or put it into your graveyard.)", "colors": ["B"], "color_identity": ["B"], "keywords": ["Madness"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "e0b3fda1-a6ca-4996-849b-08b463d39484", "set": "tor", "set_name": "Torment", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/e0b3fda1-a6ca-4996-849b-08b463d39484", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ator&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/tor?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/8d3f6cd2-0138-40e7-a975-3f7c68db0d93/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A4b6aa5e2-b539-46cd-804b-cd9e996a9456&unique=prints", "collector_number": "76", "digital": false, "rarity": "common", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Alex Horley-Orlandelli", "artist_ids": ["1631a2ad-bf03-4ab9-b86c-60da982d58a1"], "illustration_id": "cb0d6c75-a3de-4148-ad3e-f1be07721c52", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 8414, "penny_rank": 9968, "prices": {"usd": "0.25", "usd_foil": "8.68", "usd_etched": null, "eur": "0.19", "eur_foil": "0.20", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=33691", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Psychotic+Haze&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Psychotic+Haze&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Psychotic+Haze"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/9647?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Psychotic+Haze&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/17183?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "ea3ed9c8-b552-4a9a-b77a-8b148638b4f0", "oracle_id": "f1c05ba3-7225-4d29-96aa-9d9c0b54de53", "multiverse_ids": [39410], "mtgo_id": 20473, "mtgo_foil_id": 20474, "tcgplayer_id": 11713, "cardmarket_id": 429, "name": "Pulse of the Forge", "lang": "en", "released_at": "2004-02-06", "uri": "https://api.scryfall.com/cards/ea3ed9c8-b552-4a9a-b77a-8b148638b4f0", "scryfall_uri": "https://scryfall.com/card/dst/66/pulse-of-the-forge?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/e/a/ea3ed9c8-b552-4a9a-b77a-8b148638b4f0.jpg?1562640294", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/a/ea3ed9c8-b552-4a9a-b77a-8b148638b4f0.jpg?1562640294", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/e/a/ea3ed9c8-b552-4a9a-b77a-8b148638b4f0.jpg?1562640294", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/e/a/ea3ed9c8-b552-4a9a-b77a-8b148638b4f0.png?1562640294", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/a/ea3ed9c8-b552-4a9a-b77a-8b148638b4f0.jpg?1562640294", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/e/a/ea3ed9c8-b552-4a9a-b77a-8b148638b4f0.jpg?1562640294"}, "mana_cost": "{1}{R}{R}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Pulse of the Forge deals 4 damage to target player or planeswalker. Then if that player or that planeswalker's controller has more life than you, return Pulse of the Forge to its owner's hand.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "e29cb2dd-1345-4032-abfe-e52e8c8ce074", "set": "dst", "set_name": "Darksteel", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/e29cb2dd-1345-4032-abfe-e52e8c8ce074", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Adst&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/dst?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/ea3ed9c8-b552-4a9a-b77a-8b148638b4f0/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Af1c05ba3-7225-4d29-96aa-9d9c0b54de53&unique=prints", "collector_number": "66", "digital": false, "rarity": "rare", "flavor_text": "Before wars or weapons, there was anger.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Paolo Parente", "artist_ids": ["d48dd097-720d-476a-8722-6a02854ae28b"], "illustration_id": "b5a5365a-0552-42cf-8ffc-cefe3d87c7c8", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 14553, "penny_rank": 4660, "prices": {"usd": "0.34", "usd_foil": "2.45", "usd_etched": null, "eur": "0.32", "eur_foil": "1.95", "tix": "0.01"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=39410", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Pulse+of+the+Forge&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Pulse+of+the+Forge&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Pulse+of+the+Forge"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/11713?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Pulse+of+the+Forge&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/20473?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "3bf90b4d-98cf-4953-b6ae-c41d21ab559b", "oracle_id": "e296581d-01ac-43bf-898c-2edb4c81bcbe", "multiverse_ids": [152034], "mtgo_id": 30038, "mtgo_foil_id": 30039, "tcgplayer_id": 27180, "cardmarket_id": 19522, "name": "Puncture Blast", "lang": "en", "released_at": "2008-07-25", "uri": "https://api.scryfall.com/cards/3bf90b4d-98cf-4953-b6ae-c41d21ab559b", "scryfall_uri": "https://scryfall.com/card/eve/60/puncture-blast?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/3/b/3bf90b4d-98cf-4953-b6ae-c41d21ab559b.jpg?1562907480", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/b/3bf90b4d-98cf-4953-b6ae-c41d21ab559b.jpg?1562907480", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/3/b/3bf90b4d-98cf-4953-b6ae-c41d21ab559b.jpg?1562907480", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/3/b/3bf90b4d-98cf-4953-b6ae-c41d21ab559b.png?1562907480", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/b/3bf90b4d-98cf-4953-b6ae-c41d21ab559b.jpg?1562907480", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/3/b/3bf90b4d-98cf-4953-b6ae-c41d21ab559b.jpg?1562907480"}, "mana_cost": "{2}{R}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Wither (This deals damage to creatures in the form of -1/-1 counters.)\nPuncture Blast deals 3 damage to any target.", "colors": ["R"], "color_identity": ["R"], "keywords": ["Wither"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "86b4dfef-f2d1-49d6-825d-7df6bda44357", "set": "eve", "set_name": "Eventide", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/86b4dfef-f2d1-49d6-825d-7df6bda44357", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aeve&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/eve?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/3bf90b4d-98cf-4953-b6ae-c41d21ab559b/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ae296581d-01ac-43bf-898c-2edb4c81bcbe&unique=prints", "collector_number": "60", "digital": false, "rarity": "common", "flavor_text": "Gnarltrunk didn't remember having quite that many knotholes.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Carl Critchlow", "artist_ids": ["17948f16-611a-44b8-8d10-9895a0bdfff1"], "illustration_id": "78b6cd57-b5e2-42f3-bc0f-83ff3b769016", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 12375, "penny_rank": 13395, "prices": {"usd": "0.14", "usd_foil": "0.60", "usd_etched": null, "eur": "0.02", "eur_foil": "0.17", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=152034", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Puncture+Blast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Puncture+Blast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Puncture+Blast"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/27180?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Puncture+Blast&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/30038?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "0da4409b-fe3f-4500-bf4b-890593f7d313", "oracle_id": "1890ef1b-38e5-432d-b040-f33cea7814e7", "multiverse_ids": [243483], "mtgo_id": 40344, "mtgo_foil_id": 40345, "tcgplayer_id": 46867, "cardmarket_id": 245789, "name": "Punishing Fire", "lang": "en", "released_at": "2011-04-01", "uri": "https://api.scryfall.com/cards/0da4409b-fe3f-4500-bf4b-890593f7d313", "scryfall_uri": "https://scryfall.com/card/ddg/66/punishing-fire?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/0/d/0da4409b-fe3f-4500-bf4b-890593f7d313.jpg?1562897775", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/d/0da4409b-fe3f-4500-bf4b-890593f7d313.jpg?1562897775", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/0/d/0da4409b-fe3f-4500-bf4b-890593f7d313.jpg?1562897775", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/0/d/0da4409b-fe3f-4500-bf4b-890593f7d313.png?1562897775", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/d/0da4409b-fe3f-4500-bf4b-890593f7d313.jpg?1562897775", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/0/d/0da4409b-fe3f-4500-bf4b-890593f7d313.jpg?1562897775"}, "mana_cost": "{1}{R}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Punishing Fire deals 2 damage to any target.\nWhenever an opponent gains life, you may pay {R}. If you do, return Punishing Fire from your graveyard to your hand.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "banned", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "cf842e69-7a05-48e2-adac-fd177087caf5", "set": "ddg", "set_name": "Duel Decks: Knights vs. Dragons", "set_type": "duel_deck", "set_uri": "https://api.scryfall.com/sets/cf842e69-7a05-48e2-adac-fd177087caf5", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Addg&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ddg?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/0da4409b-fe3f-4500-bf4b-890593f7d313/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A1890ef1b-38e5-432d-b040-f33cea7814e7&unique=prints", "collector_number": "66", "digital": false, "rarity": "uncommon", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Greg Staples", "artist_ids": ["93d65564-bf00-447b-8406-e2031f03b6b1"], "illustration_id": "991c38bc-233f-432a-bda2-ff5cbebc032a", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "edhrec_rank": 11337, "penny_rank": 3813, "prices": {"usd": "0.36", "usd_foil": null, "usd_etched": null, "eur": "0.75", "eur_foil": null, "tix": "6.81"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=243483", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Punishing+Fire&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Punishing+Fire&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Punishing+Fire"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/46867?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Punishing+Fire&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/40344?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "56e76f1c-5a07-455a-a3df-4c45b5b25b82", "oracle_id": "1890ef1b-38e5-432d-b040-f33cea7814e7", "multiverse_ids": [192217], "mtgo_id": 34344, "mtgo_foil_id": 34345, "tcgplayer_id": 33399, "cardmarket_id": 21932, "name": "Punishing Fire", "lang": "en", "released_at": "2009-10-02", "uri": "https://api.scryfall.com/cards/56e76f1c-5a07-455a-a3df-4c45b5b25b82", "scryfall_uri": "https://scryfall.com/card/zen/142/punishing-fire?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/5/6/56e76f1c-5a07-455a-a3df-4c45b5b25b82.jpg?1562612350", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/6/56e76f1c-5a07-455a-a3df-4c45b5b25b82.jpg?1562612350", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/5/6/56e76f1c-5a07-455a-a3df-4c45b5b25b82.jpg?1562612350", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/5/6/56e76f1c-5a07-455a-a3df-4c45b5b25b82.png?1562612350", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/6/56e76f1c-5a07-455a-a3df-4c45b5b25b82.jpg?1562612350", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/5/6/56e76f1c-5a07-455a-a3df-4c45b5b25b82.jpg?1562612350"}, "mana_cost": "{1}{R}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Punishing Fire deals 2 damage to any target.\nWhenever an opponent gains life, you may pay {R}. If you do, return Punishing Fire from your graveyard to your hand.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "banned", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "eb16a2bd-a218-4e4e-8339-4aa1afc0c8d2", "set": "zen", "set_name": "Zendikar", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/eb16a2bd-a218-4e4e-8339-4aa1afc0c8d2", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Azen&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/zen?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/56e76f1c-5a07-455a-a3df-4c45b5b25b82/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A1890ef1b-38e5-432d-b040-f33cea7814e7&unique=prints", "collector_number": "142", "digital": false, "rarity": "uncommon", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Christopher Moeller", "artist_ids": ["21e10012-06ae-44f2-b38d-3824dd2e73d4"], "illustration_id": "540df3c7-a19e-488b-b4ad-b77d616f0cd5", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 11337, "penny_rank": 3813, "prices": {"usd": "0.27", "usd_foil": "13.52", "usd_etched": null, "eur": "0.18", "eur_foil": "6.50", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=192217", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Punishing+Fire&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Punishing+Fire&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Punishing+Fire"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/33399?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Punishing+Fire&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/34344?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "4179a72b-8482-46ec-9815-f5d6d94b5aa5", "oracle_id": "09f73f77-a9bc-4718-be7d-ba6e08576e3a", "multiverse_ids": [369090], "mtgo_id": 48206, "mtgo_foil_id": 48207, "tcgplayer_id": 67978, "cardmarket_id": 261520, "name": "Punish the Enemy", "lang": "en", "released_at": "2013-05-03", "uri": "https://api.scryfall.com/cards/4179a72b-8482-46ec-9815-f5d6d94b5aa5", "scryfall_uri": "https://scryfall.com/card/dgm/35/punish-the-enemy?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/4/1/4179a72b-8482-46ec-9815-f5d6d94b5aa5.jpg?1562907014", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/1/4179a72b-8482-46ec-9815-f5d6d94b5aa5.jpg?1562907014", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/4/1/4179a72b-8482-46ec-9815-f5d6d94b5aa5.jpg?1562907014", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/4/1/4179a72b-8482-46ec-9815-f5d6d94b5aa5.png?1562907014", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/1/4179a72b-8482-46ec-9815-f5d6d94b5aa5.jpg?1562907014", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/4/1/4179a72b-8482-46ec-9815-f5d6d94b5aa5.jpg?1562907014"}, "mana_cost": "{4}{R}", "cmc": 5.0, "type_line": "Instant", "oracle_text": "Punish the Enemy deals 3 damage to target player or planeswalker and 3 damage to target creature.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "c8bd8520-cd98-45cd-b533-8d40c2087426", "set": "dgm", "set_name": "Dragon's Maze", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/c8bd8520-cd98-45cd-b533-8d40c2087426", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Adgm&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/dgm?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/4179a72b-8482-46ec-9815-f5d6d94b5aa5/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A09f73f77-a9bc-4718-be7d-ba6e08576e3a&unique=prints", "collector_number": "35", "digital": false, "rarity": "common", "flavor_text": "\"When justice descends, the servant will burn with the master.\"\n\u2014Aurelia", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Slawomir Maniak", "artist_ids": ["d887bc66-2779-416c-a1ff-d8720242063e"], "illustration_id": "a8234df9-276b-40a9-9146-5cd055df4cfa", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 19521, "prices": {"usd": "0.07", "usd_foil": "0.25", "usd_etched": null, "eur": "0.01", "eur_foil": "0.10", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=369090", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Punish+the+Enemy&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Punish+the+Enemy&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Punish+the+Enemy"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/67978?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Punish+the+Enemy&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/48206?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "c22c9dab-e8d5-48b3-8fd2-9f4138ee0c7c", "oracle_id": "9c01e2a6-61e7-455c-b09f-8c0de2266782", "multiverse_ids": [96845], "mtgo_id": 23653, "mtgo_foil_id": 23654, "tcgplayer_id": 13755, "cardmarket_id": 13237, "name": "Pyromatics", "lang": "en", "released_at": "2006-02-03", "uri": "https://api.scryfall.com/cards/c22c9dab-e8d5-48b3-8fd2-9f4138ee0c7c", "scryfall_uri": "https://scryfall.com/card/gpt/72/pyromatics?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/c/2/c22c9dab-e8d5-48b3-8fd2-9f4138ee0c7c.jpg?1593272350", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/2/c22c9dab-e8d5-48b3-8fd2-9f4138ee0c7c.jpg?1593272350", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/c/2/c22c9dab-e8d5-48b3-8fd2-9f4138ee0c7c.jpg?1593272350", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/c/2/c22c9dab-e8d5-48b3-8fd2-9f4138ee0c7c.png?1593272350", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/2/c22c9dab-e8d5-48b3-8fd2-9f4138ee0c7c.jpg?1593272350", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/c/2/c22c9dab-e8d5-48b3-8fd2-9f4138ee0c7c.jpg?1593272350"}, "mana_cost": "{1}{R}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Replicate {1}{R} (When you cast this spell, copy it for each time you paid its replicate cost. You may choose new targets for the copies.)\nPyromatics deals 1 damage to any target.", "colors": ["R"], "color_identity": ["R"], "keywords": ["Replicate"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "594b4d09-8ce1-494d-bdb2-842c124bd087", "set": "gpt", "set_name": "Guildpact", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/594b4d09-8ce1-494d-bdb2-842c124bd087", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Agpt&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/gpt?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/c22c9dab-e8d5-48b3-8fd2-9f4138ee0c7c/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A9c01e2a6-61e7-455c-b09f-8c0de2266782&unique=prints", "collector_number": "72", "digital": false, "rarity": "common", "watermark": "izzet", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Glen Angus", "artist_ids": ["7be3b9e4-de9b-4a3d-884e-e67b9681d409"], "illustration_id": "aa818a5a-74c5-4a61-872e-75db16d18cdc", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 17077, "penny_rank": 6528, "prices": {"usd": "0.09", "usd_foil": "0.29", "usd_etched": null, "eur": "0.04", "eur_foil": "0.20", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=96845", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Pyromatics&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Pyromatics&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Pyromatics"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/13755?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Pyromatics&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/23653?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "ee1c0ded-2a80-4ed4-b9fc-3a18bf5c3239", "oracle_id": "d2eeb1eb-38c0-4b76-ad96-a53b6bdc00e1", "multiverse_ids": [179440], "mtgo_id": 31753, "mtgo_foil_id": 31754, "tcgplayer_id": 28588, "cardmarket_id": 20713, "name": "Quenchable Fire", "lang": "en", "released_at": "2009-02-06", "uri": "https://api.scryfall.com/cards/ee1c0ded-2a80-4ed4-b9fc-3a18bf5c3239", "scryfall_uri": "https://scryfall.com/card/con/70/quenchable-fire?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/e/e/ee1c0ded-2a80-4ed4-b9fc-3a18bf5c3239.jpg?1562804519", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/e/ee1c0ded-2a80-4ed4-b9fc-3a18bf5c3239.jpg?1562804519", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/e/e/ee1c0ded-2a80-4ed4-b9fc-3a18bf5c3239.jpg?1562804519", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/e/e/ee1c0ded-2a80-4ed4-b9fc-3a18bf5c3239.png?1562804519", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/e/ee1c0ded-2a80-4ed4-b9fc-3a18bf5c3239.jpg?1562804519", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/e/e/ee1c0ded-2a80-4ed4-b9fc-3a18bf5c3239.jpg?1562804519"}, "mana_cost": "{3}{R}", "cmc": 4.0, "type_line": "Sorcery", "oracle_text": "Quenchable Fire deals 3 damage to target player or planeswalker. It deals an additional 3 damage to that player or planeswalker at the beginning of your next upkeep step unless that player or that planeswalker's controller pays {U} before that step.", "colors": ["R"], "color_identity": ["R", "U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "76b2db58-904c-4e49-8580-9f62f7b3cca4", "set": "con", "set_name": "Conflux", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/76b2db58-904c-4e49-8580-9f62f7b3cca4", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Acon&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/con?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/ee1c0ded-2a80-4ed4-b9fc-3a18bf5c3239/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ad2eeb1eb-38c0-4b76-ad96-a53b6bdc00e1&unique=prints", "collector_number": "70", "digital": false, "rarity": "common", "flavor_text": "You'd better know how to pray for rain.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Jean-S\u00e9bastien Rossbach", "artist_ids": ["1b0c07a7-84e8-4384-9b97-28c162586558"], "illustration_id": "1a83e6cf-7d2c-4ca2-a2f7-51f2cf2217e1", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 22228, "penny_rank": 11790, "prices": {"usd": "0.07", "usd_foil": "0.14", "usd_etched": null, "eur": "0.02", "eur_foil": "0.08", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=179440", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Quenchable+Fire&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Quenchable+Fire&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Quenchable+Fire"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/28588?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Quenchable+Fire&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/31753?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "2d5391a9-6c30-4f9b-b746-a4427a3e63fc", "oracle_id": "041e2a01-3652-46c1-a9d1-d38ae7ee0551", "multiverse_ids": [87943], "mtgo_id": 23214, "mtgo_foil_id": 23215, "tcgplayer_id": 13385, "cardmarket_id": 13500, "name": "Rain of Embers", "lang": "en", "released_at": "2005-10-07", "uri": "https://api.scryfall.com/cards/2d5391a9-6c30-4f9b-b746-a4427a3e63fc", "scryfall_uri": "https://scryfall.com/card/rav/138/rain-of-embers?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/2/d/2d5391a9-6c30-4f9b-b746-a4427a3e63fc.jpg?1598915805", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/d/2d5391a9-6c30-4f9b-b746-a4427a3e63fc.jpg?1598915805", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/2/d/2d5391a9-6c30-4f9b-b746-a4427a3e63fc.jpg?1598915805", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/2/d/2d5391a9-6c30-4f9b-b746-a4427a3e63fc.png?1598915805", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/d/2d5391a9-6c30-4f9b-b746-a4427a3e63fc.jpg?1598915805", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/2/d/2d5391a9-6c30-4f9b-b746-a4427a3e63fc.jpg?1598915805"}, "mana_cost": "{1}{R}", "cmc": 2.0, "type_line": "Sorcery", "oracle_text": "Rain of Embers deals 1 damage to each creature and each player.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "15fccbe8-2825-41ca-9d0a-67aebdf91c4a", "set": "rav", "set_name": "Ravnica: City of Guilds", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/15fccbe8-2825-41ca-9d0a-67aebdf91c4a", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Arav&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/rav?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/2d5391a9-6c30-4f9b-b746-a4427a3e63fc/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A041e2a01-3652-46c1-a9d1-d38ae7ee0551&unique=prints", "collector_number": "138", "digital": false, "rarity": "common", "flavor_text": "There's plenty to talk about in the marketplaces of Ravnica, be it the latest feud between guilds or the terrible weather.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Tsutomu Kawade", "artist_ids": ["433a40d2-2caa-4cba-ba8d-0308a951d026"], "illustration_id": "d0d89a68-4ba2-46fc-aec8-22588d364ca6", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 12216, "penny_rank": 3719, "prices": {"usd": "0.11", "usd_foil": "0.28", "usd_etched": null, "eur": "0.02", "eur_foil": "0.45", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=87943", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Rain+of+Embers&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Rain+of+Embers&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Rain+of+Embers"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/13385?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Rain+of+Embers&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/23214?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "0fcd4394-d22d-4eec-ad73-ffaf10ad60de", "oracle_id": "5e62b51d-faec-4aa0-9504-cf2c282d08ea", "multiverse_ids": [253590], "mtgo_id": 46441, "mtgo_foil_id": 46442, "tcgplayer_id": 66516, "cardmarket_id": 258380, "name": "Rakdos Charm", "lang": "en", "released_at": "2012-10-05", "uri": "https://api.scryfall.com/cards/0fcd4394-d22d-4eec-ad73-ffaf10ad60de", "scryfall_uri": "https://scryfall.com/card/rtr/184/rakdos-charm?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/0/f/0fcd4394-d22d-4eec-ad73-ffaf10ad60de.jpg?1562782720", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/f/0fcd4394-d22d-4eec-ad73-ffaf10ad60de.jpg?1562782720", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/0/f/0fcd4394-d22d-4eec-ad73-ffaf10ad60de.jpg?1562782720", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/0/f/0fcd4394-d22d-4eec-ad73-ffaf10ad60de.png?1562782720", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/f/0fcd4394-d22d-4eec-ad73-ffaf10ad60de.jpg?1562782720", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/0/f/0fcd4394-d22d-4eec-ad73-ffaf10ad60de.jpg?1562782720"}, "mana_cost": "{B}{R}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Choose one \u2014\n\u2022 Exile target player's graveyard.\n\u2022 Destroy target artifact.\n\u2022 Each creature deals 1 damage to its controller.", "colors": ["B", "R"], "color_identity": ["B", "R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "80b2374d-c5f1-403e-9772-f6c806fd275e", "set": "rtr", "set_name": "Return to Ravnica", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/80b2374d-c5f1-403e-9772-f6c806fd275e", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Artr&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/rtr?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/0fcd4394-d22d-4eec-ad73-ffaf10ad60de/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A5e62b51d-faec-4aa0-9504-cf2c282d08ea&unique=prints", "collector_number": "184", "digital": false, "rarity": "uncommon", "watermark": "rakdos", "flavor_text": "\"Let all feel joy in pain.\"\n\u2014Rakdos", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Zoltan Boros", "artist_ids": ["1885e6cb-c827-4896-994e-3d0a027d602f"], "illustration_id": "39dbdc54-e538-4096-8082-3c61f719eeb6", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 358, "penny_rank": 3433, "prices": {"usd": "0.35", "usd_foil": "5.27", "usd_etched": null, "eur": "0.29", "eur_foil": "1.49", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=253590", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Rakdos+Charm&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Rakdos+Charm&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Rakdos+Charm"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/66516?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Rakdos+Charm&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/46441?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "d72981c0-1632-4d64-9341-2a76047d9b36", "oracle_id": "52d1d575-3e7f-4df1-8c89-aee0cac03aca", "multiverse_ids": [253574], "mtgo_id": 46565, "mtgo_foil_id": 46566, "tcgplayer_id": 66404, "cardmarket_id": 258220, "name": "Rakdos's Return", "lang": "en", "released_at": "2012-10-05", "uri": "https://api.scryfall.com/cards/d72981c0-1632-4d64-9341-2a76047d9b36", "scryfall_uri": "https://scryfall.com/card/rtr/188/rakdoss-return?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/d/7/d72981c0-1632-4d64-9341-2a76047d9b36.jpg?1562793869", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/7/d72981c0-1632-4d64-9341-2a76047d9b36.jpg?1562793869", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/d/7/d72981c0-1632-4d64-9341-2a76047d9b36.jpg?1562793869", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/d/7/d72981c0-1632-4d64-9341-2a76047d9b36.png?1562793869", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/7/d72981c0-1632-4d64-9341-2a76047d9b36.jpg?1562793869", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/d/7/d72981c0-1632-4d64-9341-2a76047d9b36.jpg?1562793869"}, "mana_cost": "{X}{B}{R}", "cmc": 2.0, "type_line": "Sorcery", "oracle_text": "Rakdos's Return deals X damage to target opponent or planeswalker. That player or that planeswalker's controller discards X cards.", "colors": ["B", "R"], "color_identity": ["B", "R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "80b2374d-c5f1-403e-9772-f6c806fd275e", "set": "rtr", "set_name": "Return to Ravnica", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/80b2374d-c5f1-403e-9772-f6c806fd275e", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Artr&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/rtr?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/d72981c0-1632-4d64-9341-2a76047d9b36/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A52d1d575-3e7f-4df1-8c89-aee0cac03aca&unique=prints", "collector_number": "188", "digital": false, "rarity": "mythic", "watermark": "rakdos", "flavor_text": "When Lord Rakdos stirred from his slumber, everyone else's nightmare began.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Daarken", "artist_ids": ["e607a0d4-fc12-4c01-9e3f-501f5269b9cb"], "illustration_id": "28a25e1c-7c9d-47fa-9f27-bbbd4787f696", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 7382, "penny_rank": 1701, "prices": {"usd": "1.29", "usd_foil": "5.38", "usd_etched": null, "eur": "1.45", "eur_foil": "2.75", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=253574", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Rakdos%27s+Return&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Rakdos%27s+Return&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Rakdos%27s+Return"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/66404?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Rakdos%27s+Return&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/46565?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "6be3dd3e-50d2-4729-9caa-b2cd984f4c97", "oracle_id": "5e715875-28e0-44b4-af25-f6bb8ddec823", "multiverse_ids": [461139], "mtgo_id": 72030, "arena_id": 69661, "tcgplayer_id": 188344, "cardmarket_id": 372077, "name": "Ral's Outburst", "lang": "en", "released_at": "2019-05-03", "uri": "https://api.scryfall.com/cards/6be3dd3e-50d2-4729-9caa-b2cd984f4c97", "scryfall_uri": "https://scryfall.com/card/war/212/rals-outburst?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/6/b/6be3dd3e-50d2-4729-9caa-b2cd984f4c97.jpg?1557577237", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/b/6be3dd3e-50d2-4729-9caa-b2cd984f4c97.jpg?1557577237", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/6/b/6be3dd3e-50d2-4729-9caa-b2cd984f4c97.jpg?1557577237", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/6/b/6be3dd3e-50d2-4729-9caa-b2cd984f4c97.png?1557577237", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/b/6be3dd3e-50d2-4729-9caa-b2cd984f4c97.jpg?1557577237", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/6/b/6be3dd3e-50d2-4729-9caa-b2cd984f4c97.jpg?1557577237"}, "mana_cost": "{2}{U}{R}", "cmc": 4.0, "type_line": "Instant", "oracle_text": "Ral's Outburst deals 3 damage to any target. Look at the top two cards of your library. Put one of them into your hand and the other into your graveyard.", "colors": ["R", "U"], "color_identity": ["R", "U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "ee044f0b-e101-4ead-8d0e-aa510aad4277", "set": "war", "set_name": "War of the Spark", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/ee044f0b-e101-4ead-8d0e-aa510aad4277", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Awar&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/war?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/6be3dd3e-50d2-4729-9caa-b2cd984f4c97/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A5e715875-28e0-44b4-af25-f6bb8ddec823&unique=prints", "collector_number": "212", "digital": false, "rarity": "uncommon", "flavor_text": "\"Time to find the melting point of lazotep.\"\n\u2014Ral Zarek", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Joseph Meehan", "artist_ids": ["6befd6d5-7f8d-4b7c-87e3-5511391a3359"], "illustration_id": "70c9209e-98dd-4252-b936-089301171dae", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 12762, "penny_rank": 7800, "preview": {"source": "Barnes & Noble", "source_uri": "https://www.barnesandnoble.com/blog/sci-fi-fantasy/the-multiverse-is-rocked-in-ravnica-war-of-the-spark-the-first-new-magic-the-gathering-novel-in-5-years/", "previewed_at": "2019-04-08"}, "prices": {"usd": "0.03", "usd_foil": "0.29", "usd_etched": null, "eur": "0.08", "eur_foil": "0.48", "tix": "0.05"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=461139", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Ral%27s+Outburst&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Ral%27s+Outburst&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Ral%27s+Outburst"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/188344?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Ral%27s+Outburst&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/72030?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "ac0b24e7-14e7-45ee-b5d8-bdb8674b669c", "oracle_id": "4b1befff-48fa-47a3-832e-bdaf43495c02", "multiverse_ids": [479690], "mtgo_id": 80349, "arena_id": 71237, "tcgplayer_id": 212717, "cardmarket_id": 455353, "name": "Ram Through", "lang": "en", "released_at": "2020-04-24", "uri": "https://api.scryfall.com/cards/ac0b24e7-14e7-45ee-b5d8-bdb8674b669c", "scryfall_uri": "https://scryfall.com/card/iko/170/ram-through?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/a/c/ac0b24e7-14e7-45ee-b5d8-bdb8674b669c.jpg?1591723419", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/c/ac0b24e7-14e7-45ee-b5d8-bdb8674b669c.jpg?1591723419", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/a/c/ac0b24e7-14e7-45ee-b5d8-bdb8674b669c.jpg?1591723419", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/a/c/ac0b24e7-14e7-45ee-b5d8-bdb8674b669c.png?1591723419", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/c/ac0b24e7-14e7-45ee-b5d8-bdb8674b669c.jpg?1591723419", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/a/c/ac0b24e7-14e7-45ee-b5d8-bdb8674b669c.jpg?1591723419"}, "mana_cost": "{1}{G}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Target creature you control deals damage equal to its power to target creature you don't control. If the creature you control has trample, excess damage is dealt to that creature's controller instead.", "colors": ["G"], "color_identity": ["G"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "19feda43-15ab-427e-a0e4-148a4bf2b03a", "set": "iko", "set_name": "Ikoria: Lair of Behemoths", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/19feda43-15ab-427e-a0e4-148a4bf2b03a", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aiko&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/iko?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/ac0b24e7-14e7-45ee-b5d8-bdb8674b669c/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A4b1befff-48fa-47a3-832e-bdaf43495c02&unique=prints", "collector_number": "170", "digital": false, "rarity": "common", "flavor_text": "\"Need a medic! And some stonemasons!\"\n\u2014Wyllon, Drannith merchant", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Zoltan Boros", "artist_ids": ["1885e6cb-c827-4896-994e-3d0a027d602f"], "illustration_id": "820603e6-81b9-4b05-a17f-936e595696fe", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 1513, "penny_rank": 3954, "prices": {"usd": "0.16", "usd_foil": "3.20", "usd_etched": null, "eur": "0.17", "eur_foil": "0.65", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=479690", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Ram+Through&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Ram+Through&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Ram+Through"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/212717?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Ram+Through&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/80349?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "23d07a96-85ba-4714-94a5-4a8125954f58", "oracle_id": "c1972a20-5308-4ee4-b234-751b805d30e4", "multiverse_ids": [31598], "mtgo_id": 17069, "mtgo_foil_id": 17070, "tcgplayer_id": 9684, "cardmarket_id": 2347, "name": "Rancid Earth", "lang": "en", "released_at": "2002-02-04", "uri": "https://api.scryfall.com/cards/23d07a96-85ba-4714-94a5-4a8125954f58", "scryfall_uri": "https://scryfall.com/card/tor/78/rancid-earth?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/2/3/23d07a96-85ba-4714-94a5-4a8125954f58.jpg?1562628959", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/3/23d07a96-85ba-4714-94a5-4a8125954f58.jpg?1562628959", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/2/3/23d07a96-85ba-4714-94a5-4a8125954f58.jpg?1562628959", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/2/3/23d07a96-85ba-4714-94a5-4a8125954f58.png?1562628959", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/3/23d07a96-85ba-4714-94a5-4a8125954f58.jpg?1562628959", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/2/3/23d07a96-85ba-4714-94a5-4a8125954f58.jpg?1562628959"}, "mana_cost": "{1}{B}{B}", "cmc": 3.0, "type_line": "Sorcery", "oracle_text": "Destroy target land.\nThreshold \u2014 If seven or more cards are in your graveyard, instead destroy that land and Rancid Earth deals 1 damage to each creature and each player.", "colors": ["B"], "color_identity": ["B"], "keywords": ["Threshold"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "e0b3fda1-a6ca-4996-849b-08b463d39484", "set": "tor", "set_name": "Torment", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/e0b3fda1-a6ca-4996-849b-08b463d39484", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ator&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/tor?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/23d07a96-85ba-4714-94a5-4a8125954f58/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ac1972a20-5308-4ee4-b234-751b805d30e4&unique=prints", "collector_number": "78", "digital": false, "rarity": "common", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Ciruelo", "artist_ids": ["1761c216-72b5-4a9b-afee-ad47a00fe1ad"], "illustration_id": "707184d4-e4d8-4462-95fc-85637545f9b0", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 16562, "prices": {"usd": "0.23", "usd_foil": "3.03", "usd_etched": null, "eur": "0.50", "eur_foil": "2.95", "tix": "0.12"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=31598", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Rancid+Earth&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Rancid+Earth&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Rancid+Earth"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/9684?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Rancid+Earth&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/17069?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "5d9404b2-f0ea-4a31-bc7b-6748574c57d3", "oracle_id": "a41760a2-d359-4581-b8d3-c1b572ac15c2", "multiverse_ids": [398601], "mtgo_id": 58026, "mtgo_foil_id": 58027, "tcgplayer_id": 100010, "cardmarket_id": 283353, "name": "Ravaging Blaze", "lang": "en", "released_at": "2015-07-17", "uri": "https://api.scryfall.com/cards/5d9404b2-f0ea-4a31-bc7b-6748574c57d3", "scryfall_uri": "https://scryfall.com/card/ori/159/ravaging-blaze?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/5/d/5d9404b2-f0ea-4a31-bc7b-6748574c57d3.jpg?1562021972", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/d/5d9404b2-f0ea-4a31-bc7b-6748574c57d3.jpg?1562021972", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/5/d/5d9404b2-f0ea-4a31-bc7b-6748574c57d3.jpg?1562021972", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/5/d/5d9404b2-f0ea-4a31-bc7b-6748574c57d3.png?1562021972", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/d/5d9404b2-f0ea-4a31-bc7b-6748574c57d3.jpg?1562021972", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/5/d/5d9404b2-f0ea-4a31-bc7b-6748574c57d3.jpg?1562021972"}, "mana_cost": "{X}{R}{R}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Ravaging Blaze deals X damage to target creature.\nSpell mastery \u2014 If there are two or more instant and/or sorcery cards in your graveyard, Ravaging Blaze also deals X damage to that creature's controller.", "colors": ["R"], "color_identity": ["R"], "keywords": ["Spell mastery"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "0eeb9a9a-20ac-404d-b55f-aeb7a43a7f62", "set": "ori", "set_name": "Magic Origins", "set_type": "core", "set_uri": "https://api.scryfall.com/sets/0eeb9a9a-20ac-404d-b55f-aeb7a43a7f62", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aori&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ori?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/5d9404b2-f0ea-4a31-bc7b-6748574c57d3/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aa41760a2-d359-4581-b8d3-c1b572ac15c2&unique=prints", "collector_number": "159", "digital": false, "rarity": "uncommon", "flavor_text": "In time, not even the fire monks could keep up with Chandra.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Aleksi Briclot", "artist_ids": ["5e470014-31cb-41b0-b054-e23374484449"], "illustration_id": "fd4168a0-7cd4-4728-a33e-f2675d7eae78", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 11042, "penny_rank": 7648, "prices": {"usd": "0.12", "usd_foil": "0.60", "usd_etched": null, "eur": "0.25", "eur_foil": "0.20", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=398601", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Ravaging+Blaze&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Ravaging+Blaze&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Ravaging+Blaze"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/100010?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Ravaging+Blaze&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/58026?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "c044168d-cb08-493d-98c1-b66b6149fe5a", "oracle_id": "21465dcd-c93a-4a2c-ae10-e22ebd5cae2f", "multiverse_ids": [407610], "mtgo_id": 59295, "mtgo_foil_id": 59296, "tcgplayer_id": 111065, "cardmarket_id": 287380, "name": "Reality Hemorrhage", "lang": "en", "released_at": "2016-01-22", "uri": "https://api.scryfall.com/cards/c044168d-cb08-493d-98c1-b66b6149fe5a", "scryfall_uri": "https://scryfall.com/card/ogw/100/reality-hemorrhage?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/c/0/c044168d-cb08-493d-98c1-b66b6149fe5a.jpg?1562933647", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/0/c044168d-cb08-493d-98c1-b66b6149fe5a.jpg?1562933647", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/c/0/c044168d-cb08-493d-98c1-b66b6149fe5a.jpg?1562933647", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/c/0/c044168d-cb08-493d-98c1-b66b6149fe5a.png?1562933647", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/0/c044168d-cb08-493d-98c1-b66b6149fe5a.jpg?1562933647", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/c/0/c044168d-cb08-493d-98c1-b66b6149fe5a.jpg?1562933647"}, "mana_cost": "{1}{R}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Devoid (This card has no color.)\nReality Hemorrhage deals 2 damage to any target.", "colors": [], "color_identity": ["R"], "keywords": ["Devoid"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "cd51d245-8f95-45b0-ab5f-e2b3a3eb5dfe", "set": "ogw", "set_name": "Oath of the Gatewatch", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/cd51d245-8f95-45b0-ab5f-e2b3a3eb5dfe", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aogw&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ogw?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/c044168d-cb08-493d-98c1-b66b6149fe5a/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A21465dcd-c93a-4a2c-ae10-e22ebd5cae2f&unique=prints", "collector_number": "100", "digital": false, "rarity": "common", "flavor_text": "Tarek could not tell whether he was losing his blood or his mind.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Chris Rallis", "artist_ids": ["a8e7b854-b15a-421a-b66d-6e68187ae285"], "illustration_id": "b0234da2-3a81-4f33-8f24-fba79aae2c45", "border_color": "black", "frame": "2015", "frame_effects": ["devoid"], "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 20023, "penny_rank": 11163, "prices": {"usd": "0.07", "usd_foil": "0.31", "usd_etched": null, "eur": "0.02", "eur_foil": "0.29", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=407610", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Reality+Hemorrhage&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Reality+Hemorrhage&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Reality+Hemorrhage"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/111065?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Reality+Hemorrhage&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/59295?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "8f335d43-cacb-40ad-93c1-9a861e9f66c7", "oracle_id": "f24d5187-0f80-4528-bf44-03ae146f3551", "multiverse_ids": [15204], "mtgo_id": 12873, "mtgo_foil_id": 12874, "tcgplayer_id": 6229, "cardmarket_id": 10794, "name": "Reckless Abandon", "lang": "en", "released_at": "1999-06-07", "uri": "https://api.scryfall.com/cards/8f335d43-cacb-40ad-93c1-9a861e9f66c7", "scryfall_uri": "https://scryfall.com/card/uds/94/reckless-abandon?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/8/f/8f335d43-cacb-40ad-93c1-9a861e9f66c7.jpg?1562444699", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/f/8f335d43-cacb-40ad-93c1-9a861e9f66c7.jpg?1562444699", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/8/f/8f335d43-cacb-40ad-93c1-9a861e9f66c7.jpg?1562444699", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/8/f/8f335d43-cacb-40ad-93c1-9a861e9f66c7.png?1562444699", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/f/8f335d43-cacb-40ad-93c1-9a861e9f66c7.jpg?1562444699", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/8/f/8f335d43-cacb-40ad-93c1-9a861e9f66c7.jpg?1562444699"}, "mana_cost": "{R}", "cmc": 1.0, "type_line": "Sorcery", "oracle_text": "As an additional cost to cast this spell, sacrifice a creature.\nReckless Abandon deals 4 damage to any target.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "44f17b37-dcf8-4239-baab-1efc00cd3480", "set": "uds", "set_name": "Urza's Destiny", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/44f17b37-dcf8-4239-baab-1efc00cd3480", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Auds&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/uds?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/8f335d43-cacb-40ad-93c1-9a861e9f66c7/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Af24d5187-0f80-4528-bf44-03ae146f3551&unique=prints", "collector_number": "94", "digital": false, "rarity": "common", "flavor_text": "The climax of a warlord's career is always death.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Ron Spears", "artist_ids": ["fce9030b-86bd-4439-b06a-920a1eeb184c"], "illustration_id": "2edfc680-8072-46a0-8f60-c62694f2e5e5", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 15762, "prices": {"usd": "0.21", "usd_foil": "5.49", "usd_etched": null, "eur": "0.35", "eur_foil": "5.19", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=15204", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Reckless+Abandon&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Reckless+Abandon&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Reckless+Abandon"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/6229?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Reckless+Abandon&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/12873?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "373eb109-0e30-41c1-b2df-6bc78d968890", "oracle_id": "82e61db8-4625-488f-8a5f-66ace9bbf34a", "multiverse_ids": [221558], "mtgo_id": 39579, "mtgo_foil_id": 39580, "tcgplayer_id": 39049, "cardmarket_id": 245326, "name": "Red Sun's Zenith", "lang": "en", "released_at": "2011-02-04", "uri": "https://api.scryfall.com/cards/373eb109-0e30-41c1-b2df-6bc78d968890", "scryfall_uri": "https://scryfall.com/card/mbs/74/red-suns-zenith?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/3/7/373eb109-0e30-41c1-b2df-6bc78d968890.jpg?1562610602", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/7/373eb109-0e30-41c1-b2df-6bc78d968890.jpg?1562610602", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/3/7/373eb109-0e30-41c1-b2df-6bc78d968890.jpg?1562610602", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/3/7/373eb109-0e30-41c1-b2df-6bc78d968890.png?1562610602", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/7/373eb109-0e30-41c1-b2df-6bc78d968890.jpg?1562610602", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/3/7/373eb109-0e30-41c1-b2df-6bc78d968890.jpg?1562610602"}, "mana_cost": "{X}{R}", "cmc": 1.0, "type_line": "Sorcery", "oracle_text": "Red Sun's Zenith deals X damage to any target. If a creature dealt damage this way would die this turn, exile it instead. Shuffle Red Sun's Zenith into its owner's library.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "f46c57e3-9301-4006-a6ca-06f3f65961fb", "set": "mbs", "set_name": "Mirrodin Besieged", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/f46c57e3-9301-4006-a6ca-06f3f65961fb", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ambs&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/mbs?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/373eb109-0e30-41c1-b2df-6bc78d968890/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A82e61db8-4625-488f-8a5f-66ace9bbf34a&unique=prints", "collector_number": "74", "digital": false, "rarity": "rare", "watermark": "mirran", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Svetlin Velinov", "artist_ids": ["ffd063ae-c097-4f26-b2e6-b1e2137708bc"], "illustration_id": "ab37197a-27fd-403b-b1df-cc50aa8c8493", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 6361, "penny_rank": 4543, "prices": {"usd": "0.41", "usd_foil": "4.90", "usd_etched": null, "eur": "0.45", "eur_foil": "0.99", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=221558", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Red+Sun%27s+Zenith&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Red+Sun%27s+Zenith&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Red+Sun%27s+Zenith"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/39049?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Red+Sun%27s+Zenith&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/39579?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "131c6377-4ed4-4a76-a9cb-be7ad17d76fd", "oracle_id": "dd99061d-510d-4935-b44e-54721505515f", "multiverse_ids": [158108], "mtgo_id": 30242, "mtgo_foil_id": 30243, "tcgplayer_id": 27187, "cardmarket_id": 19523, "name": "Rekindled Flame", "lang": "en", "released_at": "2008-07-25", "uri": "https://api.scryfall.com/cards/131c6377-4ed4-4a76-a9cb-be7ad17d76fd", "scryfall_uri": "https://scryfall.com/card/eve/61/rekindled-flame?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/1/3/131c6377-4ed4-4a76-a9cb-be7ad17d76fd.jpg?1562899037", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/3/131c6377-4ed4-4a76-a9cb-be7ad17d76fd.jpg?1562899037", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/1/3/131c6377-4ed4-4a76-a9cb-be7ad17d76fd.jpg?1562899037", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/1/3/131c6377-4ed4-4a76-a9cb-be7ad17d76fd.png?1562899037", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/3/131c6377-4ed4-4a76-a9cb-be7ad17d76fd.jpg?1562899037", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/1/3/131c6377-4ed4-4a76-a9cb-be7ad17d76fd.jpg?1562899037"}, "mana_cost": "{2}{R}{R}", "cmc": 4.0, "type_line": "Sorcery", "oracle_text": "Rekindled Flame deals 4 damage to any target.\nAt the beginning of your upkeep, if an opponent has no cards in hand, you may return Rekindled Flame from your graveyard to your hand.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "86b4dfef-f2d1-49d6-825d-7df6bda44357", "set": "eve", "set_name": "Eventide", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/86b4dfef-f2d1-49d6-825d-7df6bda44357", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aeve&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/eve?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/131c6377-4ed4-4a76-a9cb-be7ad17d76fd/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Add99061d-510d-4935-b44e-54721505515f&unique=prints", "collector_number": "61", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Zoltan Boros & Gabor Szikszai", "artist_ids": ["1885e6cb-c827-4896-994e-3d0a027d602f", "44c3877f-8771-43dc-9e40-f4c765f59d2e"], "illustration_id": "bdbe72dc-33cd-40ac-8666-1edd38ae31b6", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 20280, "penny_rank": 10935, "prices": {"usd": "0.25", "usd_foil": "0.90", "usd_etched": null, "eur": "0.15", "eur_foil": "0.90", "tix": "0.01"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=158108", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Rekindled+Flame&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Rekindled+Flame&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Rekindled+Flame"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/27187?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Rekindled+Flame&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/30242?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "1b6f1afb-2451-4611-ac3e-3513a4651719", "oracle_id": "b420e429-9dec-4993-a45f-3458795e5cbe", "multiverse_ids": [152619], "mtgo_id": 29028, "mtgo_foil_id": 29029, "tcgplayer_id": 18045, "cardmarket_id": 18927, "name": "Release the Ants", "lang": "en", "released_at": "2008-02-01", "uri": "https://api.scryfall.com/cards/1b6f1afb-2451-4611-ac3e-3513a4651719", "scryfall_uri": "https://scryfall.com/card/mor/98/release-the-ants?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/1/b/1b6f1afb-2451-4611-ac3e-3513a4651719.jpg?1562877157", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/b/1b6f1afb-2451-4611-ac3e-3513a4651719.jpg?1562877157", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/1/b/1b6f1afb-2451-4611-ac3e-3513a4651719.jpg?1562877157", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/1/b/1b6f1afb-2451-4611-ac3e-3513a4651719.png?1562877157", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/b/1b6f1afb-2451-4611-ac3e-3513a4651719.jpg?1562877157", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/1/b/1b6f1afb-2451-4611-ac3e-3513a4651719.jpg?1562877157"}, "mana_cost": "{1}{R}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Release the Ants deals 1 damage to any target. Clash with an opponent. If you win, return Release the Ants to its owner's hand. (Each clashing player reveals the top card of their library, then puts that card on the top or bottom. A player wins if their card had a higher mana value.)", "colors": ["R"], "color_identity": ["R"], "keywords": ["Clash"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "c41550df-7b41-41a3-85ab-8612eb2f168f", "set": "mor", "set_name": "Morningtide", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/c41550df-7b41-41a3-85ab-8612eb2f168f", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Amor&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/mor?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/1b6f1afb-2451-4611-ac3e-3513a4651719/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ab420e429-9dec-4993-a45f-3458795e5cbe&unique=prints", "collector_number": "98", "digital": false, "rarity": "uncommon", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Ron Spencer", "artist_ids": ["dab52c11-0564-4207-a4a1-c1735c946a65"], "illustration_id": "26d11ceb-7b59-4c08-ab47-e369b17a7e7d", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 19688, "prices": {"usd": "0.08", "usd_foil": "1.48", "usd_etched": null, "eur": "0.07", "eur_foil": "0.49", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=152619", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Release+the+Ants&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Release+the+Ants&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Release+the+Ants"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/18045?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Release+the+Ants&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/29028?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "51332c31-41df-4379-aa63-6a734a4df618", "oracle_id": "24ac7e7e-b60d-4965-91c1-7ea7e6387737", "multiverse_ids": [541033], "mtgo_id": 94694, "arena_id": 78981, "tcgplayer_id": 253033, "cardmarket_id": 581675, "name": "Rending Flame", "lang": "en", "released_at": "2021-11-19", "uri": "https://api.scryfall.com/cards/51332c31-41df-4379-aa63-6a734a4df618", "scryfall_uri": "https://scryfall.com/card/vow/175/rending-flame?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/5/1/51332c31-41df-4379-aa63-6a734a4df618.jpg?1643591905", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/1/51332c31-41df-4379-aa63-6a734a4df618.jpg?1643591905", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/5/1/51332c31-41df-4379-aa63-6a734a4df618.jpg?1643591905", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/5/1/51332c31-41df-4379-aa63-6a734a4df618.png?1643591905", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/1/51332c31-41df-4379-aa63-6a734a4df618.jpg?1643591905", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/5/1/51332c31-41df-4379-aa63-6a734a4df618.jpg?1643591905"}, "mana_cost": "{2}{R}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Rending Flame deals 5 damage to target creature or planeswalker. If that permanent is a Spirit, Rending Flame also deals 2 damage to that permanent's controller.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "8144b676-569f-4716-8005-bc8f0778f3fa", "set": "vow", "set_name": "Innistrad: Crimson Vow", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/8144b676-569f-4716-8005-bc8f0778f3fa", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Avow&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/vow?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/51332c31-41df-4379-aa63-6a734a4df618/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A24ac7e7e-b60d-4965-91c1-7ea7e6387737&unique=prints", "collector_number": "175", "digital": false, "rarity": "uncommon", "flavor_text": "\"It is our duty to bring the Blessed Sleep to the dead, even if they resist that gift.\"\n\u2014Grete, Order of Saint Traft", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Olena Richards", "artist_ids": ["fad4282c-49d1-4b5b-be1d-713369fc8bc8"], "illustration_id": "98b4dea7-2609-43c1-b8d8-bed1e1519371", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 15625, "preview": {"source": "Glam Shatterskull", "source_uri": "https://twitter.com/GlamShatterskll/status/1454527846802673675", "previewed_at": "2021-10-30"}, "prices": {"usd": "0.02", "usd_foil": "0.02", "usd_etched": null, "eur": "0.06", "eur_foil": "0.09", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=541033", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Rending+Flame&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Rending+Flame&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Rending+Flame"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/253033?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Rending+Flame&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/94694?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "ba90a2d6-8292-4ff1-91d0-b30ae9775f12", "oracle_id": "a08c599e-ee75-4d2b-ae9b-0987c233dd17", "multiverse_ids": [435310], "mtgo_id": 65328, "mtgo_foil_id": 65329, "arena_id": 66277, "tcgplayer_id": 145640, "cardmarket_id": 301799, "name": "Repeating Barrage", "lang": "en", "released_at": "2017-09-29", "uri": "https://api.scryfall.com/cards/ba90a2d6-8292-4ff1-91d0-b30ae9775f12", "scryfall_uri": "https://scryfall.com/card/xln/156/repeating-barrage?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/b/a/ba90a2d6-8292-4ff1-91d0-b30ae9775f12.jpg?1562562987", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/a/ba90a2d6-8292-4ff1-91d0-b30ae9775f12.jpg?1562562987", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/b/a/ba90a2d6-8292-4ff1-91d0-b30ae9775f12.jpg?1562562987", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/b/a/ba90a2d6-8292-4ff1-91d0-b30ae9775f12.png?1562562987", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/a/ba90a2d6-8292-4ff1-91d0-b30ae9775f12.jpg?1562562987", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/b/a/ba90a2d6-8292-4ff1-91d0-b30ae9775f12.jpg?1562562987"}, "mana_cost": "{1}{R}{R}", "cmc": 3.0, "type_line": "Sorcery", "oracle_text": "Repeating Barrage deals 3 damage to any target.\nRaid \u2014 {3}{R}{R}: Return Repeating Barrage from your graveyard to your hand. Activate only if you attacked this turn.", "colors": ["R"], "color_identity": ["R"], "keywords": ["Raid"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "fe0dad85-54bc-4151-9200-d68da84dd0f2", "set": "xln", "set_name": "Ixalan", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/fe0dad85-54bc-4151-9200-d68da84dd0f2", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Axln&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/xln?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/ba90a2d6-8292-4ff1-91d0-b30ae9775f12/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aa08c599e-ee75-4d2b-ae9b-0987c233dd17&unique=prints", "collector_number": "156", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Dan Scott", "artist_ids": ["f852fa13-137e-40f2-bbc1-0f01df09c0e0"], "illustration_id": "151e5f66-9f61-4077-84a9-00384682b323", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 16171, "penny_rank": 9510, "prices": {"usd": "0.09", "usd_foil": "0.18", "usd_etched": null, "eur": "0.05", "eur_foil": "0.34", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=435310", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Repeating+Barrage&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Repeating+Barrage&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Repeating+Barrage"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/145640?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Repeating+Barrage&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/65328?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "680b7955-d939-4195-aba8-b46a8c925616", "oracle_id": "b0e1d26e-2fa1-4826-bfe9-01b0bd2c138b", "multiverse_ids": [175043], "mtgo_id": 31113, "mtgo_foil_id": 31114, "tcgplayer_id": 27773, "cardmarket_id": 19871, "name": "Resounding Thunder", "lang": "en", "released_at": "2008-10-03", "uri": "https://api.scryfall.com/cards/680b7955-d939-4195-aba8-b46a8c925616", "scryfall_uri": "https://scryfall.com/card/ala/110/resounding-thunder?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/6/8/680b7955-d939-4195-aba8-b46a8c925616.jpg?1562704894", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/8/680b7955-d939-4195-aba8-b46a8c925616.jpg?1562704894", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/6/8/680b7955-d939-4195-aba8-b46a8c925616.jpg?1562704894", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/6/8/680b7955-d939-4195-aba8-b46a8c925616.png?1562704894", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/8/680b7955-d939-4195-aba8-b46a8c925616.jpg?1562704894", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/6/8/680b7955-d939-4195-aba8-b46a8c925616.jpg?1562704894"}, "mana_cost": "{2}{R}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Resounding Thunder deals 3 damage to any target.\nCycling {5}{B}{R}{G} ({5}{B}{R}{G}, Discard this card: Draw a card.)\nWhen you cycle Resounding Thunder, it deals 6 damage to any target.", "colors": ["R"], "color_identity": ["B", "G", "R"], "keywords": ["Cycling"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "d667aaec-09b7-4406-b6fa-60795132dc11", "set": "ala", "set_name": "Shards of Alara", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/d667aaec-09b7-4406-b6fa-60795132dc11", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aala&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ala?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/680b7955-d939-4195-aba8-b46a8c925616/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ab0e1d26e-2fa1-4826-bfe9-01b0bd2c138b&unique=prints", "collector_number": "110", "digital": false, "rarity": "common", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Jon Foster", "artist_ids": ["be1fa767-c905-49b1-afcf-77a8e9ebbd31"], "illustration_id": "755ca94d-1a07-4ef2-aa2f-19f917fce1fb", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 22232, "penny_rank": 835, "prices": {"usd": "0.07", "usd_foil": "0.20", "usd_etched": null, "eur": "0.09", "eur_foil": "0.13", "tix": "0.04"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=175043", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Resounding+Thunder&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Resounding+Thunder&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Resounding+Thunder"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/27773?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Resounding+Thunder&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/31113?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "21ce365e-3002-42e9-aeb5-1b845408271e", "oracle_id": "f6d371e6-e25e-4820-8cf7-f692a4d9be11", "multiverse_ids": [24633], "mtgo_id": 14169, "mtgo_foil_id": 14170, "tcgplayer_id": 7354, "cardmarket_id": 3993, "name": "Rhystic Lightning", "lang": "en", "released_at": "2000-06-05", "uri": "https://api.scryfall.com/cards/21ce365e-3002-42e9-aeb5-1b845408271e", "scryfall_uri": "https://scryfall.com/card/pcy/99/rhystic-lightning?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/2/1/21ce365e-3002-42e9-aeb5-1b845408271e.jpg?1562901251", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/1/21ce365e-3002-42e9-aeb5-1b845408271e.jpg?1562901251", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/2/1/21ce365e-3002-42e9-aeb5-1b845408271e.jpg?1562901251", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/2/1/21ce365e-3002-42e9-aeb5-1b845408271e.png?1562901251", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/1/21ce365e-3002-42e9-aeb5-1b845408271e.jpg?1562901251", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/2/1/21ce365e-3002-42e9-aeb5-1b845408271e.jpg?1562901251"}, "mana_cost": "{2}{R}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Rhystic Lightning deals 4 damage to any target unless that permanent's controller or that player pays {2}. If they do, Rhystic Lightning deals 2 damage to the permanent or player.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "c233bd36-57c0-4aa2-ae6c-7aeabfb4e3ce", "set": "pcy", "set_name": "Prophecy", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/c233bd36-57c0-4aa2-ae6c-7aeabfb4e3ce", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Apcy&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/pcy?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/21ce365e-3002-42e9-aeb5-1b845408271e/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Af6d371e6-e25e-4820-8cf7-f692a4d9be11&unique=prints", "collector_number": "99", "digital": false, "rarity": "common", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Roger Raupp", "artist_ids": ["79d6f296-1948-4a24-a2ce-a76e89057f23"], "illustration_id": "64c3d193-5743-417b-8cb4-7ac2930a2294", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 20698, "penny_rank": 3811, "prices": {"usd": "0.14", "usd_foil": "1.72", "usd_etched": null, "eur": "0.02", "eur_foil": "1.99", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=24633", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Rhystic+Lightning&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Rhystic+Lightning&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Rhystic+Lightning"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/7354?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Rhystic+Lightning&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/14169?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "88dde96e-6824-4d26-9fb5-86b9f3c50959", "oracle_id": "2b8afa9f-4236-4c02-a8d5-3c145caecfd6", "multiverse_ids": [108915], "mtgo_id": 25477, "mtgo_foil_id": 25478, "tcgplayer_id": 14340, "cardmarket_id": 13959, "name": "Rift Bolt", "lang": "en", "released_at": "2006-10-06", "uri": "https://api.scryfall.com/cards/88dde96e-6824-4d26-9fb5-86b9f3c50959", "scryfall_uri": "https://scryfall.com/card/tsp/176/rift-bolt?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/8/8/88dde96e-6824-4d26-9fb5-86b9f3c50959.jpg?1562923901", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/8/88dde96e-6824-4d26-9fb5-86b9f3c50959.jpg?1562923901", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/8/8/88dde96e-6824-4d26-9fb5-86b9f3c50959.jpg?1562923901", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/8/8/88dde96e-6824-4d26-9fb5-86b9f3c50959.png?1562923901", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/8/88dde96e-6824-4d26-9fb5-86b9f3c50959.jpg?1562923901", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/8/8/88dde96e-6824-4d26-9fb5-86b9f3c50959.jpg?1562923901"}, "mana_cost": "{2}{R}", "cmc": 3.0, "type_line": "Sorcery", "oracle_text": "Rift Bolt deals 3 damage to any target.\nSuspend 1\u2014{R} (Rather than cast this card from your hand, you may pay {R} and exile it with a time counter on it. At the beginning of your upkeep, remove a time counter. When the last is removed, cast it without paying its mana cost.)", "colors": ["R"], "color_identity": ["R"], "keywords": ["Suspend"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "c1d109bc-ffd8-428f-8d7d-3f8d7e648046", "set": "tsp", "set_name": "Time Spiral", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/c1d109bc-ffd8-428f-8d7d-3f8d7e648046", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Atsp&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/tsp?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/88dde96e-6824-4d26-9fb5-86b9f3c50959/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A2b8afa9f-4236-4c02-a8d5-3c145caecfd6&unique=prints", "collector_number": "176", "digital": false, "rarity": "common", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Michael Sutfin", "artist_ids": ["5ce7b3bd-53d2-49e6-b504-37191e8e9b17"], "illustration_id": "90f8442e-bc89-448d-8019-a34988b80160", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 10182, "penny_rank": 275, "prices": {"usd": "0.50", "usd_foil": "11.29", "usd_etched": null, "eur": "0.13", "eur_foil": "4.50", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=108915", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Rift+Bolt&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Rift+Bolt&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Rift+Bolt"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/14340?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Rift+Bolt&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/25477?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}]} \ No newline at end of file +{"has_more": true, "data": [{"name": "Incendiary Flow", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/e/ae93a313-c265-435f-b745-7b7a7ed6208e.jpg?1562636873", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/e/ae93a313-c265-435f-b745-7b7a7ed6208e.jpg?1562636873"}, "reprint": true, "digital": false, "set_type": "promo"}, {"name": "Incinerate", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/5/8503210d-be78-4271-a050-53caa94f735d.jpg?1562844302", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/5/8503210d-be78-4271-a050-53caa94f735d.jpg?1562844302"}, "reprint": true, "digital": false, "set_type": "duel_deck"}, {"name": "Incinerate", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/2/723fb62e-735a-4ca6-9d38-f1c3944fe69a.jpg?1562549678", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/2/723fb62e-735a-4ca6-9d38-f1c3944fe69a.jpg?1562549678"}, "reprint": true, "digital": false, "set_type": "core"}, {"name": "Incinerate", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/a/aa0f7e1f-bcb5-414f-a2e9-6a158fec2ff5.jpg?1562593262", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/a/aa0f7e1f-bcb5-414f-a2e9-6a158fec2ff5.jpg?1562593262"}, "reprint": true, "digital": false, "set_type": "core"}, {"name": "Incinerate", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/0/409b2be8-5bb6-45e0-ab87-ca73b4e3a396.jpg?1562718795", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/0/409b2be8-5bb6-45e0-ab87-ca73b4e3a396.jpg?1562718795"}, "reprint": true, "digital": false, "set_type": "expansion"}, {"name": "Incinerate", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/c/9c3f00af-010d-4485-b8b7-47400d99c496.jpg?1562924091", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/c/9c3f00af-010d-4485-b8b7-47400d99c496.jpg?1562924091"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Incinerate", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/8/28b0495d-0c3f-4491-8331-4cbabbd6eac5.jpg?1561756819", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/8/28b0495d-0c3f-4491-8331-4cbabbd6eac5.jpg?1561756819"}, "reprint": true, "digital": false, "set_type": "promo"}, {"name": "Inescapable Blaze", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/6/46651efd-0906-4350-a1b8-52e3f8aff45d.jpg?1572893201", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/6/46651efd-0906-4350-a1b8-52e3f8aff45d.jpg?1572893201"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Inferno", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/4/e411b7b5-ab91-410a-af6d-b3a21a8e3b70.jpg?1562249896", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/4/e411b7b5-ab91-410a-af6d-b3a21a8e3b70.jpg?1562249896"}, "reprint": true, "digital": false, "set_type": "core"}, {"name": "Inferno", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/8/68d04a75-647f-400f-b0dc-c4544f7db2d4.jpg?1562591355", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/8/68d04a75-647f-400f-b0dc-c4544f7db2d4.jpg?1562591355"}, "reprint": true, "digital": false, "set_type": "core"}, {"name": "Inferno", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/6/a6b61512-5b24-424c-966f-36b595781e14.jpg?1562934483", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/6/a6b61512-5b24-424c-966f-36b595781e14.jpg?1562934483"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Inferno", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/a/3ac1649a-629b-4598-be09-74a57905753f.jpg?1562544107", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/a/3ac1649a-629b-4598-be09-74a57905753f.jpg?1562544107"}, "reprint": true, "digital": true, "set_type": "promo"}, {"name": "Inferno Jet", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/c/0c6a43fe-369d-4943-a825-570eb3cceba4.jpg?1562788752", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/c/0c6a43fe-369d-4943-a825-570eb3cceba4.jpg?1562788752"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Inspired Ultimatum", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/d/dd64f064-8f05-41ef-b95b-1b723137f846.jpg?1591228071", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/d/dd64f064-8f05-41ef-b95b-1b723137f846.jpg?1591228071"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Invoke the Firemind", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/8/58d8e41a-5990-4ceb-9d41-76632faa7883.jpg?1593272700", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/8/58d8e41a-5990-4ceb-9d41-76632faa7883.jpg?1593272700"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Ionize", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/1/f161f7d2-eaa1-4931-93f9-befa8b5df821.jpg?1572893679", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/1/f161f7d2-eaa1-4931-93f9-befa8b5df821.jpg?1572893679"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Izzet Charm", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/1/61289196-a56b-4d24-b340-9cf067c77f45.jpg?1592713417", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/1/61289196-a56b-4d24-b340-9cf067c77f45.jpg?1592713417"}, "reprint": true, "digital": false, "set_type": "duel_deck"}, {"name": "Izzet Charm", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/8/e8e84a97-8e40-42fa-a114-df90e820ede6.jpg?1562497263", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/8/e8e84a97-8e40-42fa-a114-df90e820ede6.jpg?1562497263"}, "reprint": true, "digital": false, "set_type": "promo"}, {"name": "Jeskai Charm", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/a/ca268705-ef04-4bf1-8a5d-866bb3e5bb61.jpg?1562793488", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/a/ca268705-ef04-4bf1-8a5d-866bb3e5bb61.jpg?1562793488"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Kaervek's Purge", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/a/7a42ef95-92ec-40fe-ab30-a476f012a525.jpg?1562720237", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/a/7a42ef95-92ec-40fe-ab30-a476f012a525.jpg?1562720237"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Kaervek's Torch", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/a/0a1624ab-e50e-48a3-acf7-457069914616.jpg?1562717831", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/a/0a1624ab-e50e-48a3-acf7-457069914616.jpg?1562717831"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Kaleidoscorch", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/5/a5f07603-fd79-437a-9b12-495fc5a39b68.jpg?1626096801", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/5/a5f07603-fd79-437a-9b12-495fc5a39b68.jpg?1626096801"}, "reprint": false, "digital": false, "set_type": "draft_innovation"}, {"name": "Kamahl's Sledge", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/8/38c55518-7bdf-4a42-ae30-cd6525557a59.jpg?1562629270", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/8/38c55518-7bdf-4a42-ae30-cd6525557a59.jpg?1562629270"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Kami's Flare", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/e/bef5d58e-b490-4682-9a44-12cd61a94c0f.jpg?1654567705", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/e/bef5d58e-b490-4682-9a44-12cd61a94c0f.jpg?1654567705"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Kindle", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/3/930745eb-b038-4b55-97f3-bf8d99b54d32.jpg?1562055431", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/3/930745eb-b038-4b55-97f3-bf8d99b54d32.jpg?1562055431"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Kolaghan's Command", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/c/7c884e1e-fecb-4330-b3de-5fc2a60f7173.jpg?1562788780", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/c/7c884e1e-fecb-4330-b3de-5fc2a60f7173.jpg?1562788780"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Kolaghan's Command", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/e/1e8bdd10-0bdc-4339-bd84-b540606438d6.jpg?1656000872", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/e/1e8bdd10-0bdc-4339-bd84-b540606438d6.jpg?1656000872"}, "reprint": true, "frame_effects": ["inverted"], "digital": false, "set_type": "masters"}, {"name": "Lash Out", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/e/de2c0c8b-5442-44fb-9686-d3dff5742501.jpg?1562371092", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/e/de2c0c8b-5442-44fb-9686-d3dff5742501.jpg?1562371092"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Lava Axe", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/0/807e5102-1fab-4ff4-aad8-94defbbb8a6b.jpg?1562241656", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/0/807e5102-1fab-4ff4-aad8-94defbbb8a6b.jpg?1562241656"}, "reprint": true, "digital": false, "set_type": "core"}, {"name": "Lava Axe", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/1/e11ec278-46f5-4970-ad0b-f6718c73de6c.jpg?1562864233", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/1/e11ec278-46f5-4970-ad0b-f6718c73de6c.jpg?1562864233"}, "reprint": true, "digital": false, "set_type": "expansion"}, {"name": "Lava Axe", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/e/fe6cff90-ecec-4610-82ea-0f2a109959cf.jpg?1562955255", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/e/fe6cff90-ecec-4610-82ea-0f2a109959cf.jpg?1562955255"}, "reprint": true, "digital": false, "set_type": "starter"}, {"name": "Lava Axe", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/2/f2bebbad-76aa-4388-891a-583e8af9509d.jpg?1562448334", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/2/f2bebbad-76aa-4388-891a-583e8af9509d.jpg?1562448334"}, "reprint": false, "digital": false, "set_type": "starter"}, {"name": "Lava Blister", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/d/cd0e9e53-2710-4c2a-a8e4-48f25375ebc7.jpg?1562933365", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/d/cd0e9e53-2710-4c2a-a8e4-48f25375ebc7.jpg?1562933365"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Lava Burst", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/9/79dc0e20-5790-4927-8432-cf0e9b7381d4.jpg?1562917534", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/9/79dc0e20-5790-4927-8432-cf0e9b7381d4.jpg?1562917534"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Lava Dart", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/1/b16dd041-451d-4914-8c46-aa315a90d802.jpg?1562201890", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/1/b16dd041-451d-4914-8c46-aa315a90d802.jpg?1562201890"}, "reprint": true, "digital": false, "set_type": "draft_innovation"}, {"name": "Lava Dart", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/6/865bb1d3-5b7d-40e9-87cc-96be9524a105.jpg?1562630775", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/6/865bb1d3-5b7d-40e9-87cc-96be9524a105.jpg?1562630775"}, "reprint": false, "frame_effects": ["tombstone"], "digital": false, "set_type": "expansion"}, {"name": "Lavalanche", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/4/749981d6-78e7-4f53-80a8-f211e61bd532.jpg?1562642149", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/4/749981d6-78e7-4f53-80a8-f211e61bd532.jpg?1562642149"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Lava Spike", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/9/79c21c1f-eaa4-454d-a1c7-b41466d0a428.jpg?1547517298", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/9/79c21c1f-eaa4-454d-a1c7-b41466d0a428.jpg?1547517298"}, "reprint": true, "digital": false, "set_type": "masters"}, {"name": "Lava Spike", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/0/60b2fae1-242b-45e0-a757-b1adc02c06f3.jpg?1562760596", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/0/60b2fae1-242b-45e0-a757-b1adc02c06f3.jpg?1562760596"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Lightning Blast", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/3/83e3c502-9e3c-41db-806c-538243dc0453.jpg?1562241728", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/3/83e3c502-9e3c-41db-806c-538243dc0453.jpg?1562241728"}, "reprint": true, "digital": false, "set_type": "core"}, {"name": "Lightning Blast", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/3/63fec3f9-d399-48e6-84b6-c8410c24c382.jpg?1562054251", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/3/63fec3f9-d399-48e6-84b6-c8410c24c382.jpg?1562054251"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Lightning Bolt", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/e/ae5f9fb1-5a55-4db3-98a1-2628e3598c18.jpg?1648155765", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/e/ae5f9fb1-5a55-4db3-98a1-2628e3598c18.jpg?1648155765"}, "reprint": true, "digital": false, "set_type": "draft_innovation"}, {"name": "Lightning Bolt", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/3/435589bb-27c6-4a6d-9d63-394d5092b9d8.jpg?1561978182", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/3/435589bb-27c6-4a6d-9d63-394d5092b9d8.jpg?1561978182"}, "reprint": true, "digital": false, "set_type": "core"}, {"name": "Lightning Bolt", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/5/d573ef03-4730-45aa-93dd-e45ac1dbaf4a.jpg?1559591645", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/5/d573ef03-4730-45aa-93dd-e45ac1dbaf4a.jpg?1559591645"}, "reprint": false, "digital": false, "set_type": "core"}, {"name": "Lightning Bolt", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/8/c8c8390f-4072-454f-8dc4-174919187a47.jpg?1655641560", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/8/c8c8390f-4072-454f-8dc4-174919187a47.jpg?1655641560"}, "reprint": true, "frame_effects": ["inverted"], "digital": false, "set_type": "masters"}, {"name": "Lightning Bolt", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/6/c69f668b-cf28-495a-bbe1-24e9d0089fa1.jpg?1648155788", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/6/c69f668b-cf28-495a-bbe1-24e9d0089fa1.jpg?1648155788"}, "reprint": true, "frame_effects": ["showcase"], "digital": false, "set_type": "draft_innovation"}, {"name": "Lightning Bolt", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/7/27740ea5-79c8-420f-bc49-6d5eac58dac5.jpg?1657119952", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/7/27740ea5-79c8-420f-bc49-6d5eac58dac5.jpg?1657119952"}, "flavor_name": "Hadoken", "reprint": true, "digital": false, "set_type": "box"}, {"name": "Lightning Bolt", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/e/4eaac4fd-95f5-4f38-b593-0101e79a20f9.jpg?1623945607", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/e/4eaac4fd-95f5-4f38-b593-0101e79a20f9.jpg?1623945607"}, "reprint": true, "digital": false, "set_type": "masterpiece"}, {"name": "Lightning Bolt", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/5/45184cd7-b037-4a85-a063-e622ca928d17.jpg?1599352446", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/5/45184cd7-b037-4a85-a063-e622ca928d17.jpg?1599352446"}, "reprint": true, "digital": false, "set_type": "box"}, {"name": "Lightning Bolt", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/f/6fb94c1b-8002-4d79-add0-c4dfef9019ee.jpg?1599352358", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/f/6fb94c1b-8002-4d79-add0-c4dfef9019ee.jpg?1599352358"}, "reprint": true, "digital": false, "set_type": "box"}, {"name": "Lightning Bolt", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/a/6ab06973-6440-4b12-8947-8c412500fa41.jpg?1599352361", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/a/6ab06973-6440-4b12-8947-8c412500fa41.jpg?1599352361"}, "reprint": true, "digital": false, "set_type": "box"}, {"name": "Lightning Bolt", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/3/c3eb3895-b64c-46ab-b704-3c46963920ba.jpg?1599352414", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/3/c3eb3895-b64c-46ab-b704-3c46963920ba.jpg?1599352414"}, "reprint": true, "digital": false, "set_type": "box"}, {"name": "Lightning Bolt", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/f/ff204024-20a5-4bb9-82b6-f6b4337efd60.jpg?1552226335", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/f/ff204024-20a5-4bb9-82b6-f6b4337efd60.jpg?1552226335"}, "reprint": true, "digital": false, "set_type": "promo"}, {"name": "Lightning Bolt", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/8/28708c8c-4336-4d04-b43a-59a31471a9f6.jpg?1561756817", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/8/28708c8c-4336-4d04-b43a-59a31471a9f6.jpg?1561756817"}, "reprint": true, "digital": false, "set_type": "promo"}, {"name": "Lightning Helix", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/1/613789fe-fac1-4200-b0a1-c84d1fa27cff.jpg?1562917870", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/1/613789fe-fac1-4200-b0a1-c84d1fa27cff.jpg?1562917870"}, "reprint": true, "digital": false, "set_type": "duel_deck"}, {"name": "Lightning Helix", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/b/1b2ecf55-c1cc-4b28-b7ce-e1b25305155e.jpg?1598917140", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/b/1b2ecf55-c1cc-4b28-b7ce-e1b25305155e.jpg?1598917140"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Lightning Helix", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/2/227ac87a-7196-40d0-ab00-98ebafcca09a.jpg?1624065725", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/2/227ac87a-7196-40d0-ab00-98ebafcca09a.jpg?1624065725"}, "reprint": true, "digital": false, "set_type": "masterpiece"}, {"name": "Lightning Helix", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/e/4ec9e67b-1b4e-4e4e-9758-be697d308f16.jpg?1561757108", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/e/4ec9e67b-1b4e-4e4e-9758-be697d308f16.jpg?1561757108"}, "reprint": true, "digital": false, "set_type": "promo"}, {"name": "Lightning Javelin", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/1/c1ccaeed-9670-4432-8a45-d5c06119fa9f.jpg?1562040115", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/1/c1ccaeed-9670-4432-8a45-d5c06119fa9f.jpg?1562040115"}, "reprint": false, "digital": false, "set_type": "core"}, {"name": "Lightning Storm", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/9/c9c0388e-a04c-4757-a06d-8e8046f5a783.jpg?1593275279", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/9/c9c0388e-a04c-4757-a06d-8e8046f5a783.jpg?1593275279"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Lightning Strike", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/0/f0f55dee-7e39-4183-8e74-844d9c299bf5.jpg?1562566447", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/0/f0f55dee-7e39-4183-8e74-844d9c299bf5.jpg?1562566447"}, "reprint": true, "digital": false, "set_type": "expansion"}, {"name": "Lightning Strike", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/b/bbb03f2e-2b92-4aa1-afae-301ed5d151d3.jpg?1562827848", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/b/bbb03f2e-2b92-4aa1-afae-301ed5d151d3.jpg?1562827848"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Lightning Surge", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/4/0452d78d-eafc-4ccb-a478-d1f46bcefffe.jpg?1562628459", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/4/0452d78d-eafc-4ccb-a478-d1f46bcefffe.jpg?1562628459"}, "reprint": false, "frame_effects": ["tombstone"], "digital": false, "set_type": "expansion"}, {"name": "Light Up the Night", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/d/7de68154-3b82-4a94-98a6-cfc49d359e4e.jpg?1636223152", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/d/7de68154-3b82-4a94-98a6-cfc49d359e4e.jpg?1636223152"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Lorehold Command", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/4/e4f0885f-1049-4a19-853d-f4e6d4bec29e.jpg?1627429447", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/4/e4f0885f-1049-4a19-853d-f4e6d4bec29e.jpg?1627429447"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Lunge", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/9/e9e43349-429c-43f7-b808-c4bf37370a9f.jpg?1562383530", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/9/e9e43349-429c-43f7-b808-c4bf37370a9f.jpg?1562383530"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Magma Burst", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/9/d9752bc3-0bdf-4657-8750-73c8cbc8e83f.jpg?1562940942", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/9/d9752bc3-0bdf-4657-8750-73c8cbc8e83f.jpg?1562940942"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Magma Jet", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/a/8af1c5b0-973d-467e-a797-51ca75c183c1.jpg?1593813497", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/a/8af1c5b0-973d-467e-a797-51ca75c183c1.jpg?1593813497"}, "reprint": true, "digital": false, "set_type": "masters"}, {"name": "Magma Jet", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/1/51ea1728-08aa-4553-90b2-919c70712ed5.jpg?1562877009", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/1/51ea1728-08aa-4553-90b2-919c70712ed5.jpg?1562877009"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Magma Jet", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/e/be7552ac-4546-492d-8d11-d6678a04b9c3.jpg?1562640021", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/e/be7552ac-4546-492d-8d11-d6678a04b9c3.jpg?1562640021"}, "reprint": true, "digital": false, "set_type": "promo"}, {"name": "Make Mischief", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/2/a2049072-5901-4edd-8305-ce55f256bca5.jpg?1576384624", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/2/a2049072-5901-4edd-8305-ce55f256bca5.jpg?1576384624"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Melt Terrain", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/d/1d94a1d1-6d24-46e1-9568-42e1a810ad31.jpg?1562815251", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/d/1d94a1d1-6d24-46e1-9568-42e1a810ad31.jpg?1562815251"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Mindblaze", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/9/59418766-5567-4ec4-af1f-1cb2db2958d0.jpg?1562760146", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/9/59418766-5567-4ec4-af1f-1cb2db2958d0.jpg?1562760146"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Mindswipe", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/5/557e8303-a021-4257-b41a-7d25f04618c8.jpg?1562786781", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/5/557e8303-a021-4257-b41a-7d25f04618c8.jpg?1562786781"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Misfortune", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/1/b14cc32a-eb4f-4690-aceb-160780743ebe.jpg?1562770145", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/1/b14cc32a-eb4f-4690-aceb-160780743ebe.jpg?1562770145"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Molten Disaster", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/1/31e0713c-dbf4-4403-ae69-58fd483e2481.jpg?1562905110", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/1/31e0713c-dbf4-4403-ae69-58fd483e2481.jpg?1562905110"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Molten Influence", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/c/4c2b326b-d177-4a03-a0a3-fe2c2d4af272.jpg?1562908953", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/c/4c2b326b-d177-4a03-a0a3-fe2c2d4af272.jpg?1562908953"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Molten Rain", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/c/ecdd414b-3d9d-4347-acce-289209d09fc4.jpg?1593813519", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/c/ecdd414b-3d9d-4347-acce-289209d09fc4.jpg?1593813519"}, "reprint": true, "digital": false, "set_type": "masters"}, {"name": "Molten Rain", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/8/f888b4d4-31f9-4322-8225-4d7e7a9f4dd5.jpg?1562163535", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/8/f888b4d4-31f9-4322-8225-4d7e7a9f4dd5.jpg?1562163535"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Moonrager's Slash", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/b/eb4f266b-c41c-4047-ae6f-b2226c7459e8.jpg?1636223196", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/b/eb4f266b-c41c-4047-ae6f-b2226c7459e8.jpg?1636223196"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Needle Drop", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/3/d3f89bcf-46f8-4598-a949-7f10134606aa.jpg?1562369628", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/3/d3f89bcf-46f8-4598-a949-7f10134606aa.jpg?1562369628"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Neonate's Rush", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/e/dee17e12-e08f-4449-9f49-05f20e0d1670.jpg?1636223275", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/e/dee17e12-e08f-4449-9f49-05f20e0d1670.jpg?1636223275"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Nerf War", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/e/2eb08fc5-29a4-4911-ac94-dc5ff2fc2ace.jpg?1561756860", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/e/2eb08fc5-29a4-4911-ac94-dc5ff2fc2ace.jpg?1561756860"}, "reprint": false, "digital": false, "set_type": "funny"}, {"name": "Open Fire", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/4/448f9fb5-ffb5-4325-9f81-ce8782e5f9e9.jpg?1562797508", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/4/448f9fb5-ffb5-4325-9f81-ce8782e5f9e9.jpg?1562797508"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Orcish Cannonade", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/a/0afae574-aa96-4500-9882-a4b10337b6f5.jpg?1619397326", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/a/0afae574-aa96-4500-9882-a4b10337b6f5.jpg?1619397326"}, "reprint": true, "digital": false, "set_type": "masters"}, {"name": "Orcish Cannonade", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/e/4e40f99c-9608-4463-8c6f-c6e142f0d716.jpg?1562911399", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/e/4e40f99c-9608-4463-8c6f-c6e142f0d716.jpg?1562911399"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Parallectric Feedback", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/9/891f1d29-377a-4f71-917f-ff10e785caee.jpg?1593272344", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/9/891f1d29-377a-4f71-917f-ff10e785caee.jpg?1593272344"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Parch", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/3/d3ab8065-cecc-4b19-be93-7cf791a93e62.jpg?1562864229", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/3/d3ab8065-cecc-4b19-be93-7cf791a93e62.jpg?1562864229"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Pass the Torch", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/d/5dc05455-4ebd-46f8-94cf-14f0d5420037.jpg?1654043945", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/d/5dc05455-4ebd-46f8-94cf-14f0d5420037.jpg?1654043945"}, "reprint": false, "digital": true, "set_type": "alchemy"}, {"name": "Peak Eruption", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/d/ed0a00f7-aee0-4ab2-bab6-bc0949176a7a.jpg?1562836713", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/d/ed0a00f7-aee0-4ab2-bab6-bc0949176a7a.jpg?1562836713"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Pigment Storm", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/2/d285a7a1-bb7e-4a78-a49f-c2add62b829a.jpg?1624592111", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/2/d285a7a1-bb7e-4a78-a49f-c2add62b829a.jpg?1624592111"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Pillar of Flame", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/9/c983e879-d9d2-47cc-9958-506711ca80cd.jpg?1592709165", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/9/c983e879-d9d2-47cc-9958-506711ca80cd.jpg?1592709165"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Pillar of Flame", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/3/c39677b8-9a43-4e62-a83a-4a9d6372310b.jpg?1562640029", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/3/c39677b8-9a43-4e62-a83a-4a9d6372310b.jpg?1562640029"}, "reprint": true, "digital": false, "set_type": "promo"}, {"name": "Play with Fire", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/2/42901bec-a8d0-46a3-a710-bfb7bd87f155.jpg?1640721639", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/2/42901bec-a8d0-46a3-a710-bfb7bd87f155.jpg?1640721639"}, "reprint": false, "frame_effects": ["inverted"], "digital": false, "set_type": "expansion"}, {"name": "Poison the Well", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/b/cb86eeec-d50f-4823-86bd-35437926a6e4.jpg?1562835997", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/b/cb86eeec-d50f-4823-86bd-35437926a6e4.jpg?1562835997"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Precision Bolt", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/5/a59b4e5b-e9e0-4507-b9e7-8fba7e3a54f9.jpg?1572894271", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/5/a59b4e5b-e9e0-4507-b9e7-8fba7e3a54f9.jpg?1572894271"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Prismari Command", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/6/866b7fd4-86e3-4b42-b1ea-33bad0db1f9f.jpg?1627429955", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/6/866b7fd4-86e3-4b42-b1ea-33bad0db1f9f.jpg?1627429955"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Prophetic Bolt", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/0/101163c0-cd2f-4e1a-84b3-f64fc748807d.jpg?1592713462", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/0/101163c0-cd2f-4e1a-84b3-f64fc748807d.jpg?1592713462"}, "reprint": true, "digital": false, "set_type": "duel_deck"}, {"name": "Prophetic Bolt", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/9/79f74291-c452-4a60-bf5f-73efad6583d4.jpg?1562923762", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/9/79f74291-c452-4a60-bf5f-73efad6583d4.jpg?1562923762"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Provoke the Trolls", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/7/2727b05a-0c86-4c59-b7b4-425bdd8e775d.jpg?1631049503", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/7/2727b05a-0c86-4c59-b7b4-425bdd8e775d.jpg?1631049503"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Pulse of the Forge", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/a/ea3ed9c8-b552-4a9a-b77a-8b148638b4f0.jpg?1562640294", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/a/ea3ed9c8-b552-4a9a-b77a-8b148638b4f0.jpg?1562640294"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Puncture Blast", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/b/3bf90b4d-98cf-4953-b6ae-c41d21ab559b.jpg?1562907480", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/b/3bf90b4d-98cf-4953-b6ae-c41d21ab559b.jpg?1562907480"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Punishing Fire", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/d/0da4409b-fe3f-4500-bf4b-890593f7d313.jpg?1562897775", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/d/0da4409b-fe3f-4500-bf4b-890593f7d313.jpg?1562897775"}, "reprint": true, "digital": false, "set_type": "duel_deck"}, {"name": "Punishing Fire", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/6/56e76f1c-5a07-455a-a3df-4c45b5b25b82.jpg?1562612350", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/6/56e76f1c-5a07-455a-a3df-4c45b5b25b82.jpg?1562612350"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Punish the Enemy", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/1/4179a72b-8482-46ec-9815-f5d6d94b5aa5.jpg?1562907014", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/1/4179a72b-8482-46ec-9815-f5d6d94b5aa5.jpg?1562907014"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Pyromatics", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/2/c22c9dab-e8d5-48b3-8fd2-9f4138ee0c7c.jpg?1593272350", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/2/c22c9dab-e8d5-48b3-8fd2-9f4138ee0c7c.jpg?1593272350"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Quenchable Fire", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/e/ee1c0ded-2a80-4ed4-b9fc-3a18bf5c3239.jpg?1562804519", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/e/ee1c0ded-2a80-4ed4-b9fc-3a18bf5c3239.jpg?1562804519"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Rain of Embers", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/d/2d5391a9-6c30-4f9b-b746-a4427a3e63fc.jpg?1598915805", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/d/2d5391a9-6c30-4f9b-b746-a4427a3e63fc.jpg?1598915805"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Rakdos Charm", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/f/0fcd4394-d22d-4eec-ad73-ffaf10ad60de.jpg?1562782720", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/f/0fcd4394-d22d-4eec-ad73-ffaf10ad60de.jpg?1562782720"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Rakdos's Return", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/7/d72981c0-1632-4d64-9341-2a76047d9b36.jpg?1562793869", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/7/d72981c0-1632-4d64-9341-2a76047d9b36.jpg?1562793869"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Ral's Outburst", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/b/6be3dd3e-50d2-4729-9caa-b2cd984f4c97.jpg?1557577237", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/b/6be3dd3e-50d2-4729-9caa-b2cd984f4c97.jpg?1557577237"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Ravaging Blaze", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/d/5d9404b2-f0ea-4a31-bc7b-6748574c57d3.jpg?1562021972", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/d/5d9404b2-f0ea-4a31-bc7b-6748574c57d3.jpg?1562021972"}, "reprint": false, "digital": false, "set_type": "core"}, {"name": "Reality Hemorrhage", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/0/c044168d-cb08-493d-98c1-b66b6149fe5a.jpg?1562933647", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/0/c044168d-cb08-493d-98c1-b66b6149fe5a.jpg?1562933647"}, "reprint": false, "frame_effects": ["devoid"], "digital": false, "set_type": "expansion"}, {"name": "Reckless Abandon", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/f/8f335d43-cacb-40ad-93c1-9a861e9f66c7.jpg?1562444699", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/f/8f335d43-cacb-40ad-93c1-9a861e9f66c7.jpg?1562444699"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Red Sun's Zenith", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/7/373eb109-0e30-41c1-b2df-6bc78d968890.jpg?1562610602", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/7/373eb109-0e30-41c1-b2df-6bc78d968890.jpg?1562610602"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Rekindled Flame", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/3/131c6377-4ed4-4a76-a9cb-be7ad17d76fd.jpg?1562899037", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/3/131c6377-4ed4-4a76-a9cb-be7ad17d76fd.jpg?1562899037"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Release the Ants", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/b/1b6f1afb-2451-4611-ac3e-3513a4651719.jpg?1562877157", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/b/1b6f1afb-2451-4611-ac3e-3513a4651719.jpg?1562877157"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Rending Flame", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/1/51332c31-41df-4379-aa63-6a734a4df618.jpg?1643591905", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/1/51332c31-41df-4379-aa63-6a734a4df618.jpg?1643591905"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Repeating Barrage", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/a/ba90a2d6-8292-4ff1-91d0-b30ae9775f12.jpg?1562562987", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/a/ba90a2d6-8292-4ff1-91d0-b30ae9775f12.jpg?1562562987"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Resounding Thunder", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/8/680b7955-d939-4195-aba8-b46a8c925616.jpg?1562704894", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/8/680b7955-d939-4195-aba8-b46a8c925616.jpg?1562704894"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Rhystic Lightning", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/1/21ce365e-3002-42e9-aeb5-1b845408271e.jpg?1562901251", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/1/21ce365e-3002-42e9-aeb5-1b845408271e.jpg?1562901251"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Rift Bolt", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/8/88dde96e-6824-4d26-9fb5-86b9f3c50959.jpg?1562923901", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/8/88dde96e-6824-4d26-9fb5-86b9f3c50959.jpg?1562923901"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Rift Bolt", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/5/25176fe7-a5a0-44d2-9619-193063c55902.jpg?1561929531", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/5/25176fe7-a5a0-44d2-9619-193063c55902.jpg?1561929531"}, "reprint": true, "digital": false, "set_type": "promo"}, {"name": "Risk Factor", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/e/4eda89d9-9bd1-4a55-ac02-f9a0625d8e5b.jpg?1572893240", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/e/4eda89d9-9bd1-4a55-ac02-f9a0625d8e5b.jpg?1572893240"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Roil Eruption", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/6/86572747-8faa-4242-b059-07d11e6be1cd.jpg?1604197631", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/6/86572747-8faa-4242-b059-07d11e6be1cd.jpg?1604197631"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Roiling Terrain", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/7/87d3a425-01d1-4001-92f9-8e297dd862b7.jpg?1562291349", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/7/87d3a425-01d1-4001-92f9-8e297dd862b7.jpg?1562291349"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Rolling Earthquake", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/c/3c1bf210-ecdb-4b49-8504-51360c269e66.jpg?1562256070", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/c/3c1bf210-ecdb-4b49-8504-51360c269e66.jpg?1562256070"}, "reprint": false, "digital": false, "set_type": "starter"}, {"name": "Sacred Fire", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/0/c0b1dcd7-6dd9-4134-bc6c-9dc7754006a2.jpg?1636684880", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/0/c0b1dcd7-6dd9-4134-bc6c-9dc7754006a2.jpg?1636684880"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Sarkhan's Catharsis", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/f/2f4b6f26-c66b-4048-9503-af0a886ef14f.jpg?1557576811", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/f/2f4b6f26-c66b-4048-9503-af0a886ef14f.jpg?1557576811"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Sarkhan's Dragonfire", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/9/b96a7320-089a-4a7e-813f-49ca1620df76.jpg?1562303870", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/9/b96a7320-089a-4a7e-813f-49ca1620df76.jpg?1562303870"}, "reprint": false, "digital": false, "set_type": "core"}, {"name": "Sarkhan's Rage", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/7/4787924f-3186-4e18-b53c-dd67c5f42220.jpg?1562785591", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/7/4787924f-3186-4e18-b53c-dd67c5f42220.jpg?1562785591"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Saut\u00e9", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/5/85cbebbb-7ea4-4140-933f-186cad08697d.jpg?1562488867", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/5/85cbebbb-7ea4-4140-933f-186cad08697d.jpg?1562488867"}, "reprint": false, "digital": false, "set_type": "funny"}, {"name": "Scent of Cinder", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/0/c030eca0-bc5f-403b-8600-1f295fc85fee.jpg?1562445189", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/0/c030eca0-bc5f-403b-8600-1f295fc85fee.jpg?1562445189"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Scent of Cinder", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/0/d083fcdc-1e1f-4ad3-82d1-11f0b84dd74d.jpg?1562934001", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/0/d083fcdc-1e1f-4ad3-82d1-11f0b84dd74d.jpg?1562934001"}, "reprint": true, "digital": false, "set_type": "promo"}, {"name": "Scorching Lava", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/a/2a85437f-052e-494c-a9ee-265c4624a409.jpg?1562903659", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/a/2a85437f-052e-494c-a9ee-265c4624a409.jpg?1562903659"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Scorching Missile", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/6/0672960b-4cb5-4ed6-ba3c-6b97290e0330.jpg?1562896294", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/6/0672960b-4cb5-4ed6-ba3c-6b97290e0330.jpg?1562896294"}, "reprint": false, "frame_effects": ["tombstone"], "digital": false, "set_type": "expansion"}, {"name": "Scorching Spear", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/e/9e4817bd-68e8-4a85-983a-ee6dda2bbf33.jpg?1562447352", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/e/9e4817bd-68e8-4a85-983a-ee6dda2bbf33.jpg?1562447352"}, "reprint": false, "digital": false, "set_type": "starter"}, {"name": "Searing Barrage", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/2/d2f11135-e9ce-4e4c-bea7-72a46d326e40.jpg?1572490453", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/2/d2f11135-e9ce-4e4c-bea7-72a46d326e40.jpg?1572490453"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Searing Blaze", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/0/301f13dd-39b8-4a93-9c05-3dc4fa1f1c75.jpg?1562284687", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/0/301f13dd-39b8-4a93-9c05-3dc4fa1f1c75.jpg?1562284687"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Searing Blaze", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/7/974c599b-170e-4948-b741-47f61c769b6e.jpg?1561757630", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/7/974c599b-170e-4948-b741-47f61c769b6e.jpg?1561757630"}, "reprint": true, "digital": false, "set_type": "promo"}, {"name": "Searing Blood", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/b/bb43fd07-d281-447d-88bf-c53498c2cf20.jpg?1593092367", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/b/bb43fd07-d281-447d-88bf-c53498c2cf20.jpg?1593092367"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Searing Flesh", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/8/d83db110-42e7-4823-a686-b83205faf503.jpg?1562946564", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/8/d83db110-42e7-4823-a686-b83205faf503.jpg?1562946564"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Searing Spear", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/1/11a94b7c-0216-473c-87a6-71e5a64d7799.jpg?1562550529", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/1/11a94b7c-0216-473c-87a6-71e5a64d7799.jpg?1562550529"}, "reprint": false, "digital": false, "set_type": "core"}, {"name": "Searing Spear", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/5/e574f1f8-ca61-43b4-8230-2636709a3855.jpg?1562497262", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/5/e574f1f8-ca61-43b4-8230-2636709a3855.jpg?1562497262"}, "reprint": true, "digital": false, "set_type": "promo"}, {"name": "Searing Touch", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/9/e9091667-d5a8-4978-9023-032ff65f9642.jpg?1562057345", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/9/e9091667-d5a8-4978-9023-032ff65f9642.jpg?1562057345"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Searing Wind", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/b/7b761f97-3690-497a-b6ab-c71f61b8e841.jpg?1562917793", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/b/7b761f97-3690-497a-b6ab-c71f61b8e841.jpg?1562917793"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Seismic Wave", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/5/e55b8ffb-c2e4-4676-9051-ff6c686cad0b.jpg?1654567822", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/5/e55b8ffb-c2e4-4676-9051-ff6c686cad0b.jpg?1654567822"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Shard Volley", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/3/43db4810-078e-487a-afef-57cbc1db0cc7.jpg?1562878159", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/3/43db4810-078e-487a-afef-57cbc1db0cc7.jpg?1562878159"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Shock", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/0/00365412-41db-427c-9109-8f69c17c326d.jpg?1576381909", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/0/00365412-41db-427c-9109-8f69c17c326d.jpg?1576381909"}, "reprint": true, "digital": false, "set_type": "expansion"}, {"name": "Shock", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/3/334ad39a-4088-4530-8f3c-d34e7cc99fae.jpg?1562545881", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/3/334ad39a-4088-4530-8f3c-d34e7cc99fae.jpg?1562545881"}, "reprint": true, "digital": false, "set_type": "core"}, {"name": "Shock", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/3/83c92b5d-103c-4719-a850-690a7010291a.jpg?1562926054", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/3/83c92b5d-103c-4719-a850-690a7010291a.jpg?1562926054"}, "reprint": true, "digital": false, "set_type": "expansion"}, {"name": "Shock", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/a/ea653772-a5fe-4416-bef3-fd41133371db.jpg?1562250385", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/a/ea653772-a5fe-4416-bef3-fd41133371db.jpg?1562250385"}, "reprint": true, "digital": false, "set_type": "core"}, {"name": "Shock", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/9/f9b2ff2a-6dfe-4635-8da2-22d525e82b94.jpg?1562597849", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/9/f9b2ff2a-6dfe-4635-8da2-22d525e82b94.jpg?1562597849"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Shock", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/0/60eeb025-704c-4a82-90b2-f91202ae30d9.jpg?1623945691", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/0/60eeb025-704c-4a82-90b2-f91202ae30d9.jpg?1623945691"}, "reprint": true, "digital": false, "set_type": "masterpiece"}, {"name": "Shower of Sparks", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/4/54428999-a83d-40a5-9753-dfefdf705a9e.jpg?1562912591", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/4/54428999-a83d-40a5-9753-dfefdf705a9e.jpg?1562912591"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Shrapnel Blast", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/5/056affab-4e2a-4b68-b864-d879becd3c45.jpg?1562134669", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/5/056affab-4e2a-4b68-b864-d879becd3c45.jpg?1562134669"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Shrapnel Blast", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/8/f8baa9d1-b45d-4947-9eb6-7f580c83a2c3.jpg?1562164853", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/8/f8baa9d1-b45d-4947-9eb6-7f580c83a2c3.jpg?1562164853"}, "reprint": true, "digital": false, "set_type": "promo"}, {"name": "Sizzle", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/f/dfdfe2a9-1323-4f15-b2ce-d8dd404b914d.jpg?1587913602", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/f/dfdfe2a9-1323-4f15-b2ce-d8dd404b914d.jpg?1587913602"}, "reprint": true, "digital": false, "set_type": "core"}, {"name": "Sizzle", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/1/f1ca1eee-d97d-48c6-84f1-7d1f972c3ca9.jpg?1562383987", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/1/f1ca1eee-d97d-48c6-84f1-7d1f972c3ca9.jpg?1562383987"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Skewer the Critics", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/7/97295660-6bea-46ae-9a3b-0fc6abba407f.jpg?1584831035", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/7/97295660-6bea-46ae-9a3b-0fc6abba407f.jpg?1584831035"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Skullcrack", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/0/8068a146-f6fe-46f3-a42e-822fbc3502e6.jpg?1561833692", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/0/8068a146-f6fe-46f3-a42e-822fbc3502e6.jpg?1561833692"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Skull Rend", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/c/1c8efb23-bac0-41d2-b4ee-27a6b1fe3134.jpg?1562783397", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/c/1c8efb23-bac0-41d2-b4ee-27a6b1fe3134.jpg?1562783397"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Skullscorch", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/8/88f1343c-77bf-4f44-8226-fdfb2c2c7015.jpg?1562630775", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/8/88f1343c-77bf-4f44-8226-fdfb2c2c7015.jpg?1562630775"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Slagstorm", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/e/9e318b03-2aad-462b-a2a9-8b6bdf0e93d6.jpg?1562613393", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/e/9e318b03-2aad-462b-a2a9-8b6bdf0e93d6.jpg?1562613393"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Slaying Fire", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/3/83b5b110-c430-4ffe-9fc1-8e6987f52d1e.jpg?1572490469", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/3/83b5b110-c430-4ffe-9fc1-8e6987f52d1e.jpg?1572490469"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Smash to Smithereens", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/e/7eda1524-44dd-4f70-ac21-bac51578860e.jpg?1562832260", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/e/7eda1524-44dd-4f70-ac21-bac51578860e.jpg?1562832260"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Smash to Smithereens", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/d/4daccff6-8395-4b11-a4ce-3576aa38bc09.jpg?1562636800", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/d/4daccff6-8395-4b11-a4ce-3576aa38bc09.jpg?1562636800"}, "reprint": true, "digital": false, "set_type": "promo"}, {"name": "Smoke Spirits' Aid", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/4/e492a245-46ba-438e-8d81-4626faa49bff.jpg?1651655377", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/4/e492a245-46ba-438e-8d81-4626faa49bff.jpg?1651655377"}, "reprint": false, "digital": false, "set_type": "commander"}, {"name": "Solar Blast", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/3/b36fc40c-6a68-4192-91d9-2031c7d32e05.jpg?1562937333", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/3/b36fc40c-6a68-4192-91d9-2031c7d32e05.jpg?1562937333"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Sonic Assault", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/c/cc61a398-cf16-415b-b3cf-897217dc7cc9.jpg?1572893813", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/c/cc61a398-cf16-415b-b3cf-897217dc7cc9.jpg?1572893813"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Sonic Burst", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/5/05530d5a-dcb6-403e-9e35-224c7b5cf615.jpg?1562086889", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/5/05530d5a-dcb6-403e-9e35-224c7b5cf615.jpg?1562086889"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Sonic Seizure", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/8/98eb9371-aa20-4790-baf8-a1ad95de39de.jpg?1562631090", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/8/98eb9371-aa20-4790-baf8-a1ad95de39de.jpg?1562631090"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Spark Jolt", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/e/6ee479c2-a115-450b-bc2e-b03d23b82f2d.jpg?1562819617", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/e/6ee479c2-a115-450b-bc2e-b03d23b82f2d.jpg?1562819617"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Spark Spray", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/6/f60d8716-4297-484c-8e02-c30ce2773a65.jpg?1562536945", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/6/f60d8716-4297-484c-8e02-c30ce2773a65.jpg?1562536945"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Spawning Breath", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/0/90ec1540-e8cb-4edc-a3b3-f71423cb46fc.jpg?1562706335", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/0/90ec1540-e8cb-4edc-a3b3-f71423cb46fc.jpg?1562706335"}, "reprint": false, "digital": false, "set_type": "expansion"}]} \ No newline at end of file diff --git a/web/public/mtg/jsons/burn3.json b/web/public/mtg/jsons/burn3.json index 3e5783d4..aa261ae5 100644 --- a/web/public/mtg/jsons/burn3.json +++ b/web/public/mtg/jsons/burn3.json @@ -1 +1 @@ -{"object": "list", "total_cards": 474, "has_more": false, "data": [{"object": "card", "id": "25176fe7-a5a0-44d2-9619-193063c55902", "oracle_id": "2b8afa9f-4236-4c02-a8d5-3c145caecfd6", "multiverse_ids": [], "tcgplayer_id": 38147, "cardmarket_id": 242748, "name": "Rift Bolt", "lang": "en", "released_at": "2010-01-01", "uri": "https://api.scryfall.com/cards/25176fe7-a5a0-44d2-9619-193063c55902", "scryfall_uri": "https://scryfall.com/card/f10/10/rift-bolt?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/2/5/25176fe7-a5a0-44d2-9619-193063c55902.jpg?1561929531", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/5/25176fe7-a5a0-44d2-9619-193063c55902.jpg?1561929531", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/2/5/25176fe7-a5a0-44d2-9619-193063c55902.jpg?1561929531", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/2/5/25176fe7-a5a0-44d2-9619-193063c55902.png?1561929531", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/5/25176fe7-a5a0-44d2-9619-193063c55902.jpg?1561929531", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/2/5/25176fe7-a5a0-44d2-9619-193063c55902.jpg?1561929531"}, "mana_cost": "{2}{R}", "cmc": 3.0, "type_line": "Sorcery", "oracle_text": "Rift Bolt deals 3 damage to any target.\nSuspend 1\u2014{R} (Rather than cast this card from your hand, you may pay {R} and exile it with a time counter on it. At the beginning of your upkeep, remove a time counter. When the last is removed, cast it without paying its mana cost.)", "colors": ["R"], "color_identity": ["R"], "keywords": ["Suspend"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": true, "nonfoil": false, "finishes": ["foil"], "oversized": false, "promo": true, "reprint": true, "variation": false, "set_id": "0790f41d-e012-46b7-b97c-bfeda3489a4f", "set": "f10", "set_name": "Friday Night Magic 2010", "set_type": "promo", "set_uri": "https://api.scryfall.com/sets/0790f41d-e012-46b7-b97c-bfeda3489a4f", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Af10&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/f10?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/25176fe7-a5a0-44d2-9619-193063c55902/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A2b8afa9f-4236-4c02-a8d5-3c145caecfd6&unique=prints", "collector_number": "10", "digital": false, "rarity": "rare", "watermark": "fnm", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Daniel Ljunggren", "artist_ids": ["0fbd4798-76eb-46d5-a5d4-1e3a25870e34"], "illustration_id": "d3e1b290-cfce-4c9b-a7ed-1e4c039dac98", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "promo_types": ["tourney", "fnm"], "edhrec_rank": 10182, "penny_rank": 275, "prices": {"usd": null, "usd_foil": "6.46", "usd_etched": null, "eur": null, "eur_foil": "1.99", "tix": null}, "related_uris": {"tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Rift+Bolt&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Rift+Bolt&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Rift+Bolt"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/38147?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Rift+Bolt&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Rift+Bolt&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "4eda89d9-9bd1-4a55-ac02-f9a0625d8e5b", "oracle_id": "7f61a2a6-2fe2-48ec-8e2e-74d147be0a0a", "multiverse_ids": [452863], "mtgo_id": 69599, "arena_id": 68574, "tcgplayer_id": 176841, "cardmarket_id": 364207, "name": "Risk Factor", "lang": "en", "released_at": "2018-10-05", "uri": "https://api.scryfall.com/cards/4eda89d9-9bd1-4a55-ac02-f9a0625d8e5b", "scryfall_uri": "https://scryfall.com/card/grn/113/risk-factor?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/4/e/4eda89d9-9bd1-4a55-ac02-f9a0625d8e5b.jpg?1572893240", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/e/4eda89d9-9bd1-4a55-ac02-f9a0625d8e5b.jpg?1572893240", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/4/e/4eda89d9-9bd1-4a55-ac02-f9a0625d8e5b.jpg?1572893240", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/4/e/4eda89d9-9bd1-4a55-ac02-f9a0625d8e5b.png?1572893240", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/e/4eda89d9-9bd1-4a55-ac02-f9a0625d8e5b.jpg?1572893240", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/4/e/4eda89d9-9bd1-4a55-ac02-f9a0625d8e5b.jpg?1572893240"}, "mana_cost": "{2}{R}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Target opponent may have Risk Factor deal 4 damage to them. If that player doesn't, you draw three cards.\nJump-start (You may cast this card from your graveyard by discarding a card in addition to paying its other costs. Then exile this card.)", "colors": ["R"], "color_identity": ["R"], "keywords": ["Jump-start"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "597c6d4a-8212-4903-a6af-12c4ae9e13f0", "set": "grn", "set_name": "Guilds of Ravnica", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/597c6d4a-8212-4903-a6af-12c4ae9e13f0", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Agrn&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/grn?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/4eda89d9-9bd1-4a55-ac02-f9a0625d8e5b/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A7f61a2a6-2fe2-48ec-8e2e-74d147be0a0a&unique=prints", "collector_number": "113", "digital": false, "rarity": "rare", "watermark": "izzet", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Chris Seaman", "artist_ids": ["b9c49463-6f55-4039-9d32-c02a658af100"], "illustration_id": "b7970a1d-6f61-4fbb-896f-f6d0c67f34f6", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 3891, "penny_rank": 1660, "prices": {"usd": "0.81", "usd_foil": "2.13", "usd_etched": null, "eur": "0.76", "eur_foil": "1.50", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=452863", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Risk+Factor&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Risk+Factor&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Risk+Factor"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/176841?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Risk+Factor&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/69599?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "86572747-8faa-4242-b059-07d11e6be1cd", "oracle_id": "6798163a-864f-4844-96b1-77585a7e7ab4", "multiverse_ids": [491796], "mtgo_id": 83285, "arena_id": 73357, "tcgplayer_id": 222015, "cardmarket_id": 495890, "name": "Roil Eruption", "lang": "en", "released_at": "2020-09-25", "uri": "https://api.scryfall.com/cards/86572747-8faa-4242-b059-07d11e6be1cd", "scryfall_uri": "https://scryfall.com/card/znr/155/roil-eruption?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/8/6/86572747-8faa-4242-b059-07d11e6be1cd.jpg?1604197631", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/6/86572747-8faa-4242-b059-07d11e6be1cd.jpg?1604197631", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/8/6/86572747-8faa-4242-b059-07d11e6be1cd.jpg?1604197631", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/8/6/86572747-8faa-4242-b059-07d11e6be1cd.png?1604197631", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/6/86572747-8faa-4242-b059-07d11e6be1cd.jpg?1604197631", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/8/6/86572747-8faa-4242-b059-07d11e6be1cd.jpg?1604197631"}, "mana_cost": "{1}{R}", "cmc": 2.0, "type_line": "Sorcery", "oracle_text": "Kicker {5} (You may pay an additional {5} as you cast this spell.)\nRoil Eruption deals 3 damage to any target. If this spell was kicked, it deals 5 damage instead.", "colors": ["R"], "color_identity": ["R"], "keywords": ["Kicker"], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "f4e01fa7-b254-42dd-849f-69b58027a8c4", "set": "znr", "set_name": "Zendikar Rising", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/f4e01fa7-b254-42dd-849f-69b58027a8c4", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aznr&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/znr?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/86572747-8faa-4242-b059-07d11e6be1cd/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A6798163a-864f-4844-96b1-77585a7e7ab4&unique=prints", "collector_number": "155", "digital": false, "rarity": "common", "flavor_text": "\"Our feeble villages and tiny encampments stand only at the whim of the Roil.\"\n\u2014*The Invokers' Tales*", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Campbell White", "artist_ids": ["d281eab4-463a-4ba8-9039-8943737960a0"], "illustration_id": "2b606da1-1359-4d8b-81a9-86d5bbcca271", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 12126, "penny_rank": 10827, "preview": {"source": "Anna Hollinrake", "source_uri": "https://twitter.com/AnnaHollinrake/status/1301856022102003714", "previewed_at": "2020-09-04"}, "prices": {"usd": "0.06", "usd_foil": "0.08", "usd_etched": null, "eur": "0.03", "eur_foil": "0.36", "tix": "0.01"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=491796", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Roil+Eruption&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Roil+Eruption&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Roil+Eruption"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/222015?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Roil+Eruption&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/83285?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "87d3a425-01d1-4001-92f9-8e297dd862b7", "oracle_id": "5e90f187-42fe-4f32-ad75-302e6709192d", "multiverse_ids": [194671], "mtgo_id": 35683, "mtgo_foil_id": 35684, "tcgplayer_id": 34424, "cardmarket_id": 22238, "name": "Roiling Terrain", "lang": "en", "released_at": "2010-02-05", "uri": "https://api.scryfall.com/cards/87d3a425-01d1-4001-92f9-8e297dd862b7", "scryfall_uri": "https://scryfall.com/card/wwk/88/roiling-terrain?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/8/7/87d3a425-01d1-4001-92f9-8e297dd862b7.jpg?1562291349", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/7/87d3a425-01d1-4001-92f9-8e297dd862b7.jpg?1562291349", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/8/7/87d3a425-01d1-4001-92f9-8e297dd862b7.jpg?1562291349", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/8/7/87d3a425-01d1-4001-92f9-8e297dd862b7.png?1562291349", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/7/87d3a425-01d1-4001-92f9-8e297dd862b7.jpg?1562291349", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/8/7/87d3a425-01d1-4001-92f9-8e297dd862b7.jpg?1562291349"}, "mana_cost": "{2}{R}{R}", "cmc": 4.0, "type_line": "Sorcery", "oracle_text": "Destroy target land, then Roiling Terrain deals damage to that land's controller equal to the number of land cards in that player's graveyard.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "2f248ce6-c2a5-4c6f-a2be-0c593fbe173c", "set": "wwk", "set_name": "Worldwake", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/2f248ce6-c2a5-4c6f-a2be-0c593fbe173c", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Awwk&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/wwk?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/87d3a425-01d1-4001-92f9-8e297dd862b7/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A5e90f187-42fe-4f32-ad75-302e6709192d&unique=prints", "collector_number": "88", "digital": false, "rarity": "common", "flavor_text": "\"The trembling lands ruptured, leaving an open door for things from below to emerge.\"\n\u2014Screed of the Mul Daya", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Steve Prescott", "artist_ids": ["a1139fb8-41f5-4a9e-9a74-f662e1a23b35"], "illustration_id": "88fad4b4-6d8c-4015-9492-bfdf40724873", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 11615, "penny_rank": 4920, "prices": {"usd": "0.20", "usd_foil": "1.47", "usd_etched": null, "eur": "0.25", "eur_foil": "0.54", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=194671", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Roiling+Terrain&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Roiling+Terrain&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Roiling+Terrain"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/34424?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Roiling+Terrain&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/35683?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "3c1bf210-ecdb-4b49-8504-51360c269e66", "oracle_id": "46b96552-830e-4732-9560-9872aeec858b", "multiverse_ids": [10526], "tcgplayer_id": 521, "cardmarket_id": 11315, "name": "Rolling Earthquake", "lang": "en", "released_at": "1999-07-06", "uri": "https://api.scryfall.com/cards/3c1bf210-ecdb-4b49-8504-51360c269e66", "scryfall_uri": "https://scryfall.com/card/ptk/122/rolling-earthquake?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/3/c/3c1bf210-ecdb-4b49-8504-51360c269e66.jpg?1562256070", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/c/3c1bf210-ecdb-4b49-8504-51360c269e66.jpg?1562256070", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/3/c/3c1bf210-ecdb-4b49-8504-51360c269e66.jpg?1562256070", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/3/c/3c1bf210-ecdb-4b49-8504-51360c269e66.png?1562256070", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/c/3c1bf210-ecdb-4b49-8504-51360c269e66.jpg?1562256070", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/3/c/3c1bf210-ecdb-4b49-8504-51360c269e66.jpg?1562256070"}, "mana_cost": "{X}{R}", "cmc": 1.0, "type_line": "Sorcery", "oracle_text": "Rolling Earthquake deals X damage to each creature without horsemanship and each player.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "2676ff2e-9d86-4b5b-b935-e84e41b0755e", "set": "ptk", "set_name": "Portal Three Kingdoms", "set_type": "starter", "set_uri": "https://api.scryfall.com/sets/2676ff2e-9d86-4b5b-b935-e84e41b0755e", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aptk&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ptk?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/3c1bf210-ecdb-4b49-8504-51360c269e66/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A46b96552-830e-4732-9560-9872aeec858b&unique=prints", "collector_number": "122", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Yang Hong", "artist_ids": ["4a9bbac6-55de-440a-bb65-58aedc3380ed"], "illustration_id": "bedbf88f-36ca-4926-86c7-a627ebd0a9d9", "border_color": "white", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 2302, "penny_rank": 3611, "prices": {"usd": "121.24", "usd_foil": null, "usd_etched": null, "eur": "57.50", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=10526", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Rolling+Earthquake&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Rolling+Earthquake&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Rolling+Earthquake"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/521?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Rolling+Earthquake&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Rolling+Earthquake&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "c0b1dcd7-6dd9-4134-bc6c-9dc7754006a2", "oracle_id": "812bf52c-37f5-41c9-8a69-009fddbafb3f", "multiverse_ids": [535035], "mtgo_id": 93484, "arena_id": 78606, "tcgplayer_id": 248081, "cardmarket_id": 574911, "name": "Sacred Fire", "lang": "en", "released_at": "2021-09-24", "uri": "https://api.scryfall.com/cards/c0b1dcd7-6dd9-4134-bc6c-9dc7754006a2", "scryfall_uri": "https://scryfall.com/card/mid/239/sacred-fire?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/c/0/c0b1dcd7-6dd9-4134-bc6c-9dc7754006a2.jpg?1636684880", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/0/c0b1dcd7-6dd9-4134-bc6c-9dc7754006a2.jpg?1636684880", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/c/0/c0b1dcd7-6dd9-4134-bc6c-9dc7754006a2.jpg?1636684880", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/c/0/c0b1dcd7-6dd9-4134-bc6c-9dc7754006a2.png?1636684880", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/0/c0b1dcd7-6dd9-4134-bc6c-9dc7754006a2.jpg?1636684880", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/c/0/c0b1dcd7-6dd9-4134-bc6c-9dc7754006a2.jpg?1636684880"}, "mana_cost": "{R}{W}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Sacred Fire deals 2 damage to any target and you gain 2 life.\nFlashback {4}{R}{W} (You may cast this card from your graveyard for its flashback cost. Then exile it.)", "colors": ["R", "W"], "color_identity": ["R", "W"], "keywords": ["Flashback"], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "44b8eb8f-fa23-401a-98b5-1fbb9871128e", "set": "mid", "set_name": "Innistrad: Midnight Hunt", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/44b8eb8f-fa23-401a-98b5-1fbb9871128e", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Amid&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/mid?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/c0b1dcd7-6dd9-4134-bc6c-9dc7754006a2/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A812bf52c-37f5-41c9-8a69-009fddbafb3f&unique=prints", "collector_number": "239", "digital": false, "rarity": "uncommon", "flavor_text": "\"Do not confuse justice with mercy.\"\n\u2014Odric, Order of Saint Traft", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Svetlin Velinov", "artist_ids": ["ffd063ae-c097-4f26-b2e6-b1e2137708bc"], "illustration_id": "7160d15a-de3d-4fbc-8420-36cebee84806", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 8756, "penny_rank": 1071, "preview": {"source": "Commander Replay", "source_uri": "https://www.youtube.com/watch?v=LlOOKN5JczQ", "previewed_at": "2021-09-07"}, "prices": {"usd": "0.08", "usd_foil": "0.14", "usd_etched": null, "eur": "0.04", "eur_foil": "0.13", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=535035", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Sacred+Fire&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Sacred+Fire&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Sacred+Fire"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/248081?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Sacred+Fire&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/93484?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "2f4b6f26-c66b-4048-9503-af0a886ef14f", "oracle_id": "787935ab-26a6-4b4a-9c14-e106160e951d", "multiverse_ids": [461071], "mtgo_id": 71894, "arena_id": 69595, "tcgplayer_id": 188707, "cardmarket_id": 372276, "name": "Sarkhan's Catharsis", "lang": "en", "released_at": "2019-05-03", "uri": "https://api.scryfall.com/cards/2f4b6f26-c66b-4048-9503-af0a886ef14f", "scryfall_uri": "https://scryfall.com/card/war/144/sarkhans-catharsis?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/2/f/2f4b6f26-c66b-4048-9503-af0a886ef14f.jpg?1557576811", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/f/2f4b6f26-c66b-4048-9503-af0a886ef14f.jpg?1557576811", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/2/f/2f4b6f26-c66b-4048-9503-af0a886ef14f.jpg?1557576811", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/2/f/2f4b6f26-c66b-4048-9503-af0a886ef14f.png?1557576811", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/f/2f4b6f26-c66b-4048-9503-af0a886ef14f.jpg?1557576811", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/2/f/2f4b6f26-c66b-4048-9503-af0a886ef14f.jpg?1557576811"}, "mana_cost": "{4}{R}", "cmc": 5.0, "type_line": "Instant", "oracle_text": "Sarkhan's Catharsis deals 5 damage to target player or planeswalker.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "ee044f0b-e101-4ead-8d0e-aa510aad4277", "set": "war", "set_name": "War of the Spark", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/ee044f0b-e101-4ead-8d0e-aa510aad4277", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Awar&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/war?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/2f4b6f26-c66b-4048-9503-af0a886ef14f/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A787935ab-26a6-4b4a-9c14-e106160e951d&unique=prints", "collector_number": "144", "digital": false, "rarity": "common", "flavor_text": "\"You once brought havoc to my home and ruined my mind. I'm here to return the favor, Bolas.\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Zack Stella", "artist_ids": ["17bc7f55-958b-43f4-bb40-09746d05b3f9"], "illustration_id": "6d49c638-fdd3-470a-9bb1-5eb155dae970", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 16410, "penny_rank": 5531, "preview": {"source": "Brian Kibler", "source_uri": "https://twitter.com/bmkibler/status/1118522051038343169", "previewed_at": "2019-04-17"}, "prices": {"usd": "0.01", "usd_foil": "0.11", "usd_etched": null, "eur": "0.10", "eur_foil": "0.05", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=461071", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Sarkhan%27s+Catharsis&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Sarkhan%27s+Catharsis&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Sarkhan%27s+Catharsis"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/188707?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Sarkhan%27s+Catharsis&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/71894?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "b96a7320-089a-4a7e-813f-49ca1620df76", "oracle_id": "2a08d878-7816-4d0a-9532-4f2d3c8eee90", "multiverse_ids": [450245], "mtgo_id": 68129, "arena_id": 68278, "tcgplayer_id": 169162, "cardmarket_id": 360430, "name": "Sarkhan's Dragonfire", "lang": "en", "released_at": "2018-07-13", "uri": "https://api.scryfall.com/cards/b96a7320-089a-4a7e-813f-49ca1620df76", "scryfall_uri": "https://scryfall.com/card/m19/298/sarkhans-dragonfire?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/b/9/b96a7320-089a-4a7e-813f-49ca1620df76.jpg?1562303870", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/9/b96a7320-089a-4a7e-813f-49ca1620df76.jpg?1562303870", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/b/9/b96a7320-089a-4a7e-813f-49ca1620df76.jpg?1562303870", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/b/9/b96a7320-089a-4a7e-813f-49ca1620df76.png?1562303870", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/9/b96a7320-089a-4a7e-813f-49ca1620df76.jpg?1562303870", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/b/9/b96a7320-089a-4a7e-813f-49ca1620df76.jpg?1562303870"}, "mana_cost": "{3}{R}{R}", "cmc": 5.0, "type_line": "Sorcery", "oracle_text": "Sarkhan's Dragonfire deals 3 damage to any target.\nLook at the top five cards of your library. You may reveal a red card from among them and put it into your hand. Put the rest on the bottom of your library in a random order.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "2f5f2509-56db-414d-9a7e-6e312ec3760c", "set": "m19", "set_name": "Core Set 2019", "set_type": "core", "set_uri": "https://api.scryfall.com/sets/2f5f2509-56db-414d-9a7e-6e312ec3760c", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Am19&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/m19?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/b96a7320-089a-4a7e-813f-49ca1620df76/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A2a08d878-7816-4d0a-9532-4f2d3c8eee90&unique=prints", "collector_number": "298", "digital": false, "rarity": "rare", "flavor_text": "\"I am most myself when I am least human.\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Daarken", "artist_ids": ["e607a0d4-fc12-4c01-9e3f-501f5269b9cb"], "illustration_id": "8216461e-40b5-4aa0-a8be-ff9d24504300", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "promo_types": ["planeswalkerdeck"], "edhrec_rank": 16745, "prices": {"usd": "0.24", "usd_foil": null, "usd_etched": null, "eur": "0.24", "eur_foil": null, "tix": "0.19"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=450245", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Sarkhan%27s+Dragonfire&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Sarkhan%27s+Dragonfire&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Sarkhan%27s+Dragonfire"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/169162?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Sarkhan%27s+Dragonfire&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/68129?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "4787924f-3186-4e18-b53c-dd67c5f42220", "oracle_id": "3313aa8f-6441-4daa-b8fa-e6144f60bea8", "multiverse_ids": [394676], "mtgo_id": 56266, "mtgo_foil_id": 56267, "tcgplayer_id": 96709, "cardmarket_id": 273372, "name": "Sarkhan's Rage", "lang": "en", "released_at": "2015-03-27", "uri": "https://api.scryfall.com/cards/4787924f-3186-4e18-b53c-dd67c5f42220", "scryfall_uri": "https://scryfall.com/card/dtk/153/sarkhans-rage?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/4/7/4787924f-3186-4e18-b53c-dd67c5f42220.jpg?1562785591", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/7/4787924f-3186-4e18-b53c-dd67c5f42220.jpg?1562785591", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/4/7/4787924f-3186-4e18-b53c-dd67c5f42220.jpg?1562785591", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/4/7/4787924f-3186-4e18-b53c-dd67c5f42220.png?1562785591", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/7/4787924f-3186-4e18-b53c-dd67c5f42220.jpg?1562785591", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/4/7/4787924f-3186-4e18-b53c-dd67c5f42220.jpg?1562785591"}, "mana_cost": "{4}{R}", "cmc": 5.0, "type_line": "Instant", "oracle_text": "Sarkhan's Rage deals 5 damage to any target. If you control no Dragons, Sarkhan's Rage deals 2 damage to you.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "7e72625f-f320-4552-a719-d11e2f1853bd", "set": "dtk", "set_name": "Dragons of Tarkir", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/7e72625f-f320-4552-a719-d11e2f1853bd", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Adtk&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/dtk?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/4787924f-3186-4e18-b53c-dd67c5f42220/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A3313aa8f-6441-4daa-b8fa-e6144f60bea8&unique=prints", "collector_number": "153", "digital": false, "rarity": "common", "flavor_text": "The people of Tarkir speak of an ancient legend, of the dragon-man called Sarkhan who was greatest of all khans.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Chris Rahn", "artist_ids": ["7742047e-0f80-4c0f-a530-d07460165e86"], "illustration_id": "de7f3951-4966-406b-a771-d84d8426043a", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 18082, "prices": {"usd": "0.05", "usd_foil": "0.18", "usd_etched": null, "eur": "0.05", "eur_foil": "0.10", "tix": "0.05"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=394676", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Sarkhan%27s+Rage&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Sarkhan%27s+Rage&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Sarkhan%27s+Rage"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/96709?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Sarkhan%27s+Rage&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/56266?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "85cbebbb-7ea4-4140-933f-186cad08697d", "oracle_id": "9e66a867-d502-4630-9d74-830b67712302", "multiverse_ids": [74242], "tcgplayer_id": 37922, "cardmarket_id": 14851, "name": "Saut\u00e9", "lang": "en", "released_at": "2004-11-19", "uri": "https://api.scryfall.com/cards/85cbebbb-7ea4-4140-933f-186cad08697d", "scryfall_uri": "https://scryfall.com/card/unh/88/saut%C3%A9?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/8/5/85cbebbb-7ea4-4140-933f-186cad08697d.jpg?1562488867", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/5/85cbebbb-7ea4-4140-933f-186cad08697d.jpg?1562488867", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/8/5/85cbebbb-7ea4-4140-933f-186cad08697d.jpg?1562488867", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/8/5/85cbebbb-7ea4-4140-933f-186cad08697d.png?1562488867", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/5/85cbebbb-7ea4-4140-933f-186cad08697d.jpg?1562488867", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/8/5/85cbebbb-7ea4-4140-933f-186cad08697d.jpg?1562488867"}, "mana_cost": "{1}{R}{R}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Saut\u00e9 deals 3\u00bd damage to any target.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "not_legal", "pauper": "not_legal", "vintage": "not_legal", "penny": "not_legal", "commander": "not_legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "not_legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "4c8bc76a-05a5-43db-aaf0-34deb347b871", "set": "unh", "set_name": "Unhinged", "set_type": "funny", "set_uri": "https://api.scryfall.com/sets/4c8bc76a-05a5-43db-aaf0-34deb347b871", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aunh&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/unh?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/85cbebbb-7ea4-4140-933f-186cad08697d/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A9e66a867-d502-4630-9d74-830b67712302&unique=prints", "collector_number": "88", "digital": false, "rarity": "common", "flavor_text": "\"Selecting the proper beeble is the key to a good saut\u00e9. The pinker the fur and the heartier the yelp, the more succulent the beeble will be when you pop it in your mouth.\"\n\u2014Asmoranomardicadaistinaculdacar, *The Underworld Cookbook*", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Jeff Miracola", "artist_ids": ["9b465bde-3656-4495-ace4-af4ce29999ed"], "illustration_id": "ff74b3f6-8ed0-4900-ba4a-fac5b75b6d80", "border_color": "silver", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "prices": {"usd": "0.23", "usd_foil": "2.25", "usd_etched": null, "eur": "0.05", "eur_foil": "0.30", "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=74242", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Saut%C3%A9&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Saut%C3%A9&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Saut%C3%A9"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/37922?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Saut%C3%A9&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Saut%C3%A9&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "c030eca0-bc5f-403b-8600-1f295fc85fee", "oracle_id": "ff50d002-834e-4b5e-8db0-b0c8b4efb21f", "multiverse_ids": [15264], "mtgo_id": 12947, "mtgo_foil_id": 12948, "tcgplayer_id": 6238, "cardmarket_id": 10796, "name": "Scent of Cinder", "lang": "en", "released_at": "1999-06-07", "uri": "https://api.scryfall.com/cards/c030eca0-bc5f-403b-8600-1f295fc85fee", "scryfall_uri": "https://scryfall.com/card/uds/96/scent-of-cinder?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/c/0/c030eca0-bc5f-403b-8600-1f295fc85fee.jpg?1562445189", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/0/c030eca0-bc5f-403b-8600-1f295fc85fee.jpg?1562445189", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/c/0/c030eca0-bc5f-403b-8600-1f295fc85fee.jpg?1562445189", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/c/0/c030eca0-bc5f-403b-8600-1f295fc85fee.png?1562445189", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/0/c030eca0-bc5f-403b-8600-1f295fc85fee.jpg?1562445189", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/c/0/c030eca0-bc5f-403b-8600-1f295fc85fee.jpg?1562445189"}, "mana_cost": "{1}{R}", "cmc": 2.0, "type_line": "Sorcery", "oracle_text": "Reveal any number of red cards in your hand. Scent of Cinder deals X damage to any target, where X is the number of cards revealed this way.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "44f17b37-dcf8-4239-baab-1efc00cd3480", "set": "uds", "set_name": "Urza's Destiny", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/44f17b37-dcf8-4239-baab-1efc00cd3480", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Auds&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/uds?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/c030eca0-bc5f-403b-8600-1f295fc85fee/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aff50d002-834e-4b5e-8db0-b0c8b4efb21f&unique=prints", "collector_number": "96", "digital": false, "rarity": "common", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Marc Fishman", "artist_ids": ["d50dd2c3-34ae-4eb1-8948-cb4b38d7e4b9"], "illustration_id": "4a011d0e-8968-45d2-8c19-a0f123f64318", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 20544, "penny_rank": 8790, "prices": {"usd": "0.09", "usd_foil": null, "usd_etched": null, "eur": "0.25", "eur_foil": "2.98", "tix": "0.11"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=15264", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Scent+of+Cinder&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Scent+of+Cinder&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Scent+of+Cinder"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/6238?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Scent+of+Cinder&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/12947?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "d083fcdc-1e1f-4ad3-82d1-11f0b84dd74d", "oracle_id": "ff50d002-834e-4b5e-8db0-b0c8b4efb21f", "multiverse_ids": [], "tcgplayer_id": 21706, "cardmarket_id": 18991, "name": "Scent of Cinder", "lang": "en", "released_at": "1999-08-01", "uri": "https://api.scryfall.com/cards/d083fcdc-1e1f-4ad3-82d1-11f0b84dd74d", "scryfall_uri": "https://scryfall.com/card/pmei/9/scent-of-cinder?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/d/0/d083fcdc-1e1f-4ad3-82d1-11f0b84dd74d.jpg?1562934001", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/0/d083fcdc-1e1f-4ad3-82d1-11f0b84dd74d.jpg?1562934001", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/d/0/d083fcdc-1e1f-4ad3-82d1-11f0b84dd74d.jpg?1562934001", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/d/0/d083fcdc-1e1f-4ad3-82d1-11f0b84dd74d.png?1562934001", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/0/d083fcdc-1e1f-4ad3-82d1-11f0b84dd74d.jpg?1562934001", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/d/0/d083fcdc-1e1f-4ad3-82d1-11f0b84dd74d.jpg?1562934001"}, "mana_cost": "{1}{R}", "cmc": 2.0, "type_line": "Sorcery", "oracle_text": "Reveal any number of red cards in your hand. Scent of Cinder deals X damage to any target, where X is the number of cards revealed this way.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": true, "reprint": true, "variation": false, "set_id": "80b77354-aa37-420c-a9a2-8a0c66989f23", "set": "pmei", "set_name": "Media Inserts", "set_type": "promo", "set_uri": "https://api.scryfall.com/sets/80b77354-aa37-420c-a9a2-8a0c66989f23", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Apmei&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/pmei?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/d083fcdc-1e1f-4ad3-82d1-11f0b84dd74d/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aff50d002-834e-4b5e-8db0-b0c8b4efb21f&unique=prints", "collector_number": "9", "digital": false, "rarity": "common", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Carl Critchlow", "artist_ids": ["17948f16-611a-44b8-8d10-9895a0bdfff1"], "illustration_id": "255e53c0-3610-4c1d-affa-7c4084745a50", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "promo_types": ["mediainsert"], "edhrec_rank": 20544, "penny_rank": 8790, "prices": {"usd": "4.33", "usd_foil": null, "usd_etched": null, "eur": "3.12", "eur_foil": null, "tix": null}, "related_uris": {"tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Scent+of+Cinder&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Scent+of+Cinder&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Scent+of+Cinder"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/21706?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Scent+of+Cinder&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Scent+of+Cinder&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "2a85437f-052e-494c-a9ee-265c4624a409", "oracle_id": "e42fb51e-254a-43ac-ad02-9f0fad0f4c8a", "multiverse_ids": [23077], "mtgo_id": 14611, "mtgo_foil_id": 14612, "tcgplayer_id": 7644, "cardmarket_id": 3638, "name": "Scorching Lava", "lang": "en", "released_at": "2000-10-02", "uri": "https://api.scryfall.com/cards/2a85437f-052e-494c-a9ee-265c4624a409", "scryfall_uri": "https://scryfall.com/card/inv/164/scorching-lava?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/2/a/2a85437f-052e-494c-a9ee-265c4624a409.jpg?1562903659", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/a/2a85437f-052e-494c-a9ee-265c4624a409.jpg?1562903659", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/2/a/2a85437f-052e-494c-a9ee-265c4624a409.jpg?1562903659", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/2/a/2a85437f-052e-494c-a9ee-265c4624a409.png?1562903659", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/a/2a85437f-052e-494c-a9ee-265c4624a409.jpg?1562903659", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/2/a/2a85437f-052e-494c-a9ee-265c4624a409.jpg?1562903659"}, "mana_cost": "{1}{R}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Kicker {R} (You may pay an additional {R} as you cast this spell.)\nScorching Lava deals 2 damage to any target. If this spell was kicked, that creature can't be regenerated this turn and if it would die this turn, exile it instead.", "colors": ["R"], "color_identity": ["R"], "keywords": ["Kicker"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "b9ae5e02-7726-47ca-b5e4-5ec402b41cd1", "set": "inv", "set_name": "Invasion", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/b9ae5e02-7726-47ca-b5e4-5ec402b41cd1", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ainv&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/inv?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/2a85437f-052e-494c-a9ee-265c4624a409/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ae42fb51e-254a-43ac-ad02-9f0fad0f4c8a&unique=prints", "collector_number": "164", "digital": false, "rarity": "common", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Mark Tedin", "artist_ids": ["9ee9a9cc-c09e-486f-918b-69f80cbc4188"], "illustration_id": "d233da42-94fc-4961-b9c4-cc1babf65d98", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 13682, "penny_rank": 12276, "prices": {"usd": "0.10", "usd_foil": "0.66", "usd_etched": null, "eur": "0.02", "eur_foil": "0.25", "tix": "0.06"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=23077", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Scorching+Lava&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Scorching+Lava&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Scorching+Lava"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/7644?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Scorching+Lava&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/14611?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "0672960b-4cb5-4ed6-ba3c-6b97290e0330", "oracle_id": "02e2dbde-2373-4f29-bd9d-787f1805b061", "multiverse_ids": [30572], "mtgo_id": 16675, "mtgo_foil_id": 16676, "tcgplayer_id": 9494, "cardmarket_id": 2631, "name": "Scorching Missile", "lang": "en", "released_at": "2001-10-01", "uri": "https://api.scryfall.com/cards/0672960b-4cb5-4ed6-ba3c-6b97290e0330", "scryfall_uri": "https://scryfall.com/card/ody/219/scorching-missile?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/0/6/0672960b-4cb5-4ed6-ba3c-6b97290e0330.jpg?1562896294", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/6/0672960b-4cb5-4ed6-ba3c-6b97290e0330.jpg?1562896294", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/0/6/0672960b-4cb5-4ed6-ba3c-6b97290e0330.jpg?1562896294", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/0/6/0672960b-4cb5-4ed6-ba3c-6b97290e0330.png?1562896294", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/6/0672960b-4cb5-4ed6-ba3c-6b97290e0330.jpg?1562896294", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/0/6/0672960b-4cb5-4ed6-ba3c-6b97290e0330.jpg?1562896294"}, "mana_cost": "{3}{R}", "cmc": 4.0, "type_line": "Sorcery", "oracle_text": "Scorching Missile deals 4 damage to target player or planeswalker.\nFlashback {9}{R} (You may cast this card from your graveyard for its flashback cost. Then exile it.)", "colors": ["R"], "color_identity": ["R"], "keywords": ["Flashback"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "b0d90d2d-494a-4224-bfa0-36ce5ee281b1", "set": "ody", "set_name": "Odyssey", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/b0d90d2d-494a-4224-bfa0-36ce5ee281b1", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aody&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ody?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/0672960b-4cb5-4ed6-ba3c-6b97290e0330/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A02e2dbde-2373-4f29-bd9d-787f1805b061&unique=prints", "collector_number": "219", "digital": false, "rarity": "common", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Don Hazeltine", "artist_ids": ["b4117364-73af-47e5-8cf0-901eeea09e01"], "illustration_id": "9cf244b8-eb29-4a2a-9230-d5353b5bf8d6", "border_color": "black", "frame": "1997", "frame_effects": ["tombstone"], "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 22318, "prices": {"usd": "0.13", "usd_foil": "0.53", "usd_etched": null, "eur": "0.25", "eur_foil": "0.25", "tix": "0.06"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=30572", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Scorching+Missile&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Scorching+Missile&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Scorching+Missile"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/9494?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Scorching+Missile&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/16675?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "9e4817bd-68e8-4a85-983a-ee6dda2bbf33", "oracle_id": "9342fbb8-ab35-4895-946d-951ba6a2b067", "multiverse_ids": [4360], "tcgplayer_id": 766, "cardmarket_id": 10139, "name": "Scorching Spear", "lang": "en", "released_at": "1997-05-01", "uri": "https://api.scryfall.com/cards/9e4817bd-68e8-4a85-983a-ee6dda2bbf33", "scryfall_uri": "https://scryfall.com/card/por/148/scorching-spear?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/9/e/9e4817bd-68e8-4a85-983a-ee6dda2bbf33.jpg?1562447352", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/e/9e4817bd-68e8-4a85-983a-ee6dda2bbf33.jpg?1562447352", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/9/e/9e4817bd-68e8-4a85-983a-ee6dda2bbf33.jpg?1562447352", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/9/e/9e4817bd-68e8-4a85-983a-ee6dda2bbf33.png?1562447352", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/e/9e4817bd-68e8-4a85-983a-ee6dda2bbf33.jpg?1562447352", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/9/e/9e4817bd-68e8-4a85-983a-ee6dda2bbf33.jpg?1562447352"}, "mana_cost": "{R}", "cmc": 1.0, "type_line": "Sorcery", "oracle_text": "Scorching Spear deals 1 damage to any target.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "478c47df-5058-4ce6-830e-7e80732b2ca9", "set": "por", "set_name": "Portal", "set_type": "starter", "set_uri": "https://api.scryfall.com/sets/478c47df-5058-4ce6-830e-7e80732b2ca9", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Apor&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/por?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/9e4817bd-68e8-4a85-983a-ee6dda2bbf33/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A9342fbb8-ab35-4895-946d-951ba6a2b067&unique=prints", "collector_number": "148", "digital": false, "rarity": "common", "flavor_text": "Lift your spear as you might lift your glass, and toast your enemy.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Mike Raabe", "artist_ids": ["d29cd67f-30a7-4fb9-a081-36c3d5982442"], "illustration_id": "245cf049-24e5-4142-9f02-f02650c13146", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 21748, "prices": {"usd": "0.27", "usd_foil": null, "usd_etched": null, "eur": "0.07", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=4360", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Scorching+Spear&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Scorching+Spear&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Scorching+Spear"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/766?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Scorching+Spear&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Scorching+Spear&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "d2f11135-e9ce-4e4c-bea7-72a46d326e40", "oracle_id": "26c17025-1123-46d9-a8bd-edbad01c4b6e", "multiverse_ids": [473102], "mtgo_id": 78410, "arena_id": 70287, "tcgplayer_id": 198859, "cardmarket_id": 400289, "name": "Searing Barrage", "lang": "en", "released_at": "2019-10-04", "uri": "https://api.scryfall.com/cards/d2f11135-e9ce-4e4c-bea7-72a46d326e40", "scryfall_uri": "https://scryfall.com/card/eld/140/searing-barrage?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/d/2/d2f11135-e9ce-4e4c-bea7-72a46d326e40.jpg?1572490453", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/2/d2f11135-e9ce-4e4c-bea7-72a46d326e40.jpg?1572490453", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/d/2/d2f11135-e9ce-4e4c-bea7-72a46d326e40.jpg?1572490453", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/d/2/d2f11135-e9ce-4e4c-bea7-72a46d326e40.png?1572490453", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/2/d2f11135-e9ce-4e4c-bea7-72a46d326e40.jpg?1572490453", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/d/2/d2f11135-e9ce-4e4c-bea7-72a46d326e40.jpg?1572490453"}, "mana_cost": "{4}{R}", "cmc": 5.0, "type_line": "Instant", "oracle_text": "Searing Barrage deals 5 damage to target creature.\nAdamant \u2014 If at least three red mana was spent to cast this spell, Searing Barrage deals 3 damage to that creature's controller.", "colors": ["R"], "color_identity": ["R"], "keywords": ["Adamant"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "a90a7b2f-9dd8-4fc7-9f7d-8ea2797ec782", "set": "eld", "set_name": "Throne of Eldraine", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/a90a7b2f-9dd8-4fc7-9f7d-8ea2797ec782", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aeld&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/eld?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/d2f11135-e9ce-4e4c-bea7-72a46d326e40/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A26c17025-1123-46d9-a8bd-edbad01c4b6e&unique=prints", "collector_number": "140", "digital": false, "rarity": "common", "flavor_text": "It emerged from the coldest depths of Lochmere only to face the fires of Irencrag.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Allen Williams", "artist_ids": ["8a56d854-b424-45ec-9262-e993a382a961"], "illustration_id": "c0594b35-e663-4f71-b9b8-dd28e1d5c19e", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 16360, "preview": {"source": "GameSpot", "source_uri": "https://www.gamespot.com/articles/new-magic-the-gathering-throne-of-eldraine-cards-p/1100-6469732/", "previewed_at": "2019-09-10"}, "prices": {"usd": "0.01", "usd_foil": "0.04", "usd_etched": null, "eur": "0.20", "eur_foil": "0.05", "tix": "0.04"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=473102", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Searing+Barrage&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Searing+Barrage&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Searing+Barrage"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/198859?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Searing+Barrage&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/78410?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "301f13dd-39b8-4a93-9c05-3dc4fa1f1c75", "oracle_id": "74b08a70-b0bb-4340-98a0-b1d5b7c9d2cc", "multiverse_ids": [193982], "mtgo_id": 35559, "mtgo_foil_id": 35560, "tcgplayer_id": 34429, "cardmarket_id": 22240, "name": "Searing Blaze", "lang": "en", "released_at": "2010-02-05", "uri": "https://api.scryfall.com/cards/301f13dd-39b8-4a93-9c05-3dc4fa1f1c75", "scryfall_uri": "https://scryfall.com/card/wwk/90/searing-blaze?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/3/0/301f13dd-39b8-4a93-9c05-3dc4fa1f1c75.jpg?1562284687", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/0/301f13dd-39b8-4a93-9c05-3dc4fa1f1c75.jpg?1562284687", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/3/0/301f13dd-39b8-4a93-9c05-3dc4fa1f1c75.jpg?1562284687", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/3/0/301f13dd-39b8-4a93-9c05-3dc4fa1f1c75.png?1562284687", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/0/301f13dd-39b8-4a93-9c05-3dc4fa1f1c75.jpg?1562284687", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/3/0/301f13dd-39b8-4a93-9c05-3dc4fa1f1c75.jpg?1562284687"}, "mana_cost": "{R}{R}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Searing Blaze deals 1 damage to target player or planeswalker and 1 damage to target creature that player or that planeswalker's controller controls.\nLandfall \u2014 If you had a land enter the battlefield under your control this turn, Searing Blaze deals 3 damage to that player or planeswalker and 3 damage to that creature instead.", "colors": ["R"], "color_identity": ["R"], "keywords": ["Landfall"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "2f248ce6-c2a5-4c6f-a2be-0c593fbe173c", "set": "wwk", "set_name": "Worldwake", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/2f248ce6-c2a5-4c6f-a2be-0c593fbe173c", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Awwk&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/wwk?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/301f13dd-39b8-4a93-9c05-3dc4fa1f1c75/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A74b08a70-b0bb-4340-98a0-b1d5b7c9d2cc&unique=prints", "collector_number": "90", "digital": false, "rarity": "common", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "James Paick", "artist_ids": ["1a7be0a2-d8ac-45c7-b0a0-eb0886f47b5f"], "illustration_id": "53d96dba-c78a-4ad2-ac52-46c6d3804bf1", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 12036, "prices": {"usd": "2.28", "usd_foil": "12.54", "usd_etched": null, "eur": "2.30", "eur_foil": "8.95", "tix": "2.52"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=193982", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Searing+Blaze&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Searing+Blaze&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Searing+Blaze"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/34429?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Searing+Blaze&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/35559?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "974c599b-170e-4948-b741-47f61c769b6e", "oracle_id": "74b08a70-b0bb-4340-98a0-b1d5b7c9d2cc", "multiverse_ids": [], "tcgplayer_id": 39333, "cardmarket_id": 245499, "name": "Searing Blaze", "lang": "en", "released_at": "2011-01-01", "uri": "https://api.scryfall.com/cards/974c599b-170e-4948-b741-47f61c769b6e", "scryfall_uri": "https://scryfall.com/card/p11/5/searing-blaze?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/9/7/974c599b-170e-4948-b741-47f61c769b6e.jpg?1561757630", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/7/974c599b-170e-4948-b741-47f61c769b6e.jpg?1561757630", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/9/7/974c599b-170e-4948-b741-47f61c769b6e.jpg?1561757630", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/9/7/974c599b-170e-4948-b741-47f61c769b6e.png?1561757630", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/7/974c599b-170e-4948-b741-47f61c769b6e.jpg?1561757630", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/9/7/974c599b-170e-4948-b741-47f61c769b6e.jpg?1561757630"}, "mana_cost": "{R}{R}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Searing Blaze deals 1 damage to target player or planeswalker and 1 damage to target creature that player or that planeswalker's controller controls.\nLandfall \u2014 If you had a land enter the battlefield under your control this turn, Searing Blaze deals 3 damage to that player or planeswalker and 3 damage to that creature instead.", "colors": ["R"], "color_identity": ["R"], "keywords": ["Landfall"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": true, "reprint": true, "variation": false, "set_id": "ba0f80c9-7a21-425b-8a02-cb17c2a50e36", "set": "p11", "set_name": "Magic Player Rewards 2011", "set_type": "promo", "set_uri": "https://api.scryfall.com/sets/ba0f80c9-7a21-425b-8a02-cb17c2a50e36", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ap11&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/p11?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/974c599b-170e-4948-b741-47f61c769b6e/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A74b08a70-b0bb-4340-98a0-b1d5b7c9d2cc&unique=prints", "collector_number": "5", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Jaime Jones", "artist_ids": ["92f6c2c1-fa57-4b52-99c4-0fd866c13dc9"], "illustration_id": "b24457b8-7ed8-46d5-b468-d36a24639f90", "border_color": "black", "frame": "2003", "full_art": true, "textless": true, "booster": false, "story_spotlight": false, "promo_types": ["playerrewards"], "edhrec_rank": 12036, "prices": {"usd": "11.50", "usd_foil": null, "usd_etched": null, "eur": "5.99", "eur_foil": null, "tix": null}, "related_uris": {"tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Searing+Blaze&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Searing+Blaze&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Searing+Blaze"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/39333?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Searing+Blaze&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Searing+Blaze&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "bb43fd07-d281-447d-88bf-c53498c2cf20", "oracle_id": "902b82fd-bb18-4833-b427-af8c9751f870", "multiverse_ids": [378483], "mtgo_id": 51833, "mtgo_foil_id": 51834, "tcgplayer_id": 78837, "cardmarket_id": 265611, "name": "Searing Blood", "lang": "en", "released_at": "2014-02-07", "uri": "https://api.scryfall.com/cards/bb43fd07-d281-447d-88bf-c53498c2cf20", "scryfall_uri": "https://scryfall.com/card/bng/111/searing-blood?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/b/b/bb43fd07-d281-447d-88bf-c53498c2cf20.jpg?1593092367", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/b/bb43fd07-d281-447d-88bf-c53498c2cf20.jpg?1593092367", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/b/b/bb43fd07-d281-447d-88bf-c53498c2cf20.jpg?1593092367", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/b/b/bb43fd07-d281-447d-88bf-c53498c2cf20.png?1593092367", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/b/bb43fd07-d281-447d-88bf-c53498c2cf20.jpg?1593092367", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/b/b/bb43fd07-d281-447d-88bf-c53498c2cf20.jpg?1593092367"}, "mana_cost": "{R}{R}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Searing Blood deals 2 damage to target creature. When that creature dies this turn, Searing Blood deals 3 damage to the creature's controller.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "50a80fe4-a757-408f-ad23-52c5cc5f45cc", "set": "bng", "set_name": "Born of the Gods", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/50a80fe4-a757-408f-ad23-52c5cc5f45cc", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Abng&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/bng?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/bb43fd07-d281-447d-88bf-c53498c2cf20/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A902b82fd-bb18-4833-b427-af8c9751f870&unique=prints", "collector_number": "111", "digital": false, "rarity": "uncommon", "flavor_text": "Purphoros's blessing: sometimes a boon, sometimes a bane. Always ablaze.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Daniel Ljunggren", "artist_ids": ["0fbd4798-76eb-46d5-a5d4-1e3a25870e34"], "illustration_id": "48f0b07f-7503-4ba9-9b29-1f35ad0f27f3", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 12196, "prices": {"usd": "0.24", "usd_foil": "4.97", "usd_etched": null, "eur": "0.94", "eur_foil": "5.49", "tix": "0.07"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=378483", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Searing+Blood&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Searing+Blood&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Searing+Blood"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/78837?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Searing+Blood&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/51833?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "d83db110-42e7-4823-a686-b83205faf503", "oracle_id": "d9cb5ae8-5594-46c4-9b77-4f9c6402bcd2", "multiverse_ids": [35386], "mtgo_id": 18045, "mtgo_foil_id": 18046, "tcgplayer_id": 10526, "cardmarket_id": 1856, "name": "Searing Flesh", "lang": "en", "released_at": "2002-10-07", "uri": "https://api.scryfall.com/cards/d83db110-42e7-4823-a686-b83205faf503", "scryfall_uri": "https://scryfall.com/card/ons/225/searing-flesh?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/d/8/d83db110-42e7-4823-a686-b83205faf503.jpg?1562946564", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/8/d83db110-42e7-4823-a686-b83205faf503.jpg?1562946564", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/d/8/d83db110-42e7-4823-a686-b83205faf503.jpg?1562946564", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/d/8/d83db110-42e7-4823-a686-b83205faf503.png?1562946564", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/8/d83db110-42e7-4823-a686-b83205faf503.jpg?1562946564", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/d/8/d83db110-42e7-4823-a686-b83205faf503.jpg?1562946564"}, "mana_cost": "{6}{R}", "cmc": 7.0, "type_line": "Sorcery", "oracle_text": "Searing Flesh deals 7 damage to target opponent or planeswalker.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "914a6c6d-cb3b-45e8-a2db-9978a2339faf", "set": "ons", "set_name": "Onslaught", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/914a6c6d-cb3b-45e8-a2db-9978a2339faf", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aons&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ons?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/d83db110-42e7-4823-a686-b83205faf503/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ad9cb5ae8-5594-46c4-9b77-4f9c6402bcd2&unique=prints", "collector_number": "225", "digital": false, "rarity": "uncommon", "flavor_text": "Zemoo found out the hard way that \"inflammable\" and \"flammable\" mean the same thing.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Pete Venters", "artist_ids": ["d54c4a1a-c0c5-4834-84db-125d341f3ad8"], "illustration_id": "4b4dcd4b-faca-4520-8229-6643afc12295", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 21551, "penny_rank": 12836, "prices": {"usd": "0.21", "usd_foil": "0.35", "usd_etched": null, "eur": "0.02", "eur_foil": "0.20", "tix": "0.04"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=35386", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Searing+Flesh&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Searing+Flesh&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Searing+Flesh"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/10526?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Searing+Flesh&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/18045?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "11a94b7c-0216-473c-87a6-71e5a64d7799", "oracle_id": "aafd44c1-74a9-4aa7-a4a2-67eb39a07478", "multiverse_ids": [249684], "mtgo_id": 45526, "mtgo_foil_id": 45527, "tcgplayer_id": 59720, "cardmarket_id": 256395, "name": "Searing Spear", "lang": "en", "released_at": "2012-07-13", "uri": "https://api.scryfall.com/cards/11a94b7c-0216-473c-87a6-71e5a64d7799", "scryfall_uri": "https://scryfall.com/card/m13/147/searing-spear?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/1/1/11a94b7c-0216-473c-87a6-71e5a64d7799.jpg?1562550529", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/1/11a94b7c-0216-473c-87a6-71e5a64d7799.jpg?1562550529", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/1/1/11a94b7c-0216-473c-87a6-71e5a64d7799.jpg?1562550529", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/1/1/11a94b7c-0216-473c-87a6-71e5a64d7799.png?1562550529", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/1/11a94b7c-0216-473c-87a6-71e5a64d7799.jpg?1562550529", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/1/1/11a94b7c-0216-473c-87a6-71e5a64d7799.jpg?1562550529"}, "mana_cost": "{1}{R}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Searing Spear deals 3 damage to any target.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "f9b0c6f4-8a4f-4f36-ad3c-e1e16fb8535d", "set": "m13", "set_name": "Magic 2013", "set_type": "core", "set_uri": "https://api.scryfall.com/sets/f9b0c6f4-8a4f-4f36-ad3c-e1e16fb8535d", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Am13&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/m13?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/11a94b7c-0216-473c-87a6-71e5a64d7799/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aaafd44c1-74a9-4aa7-a4a2-67eb39a07478&unique=prints", "collector_number": "147", "digital": false, "rarity": "common", "flavor_text": "Sometimes you die a glorious death with your sword held high. Sometimes you're just target practice.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Chris Rahn", "artist_ids": ["7742047e-0f80-4c0f-a530-d07460165e86"], "illustration_id": "7a4ce3b3-31b4-4e53-a16d-687f23795ae6", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 10196, "penny_rank": 455, "prices": {"usd": "0.18", "usd_foil": "0.54", "usd_etched": null, "eur": "0.15", "eur_foil": "4.00", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=249684", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Searing+Spear&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Searing+Spear&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Searing+Spear"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/59720?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Searing+Spear&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/45526?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "e574f1f8-ca61-43b4-8230-2636709a3855", "oracle_id": "aafd44c1-74a9-4aa7-a4a2-67eb39a07478", "multiverse_ids": [], "tcgplayer_id": 70917, "cardmarket_id": 259856, "name": "Searing Spear", "lang": "en", "released_at": "2013-01-01", "uri": "https://api.scryfall.com/cards/e574f1f8-ca61-43b4-8230-2636709a3855", "scryfall_uri": "https://scryfall.com/card/f13/1/searing-spear?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/e/5/e574f1f8-ca61-43b4-8230-2636709a3855.jpg?1562497262", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/5/e574f1f8-ca61-43b4-8230-2636709a3855.jpg?1562497262", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/e/5/e574f1f8-ca61-43b4-8230-2636709a3855.jpg?1562497262", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/e/5/e574f1f8-ca61-43b4-8230-2636709a3855.png?1562497262", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/5/e574f1f8-ca61-43b4-8230-2636709a3855.jpg?1562497262", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/e/5/e574f1f8-ca61-43b4-8230-2636709a3855.jpg?1562497262"}, "mana_cost": "{1}{R}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Searing Spear deals 3 damage to any target.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": true, "nonfoil": false, "finishes": ["foil"], "oversized": false, "promo": true, "reprint": true, "variation": false, "set_id": "4f0f5416-2f39-4339-8b9a-5454d94a4ca6", "set": "f13", "set_name": "Friday Night Magic 2013", "set_type": "promo", "set_uri": "https://api.scryfall.com/sets/4f0f5416-2f39-4339-8b9a-5454d94a4ca6", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Af13&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/f13?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/e574f1f8-ca61-43b4-8230-2636709a3855/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aaafd44c1-74a9-4aa7-a4a2-67eb39a07478&unique=prints", "collector_number": "1", "digital": false, "rarity": "rare", "watermark": "wotc", "flavor_text": "Sometimes you die a glorious death with your sword held high. Sometimes you're just target practice.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Christopher Moeller", "artist_ids": ["21e10012-06ae-44f2-b38d-3824dd2e73d4"], "illustration_id": "87b8f09e-456e-4680-bb01-d029b5f293bf", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "promo_types": ["tourney", "fnm"], "edhrec_rank": 10196, "penny_rank": 455, "prices": {"usd": null, "usd_foil": "0.88", "usd_etched": null, "eur": null, "eur_foil": "0.14", "tix": null}, "related_uris": {"tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Searing+Spear&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Searing+Spear&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Searing+Spear"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/70917?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Searing+Spear&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Searing+Spear&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "e9091667-d5a8-4978-9023-032ff65f9642", "oracle_id": "1cd9a3ba-a115-4e59-983d-605e4435f3a8", "multiverse_ids": [4843], "mtgo_id": 10075, "mtgo_foil_id": 10076, "tcgplayer_id": 5716, "cardmarket_id": 8936, "name": "Searing Touch", "lang": "en", "released_at": "1997-10-14", "uri": "https://api.scryfall.com/cards/e9091667-d5a8-4978-9023-032ff65f9642", "scryfall_uri": "https://scryfall.com/card/tmp/201/searing-touch?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/e/9/e9091667-d5a8-4978-9023-032ff65f9642.jpg?1562057345", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/9/e9091667-d5a8-4978-9023-032ff65f9642.jpg?1562057345", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/e/9/e9091667-d5a8-4978-9023-032ff65f9642.jpg?1562057345", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/e/9/e9091667-d5a8-4978-9023-032ff65f9642.png?1562057345", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/9/e9091667-d5a8-4978-9023-032ff65f9642.jpg?1562057345", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/e/9/e9091667-d5a8-4978-9023-032ff65f9642.jpg?1562057345"}, "mana_cost": "{R}", "cmc": 1.0, "type_line": "Instant", "oracle_text": "Buyback {4} (You may pay an additional {4} as you cast this spell. If you do, put this card into your hand as it resolves.)\nSearing Touch deals 1 damage to any target.", "colors": ["R"], "color_identity": ["R"], "keywords": ["Buyback"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "10df3a67-178e-4363-8668-34f0e6edf2a7", "set": "tmp", "set_name": "Tempest", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/10df3a67-178e-4363-8668-34f0e6edf2a7", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Atmp&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/tmp?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/e9091667-d5a8-4978-9023-032ff65f9642/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A1cd9a3ba-a115-4e59-983d-605e4435f3a8&unique=prints", "collector_number": "201", "digital": false, "rarity": "uncommon", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "D. Alexander Gregory", "artist_ids": ["38433e15-f0f5-4223-a985-2d13c4aa0922"], "illustration_id": "8c572ab1-7a90-4c02-8f89-871606c054a4", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 11227, "penny_rank": 9042, "prices": {"usd": "0.25", "usd_foil": null, "usd_etched": null, "eur": "0.29", "eur_foil": null, "tix": "0.11"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=4843", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Searing+Touch&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Searing+Touch&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Searing+Touch"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/5716?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Searing+Touch&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/10075?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "7b761f97-3690-497a-b6ab-c71f61b8e841", "oracle_id": "b196045d-ece1-46ac-a647-b65f04225c10", "multiverse_ids": [24650], "mtgo_id": 14251, "mtgo_foil_id": 14252, "tcgplayer_id": 7367, "cardmarket_id": 3997, "name": "Searing Wind", "lang": "en", "released_at": "2000-06-05", "uri": "https://api.scryfall.com/cards/7b761f97-3690-497a-b6ab-c71f61b8e841", "scryfall_uri": "https://scryfall.com/card/pcy/103/searing-wind?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/7/b/7b761f97-3690-497a-b6ab-c71f61b8e841.jpg?1562917793", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/b/7b761f97-3690-497a-b6ab-c71f61b8e841.jpg?1562917793", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/7/b/7b761f97-3690-497a-b6ab-c71f61b8e841.jpg?1562917793", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/7/b/7b761f97-3690-497a-b6ab-c71f61b8e841.png?1562917793", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/b/7b761f97-3690-497a-b6ab-c71f61b8e841.jpg?1562917793", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/7/b/7b761f97-3690-497a-b6ab-c71f61b8e841.jpg?1562917793"}, "mana_cost": "{8}{R}", "cmc": 9.0, "type_line": "Instant", "oracle_text": "Searing Wind deals 10 damage to any target.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "c233bd36-57c0-4aa2-ae6c-7aeabfb4e3ce", "set": "pcy", "set_name": "Prophecy", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/c233bd36-57c0-4aa2-ae6c-7aeabfb4e3ce", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Apcy&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/pcy?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/7b761f97-3690-497a-b6ab-c71f61b8e841/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ab196045d-ece1-46ac-a647-b65f04225c10&unique=prints", "collector_number": "103", "digital": false, "rarity": "rare", "flavor_text": "\"The first wind of ascension is Forger, burning away impurity.\"\n\u2014*Keld Triumphant*", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "John Matson", "artist_ids": ["a1685587-4b55-446b-b420-c37b202ed3f1"], "illustration_id": "079bb860-057a-4d22-9d7a-20b216e022e3", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 13894, "penny_rank": 5652, "prices": {"usd": "0.54", "usd_foil": "9.73", "usd_etched": null, "eur": "0.05", "eur_foil": "22.00", "tix": "0.13"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=24650", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Searing+Wind&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Searing+Wind&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Searing+Wind"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/7367?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Searing+Wind&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/14251?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "e55b8ffb-c2e4-4676-9051-ff6c686cad0b", "oracle_id": "6a56e2ef-75dd-47d5-b61c-11faaba8cd9a", "multiverse_ids": [548465], "mtgo_id": 97254, "arena_id": 79592, "tcgplayer_id": 262816, "cardmarket_id": 608247, "name": "Seismic Wave", "lang": "en", "released_at": "2022-02-18", "uri": "https://api.scryfall.com/cards/e55b8ffb-c2e4-4676-9051-ff6c686cad0b", "scryfall_uri": "https://scryfall.com/card/neo/161/seismic-wave?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/e/5/e55b8ffb-c2e4-4676-9051-ff6c686cad0b.jpg?1654567822", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/5/e55b8ffb-c2e4-4676-9051-ff6c686cad0b.jpg?1654567822", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/e/5/e55b8ffb-c2e4-4676-9051-ff6c686cad0b.jpg?1654567822", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/e/5/e55b8ffb-c2e4-4676-9051-ff6c686cad0b.png?1654567822", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/5/e55b8ffb-c2e4-4676-9051-ff6c686cad0b.jpg?1654567822", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/e/5/e55b8ffb-c2e4-4676-9051-ff6c686cad0b.jpg?1654567822"}, "mana_cost": "{2}{R}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Seismic Wave deals 2 damage to any target and 1 damage to each nonartifact creature target opponent controls.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo", "arena"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "59a2059f-5482-433f-8761-eb2e17859b71", "set": "neo", "set_name": "Kamigawa: Neon Dynasty", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/59a2059f-5482-433f-8761-eb2e17859b71", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aneo&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/neo?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/e55b8ffb-c2e4-4676-9051-ff6c686cad0b/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A6a56e2ef-75dd-47d5-b61c-11faaba8cd9a&unique=prints", "collector_number": "161", "digital": false, "rarity": "uncommon", "flavor_text": "\"Step carefully, Imperial. Even the earth rises against you.\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Aaron J. Riley", "artist_ids": ["f21b412c-aef5-4d15-88be-4f40615acde3"], "illustration_id": "9b56e683-6fda-490a-9898-33eb014ca89e", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 14510, "preview": {"source": "J\u00fapiter Juegos", "source_uri": "https://twitter.com/JupiterJuegos/status/1489214702269906950", "previewed_at": "2022-02-03"}, "prices": {"usd": "0.05", "usd_foil": "0.05", "usd_etched": null, "eur": "0.08", "eur_foil": "0.14", "tix": "0.01"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=548465", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Seismic+Wave&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Seismic+Wave&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Seismic+Wave"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/262816?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Seismic+Wave&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/97254?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "43db4810-078e-487a-afef-57cbc1db0cc7", "oracle_id": "3d19ab38-fb32-4f2b-b68c-28db4a6864c6", "multiverse_ids": [152837], "mtgo_id": 29098, "mtgo_foil_id": 29099, "tcgplayer_id": 18059, "cardmarket_id": 18932, "name": "Shard Volley", "lang": "en", "released_at": "2008-02-01", "uri": "https://api.scryfall.com/cards/43db4810-078e-487a-afef-57cbc1db0cc7", "scryfall_uri": "https://scryfall.com/card/mor/103/shard-volley?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/4/3/43db4810-078e-487a-afef-57cbc1db0cc7.jpg?1562878159", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/3/43db4810-078e-487a-afef-57cbc1db0cc7.jpg?1562878159", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/4/3/43db4810-078e-487a-afef-57cbc1db0cc7.jpg?1562878159", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/4/3/43db4810-078e-487a-afef-57cbc1db0cc7.png?1562878159", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/3/43db4810-078e-487a-afef-57cbc1db0cc7.jpg?1562878159", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/4/3/43db4810-078e-487a-afef-57cbc1db0cc7.jpg?1562878159"}, "mana_cost": "{R}", "cmc": 1.0, "type_line": "Instant", "oracle_text": "As an additional cost to cast this spell, sacrifice a land.\nShard Volley deals 3 damage to any target.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "c41550df-7b41-41a3-85ab-8612eb2f168f", "set": "mor", "set_name": "Morningtide", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/c41550df-7b41-41a3-85ab-8612eb2f168f", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Amor&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/mor?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/43db4810-078e-487a-afef-57cbc1db0cc7/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A3d19ab38-fb32-4f2b-b68c-28db4a6864c6&unique=prints", "collector_number": "103", "digital": false, "rarity": "common", "flavor_text": "\"Let the mountain's teeth pierce our oppressors.\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Franz Vohwinkel", "artist_ids": ["3a243c17-3baa-4b53-9599-645311cd7d3d"], "illustration_id": "b4e13e62-2e62-4530-8385-a2c7e922e138", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 16310, "penny_rank": 820, "prices": {"usd": "0.32", "usd_foil": "6.09", "usd_etched": null, "eur": "0.37", "eur_foil": "2.20", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=152837", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Shard+Volley&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Shard+Volley&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Shard+Volley"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/18059?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Shard+Volley&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/29098?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "00365412-41db-427c-9109-8f69c17c326d", "oracle_id": "a9d288b8-cdc1-4e55-a0c9-d6edfc95e65d", "multiverse_ids": [423765], "mtgo_id": 62923, "mtgo_foil_id": 62924, "tcgplayer_id": 126437, "cardmarket_id": 294825, "name": "Shock", "lang": "en", "released_at": "2017-01-20", "uri": "https://api.scryfall.com/cards/00365412-41db-427c-9109-8f69c17c326d", "scryfall_uri": "https://scryfall.com/card/aer/98/shock?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/0/0/00365412-41db-427c-9109-8f69c17c326d.jpg?1576381909", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/0/00365412-41db-427c-9109-8f69c17c326d.jpg?1576381909", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/0/0/00365412-41db-427c-9109-8f69c17c326d.jpg?1576381909", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/0/0/00365412-41db-427c-9109-8f69c17c326d.png?1576381909", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/0/00365412-41db-427c-9109-8f69c17c326d.jpg?1576381909", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/0/0/00365412-41db-427c-9109-8f69c17c326d.jpg?1576381909"}, "mana_cost": "{R}", "cmc": 1.0, "type_line": "Instant", "oracle_text": "Shock deals 2 damage to any target.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "a4a0db50-8826-4e73-833c-3fd934375f96", "set": "aer", "set_name": "Aether Revolt", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/a4a0db50-8826-4e73-833c-3fd934375f96", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aaer&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/aer?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/00365412-41db-427c-9109-8f69c17c326d/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aa9d288b8-cdc1-4e55-a0c9-d6edfc95e65d&unique=prints", "collector_number": "98", "digital": false, "rarity": "common", "flavor_text": "The tools of invention became the weapons of revolution.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Jason Rainville", "artist_ids": ["6ed7e669-579b-443d-b223-e5cbcb2a7483"], "illustration_id": "167dac35-21f6-4174-b496-4b66ffd980b1", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 2971, "penny_rank": 1077, "prices": {"usd": "0.04", "usd_foil": "0.19", "usd_etched": null, "eur": "0.01", "eur_foil": "0.29", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=423765", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Shock&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Shock&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Shock"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/126437?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Shock&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/62923?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "334ad39a-4088-4530-8f3c-d34e7cc99fae", "oracle_id": "a9d288b8-cdc1-4e55-a0c9-d6edfc95e65d", "multiverse_ids": [129732], "mtgo_id": 27012, "mtgo_foil_id": 27013, "tcgplayer_id": 15311, "cardmarket_id": 16396, "name": "Shock", "lang": "en", "released_at": "2007-07-13", "uri": "https://api.scryfall.com/cards/334ad39a-4088-4530-8f3c-d34e7cc99fae", "scryfall_uri": "https://scryfall.com/card/10e/232/shock?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/3/3/334ad39a-4088-4530-8f3c-d34e7cc99fae.jpg?1562545881", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/3/334ad39a-4088-4530-8f3c-d34e7cc99fae.jpg?1562545881", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/3/3/334ad39a-4088-4530-8f3c-d34e7cc99fae.jpg?1562545881", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/3/3/334ad39a-4088-4530-8f3c-d34e7cc99fae.png?1562545881", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/3/334ad39a-4088-4530-8f3c-d34e7cc99fae.jpg?1562545881", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/3/3/334ad39a-4088-4530-8f3c-d34e7cc99fae.jpg?1562545881"}, "mana_cost": "{R}", "cmc": 1.0, "type_line": "Instant", "oracle_text": "Shock deals 2 damage to any target.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "a66a6124-0d81-488d-b080-91f5ba7fbad0", "set": "10e", "set_name": "Tenth Edition", "set_type": "core", "set_uri": "https://api.scryfall.com/sets/a66a6124-0d81-488d-b080-91f5ba7fbad0", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3A10e&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/10e?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/334ad39a-4088-4530-8f3c-d34e7cc99fae/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aa9d288b8-cdc1-4e55-a0c9-d6edfc95e65d&unique=prints", "collector_number": "232", "digital": false, "rarity": "common", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Jon Foster", "artist_ids": ["be1fa767-c905-49b1-afcf-77a8e9ebbd31"], "illustration_id": "1ee7e628-0a58-480f-ba50-9d49852f6df4", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 2971, "penny_rank": 1077, "prices": {"usd": "0.14", "usd_foil": null, "usd_etched": null, "eur": "0.02", "eur_foil": "0.49", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=129732", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Shock&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Shock&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Shock"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/15311?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Shock&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/27012?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "83c92b5d-103c-4719-a850-690a7010291a", "oracle_id": "a9d288b8-cdc1-4e55-a0c9-d6edfc95e65d", "multiverse_ids": [39482], "mtgo_id": 18335, "mtgo_foil_id": 18336, "tcgplayer_id": 10610, "cardmarket_id": 1858, "name": "Shock", "lang": "en", "released_at": "2002-10-07", "uri": "https://api.scryfall.com/cards/83c92b5d-103c-4719-a850-690a7010291a", "scryfall_uri": "https://scryfall.com/card/ons/227/shock?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/8/3/83c92b5d-103c-4719-a850-690a7010291a.jpg?1562926054", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/3/83c92b5d-103c-4719-a850-690a7010291a.jpg?1562926054", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/8/3/83c92b5d-103c-4719-a850-690a7010291a.jpg?1562926054", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/8/3/83c92b5d-103c-4719-a850-690a7010291a.png?1562926054", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/3/83c92b5d-103c-4719-a850-690a7010291a.jpg?1562926054", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/8/3/83c92b5d-103c-4719-a850-690a7010291a.jpg?1562926054"}, "mana_cost": "{R}", "cmc": 1.0, "type_line": "Instant", "oracle_text": "Shock deals 2 damage to any target.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "914a6c6d-cb3b-45e8-a2db-9978a2339faf", "set": "ons", "set_name": "Onslaught", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/914a6c6d-cb3b-45e8-a2db-9978a2339faf", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aons&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ons?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/83c92b5d-103c-4719-a850-690a7010291a/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aa9d288b8-cdc1-4e55-a0c9-d6edfc95e65d&unique=prints", "collector_number": "227", "digital": false, "rarity": "common", "flavor_text": "\"I love lightning! It's my best invention since the rock.\"\n\u2014Toggo, goblin weaponsmith", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Edward P. Beard, Jr.", "artist_ids": ["b845b8ee-aeea-4822-bcf9-7230625ac95c"], "illustration_id": "cc996ffd-2b23-4615-be15-35d599e13e30", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 2971, "penny_rank": 1077, "prices": {"usd": "0.16", "usd_foil": "3.86", "usd_etched": null, "eur": "0.02", "eur_foil": "3.80", "tix": "0.04"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=39482", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Shock&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Shock&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Shock"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/10610?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Shock&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/18335?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "ea653772-a5fe-4416-bef3-fd41133371db", "oracle_id": "a9d288b8-cdc1-4e55-a0c9-d6edfc95e65d", "multiverse_ids": [13074], "mtgo_id": 15836, "mtgo_foil_id": 15837, "tcgplayer_id": 3078, "cardmarket_id": 2981, "name": "Shock", "lang": "en", "released_at": "2001-04-11", "uri": "https://api.scryfall.com/cards/ea653772-a5fe-4416-bef3-fd41133371db", "scryfall_uri": "https://scryfall.com/card/7ed/219/shock?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/e/a/ea653772-a5fe-4416-bef3-fd41133371db.jpg?1562250385", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/a/ea653772-a5fe-4416-bef3-fd41133371db.jpg?1562250385", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/e/a/ea653772-a5fe-4416-bef3-fd41133371db.jpg?1562250385", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/e/a/ea653772-a5fe-4416-bef3-fd41133371db.png?1562250385", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/a/ea653772-a5fe-4416-bef3-fd41133371db.jpg?1562250385", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/e/a/ea653772-a5fe-4416-bef3-fd41133371db.jpg?1562250385"}, "mana_cost": "{R}", "cmc": 1.0, "type_line": "Instant", "oracle_text": "Shock deals 2 damage to any target.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "230f38aa-9511-4db8-a3aa-aeddbc3f7bb9", "set": "7ed", "set_name": "Seventh Edition", "set_type": "core", "set_uri": "https://api.scryfall.com/sets/230f38aa-9511-4db8-a3aa-aeddbc3f7bb9", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3A7ed&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/7ed?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/ea653772-a5fe-4416-bef3-fd41133371db/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aa9d288b8-cdc1-4e55-a0c9-d6edfc95e65d&unique=prints", "collector_number": "219", "digital": false, "rarity": "common", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Mike Sass", "artist_ids": ["155bc2cb-038d-4b1f-9990-6178db1d1a21"], "illustration_id": "dececda9-ecb3-4d32-b7ea-29f59f9a5eee", "border_color": "white", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 2971, "penny_rank": 1077, "prices": {"usd": "0.17", "usd_foil": "12.77", "usd_etched": null, "eur": "0.15", "eur_foil": "8.49", "tix": "0.11"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=13074", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Shock&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Shock&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Shock"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/3078?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Shock&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/15836?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "f9b2ff2a-6dfe-4635-8da2-22d525e82b94", "oracle_id": "a9d288b8-cdc1-4e55-a0c9-d6edfc95e65d", "multiverse_ids": [5143], "mtgo_id": 10241, "mtgo_foil_id": 10242, "tcgplayer_id": 5405, "cardmarket_id": 9183, "name": "Shock", "lang": "en", "released_at": "1998-03-02", "uri": "https://api.scryfall.com/cards/f9b2ff2a-6dfe-4635-8da2-22d525e82b94", "scryfall_uri": "https://scryfall.com/card/sth/98/shock?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/f/9/f9b2ff2a-6dfe-4635-8da2-22d525e82b94.jpg?1562597849", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/9/f9b2ff2a-6dfe-4635-8da2-22d525e82b94.jpg?1562597849", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/f/9/f9b2ff2a-6dfe-4635-8da2-22d525e82b94.jpg?1562597849", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/f/9/f9b2ff2a-6dfe-4635-8da2-22d525e82b94.png?1562597849", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/9/f9b2ff2a-6dfe-4635-8da2-22d525e82b94.jpg?1562597849", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/f/9/f9b2ff2a-6dfe-4635-8da2-22d525e82b94.jpg?1562597849"}, "mana_cost": "{R}", "cmc": 1.0, "type_line": "Instant", "oracle_text": "Shock deals 2 damage to any target.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "5c83396a-d386-4367-926b-571a75b086a3", "set": "sth", "set_name": "Stronghold", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/5c83396a-d386-4367-926b-571a75b086a3", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Asth&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/sth?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/f9b2ff2a-6dfe-4635-8da2-22d525e82b94/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aa9d288b8-cdc1-4e55-a0c9-d6edfc95e65d&unique=prints", "collector_number": "98", "digital": false, "rarity": "common", "flavor_text": "Lightning tethers souls to the world.\n\u2014Kor saying", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Randy Gallegos", "artist_ids": ["a5048cc7-438a-4378-98e4-da99b78e1db0"], "illustration_id": "50db0b2e-d125-4b77-82f6-03944f9b515b", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 2971, "penny_rank": 1077, "prices": {"usd": "0.18", "usd_foil": null, "usd_etched": null, "eur": "0.14", "eur_foil": null, "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=5143", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Shock&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Shock&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Shock"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/5405?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Shock&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/10241?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "60eeb025-704c-4a82-90b2-f91202ae30d9", "oracle_id": "a9d288b8-cdc1-4e55-a0c9-d6edfc95e65d", "multiverse_ids": [517594], "mtgo_id": 89145, "arena_id": 77523, "tcgplayer_id": 235168, "tcgplayer_etched_id": 235169, "cardmarket_id": 556458, "name": "Shock", "lang": "en", "released_at": "2021-04-23", "uri": "https://api.scryfall.com/cards/60eeb025-704c-4a82-90b2-f91202ae30d9", "scryfall_uri": "https://scryfall.com/card/sta/44/shock?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/6/0/60eeb025-704c-4a82-90b2-f91202ae30d9.jpg?1623945691", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/0/60eeb025-704c-4a82-90b2-f91202ae30d9.jpg?1623945691", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/6/0/60eeb025-704c-4a82-90b2-f91202ae30d9.jpg?1623945691", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/6/0/60eeb025-704c-4a82-90b2-f91202ae30d9.png?1623945691", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/0/60eeb025-704c-4a82-90b2-f91202ae30d9.jpg?1623945691", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/6/0/60eeb025-704c-4a82-90b2-f91202ae30d9.jpg?1623945691"}, "mana_cost": "{R}", "cmc": 1.0, "type_line": "Instant", "oracle_text": "Shock deals 2 damage to any target.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil", "etched"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "5064a720-907f-4cb6-a425-766dc1dd7374", "set": "sta", "set_name": "Strixhaven Mystical Archive", "set_type": "masterpiece", "set_uri": "https://api.scryfall.com/sets/5064a720-907f-4cb6-a425-766dc1dd7374", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Asta&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/sta?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/60eeb025-704c-4a82-90b2-f91202ae30d9/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aa9d288b8-cdc1-4e55-a0c9-d6edfc95e65d&unique=prints", "collector_number": "44", "digital": false, "rarity": "uncommon", "flavor_text": "\"To this day, I have no idea if the heavens were obeying him or attacking him.\"\n\u2014Ral Zarek, research notes", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Dominik Mayer", "artist_ids": ["c3439c4a-1fee-4e33-9b89-18dac27ac927"], "illustration_id": "9dfe6314-0fc7-4b7e-b78e-9e77371b927c", "border_color": "borderless", "frame": "2015", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "edhrec_rank": 2971, "penny_rank": 1077, "preview": {"source": "AfterOfficeTTV", "source_uri": "https://twitter.com/AfterTtv/status/1375130186375700482", "previewed_at": "2021-03-26"}, "prices": {"usd": "0.14", "usd_foil": "0.15", "usd_etched": "0.28", "eur": "0.30", "eur_foil": "0.10", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=517594", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Shock&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Shock&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Shock"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/235168?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Shock&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/89145?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "54428999-a83d-40a5-9753-dfefdf705a9e", "oracle_id": "a43500ed-4aa6-49de-8a6e-a1781301b108", "multiverse_ids": [5545], "mtgo_id": 12187, "mtgo_foil_id": 12188, "tcgplayer_id": 7037, "cardmarket_id": 10424, "name": "Shower of Sparks", "lang": "en", "released_at": "1998-10-12", "uri": "https://api.scryfall.com/cards/54428999-a83d-40a5-9753-dfefdf705a9e", "scryfall_uri": "https://scryfall.com/card/usg/217/shower-of-sparks?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/5/4/54428999-a83d-40a5-9753-dfefdf705a9e.jpg?1562912591", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/4/54428999-a83d-40a5-9753-dfefdf705a9e.jpg?1562912591", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/5/4/54428999-a83d-40a5-9753-dfefdf705a9e.jpg?1562912591", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/5/4/54428999-a83d-40a5-9753-dfefdf705a9e.png?1562912591", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/4/54428999-a83d-40a5-9753-dfefdf705a9e.jpg?1562912591", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/5/4/54428999-a83d-40a5-9753-dfefdf705a9e.jpg?1562912591"}, "mana_cost": "{R}", "cmc": 1.0, "type_line": "Instant", "oracle_text": "Shower of Sparks deals 1 damage to target creature and 1 damage to target player or planeswalker.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "c330df40-51db-4caf-bde6-48df6c181001", "set": "usg", "set_name": "Urza's Saga", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/c330df40-51db-4caf-bde6-48df6c181001", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ausg&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/usg?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/54428999-a83d-40a5-9753-dfefdf705a9e/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aa43500ed-4aa6-49de-8a6e-a1781301b108&unique=prints", "collector_number": "217", "digital": false, "rarity": "common", "flavor_text": "The viashino had learned how to operate the rig through trial and error\u2014mostly error.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Christopher Moeller", "artist_ids": ["21e10012-06ae-44f2-b38d-3824dd2e73d4"], "illustration_id": "7945604b-16fa-443d-a310-540175b6d3e8", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 19528, "penny_rank": 12193, "prices": {"usd": "0.10", "usd_foil": null, "usd_etched": null, "eur": "0.05", "eur_foil": null, "tix": "0.09"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=5545", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Shower+of+Sparks&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Shower+of+Sparks&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Shower+of+Sparks"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/7037?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Shower+of+Sparks&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/12187?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "056affab-4e2a-4b68-b864-d879becd3c45", "oracle_id": "d3c623f3-c7c9-47c0-8096-6dee3267baff", "multiverse_ids": [49835], "mtgo_id": 19799, "mtgo_foil_id": 19800, "tcgplayer_id": 11425, "cardmarket_id": 106, "name": "Shrapnel Blast", "lang": "en", "released_at": "2003-10-02", "uri": "https://api.scryfall.com/cards/056affab-4e2a-4b68-b864-d879becd3c45", "scryfall_uri": "https://scryfall.com/card/mrd/106/shrapnel-blast?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/0/5/056affab-4e2a-4b68-b864-d879becd3c45.jpg?1562134669", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/5/056affab-4e2a-4b68-b864-d879becd3c45.jpg?1562134669", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/0/5/056affab-4e2a-4b68-b864-d879becd3c45.jpg?1562134669", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/0/5/056affab-4e2a-4b68-b864-d879becd3c45.png?1562134669", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/5/056affab-4e2a-4b68-b864-d879becd3c45.jpg?1562134669", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/0/5/056affab-4e2a-4b68-b864-d879becd3c45.jpg?1562134669"}, "mana_cost": "{1}{R}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "As an additional cost to cast this spell, sacrifice an artifact.\nShrapnel Blast deals 5 damage to any target.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "1d4f90ba-8d4a-4ee5-bc2f-e2d6bffe4955", "set": "mrd", "set_name": "Mirrodin", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/1d4f90ba-8d4a-4ee5-bc2f-e2d6bffe4955", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Amrd&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/mrd?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/056affab-4e2a-4b68-b864-d879becd3c45/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ad3c623f3-c7c9-47c0-8096-6dee3267baff&unique=prints", "collector_number": "106", "digital": false, "rarity": "uncommon", "flavor_text": "From trinket to trauma.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Dave Dorman", "artist_ids": ["9235458b-ce92-45bd-a430-a72ecd8e6176"], "illustration_id": "5c59afa9-6aa3-4015-8b7f-5314e7b4adda", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 12376, "penny_rank": 1107, "prices": {"usd": "0.33", "usd_foil": "9.55", "usd_etched": null, "eur": "0.20", "eur_foil": "1.13", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=49835", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Shrapnel+Blast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Shrapnel+Blast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Shrapnel+Blast"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/11425?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Shrapnel+Blast&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/19799?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "f8baa9d1-b45d-4947-9eb6-7f580c83a2c3", "oracle_id": "d3c623f3-c7c9-47c0-8096-6dee3267baff", "multiverse_ids": [], "tcgplayer_id": 38154, "cardmarket_id": 19974, "name": "Shrapnel Blast", "lang": "en", "released_at": "2008-01-01", "uri": "https://api.scryfall.com/cards/f8baa9d1-b45d-4947-9eb6-7f580c83a2c3", "scryfall_uri": "https://scryfall.com/card/f08/12/shrapnel-blast?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/f/8/f8baa9d1-b45d-4947-9eb6-7f580c83a2c3.jpg?1562164853", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/8/f8baa9d1-b45d-4947-9eb6-7f580c83a2c3.jpg?1562164853", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/f/8/f8baa9d1-b45d-4947-9eb6-7f580c83a2c3.jpg?1562164853", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/f/8/f8baa9d1-b45d-4947-9eb6-7f580c83a2c3.png?1562164853", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/8/f8baa9d1-b45d-4947-9eb6-7f580c83a2c3.jpg?1562164853", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/f/8/f8baa9d1-b45d-4947-9eb6-7f580c83a2c3.jpg?1562164853"}, "mana_cost": "{1}{R}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "As an additional cost to cast this spell, sacrifice an artifact.\nShrapnel Blast deals 5 damage to any target.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": true, "nonfoil": false, "finishes": ["foil"], "oversized": false, "promo": true, "reprint": true, "variation": false, "set_id": "1d9c28af-5035-4b6d-9944-62b51cfd688d", "set": "f08", "set_name": "Friday Night Magic 2008", "set_type": "promo", "set_uri": "https://api.scryfall.com/sets/1d9c28af-5035-4b6d-9944-62b51cfd688d", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Af08&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/f08?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/f8baa9d1-b45d-4947-9eb6-7f580c83a2c3/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ad3c623f3-c7c9-47c0-8096-6dee3267baff&unique=prints", "collector_number": "12", "digital": false, "rarity": "rare", "watermark": "fnm", "flavor_text": "To the Krark Clan, every artifact has a trigger and a barrel.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Hideaki Takamura", "artist_ids": ["49b6270b-1b28-4e03-b503-522f97dc3a78"], "illustration_id": "0d1d6c7f-f4de-4665-9abd-aee642e16dd9", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "promo_types": ["tourney", "fnm"], "edhrec_rank": 12376, "penny_rank": 1107, "prices": {"usd": null, "usd_foil": "2.37", "usd_etched": null, "eur": null, "eur_foil": "1.99", "tix": null}, "related_uris": {"tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Shrapnel+Blast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Shrapnel+Blast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Shrapnel+Blast"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/38154?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Shrapnel+Blast&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Shrapnel+Blast&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "9396ac77-9f53-46bd-b126-02441a0f5594", "oracle_id": "728d2e30-2f36-4054-81db-29b01e376a82", "multiverse_ids": [35063], "mtgo_id": 17207, "mtgo_foil_id": 17208, "tcgplayer_id": 9744, "cardmarket_id": 2352, "name": "Sickening Dreams", "lang": "en", "released_at": "2002-02-04", "uri": "https://api.scryfall.com/cards/9396ac77-9f53-46bd-b126-02441a0f5594", "scryfall_uri": "https://scryfall.com/card/tor/83/sickening-dreams?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/9/3/9396ac77-9f53-46bd-b126-02441a0f5594.jpg?1562630974", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/3/9396ac77-9f53-46bd-b126-02441a0f5594.jpg?1562630974", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/9/3/9396ac77-9f53-46bd-b126-02441a0f5594.jpg?1562630974", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/9/3/9396ac77-9f53-46bd-b126-02441a0f5594.png?1562630974", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/3/9396ac77-9f53-46bd-b126-02441a0f5594.jpg?1562630974", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/9/3/9396ac77-9f53-46bd-b126-02441a0f5594.jpg?1562630974"}, "mana_cost": "{1}{B}", "cmc": 2.0, "type_line": "Sorcery", "oracle_text": "As an additional cost to cast this spell, discard X cards.\nSickening Dreams deals X damage to each creature and each player.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "e0b3fda1-a6ca-4996-849b-08b463d39484", "set": "tor", "set_name": "Torment", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/e0b3fda1-a6ca-4996-849b-08b463d39484", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ator&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/tor?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/9396ac77-9f53-46bd-b126-02441a0f5594/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A728d2e30-2f36-4054-81db-29b01e376a82&unique=prints", "collector_number": "83", "digital": false, "rarity": "uncommon", "flavor_text": "The Patriarch dreams of vile plague.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Scott M. Fischer", "artist_ids": ["23b0cf43-3e43-44c6-8329-96446eca5bce"], "illustration_id": "965c6834-bb6d-466b-870f-31f43a015077", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 7594, "penny_rank": 5801, "prices": {"usd": "0.33", "usd_foil": "15.18", "usd_etched": null, "eur": "0.38", "eur_foil": "0.90", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=35063", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Sickening+Dreams&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Sickening+Dreams&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Sickening+Dreams"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/9744?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Sickening+Dreams&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/17207?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "dfdfe2a9-1323-4f15-b2ce-d8dd404b914d", "oracle_id": "938cc97f-3908-401e-94cd-32004aff1ef1", "multiverse_ids": [45358], "mtgo_id": 19647, "mtgo_foil_id": 19648, "tcgplayer_id": 11184, "cardmarket_id": 860, "name": "Sizzle", "lang": "en", "released_at": "2003-07-28", "uri": "https://api.scryfall.com/cards/dfdfe2a9-1323-4f15-b2ce-d8dd404b914d", "scryfall_uri": "https://scryfall.com/card/8ed/224/sizzle?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/d/f/dfdfe2a9-1323-4f15-b2ce-d8dd404b914d.jpg?1587913602", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/f/dfdfe2a9-1323-4f15-b2ce-d8dd404b914d.jpg?1587913602", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/d/f/dfdfe2a9-1323-4f15-b2ce-d8dd404b914d.jpg?1587913602", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/d/f/dfdfe2a9-1323-4f15-b2ce-d8dd404b914d.png?1587913602", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/f/dfdfe2a9-1323-4f15-b2ce-d8dd404b914d.jpg?1587913602", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/d/f/dfdfe2a9-1323-4f15-b2ce-d8dd404b914d.jpg?1587913602"}, "mana_cost": "{2}{R}", "cmc": 3.0, "type_line": "Sorcery", "oracle_text": "Sizzle deals 3 damage to each opponent.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "cae8d29d-5979-4d8f-884d-7f3183bcc886", "set": "8ed", "set_name": "Eighth Edition", "set_type": "core", "set_uri": "https://api.scryfall.com/sets/cae8d29d-5979-4d8f-884d-7f3183bcc886", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3A8ed&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/8ed?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/dfdfe2a9-1323-4f15-b2ce-d8dd404b914d/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A938cc97f-3908-401e-94cd-32004aff1ef1&unique=prints", "collector_number": "224", "digital": false, "rarity": "common", "flavor_text": "\"Of course you should fight fire with fire. You should fight *everything* with fire.\"\n\u2014Jaya Ballard, task mage", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Christopher Moeller", "artist_ids": ["21e10012-06ae-44f2-b38d-3824dd2e73d4"], "illustration_id": "9a5f44a0-b614-4010-9f1f-5d4e6023a42e", "border_color": "white", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 8907, "prices": {"usd": "0.22", "usd_foil": "3.79", "usd_etched": null, "eur": "0.10", "eur_foil": "0.18", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=45358", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Sizzle&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Sizzle&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Sizzle"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/11184?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Sizzle&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/19647?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "f1ca1eee-d97d-48c6-84f1-7d1f972c3ca9", "oracle_id": "938cc97f-3908-401e-94cd-32004aff1ef1", "multiverse_ids": [19611], "mtgo_id": 13571, "mtgo_foil_id": 13572, "tcgplayer_id": 6698, "cardmarket_id": 11586, "name": "Sizzle", "lang": "en", "released_at": "1999-10-04", "uri": "https://api.scryfall.com/cards/f1ca1eee-d97d-48c6-84f1-7d1f972c3ca9", "scryfall_uri": "https://scryfall.com/card/mmq/213/sizzle?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/f/1/f1ca1eee-d97d-48c6-84f1-7d1f972c3ca9.jpg?1562383987", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/1/f1ca1eee-d97d-48c6-84f1-7d1f972c3ca9.jpg?1562383987", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/f/1/f1ca1eee-d97d-48c6-84f1-7d1f972c3ca9.jpg?1562383987", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/f/1/f1ca1eee-d97d-48c6-84f1-7d1f972c3ca9.png?1562383987", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/1/f1ca1eee-d97d-48c6-84f1-7d1f972c3ca9.jpg?1562383987", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/f/1/f1ca1eee-d97d-48c6-84f1-7d1f972c3ca9.jpg?1562383987"}, "mana_cost": "{2}{R}", "cmc": 3.0, "type_line": "Sorcery", "oracle_text": "Sizzle deals 3 damage to each opponent.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "385e11a4-492b-4d07-b4a6-a1409ef829b8", "set": "mmq", "set_name": "Mercadian Masques", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/385e11a4-492b-4d07-b4a6-a1409ef829b8", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ammq&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/mmq?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/f1ca1eee-d97d-48c6-84f1-7d1f972c3ca9/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A938cc97f-3908-401e-94cd-32004aff1ef1&unique=prints", "collector_number": "213", "digital": false, "rarity": "common", "flavor_text": "Explosions ripped through the ship overhead, and those unfortunate enough to be directly below scrambled to find cover.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Brian Sn\u00f5ddy", "artist_ids": ["770b4e16-de76-49ed-949f-84e6d2e06d25"], "illustration_id": "a467e3f2-7734-417c-99b1-fc62abe1124e", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 8907, "prices": {"usd": "0.19", "usd_foil": "6.69", "usd_etched": null, "eur": "0.04", "eur_foil": "0.40", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=19611", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Sizzle&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Sizzle&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Sizzle"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/6698?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Sizzle&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/13571?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "97295660-6bea-46ae-9a3b-0fc6abba407f", "oracle_id": "c43b616e-ef87-4c12-810b-a1a3260168fa", "multiverse_ids": [457259], "mtgo_id": 71230, "arena_id": 69243, "tcgplayer_id": 183223, "cardmarket_id": 368393, "name": "Skewer the Critics", "lang": "en", "released_at": "2019-01-25", "uri": "https://api.scryfall.com/cards/97295660-6bea-46ae-9a3b-0fc6abba407f", "scryfall_uri": "https://scryfall.com/card/rna/115/skewer-the-critics?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/9/7/97295660-6bea-46ae-9a3b-0fc6abba407f.jpg?1584831035", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/7/97295660-6bea-46ae-9a3b-0fc6abba407f.jpg?1584831035", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/9/7/97295660-6bea-46ae-9a3b-0fc6abba407f.jpg?1584831035", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/9/7/97295660-6bea-46ae-9a3b-0fc6abba407f.png?1584831035", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/7/97295660-6bea-46ae-9a3b-0fc6abba407f.jpg?1584831035", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/9/7/97295660-6bea-46ae-9a3b-0fc6abba407f.jpg?1584831035"}, "mana_cost": "{2}{R}", "cmc": 3.0, "type_line": "Sorcery", "oracle_text": "Spectacle {R} (You may cast this spell for its spectacle cost rather than its mana cost if an opponent lost life this turn.)\nSkewer the Critics deals 3 damage to any target.", "colors": ["R"], "color_identity": ["R"], "keywords": ["Spectacle"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "97a7fd84-8d89-45a3-b48b-c951f6a3f9f1", "set": "rna", "set_name": "Ravnica Allegiance", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/97a7fd84-8d89-45a3-b48b-c951f6a3f9f1", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Arna&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/rna?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/97295660-6bea-46ae-9a3b-0fc6abba407f/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ac43b616e-ef87-4c12-810b-a1a3260168fa&unique=prints", "collector_number": "115", "digital": false, "rarity": "common", "watermark": "rakdos", "flavor_text": "Going to a Rakdos show is dangerous. Trying to leave early can be fatal.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Heonhwa Choe", "artist_ids": ["ce415f9e-8a20-4d64-bcba-2b1b7e94012e"], "illustration_id": "2a544020-5c51-4717-b3d8-c29a1a2c2317", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 8391, "penny_rank": 377, "preview": {"source": "The Mana Leek", "source_uri": "https://www.youtube.com/watch?v=jZ4INCx0V-g", "previewed_at": "2019-01-09"}, "prices": {"usd": "0.92", "usd_foil": "21.48", "usd_etched": null, "eur": "0.58", "eur_foil": "9.00", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=457259", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Skewer+the+Critics&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Skewer+the+Critics&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Skewer+the+Critics"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/183223?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Skewer+the+Critics&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/71230?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "8068a146-f6fe-46f3-a42e-822fbc3502e6", "oracle_id": "a6fc0b0c-9ba2-47f2-ab92-26fd20d0f86d", "multiverse_ids": [366238], "mtgo_id": 47901, "mtgo_foil_id": 47902, "tcgplayer_id": 67373, "cardmarket_id": 259848, "name": "Skullcrack", "lang": "en", "released_at": "2013-02-01", "uri": "https://api.scryfall.com/cards/8068a146-f6fe-46f3-a42e-822fbc3502e6", "scryfall_uri": "https://scryfall.com/card/gtc/106/skullcrack?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/8/0/8068a146-f6fe-46f3-a42e-822fbc3502e6.jpg?1561833692", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/0/8068a146-f6fe-46f3-a42e-822fbc3502e6.jpg?1561833692", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/8/0/8068a146-f6fe-46f3-a42e-822fbc3502e6.jpg?1561833692", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/8/0/8068a146-f6fe-46f3-a42e-822fbc3502e6.png?1561833692", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/0/8068a146-f6fe-46f3-a42e-822fbc3502e6.jpg?1561833692", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/8/0/8068a146-f6fe-46f3-a42e-822fbc3502e6.jpg?1561833692"}, "mana_cost": "{1}{R}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Players can't gain life this turn. Damage can't be prevented this turn. Skullcrack deals 3 damage to target player or planeswalker.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "035a05f7-e020-4f50-a141-ed16ba704bd2", "set": "gtc", "set_name": "Gatecrash", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/035a05f7-e020-4f50-a141-ed16ba704bd2", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Agtc&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/gtc?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/8068a146-f6fe-46f3-a42e-822fbc3502e6/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aa6fc0b0c-9ba2-47f2-ab92-26fd20d0f86d&unique=prints", "collector_number": "106", "digital": false, "rarity": "uncommon", "flavor_text": "The lawmage's argument was clever and well reasoned, but Blunk's response proved irrefutable.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Dave Kendall", "artist_ids": ["8a5540a8-18c9-4fa9-802c-59d6866114d5"], "illustration_id": "86e5ba66-2a67-487b-bc9a-3b3ac480d61a", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 10121, "prices": {"usd": "1.22", "usd_foil": "19.63", "usd_etched": null, "eur": "1.31", "eur_foil": "11.00", "tix": "0.17"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=366238", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Skullcrack&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Skullcrack&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Skullcrack"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/67373?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Skullcrack&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/47901?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "1c8efb23-bac0-41d2-b4ee-27a6b1fe3134", "oracle_id": "d29d59f1-e00c-4217-8185-2085a4142e3b", "multiverse_ids": [253622], "mtgo_id": 46371, "mtgo_foil_id": 46372, "tcgplayer_id": 66617, "cardmarket_id": 258501, "name": "Skull Rend", "lang": "en", "released_at": "2012-10-05", "uri": "https://api.scryfall.com/cards/1c8efb23-bac0-41d2-b4ee-27a6b1fe3134", "scryfall_uri": "https://scryfall.com/card/rtr/195/skull-rend?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/1/c/1c8efb23-bac0-41d2-b4ee-27a6b1fe3134.jpg?1562783397", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/c/1c8efb23-bac0-41d2-b4ee-27a6b1fe3134.jpg?1562783397", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/1/c/1c8efb23-bac0-41d2-b4ee-27a6b1fe3134.jpg?1562783397", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/1/c/1c8efb23-bac0-41d2-b4ee-27a6b1fe3134.png?1562783397", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/c/1c8efb23-bac0-41d2-b4ee-27a6b1fe3134.jpg?1562783397", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/1/c/1c8efb23-bac0-41d2-b4ee-27a6b1fe3134.jpg?1562783397"}, "mana_cost": "{3}{B}{R}", "cmc": 5.0, "type_line": "Sorcery", "oracle_text": "Skull Rend deals 2 damage to each opponent. Those players each discard two cards at random.", "colors": ["B", "R"], "color_identity": ["B", "R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "80b2374d-c5f1-403e-9772-f6c806fd275e", "set": "rtr", "set_name": "Return to Ravnica", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/80b2374d-c5f1-403e-9772-f6c806fd275e", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Artr&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/rtr?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/1c8efb23-bac0-41d2-b4ee-27a6b1fe3134/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ad29d59f1-e00c-4217-8185-2085a4142e3b&unique=prints", "collector_number": "195", "digital": false, "rarity": "common", "watermark": "rakdos", "flavor_text": "\"We could never accept anyone with a face that pretty or a mind that sane.\"\n\u2014Nyoser, Gore-House ringleader", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Greg Staples", "artist_ids": ["93d65564-bf00-447b-8406-e2031f03b6b1"], "illustration_id": "cfabe976-68ae-4f5f-951c-87d86a07e6a6", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 10003, "penny_rank": 10038, "prices": {"usd": "0.10", "usd_foil": "0.27", "usd_etched": null, "eur": "0.05", "eur_foil": "0.35", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=253622", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Skull+Rend&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Skull+Rend&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Skull+Rend"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/66617?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Skull+Rend&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/46371?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "88f1343c-77bf-4f44-8226-fdfb2c2c7015", "oracle_id": "b52788ff-9956-400a-bf26-17e58f673af0", "multiverse_ids": [34382], "mtgo_id": 17277, "mtgo_foil_id": 17278, "tcgplayer_id": 9759, "cardmarket_id": 2383, "name": "Skullscorch", "lang": "en", "released_at": "2002-02-04", "uri": "https://api.scryfall.com/cards/88f1343c-77bf-4f44-8226-fdfb2c2c7015", "scryfall_uri": "https://scryfall.com/card/tor/114/skullscorch?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/8/8/88f1343c-77bf-4f44-8226-fdfb2c2c7015.jpg?1562630775", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/8/88f1343c-77bf-4f44-8226-fdfb2c2c7015.jpg?1562630775", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/8/8/88f1343c-77bf-4f44-8226-fdfb2c2c7015.jpg?1562630775", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/8/8/88f1343c-77bf-4f44-8226-fdfb2c2c7015.png?1562630775", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/8/88f1343c-77bf-4f44-8226-fdfb2c2c7015.jpg?1562630775", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/8/8/88f1343c-77bf-4f44-8226-fdfb2c2c7015.jpg?1562630775"}, "mana_cost": "{R}{R}", "cmc": 2.0, "type_line": "Sorcery", "oracle_text": "Target player discards two cards at random unless that player has Skullscorch deal 4 damage to them.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "e0b3fda1-a6ca-4996-849b-08b463d39484", "set": "tor", "set_name": "Torment", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/e0b3fda1-a6ca-4996-849b-08b463d39484", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ator&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/tor?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/88f1343c-77bf-4f44-8226-fdfb2c2c7015/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ab52788ff-9956-400a-bf26-17e58f673af0&unique=prints", "collector_number": "114", "digital": false, "rarity": "rare", "flavor_text": "\"A good whack on the head usually has the same effect.\"\n\u2014Kamahl, pit fighter", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Bradley Williams", "artist_ids": ["24d81dfa-3745-4386-93f8-7e67dddb3c8a"], "illustration_id": "6b438b52-3c29-4f29-a0f3-9da9b1d31e06", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 20233, "penny_rank": 4157, "prices": {"usd": "0.34", "usd_foil": "2.91", "usd_etched": null, "eur": "0.50", "eur_foil": "6.00", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=34382", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Skullscorch&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Skullscorch&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Skullscorch"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/9759?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Skullscorch&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/17277?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "9e318b03-2aad-462b-a2a9-8b6bdf0e93d6", "oracle_id": "2ed1879a-83b8-48df-a6d2-fe28e912b4c5", "multiverse_ids": [214054], "mtgo_id": 39523, "mtgo_foil_id": 39524, "tcgplayer_id": 39101, "cardmarket_id": 245379, "name": "Slagstorm", "lang": "en", "released_at": "2011-02-04", "uri": "https://api.scryfall.com/cards/9e318b03-2aad-462b-a2a9-8b6bdf0e93d6", "scryfall_uri": "https://scryfall.com/card/mbs/75/slagstorm?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/9/e/9e318b03-2aad-462b-a2a9-8b6bdf0e93d6.jpg?1562613393", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/e/9e318b03-2aad-462b-a2a9-8b6bdf0e93d6.jpg?1562613393", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/9/e/9e318b03-2aad-462b-a2a9-8b6bdf0e93d6.jpg?1562613393", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/9/e/9e318b03-2aad-462b-a2a9-8b6bdf0e93d6.png?1562613393", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/e/9e318b03-2aad-462b-a2a9-8b6bdf0e93d6.jpg?1562613393", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/9/e/9e318b03-2aad-462b-a2a9-8b6bdf0e93d6.jpg?1562613393"}, "mana_cost": "{1}{R}{R}", "cmc": 3.0, "type_line": "Sorcery", "oracle_text": "Choose one \u2014\n\u2022 Slagstorm deals 3 damage to each creature.\n\u2022 Slagstorm deals 3 damage to each player.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "f46c57e3-9301-4006-a6ca-06f3f65961fb", "set": "mbs", "set_name": "Mirrodin Besieged", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/f46c57e3-9301-4006-a6ca-06f3f65961fb", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ambs&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/mbs?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/9e318b03-2aad-462b-a2a9-8b6bdf0e93d6/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A2ed1879a-83b8-48df-a6d2-fe28e912b4c5&unique=prints", "collector_number": "75", "digital": false, "rarity": "rare", "watermark": "mirran", "flavor_text": "\"As long as we have the will to fight, we are never without weapons.\"\n\u2014Koth of the Hammer", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Dan Scott", "artist_ids": ["f852fa13-137e-40f2-bbc1-0f01df09c0e0"], "illustration_id": "218856da-b078-4d42-aa99-83971c0fbfc9", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 6151, "penny_rank": 469, "prices": {"usd": "0.33", "usd_foil": "1.21", "usd_etched": null, "eur": "0.55", "eur_foil": "1.90", "tix": "0.01"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=214054", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Slagstorm&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Slagstorm&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Slagstorm"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/39101?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Slagstorm&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/39523?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "83b5b110-c430-4ffe-9fc1-8e6987f52d1e", "oracle_id": "1e94e647-9150-4b22-aa9f-d195f64fb20a", "multiverse_ids": [473105], "mtgo_id": 78416, "arena_id": 70290, "tcgplayer_id": 198422, "cardmarket_id": 398934, "name": "Slaying Fire", "lang": "en", "released_at": "2019-10-04", "uri": "https://api.scryfall.com/cards/83b5b110-c430-4ffe-9fc1-8e6987f52d1e", "scryfall_uri": "https://scryfall.com/card/eld/143/slaying-fire?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/8/3/83b5b110-c430-4ffe-9fc1-8e6987f52d1e.jpg?1572490469", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/3/83b5b110-c430-4ffe-9fc1-8e6987f52d1e.jpg?1572490469", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/8/3/83b5b110-c430-4ffe-9fc1-8e6987f52d1e.jpg?1572490469", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/8/3/83b5b110-c430-4ffe-9fc1-8e6987f52d1e.png?1572490469", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/3/83b5b110-c430-4ffe-9fc1-8e6987f52d1e.jpg?1572490469", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/8/3/83b5b110-c430-4ffe-9fc1-8e6987f52d1e.jpg?1572490469"}, "mana_cost": "{2}{R}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Slaying Fire deals 3 damage to any target.\nAdamant \u2014 If at least three red mana was spent to cast this spell, it deals 4 damage instead.", "colors": ["R"], "color_identity": ["R"], "keywords": ["Adamant"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "a90a7b2f-9dd8-4fc7-9f7d-8ea2797ec782", "set": "eld", "set_name": "Throne of Eldraine", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/a90a7b2f-9dd8-4fc7-9f7d-8ea2797ec782", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aeld&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/eld?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/83b5b110-c430-4ffe-9fc1-8e6987f52d1e/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A1e94e647-9150-4b22-aa9f-d195f64fb20a&unique=prints", "collector_number": "143", "digital": false, "rarity": "uncommon", "flavor_text": "The purest virtue burns brighter than the sun and hotter than dragonfire.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Heonhwa Choe", "artist_ids": ["ce415f9e-8a20-4d64-bcba-2b1b7e94012e"], "illustration_id": "170106fd-ee3d-4ff3-9b12-2475fab99629", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 11126, "penny_rank": 2968, "preview": {"source": "Wizards of the Coast", "source_uri": "https://magic.wizards.com/en/articles/archive/feature/throne-eldraine-mechanics-2019-09-04", "previewed_at": "2019-09-04"}, "prices": {"usd": "0.05", "usd_foil": "0.11", "usd_etched": null, "eur": "0.05", "eur_foil": "0.04", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=473105", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Slaying+Fire&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Slaying+Fire&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Slaying+Fire"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/198422?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Slaying+Fire&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/78416?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "7eda1524-44dd-4f70-ac21-bac51578860e", "oracle_id": "e0583f29-c344-4b56-b0dc-bef1089a95c7", "multiverse_ids": [158243], "mtgo_id": 29769, "mtgo_foil_id": 29770, "tcgplayer_id": 18792, "cardmarket_id": 19121, "name": "Smash to Smithereens", "lang": "en", "released_at": "2008-05-02", "uri": "https://api.scryfall.com/cards/7eda1524-44dd-4f70-ac21-bac51578860e", "scryfall_uri": "https://scryfall.com/card/shm/107/smash-to-smithereens?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/7/e/7eda1524-44dd-4f70-ac21-bac51578860e.jpg?1562832260", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/e/7eda1524-44dd-4f70-ac21-bac51578860e.jpg?1562832260", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/7/e/7eda1524-44dd-4f70-ac21-bac51578860e.jpg?1562832260", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/7/e/7eda1524-44dd-4f70-ac21-bac51578860e.png?1562832260", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/e/7eda1524-44dd-4f70-ac21-bac51578860e.jpg?1562832260", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/7/e/7eda1524-44dd-4f70-ac21-bac51578860e.jpg?1562832260"}, "mana_cost": "{1}{R}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Destroy target artifact. Smash to Smithereens deals 3 damage to that artifact's controller.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "c18c0ba1-2081-4808-9b2e-549bc3a666f3", "set": "shm", "set_name": "Shadowmoor", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/c18c0ba1-2081-4808-9b2e-549bc3a666f3", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ashm&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/shm?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/7eda1524-44dd-4f70-ac21-bac51578860e/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ae0583f29-c344-4b56-b0dc-bef1089a95c7&unique=prints", "collector_number": "107", "digital": false, "rarity": "common", "flavor_text": "The giant Tarvik dreamed that trinkets and machines caused all the world's woe. When he awoke from his troubled sleep, he took the name Tarvik Relicsmasher.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Pete Venters", "artist_ids": ["d54c4a1a-c0c5-4834-84db-125d341f3ad8"], "illustration_id": "a4306c9d-0404-4e2b-9902-f6bb68ee195a", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 6485, "penny_rank": 9943, "prices": {"usd": "0.34", "usd_foil": "5.99", "usd_etched": null, "eur": "0.37", "eur_foil": "1.49", "tix": "0.15"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=158243", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Smash+to+Smithereens&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Smash+to+Smithereens&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Smash+to+Smithereens"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/18792?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Smash+to+Smithereens&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/29769?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "4daccff6-8395-4b11-a4ce-3576aa38bc09", "oracle_id": "e0583f29-c344-4b56-b0dc-bef1089a95c7", "multiverse_ids": [], "tcgplayer_id": 114846, "cardmarket_id": 287226, "name": "Smash to Smithereens", "lang": "en", "released_at": "2016-01-01", "uri": "https://api.scryfall.com/cards/4daccff6-8395-4b11-a4ce-3576aa38bc09", "scryfall_uri": "https://scryfall.com/card/f16/3/smash-to-smithereens?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/4/d/4daccff6-8395-4b11-a4ce-3576aa38bc09.jpg?1562636800", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/d/4daccff6-8395-4b11-a4ce-3576aa38bc09.jpg?1562636800", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/4/d/4daccff6-8395-4b11-a4ce-3576aa38bc09.jpg?1562636800", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/4/d/4daccff6-8395-4b11-a4ce-3576aa38bc09.png?1562636800", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/d/4daccff6-8395-4b11-a4ce-3576aa38bc09.jpg?1562636800", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/4/d/4daccff6-8395-4b11-a4ce-3576aa38bc09.jpg?1562636800"}, "mana_cost": "{1}{R}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Destroy target artifact. Smash to Smithereens deals 3 damage to that artifact's controller.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": true, "nonfoil": false, "finishes": ["foil"], "oversized": false, "promo": true, "reprint": true, "variation": false, "set_id": "820ba719-0234-4ca7-9d72-e0f8d56460bb", "set": "f16", "set_name": "Friday Night Magic 2016", "set_type": "promo", "set_uri": "https://api.scryfall.com/sets/820ba719-0234-4ca7-9d72-e0f8d56460bb", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Af16&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/f16?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/4daccff6-8395-4b11-a4ce-3576aa38bc09/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ae0583f29-c344-4b56-b0dc-bef1089a95c7&unique=prints", "collector_number": "3", "digital": false, "rarity": "rare", "watermark": "wotc", "flavor_text": "\"All of these old relics have one thing in common. Every last one of them is made of smithereens.\"\n\u2014Zada of Slab Haven", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Darek Zabrocki", "artist_ids": ["904ed2e7-9850-4472-802f-2657c53dd4d8"], "illustration_id": "88b04d46-4695-463b-97ce-0ec63869cdfe", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "promo_types": ["tourney", "fnm"], "edhrec_rank": 6485, "penny_rank": 9943, "prices": {"usd": null, "usd_foil": "1.63", "usd_etched": null, "eur": null, "eur_foil": "0.42", "tix": null}, "related_uris": {"tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Smash+to+Smithereens&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Smash+to+Smithereens&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Smash+to+Smithereens"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/114846?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Smash+to+Smithereens&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Smash+to+Smithereens&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "5fa3e132-125a-492f-aab7-c560ea36b779", "oracle_id": "19d19e32-af13-4bb3-925f-8ed54cce2fcb", "multiverse_ids": [464058], "mtgo_id": 72590, "tcgplayer_id": 191576, "cardmarket_id": 375438, "name": "Smiting Helix", "lang": "en", "released_at": "2019-06-14", "uri": "https://api.scryfall.com/cards/5fa3e132-125a-492f-aab7-c560ea36b779", "scryfall_uri": "https://scryfall.com/card/mh1/109/smiting-helix?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/5/f/5fa3e132-125a-492f-aab7-c560ea36b779.jpg?1562201744", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/f/5fa3e132-125a-492f-aab7-c560ea36b779.jpg?1562201744", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/5/f/5fa3e132-125a-492f-aab7-c560ea36b779.jpg?1562201744", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/5/f/5fa3e132-125a-492f-aab7-c560ea36b779.png?1562201744", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/f/5fa3e132-125a-492f-aab7-c560ea36b779.jpg?1562201744", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/5/f/5fa3e132-125a-492f-aab7-c560ea36b779.jpg?1562201744"}, "mana_cost": "{3}{B}", "cmc": 4.0, "type_line": "Sorcery", "oracle_text": "Smiting Helix deals 3 damage to any target and you gain 3 life.\nFlashback {R}{W} (You may cast this card from your graveyard for its flashback cost. Then exile it.)", "colors": ["B"], "color_identity": ["B", "R", "W"], "keywords": ["Flashback"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "d7efccd6-55bc-4fb8-9138-e72577510a99", "set": "mh1", "set_name": "Modern Horizons", "set_type": "draft_innovation", "set_uri": "https://api.scryfall.com/sets/d7efccd6-55bc-4fb8-9138-e72577510a99", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Amh1&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/mh1?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/5fa3e132-125a-492f-aab7-c560ea36b779/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A19d19e32-af13-4bb3-925f-8ed54cce2fcb&unique=prints", "collector_number": "109", "digital": false, "rarity": "uncommon", "flavor_text": "Malice is appropriate when vengeance is called for.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Evan Shipard", "artist_ids": ["eea284ce-9377-49c1-9d96-f34b7d487cdf"], "illustration_id": "10bc8244-d811-4e9c-afe0-fc0d7834d4bd", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 18792, "penny_rank": 1023, "preview": {"source": "Wizards of the Coast", "source_uri": "https://magic.wizards.com/en/articles/archive/card-preview/whats-name-2019-05-30", "previewed_at": "2019-05-30"}, "prices": {"usd": "0.04", "usd_foil": "0.41", "usd_etched": null, "eur": "0.05", "eur_foil": "0.68", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=464058", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Smiting+Helix&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Smiting+Helix&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Smiting+Helix"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/191576?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Smiting+Helix&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/72590?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "e492a245-46ba-438e-8d81-4626faa49bff", "oracle_id": "8fef58ff-4743-4065-9df0-c5edf9aa2502", "multiverse_ids": [553919], "tcgplayer_id": 262986, "cardmarket_id": 608614, "name": "Smoke Spirits' Aid", "lang": "en", "released_at": "2022-02-18", "uri": "https://api.scryfall.com/cards/e492a245-46ba-438e-8d81-4626faa49bff", "scryfall_uri": "https://scryfall.com/card/nec/22/smoke-spirits-aid?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/e/4/e492a245-46ba-438e-8d81-4626faa49bff.jpg?1651655377", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/4/e492a245-46ba-438e-8d81-4626faa49bff.jpg?1651655377", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/e/4/e492a245-46ba-438e-8d81-4626faa49bff.jpg?1651655377", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/e/4/e492a245-46ba-438e-8d81-4626faa49bff.png?1651655377", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/4/e492a245-46ba-438e-8d81-4626faa49bff.jpg?1651655377", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/e/4/e492a245-46ba-438e-8d81-4626faa49bff.jpg?1651655377"}, "mana_cost": "{X}{R}", "cmc": 1.0, "type_line": "Sorcery", "oracle_text": "For each of up to X target creatures, create a red Aura enchantment token named Smoke Blessing attached to that creature. Those tokens have enchant creature and \"When enchanted creature dies, it deals 1 damage to its controller and you create a Treasure token.\"", "colors": ["R"], "color_identity": ["R"], "keywords": [], "all_parts": [{"object": "related_card", "id": "e492a245-46ba-438e-8d81-4626faa49bff", "component": "combo_piece", "name": "Smoke Spirits' Aid", "type_line": "Sorcery", "uri": "https://api.scryfall.com/cards/e492a245-46ba-438e-8d81-4626faa49bff"}, {"object": "related_card", "id": "5eb01bef-8989-4b38-a303-0aafab1b33e5", "component": "token", "name": "Smoke Blessing", "type_line": "Token Enchantment \u2014 Aura", "uri": "https://api.scryfall.com/cards/5eb01bef-8989-4b38-a303-0aafab1b33e5"}, {"object": "related_card", "id": "6911181d-573b-41eb-96a4-799c96e008fc", "component": "token", "name": "Treasure", "type_line": "Token Artifact \u2014 Treasure", "uri": "https://api.scryfall.com/cards/6911181d-573b-41eb-96a4-799c96e008fc"}], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "5b4d929d-bdf9-4bbf-858e-e248f53325ad", "set": "nec", "set_name": "Neon Dynasty Commander", "set_type": "commander", "set_uri": "https://api.scryfall.com/sets/5b4d929d-bdf9-4bbf-858e-e248f53325ad", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Anec&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/nec?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/e492a245-46ba-438e-8d81-4626faa49bff/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A8fef58ff-4743-4065-9df0-c5edf9aa2502&unique=prints", "collector_number": "22", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Uriah Voth", "artist_ids": ["14cf4c0c-1a83-4366-ba61-6d0a26ee5a69"], "illustration_id": "355fec7f-84d5-4cb2-8f74-2585fe1d45f3", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "edhrec_rank": 5023, "prices": {"usd": "0.64", "usd_foil": null, "usd_etched": null, "eur": "0.05", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=553919", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Smoke+Spirits%27+Aid&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Smoke+Spirits%27+Aid&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Smoke+Spirits%27+Aid"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/262986?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Smoke+Spirits%27+Aid&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Smoke+Spirits%27+Aid&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "b36fc40c-6a68-4192-91d9-2031c7d32e05", "oracle_id": "ece3e379-c586-48bd-8742-472b5deccc35", "multiverse_ids": [41143], "mtgo_id": 18071, "mtgo_foil_id": 18072, "tcgplayer_id": 10616, "cardmarket_id": 1865, "name": "Solar Blast", "lang": "en", "released_at": "2002-10-07", "uri": "https://api.scryfall.com/cards/b36fc40c-6a68-4192-91d9-2031c7d32e05", "scryfall_uri": "https://scryfall.com/card/ons/234/solar-blast?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/b/3/b36fc40c-6a68-4192-91d9-2031c7d32e05.jpg?1562937333", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/3/b36fc40c-6a68-4192-91d9-2031c7d32e05.jpg?1562937333", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/b/3/b36fc40c-6a68-4192-91d9-2031c7d32e05.jpg?1562937333", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/b/3/b36fc40c-6a68-4192-91d9-2031c7d32e05.png?1562937333", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/3/b36fc40c-6a68-4192-91d9-2031c7d32e05.jpg?1562937333", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/b/3/b36fc40c-6a68-4192-91d9-2031c7d32e05.jpg?1562937333"}, "mana_cost": "{3}{R}", "cmc": 4.0, "type_line": "Instant", "oracle_text": "Solar Blast deals 3 damage to any target.\nCycling {1}{R}{R} ({1}{R}{R}, Discard this card: Draw a card.)\nWhen you cycle Solar Blast, you may have it deal 1 damage to any target.", "colors": ["R"], "color_identity": ["R"], "keywords": ["Cycling"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "914a6c6d-cb3b-45e8-a2db-9978a2339faf", "set": "ons", "set_name": "Onslaught", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/914a6c6d-cb3b-45e8-a2db-9978a2339faf", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aons&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ons?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/b36fc40c-6a68-4192-91d9-2031c7d32e05/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aece3e379-c586-48bd-8742-472b5deccc35&unique=prints", "collector_number": "234", "digital": false, "rarity": "common", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Greg Staples", "artist_ids": ["93d65564-bf00-447b-8406-e2031f03b6b1"], "illustration_id": "6f288bd1-edb9-4d16-ac7c-19591ef97c13", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 18319, "penny_rank": 6150, "prices": {"usd": "0.12", "usd_foil": "0.32", "usd_etched": null, "eur": "0.02", "eur_foil": "0.49", "tix": "0.04"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=41143", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Solar+Blast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Solar+Blast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Solar+Blast"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/10616?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Solar+Blast&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/18071?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "cc61a398-cf16-415b-b3cf-897217dc7cc9", "oracle_id": "dfe9e485-c070-4efd-8c35-69d4eb3f58e4", "multiverse_ids": [452949], "mtgo_id": 69771, "arena_id": 68660, "tcgplayer_id": 175186, "cardmarket_id": 363586, "name": "Sonic Assault", "lang": "en", "released_at": "2018-10-05", "uri": "https://api.scryfall.com/cards/cc61a398-cf16-415b-b3cf-897217dc7cc9", "scryfall_uri": "https://scryfall.com/card/grn/199/sonic-assault?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/c/c/cc61a398-cf16-415b-b3cf-897217dc7cc9.jpg?1572893813", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/c/cc61a398-cf16-415b-b3cf-897217dc7cc9.jpg?1572893813", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/c/c/cc61a398-cf16-415b-b3cf-897217dc7cc9.jpg?1572893813", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/c/c/cc61a398-cf16-415b-b3cf-897217dc7cc9.png?1572893813", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/c/cc61a398-cf16-415b-b3cf-897217dc7cc9.jpg?1572893813", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/c/c/cc61a398-cf16-415b-b3cf-897217dc7cc9.jpg?1572893813"}, "mana_cost": "{1}{U}{R}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Tap target creature. Sonic Assault deals 2 damage to that creature's controller.\nJump-start (You may cast this card from your graveyard by discarding a card in addition to paying its other costs. Then exile this card.)", "colors": ["R", "U"], "color_identity": ["R", "U"], "keywords": ["Jump-start"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "597c6d4a-8212-4903-a6af-12c4ae9e13f0", "set": "grn", "set_name": "Guilds of Ravnica", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/597c6d4a-8212-4903-a6af-12c4ae9e13f0", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Agrn&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/grn?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/cc61a398-cf16-415b-b3cf-897217dc7cc9/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Adfe9e485-c070-4efd-8c35-69d4eb3f58e4&unique=prints", "collector_number": "199", "digital": false, "rarity": "common", "watermark": "izzet", "flavor_text": "He heard stars and saw thunder.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Tyler Walpole", "artist_ids": ["70c4c8c7-61a8-44e7-8fb1-161b7f943e7e"], "illustration_id": "ab7b8f25-ae06-4675-a3f1-c5d486bd429d", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 16292, "penny_rank": 8815, "prices": {"usd": "0.02", "usd_foil": "0.18", "usd_etched": null, "eur": "0.02", "eur_foil": "0.10", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=452949", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Sonic+Assault&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Sonic+Assault&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Sonic+Assault"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/175186?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Sonic+Assault&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/69771?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "05530d5a-dcb6-403e-9e35-224c7b5cf615", "oracle_id": "144d42b8-5c44-4a36-9028-75229047e56c", "multiverse_ids": [6112], "mtgo_id": 10531, "mtgo_foil_id": 10532, "tcgplayer_id": 4406, "cardmarket_id": 9331, "name": "Sonic Burst", "lang": "en", "released_at": "1998-06-15", "uri": "https://api.scryfall.com/cards/05530d5a-dcb6-403e-9e35-224c7b5cf615", "scryfall_uri": "https://scryfall.com/card/exo/103/sonic-burst?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/0/5/05530d5a-dcb6-403e-9e35-224c7b5cf615.jpg?1562086889", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/5/05530d5a-dcb6-403e-9e35-224c7b5cf615.jpg?1562086889", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/0/5/05530d5a-dcb6-403e-9e35-224c7b5cf615.jpg?1562086889", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/0/5/05530d5a-dcb6-403e-9e35-224c7b5cf615.png?1562086889", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/5/05530d5a-dcb6-403e-9e35-224c7b5cf615.jpg?1562086889", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/0/5/05530d5a-dcb6-403e-9e35-224c7b5cf615.jpg?1562086889"}, "mana_cost": "{1}{R}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "As an additional cost to cast this spell, discard a card at random.\nSonic Burst deals 4 damage to any target.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "1401f7af-2e71-476d-9813-991084ed0bb9", "set": "exo", "set_name": "Exodus", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/1401f7af-2e71-476d-9813-991084ed0bb9", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aexo&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/exo?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/05530d5a-dcb6-403e-9e35-224c7b5cf615/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A144d42b8-5c44-4a36-9028-75229047e56c&unique=prints", "collector_number": "103", "digital": false, "rarity": "common", "flavor_text": "Music scythes the savage beast.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Brian Sn\u00f5ddy", "artist_ids": ["770b4e16-de76-49ed-949f-84e6d2e06d25"], "illustration_id": "37a60bd6-407f-483d-8dcb-5a19cdd678b9", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 21750, "penny_rank": 3391, "prices": {"usd": "0.08", "usd_foil": null, "usd_etched": null, "eur": "0.05", "eur_foil": null, "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=6112", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Sonic+Burst&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Sonic+Burst&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Sonic+Burst"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/4406?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Sonic+Burst&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/10531?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "98eb9371-aa20-4790-baf8-a1ad95de39de", "oracle_id": "f43c68f1-97ac-47a4-82d3-a41277259388", "multiverse_ids": [35165], "mtgo_id": 17335, "mtgo_foil_id": 17336, "tcgplayer_id": 9699, "cardmarket_id": 2384, "name": "Sonic Seizure", "lang": "en", "released_at": "2002-02-04", "uri": "https://api.scryfall.com/cards/98eb9371-aa20-4790-baf8-a1ad95de39de", "scryfall_uri": "https://scryfall.com/card/tor/115/sonic-seizure?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/9/8/98eb9371-aa20-4790-baf8-a1ad95de39de.jpg?1562631090", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/8/98eb9371-aa20-4790-baf8-a1ad95de39de.jpg?1562631090", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/9/8/98eb9371-aa20-4790-baf8-a1ad95de39de.jpg?1562631090", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/9/8/98eb9371-aa20-4790-baf8-a1ad95de39de.png?1562631090", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/8/98eb9371-aa20-4790-baf8-a1ad95de39de.jpg?1562631090", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/9/8/98eb9371-aa20-4790-baf8-a1ad95de39de.jpg?1562631090"}, "mana_cost": "{R}", "cmc": 1.0, "type_line": "Instant", "oracle_text": "As an additional cost to cast this spell, discard a card at random.\nSonic Seizure deals 3 damage to any target.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "e0b3fda1-a6ca-4996-849b-08b463d39484", "set": "tor", "set_name": "Torment", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/e0b3fda1-a6ca-4996-849b-08b463d39484", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ator&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/tor?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/98eb9371-aa20-4790-baf8-a1ad95de39de/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Af43c68f1-97ac-47a4-82d3-a41277259388&unique=prints", "collector_number": "115", "digital": false, "rarity": "common", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Terese Nielsen", "artist_ids": ["eb55171c-2342-45f4-a503-2d5a75baf752"], "illustration_id": "b0f8d155-0f27-4750-a418-6b649c5abcfb", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 21685, "penny_rank": 2024, "prices": {"usd": "0.10", "usd_foil": "0.43", "usd_etched": null, "eur": "0.05", "eur_foil": "0.40", "tix": "0.04"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=35165", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Sonic+Seizure&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Sonic+Seizure&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Sonic+Seizure"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/9699?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Sonic+Seizure&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/17335?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "2cb62846-c5da-4c7c-b0d7-9b677dce68d1", "oracle_id": "75d9c036-4f0d-4b55-b0a4-096ca84748ca", "multiverse_ids": [234436], "mtgo_id": 41549, "mtgo_foil_id": 41550, "tcgplayer_id": 47666, "cardmarket_id": 247982, "name": "Sorin's Vengeance", "lang": "en", "released_at": "2011-07-15", "uri": "https://api.scryfall.com/cards/2cb62846-c5da-4c7c-b0d7-9b677dce68d1", "scryfall_uri": "https://scryfall.com/card/m12/111/sorins-vengeance?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/2/c/2cb62846-c5da-4c7c-b0d7-9b677dce68d1.jpg?1562637452", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/c/2cb62846-c5da-4c7c-b0d7-9b677dce68d1.jpg?1562637452", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/2/c/2cb62846-c5da-4c7c-b0d7-9b677dce68d1.jpg?1562637452", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/2/c/2cb62846-c5da-4c7c-b0d7-9b677dce68d1.png?1562637452", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/c/2cb62846-c5da-4c7c-b0d7-9b677dce68d1.jpg?1562637452", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/2/c/2cb62846-c5da-4c7c-b0d7-9b677dce68d1.jpg?1562637452"}, "mana_cost": "{4}{B}{B}{B}", "cmc": 7.0, "type_line": "Sorcery", "oracle_text": "Sorin's Vengeance deals 10 damage to target player or planeswalker and you gain 10 life.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "5cdd2643-229c-4441-a62a-c34e4b531e1c", "set": "m12", "set_name": "Magic 2012", "set_type": "core", "set_uri": "https://api.scryfall.com/sets/5cdd2643-229c-4441-a62a-c34e4b531e1c", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Am12&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/m12?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/2cb62846-c5da-4c7c-b0d7-9b677dce68d1/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A75d9c036-4f0d-4b55-b0a4-096ca84748ca&unique=prints", "collector_number": "111", "digital": false, "rarity": "rare", "flavor_text": "\"Cherish these last moments. Though your miserable life has come to nothing, I have given it a magnificent end.\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Jana Schirmer & Johannes Voss", "artist_ids": ["64c0582e-949d-41cb-8a23-a25b87850748", "3593dd7e-c547-4a32-81cd-7da725f60118"], "illustration_id": "d34a4de2-b441-4b96-a8e6-e63fec3b036e", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 9392, "penny_rank": 3287, "prices": {"usd": "0.64", "usd_foil": "2.18", "usd_etched": null, "eur": "0.78", "eur_foil": "3.20", "tix": "0.01"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=234436", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Sorin%27s+Vengeance&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Sorin%27s+Vengeance&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Sorin%27s+Vengeance"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/47666?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Sorin%27s+Vengeance&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/41549?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "70515cd2-97d5-4491-a758-bc7188fdc6dc", "oracle_id": "063b0f5d-af27-4681-87b9-b553f6887061", "multiverse_ids": [23026], "mtgo_id": 14405, "mtgo_foil_id": 14406, "tcgplayer_id": 7665, "cardmarket_id": 3659, "name": "Soul Burn", "lang": "en", "released_at": "2000-10-02", "uri": "https://api.scryfall.com/cards/70515cd2-97d5-4491-a758-bc7188fdc6dc", "scryfall_uri": "https://scryfall.com/card/inv/124/soul-burn?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/7/0/70515cd2-97d5-4491-a758-bc7188fdc6dc.jpg?1562917470", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/0/70515cd2-97d5-4491-a758-bc7188fdc6dc.jpg?1562917470", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/7/0/70515cd2-97d5-4491-a758-bc7188fdc6dc.jpg?1562917470", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/7/0/70515cd2-97d5-4491-a758-bc7188fdc6dc.png?1562917470", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/0/70515cd2-97d5-4491-a758-bc7188fdc6dc.jpg?1562917470", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/7/0/70515cd2-97d5-4491-a758-bc7188fdc6dc.jpg?1562917470"}, "mana_cost": "{X}{2}{B}", "cmc": 3.0, "type_line": "Sorcery", "oracle_text": "Spend only black and/or red mana on X.\nSoul Burn deals X damage to any target. You gain life equal to the damage dealt, but not more than the amount of {B} spent on X, the player's life total before the damage was dealt, the planeswalker's loyalty before the damage was dealt, or the creature's toughness.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "b9ae5e02-7726-47ca-b5e4-5ec402b41cd1", "set": "inv", "set_name": "Invasion", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/b9ae5e02-7726-47ca-b5e4-5ec402b41cd1", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ainv&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/inv?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/70515cd2-97d5-4491-a758-bc7188fdc6dc/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A063b0f5d-af27-4681-87b9-b553f6887061&unique=prints", "collector_number": "124", "digital": false, "rarity": "common", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Andrew Goldhawk", "artist_ids": ["f4a65a04-9e2e-4541-8d0e-f34e9517f092"], "illustration_id": "2a749eff-9e1d-429e-b9e4-cabb8e8dc172", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 16335, "penny_rank": 6020, "prices": {"usd": "0.06", "usd_foil": "1.47", "usd_etched": null, "eur": "0.05", "eur_foil": "0.35", "tix": "0.06"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=23026", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Soul+Burn&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Soul+Burn&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Soul+Burn"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/7665?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Soul+Burn&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/14405?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "eb8e00d2-2381-4d45-bed8-c9bf738a9419", "oracle_id": "063b0f5d-af27-4681-87b9-b553f6887061", "multiverse_ids": [2485], "mtgo_id": 24463, "tcgplayer_id": 4892, "cardmarket_id": 6261, "name": "Soul Burn", "lang": "en", "released_at": "1995-06-03", "uri": "https://api.scryfall.com/cards/eb8e00d2-2381-4d45-bed8-c9bf738a9419", "scryfall_uri": "https://scryfall.com/card/ice/161/soul-burn?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/e/b/eb8e00d2-2381-4d45-bed8-c9bf738a9419.jpg?1562939148", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/b/eb8e00d2-2381-4d45-bed8-c9bf738a9419.jpg?1562939148", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/e/b/eb8e00d2-2381-4d45-bed8-c9bf738a9419.jpg?1562939148", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/e/b/eb8e00d2-2381-4d45-bed8-c9bf738a9419.png?1562939148", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/b/eb8e00d2-2381-4d45-bed8-c9bf738a9419.jpg?1562939148", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/e/b/eb8e00d2-2381-4d45-bed8-c9bf738a9419.jpg?1562939148"}, "mana_cost": "{X}{2}{B}", "cmc": 3.0, "type_line": "Sorcery", "oracle_text": "Spend only black and/or red mana on X.\nSoul Burn deals X damage to any target. You gain life equal to the damage dealt, but not more than the amount of {B} spent on X, the player's life total before the damage was dealt, the planeswalker's loyalty before the damage was dealt, or the creature's toughness.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "b0e08eea-5c01-4406-a6e2-dcd09c5e5b67", "set": "ice", "set_name": "Ice Age", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/b0e08eea-5c01-4406-a6e2-dcd09c5e5b67", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aice&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ice?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/eb8e00d2-2381-4d45-bed8-c9bf738a9419/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A063b0f5d-af27-4681-87b9-b553f6887061&unique=prints", "collector_number": "161", "digital": false, "rarity": "common", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Rob Alexander", "artist_ids": ["35906871-6c78-4ab2-9ed1-e6792c8efb74"], "illustration_id": "7387c003-9aa5-4d88-acbd-e511bcd05ba6", "border_color": "black", "frame": "1993", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 16335, "penny_rank": 6020, "prices": {"usd": "0.09", "usd_foil": null, "usd_etched": null, "eur": "0.03", "eur_foil": null, "tix": "0.09"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=2485", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Soul+Burn&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Soul+Burn&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Soul+Burn"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/4892?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Soul+Burn&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/24463?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "4b14b97d-122b-453a-9e5f-129404f96440", "oracle_id": "be979bfc-998d-43d5-a7a4-44548d9a14c4", "multiverse_ids": [121165], "mtgo_id": 24601, "mtgo_foil_id": 24602, "tcgplayer_id": 14119, "cardmarket_id": 13726, "name": "Soul Spike", "lang": "en", "released_at": "2006-07-21", "uri": "https://api.scryfall.com/cards/4b14b97d-122b-453a-9e5f-129404f96440", "scryfall_uri": "https://scryfall.com/card/csp/70/soul-spike?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/4/b/4b14b97d-122b-453a-9e5f-129404f96440.jpg?1593275167", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/b/4b14b97d-122b-453a-9e5f-129404f96440.jpg?1593275167", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/4/b/4b14b97d-122b-453a-9e5f-129404f96440.jpg?1593275167", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/4/b/4b14b97d-122b-453a-9e5f-129404f96440.png?1593275167", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/b/4b14b97d-122b-453a-9e5f-129404f96440.jpg?1593275167", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/4/b/4b14b97d-122b-453a-9e5f-129404f96440.jpg?1593275167"}, "mana_cost": "{5}{B}{B}", "cmc": 7.0, "type_line": "Instant", "oracle_text": "You may exile two black cards from your hand rather than pay this spell's mana cost.\nSoul Spike deals 4 damage to any target and you gain 4 life.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "1f4f105f-73e4-4f03-849e-82a204807847", "set": "csp", "set_name": "Coldsnap", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/1f4f105f-73e4-4f03-849e-82a204807847", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Acsp&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/csp?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/4b14b97d-122b-453a-9e5f-129404f96440/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Abe979bfc-998d-43d5-a7a4-44548d9a14c4&unique=prints", "collector_number": "70", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Wayne England", "artist_ids": ["62dc90c0-4bc2-4d42-ad76-59cad9243566"], "illustration_id": "c6385bcf-832c-452a-927f-0bbb24036454", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 16569, "penny_rank": 3337, "prices": {"usd": "0.40", "usd_foil": "7.92", "usd_etched": null, "eur": "0.25", "eur_foil": "2.50", "tix": "0.01"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=121165", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Soul+Spike&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Soul+Spike&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Soul+Spike"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/14119?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Soul+Spike&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/24601?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "6ee479c2-a115-450b-bc2e-b03d23b82f2d", "oracle_id": "f24634f3-49aa-4362-8faa-93598b9324d9", "multiverse_ids": [373618], "mtgo_id": 50566, "mtgo_foil_id": 50567, "tcgplayer_id": 71373, "cardmarket_id": 264257, "name": "Spark Jolt", "lang": "en", "released_at": "2013-09-27", "uri": "https://api.scryfall.com/cards/6ee479c2-a115-450b-bc2e-b03d23b82f2d", "scryfall_uri": "https://scryfall.com/card/ths/140/spark-jolt?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/6/e/6ee479c2-a115-450b-bc2e-b03d23b82f2d.jpg?1562819617", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/e/6ee479c2-a115-450b-bc2e-b03d23b82f2d.jpg?1562819617", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/6/e/6ee479c2-a115-450b-bc2e-b03d23b82f2d.jpg?1562819617", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/6/e/6ee479c2-a115-450b-bc2e-b03d23b82f2d.png?1562819617", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/e/6ee479c2-a115-450b-bc2e-b03d23b82f2d.jpg?1562819617", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/6/e/6ee479c2-a115-450b-bc2e-b03d23b82f2d.jpg?1562819617"}, "mana_cost": "{R}", "cmc": 1.0, "type_line": "Instant", "oracle_text": "Spark Jolt deals 1 damage to any target. Scry 1. (Look at the top card of your library. You may put that card on the bottom of your library.)", "colors": ["R"], "color_identity": ["R"], "keywords": ["Scry"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "69093d6f-e25a-41a4-8cf5-688d7f11c0fb", "set": "ths", "set_name": "Theros", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/69093d6f-e25a-41a4-8cf5-688d7f11c0fb", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aths&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ths?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/6ee479c2-a115-450b-bc2e-b03d23b82f2d/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Af24634f3-49aa-4362-8faa-93598b9324d9&unique=prints", "collector_number": "140", "digital": false, "rarity": "common", "flavor_text": "Acolytes of Purphoros hammer the world until they see the sparks of change.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Mike Bierek", "artist_ids": ["e5f52ef5-1a2e-4128-90b0-ccc71cd47ea7"], "illustration_id": "61e0da52-7bc8-41fd-a153-1862e819530f", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 14726, "penny_rank": 12521, "prices": {"usd": "0.04", "usd_foil": "0.13", "usd_etched": null, "eur": "0.02", "eur_foil": "0.75", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=373618", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Spark+Jolt&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Spark+Jolt&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Spark+Jolt"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/71373?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Spark+Jolt&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/50566?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "f60d8716-4297-484c-8e02-c30ce2773a65", "oracle_id": "c37f1921-7ac3-4185-8579-1dfdfe647ea2", "multiverse_ids": [44484], "mtgo_id": 18650, "mtgo_foil_id": 18651, "tcgplayer_id": 10925, "cardmarket_id": 1098, "name": "Spark Spray", "lang": "en", "released_at": "2003-05-26", "uri": "https://api.scryfall.com/cards/f60d8716-4297-484c-8e02-c30ce2773a65", "scryfall_uri": "https://scryfall.com/card/scg/105/spark-spray?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/f/6/f60d8716-4297-484c-8e02-c30ce2773a65.jpg?1562536945", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/6/f60d8716-4297-484c-8e02-c30ce2773a65.jpg?1562536945", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/f/6/f60d8716-4297-484c-8e02-c30ce2773a65.jpg?1562536945", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/f/6/f60d8716-4297-484c-8e02-c30ce2773a65.png?1562536945", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/6/f60d8716-4297-484c-8e02-c30ce2773a65.jpg?1562536945", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/f/6/f60d8716-4297-484c-8e02-c30ce2773a65.jpg?1562536945"}, "mana_cost": "{R}", "cmc": 1.0, "type_line": "Instant", "oracle_text": "Spark Spray deals 1 damage to any target.\nCycling {R} ({R}, Discard this card: Draw a card.)", "colors": ["R"], "color_identity": ["R"], "keywords": ["Cycling"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "5133c3a1-1412-4ce6-a1f0-73b695966ded", "set": "scg", "set_name": "Scourge", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/5133c3a1-1412-4ce6-a1f0-73b695966ded", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ascg&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/scg?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/f60d8716-4297-484c-8e02-c30ce2773a65/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ac37f1921-7ac3-4185-8579-1dfdfe647ea2&unique=prints", "collector_number": "105", "digital": false, "rarity": "common", "flavor_text": "It's the only kind of shower goblins will tolerate.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Pete Venters", "artist_ids": ["d54c4a1a-c0c5-4834-84db-125d341f3ad8"], "illustration_id": "3acb96b0-2827-4a70-95ce-a25fe4709b74", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 16198, "penny_rank": 728, "prices": {"usd": "0.15", "usd_foil": "1.98", "usd_etched": null, "eur": "0.42", "eur_foil": "1.25", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=44484", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Spark+Spray&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Spark+Spray&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Spark+Spray"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/10925?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Spark+Spray&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/18650?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "90ec1540-e8cb-4edc-a3b3-f71423cb46fc", "oracle_id": "82ce3682-0514-49a5-a330-2591e9789d36", "multiverse_ids": [193435], "mtgo_id": 36370, "mtgo_foil_id": 36371, "tcgplayer_id": 34858, "cardmarket_id": 22652, "name": "Spawning Breath", "lang": "en", "released_at": "2010-04-23", "uri": "https://api.scryfall.com/cards/90ec1540-e8cb-4edc-a3b3-f71423cb46fc", "scryfall_uri": "https://scryfall.com/card/roe/164/spawning-breath?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/9/0/90ec1540-e8cb-4edc-a3b3-f71423cb46fc.jpg?1562706335", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/0/90ec1540-e8cb-4edc-a3b3-f71423cb46fc.jpg?1562706335", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/9/0/90ec1540-e8cb-4edc-a3b3-f71423cb46fc.jpg?1562706335", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/9/0/90ec1540-e8cb-4edc-a3b3-f71423cb46fc.png?1562706335", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/0/90ec1540-e8cb-4edc-a3b3-f71423cb46fc.jpg?1562706335", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/9/0/90ec1540-e8cb-4edc-a3b3-f71423cb46fc.jpg?1562706335"}, "mana_cost": "{1}{R}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Spawning Breath deals 1 damage to any target. Create a 0/1 colorless Eldrazi Spawn creature token. It has \"Sacrifice this creature: Add {C}.\"", "colors": ["R"], "color_identity": ["R"], "keywords": [], "produced_mana": ["C"], "all_parts": [{"object": "related_card", "id": "90ec1540-e8cb-4edc-a3b3-f71423cb46fc", "component": "combo_piece", "name": "Spawning Breath", "type_line": "Instant", "uri": "https://api.scryfall.com/cards/90ec1540-e8cb-4edc-a3b3-f71423cb46fc"}, {"object": "related_card", "id": "e0e3826c-3c85-4910-bd6c-04894ea328d0", "component": "token", "name": "Eldrazi Spawn", "type_line": "Token Creature \u2014 Eldrazi Spawn", "uri": "https://api.scryfall.com/cards/e0e3826c-3c85-4910-bd6c-04894ea328d0"}], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "eadb8a82-ec56-4623-b50e-42e7e60cb535", "set": "roe", "set_name": "Rise of the Eldrazi", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/eadb8a82-ec56-4623-b50e-42e7e60cb535", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aroe&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/roe?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/90ec1540-e8cb-4edc-a3b3-f71423cb46fc/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A82ce3682-0514-49a5-a330-2591e9789d36&unique=prints", "collector_number": "164", "digital": false, "rarity": "common", "flavor_text": "Death by death, Kozilek's lineage spread.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Trevor Claxton", "artist_ids": ["35d39e75-5d6c-4318-9136-38cdfff34a05"], "illustration_id": "81d733a4-be6b-4f04-aaa5-f8427cfb7c3a", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 10055, "penny_rank": 9450, "prices": {"usd": "0.20", "usd_foil": "3.20", "usd_etched": null, "eur": "0.12", "eur_foil": "0.67", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=193435", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Spawning+Breath&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Spawning+Breath&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Spawning+Breath"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/34858?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Spawning+Breath&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/36370?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "3f368729-a6f2-4bf7-8b06-39c551f0b24a", "oracle_id": "cdf9fab2-bfdb-4bf3-a06a-b21e07600e23", "multiverse_ids": [109702], "mtgo_id": 25505, "mtgo_foil_id": 25506, "tcgplayer_id": 14372, "cardmarket_id": 13991, "name": "Squall Line", "lang": "en", "released_at": "2006-10-06", "uri": "https://api.scryfall.com/cards/3f368729-a6f2-4bf7-8b06-39c551f0b24a", "scryfall_uri": "https://scryfall.com/card/tsp/222/squall-line?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/3/f/3f368729-a6f2-4bf7-8b06-39c551f0b24a.jpg?1562908127", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/f/3f368729-a6f2-4bf7-8b06-39c551f0b24a.jpg?1562908127", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/3/f/3f368729-a6f2-4bf7-8b06-39c551f0b24a.jpg?1562908127", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/3/f/3f368729-a6f2-4bf7-8b06-39c551f0b24a.png?1562908127", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/f/3f368729-a6f2-4bf7-8b06-39c551f0b24a.jpg?1562908127", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/3/f/3f368729-a6f2-4bf7-8b06-39c551f0b24a.jpg?1562908127"}, "mana_cost": "{X}{G}{G}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Squall Line deals X damage to each creature with flying and each player.", "colors": ["G"], "color_identity": ["G"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "c1d109bc-ffd8-428f-8d7d-3f8d7e648046", "set": "tsp", "set_name": "Time Spiral", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/c1d109bc-ffd8-428f-8d7d-3f8d7e648046", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Atsp&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/tsp?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/3f368729-a6f2-4bf7-8b06-39c551f0b24a/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Acdf9fab2-bfdb-4bf3-a06a-b21e07600e23&unique=prints", "collector_number": "222", "digital": false, "rarity": "rare", "flavor_text": "The constant shifting of Dominaria's shredded timeline played havoc with its atmosphere, combining savage electrical storms from ages past.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Lars Grant-West", "artist_ids": ["21ed6499-c4d3-4965-ab02-6c7228275bec"], "illustration_id": "1193eb39-d0de-4af1-a534-6d0663ad419c", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 7591, "penny_rank": 9091, "prices": {"usd": "1.60", "usd_foil": "7.35", "usd_etched": null, "eur": "0.02", "eur_foil": "6.00", "tix": "0.01"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=109702", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Squall+Line&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Squall+Line&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Squall+Line"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/14372?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Squall+Line&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/25505?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "75624ab3-ddbd-4fe8-8a07-7d1f78ec8a84", "oracle_id": "056c3b7d-b603-40b8-8404-18c2eb7e7129", "multiverse_ids": [193571], "mtgo_id": 36556, "mtgo_foil_id": 36557, "tcgplayer_id": 34860, "cardmarket_id": 22515, "name": "Staggershock", "lang": "en", "released_at": "2010-04-23", "uri": "https://api.scryfall.com/cards/75624ab3-ddbd-4fe8-8a07-7d1f78ec8a84", "scryfall_uri": "https://scryfall.com/card/roe/166/staggershock?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/7/5/75624ab3-ddbd-4fe8-8a07-7d1f78ec8a84.jpg?1562705194", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/5/75624ab3-ddbd-4fe8-8a07-7d1f78ec8a84.jpg?1562705194", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/7/5/75624ab3-ddbd-4fe8-8a07-7d1f78ec8a84.jpg?1562705194", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/7/5/75624ab3-ddbd-4fe8-8a07-7d1f78ec8a84.png?1562705194", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/5/75624ab3-ddbd-4fe8-8a07-7d1f78ec8a84.jpg?1562705194", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/7/5/75624ab3-ddbd-4fe8-8a07-7d1f78ec8a84.jpg?1562705194"}, "mana_cost": "{2}{R}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Staggershock deals 2 damage to any target.\nRebound (If you cast this spell from your hand, exile it as it resolves. At the beginning of your next upkeep, you may cast this card from exile without paying its mana cost.)", "colors": ["R"], "color_identity": ["R"], "keywords": ["Rebound"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "eadb8a82-ec56-4623-b50e-42e7e60cb535", "set": "roe", "set_name": "Rise of the Eldrazi", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/eadb8a82-ec56-4623-b50e-42e7e60cb535", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aroe&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/roe?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/75624ab3-ddbd-4fe8-8a07-7d1f78ec8a84/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A056c3b7d-b603-40b8-8404-18c2eb7e7129&unique=prints", "collector_number": "166", "digital": false, "rarity": "common", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Raymond Swanland", "artist_ids": ["e956bacc-077d-4c12-b6bc-ba798b718af9"], "illustration_id": "ced8874c-6e39-420d-91eb-755a59db63e1", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 14555, "penny_rank": 2276, "prices": {"usd": "0.15", "usd_foil": "1.49", "usd_etched": null, "eur": "0.12", "eur_foil": "0.99", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=193571", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Staggershock&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Staggershock&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Staggershock"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/34860?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Staggershock&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/36556?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "13921f0d-f163-4275-b025-045c1ccd99e5", "oracle_id": "b2c840a7-24b4-4ae3-a13f-ed524e18d488", "multiverse_ids": [380508], "mtgo_id": 52224, "mtgo_foil_id": 52225, "tcgplayer_id": 82323, "cardmarket_id": 266729, "name": "Starfall", "lang": "en", "released_at": "2014-05-02", "uri": "https://api.scryfall.com/cards/13921f0d-f163-4275-b025-045c1ccd99e5", "scryfall_uri": "https://scryfall.com/card/jou/114/starfall?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/1/3/13921f0d-f163-4275-b025-045c1ccd99e5.jpg?1593096122", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/3/13921f0d-f163-4275-b025-045c1ccd99e5.jpg?1593096122", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/1/3/13921f0d-f163-4275-b025-045c1ccd99e5.jpg?1593096122", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/1/3/13921f0d-f163-4275-b025-045c1ccd99e5.png?1593096122", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/3/13921f0d-f163-4275-b025-045c1ccd99e5.jpg?1593096122", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/1/3/13921f0d-f163-4275-b025-045c1ccd99e5.jpg?1593096122"}, "mana_cost": "{4}{R}", "cmc": 5.0, "type_line": "Instant", "oracle_text": "Starfall deals 3 damage to target creature. If that creature is an enchantment, Starfall deals 3 damage to that creature's controller.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "204d2dca-1887-4721-9558-164aa7bbeb4f", "set": "jou", "set_name": "Journey into Nyx", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/204d2dca-1887-4721-9558-164aa7bbeb4f", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ajou&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/jou?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/13921f0d-f163-4275-b025-045c1ccd99e5/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ab2c840a7-24b4-4ae3-a13f-ed524e18d488&unique=prints", "collector_number": "114", "digital": false, "rarity": "common", "flavor_text": "\"The most brilliant stars are not born of Nyx.\"\n\u2014Rhexenor, Akroan flamespeaker", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Chris Rahn", "artist_ids": ["7742047e-0f80-4c0f-a530-d07460165e86"], "illustration_id": "1b3571dc-bd4d-42de-9144-f28f98550426", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 22013, "prices": {"usd": "0.07", "usd_foil": "0.22", "usd_etched": null, "eur": "0.02", "eur_foil": "0.05", "tix": "0.10"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=380508", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Starfall&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Starfall&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Starfall"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/82323?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Starfall&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/52224?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "55c99486-ae64-4293-81fb-a4b02e8fcae6", "oracle_id": "d8e255ec-7d66-43f6-b5f0-712f5957687f", "multiverse_ids": [513591], "mtgo_id": 88705, "arena_id": 76507, "tcgplayer_id": 235877, "cardmarket_id": 557513, "name": "Start from Scratch", "lang": "en", "released_at": "2021-04-23", "uri": "https://api.scryfall.com/cards/55c99486-ae64-4293-81fb-a4b02e8fcae6", "scryfall_uri": "https://scryfall.com/card/stx/114/start-from-scratch?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/5/5/55c99486-ae64-4293-81fb-a4b02e8fcae6.jpg?1637082383", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/5/55c99486-ae64-4293-81fb-a4b02e8fcae6.jpg?1637082383", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/5/5/55c99486-ae64-4293-81fb-a4b02e8fcae6.jpg?1637082383", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/5/5/55c99486-ae64-4293-81fb-a4b02e8fcae6.png?1637082383", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/5/55c99486-ae64-4293-81fb-a4b02e8fcae6.jpg?1637082383", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/5/5/55c99486-ae64-4293-81fb-a4b02e8fcae6.jpg?1637082383"}, "mana_cost": "{2}{R}", "cmc": 3.0, "type_line": "Sorcery \u2014 Lesson", "oracle_text": "Choose one \u2014\n\u2022 Start from Scratch deals 1 damage to any target.\n\u2022 Destroy target artifact.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "541c3c28-8747-40e5-a231-8e8f33234859", "set": "stx", "set_name": "Strixhaven: School of Mages", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/541c3c28-8747-40e5-a231-8e8f33234859", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Astx&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/stx?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/55c99486-ae64-4293-81fb-a4b02e8fcae6/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ad8e255ec-7d66-43f6-b5f0-712f5957687f&unique=prints", "collector_number": "114", "digital": false, "rarity": "uncommon", "flavor_text": "\"I don't care what they think!\" Rootha snapped. \"I know I can do better.\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Bayard Wu", "artist_ids": ["b089963c-610a-4d50-9206-d64b7caedef1"], "illustration_id": "e30731b9-a1d5-4512-bf34-3aafe52b616f", "border_color": "black", "frame": "2015", "frame_effects": ["lesson"], "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 18436, "preview": {"source": "eSports.com", "source_uri": "https://www.esports.com/de/magic-the-gathering-strixhaven-karten-vorschau-neue-optionen-fuer-rot-19", "previewed_at": "2021-03-30"}, "prices": {"usd": "0.01", "usd_foil": "0.08", "usd_etched": null, "eur": "0.08", "eur_foil": "0.02", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=513591", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Start+from+Scratch&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Start+from+Scratch&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Start+from+Scratch"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/235877?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Start+from+Scratch&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/88705?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "144a1b4e-d960-4c3a-810b-11a0c78635ad", "oracle_id": "92f4bdfd-1c84-4541-bc46-2a65c39de717", "multiverse_ids": [5563], "mtgo_id": 12261, "mtgo_foil_id": 12262, "tcgplayer_id": 7054, "cardmarket_id": 10426, "name": "Steam Blast", "lang": "en", "released_at": "1998-10-12", "uri": "https://api.scryfall.com/cards/144a1b4e-d960-4c3a-810b-11a0c78635ad", "scryfall_uri": "https://scryfall.com/card/usg/219/steam-blast?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/1/4/144a1b4e-d960-4c3a-810b-11a0c78635ad.jpg?1562899291", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/4/144a1b4e-d960-4c3a-810b-11a0c78635ad.jpg?1562899291", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/1/4/144a1b4e-d960-4c3a-810b-11a0c78635ad.jpg?1562899291", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/1/4/144a1b4e-d960-4c3a-810b-11a0c78635ad.png?1562899291", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/4/144a1b4e-d960-4c3a-810b-11a0c78635ad.jpg?1562899291", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/1/4/144a1b4e-d960-4c3a-810b-11a0c78635ad.jpg?1562899291"}, "mana_cost": "{2}{R}", "cmc": 3.0, "type_line": "Sorcery", "oracle_text": "Steam Blast deals 2 damage to each creature and each player.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "c330df40-51db-4caf-bde6-48df6c181001", "set": "usg", "set_name": "Urza's Saga", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/c330df40-51db-4caf-bde6-48df6c181001", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ausg&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/usg?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/144a1b4e-d960-4c3a-810b-11a0c78635ad/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A92f4bdfd-1c84-4541-bc46-2a65c39de717&unique=prints", "collector_number": "219", "digital": false, "rarity": "uncommon", "flavor_text": "The viashino knew of the cracked pipes but deliberately left them unmended to bolster the rig's defenses.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Mike Raabe", "artist_ids": ["d29cd67f-30a7-4fb9-a081-36c3d5982442"], "illustration_id": "9a04d5d2-17eb-4bb2-a39a-ab5622cf5884", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 14377, "penny_rank": 5924, "prices": {"usd": "0.15", "usd_foil": null, "usd_etched": null, "eur": "0.05", "eur_foil": null, "tix": "0.09"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=5563", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Steam+Blast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Steam+Blast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Steam+Blast"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/7054?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Steam+Blast&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/12261?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "4c7065a2-f819-4cbe-b453-a55e904f0461", "oracle_id": "14062abe-14df-4dbe-ad7b-530e5f6c4988", "multiverse_ids": [2489], "tcgplayer_id": 4899, "cardmarket_id": 6265, "name": "Stench of Evil", "lang": "en", "released_at": "1995-06-03", "uri": "https://api.scryfall.com/cards/4c7065a2-f819-4cbe-b453-a55e904f0461", "scryfall_uri": "https://scryfall.com/card/ice/165/stench-of-evil?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/4/c/4c7065a2-f819-4cbe-b453-a55e904f0461.jpg?1562909000", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/c/4c7065a2-f819-4cbe-b453-a55e904f0461.jpg?1562909000", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/4/c/4c7065a2-f819-4cbe-b453-a55e904f0461.jpg?1562909000", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/4/c/4c7065a2-f819-4cbe-b453-a55e904f0461.png?1562909000", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/c/4c7065a2-f819-4cbe-b453-a55e904f0461.jpg?1562909000", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/4/c/4c7065a2-f819-4cbe-b453-a55e904f0461.jpg?1562909000"}, "mana_cost": "{2}{B}{B}", "cmc": 4.0, "type_line": "Sorcery", "oracle_text": "Destroy all Plains. For each land destroyed this way, Stench of Evil deals 1 damage to that land's controller unless they pay {2}.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "b0e08eea-5c01-4406-a6e2-dcd09c5e5b67", "set": "ice", "set_name": "Ice Age", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/b0e08eea-5c01-4406-a6e2-dcd09c5e5b67", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aice&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ice?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/4c7065a2-f819-4cbe-b453-a55e904f0461/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A14062abe-14df-4dbe-ad7b-530e5f6c4988&unique=prints", "collector_number": "165", "digital": false, "rarity": "uncommon", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Mark Tedin", "artist_ids": ["9ee9a9cc-c09e-486f-918b-69f80cbc4188"], "illustration_id": "87b6ecfe-c8e6-4d9b-9f1c-67681b95188c", "border_color": "black", "frame": "1993", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 19975, "prices": {"usd": "0.22", "usd_foil": null, "usd_etched": null, "eur": "0.12", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=2489", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Stench+of+Evil&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Stench+of+Evil&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Stench+of+Evil"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/4899?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Stench+of+Evil&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Stench+of+Evil&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "1d94c000-52e0-4215-83af-6351dc43e636", "oracle_id": "2249001c-08d5-4c0a-86f8-d97519a39f37", "multiverse_ids": [383404], "mtgo_id": 53544, "mtgo_foil_id": 53545, "tcgplayer_id": 91105, "cardmarket_id": 267689, "name": "Stoke the Flames", "lang": "en", "released_at": "2014-07-18", "uri": "https://api.scryfall.com/cards/1d94c000-52e0-4215-83af-6351dc43e636", "scryfall_uri": "https://scryfall.com/card/m15/164/stoke-the-flames?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/1/d/1d94c000-52e0-4215-83af-6351dc43e636.jpg?1562783509", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/d/1d94c000-52e0-4215-83af-6351dc43e636.jpg?1562783509", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/1/d/1d94c000-52e0-4215-83af-6351dc43e636.jpg?1562783509", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/1/d/1d94c000-52e0-4215-83af-6351dc43e636.png?1562783509", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/d/1d94c000-52e0-4215-83af-6351dc43e636.jpg?1562783509", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/1/d/1d94c000-52e0-4215-83af-6351dc43e636.jpg?1562783509"}, "mana_cost": "{2}{R}{R}", "cmc": 4.0, "type_line": "Instant", "oracle_text": "Convoke (Your creatures can help cast this spell. Each creature you tap while casting this spell pays for {1} or one mana of that creature's color.)\nStoke the Flames deals 4 damage to any target.", "colors": ["R"], "color_identity": ["R"], "keywords": ["Convoke"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "6ce49890-3b37-42a5-8932-dbeef1d7b62c", "set": "m15", "set_name": "Magic 2015", "set_type": "core", "set_uri": "https://api.scryfall.com/sets/6ce49890-3b37-42a5-8932-dbeef1d7b62c", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Am15&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/m15?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/1d94c000-52e0-4215-83af-6351dc43e636/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A2249001c-08d5-4c0a-86f8-d97519a39f37&unique=prints", "collector_number": "164", "digital": false, "rarity": "uncommon", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Ryan Barger", "artist_ids": ["a4e0102e-bbeb-497c-babc-1c0741fea914"], "illustration_id": "56a55113-9079-48f1-a686-2c519b47fb7b", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 11175, "penny_rank": 1707, "prices": {"usd": "0.24", "usd_foil": "1.03", "usd_etched": null, "eur": "0.15", "eur_foil": "0.80", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=383404", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Stoke+the+Flames&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Stoke+the+Flames&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Stoke+the+Flames"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/91105?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Stoke+the+Flames&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/53544?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "f5a1071a-c50c-439f-8387-5b2c143e24e4", "oracle_id": "2249001c-08d5-4c0a-86f8-d97519a39f37", "multiverse_ids": [], "tcgplayer_id": 94752, "cardmarket_id": 269746, "name": "Stoke the Flames", "lang": "en", "released_at": "2014-01-01", "uri": "https://api.scryfall.com/cards/f5a1071a-c50c-439f-8387-5b2c143e24e4", "scryfall_uri": "https://scryfall.com/card/f14/12/stoke-the-flames?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/f/5/f5a1071a-c50c-439f-8387-5b2c143e24e4.jpg?1562640134", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/5/f5a1071a-c50c-439f-8387-5b2c143e24e4.jpg?1562640134", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/f/5/f5a1071a-c50c-439f-8387-5b2c143e24e4.jpg?1562640134", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/f/5/f5a1071a-c50c-439f-8387-5b2c143e24e4.png?1562640134", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/5/f5a1071a-c50c-439f-8387-5b2c143e24e4.jpg?1562640134", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/f/5/f5a1071a-c50c-439f-8387-5b2c143e24e4.jpg?1562640134"}, "mana_cost": "{2}{R}{R}", "cmc": 4.0, "type_line": "Instant", "oracle_text": "Convoke (Your creatures can help cast this spell. Each creature you tap while casting this spell pays for {1} or one mana of that creature's color.)\nStoke the Flames deals 4 damage to any target.", "colors": ["R"], "color_identity": ["R"], "keywords": ["Convoke"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": true, "nonfoil": false, "finishes": ["foil"], "oversized": false, "promo": true, "reprint": true, "variation": false, "set_id": "ed1404ce-ac05-4d93-8283-163a50bfc9b5", "set": "f14", "set_name": "Friday Night Magic 2014", "set_type": "promo", "set_uri": "https://api.scryfall.com/sets/ed1404ce-ac05-4d93-8283-163a50bfc9b5", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Af14&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/f14?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/f5a1071a-c50c-439f-8387-5b2c143e24e4/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A2249001c-08d5-4c0a-86f8-d97519a39f37&unique=prints", "collector_number": "12", "digital": false, "rarity": "rare", "watermark": "wotc", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Mathias Kollros", "artist_ids": ["2ae0dd12-047c-4efb-80d7-bccc3bac5fba"], "illustration_id": "982307bb-d44e-42f1-967a-f94c6d13c675", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "promo_types": ["tourney", "fnm"], "edhrec_rank": 11175, "penny_rank": 1707, "prices": {"usd": null, "usd_foil": "0.45", "usd_etched": null, "eur": null, "eur_foil": "0.45", "tix": null}, "related_uris": {"tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Stoke+the+Flames&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Stoke+the+Flames&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Stoke+the+Flames"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/94752?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Stoke+the+Flames&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Stoke+the+Flames&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "e1f08862-5107-46a0-8c14-a961a5c4b135", "oracle_id": "dc17836d-8edf-44bd-a9ee-346d6af25dbf", "multiverse_ids": [10554], "tcgplayer_id": 538, "cardmarket_id": 11276, "name": "Stolen Grain", "lang": "en", "released_at": "1999-07-06", "uri": "https://api.scryfall.com/cards/e1f08862-5107-46a0-8c14-a961a5c4b135", "scryfall_uri": "https://scryfall.com/card/ptk/83/stolen-grain?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/e/1/e1f08862-5107-46a0-8c14-a961a5c4b135.jpg?1562257989", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/1/e1f08862-5107-46a0-8c14-a961a5c4b135.jpg?1562257989", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/e/1/e1f08862-5107-46a0-8c14-a961a5c4b135.jpg?1562257989", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/e/1/e1f08862-5107-46a0-8c14-a961a5c4b135.png?1562257989", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/1/e1f08862-5107-46a0-8c14-a961a5c4b135.jpg?1562257989", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/e/1/e1f08862-5107-46a0-8c14-a961a5c4b135.jpg?1562257989"}, "mana_cost": "{4}{B}{B}", "cmc": 6.0, "type_line": "Sorcery", "oracle_text": "Stolen Grain deals 5 damage to target opponent or planeswalker. You gain 5 life.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "2676ff2e-9d86-4b5b-b935-e84e41b0755e", "set": "ptk", "set_name": "Portal Three Kingdoms", "set_type": "starter", "set_uri": "https://api.scryfall.com/sets/2676ff2e-9d86-4b5b-b935-e84e41b0755e", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aptk&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ptk?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/e1f08862-5107-46a0-8c14-a961a5c4b135/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Adc17836d-8edf-44bd-a9ee-346d6af25dbf&unique=prints", "collector_number": "83", "digital": false, "rarity": "uncommon", "flavor_text": "At the battle of Guandu, Cao Cao defeated Yuan Shao by raiding his grain depot, leaving him with no way to feed his troops.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "LHQ", "artist_ids": ["40404ece-16d6-4d3c-b4d1-fbfe42f9e8f5"], "illustration_id": "5f785d3c-74ef-4a3a-9133-1300283f32d6", "border_color": "white", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 23034, "prices": {"usd": "11.03", "usd_foil": null, "usd_etched": null, "eur": "4.99", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=10554", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Stolen+Grain&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Stolen+Grain&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Stolen+Grain"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/538?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Stolen+Grain&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Stolen+Grain&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "820f1acf-7f0c-4ee5-9f18-b5627aac7c81", "oracle_id": "b8780f7b-3093-4509-9cb9-afa9c5f218fa", "multiverse_ids": [157421], "mtgo_id": 29226, "mtgo_foil_id": 29227, "tcgplayer_id": 18069, "cardmarket_id": 18936, "name": "Stomping Slabs", "lang": "en", "released_at": "2008-02-01", "uri": "https://api.scryfall.com/cards/820f1acf-7f0c-4ee5-9f18-b5627aac7c81", "scryfall_uri": "https://scryfall.com/card/mor/107/stomping-slabs?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/8/2/820f1acf-7f0c-4ee5-9f18-b5627aac7c81.jpg?1562879653", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/2/820f1acf-7f0c-4ee5-9f18-b5627aac7c81.jpg?1562879653", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/8/2/820f1acf-7f0c-4ee5-9f18-b5627aac7c81.jpg?1562879653", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/8/2/820f1acf-7f0c-4ee5-9f18-b5627aac7c81.png?1562879653", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/2/820f1acf-7f0c-4ee5-9f18-b5627aac7c81.jpg?1562879653", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/8/2/820f1acf-7f0c-4ee5-9f18-b5627aac7c81.jpg?1562879653"}, "mana_cost": "{2}{R}", "cmc": 3.0, "type_line": "Sorcery", "oracle_text": "Reveal the top seven cards of your library, then put those cards on the bottom of your library in any order. If a card named Stomping Slabs was revealed this way, Stomping Slabs deals 7 damage to any target.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "c41550df-7b41-41a3-85ab-8612eb2f168f", "set": "mor", "set_name": "Morningtide", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/c41550df-7b41-41a3-85ab-8612eb2f168f", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Amor&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/mor?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/820f1acf-7f0c-4ee5-9f18-b5627aac7c81/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ab8780f7b-3093-4509-9cb9-afa9c5f218fa&unique=prints", "collector_number": "107", "digital": false, "rarity": "uncommon", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Alex Horley-Orlandelli", "artist_ids": ["1631a2ad-bf03-4ab9-b86c-60da982d58a1"], "illustration_id": "e8abec9f-c9d0-4866-be98-e6897db66539", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 21621, "penny_rank": 12585, "prices": {"usd": "0.18", "usd_foil": "0.45", "usd_etched": null, "eur": "0.06", "eur_foil": "0.25", "tix": "0.04"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=157421", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Stomping+Slabs&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Stomping+Slabs&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Stomping+Slabs"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/18069?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Stomping+Slabs&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/29226?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "a2996a63-9fb6-4455-906d-13f917a8bb29", "oracle_id": "9b02fc38-d155-4bde-b8c3-e3b92975cfc5", "multiverse_ids": [9784], "tcgplayer_id": 905, "cardmarket_id": 11945, "name": "Strategy, Schmategy", "lang": "en", "released_at": "1998-08-11", "uri": "https://api.scryfall.com/cards/a2996a63-9fb6-4455-906d-13f917a8bb29", "scryfall_uri": "https://scryfall.com/card/ugl/52/strategy-schmategy?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/a/2/a2996a63-9fb6-4455-906d-13f917a8bb29.jpg?1562799134", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/2/a2996a63-9fb6-4455-906d-13f917a8bb29.jpg?1562799134", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/a/2/a2996a63-9fb6-4455-906d-13f917a8bb29.jpg?1562799134", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/a/2/a2996a63-9fb6-4455-906d-13f917a8bb29.png?1562799134", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/2/a2996a63-9fb6-4455-906d-13f917a8bb29.jpg?1562799134", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/a/2/a2996a63-9fb6-4455-906d-13f917a8bb29.jpg?1562799134"}, "mana_cost": "{1}{R}", "cmc": 2.0, "type_line": "Sorcery", "oracle_text": "Roll a six-sided die. Strategy, Schmategy has the indicated effect.\n1 \u2014 Do nothing.\n2 \u2014 Destroy all artifacts.\n3 \u2014 Destroy all lands.\n4 \u2014 Strategy, Schmategy deals 3 damage to each creature and each player.\n5 \u2014 Each player discards their hand and draws seven cards.\n6 \u2014 Repeat this process two more times.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "not_legal", "pauper": "not_legal", "vintage": "not_legal", "penny": "not_legal", "commander": "not_legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "not_legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "3404fc78-6678-4cf4-bd39-4c0be3bb7baf", "set": "ugl", "set_name": "Unglued", "set_type": "funny", "set_uri": "https://api.scryfall.com/sets/3404fc78-6678-4cf4-bd39-4c0be3bb7baf", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Augl&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ugl?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/a2996a63-9fb6-4455-906d-13f917a8bb29/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A9b02fc38-d155-4bde-b8c3-e3b92975cfc5&unique=prints", "collector_number": "52", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Daniel Gelon", "artist_ids": ["63ac31a8-dd1a-4679-9f82-ece89429a084"], "illustration_id": "6def1c73-f22a-46e6-b4a4-6245bbe2b440", "border_color": "silver", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "prices": {"usd": "2.81", "usd_foil": null, "usd_etched": null, "eur": "5.49", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=9784", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Strategy%2C+Schmategy&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Strategy%2C+Schmategy&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Strategy%2C+Schmategy"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/905?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Strategy%2C+Schmategy&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Strategy%2C+Schmategy&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "d10da484-db67-4afc-90ef-6caf7d2e3a75", "oracle_id": "de97ec82-d09d-440e-8c7d-a3f0fb552418", "multiverse_ids": [366376], "mtgo_id": 47557, "mtgo_foil_id": 47558, "tcgplayer_id": 67499, "cardmarket_id": 260047, "name": "Structural Collapse", "lang": "en", "released_at": "2013-02-01", "uri": "https://api.scryfall.com/cards/d10da484-db67-4afc-90ef-6caf7d2e3a75", "scryfall_uri": "https://scryfall.com/card/gtc/107/structural-collapse?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/d/1/d10da484-db67-4afc-90ef-6caf7d2e3a75.jpg?1561847167", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/1/d10da484-db67-4afc-90ef-6caf7d2e3a75.jpg?1561847167", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/d/1/d10da484-db67-4afc-90ef-6caf7d2e3a75.jpg?1561847167", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/d/1/d10da484-db67-4afc-90ef-6caf7d2e3a75.png?1561847167", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/1/d10da484-db67-4afc-90ef-6caf7d2e3a75.jpg?1561847167", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/d/1/d10da484-db67-4afc-90ef-6caf7d2e3a75.jpg?1561847167"}, "mana_cost": "{5}{R}", "cmc": 6.0, "type_line": "Sorcery", "oracle_text": "Target player sacrifices an artifact and a land. Structural Collapse deals 2 damage to that player.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "035a05f7-e020-4f50-a141-ed16ba704bd2", "set": "gtc", "set_name": "Gatecrash", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/035a05f7-e020-4f50-a141-ed16ba704bd2", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Agtc&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/gtc?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/d10da484-db67-4afc-90ef-6caf7d2e3a75/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ade97ec82-d09d-440e-8c7d-a3f0fb552418&unique=prints", "collector_number": "107", "digital": false, "rarity": "common", "flavor_text": "The Gruul holiday of Rauck-Chauv always ends the same way.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Sam Burley", "artist_ids": ["f89f4b78-cefb-41f7-b7cb-4f4d28de0c4f"], "illustration_id": "c40e3392-e0ab-4ab5-b2ec-96ff2bad5cbf", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 20074, "prices": {"usd": "0.01", "usd_foil": "0.10", "usd_etched": null, "eur": "0.01", "eur_foil": "0.10", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=366376", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Structural+Collapse&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Structural+Collapse&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Structural+Collapse"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/67499?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Structural+Collapse&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/47557?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "a7895890-a774-4c7c-9f15-78b8aadfd9ef", "oracle_id": "bf0b6800-8e6b-4ccd-8e4d-96e61342f981", "multiverse_ids": [409941], "mtgo_id": 60238, "mtgo_foil_id": 60239, "tcgplayer_id": 116470, "cardmarket_id": 289272, "name": "Structural Distortion", "lang": "en", "released_at": "2016-04-08", "uri": "https://api.scryfall.com/cards/a7895890-a774-4c7c-9f15-78b8aadfd9ef", "scryfall_uri": "https://scryfall.com/card/soi/185/structural-distortion?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/a/7/a7895890-a774-4c7c-9f15-78b8aadfd9ef.jpg?1576384931", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/7/a7895890-a774-4c7c-9f15-78b8aadfd9ef.jpg?1576384931", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/a/7/a7895890-a774-4c7c-9f15-78b8aadfd9ef.jpg?1576384931", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/a/7/a7895890-a774-4c7c-9f15-78b8aadfd9ef.png?1576384931", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/7/a7895890-a774-4c7c-9f15-78b8aadfd9ef.jpg?1576384931", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/a/7/a7895890-a774-4c7c-9f15-78b8aadfd9ef.jpg?1576384931"}, "mana_cost": "{3}{R}", "cmc": 4.0, "type_line": "Sorcery", "oracle_text": "Exile target artifact or land. Structural Distortion deals 2 damage to that permanent's controller.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "5e914d7e-c1e9-446c-a33d-d093c02b2743", "set": "soi", "set_name": "Shadows over Innistrad", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/5e914d7e-c1e9-446c-a33d-d093c02b2743", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Asoi&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/soi?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/a7895890-a774-4c7c-9f15-78b8aadfd9ef/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Abf0b6800-8e6b-4ccd-8e4d-96e61342f981&unique=prints", "collector_number": "185", "digital": false, "rarity": "common", "flavor_text": "\"As Zendikar has bled, so will Innistrad. As I have wept, so will Sorin.\"\n\u2014Nahiri", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Jung Park", "artist_ids": ["269392ac-4c06-4650-98e2-d49a5a7f2371"], "illustration_id": "f1a555d1-68da-4b33-969e-be477158a09c", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 15646, "penny_rank": 7518, "prices": {"usd": "0.04", "usd_foil": "0.24", "usd_etched": null, "eur": "0.09", "eur_foil": "0.31", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=409941", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Structural+Distortion&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Structural+Distortion&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Structural+Distortion"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/116470?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Structural+Distortion&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/60238?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "9fcc7ad0-1348-44e9-9782-e9b7fd032fa4", "oracle_id": "7b139231-dcd2-4b03-bcf2-fcb040617b69", "multiverse_ids": [], "tcgplayer_id": 38425, "cardmarket_id": 17739, "name": "Sudden Shock", "lang": "en", "released_at": "2006-10-06", "uri": "https://api.scryfall.com/cards/9fcc7ad0-1348-44e9-9782-e9b7fd032fa4", "scryfall_uri": "https://scryfall.com/card/ptsp/179%E2%98%85/sudden-shock?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/9/f/9fcc7ad0-1348-44e9-9782-e9b7fd032fa4.jpg?1606761799", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/f/9fcc7ad0-1348-44e9-9782-e9b7fd032fa4.jpg?1606761799", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/9/f/9fcc7ad0-1348-44e9-9782-e9b7fd032fa4.jpg?1606761799", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/9/f/9fcc7ad0-1348-44e9-9782-e9b7fd032fa4.png?1606761799", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/f/9fcc7ad0-1348-44e9-9782-e9b7fd032fa4.jpg?1606761799", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/9/f/9fcc7ad0-1348-44e9-9782-e9b7fd032fa4.jpg?1606761799"}, "mana_cost": "{1}{R}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Split second (As long as this spell is on the stack, players can't cast spells or activate abilities that aren't mana abilities.)\nSudden Shock deals 2 damage to any target.", "colors": ["R"], "color_identity": ["R"], "keywords": ["Split second"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": true, "nonfoil": false, "finishes": ["foil"], "oversized": false, "promo": true, "reprint": true, "variation": false, "set_id": "666d27e3-224d-4782-8a00-663c9c352837", "set": "ptsp", "set_name": "Time Spiral Promos", "set_type": "promo", "set_uri": "https://api.scryfall.com/sets/666d27e3-224d-4782-8a00-663c9c352837", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aptsp&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ptsp?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/9fcc7ad0-1348-44e9-9782-e9b7fd032fa4/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A7b139231-dcd2-4b03-bcf2-fcb040617b69&unique=prints", "collector_number": "179\u2605", "digital": false, "rarity": "rare", "watermark": "set", "flavor_text": "Arc mages aren't known for their patience.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Vance Kovacs", "artist_ids": ["b5516011-4722-4fc8-8542-102cecc52b71"], "illustration_id": "9d4ddd99-a8e6-4edf-8aa8-8b8767860c3a", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "promo_types": ["release"], "edhrec_rank": 13238, "penny_rank": 4801, "prices": {"usd": null, "usd_foil": "0.63", "usd_etched": null, "eur": null, "eur_foil": "0.99", "tix": null}, "related_uris": {"tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Sudden+Shock&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Sudden+Shock&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Sudden+Shock"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/38425?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Sudden+Shock&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Sudden+Shock&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "d22104df-8147-45fd-897a-f99a815be062", "oracle_id": "57aeb106-dc4f-4069-b596-f997263dc0cf", "multiverse_ids": [3122], "tcgplayer_id": 4258, "cardmarket_id": 7909, "name": "Suffocation", "lang": "en", "released_at": "1996-06-10", "uri": "https://api.scryfall.com/cards/d22104df-8147-45fd-897a-f99a815be062", "scryfall_uri": "https://scryfall.com/card/all/38/suffocation?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/d/2/d22104df-8147-45fd-897a-f99a815be062.jpg?1562770180", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/2/d22104df-8147-45fd-897a-f99a815be062.jpg?1562770180", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/d/2/d22104df-8147-45fd-897a-f99a815be062.jpg?1562770180", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/d/2/d22104df-8147-45fd-897a-f99a815be062.png?1562770180", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/2/d22104df-8147-45fd-897a-f99a815be062.jpg?1562770180", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/d/2/d22104df-8147-45fd-897a-f99a815be062.jpg?1562770180"}, "mana_cost": "{1}{U}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Cast this spell only if you were dealt damage this turn by a red instant or sorcery spell.\nSuffocation deals 4 damage to the controller of the last red instant or sorcery spell that dealt damage to you this turn.\nDraw a card at the beginning of the next turn's upkeep.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "64987b06-4a5c-443d-b560-ff5691744582", "set": "all", "set_name": "Alliances", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/64987b06-4a5c-443d-b560-ff5691744582", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aall&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/all?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/d22104df-8147-45fd-897a-f99a815be062/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A57aeb106-dc4f-4069-b596-f997263dc0cf&unique=prints", "collector_number": "38", "digital": false, "rarity": "uncommon", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Allen Williams", "artist_ids": ["8a56d854-b424-45ec-9262-e993a382a961"], "illustration_id": "3f53200c-6c36-4346-b5af-f3710e3e6842", "border_color": "black", "frame": "1993", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 23205, "prices": {"usd": "0.12", "usd_foil": null, "usd_etched": null, "eur": "0.08", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=3122", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Suffocation&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Suffocation&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Suffocation"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/4258?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Suffocation&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Suffocation&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "67511e0e-be09-4f4e-9949-b9ecbdc7f536", "oracle_id": "f2b4f37b-270b-4746-83b3-51ff88ee3491", "multiverse_ids": [109685], "mtgo_id": 25495, "mtgo_foil_id": 25496, "tcgplayer_id": 14384, "cardmarket_id": 14003, "name": "Sulfurous Blast", "lang": "en", "released_at": "2006-10-06", "uri": "https://api.scryfall.com/cards/67511e0e-be09-4f4e-9949-b9ecbdc7f536", "scryfall_uri": "https://scryfall.com/card/tsp/180/sulfurous-blast?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/6/7/67511e0e-be09-4f4e-9949-b9ecbdc7f536.jpg?1562916599", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/7/67511e0e-be09-4f4e-9949-b9ecbdc7f536.jpg?1562916599", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/6/7/67511e0e-be09-4f4e-9949-b9ecbdc7f536.jpg?1562916599", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/6/7/67511e0e-be09-4f4e-9949-b9ecbdc7f536.png?1562916599", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/7/67511e0e-be09-4f4e-9949-b9ecbdc7f536.jpg?1562916599", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/6/7/67511e0e-be09-4f4e-9949-b9ecbdc7f536.jpg?1562916599"}, "mana_cost": "{2}{R}{R}", "cmc": 4.0, "type_line": "Instant", "oracle_text": "Sulfurous Blast deals 2 damage to each creature and each player. If you cast this spell during your main phase, Sulfurous Blast deals 3 damage to each creature and each player instead.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "c1d109bc-ffd8-428f-8d7d-3f8d7e648046", "set": "tsp", "set_name": "Time Spiral", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/c1d109bc-ffd8-428f-8d7d-3f8d7e648046", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Atsp&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/tsp?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/67511e0e-be09-4f4e-9949-b9ecbdc7f536/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Af2b4f37b-270b-4746-83b3-51ff88ee3491&unique=prints", "collector_number": "180", "digital": false, "rarity": "uncommon", "flavor_text": "The Keldons used the toxic vents in the cracked earth to bolster their home's defenses.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Jeff Miracola", "artist_ids": ["9b465bde-3656-4495-ace4-af4ce29999ed"], "illustration_id": "f2f7e691-2170-4da0-8edb-321076e4ed67", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 10684, "penny_rank": 5479, "prices": {"usd": "0.10", "usd_foil": "0.62", "usd_etched": null, "eur": "0.10", "eur_foil": "0.20", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=109685", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Sulfurous+Blast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Sulfurous+Blast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Sulfurous+Blast"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/14384?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Sulfurous+Blast&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/25495?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "156994b5-a0f2-4d02-9bda-882e80d9905c", "oracle_id": "3c51b991-f6fa-44d2-81a3-0894939f3c22", "multiverse_ids": [], "tcgplayer_id": 38035, "cardmarket_id": 18279, "name": "Surging Flame", "lang": "en", "released_at": "2006-01-01", "uri": "https://api.scryfall.com/cards/156994b5-a0f2-4d02-9bda-882e80d9905c", "scryfall_uri": "https://scryfall.com/card/pal06/9/surging-flame?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/1/5/156994b5-a0f2-4d02-9bda-882e80d9905c.jpg?1561756701", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/5/156994b5-a0f2-4d02-9bda-882e80d9905c.jpg?1561756701", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/1/5/156994b5-a0f2-4d02-9bda-882e80d9905c.jpg?1561756701", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/1/5/156994b5-a0f2-4d02-9bda-882e80d9905c.png?1561756701", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/5/156994b5-a0f2-4d02-9bda-882e80d9905c.jpg?1561756701", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/1/5/156994b5-a0f2-4d02-9bda-882e80d9905c.jpg?1561756701"}, "mana_cost": "{1}{R}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Ripple 4 (When you cast this spell, you may reveal the top four cards of your library. You may cast spells with the same name as this spell from among those cards without paying their mana costs. Put the rest on the bottom of your library.)\nSurging Flame deals 2 damage to any target.", "colors": ["R"], "color_identity": ["R"], "keywords": ["Ripple"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": true, "nonfoil": false, "finishes": ["foil"], "oversized": false, "promo": true, "reprint": true, "variation": false, "set_id": "db0343a8-d158-41dc-bef4-38477d42a579", "set": "pal06", "set_name": "Arena League 2006", "set_type": "promo", "set_uri": "https://api.scryfall.com/sets/db0343a8-d158-41dc-bef4-38477d42a579", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Apal06&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/pal06?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/156994b5-a0f2-4d02-9bda-882e80d9905c/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A3c51b991-f6fa-44d2-81a3-0894939f3c22&unique=prints", "collector_number": "9", "digital": false, "rarity": "rare", "watermark": "arena", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Ron Spencer", "artist_ids": ["dab52c11-0564-4207-a4a1-c1735c946a65"], "illustration_id": "49a211ee-2060-4c76-97e1-aaa3936f0deb", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "promo_types": ["arenaleague"], "edhrec_rank": 22680, "penny_rank": 11034, "prices": {"usd": null, "usd_foil": "0.52", "usd_etched": null, "eur": null, "eur_foil": "0.30", "tix": null}, "related_uris": {"tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Surging+Flame&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Surging+Flame&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Surging+Flame"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/38035?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Surging+Flame&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Surging+Flame&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "3bdaef0f-9965-463b-902d-72ec24b2db7b", "oracle_id": "d47e55a6-7a16-4ed9-a94b-f1575588ee9e", "multiverse_ids": [39468], "mtgo_id": 17915, "mtgo_foil_id": 17916, "tcgplayer_id": 10574, "cardmarket_id": 1807, "name": "Syphon Soul", "lang": "en", "released_at": "2002-10-07", "uri": "https://api.scryfall.com/cards/3bdaef0f-9965-463b-902d-72ec24b2db7b", "scryfall_uri": "https://scryfall.com/card/ons/176/syphon-soul?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/3/b/3bdaef0f-9965-463b-902d-72ec24b2db7b.jpg?1562909040", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/b/3bdaef0f-9965-463b-902d-72ec24b2db7b.jpg?1562909040", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/3/b/3bdaef0f-9965-463b-902d-72ec24b2db7b.jpg?1562909040", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/3/b/3bdaef0f-9965-463b-902d-72ec24b2db7b.png?1562909040", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/b/3bdaef0f-9965-463b-902d-72ec24b2db7b.jpg?1562909040", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/3/b/3bdaef0f-9965-463b-902d-72ec24b2db7b.jpg?1562909040"}, "mana_cost": "{2}{B}", "cmc": 3.0, "type_line": "Sorcery", "oracle_text": "Syphon Soul deals 2 damage to each other player. You gain life equal to the damage dealt this way.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "914a6c6d-cb3b-45e8-a2db-9978a2339faf", "set": "ons", "set_name": "Onslaught", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/914a6c6d-cb3b-45e8-a2db-9978a2339faf", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aons&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ons?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/3bdaef0f-9965-463b-902d-72ec24b2db7b/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ad47e55a6-7a16-4ed9-a94b-f1575588ee9e&unique=prints", "collector_number": "176", "digital": false, "rarity": "common", "flavor_text": "As Phage drank their energy, a vague memory of Jeska stirred. Then she lost herself again in the joy of her victims' suffering.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Ron Spears", "artist_ids": ["fce9030b-86bd-4439-b06a-920a1eeb184c"], "illustration_id": "6deeddd5-a037-4dc4-8998-bd41f75a3fa4", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 9653, "prices": {"usd": "0.13", "usd_foil": "0.52", "usd_etched": null, "eur": "0.05", "eur_foil": "1.81", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=39468", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Syphon+Soul&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Syphon+Soul&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Syphon+Soul"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/10574?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Syphon+Soul&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/17915?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "f3020304-7a39-411e-b055-3ade72b4bff8", "oracle_id": "d47e55a6-7a16-4ed9-a94b-f1575588ee9e", "multiverse_ids": [1458], "tcgplayer_id": 4037, "cardmarket_id": 7004, "name": "Syphon Soul", "lang": "en", "released_at": "1994-06-01", "uri": "https://api.scryfall.com/cards/f3020304-7a39-411e-b055-3ade72b4bff8", "scryfall_uri": "https://scryfall.com/card/leg/118/syphon-soul?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/f/3/f3020304-7a39-411e-b055-3ade72b4bff8.jpg?1587858372", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/3/f3020304-7a39-411e-b055-3ade72b4bff8.jpg?1587858372", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/f/3/f3020304-7a39-411e-b055-3ade72b4bff8.jpg?1587858372", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/f/3/f3020304-7a39-411e-b055-3ade72b4bff8.png?1587858372", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/3/f3020304-7a39-411e-b055-3ade72b4bff8.jpg?1587858372", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/f/3/f3020304-7a39-411e-b055-3ade72b4bff8.jpg?1587858372"}, "mana_cost": "{2}{B}", "cmc": 3.0, "type_line": "Sorcery", "oracle_text": "Syphon Soul deals 2 damage to each other player. You gain life equal to the damage dealt this way.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "legal", "premodern": "legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "78c50b4b-b220-455b-a2d5-cee458fa56f3", "set": "leg", "set_name": "Legends", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/78c50b4b-b220-455b-a2d5-cee458fa56f3", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aleg&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/leg?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/f3020304-7a39-411e-b055-3ade72b4bff8/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ad47e55a6-7a16-4ed9-a94b-f1575588ee9e&unique=prints", "collector_number": "118", "digital": false, "rarity": "common", "flavor_text": "\"Her lips suck forth; see, where it flies!\"\n\u2014Christopher Marlowe, *The Tragical History of Doctor Faustus*", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Melissa A. Benson", "artist_ids": ["9ade7727-1436-4828-9a1d-487c3d2ad1d9"], "illustration_id": "0bd3f09b-f5b2-42e4-8068-645f42afdcc0", "border_color": "black", "frame": "1993", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 9653, "prices": {"usd": "0.63", "usd_foil": null, "usd_etched": null, "eur": "0.79", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=1458", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Syphon+Soul&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Syphon+Soul&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Syphon+Soul"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/4037?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Syphon+Soul&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Syphon+Soul&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "d13a898e-6a97-4fd9-980e-3bfd8d755386", "oracle_id": "f07b821c-bbc1-4def-b009-6c03689478d0", "multiverse_ids": [139476], "mtgo_id": 28299, "mtgo_foil_id": 28300, "tcgplayer_id": 15651, "cardmarket_id": 17934, "name": "Tarfire", "lang": "en", "released_at": "2007-10-12", "uri": "https://api.scryfall.com/cards/d13a898e-6a97-4fd9-980e-3bfd8d755386", "scryfall_uri": "https://scryfall.com/card/lrw/194/tarfire?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/d/1/d13a898e-6a97-4fd9-980e-3bfd8d755386.jpg?1562369172", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/1/d13a898e-6a97-4fd9-980e-3bfd8d755386.jpg?1562369172", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/d/1/d13a898e-6a97-4fd9-980e-3bfd8d755386.jpg?1562369172", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/d/1/d13a898e-6a97-4fd9-980e-3bfd8d755386.png?1562369172", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/1/d13a898e-6a97-4fd9-980e-3bfd8d755386.jpg?1562369172", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/d/1/d13a898e-6a97-4fd9-980e-3bfd8d755386.jpg?1562369172"}, "mana_cost": "{R}", "cmc": 1.0, "type_line": "Tribal Instant \u2014 Goblin", "oracle_text": "Tarfire deals 2 damage to any target.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "30ec97cb-dca9-4bf4-a98b-310f9d8ceaff", "set": "lrw", "set_name": "Lorwyn", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/30ec97cb-dca9-4bf4-a98b-310f9d8ceaff", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Alrw&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/lrw?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/d13a898e-6a97-4fd9-980e-3bfd8d755386/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Af07b821c-bbc1-4def-b009-6c03689478d0&unique=prints", "collector_number": "194", "digital": false, "rarity": "common", "flavor_text": "\"After Auntie brushed the soot from her eyes, she discovered something wonderful: the fire had turned the goat into something that smelled delicious.\"\n\u2014A tale of Auntie Grub", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Omar Rayyan", "artist_ids": ["256b61a2-b9af-4ff5-b485-47a61818f818"], "illustration_id": "d3c73153-9b56-44d3-82cc-a668b3c3a954", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 10593, "penny_rank": 1359, "prices": {"usd": "0.23", "usd_foil": "16.64", "usd_etched": null, "eur": "0.08", "eur_foil": "9.00", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=139476", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Tarfire&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Tarfire&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Tarfire"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/15651?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Tarfire&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/28299?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "29268cef-da18-4c1d-9066-e0d513a61bf9", "oracle_id": "8e5026da-4859-4f30-824c-a49ac308e91a", "multiverse_ids": [226561], "mtgo_id": 41501, "mtgo_foil_id": 41502, "tcgplayer_id": 47191, "cardmarket_id": 247882, "name": "Taste of Blood", "lang": "en", "released_at": "2011-07-15", "uri": "https://api.scryfall.com/cards/29268cef-da18-4c1d-9066-e0d513a61bf9", "scryfall_uri": "https://scryfall.com/card/m12/113/taste-of-blood?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/2/9/29268cef-da18-4c1d-9066-e0d513a61bf9.jpg?1562636582", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/9/29268cef-da18-4c1d-9066-e0d513a61bf9.jpg?1562636582", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/2/9/29268cef-da18-4c1d-9066-e0d513a61bf9.jpg?1562636582", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/2/9/29268cef-da18-4c1d-9066-e0d513a61bf9.png?1562636582", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/9/29268cef-da18-4c1d-9066-e0d513a61bf9.jpg?1562636582", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/2/9/29268cef-da18-4c1d-9066-e0d513a61bf9.jpg?1562636582"}, "mana_cost": "{B}", "cmc": 1.0, "type_line": "Sorcery", "oracle_text": "Taste of Blood deals 1 damage to target player or planeswalker and you gain 1 life.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "5cdd2643-229c-4441-a62a-c34e4b531e1c", "set": "m12", "set_name": "Magic 2012", "set_type": "core", "set_uri": "https://api.scryfall.com/sets/5cdd2643-229c-4441-a62a-c34e4b531e1c", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Am12&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/m12?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/29268cef-da18-4c1d-9066-e0d513a61bf9/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A8e5026da-4859-4f30-824c-a49ac308e91a&unique=prints", "collector_number": "113", "digital": false, "rarity": "common", "flavor_text": "\"How blessed are some people, whose lives have no fears, no dreads, to whom sleep is a blessing that comes nightly, and brings nothing but sweet dreams.\"\n\u2014Bram Stoker, *Dracula*", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Howard Lyon", "artist_ids": ["6dd06426-59fe-4b9c-aad5-6da8446a5c3d"], "illustration_id": "8d19ee2d-4d11-4444-b3ec-4cd1bb40b901", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 19359, "penny_rank": 13743, "prices": {"usd": "0.04", "usd_foil": "0.24", "usd_etched": null, "eur": "0.03", "eur_foil": "0.40", "tix": "0.04"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=226561", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Taste+of+Blood&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Taste+of+Blood&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Taste+of+Blood"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/47191?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Taste+of+Blood&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/41501?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "88a85be1-9de5-4f96-9fd1-15f3f17c4bea", "oracle_id": "b4f31434-b7c4-489b-9385-70ee0cc3125e", "multiverse_ids": [130338], "mtgo_id": 26686, "mtgo_foil_id": 26687, "tcgplayer_id": 15007, "cardmarket_id": 15116, "name": "Thunderblade Charge", "lang": "en", "released_at": "2007-05-04", "uri": "https://api.scryfall.com/cards/88a85be1-9de5-4f96-9fd1-15f3f17c4bea", "scryfall_uri": "https://scryfall.com/card/fut/124/thunderblade-charge?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/8/8/88a85be1-9de5-4f96-9fd1-15f3f17c4bea.jpg?1562922621", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/8/88a85be1-9de5-4f96-9fd1-15f3f17c4bea.jpg?1562922621", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/8/8/88a85be1-9de5-4f96-9fd1-15f3f17c4bea.jpg?1562922621", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/8/8/88a85be1-9de5-4f96-9fd1-15f3f17c4bea.png?1562922621", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/8/88a85be1-9de5-4f96-9fd1-15f3f17c4bea.jpg?1562922621", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/8/8/88a85be1-9de5-4f96-9fd1-15f3f17c4bea.jpg?1562922621"}, "mana_cost": "{1}{R}{R}", "cmc": 3.0, "type_line": "Sorcery", "oracle_text": "Thunderblade Charge deals 3 damage to any target.\nWhenever one or more creatures you control deal combat damage to a player, if Thunderblade Charge is in your graveyard, you may pay {2}{R}{R}{R}. If you do, you may cast it without paying its mana cost.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "bf951ddb-4445-4923-87cb-3fe4ac3c6b9a", "set": "fut", "set_name": "Future Sight", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/bf951ddb-4445-4923-87cb-3fe4ac3c6b9a", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Afut&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/fut?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/88a85be1-9de5-4f96-9fd1-15f3f17c4bea/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ab4f31434-b7c4-489b-9385-70ee0cc3125e&unique=prints", "collector_number": "124", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Justin Murray", "artist_ids": ["73920db8-778a-4dfa-99b7-99e8219ca0d8"], "illustration_id": "169cba16-ae60-4b0e-8955-351349aae524", "border_color": "black", "frame": "future", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 20878, "penny_rank": 3587, "prices": {"usd": "0.23", "usd_foil": "1.24", "usd_etched": null, "eur": "0.10", "eur_foil": "0.50", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=130338", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Thunderblade+Charge&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Thunderblade+Charge&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Thunderblade+Charge"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/15007?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Thunderblade+Charge&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/26686?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "5845a5bc-6b7d-4bbb-80b3-a0f877b95553", "oracle_id": "6ffae2fa-511a-45bf-93c4-5d53c85324f5", "multiverse_ids": [240001], "mtgo_id": 43877, "mtgo_foil_id": 43878, "tcgplayer_id": 58955, "cardmarket_id": 254688, "name": "Thunderbolt", "lang": "en", "released_at": "2012-05-04", "uri": "https://api.scryfall.com/cards/5845a5bc-6b7d-4bbb-80b3-a0f877b95553", "scryfall_uri": "https://scryfall.com/card/avr/159/thunderbolt?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/5/8/5845a5bc-6b7d-4bbb-80b3-a0f877b95553.jpg?1592709223", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/8/5845a5bc-6b7d-4bbb-80b3-a0f877b95553.jpg?1592709223", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/5/8/5845a5bc-6b7d-4bbb-80b3-a0f877b95553.jpg?1592709223", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/5/8/5845a5bc-6b7d-4bbb-80b3-a0f877b95553.png?1592709223", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/8/5845a5bc-6b7d-4bbb-80b3-a0f877b95553.jpg?1592709223", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/5/8/5845a5bc-6b7d-4bbb-80b3-a0f877b95553.jpg?1592709223"}, "mana_cost": "{1}{R}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Choose one \u2014\n\u2022 Thunderbolt deals 3 damage to target player or planeswalker.\n\u2022 Thunderbolt deals 4 damage to target creature with flying.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "039810a9-92d7-4f2d-b2d0-ca661ac586c0", "set": "avr", "set_name": "Avacyn Restored", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/039810a9-92d7-4f2d-b2d0-ca661ac586c0", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aavr&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/avr?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/5845a5bc-6b7d-4bbb-80b3-a0f877b95553/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A6ffae2fa-511a-45bf-93c4-5d53c85324f5&unique=prints", "collector_number": "159", "digital": false, "rarity": "common", "flavor_text": "\"My next aerial design will use less metal.\"\n\u2014Hadaken, alchemist of Nephalia", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Anthony Francisco", "artist_ids": ["6ac24c4b-70e9-4286-8f4b-b40c92ab5847"], "illustration_id": "b45d095f-601a-407e-b9c3-4ebe13181262", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 14545, "penny_rank": 5185, "prices": {"usd": "0.07", "usd_foil": "0.19", "usd_etched": null, "eur": "0.03", "eur_foil": "0.20", "tix": "0.04"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=240001", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Thunderbolt&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Thunderbolt&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Thunderbolt"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/58955?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Thunderbolt&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/43877?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "a0a4b641-2eb3-482b-91a1-236ebe2a7a41", "oracle_id": "6ffae2fa-511a-45bf-93c4-5d53c85324f5", "multiverse_ids": [4561], "mtgo_id": 9205, "mtgo_foil_id": 9206, "tcgplayer_id": 6114, "cardmarket_id": 8683, "name": "Thunderbolt", "lang": "en", "released_at": "1997-06-09", "uri": "https://api.scryfall.com/cards/a0a4b641-2eb3-482b-91a1-236ebe2a7a41", "scryfall_uri": "https://scryfall.com/card/wth/115/thunderbolt?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/a/0/a0a4b641-2eb3-482b-91a1-236ebe2a7a41.jpg?1562802418", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/0/a0a4b641-2eb3-482b-91a1-236ebe2a7a41.jpg?1562802418", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/a/0/a0a4b641-2eb3-482b-91a1-236ebe2a7a41.jpg?1562802418", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/a/0/a0a4b641-2eb3-482b-91a1-236ebe2a7a41.png?1562802418", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/0/a0a4b641-2eb3-482b-91a1-236ebe2a7a41.jpg?1562802418", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/a/0/a0a4b641-2eb3-482b-91a1-236ebe2a7a41.jpg?1562802418"}, "mana_cost": "{1}{R}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Choose one \u2014\n\u2022 Thunderbolt deals 3 damage to target player or planeswalker.\n\u2022 Thunderbolt deals 4 damage to target creature with flying.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "700997ac-add2-4ce2-992e-5efa0fdfc0e9", "set": "wth", "set_name": "Weatherlight", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/700997ac-add2-4ce2-992e-5efa0fdfc0e9", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Awth&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/wth?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/a0a4b641-2eb3-482b-91a1-236ebe2a7a41/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A6ffae2fa-511a-45bf-93c4-5d53c85324f5&unique=prints", "collector_number": "115", "digital": false, "rarity": "common", "flavor_text": "\"Most wizards consider a thunderbolt to be a proper retort.\"\n\u2014Ertai, wizard adept", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Dylan Martens", "artist_ids": ["50b5c58a-32b0-48b6-bb85-d897f277d90e"], "illustration_id": "61a08778-b165-45c1-99b0-9018f954e3c8", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 14545, "penny_rank": 5185, "prices": {"usd": "0.10", "usd_foil": null, "usd_etched": null, "eur": "0.15", "eur_foil": null, "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=4561", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Thunderbolt&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Thunderbolt&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Thunderbolt"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/6114?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Thunderbolt&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/9205?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "daa39826-7f89-41cb-a7fe-7f7be817d5cd", "oracle_id": "78260893-c443-44c8-ab45-ce86ef347d98", "multiverse_ids": [239985], "mtgo_id": 43859, "mtgo_foil_id": 43860, "tcgplayer_id": 58182, "cardmarket_id": 254195, "name": "Thunderous Wrath", "lang": "en", "released_at": "2012-05-04", "uri": "https://api.scryfall.com/cards/daa39826-7f89-41cb-a7fe-7f7be817d5cd", "scryfall_uri": "https://scryfall.com/card/avr/160/thunderous-wrath?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/d/a/daa39826-7f89-41cb-a7fe-7f7be817d5cd.jpg?1592709229", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/a/daa39826-7f89-41cb-a7fe-7f7be817d5cd.jpg?1592709229", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/d/a/daa39826-7f89-41cb-a7fe-7f7be817d5cd.jpg?1592709229", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/d/a/daa39826-7f89-41cb-a7fe-7f7be817d5cd.png?1592709229", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/a/daa39826-7f89-41cb-a7fe-7f7be817d5cd.jpg?1592709229", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/d/a/daa39826-7f89-41cb-a7fe-7f7be817d5cd.jpg?1592709229"}, "mana_cost": "{4}{R}{R}", "cmc": 6.0, "type_line": "Instant", "oracle_text": "Thunderous Wrath deals 5 damage to any target.\nMiracle {R} (You may cast this card for its miracle cost when you draw it if it's the first card you drew this turn.)", "colors": ["R"], "color_identity": ["R"], "keywords": ["Miracle"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "039810a9-92d7-4f2d-b2d0-ca661ac586c0", "set": "avr", "set_name": "Avacyn Restored", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/039810a9-92d7-4f2d-b2d0-ca661ac586c0", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aavr&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/avr?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/daa39826-7f89-41cb-a7fe-7f7be817d5cd/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A78260893-c443-44c8-ab45-ce86ef347d98&unique=prints", "collector_number": "160", "digital": false, "rarity": "uncommon", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Adam Paquette", "artist_ids": ["89023dad-e6c0-41e0-83fb-eb2bfbbdc3f2"], "illustration_id": "17d1ca65-482e-489a-9295-a14df7c9c33a", "border_color": "black", "frame": "2003", "frame_effects": ["miracle"], "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 13072, "penny_rank": 2162, "prices": {"usd": "0.11", "usd_foil": "1.32", "usd_etched": null, "eur": "0.08", "eur_foil": "0.99", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=239985", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Thunderous+Wrath&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Thunderous+Wrath&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Thunderous+Wrath"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/58182?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Thunderous+Wrath&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/43859?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "b1b0f9ca-b752-4dd6-982b-06bb3a27ddbc", "oracle_id": "0a0be326-643f-449f-a7ff-13b5ae569f20", "multiverse_ids": [152552], "mtgo_id": 29000, "mtgo_foil_id": 29001, "tcgplayer_id": 18080, "cardmarket_id": 18939, "name": "Titan's Revenge", "lang": "en", "released_at": "2008-02-01", "uri": "https://api.scryfall.com/cards/b1b0f9ca-b752-4dd6-982b-06bb3a27ddbc", "scryfall_uri": "https://scryfall.com/card/mor/110/titans-revenge?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/b/1/b1b0f9ca-b752-4dd6-982b-06bb3a27ddbc.jpg?1562880793", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/1/b1b0f9ca-b752-4dd6-982b-06bb3a27ddbc.jpg?1562880793", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/b/1/b1b0f9ca-b752-4dd6-982b-06bb3a27ddbc.jpg?1562880793", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/b/1/b1b0f9ca-b752-4dd6-982b-06bb3a27ddbc.png?1562880793", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/1/b1b0f9ca-b752-4dd6-982b-06bb3a27ddbc.jpg?1562880793", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/b/1/b1b0f9ca-b752-4dd6-982b-06bb3a27ddbc.jpg?1562880793"}, "mana_cost": "{X}{R}{R}", "cmc": 2.0, "type_line": "Sorcery", "oracle_text": "Titan's Revenge deals X damage to any target. Clash with an opponent. If you win, return Titan's Revenge to its owner's hand. (Each clashing player reveals the top card of their library, then puts that card on the top or bottom. A player wins if their card had a higher mana value.)", "colors": ["R"], "color_identity": ["R"], "keywords": ["Clash"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "c41550df-7b41-41a3-85ab-8612eb2f168f", "set": "mor", "set_name": "Morningtide", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/c41550df-7b41-41a3-85ab-8612eb2f168f", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Amor&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/mor?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/b1b0f9ca-b752-4dd6-982b-06bb3a27ddbc/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A0a0be326-643f-449f-a7ff-13b5ae569f20&unique=prints", "collector_number": "110", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Christopher Moeller", "artist_ids": ["21e10012-06ae-44f2-b38d-3824dd2e73d4"], "illustration_id": "cfae9993-9571-443c-81c4-70d8c7df617f", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 16786, "penny_rank": 13407, "prices": {"usd": "0.23", "usd_foil": "1.00", "usd_etched": null, "eur": "0.11", "eur_foil": "0.75", "tix": "0.01"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=152552", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Titan%27s+Revenge&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Titan%27s+Revenge&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Titan%27s+Revenge"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/18080?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Titan%27s+Revenge&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/29000?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "0fe46ef0-86f6-42f7-b78e-a148d7f00456", "oracle_id": "758cc195-b54b-4dfa-89fd-3cfe2ba973b6", "multiverse_ids": [], "tcgplayer_id": 231490, "name": "Torn Between Heads", "lang": "en", "released_at": "2013-10-19", "uri": "https://api.scryfall.com/cards/0fe46ef0-86f6-42f7-b78e-a148d7f00456", "scryfall_uri": "https://scryfall.com/card/tfth/14/torn-between-heads?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/0/f/0fe46ef0-86f6-42f7-b78e-a148d7f00456.jpg?1562639675", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/f/0fe46ef0-86f6-42f7-b78e-a148d7f00456.jpg?1562639675", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/0/f/0fe46ef0-86f6-42f7-b78e-a148d7f00456.jpg?1562639675", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/0/f/0fe46ef0-86f6-42f7-b78e-a148d7f00456.png?1562639675", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/f/0fe46ef0-86f6-42f7-b78e-a148d7f00456.jpg?1562639675", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/0/f/0fe46ef0-86f6-42f7-b78e-a148d7f00456.jpg?1562639675"}, "mana_cost": "", "cmc": 0.0, "type_line": "Sorcery", "oracle_text": "Tap up to two Heads. They don't untap during the Hydra's next untap step. Torn Between Heads deals 5 damage to each player.", "colors": [], "color_identity": [], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "not_legal", "pauper": "not_legal", "vintage": "not_legal", "penny": "not_legal", "commander": "not_legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "not_legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "7d4d5ad5-9936-419c-a278-529d560589e7", "set": "tfth", "set_name": "Face the Hydra", "set_type": "token", "set_uri": "https://api.scryfall.com/sets/7d4d5ad5-9936-419c-a278-529d560589e7", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Atfth&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/tfth?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/0fe46ef0-86f6-42f7-b78e-a148d7f00456/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A758cc195-b54b-4dfa-89fd-3cfe2ba973b6&unique=prints", "collector_number": "14", "digital": false, "rarity": "common", "card_back_id": "f833d8b0-cc49-43db-a532-063453499528", "artist": "Mike Sass", "artist_ids": ["155bc2cb-038d-4b1f-9990-6178db1d1a21"], "illustration_id": "851ea66b-bd4f-4ed2-9d00-dc7fe0272adb", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "promo_types": ["instore"], "prices": {"usd": "0.25", "usd_foil": null, "usd_etched": null, "eur": null, "eur_foil": null, "tix": null}, "related_uris": {"tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Torn+Between+Heads&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Torn+Between+Heads&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Torn+Between+Heads"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/231490?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Torn+Between+Heads&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Torn+Between+Heads&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "a49c658f-e657-490b-af1f-e67e48d0046e", "oracle_id": "52a768eb-16eb-4643-b8be-7a4b5b32f28b", "multiverse_ids": [2491], "tcgplayer_id": 4922, "cardmarket_id": 6267, "name": "Touch of Death", "lang": "en", "released_at": "1995-06-03", "uri": "https://api.scryfall.com/cards/a49c658f-e657-490b-af1f-e67e48d0046e", "scryfall_uri": "https://scryfall.com/card/ice/167/touch-of-death?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/a/4/a49c658f-e657-490b-af1f-e67e48d0046e.jpg?1562925773", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/4/a49c658f-e657-490b-af1f-e67e48d0046e.jpg?1562925773", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/a/4/a49c658f-e657-490b-af1f-e67e48d0046e.jpg?1562925773", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/a/4/a49c658f-e657-490b-af1f-e67e48d0046e.png?1562925773", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/4/a49c658f-e657-490b-af1f-e67e48d0046e.jpg?1562925773", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/a/4/a49c658f-e657-490b-af1f-e67e48d0046e.jpg?1562925773"}, "mana_cost": "{2}{B}", "cmc": 3.0, "type_line": "Sorcery", "oracle_text": "Touch of Death deals 1 damage to target player or planeswalker. You gain 1 life.\nDraw a card at the beginning of the next turn's upkeep.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "b0e08eea-5c01-4406-a6e2-dcd09c5e5b67", "set": "ice", "set_name": "Ice Age", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/b0e08eea-5c01-4406-a6e2-dcd09c5e5b67", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aice&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ice?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/a49c658f-e657-490b-af1f-e67e48d0046e/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A52a768eb-16eb-4643-b8be-7a4b5b32f28b&unique=prints", "collector_number": "167", "digital": false, "rarity": "common", "flavor_text": "\"What was yours is mine. Your land, your people, and now your life.\"\n\u2014Lim-D\u00fbl, the Necromancer", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Melissa A. Benson", "artist_ids": ["9ade7727-1436-4828-9a1d-487c3d2ad1d9"], "illustration_id": "6bb11f5f-ed61-48a9-8113-9c68824aaf72", "border_color": "black", "frame": "1993", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 21109, "prices": {"usd": "0.09", "usd_foil": null, "usd_etched": null, "eur": "0.09", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=2491", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Touch+of+Death&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Touch+of+Death&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Touch+of+Death"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/4922?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Touch+of+Death&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Touch+of+Death&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "006ead4a-dc57-4856-8e13-235ba55483e6", "oracle_id": "6b530534-5c02-4874-9256-501102ef8a5f", "multiverse_ids": [402074], "mtgo_id": 58435, "mtgo_foil_id": 58436, "tcgplayer_id": 105699, "cardmarket_id": 284882, "name": "Touch of the Void", "lang": "en", "released_at": "2015-10-02", "uri": "https://api.scryfall.com/cards/006ead4a-dc57-4856-8e13-235ba55483e6", "scryfall_uri": "https://scryfall.com/card/bfz/134/touch-of-the-void?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/0/0/006ead4a-dc57-4856-8e13-235ba55483e6.jpg?1562895118", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/0/006ead4a-dc57-4856-8e13-235ba55483e6.jpg?1562895118", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/0/0/006ead4a-dc57-4856-8e13-235ba55483e6.jpg?1562895118", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/0/0/006ead4a-dc57-4856-8e13-235ba55483e6.png?1562895118", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/0/006ead4a-dc57-4856-8e13-235ba55483e6.jpg?1562895118", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/0/0/006ead4a-dc57-4856-8e13-235ba55483e6.jpg?1562895118"}, "mana_cost": "{2}{R}", "cmc": 3.0, "type_line": "Sorcery", "oracle_text": "Devoid (This card has no color.)\nTouch of the Void deals 3 damage to any target. If a creature dealt damage this way would die this turn, exile it instead.", "colors": [], "color_identity": ["R"], "keywords": ["Devoid"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "91719374-7ac5-4afa-ada8-5da964dcf1d4", "set": "bfz", "set_name": "Battle for Zendikar", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/91719374-7ac5-4afa-ada8-5da964dcf1d4", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Abfz&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/bfz?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/006ead4a-dc57-4856-8e13-235ba55483e6/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A6b530534-5c02-4874-9256-501102ef8a5f&unique=prints", "collector_number": "134", "digital": false, "rarity": "common", "flavor_text": "Some wounds never heal.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "David Gaillet", "artist_ids": ["3496c5b4-57bf-4e5e-8bac-a1e05a911a2d"], "illustration_id": "fc186e1b-e57a-4bcd-8822-c09574364ee1", "border_color": "black", "frame": "2015", "frame_effects": ["devoid"], "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 18613, "penny_rank": 9994, "prices": {"usd": "0.03", "usd_foil": "0.17", "usd_etched": null, "eur": "0.02", "eur_foil": "0.05", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=402074", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Touch+of+the+Void&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Touch+of+the+Void&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Touch+of+the+Void"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/105699?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Touch+of+the+Void&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/58435?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "751e2700-6425-45b8-b026-8c78098f08b2", "oracle_id": "04e9ac31-3377-4a4c-9337-53ee0ada882a", "multiverse_ids": [158746], "mtgo_id": 29801, "mtgo_foil_id": 29802, "tcgplayer_id": 18826, "cardmarket_id": 19214, "name": "Traitor's Roar", "lang": "en", "released_at": "2008-05-02", "uri": "https://api.scryfall.com/cards/751e2700-6425-45b8-b026-8c78098f08b2", "scryfall_uri": "https://scryfall.com/card/shm/200/traitors-roar?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/7/5/751e2700-6425-45b8-b026-8c78098f08b2.jpg?1562831801", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/5/751e2700-6425-45b8-b026-8c78098f08b2.jpg?1562831801", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/7/5/751e2700-6425-45b8-b026-8c78098f08b2.jpg?1562831801", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/7/5/751e2700-6425-45b8-b026-8c78098f08b2.png?1562831801", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/5/751e2700-6425-45b8-b026-8c78098f08b2.jpg?1562831801", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/7/5/751e2700-6425-45b8-b026-8c78098f08b2.jpg?1562831801"}, "mana_cost": "{4}{B/R}", "cmc": 5.0, "type_line": "Sorcery", "oracle_text": "Tap target untapped creature. It deals damage equal to its power to its controller.\nConspire (As you cast this spell, you may tap two untapped creatures you control that share a color with it. When you do, copy it and you may choose a new target for the copy.)", "colors": ["B", "R"], "color_identity": ["B", "R"], "keywords": ["Conspire"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "c18c0ba1-2081-4808-9b2e-549bc3a666f3", "set": "shm", "set_name": "Shadowmoor", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/c18c0ba1-2081-4808-9b2e-549bc3a666f3", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ashm&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/shm?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/751e2700-6425-45b8-b026-8c78098f08b2/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A04e9ac31-3377-4a4c-9337-53ee0ada882a&unique=prints", "collector_number": "200", "digital": false, "rarity": "common", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Jim Pavelec", "artist_ids": ["1431bdd4-c187-40ea-847a-e1dcd835598a"], "illustration_id": "483121f7-29c2-4b67-ab22-d6c8c0c2f08a", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 20031, "penny_rank": 12294, "prices": {"usd": "0.11", "usd_foil": "0.31", "usd_etched": null, "eur": "0.15", "eur_foil": "0.15", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=158746", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Traitor%27s+Roar&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Traitor%27s+Roar&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Traitor%27s+Roar"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/18826?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Traitor%27s+Roar&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/29801?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "07fafa53-1e22-43f5-abf3-bbab8130f84d", "oracle_id": "c82eda61-d195-49c9-8ff0-a78dfa650689", "multiverse_ids": [370362], "mtgo_id": 48898, "mtgo_foil_id": 48899, "tcgplayer_id": 68398, "cardmarket_id": 262090, "name": "Tribal Flames", "lang": "en", "released_at": "2013-06-07", "uri": "https://api.scryfall.com/cards/07fafa53-1e22-43f5-abf3-bbab8130f84d", "scryfall_uri": "https://scryfall.com/card/mma/138/tribal-flames?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/0/7/07fafa53-1e22-43f5-abf3-bbab8130f84d.jpg?1561966002", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/7/07fafa53-1e22-43f5-abf3-bbab8130f84d.jpg?1561966002", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/0/7/07fafa53-1e22-43f5-abf3-bbab8130f84d.jpg?1561966002", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/0/7/07fafa53-1e22-43f5-abf3-bbab8130f84d.png?1561966002", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/7/07fafa53-1e22-43f5-abf3-bbab8130f84d.jpg?1561966002", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/0/7/07fafa53-1e22-43f5-abf3-bbab8130f84d.jpg?1561966002"}, "mana_cost": "{1}{R}", "cmc": 2.0, "type_line": "Sorcery", "oracle_text": "Domain \u2014 Tribal Flames deals X damage to any target, where X is the number of basic land types among lands you control.", "colors": ["R"], "color_identity": ["R"], "keywords": ["Domain"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "0b7020f2-336d-4706-9ce6-f6710b9ebd5c", "set": "mma", "set_name": "Modern Masters", "set_type": "masters", "set_uri": "https://api.scryfall.com/sets/0b7020f2-336d-4706-9ce6-f6710b9ebd5c", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Amma&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/mma?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/07fafa53-1e22-43f5-abf3-bbab8130f84d/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ac82eda61-d195-49c9-8ff0-a78dfa650689&unique=prints", "collector_number": "138", "digital": false, "rarity": "uncommon", "flavor_text": "\"Fire is the universal language.\"\n\u2014Jhoira, master artificer", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Zack Stella", "artist_ids": ["17bc7f55-958b-43f4-bb40-09746d05b3f9"], "illustration_id": "adc25137-f86a-46b9-a025-253807ba14b9", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 19238, "penny_rank": 3175, "prices": {"usd": "0.18", "usd_foil": "0.60", "usd_etched": null, "eur": "0.19", "eur_foil": "0.29", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=370362", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Tribal+Flames&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Tribal+Flames&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Tribal+Flames"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/68398?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Tribal+Flames&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/48898?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "9b32531e-c759-4603-abd0-1724e8df70db", "oracle_id": "c82eda61-d195-49c9-8ff0-a78dfa650689", "multiverse_ids": [23076], "mtgo_id": 14689, "mtgo_foil_id": 14690, "tcgplayer_id": 7715, "cardmarket_id": 3707, "name": "Tribal Flames", "lang": "en", "released_at": "2000-10-02", "uri": "https://api.scryfall.com/cards/9b32531e-c759-4603-abd0-1724e8df70db", "scryfall_uri": "https://scryfall.com/card/inv/176/tribal-flames?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/9/b/9b32531e-c759-4603-abd0-1724e8df70db.jpg?1562926326", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/b/9b32531e-c759-4603-abd0-1724e8df70db.jpg?1562926326", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/9/b/9b32531e-c759-4603-abd0-1724e8df70db.jpg?1562926326", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/9/b/9b32531e-c759-4603-abd0-1724e8df70db.png?1562926326", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/b/9b32531e-c759-4603-abd0-1724e8df70db.jpg?1562926326", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/9/b/9b32531e-c759-4603-abd0-1724e8df70db.jpg?1562926326"}, "mana_cost": "{1}{R}", "cmc": 2.0, "type_line": "Sorcery", "oracle_text": "Domain \u2014 Tribal Flames deals X damage to any target, where X is the number of basic land types among lands you control.", "colors": ["R"], "color_identity": ["R"], "keywords": ["Domain"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "b9ae5e02-7726-47ca-b5e4-5ec402b41cd1", "set": "inv", "set_name": "Invasion", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/b9ae5e02-7726-47ca-b5e4-5ec402b41cd1", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ainv&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/inv?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/9b32531e-c759-4603-abd0-1724e8df70db/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ac82eda61-d195-49c9-8ff0-a78dfa650689&unique=prints", "collector_number": "176", "digital": false, "rarity": "common", "flavor_text": "\"Fire is the universal language.\"\n\u2014Jhoira, master artificer", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Tony Szczudlo", "artist_ids": ["1952c90b-a5a7-4328-9f7c-e11064f59daf"], "illustration_id": "c4bece79-2651-43d2-bd4e-d2fe375e07ae", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 19238, "penny_rank": 3175, "prices": {"usd": "0.19", "usd_foil": "13.47", "usd_etched": null, "eur": "0.25", "eur_foil": "16.95", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=23076", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Tribal+Flames&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Tribal+Flames&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Tribal+Flames"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/7715?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Tribal+Flames&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/14689?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "7a61b274-0499-4cb6-a2e4-f5e18ad7fd2d", "oracle_id": "ebb5b792-3906-4cb5-b8f9-063f94c9d135", "multiverse_ids": [435326], "mtgo_id": 65360, "mtgo_foil_id": 65361, "arena_id": 66309, "tcgplayer_id": 144884, "cardmarket_id": 301301, "name": "Unfriendly Fire", "lang": "en", "released_at": "2017-09-29", "uri": "https://api.scryfall.com/cards/7a61b274-0499-4cb6-a2e4-f5e18ad7fd2d", "scryfall_uri": "https://scryfall.com/card/xln/172/unfriendly-fire?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/7/a/7a61b274-0499-4cb6-a2e4-f5e18ad7fd2d.jpg?1562558512", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/a/7a61b274-0499-4cb6-a2e4-f5e18ad7fd2d.jpg?1562558512", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/7/a/7a61b274-0499-4cb6-a2e4-f5e18ad7fd2d.jpg?1562558512", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/7/a/7a61b274-0499-4cb6-a2e4-f5e18ad7fd2d.png?1562558512", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/a/7a61b274-0499-4cb6-a2e4-f5e18ad7fd2d.jpg?1562558512", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/7/a/7a61b274-0499-4cb6-a2e4-f5e18ad7fd2d.jpg?1562558512"}, "mana_cost": "{4}{R}", "cmc": 5.0, "type_line": "Instant", "oracle_text": "Unfriendly Fire deals 4 damage to any target.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "fe0dad85-54bc-4151-9200-d68da84dd0f2", "set": "xln", "set_name": "Ixalan", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/fe0dad85-54bc-4151-9200-d68da84dd0f2", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Axln&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/xln?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/7a61b274-0499-4cb6-a2e4-f5e18ad7fd2d/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aebb5b792-3906-4cb5-b8f9-063f94c9d135&unique=prints", "collector_number": "172", "digital": false, "rarity": "common", "flavor_text": "Disputes within the Brazen Coalition can escalate from insult to broadside in the blink of an eye.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Josu Hernaiz", "artist_ids": ["74246024-92b4-43d0-a5af-a3f9f2a35d5f"], "illustration_id": "65367f56-1c76-416a-b150-07f873ad36e6", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 19240, "penny_rank": 8062, "prices": {"usd": "0.01", "usd_foil": "0.08", "usd_etched": null, "eur": "0.01", "eur_foil": "0.18", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=435326", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Unfriendly+Fire&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Unfriendly+Fire&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Unfriendly+Fire"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/144884?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Unfriendly+Fire&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/65360?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "16ad8f86-7860-4896-a161-07bf347bbd5b", "oracle_id": "eaa2ff39-c3cf-428b-a2f1-a6a99a2c806b", "multiverse_ids": [417760], "mtgo_id": 62031, "mtgo_foil_id": 62032, "tcgplayer_id": 122744, "cardmarket_id": 292598, "name": "Unlicensed Disintegration", "lang": "en", "released_at": "2016-09-30", "uri": "https://api.scryfall.com/cards/16ad8f86-7860-4896-a161-07bf347bbd5b", "scryfall_uri": "https://scryfall.com/card/kld/187/unlicensed-disintegration?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/1/6/16ad8f86-7860-4896-a161-07bf347bbd5b.jpg?1576382889", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/6/16ad8f86-7860-4896-a161-07bf347bbd5b.jpg?1576382889", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/1/6/16ad8f86-7860-4896-a161-07bf347bbd5b.jpg?1576382889", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/1/6/16ad8f86-7860-4896-a161-07bf347bbd5b.png?1576382889", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/6/16ad8f86-7860-4896-a161-07bf347bbd5b.jpg?1576382889", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/1/6/16ad8f86-7860-4896-a161-07bf347bbd5b.jpg?1576382889"}, "mana_cost": "{1}{B}{R}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Destroy target creature. If you control an artifact, Unlicensed Disintegration deals 3 damage to that creature's controller.", "colors": ["B", "R"], "color_identity": ["B", "R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "d667e468-be8f-411f-a030-473d148deb74", "set": "kld", "set_name": "Kaladesh", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/d667e468-be8f-411f-a030-473d148deb74", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Akld&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/kld?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/16ad8f86-7860-4896-a161-07bf347bbd5b/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aeaa2ff39-c3cf-428b-a2f1-a6a99a2c806b&unique=prints", "collector_number": "187", "digital": false, "rarity": "uncommon", "flavor_text": "\"I'd stand back if I were you.\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Izzy", "artist_ids": ["2c3d2473-ff5d-4309-8194-e0b2def2ab65"], "illustration_id": "d32c7d79-43da-4df8-bd27-78089fbbe544", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 5164, "penny_rank": 1824, "prices": {"usd": "0.08", "usd_foil": "0.22", "usd_etched": null, "eur": "0.09", "eur_foil": "0.19", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=417760", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Unlicensed+Disintegration&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Unlicensed+Disintegration&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Unlicensed+Disintegration"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/122744?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Unlicensed+Disintegration&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/62031?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "74843584-d6b1-4ee6-bedb-999ab0a42bb9", "oracle_id": "eaa2ff39-c3cf-428b-a2f1-a6a99a2c806b", "multiverse_ids": [], "tcgplayer_id": 129534, "cardmarket_id": 295482, "name": "Unlicensed Disintegration", "lang": "en", "released_at": "2017-01-01", "uri": "https://api.scryfall.com/cards/74843584-d6b1-4ee6-bedb-999ab0a42bb9", "scryfall_uri": "https://scryfall.com/card/f17/5/unlicensed-disintegration?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/7/4/74843584-d6b1-4ee6-bedb-999ab0a42bb9.jpg?1562636815", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/4/74843584-d6b1-4ee6-bedb-999ab0a42bb9.jpg?1562636815", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/7/4/74843584-d6b1-4ee6-bedb-999ab0a42bb9.jpg?1562636815", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/7/4/74843584-d6b1-4ee6-bedb-999ab0a42bb9.png?1562636815", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/4/74843584-d6b1-4ee6-bedb-999ab0a42bb9.jpg?1562636815", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/7/4/74843584-d6b1-4ee6-bedb-999ab0a42bb9.jpg?1562636815"}, "mana_cost": "{1}{B}{R}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Destroy target creature. If you control an artifact, Unlicensed Disintegration deals 3 damage to that creature's controller.", "colors": ["B", "R"], "color_identity": ["B", "R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": true, "nonfoil": false, "finishes": ["foil"], "oversized": false, "promo": true, "reprint": true, "variation": false, "set_id": "690dae5c-2de4-4071-b77c-19883791f987", "set": "f17", "set_name": "Friday Night Magic 2017", "set_type": "promo", "set_uri": "https://api.scryfall.com/sets/690dae5c-2de4-4071-b77c-19883791f987", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Af17&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/f17?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/74843584-d6b1-4ee6-bedb-999ab0a42bb9/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aeaa2ff39-c3cf-428b-a2f1-a6a99a2c806b&unique=prints", "collector_number": "5", "digital": false, "rarity": "rare", "watermark": "wotc", "flavor_text": "\"I'd stand back if I were you.\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Florian de Gesincourt", "artist_ids": ["f28c54ff-bbe3-485d-81a4-b2cb49430a52"], "illustration_id": "6b9290ca-4de2-4620-ab95-76a263cc147d", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "promo_types": ["tourney", "fnm"], "edhrec_rank": 5164, "penny_rank": 1824, "prices": {"usd": null, "usd_foil": "0.27", "usd_etched": null, "eur": null, "eur_foil": "0.26", "tix": null}, "related_uris": {"tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Unlicensed+Disintegration&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Unlicensed+Disintegration&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Unlicensed+Disintegration"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/129534?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Unlicensed+Disintegration&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Unlicensed+Disintegration&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "71bdd944-e86c-4e5e-b75c-9bbf4fb27ccd", "oracle_id": "a500313b-35e3-4ebc-9144-e9486784757b", "multiverse_ids": [3419], "mtgo_id": 7399, "mtgo_foil_id": 7400, "tcgplayer_id": 5277, "cardmarket_id": 8199, "name": "Unyaro Bee Sting", "lang": "en", "released_at": "1996-10-08", "uri": "https://api.scryfall.com/cards/71bdd944-e86c-4e5e-b75c-9bbf4fb27ccd", "scryfall_uri": "https://scryfall.com/card/mir/250/unyaro-bee-sting?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/7/1/71bdd944-e86c-4e5e-b75c-9bbf4fb27ccd.jpg?1562720215", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/1/71bdd944-e86c-4e5e-b75c-9bbf4fb27ccd.jpg?1562720215", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/7/1/71bdd944-e86c-4e5e-b75c-9bbf4fb27ccd.jpg?1562720215", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/7/1/71bdd944-e86c-4e5e-b75c-9bbf4fb27ccd.png?1562720215", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/1/71bdd944-e86c-4e5e-b75c-9bbf4fb27ccd.jpg?1562720215", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/7/1/71bdd944-e86c-4e5e-b75c-9bbf4fb27ccd.jpg?1562720215"}, "mana_cost": "{3}{G}", "cmc": 4.0, "type_line": "Sorcery", "oracle_text": "Unyaro Bee Sting deals 2 damage to any target.", "colors": ["G"], "color_identity": ["G"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "5f06acf3-8123-4a78-b2e7-089b0b775a4a", "set": "mir", "set_name": "Mirage", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/5f06acf3-8123-4a78-b2e7-089b0b775a4a", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Amir&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/mir?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/71bdd944-e86c-4e5e-b75c-9bbf4fb27ccd/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aa500313b-35e3-4ebc-9144-e9486784757b&unique=prints", "collector_number": "250", "digital": false, "rarity": "uncommon", "flavor_text": "\"Much can be learned from the bees about dying for a cause.\"\n\u2014Asmira, Holy Avenger", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Pat Morrissey", "artist_ids": ["3130411f-ddd5-4cab-a2f4-0a9c3b95a26e"], "illustration_id": "dc0c44cb-de9a-4a4c-a0bf-9aee9682eab8", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 22757, "prices": {"usd": "0.12", "usd_foil": null, "usd_etched": null, "eur": "0.25", "eur_foil": null, "tix": "0.11"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=3419", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Unyaro+Bee+Sting&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Unyaro+Bee+Sting&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Unyaro+Bee+Sting"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/5277?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Unyaro+Bee+Sting&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/7399?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "774c52e2-b0d1-4b70-b6d1-bf98f6298603", "oracle_id": "363f8c66-fe0c-44b9-987d-1d160e3f9c54", "multiverse_ids": [207886], "mtgo_id": 35477, "mtgo_foil_id": 35478, "tcgplayer_id": 36909, "cardmarket_id": 22328, "name": "Urza's Rage", "lang": "en", "released_at": "2010-03-19", "uri": "https://api.scryfall.com/cards/774c52e2-b0d1-4b70-b6d1-bf98f6298603", "scryfall_uri": "https://scryfall.com/card/dde/36/urzas-rage?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/7/7/774c52e2-b0d1-4b70-b6d1-bf98f6298603.jpg?1562917055", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/7/774c52e2-b0d1-4b70-b6d1-bf98f6298603.jpg?1562917055", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/7/7/774c52e2-b0d1-4b70-b6d1-bf98f6298603.jpg?1562917055", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/7/7/774c52e2-b0d1-4b70-b6d1-bf98f6298603.png?1562917055", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/7/774c52e2-b0d1-4b70-b6d1-bf98f6298603.jpg?1562917055", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/7/7/774c52e2-b0d1-4b70-b6d1-bf98f6298603.jpg?1562917055"}, "mana_cost": "{2}{R}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Kicker {8}{R} (You may pay an additional {8}{R} as you cast this spell.)\nThis spell can't be countered.\nUrza's Rage deals 3 damage to any target. If this spell was kicked, instead it deals 10 damage to that permanent or player and the damage can't be prevented.", "colors": ["R"], "color_identity": ["R"], "keywords": ["Kicker"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": false, "finishes": ["foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "bf561626-56ca-4eb0-a2de-b84dbe7874f8", "set": "dde", "set_name": "Duel Decks: Phyrexia vs. the Coalition", "set_type": "duel_deck", "set_uri": "https://api.scryfall.com/sets/bf561626-56ca-4eb0-a2de-b84dbe7874f8", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Adde&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/dde?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/774c52e2-b0d1-4b70-b6d1-bf98f6298603/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A363f8c66-fe0c-44b9-987d-1d160e3f9c54&unique=prints", "collector_number": "36", "digital": false, "rarity": "mythic", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Jim Murray", "artist_ids": ["1c906f9b-5bbe-4643-8f5c-90eb1c7f0c43"], "illustration_id": "ebe20070-0d3d-4681-bcd6-2bd9b3db9502", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "edhrec_rank": 9245, "penny_rank": 7418, "prices": {"usd": null, "usd_foil": "0.18", "usd_etched": null, "eur": null, "eur_foil": "0.15", "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=207886", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Urza%27s+Rage&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Urza%27s+Rage&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Urza%27s+Rage"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/36909?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Urza%27s+Rage&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/35477?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "61a25a35-3ae4-471e-adcd-d8baf2f77b68", "oracle_id": "363f8c66-fe0c-44b9-987d-1d160e3f9c54", "multiverse_ids": [23087], "mtgo_id": 14365, "mtgo_foil_id": 14366, "tcgplayer_id": 7731, "cardmarket_id": 3723, "name": "Urza's Rage", "lang": "en", "released_at": "2000-10-02", "uri": "https://api.scryfall.com/cards/61a25a35-3ae4-471e-adcd-d8baf2f77b68", "scryfall_uri": "https://scryfall.com/card/inv/178/urzas-rage?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/6/1/61a25a35-3ae4-471e-adcd-d8baf2f77b68.jpg?1562914759", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/1/61a25a35-3ae4-471e-adcd-d8baf2f77b68.jpg?1562914759", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/6/1/61a25a35-3ae4-471e-adcd-d8baf2f77b68.jpg?1562914759", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/6/1/61a25a35-3ae4-471e-adcd-d8baf2f77b68.png?1562914759", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/1/61a25a35-3ae4-471e-adcd-d8baf2f77b68.jpg?1562914759", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/6/1/61a25a35-3ae4-471e-adcd-d8baf2f77b68.jpg?1562914759"}, "mana_cost": "{2}{R}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Kicker {8}{R} (You may pay an additional {8}{R} as you cast this spell.)\nThis spell can't be countered.\nUrza's Rage deals 3 damage to any target. If this spell was kicked, instead it deals 10 damage to that permanent or player and the damage can't be prevented.", "colors": ["R"], "color_identity": ["R"], "keywords": ["Kicker"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "b9ae5e02-7726-47ca-b5e4-5ec402b41cd1", "set": "inv", "set_name": "Invasion", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/b9ae5e02-7726-47ca-b5e4-5ec402b41cd1", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ainv&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/inv?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/61a25a35-3ae4-471e-adcd-d8baf2f77b68/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A363f8c66-fe0c-44b9-987d-1d160e3f9c54&unique=prints", "collector_number": "178", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Matthew D. Wilson", "artist_ids": ["4fbafd13-0cf9-42a1-870d-7f8ea276f140"], "illustration_id": "114cb9c1-f611-4d20-8004-a691cbd4824a", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 9245, "penny_rank": 7418, "prices": {"usd": "1.02", "usd_foil": "103.00", "usd_etched": null, "eur": "0.25", "eur_foil": "34.99", "tix": "0.10"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=23087", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Urza%27s+Rage&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Urza%27s+Rage&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Urza%27s+Rage"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/7731?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Urza%27s+Rage&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/14365?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "d80e9897-d84c-4992-9e8e-3a00f377c7e5", "oracle_id": "363f8c66-fe0c-44b9-987d-1d160e3f9c54", "multiverse_ids": [517597], "mtgo_id": 89151, "arena_id": 77526, "tcgplayer_id": 235232, "tcgplayer_etched_id": 235233, "cardmarket_id": 556465, "name": "Urza's Rage", "lang": "en", "released_at": "2021-04-23", "uri": "https://api.scryfall.com/cards/d80e9897-d84c-4992-9e8e-3a00f377c7e5", "scryfall_uri": "https://scryfall.com/card/sta/47/urzas-rage?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/d/8/d80e9897-d84c-4992-9e8e-3a00f377c7e5.jpg?1623945800", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/8/d80e9897-d84c-4992-9e8e-3a00f377c7e5.jpg?1623945800", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/d/8/d80e9897-d84c-4992-9e8e-3a00f377c7e5.jpg?1623945800", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/d/8/d80e9897-d84c-4992-9e8e-3a00f377c7e5.png?1623945800", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/8/d80e9897-d84c-4992-9e8e-3a00f377c7e5.jpg?1623945800", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/d/8/d80e9897-d84c-4992-9e8e-3a00f377c7e5.jpg?1623945800"}, "mana_cost": "{2}{R}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Kicker {8}{R} (You may pay an additional {8}{R} as you cast this spell.)\nThis spell can't be countered.\nUrza's Rage deals 3 damage to any target. If this spell was kicked, instead it deals 10 damage to that permanent or player and the damage can't be prevented.", "colors": ["R"], "color_identity": ["R"], "keywords": ["Kicker"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil", "etched"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "5064a720-907f-4cb6-a425-766dc1dd7374", "set": "sta", "set_name": "Strixhaven Mystical Archive", "set_type": "masterpiece", "set_uri": "https://api.scryfall.com/sets/5064a720-907f-4cb6-a425-766dc1dd7374", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Asta&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/sta?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/d80e9897-d84c-4992-9e8e-3a00f377c7e5/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A363f8c66-fe0c-44b9-987d-1d160e3f9c54&unique=prints", "collector_number": "47", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Dominik Mayer", "artist_ids": ["c3439c4a-1fee-4e33-9b89-18dac27ac927"], "illustration_id": "92997071-6bc3-4299-9a2f-38db5efa846b", "border_color": "borderless", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "edhrec_rank": 9245, "penny_rank": 7418, "preview": {"source": "The Vorthos Cast", "source_uri": "https://twitter.com/TheVorthosCast/status/1375160560405291010", "previewed_at": "2021-03-25"}, "prices": {"usd": "0.11", "usd_foil": "0.31", "usd_etched": "0.36", "eur": "0.17", "eur_foil": "0.48", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=517597", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Urza%27s+Rage&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Urza%27s+Rage&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Urza%27s+Rage"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/235232?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Urza%27s+Rage&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/89151?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "19500ffb-bfad-46d6-8a6e-d134405959c0", "oracle_id": "1980ca2e-a415-4de1-ac30-7055507e82a2", "multiverse_ids": [4243], "tcgplayer_id": 807, "cardmarket_id": 10022, "name": "Vampiric Feast", "lang": "en", "released_at": "1997-05-01", "uri": "https://api.scryfall.com/cards/19500ffb-bfad-46d6-8a6e-d134405959c0", "scryfall_uri": "https://scryfall.com/card/por/114/vampiric-feast?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/1/9/19500ffb-bfad-46d6-8a6e-d134405959c0.jpg?1562445680", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/9/19500ffb-bfad-46d6-8a6e-d134405959c0.jpg?1562445680", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/1/9/19500ffb-bfad-46d6-8a6e-d134405959c0.jpg?1562445680", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/1/9/19500ffb-bfad-46d6-8a6e-d134405959c0.png?1562445680", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/9/19500ffb-bfad-46d6-8a6e-d134405959c0.jpg?1562445680", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/1/9/19500ffb-bfad-46d6-8a6e-d134405959c0.jpg?1562445680"}, "mana_cost": "{5}{B}{B}", "cmc": 7.0, "type_line": "Sorcery", "oracle_text": "Vampiric Feast deals 4 damage to any target and you gain 4 life.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "478c47df-5058-4ce6-830e-7e80732b2ca9", "set": "por", "set_name": "Portal", "set_type": "starter", "set_uri": "https://api.scryfall.com/sets/478c47df-5058-4ce6-830e-7e80732b2ca9", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Apor&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/por?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/19500ffb-bfad-46d6-8a6e-d134405959c0/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A1980ca2e-a415-4de1-ac30-7055507e82a2&unique=prints", "collector_number": "114", "digital": false, "rarity": "uncommon", "flavor_text": "It's not always gold the thief is after.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "D. Alexander Gregory", "artist_ids": ["38433e15-f0f5-4223-a985-2d13c4aa0922"], "illustration_id": "ab43c843-2e2c-4f1f-87cf-f20d11d07743", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 21894, "prices": {"usd": "0.25", "usd_foil": null, "usd_etched": null, "eur": "0.32", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=4243", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Vampiric+Feast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Vampiric+Feast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Vampiric+Feast"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/807?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Vampiric+Feast&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Vampiric+Feast&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "231f7598-8c47-4828-8240-e2a545a7ac5b", "oracle_id": "b701378f-681b-4840-bd11-1a97c2a675f2", "multiverse_ids": [4244], "tcgplayer_id": 808, "cardmarket_id": 10023, "name": "Vampiric Touch", "lang": "en", "released_at": "1997-05-01", "uri": "https://api.scryfall.com/cards/231f7598-8c47-4828-8240-e2a545a7ac5b", "scryfall_uri": "https://scryfall.com/card/por/115/vampiric-touch?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/2/3/231f7598-8c47-4828-8240-e2a545a7ac5b.jpg?1562445697", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/3/231f7598-8c47-4828-8240-e2a545a7ac5b.jpg?1562445697", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/2/3/231f7598-8c47-4828-8240-e2a545a7ac5b.jpg?1562445697", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/2/3/231f7598-8c47-4828-8240-e2a545a7ac5b.png?1562445697", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/3/231f7598-8c47-4828-8240-e2a545a7ac5b.jpg?1562445697", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/2/3/231f7598-8c47-4828-8240-e2a545a7ac5b.jpg?1562445697"}, "mana_cost": "{2}{B}", "cmc": 3.0, "type_line": "Sorcery", "oracle_text": "Vampiric Touch deals 2 damage to target opponent or planeswalker and you gain 2 life.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "478c47df-5058-4ce6-830e-7e80732b2ca9", "set": "por", "set_name": "Portal", "set_type": "starter", "set_uri": "https://api.scryfall.com/sets/478c47df-5058-4ce6-830e-7e80732b2ca9", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Apor&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/por?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/231f7598-8c47-4828-8240-e2a545a7ac5b/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ab701378f-681b-4840-bd11-1a97c2a675f2&unique=prints", "collector_number": "115", "digital": false, "rarity": "common", "flavor_text": "A touch, not comforting, but of death.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Zina Saunders", "artist_ids": ["eff6a2bb-7ca1-432e-8af9-aa85ee2359a2"], "illustration_id": "61838462-c3d9-4f27-83e7-4f29ef23cb79", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 21498, "prices": {"usd": "0.08", "usd_foil": null, "usd_etched": null, "eur": "0.10", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=4244", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Vampiric+Touch&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Vampiric+Touch&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Vampiric+Touch"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/808?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Vampiric+Touch&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Vampiric+Touch&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "b1939952-608e-4786-beeb-a6ff0fa36624", "oracle_id": "55b72b1f-6463-406a-8824-d99a3c028285", "multiverse_ids": [452839], "mtgo_id": 69551, "arena_id": 68550, "tcgplayer_id": 176940, "cardmarket_id": 364277, "name": "Vicious Rumors", "lang": "en", "released_at": "2018-10-05", "uri": "https://api.scryfall.com/cards/b1939952-608e-4786-beeb-a6ff0fa36624", "scryfall_uri": "https://scryfall.com/card/grn/89/vicious-rumors?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/b/1/b1939952-608e-4786-beeb-a6ff0fa36624.jpg?1572893079", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/1/b1939952-608e-4786-beeb-a6ff0fa36624.jpg?1572893079", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/b/1/b1939952-608e-4786-beeb-a6ff0fa36624.jpg?1572893079", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/b/1/b1939952-608e-4786-beeb-a6ff0fa36624.png?1572893079", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/1/b1939952-608e-4786-beeb-a6ff0fa36624.jpg?1572893079", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/b/1/b1939952-608e-4786-beeb-a6ff0fa36624.jpg?1572893079"}, "mana_cost": "{B}", "cmc": 1.0, "type_line": "Sorcery", "oracle_text": "Vicious Rumors deals 1 damage to each opponent. Each opponent discards a card, then mills a card. You gain 1 life.", "colors": ["B"], "color_identity": ["B"], "keywords": ["Mill"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "597c6d4a-8212-4903-a6af-12c4ae9e13f0", "set": "grn", "set_name": "Guilds of Ravnica", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/597c6d4a-8212-4903-a6af-12c4ae9e13f0", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Agrn&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/grn?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/b1939952-608e-4786-beeb-a6ff0fa36624/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A55b72b1f-6463-406a-8824-d99a3c028285&unique=prints", "collector_number": "89", "digital": false, "rarity": "common", "flavor_text": "\"The alliances were already frayed. All we do is find the loose threads and pluck.\"\n\u2014Lazav", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "David Palumbo", "artist_ids": ["04ce1c75-e30c-4b7a-8cb0-b53e4ecc2f39"], "illustration_id": "b53b8452-9ef2-4e3a-9a8d-188476aad173", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 3329, "penny_rank": 4045, "prices": {"usd": "0.19", "usd_foil": "3.47", "usd_etched": null, "eur": "0.06", "eur_foil": "0.60", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=452839", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Vicious+Rumors&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Vicious+Rumors&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Vicious+Rumors"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/176940?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Vicious+Rumors&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/69551?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "65536d12-e75c-42b5-b592-a3ad4f550a71", "oracle_id": "bd6ce147-c991-40ac-b276-65b630fad8b6", "multiverse_ids": [180274], "mtgo_id": 31913, "mtgo_foil_id": 31914, "tcgplayer_id": 28629, "cardmarket_id": 20717, "name": "Volcanic Fallout", "lang": "en", "released_at": "2009-02-06", "uri": "https://api.scryfall.com/cards/65536d12-e75c-42b5-b592-a3ad4f550a71", "scryfall_uri": "https://scryfall.com/card/con/74/volcanic-fallout?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/6/5/65536d12-e75c-42b5-b592-a3ad4f550a71.jpg?1592485188", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/5/65536d12-e75c-42b5-b592-a3ad4f550a71.jpg?1592485188", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/6/5/65536d12-e75c-42b5-b592-a3ad4f550a71.jpg?1592485188", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/6/5/65536d12-e75c-42b5-b592-a3ad4f550a71.png?1592485188", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/5/65536d12-e75c-42b5-b592-a3ad4f550a71.jpg?1592485188", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/6/5/65536d12-e75c-42b5-b592-a3ad4f550a71.jpg?1592485188"}, "mana_cost": "{1}{R}{R}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "This spell can't be countered.\nVolcanic Fallout deals 2 damage to each creature and each player.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "76b2db58-904c-4e49-8580-9f62f7b3cca4", "set": "con", "set_name": "Conflux", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/76b2db58-904c-4e49-8580-9f62f7b3cca4", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Acon&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/con?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/65536d12-e75c-42b5-b592-a3ad4f550a71/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Abd6ce147-c991-40ac-b276-65b630fad8b6&unique=prints", "collector_number": "74", "digital": false, "rarity": "uncommon", "flavor_text": "\"How can we outrun the sky?\"\n\u2014Hadran, sunseeder of Naya", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Zoltan Boros & Gabor Szikszai", "artist_ids": ["1885e6cb-c827-4896-994e-3d0a027d602f", "44c3877f-8771-43dc-9e40-f4c765f59d2e"], "illustration_id": "adca87ed-ee51-460b-9ebc-346597307238", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 4704, "penny_rank": 3434, "prices": {"usd": "0.17", "usd_foil": "0.64", "usd_etched": null, "eur": "0.19", "eur_foil": "0.75", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=180274", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Volcanic+Fallout&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Volcanic+Fallout&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Volcanic+Fallout"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/28629?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Volcanic+Fallout&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/31913?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "8d3a69d2-518d-4b70-a03e-6d02a525f9ad", "oracle_id": "bd6ce147-c991-40ac-b276-65b630fad8b6", "multiverse_ids": [], "tcgplayer_id": 38343, "cardmarket_id": 22117, "name": "Volcanic Fallout", "lang": "en", "released_at": "2010-01-01", "uri": "https://api.scryfall.com/cards/8d3a69d2-518d-4b70-a03e-6d02a525f9ad", "scryfall_uri": "https://scryfall.com/card/p10/5/volcanic-fallout?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/8/d/8d3a69d2-518d-4b70-a03e-6d02a525f9ad.jpg?1561757550", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/d/8d3a69d2-518d-4b70-a03e-6d02a525f9ad.jpg?1561757550", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/8/d/8d3a69d2-518d-4b70-a03e-6d02a525f9ad.jpg?1561757550", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/8/d/8d3a69d2-518d-4b70-a03e-6d02a525f9ad.png?1561757550", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/d/8d3a69d2-518d-4b70-a03e-6d02a525f9ad.jpg?1561757550", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/8/d/8d3a69d2-518d-4b70-a03e-6d02a525f9ad.jpg?1561757550"}, "mana_cost": "{1}{R}{R}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "This spell can't be countered.\nVolcanic Fallout deals 2 damage to each creature and each player.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": true, "reprint": true, "variation": false, "set_id": "d871e33b-7086-4549-89d6-fedd4422161f", "set": "p10", "set_name": "Magic Player Rewards 2010", "set_type": "promo", "set_uri": "https://api.scryfall.com/sets/d871e33b-7086-4549-89d6-fedd4422161f", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ap10&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/p10?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/8d3a69d2-518d-4b70-a03e-6d02a525f9ad/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Abd6ce147-c991-40ac-b276-65b630fad8b6&unique=prints", "collector_number": "5", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Jim Pavelec", "artist_ids": ["1431bdd4-c187-40ea-847a-e1dcd835598a"], "illustration_id": "b66d7940-699e-4b3b-bab2-db833ceb8996", "border_color": "black", "frame": "2003", "full_art": true, "textless": true, "booster": false, "story_spotlight": false, "promo_types": ["playerrewards"], "edhrec_rank": 4704, "penny_rank": 3434, "prices": {"usd": "1.03", "usd_foil": null, "usd_etched": null, "eur": "0.75", "eur_foil": null, "tix": null}, "related_uris": {"tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Volcanic+Fallout&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Volcanic+Fallout&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Volcanic+Fallout"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/38343?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Volcanic+Fallout&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Volcanic+Fallout&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "df5bab70-3c28-48db-9ed3-64706f64f4fa", "oracle_id": "846a4f9c-d955-403f-8a08-5c7c3d32e180", "multiverse_ids": [276214], "mtgo_id": 45666, "mtgo_foil_id": 45667, "tcgplayer_id": 60004, "cardmarket_id": 257103, "name": "Volcanic Geyser", "lang": "en", "released_at": "2012-07-13", "uri": "https://api.scryfall.com/cards/df5bab70-3c28-48db-9ed3-64706f64f4fa", "scryfall_uri": "https://scryfall.com/card/m13/154/volcanic-geyser?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/d/f/df5bab70-3c28-48db-9ed3-64706f64f4fa.jpg?1562560984", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/f/df5bab70-3c28-48db-9ed3-64706f64f4fa.jpg?1562560984", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/d/f/df5bab70-3c28-48db-9ed3-64706f64f4fa.jpg?1562560984", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/d/f/df5bab70-3c28-48db-9ed3-64706f64f4fa.png?1562560984", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/f/df5bab70-3c28-48db-9ed3-64706f64f4fa.jpg?1562560984", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/d/f/df5bab70-3c28-48db-9ed3-64706f64f4fa.jpg?1562560984"}, "mana_cost": "{X}{R}{R}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Volcanic Geyser deals X damage to any target.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "f9b0c6f4-8a4f-4f36-ad3c-e1e16fb8535d", "set": "m13", "set_name": "Magic 2013", "set_type": "core", "set_uri": "https://api.scryfall.com/sets/f9b0c6f4-8a4f-4f36-ad3c-e1e16fb8535d", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Am13&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/m13?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/df5bab70-3c28-48db-9ed3-64706f64f4fa/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A846a4f9c-d955-403f-8a08-5c7c3d32e180&unique=prints", "collector_number": "154", "digital": false, "rarity": "uncommon", "flavor_text": "\"The mountain's fire surges beneath your feet, demanding release. Can you not feel it?\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Clint Cearley", "artist_ids": ["03b75350-d5a0-4e3a-b3b4-8d4a5554385b"], "illustration_id": "ca58a328-5ef0-46a0-9312-3ec177189417", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 8259, "penny_rank": 2688, "prices": {"usd": "0.02", "usd_foil": "0.22", "usd_etched": null, "eur": "0.02", "eur_foil": "0.49", "tix": "0.04"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=276214", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Volcanic+Geyser&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Volcanic+Geyser&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Volcanic+Geyser"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/60004?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Volcanic+Geyser&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/45666?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "911787db-9023-46f8-9501-3ad26b6ca51d", "oracle_id": "846a4f9c-d955-403f-8a08-5c7c3d32e180", "multiverse_ids": [3473], "mtgo_id": 7419, "mtgo_foil_id": 7420, "tcgplayer_id": 5287, "cardmarket_id": 8253, "name": "Volcanic Geyser", "lang": "en", "released_at": "1996-10-08", "uri": "https://api.scryfall.com/cards/911787db-9023-46f8-9501-3ad26b6ca51d", "scryfall_uri": "https://scryfall.com/card/mir/202/volcanic-geyser?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/9/1/911787db-9023-46f8-9501-3ad26b6ca51d.jpg?1562720483", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/1/911787db-9023-46f8-9501-3ad26b6ca51d.jpg?1562720483", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/9/1/911787db-9023-46f8-9501-3ad26b6ca51d.jpg?1562720483", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/9/1/911787db-9023-46f8-9501-3ad26b6ca51d.png?1562720483", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/1/911787db-9023-46f8-9501-3ad26b6ca51d.jpg?1562720483", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/9/1/911787db-9023-46f8-9501-3ad26b6ca51d.jpg?1562720483"}, "mana_cost": "{X}{R}{R}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Volcanic Geyser deals X damage to any target.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "5f06acf3-8123-4a78-b2e7-089b0b775a4a", "set": "mir", "set_name": "Mirage", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/5f06acf3-8123-4a78-b2e7-089b0b775a4a", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Amir&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/mir?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/911787db-9023-46f8-9501-3ad26b6ca51d/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A846a4f9c-d955-403f-8a08-5c7c3d32e180&unique=prints", "collector_number": "202", "digital": false, "rarity": "uncommon", "flavor_text": "My thunder comes before the lightning; my lightning comes before the clouds; my rain dries all the land it touches. What am I?\n\u2014Femeref riddle", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "David O'Connor", "artist_ids": ["bd8dcf6f-4ab3-4854-bfb0-f2e21610fc16"], "illustration_id": "3fb659a8-20cb-453d-b3fc-a4dda1ec39de", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 8259, "penny_rank": 2688, "prices": {"usd": "0.15", "usd_foil": null, "usd_etched": null, "eur": "0.49", "eur_foil": null, "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=3473", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Volcanic+Geyser&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Volcanic+Geyser&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Volcanic+Geyser"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/5287?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Volcanic+Geyser&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/7419?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "f8d93606-4864-4a5f-bcbf-8638211e979d", "oracle_id": "98fa5a06-0553-40fd-999c-bc31c9b3f4db", "multiverse_ids": [30171], "mtgo_id": 16030, "mtgo_foil_id": 16031, "tcgplayer_id": 3140, "cardmarket_id": 2988, "name": "Volcanic Hammer", "lang": "en", "released_at": "2001-04-11", "uri": "https://api.scryfall.com/cards/f8d93606-4864-4a5f-bcbf-8638211e979d", "scryfall_uri": "https://scryfall.com/card/7ed/226/volcanic-hammer?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/f/8/f8d93606-4864-4a5f-bcbf-8638211e979d.jpg?1562251759", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/8/f8d93606-4864-4a5f-bcbf-8638211e979d.jpg?1562251759", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/f/8/f8d93606-4864-4a5f-bcbf-8638211e979d.jpg?1562251759", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/f/8/f8d93606-4864-4a5f-bcbf-8638211e979d.png?1562251759", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/8/f8d93606-4864-4a5f-bcbf-8638211e979d.jpg?1562251759", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/f/8/f8d93606-4864-4a5f-bcbf-8638211e979d.jpg?1562251759"}, "mana_cost": "{1}{R}", "cmc": 2.0, "type_line": "Sorcery", "oracle_text": "Volcanic Hammer deals 3 damage to any target.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "230f38aa-9511-4db8-a3aa-aeddbc3f7bb9", "set": "7ed", "set_name": "Seventh Edition", "set_type": "core", "set_uri": "https://api.scryfall.com/sets/230f38aa-9511-4db8-a3aa-aeddbc3f7bb9", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3A7ed&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/7ed?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/f8d93606-4864-4a5f-bcbf-8638211e979d/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A98fa5a06-0553-40fd-999c-bc31c9b3f4db&unique=prints", "collector_number": "226", "digital": false, "rarity": "common", "flavor_text": "Fire finds its form in the heat of the forge.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Ben Thompson", "artist_ids": ["f3116c88-57f4-4fd1-95f3-cfd163977661"], "illustration_id": "90c6c9d5-8ce1-4cb1-8599-4732a2fa0a9b", "border_color": "white", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 14458, "penny_rank": 3728, "prices": {"usd": "0.13", "usd_foil": "8.54", "usd_etched": null, "eur": "0.12", "eur_foil": "15.00", "tix": "0.09"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=30171", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Volcanic+Hammer&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Volcanic+Hammer&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Volcanic+Hammer"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/3140?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Volcanic+Hammer&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/16030?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "58c0489d-b073-4ad4-b044-447fcc865b6c", "oracle_id": "98fa5a06-0553-40fd-999c-bc31c9b3f4db", "multiverse_ids": [6593], "tcgplayer_id": 244, "cardmarket_id": 9939, "name": "Volcanic Hammer", "lang": "en", "released_at": "1998-06-24", "uri": "https://api.scryfall.com/cards/58c0489d-b073-4ad4-b044-447fcc865b6c", "scryfall_uri": "https://scryfall.com/card/p02/119/volcanic-hammer?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/5/8/58c0489d-b073-4ad4-b044-447fcc865b6c.jpg?1562915903", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/8/58c0489d-b073-4ad4-b044-447fcc865b6c.jpg?1562915903", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/5/8/58c0489d-b073-4ad4-b044-447fcc865b6c.jpg?1562915903", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/5/8/58c0489d-b073-4ad4-b044-447fcc865b6c.png?1562915903", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/8/58c0489d-b073-4ad4-b044-447fcc865b6c.jpg?1562915903", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/5/8/58c0489d-b073-4ad4-b044-447fcc865b6c.jpg?1562915903"}, "mana_cost": "{1}{R}", "cmc": 2.0, "type_line": "Sorcery", "oracle_text": "Volcanic Hammer deals 3 damage to any target.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "ac67f18a-4f0e-407e-bab1-a9fe4f659565", "set": "p02", "set_name": "Portal Second Age", "set_type": "starter", "set_uri": "https://api.scryfall.com/sets/ac67f18a-4f0e-407e-bab1-a9fe4f659565", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ap02&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/p02?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/58c0489d-b073-4ad4-b044-447fcc865b6c/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A98fa5a06-0553-40fd-999c-bc31c9b3f4db&unique=prints", "collector_number": "119", "digital": false, "rarity": "common", "flavor_text": "Fire finds its form in the heat of the forge.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Edward P. Beard, Jr.", "artist_ids": ["b845b8ee-aeea-4822-bcf9-7230625ac95c"], "illustration_id": "b82b511b-2b1a-4b5c-a1be-ded6d361d2a2", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 14458, "penny_rank": 3728, "prices": {"usd": "0.21", "usd_foil": null, "usd_etched": null, "eur": "0.19", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=6593", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Volcanic+Hammer&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Volcanic+Hammer&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Volcanic+Hammer"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/244?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Volcanic+Hammer&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Volcanic+Hammer&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "9563d7c1-4ed1-4919-b0b8-ea1ec9d4bbf6", "oracle_id": "98fa5a06-0553-40fd-999c-bc31c9b3f4db", "multiverse_ids": [4366], "tcgplayer_id": 813, "cardmarket_id": 10145, "name": "Volcanic Hammer", "lang": "en", "released_at": "1997-05-01", "uri": "https://api.scryfall.com/cards/9563d7c1-4ed1-4919-b0b8-ea1ec9d4bbf6", "scryfall_uri": "https://scryfall.com/card/por/154/volcanic-hammer?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/9/5/9563d7c1-4ed1-4919-b0b8-ea1ec9d4bbf6.jpg?1562447337", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/5/9563d7c1-4ed1-4919-b0b8-ea1ec9d4bbf6.jpg?1562447337", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/9/5/9563d7c1-4ed1-4919-b0b8-ea1ec9d4bbf6.jpg?1562447337", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/9/5/9563d7c1-4ed1-4919-b0b8-ea1ec9d4bbf6.png?1562447337", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/5/9563d7c1-4ed1-4919-b0b8-ea1ec9d4bbf6.jpg?1562447337", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/9/5/9563d7c1-4ed1-4919-b0b8-ea1ec9d4bbf6.jpg?1562447337"}, "mana_cost": "{1}{R}", "cmc": 2.0, "type_line": "Sorcery", "oracle_text": "Volcanic Hammer deals 3 damage to any target.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "478c47df-5058-4ce6-830e-7e80732b2ca9", "set": "por", "set_name": "Portal", "set_type": "starter", "set_uri": "https://api.scryfall.com/sets/478c47df-5058-4ce6-830e-7e80732b2ca9", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Apor&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/por?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/9563d7c1-4ed1-4919-b0b8-ea1ec9d4bbf6/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A98fa5a06-0553-40fd-999c-bc31c9b3f4db&unique=prints", "collector_number": "154", "digital": false, "rarity": "common", "flavor_text": "Cast the weight as though it were a die, to see a rival's fate.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Christopher Rush", "artist_ids": ["c96773f0-346c-4f7d-9271-2d98cc5d86e1"], "illustration_id": "835ac678-cf10-42f3-956c-8281b3723644", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 14458, "penny_rank": 3728, "prices": {"usd": "0.19", "usd_foil": null, "usd_etched": null, "eur": "0.13", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=4366", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Volcanic+Hammer&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Volcanic+Hammer&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Volcanic+Hammer"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/813?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Volcanic+Hammer&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Volcanic+Hammer&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "97daab4b-d934-4a3f-a043-f7c9c1dd32bf", "oracle_id": "dcf3cd72-3c3d-4847-83be-105966b0cd6a", "multiverse_ids": [29768], "mtgo_id": 16713, "mtgo_foil_id": 16714, "tcgplayer_id": 9501, "cardmarket_id": 2638, "name": "Volcanic Spray", "lang": "en", "released_at": "2001-10-01", "uri": "https://api.scryfall.com/cards/97daab4b-d934-4a3f-a043-f7c9c1dd32bf", "scryfall_uri": "https://scryfall.com/card/ody/226/volcanic-spray?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/9/7/97daab4b-d934-4a3f-a043-f7c9c1dd32bf.jpg?1562923217", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/7/97daab4b-d934-4a3f-a043-f7c9c1dd32bf.jpg?1562923217", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/9/7/97daab4b-d934-4a3f-a043-f7c9c1dd32bf.jpg?1562923217", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/9/7/97daab4b-d934-4a3f-a043-f7c9c1dd32bf.png?1562923217", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/7/97daab4b-d934-4a3f-a043-f7c9c1dd32bf.jpg?1562923217", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/9/7/97daab4b-d934-4a3f-a043-f7c9c1dd32bf.jpg?1562923217"}, "mana_cost": "{1}{R}", "cmc": 2.0, "type_line": "Sorcery", "oracle_text": "Volcanic Spray deals 1 damage to each creature without flying and each player.\nFlashback {1}{R} (You may cast this card from your graveyard for its flashback cost. Then exile it.)", "colors": ["R"], "color_identity": ["R"], "keywords": ["Flashback"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "b0d90d2d-494a-4224-bfa0-36ce5ee281b1", "set": "ody", "set_name": "Odyssey", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/b0d90d2d-494a-4224-bfa0-36ce5ee281b1", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aody&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ody?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/97daab4b-d934-4a3f-a043-f7c9c1dd32bf/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Adcf3cd72-3c3d-4847-83be-105966b0cd6a&unique=prints", "collector_number": "226", "digital": false, "rarity": "uncommon", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Matt Cavotta", "artist_ids": ["2e6a0611-9411-4ba4-98e3-c0e18cbf9f83"], "illustration_id": "a2cd6d41-a4c3-48f8-907e-b04c2abf00c1", "border_color": "black", "frame": "1997", "frame_effects": ["tombstone"], "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 11884, "penny_rank": 3756, "prices": {"usd": "0.15", "usd_foil": "2.57", "usd_etched": null, "eur": "0.06", "eur_foil": "0.15", "tix": "0.06"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=29768", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Volcanic+Spray&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Volcanic+Spray&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Volcanic+Spray"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/9501?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Volcanic+Spray&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/16713?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "aa88011c-a19d-4faa-8da6-86b9980cd571", "oracle_id": "c57907d1-c5a1-45c7-80a8-38fedf86dd19", "multiverse_ids": [214381], "mtgo_id": 39744, "mtgo_foil_id": 39745, "tcgplayer_id": 39604, "cardmarket_id": 245926, "name": "Volt Charge", "lang": "en", "released_at": "2011-05-13", "uri": "https://api.scryfall.com/cards/aa88011c-a19d-4faa-8da6-86b9980cd571", "scryfall_uri": "https://scryfall.com/card/nph/100/volt-charge?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/a/a/aa88011c-a19d-4faa-8da6-86b9980cd571.jpg?1562880613", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/a/aa88011c-a19d-4faa-8da6-86b9980cd571.jpg?1562880613", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/a/a/aa88011c-a19d-4faa-8da6-86b9980cd571.jpg?1562880613", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/a/a/aa88011c-a19d-4faa-8da6-86b9980cd571.png?1562880613", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/a/aa88011c-a19d-4faa-8da6-86b9980cd571.jpg?1562880613", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/a/a/aa88011c-a19d-4faa-8da6-86b9980cd571.jpg?1562880613"}, "mana_cost": "{2}{R}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Volt Charge deals 3 damage to any target. Proliferate. (Choose any number of permanents and/or players, then give each another counter of each kind already there.)", "colors": ["R"], "color_identity": ["R"], "keywords": ["Proliferate"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "e8e356d8-6d01-4dab-aa07-d0999dc9359f", "set": "nph", "set_name": "New Phyrexia", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/e8e356d8-6d01-4dab-aa07-d0999dc9359f", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Anph&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/nph?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/aa88011c-a19d-4faa-8da6-86b9980cd571/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ac57907d1-c5a1-45c7-80a8-38fedf86dd19&unique=prints", "collector_number": "100", "digital": false, "rarity": "common", "watermark": "phyrexian", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Jana Schirmer & Johannes Voss", "artist_ids": ["64c0582e-949d-41cb-8a23-a25b87850748", "3593dd7e-c547-4a32-81cd-7da725f60118"], "illustration_id": "c185f082-4d14-457c-9285-3e7512202cab", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 6931, "penny_rank": 2337, "prices": {"usd": "0.15", "usd_foil": "0.99", "usd_etched": null, "eur": "0.13", "eur_foil": "0.45", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=214381", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Volt+Charge&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Volt+Charge&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Volt+Charge"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/39604?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Volt+Charge&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/39744?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "a8c32faa-c6d1-418a-aed6-ccc5849daa1f", "oracle_id": "dcf503b5-c7ef-49e5-87ed-3b8758197446", "multiverse_ids": [48105], "mtgo_id": 19865, "mtgo_foil_id": 19866, "tcgplayer_id": 11402, "cardmarket_id": 81, "name": "Wail of the Nim", "lang": "en", "released_at": "2003-10-02", "uri": "https://api.scryfall.com/cards/a8c32faa-c6d1-418a-aed6-ccc5849daa1f", "scryfall_uri": "https://scryfall.com/card/mrd/81/wail-of-the-nim?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/a/8/a8c32faa-c6d1-418a-aed6-ccc5849daa1f.jpg?1562153645", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/8/a8c32faa-c6d1-418a-aed6-ccc5849daa1f.jpg?1562153645", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/a/8/a8c32faa-c6d1-418a-aed6-ccc5849daa1f.jpg?1562153645", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/a/8/a8c32faa-c6d1-418a-aed6-ccc5849daa1f.png?1562153645", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/8/a8c32faa-c6d1-418a-aed6-ccc5849daa1f.jpg?1562153645", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/a/8/a8c32faa-c6d1-418a-aed6-ccc5849daa1f.jpg?1562153645"}, "mana_cost": "{2}{B}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Choose one \u2014\n\u2022 Regenerate each creature you control.\n\u2022 Wail of the Nim deals 1 damage to each creature and each player.\nEntwine {B} (Choose both if you pay the entwine cost.)", "colors": ["B"], "color_identity": ["B"], "keywords": ["Entwine"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "1d4f90ba-8d4a-4ee5-bc2f-e2d6bffe4955", "set": "mrd", "set_name": "Mirrodin", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/1d4f90ba-8d4a-4ee5-bc2f-e2d6bffe4955", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Amrd&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/mrd?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/a8c32faa-c6d1-418a-aed6-ccc5849daa1f/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Adcf503b5-c7ef-49e5-87ed-3b8758197446&unique=prints", "collector_number": "81", "digital": false, "rarity": "common", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "John Matson", "artist_ids": ["a1685587-4b55-446b-b420-c37b202ed3f1"], "illustration_id": "38ba84aa-2c1b-4ecc-bd94-cd9d873fee37", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 10964, "prices": {"usd": "0.14", "usd_foil": "0.67", "usd_etched": null, "eur": "0.05", "eur_foil": "0.03", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=48105", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Wail+of+the+Nim&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Wail+of+the+Nim&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Wail+of+the+Nim"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/11402?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Wail+of+the+Nim&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/19865?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "81e474ac-54f7-43f9-8af9-2f1adf258b15", "oracle_id": "b1ea88f5-162b-4f08-bec3-be1f06dec392", "multiverse_ids": [369081], "mtgo_id": 48398, "mtgo_foil_id": 48399, "tcgplayer_id": 67951, "cardmarket_id": 261491, "name": "Warleader's Helix", "lang": "en", "released_at": "2013-05-03", "uri": "https://api.scryfall.com/cards/81e474ac-54f7-43f9-8af9-2f1adf258b15", "scryfall_uri": "https://scryfall.com/card/dgm/116/warleaders-helix?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/8/1/81e474ac-54f7-43f9-8af9-2f1adf258b15.jpg?1562919089", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/1/81e474ac-54f7-43f9-8af9-2f1adf258b15.jpg?1562919089", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/8/1/81e474ac-54f7-43f9-8af9-2f1adf258b15.jpg?1562919089", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/8/1/81e474ac-54f7-43f9-8af9-2f1adf258b15.png?1562919089", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/1/81e474ac-54f7-43f9-8af9-2f1adf258b15.jpg?1562919089", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/8/1/81e474ac-54f7-43f9-8af9-2f1adf258b15.jpg?1562919089"}, "mana_cost": "{2}{R}{W}", "cmc": 4.0, "type_line": "Instant", "oracle_text": "Warleader's Helix deals 4 damage to any target and you gain 4 life.", "colors": ["R", "W"], "color_identity": ["R", "W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "c8bd8520-cd98-45cd-b533-8d40c2087426", "set": "dgm", "set_name": "Dragon's Maze", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/c8bd8520-cd98-45cd-b533-8d40c2087426", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Adgm&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/dgm?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/81e474ac-54f7-43f9-8af9-2f1adf258b15/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ab1ea88f5-162b-4f08-bec3-be1f06dec392&unique=prints", "collector_number": "116", "digital": false, "rarity": "uncommon", "watermark": "boros", "flavor_text": "\"There is no time to remedy our enemies' ignorance. Blast it out of them.\"\n\u2014Aurelia", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Greg Staples", "artist_ids": ["93d65564-bf00-447b-8406-e2031f03b6b1"], "illustration_id": "da3727f6-29dd-4f0b-95bf-018a49554fc5", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 8610, "penny_rank": 1121, "prices": {"usd": "0.10", "usd_foil": "0.65", "usd_etched": null, "eur": "0.05", "eur_foil": "0.50", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=369081", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Warleader%27s+Helix&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Warleader%27s+Helix&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Warleader%27s+Helix"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/67951?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Warleader%27s+Helix&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/48398?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "fcc1dd23-90fa-4aa4-b0a9-7a92991ad7ec", "oracle_id": "b1ea88f5-162b-4f08-bec3-be1f06dec392", "multiverse_ids": [], "tcgplayer_id": 72277, "cardmarket_id": 265522, "name": "Warleader's Helix", "lang": "en", "released_at": "2014-01-01", "uri": "https://api.scryfall.com/cards/fcc1dd23-90fa-4aa4-b0a9-7a92991ad7ec", "scryfall_uri": "https://scryfall.com/card/f14/1/warleaders-helix?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/f/c/fcc1dd23-90fa-4aa4-b0a9-7a92991ad7ec.jpg?1562640152", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/c/fcc1dd23-90fa-4aa4-b0a9-7a92991ad7ec.jpg?1562640152", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/f/c/fcc1dd23-90fa-4aa4-b0a9-7a92991ad7ec.jpg?1562640152", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/f/c/fcc1dd23-90fa-4aa4-b0a9-7a92991ad7ec.png?1562640152", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/c/fcc1dd23-90fa-4aa4-b0a9-7a92991ad7ec.jpg?1562640152", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/f/c/fcc1dd23-90fa-4aa4-b0a9-7a92991ad7ec.jpg?1562640152"}, "mana_cost": "{2}{R}{W}", "cmc": 4.0, "type_line": "Instant", "oracle_text": "Warleader's Helix deals 4 damage to any target and you gain 4 life.", "colors": ["R", "W"], "color_identity": ["R", "W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": true, "nonfoil": false, "finishes": ["foil"], "oversized": false, "promo": true, "reprint": true, "variation": false, "set_id": "ed1404ce-ac05-4d93-8283-163a50bfc9b5", "set": "f14", "set_name": "Friday Night Magic 2014", "set_type": "promo", "set_uri": "https://api.scryfall.com/sets/ed1404ce-ac05-4d93-8283-163a50bfc9b5", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Af14&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/f14?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/fcc1dd23-90fa-4aa4-b0a9-7a92991ad7ec/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ab1ea88f5-162b-4f08-bec3-be1f06dec392&unique=prints", "collector_number": "1", "digital": false, "rarity": "rare", "watermark": "boros", "flavor_text": "\"There is no time to remedy our enemies' ignorance. Blast it out of them.\"\n\u2014Aurelia", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Wesley Burt", "artist_ids": ["b98c9d94-8bdb-49af-871d-7bac92274535"], "illustration_id": "3c89dc76-6d32-49d7-adc3-0fab1193f47e", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "promo_types": ["tourney", "fnm"], "edhrec_rank": 8610, "penny_rank": 1121, "prices": {"usd": null, "usd_foil": "0.21", "usd_etched": null, "eur": null, "eur_foil": "0.15", "tix": null}, "related_uris": {"tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Warleader%27s+Helix&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Warleader%27s+Helix&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Warleader%27s+Helix"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/72277?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Warleader%27s+Helix&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Warleader%27s+Helix&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "d5f26a87-4562-450c-800b-7d4acc1ae17b", "oracle_id": "722324de-3e77-4a22-aa07-7f8a21be76c2", "multiverse_ids": [107551], "mtgo_id": 24285, "mtgo_foil_id": 24286, "tcgplayer_id": 13989, "cardmarket_id": 13125, "name": "Weight of Spires", "lang": "en", "released_at": "2006-05-05", "uri": "https://api.scryfall.com/cards/d5f26a87-4562-450c-800b-7d4acc1ae17b", "scryfall_uri": "https://scryfall.com/card/dis/78/weight-of-spires?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/d/5/d5f26a87-4562-450c-800b-7d4acc1ae17b.jpg?1593273313", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/5/d5f26a87-4562-450c-800b-7d4acc1ae17b.jpg?1593273313", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/d/5/d5f26a87-4562-450c-800b-7d4acc1ae17b.jpg?1593273313", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/d/5/d5f26a87-4562-450c-800b-7d4acc1ae17b.png?1593273313", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/5/d5f26a87-4562-450c-800b-7d4acc1ae17b.jpg?1593273313", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/d/5/d5f26a87-4562-450c-800b-7d4acc1ae17b.jpg?1593273313"}, "mana_cost": "{R}", "cmc": 1.0, "type_line": "Instant", "oracle_text": "Weight of Spires deals damage to target creature equal to the number of nonbasic lands that creature's controller controls.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "fdebeda1-b95f-4343-8a94-d125821e6b5c", "set": "dis", "set_name": "Dissension", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/fdebeda1-b95f-4343-8a94-d125821e6b5c", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Adis&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/dis?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/d5f26a87-4562-450c-800b-7d4acc1ae17b/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A722324de-3e77-4a22-aa07-7f8a21be76c2&unique=prints", "collector_number": "78", "digital": false, "rarity": "uncommon", "flavor_text": "\"Finally, a good use for an Azorius courthouse.\"\n\u2014Ghut Rak, Gruul guildmage", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Michael Sutfin", "artist_ids": ["5ce7b3bd-53d2-49e6-b504-37191e8e9b17"], "illustration_id": "1fec6b28-8e80-4b7e-90f4-c1c7ff9fed03", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 17131, "penny_rank": 7095, "prices": {"usd": "0.15", "usd_foil": "0.50", "usd_etched": null, "eur": "0.02", "eur_foil": "0.39", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=107551", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Weight+of+Spires&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Weight+of+Spires&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Weight+of+Spires"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/13989?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Weight+of+Spires&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/24285?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "943f1d16-4781-4f65-bbe8-79fad472396c", "oracle_id": "e334b8bd-01d2-42b6-83f8-4f9d29f8ad0d", "multiverse_ids": [74219], "tcgplayer_id": 37948, "cardmarket_id": 14829, "name": "Wet Willie of the Damned", "lang": "en", "released_at": "2004-11-19", "uri": "https://api.scryfall.com/cards/943f1d16-4781-4f65-bbe8-79fad472396c", "scryfall_uri": "https://scryfall.com/card/unh/66/wet-willie-of-the-damned?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/9/4/943f1d16-4781-4f65-bbe8-79fad472396c.jpg?1562488886", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/4/943f1d16-4781-4f65-bbe8-79fad472396c.jpg?1562488886", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/9/4/943f1d16-4781-4f65-bbe8-79fad472396c.jpg?1562488886", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/9/4/943f1d16-4781-4f65-bbe8-79fad472396c.png?1562488886", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/4/943f1d16-4781-4f65-bbe8-79fad472396c.jpg?1562488886", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/9/4/943f1d16-4781-4f65-bbe8-79fad472396c.jpg?1562488886"}, "mana_cost": "{2}{B}{B}", "cmc": 4.0, "type_line": "Sorcery", "oracle_text": "Wet Willie of the Damned deals 2\u00bd damage to any target and you gain 2\u00bd life.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "not_legal", "pauper": "not_legal", "vintage": "not_legal", "penny": "not_legal", "commander": "not_legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "not_legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "4c8bc76a-05a5-43db-aaf0-34deb347b871", "set": "unh", "set_name": "Unhinged", "set_type": "funny", "set_uri": "https://api.scryfall.com/sets/4c8bc76a-05a5-43db-aaf0-34deb347b871", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aunh&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/unh?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/943f1d16-4781-4f65-bbe8-79fad472396c/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ae334b8bd-01d2-42b6-83f8-4f9d29f8ad0d&unique=prints", "collector_number": "66", "digital": false, "rarity": "common", "flavor_text": "Ever the warrior, Glissa responded with a \"wedgie from beyond Uranus.\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Greg Staples", "artist_ids": ["93d65564-bf00-447b-8406-e2031f03b6b1"], "illustration_id": "efdb17a0-71c1-4109-9159-2237210ccc82", "border_color": "silver", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "prices": {"usd": "0.14", "usd_foil": "4.58", "usd_etched": null, "eur": "0.05", "eur_foil": "0.99", "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=74219", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Wet+Willie+of+the+Damned&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Wet+Willie+of+the+Damned&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Wet+Willie+of+the+Damned"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/37948?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Wet+Willie+of+the+Damned&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Wet+Willie+of+the+Damned&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "6975490f-7679-48b3-ba34-04dec97a29c2", "oracle_id": "f76a0e5b-74c1-4ee8-b502-e8b988086de4", "multiverse_ids": [391959], "mtgo_id": 55592, "mtgo_foil_id": 55593, "tcgplayer_id": 95314, "cardmarket_id": 271527, "name": "Wild Slash", "lang": "en", "released_at": "2015-01-23", "uri": "https://api.scryfall.com/cards/6975490f-7679-48b3-ba34-04dec97a29c2", "scryfall_uri": "https://scryfall.com/card/frf/118/wild-slash?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/6/9/6975490f-7679-48b3-ba34-04dec97a29c2.jpg?1562826120", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/9/6975490f-7679-48b3-ba34-04dec97a29c2.jpg?1562826120", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/6/9/6975490f-7679-48b3-ba34-04dec97a29c2.jpg?1562826120", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/6/9/6975490f-7679-48b3-ba34-04dec97a29c2.png?1562826120", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/9/6975490f-7679-48b3-ba34-04dec97a29c2.jpg?1562826120", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/6/9/6975490f-7679-48b3-ba34-04dec97a29c2.jpg?1562826120"}, "mana_cost": "{R}", "cmc": 1.0, "type_line": "Instant", "oracle_text": "Ferocious \u2014 If you control a creature with power 4 or greater, damage can't be prevented this turn.\nWild Slash deals 2 damage to any target.", "colors": ["R"], "color_identity": ["R"], "keywords": ["Ferocious"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "7bb5cb2b-081a-4c8c-b7e1-494046e6baa1", "set": "frf", "set_name": "Fate Reforged", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/7bb5cb2b-081a-4c8c-b7e1-494046e6baa1", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Afrf&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/frf?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/6975490f-7679-48b3-ba34-04dec97a29c2/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Af76a0e5b-74c1-4ee8-b502-e8b988086de4&unique=prints", "collector_number": "118", "digital": false, "rarity": "uncommon", "watermark": "temur", "flavor_text": "Never mistake deception for cleverness.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Raymond Swanland", "artist_ids": ["e956bacc-077d-4c12-b6bc-ba798b718af9"], "illustration_id": "ac276f5d-3b2f-467b-8516-6b9d0f28a3d9", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 12723, "penny_rank": 1897, "prices": {"usd": "0.21", "usd_foil": "5.67", "usd_etched": null, "eur": "0.83", "eur_foil": "4.00", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=391959", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Wild+Slash&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Wild+Slash&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Wild+Slash"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/95314?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Wild+Slash&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/55592?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "af1035f3-3027-4a41-834c-55222b13c2bc", "oracle_id": "fb150d6a-5f81-4fd8-92b2-22a9615bfd4f", "multiverse_ids": [3009], "tcgplayer_id": 4572, "cardmarket_id": 7812, "name": "Winter Sky", "lang": "en", "released_at": "1995-10-01", "uri": "https://api.scryfall.com/cards/af1035f3-3027-4a41-834c-55222b13c2bc", "scryfall_uri": "https://scryfall.com/card/hml/80/winter-sky?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/a/f/af1035f3-3027-4a41-834c-55222b13c2bc.jpg?1562588224", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/f/af1035f3-3027-4a41-834c-55222b13c2bc.jpg?1562588224", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/a/f/af1035f3-3027-4a41-834c-55222b13c2bc.jpg?1562588224", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/a/f/af1035f3-3027-4a41-834c-55222b13c2bc.png?1562588224", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/f/af1035f3-3027-4a41-834c-55222b13c2bc.jpg?1562588224", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/a/f/af1035f3-3027-4a41-834c-55222b13c2bc.jpg?1562588224"}, "mana_cost": "{R}", "cmc": 1.0, "type_line": "Sorcery", "oracle_text": "Flip a coin. If you win the flip, Winter Sky deals 1 damage to each creature and each player. If you lose the flip, each player draws a card.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper"], "reserved": true, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "5ac1f606-e682-46e9-ad0f-122a3783581b", "set": "hml", "set_name": "Homelands", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/5ac1f606-e682-46e9-ad0f-122a3783581b", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ahml&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/hml?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/af1035f3-3027-4a41-834c-55222b13c2bc/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Afb150d6a-5f81-4fd8-92b2-22a9615bfd4f&unique=prints", "collector_number": "80", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Mike Kimble", "artist_ids": ["06235390-cfc9-4418-827c-02d890bf54e5"], "illustration_id": "c7edcbd8-6966-4742-8835-21873a126f7f", "border_color": "black", "frame": "1993", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 12486, "prices": {"usd": "2.42", "usd_foil": null, "usd_etched": null, "eur": "1.75", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=3009", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Winter+Sky&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Winter+Sky&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Winter+Sky"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/4572?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Winter+Sky&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Winter+Sky&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "59bf371a-164c-4db8-9207-197c2e7c3c10", "oracle_id": "2bd81743-84c8-43ec-86f5-68230036827b", "multiverse_ids": [443040], "mtgo_id": 67769, "arena_id": 67408, "tcgplayer_id": 162189, "cardmarket_id": 319886, "name": "Wizard's Lightning", "lang": "en", "released_at": "2018-04-27", "uri": "https://api.scryfall.com/cards/59bf371a-164c-4db8-9207-197c2e7c3c10", "scryfall_uri": "https://scryfall.com/card/dom/152/wizards-lightning?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/5/9/59bf371a-164c-4db8-9207-197c2e7c3c10.jpg?1562736134", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/9/59bf371a-164c-4db8-9207-197c2e7c3c10.jpg?1562736134", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/5/9/59bf371a-164c-4db8-9207-197c2e7c3c10.jpg?1562736134", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/5/9/59bf371a-164c-4db8-9207-197c2e7c3c10.png?1562736134", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/9/59bf371a-164c-4db8-9207-197c2e7c3c10.jpg?1562736134", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/5/9/59bf371a-164c-4db8-9207-197c2e7c3c10.jpg?1562736134"}, "mana_cost": "{2}{R}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "This spell costs {2} less to cast if you control a Wizard.\nWizard's Lightning deals 3 damage to any target.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "be1daba3-51c9-4e7e-9212-36e68addc26c", "set": "dom", "set_name": "Dominaria", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/be1daba3-51c9-4e7e-9212-36e68addc26c", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Adom&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/dom?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/59bf371a-164c-4db8-9207-197c2e7c3c10/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A2bd81743-84c8-43ec-86f5-68230036827b&unique=prints", "collector_number": "152", "digital": false, "rarity": "uncommon", "flavor_text": "\"The study of magic began when the first mage taught herself to throw lightning.\"\n\u2014Naban, dean of iteration", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Grzegorz Rutkowski", "artist_ids": ["b5f49d0d-8056-48e3-b614-090e656b4f9c"], "illustration_id": "3fd21494-e83e-4d68-954f-84d0714642f1", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 8302, "prices": {"usd": "0.09", "usd_foil": "1.86", "usd_etched": null, "eur": "0.19", "eur_foil": "0.45", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=443040", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Wizard%27s+Lightning&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Wizard%27s+Lightning&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Wizard%27s+Lightning"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/162189?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Wizard%27s+Lightning&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/67769?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "c5362ead-9162-4160-bfa9-432f7d0e222d", "oracle_id": "8b391f24-992f-4cc0-ac4d-31456983fc03", "multiverse_ids": [19852], "mtgo_id": 13391, "mtgo_foil_id": 13392, "tcgplayer_id": 6769, "cardmarket_id": 11601, "name": "Word of Blasting", "lang": "en", "released_at": "1999-10-04", "uri": "https://api.scryfall.com/cards/c5362ead-9162-4160-bfa9-432f7d0e222d", "scryfall_uri": "https://scryfall.com/card/mmq/228/word-of-blasting?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/c/5/c5362ead-9162-4160-bfa9-432f7d0e222d.jpg?1562383027", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/5/c5362ead-9162-4160-bfa9-432f7d0e222d.jpg?1562383027", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/c/5/c5362ead-9162-4160-bfa9-432f7d0e222d.jpg?1562383027", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/c/5/c5362ead-9162-4160-bfa9-432f7d0e222d.png?1562383027", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/5/c5362ead-9162-4160-bfa9-432f7d0e222d.jpg?1562383027", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/c/5/c5362ead-9162-4160-bfa9-432f7d0e222d.jpg?1562383027"}, "mana_cost": "{1}{R}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Destroy target Wall. It can't be regenerated. Word of Blasting deals damage equal to that Wall's mana value to the Wall's controller.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "385e11a4-492b-4d07-b4a6-a1409ef829b8", "set": "mmq", "set_name": "Mercadian Masques", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/385e11a4-492b-4d07-b4a6-a1409ef829b8", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ammq&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/mmq?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/c5362ead-9162-4160-bfa9-432f7d0e222d/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A8b391f24-992f-4cc0-ac4d-31456983fc03&unique=prints", "collector_number": "228", "digital": false, "rarity": "uncommon", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Eric Peterson", "artist_ids": ["0fc26d3b-4c0e-41d1-8eb3-286ab55a2328"], "illustration_id": "24764eda-77fa-4ab9-b4ff-5dfca0b26f9e", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 23117, "prices": {"usd": "0.10", "usd_foil": "0.48", "usd_etched": null, "eur": "0.04", "eur_foil": "0.85", "tix": "0.11"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=19852", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Word+of+Blasting&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Word+of+Blasting&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Word+of+Blasting"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/6769?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Word+of+Blasting&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/13391?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "46b383c8-d604-4131-a869-9e9d13e30b94", "oracle_id": "8b391f24-992f-4cc0-ac4d-31456983fc03", "multiverse_ids": [2660], "tcgplayer_id": 4950, "cardmarket_id": 6436, "name": "Word of Blasting", "lang": "en", "released_at": "1995-06-03", "uri": "https://api.scryfall.com/cards/46b383c8-d604-4131-a869-9e9d13e30b94", "scryfall_uri": "https://scryfall.com/card/ice/224/word-of-blasting?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/4/6/46b383c8-d604-4131-a869-9e9d13e30b94.jpg?1562907917", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/6/46b383c8-d604-4131-a869-9e9d13e30b94.jpg?1562907917", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/4/6/46b383c8-d604-4131-a869-9e9d13e30b94.jpg?1562907917", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/4/6/46b383c8-d604-4131-a869-9e9d13e30b94.png?1562907917", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/6/46b383c8-d604-4131-a869-9e9d13e30b94.jpg?1562907917", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/4/6/46b383c8-d604-4131-a869-9e9d13e30b94.jpg?1562907917"}, "mana_cost": "{1}{R}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Destroy target Wall. It can't be regenerated. Word of Blasting deals damage equal to that Wall's mana value to the Wall's controller.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "b0e08eea-5c01-4406-a6e2-dcd09c5e5b67", "set": "ice", "set_name": "Ice Age", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/b0e08eea-5c01-4406-a6e2-dcd09c5e5b67", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aice&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ice?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/46b383c8-d604-4131-a869-9e9d13e30b94/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A8b391f24-992f-4cc0-ac4d-31456983fc03&unique=prints", "collector_number": "224", "digital": false, "rarity": "uncommon", "flavor_text": "\"Walls? What walls?\"\n\u2014Jaya Ballard, Task Mage", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Ken Meyer, Jr.", "artist_ids": ["466f5d1e-384e-47d9-8d2c-c6ae33ffa687"], "illustration_id": "c1a33a78-8517-4e01-a844-e60cb3a554c0", "border_color": "black", "frame": "1993", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 23117, "prices": {"usd": "0.22", "usd_foil": null, "usd_etched": null, "eur": "0.40", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=2660", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Word+of+Blasting&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Word+of+Blasting&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Word+of+Blasting"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/4950?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Word+of+Blasting&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Word+of+Blasting&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "6b5fef7d-b8bb-43e2-a36b-d4cc98c3ef13", "oracle_id": "7dba798b-170c-4176-8c35-fb01778e1ff5", "multiverse_ids": [], "tcgplayer_id": 231427, "name": "Xenagos's Strike", "lang": "en", "released_at": "2014-05-25", "uri": "https://api.scryfall.com/cards/6b5fef7d-b8bb-43e2-a36b-d4cc98c3ef13", "scryfall_uri": "https://scryfall.com/card/tdag/13/xenagoss-strike?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/6/b/6b5fef7d-b8bb-43e2-a36b-d4cc98c3ef13.jpg?1562639842", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/b/6b5fef7d-b8bb-43e2-a36b-d4cc98c3ef13.jpg?1562639842", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/6/b/6b5fef7d-b8bb-43e2-a36b-d4cc98c3ef13.jpg?1562639842", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/6/b/6b5fef7d-b8bb-43e2-a36b-d4cc98c3ef13.png?1562639842", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/b/6b5fef7d-b8bb-43e2-a36b-d4cc98c3ef13.jpg?1562639842", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/6/b/6b5fef7d-b8bb-43e2-a36b-d4cc98c3ef13.jpg?1562639842"}, "mana_cost": "", "cmc": 0.0, "type_line": "Sorcery", "oracle_text": "Xenagos's Strike deals 4 damage to each player.", "colors": [], "color_identity": [], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "not_legal", "pauper": "not_legal", "vintage": "not_legal", "penny": "not_legal", "commander": "not_legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "not_legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "a8487d2b-228c-4f6b-aebb-00cc06085ddb", "set": "tdag", "set_name": "Defeat a God", "set_type": "token", "set_uri": "https://api.scryfall.com/sets/a8487d2b-228c-4f6b-aebb-00cc06085ddb", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Atdag&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/tdag?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/6b5fef7d-b8bb-43e2-a36b-d4cc98c3ef13/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A7dba798b-170c-4176-8c35-fb01778e1ff5&unique=prints", "collector_number": "13", "digital": false, "rarity": "common", "card_back_id": "7d55a5bf-a837-4a75-9cc0-438bf320111f", "artist": "Zoltan Boros", "artist_ids": ["1885e6cb-c827-4896-994e-3d0a027d602f"], "illustration_id": "fdccb98d-74d7-4c7b-9027-67b64c42c89f", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "promo_types": ["instore"], "prices": {"usd": "1.03", "usd_foil": null, "usd_etched": null, "eur": null, "eur_foil": null, "tix": null}, "related_uris": {"tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Xenagos%27s+Strike&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Xenagos%27s+Strike&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Xenagos%27s+Strike"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/231427?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Xenagos%27s+Strike&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Xenagos%27s+Strike&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "1a9bacba-55c4-4b92-bdd9-01b6035ed1b2", "oracle_id": "0462e985-c99e-4404-b212-e9d8baecce72", "multiverse_ids": [50292], "mtgo_id": 20995, "mtgo_foil_id": 20996, "tcgplayer_id": 12223, "cardmarket_id": 12242, "name": "Yamabushi's Flame", "lang": "en", "released_at": "2004-10-01", "uri": "https://api.scryfall.com/cards/1a9bacba-55c4-4b92-bdd9-01b6035ed1b2", "scryfall_uri": "https://scryfall.com/card/chk/198/yamabushis-flame?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/1/a/1a9bacba-55c4-4b92-bdd9-01b6035ed1b2.jpg?1562757952", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/a/1a9bacba-55c4-4b92-bdd9-01b6035ed1b2.jpg?1562757952", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/1/a/1a9bacba-55c4-4b92-bdd9-01b6035ed1b2.jpg?1562757952", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/1/a/1a9bacba-55c4-4b92-bdd9-01b6035ed1b2.png?1562757952", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/a/1a9bacba-55c4-4b92-bdd9-01b6035ed1b2.jpg?1562757952", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/1/a/1a9bacba-55c4-4b92-bdd9-01b6035ed1b2.jpg?1562757952"}, "mana_cost": "{2}{R}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Yamabushi's Flame deals 3 damage to any target. If a creature dealt damage this way would die this turn, exile it instead.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "6183d21f-a0af-4118-ba58-aca1d8719c01", "set": "chk", "set_name": "Champions of Kamigawa", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/6183d21f-a0af-4118-ba58-aca1d8719c01", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Achk&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/chk?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/1a9bacba-55c4-4b92-bdd9-01b6035ed1b2/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A0462e985-c99e-4404-b212-e9d8baecce72&unique=prints", "collector_number": "198", "digital": false, "rarity": "common", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Christopher Moeller", "artist_ids": ["21e10012-06ae-44f2-b38d-3824dd2e73d4"], "illustration_id": "5f4a31aa-0572-4ca1-a88a-ab14212793f0", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 20769, "prices": {"usd": "0.08", "usd_foil": "0.24", "usd_etched": null, "eur": "0.02", "eur_foil": "0.05", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=50292", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Yamabushi%27s+Flame&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Yamabushi%27s+Flame&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Yamabushi%27s+Flame"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/12223?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Yamabushi%27s+Flame&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/20995?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "7502ce01-b762-40fe-a064-c7b20b08a722", "oracle_id": "56115482-3fd4-45fb-b800-be68c5509cf2", "multiverse_ids": [23075], "mtgo_id": 14429, "mtgo_foil_id": 14430, "tcgplayer_id": 7760, "cardmarket_id": 3751, "name": "Zap", "lang": "en", "released_at": "2000-10-02", "uri": "https://api.scryfall.com/cards/7502ce01-b762-40fe-a064-c7b20b08a722", "scryfall_uri": "https://scryfall.com/card/inv/180/zap?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/7/5/7502ce01-b762-40fe-a064-c7b20b08a722.jpg?1562918451", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/5/7502ce01-b762-40fe-a064-c7b20b08a722.jpg?1562918451", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/7/5/7502ce01-b762-40fe-a064-c7b20b08a722.jpg?1562918451", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/7/5/7502ce01-b762-40fe-a064-c7b20b08a722.png?1562918451", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/5/7502ce01-b762-40fe-a064-c7b20b08a722.jpg?1562918451", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/7/5/7502ce01-b762-40fe-a064-c7b20b08a722.jpg?1562918451"}, "mana_cost": "{2}{R}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Zap deals 1 damage to any target.\nDraw a card.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "b9ae5e02-7726-47ca-b5e4-5ec402b41cd1", "set": "inv", "set_name": "Invasion", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/b9ae5e02-7726-47ca-b5e4-5ec402b41cd1", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ainv&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/inv?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/7502ce01-b762-40fe-a064-c7b20b08a722/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A56115482-3fd4-45fb-b800-be68c5509cf2&unique=prints", "collector_number": "180", "digital": false, "rarity": "common", "flavor_text": "\"All this time I thought Squee was useless,\" chuckled Sisay. \"Who knew he'd be such a good shot?\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "John Matson", "artist_ids": ["a1685587-4b55-446b-b420-c37b202ed3f1"], "illustration_id": "657f677a-b446-4fea-9933-267f5fd41d77", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 16342, "penny_rank": 2812, "prices": {"usd": "0.12", "usd_foil": "0.99", "usd_etched": null, "eur": "0.10", "eur_foil": "1.99", "tix": "0.11"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=23075", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Zap&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Zap&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Zap"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/7760?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Zap&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/14429?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "0efac1ed-3f01-487c-86be-8239568b4425", "oracle_id": "ae005f00-3817-40ca-b8be-069a4085cfee", "multiverse_ids": [479737], "mtgo_id": 80443, "arena_id": 71284, "tcgplayer_id": 212538, "cardmarket_id": 454768, "name": "Zenith Flare", "lang": "en", "released_at": "2020-04-24", "uri": "https://api.scryfall.com/cards/0efac1ed-3f01-487c-86be-8239568b4425", "scryfall_uri": "https://scryfall.com/card/iko/217/zenith-flare?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/0/e/0efac1ed-3f01-487c-86be-8239568b4425.jpg?1591228324", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/e/0efac1ed-3f01-487c-86be-8239568b4425.jpg?1591228324", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/0/e/0efac1ed-3f01-487c-86be-8239568b4425.jpg?1591228324", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/0/e/0efac1ed-3f01-487c-86be-8239568b4425.png?1591228324", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/e/0efac1ed-3f01-487c-86be-8239568b4425.jpg?1591228324", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/0/e/0efac1ed-3f01-487c-86be-8239568b4425.jpg?1591228324"}, "mana_cost": "{2}{R}{W}", "cmc": 4.0, "type_line": "Instant", "oracle_text": "Zenith Flare deals X damage to any target and you gain X life, where X is the number of cards with a cycling ability in your graveyard.", "colors": ["R", "W"], "color_identity": ["R", "W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "19feda43-15ab-427e-a0e4-148a4bf2b03a", "set": "iko", "set_name": "Ikoria: Lair of Behemoths", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/19feda43-15ab-427e-a0e4-148a4bf2b03a", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aiko&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/iko?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/0efac1ed-3f01-487c-86be-8239568b4425/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aae005f00-3817-40ca-b8be-069a4085cfee&unique=prints", "collector_number": "217", "digital": false, "rarity": "uncommon", "flavor_text": "\"I defy this world to try our defenses now. Send pterons and skycats. Send Vadrok!\"\n\u2014Janae, Coppercoat architect", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Jonas De Ro", "artist_ids": ["561ebf9e-8d93-4b57-8156-8826d0c19601"], "illustration_id": "7013a8b5-bcbd-4f19-9c61-4a0a1dcc25f3", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 6899, "penny_rank": 483, "preview": {"source": "Greg Orange", "source_uri": "https://twitter.com/orange_greg/status/1247691319549591552", "previewed_at": "2020-04-07"}, "prices": {"usd": "0.04", "usd_foil": "0.44", "usd_etched": null, "eur": "0.17", "eur_foil": "0.15", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=479737", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Zenith+Flare&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Zenith+Flare&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Zenith+Flare"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/212538?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Zenith+Flare&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/80443?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}]} \ No newline at end of file +{"has_more": false, "data": [{"name": "Staggershock", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/5/75624ab3-ddbd-4fe8-8a07-7d1f78ec8a84.jpg?1562705194", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/5/75624ab3-ddbd-4fe8-8a07-7d1f78ec8a84.jpg?1562705194"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Starfall", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/3/13921f0d-f163-4275-b025-045c1ccd99e5.jpg?1593096122", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/3/13921f0d-f163-4275-b025-045c1ccd99e5.jpg?1593096122"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Start from Scratch", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/5/55c99486-ae64-4293-81fb-a4b02e8fcae6.jpg?1637082383", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/5/55c99486-ae64-4293-81fb-a4b02e8fcae6.jpg?1637082383"}, "reprint": false, "frame_effects": ["lesson"], "digital": false, "set_type": "expansion"}, {"name": "Steam Blast", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/4/144a1b4e-d960-4c3a-810b-11a0c78635ad.jpg?1562899291", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/4/144a1b4e-d960-4c3a-810b-11a0c78635ad.jpg?1562899291"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Stoke the Flames", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/d/1d94c000-52e0-4215-83af-6351dc43e636.jpg?1562783509", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/d/1d94c000-52e0-4215-83af-6351dc43e636.jpg?1562783509"}, "reprint": false, "digital": false, "set_type": "core"}, {"name": "Stoke the Flames", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/5/f5a1071a-c50c-439f-8387-5b2c143e24e4.jpg?1562640134", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/5/f5a1071a-c50c-439f-8387-5b2c143e24e4.jpg?1562640134"}, "reprint": true, "digital": false, "set_type": "promo"}, {"name": "Stomping Slabs", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/2/820f1acf-7f0c-4ee5-9f18-b5627aac7c81.jpg?1562879653", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/2/820f1acf-7f0c-4ee5-9f18-b5627aac7c81.jpg?1562879653"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Strategy, Schmategy", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/2/a2996a63-9fb6-4455-906d-13f917a8bb29.jpg?1562799134", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/2/a2996a63-9fb6-4455-906d-13f917a8bb29.jpg?1562799134"}, "reprint": false, "digital": false, "set_type": "funny"}, {"name": "Structural Collapse", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/1/d10da484-db67-4afc-90ef-6caf7d2e3a75.jpg?1561847167", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/1/d10da484-db67-4afc-90ef-6caf7d2e3a75.jpg?1561847167"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Structural Distortion", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/7/a7895890-a774-4c7c-9f15-78b8aadfd9ef.jpg?1576384931", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/7/a7895890-a774-4c7c-9f15-78b8aadfd9ef.jpg?1576384931"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Sudden Shock", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/f/9fcc7ad0-1348-44e9-9782-e9b7fd032fa4.jpg?1606761799", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/f/9fcc7ad0-1348-44e9-9782-e9b7fd032fa4.jpg?1606761799"}, "reprint": true, "digital": false, "set_type": "promo"}, {"name": "Sulfurous Blast", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/7/67511e0e-be09-4f4e-9949-b9ecbdc7f536.jpg?1562916599", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/7/67511e0e-be09-4f4e-9949-b9ecbdc7f536.jpg?1562916599"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Surging Flame", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/5/156994b5-a0f2-4d02-9bda-882e80d9905c.jpg?1561756701", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/5/156994b5-a0f2-4d02-9bda-882e80d9905c.jpg?1561756701"}, "reprint": true, "digital": false, "set_type": "promo"}, {"name": "Tarfire", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/1/d13a898e-6a97-4fd9-980e-3bfd8d755386.jpg?1562369172", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/1/d13a898e-6a97-4fd9-980e-3bfd8d755386.jpg?1562369172"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Thunderblade Charge", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/8/88a85be1-9de5-4f96-9fd1-15f3f17c4bea.jpg?1562922621", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/8/88a85be1-9de5-4f96-9fd1-15f3f17c4bea.jpg?1562922621"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Thunderbolt", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/8/5845a5bc-6b7d-4bbb-80b3-a0f877b95553.jpg?1592709223", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/8/5845a5bc-6b7d-4bbb-80b3-a0f877b95553.jpg?1592709223"}, "reprint": true, "digital": false, "set_type": "expansion"}, {"name": "Thunderbolt", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/0/a0a4b641-2eb3-482b-91a1-236ebe2a7a41.jpg?1562802418", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/0/a0a4b641-2eb3-482b-91a1-236ebe2a7a41.jpg?1562802418"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Thunderous Wrath", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/a/daa39826-7f89-41cb-a7fe-7f7be817d5cd.jpg?1592709229", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/a/daa39826-7f89-41cb-a7fe-7f7be817d5cd.jpg?1592709229"}, "reprint": false, "frame_effects": ["miracle"], "digital": false, "set_type": "expansion"}, {"name": "Titan's Revenge", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/1/b1b0f9ca-b752-4dd6-982b-06bb3a27ddbc.jpg?1562880793", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/1/b1b0f9ca-b752-4dd6-982b-06bb3a27ddbc.jpg?1562880793"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Touch of the Void", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/0/006ead4a-dc57-4856-8e13-235ba55483e6.jpg?1562895118", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/0/006ead4a-dc57-4856-8e13-235ba55483e6.jpg?1562895118"}, "reprint": false, "frame_effects": ["devoid"], "digital": false, "set_type": "expansion"}, {"name": "Traitor's Roar", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/5/751e2700-6425-45b8-b026-8c78098f08b2.jpg?1562831801", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/5/751e2700-6425-45b8-b026-8c78098f08b2.jpg?1562831801"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Tribal Flames", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/7/07fafa53-1e22-43f5-abf3-bbab8130f84d.jpg?1561966002", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/7/07fafa53-1e22-43f5-abf3-bbab8130f84d.jpg?1561966002"}, "reprint": true, "digital": false, "set_type": "masters"}, {"name": "Tribal Flames", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/b/9b32531e-c759-4603-abd0-1724e8df70db.jpg?1562926326", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/b/9b32531e-c759-4603-abd0-1724e8df70db.jpg?1562926326"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Unfriendly Fire", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/a/7a61b274-0499-4cb6-a2e4-f5e18ad7fd2d.jpg?1562558512", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/a/7a61b274-0499-4cb6-a2e4-f5e18ad7fd2d.jpg?1562558512"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Unlicensed Disintegration", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/6/16ad8f86-7860-4896-a161-07bf347bbd5b.jpg?1576382889", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/6/16ad8f86-7860-4896-a161-07bf347bbd5b.jpg?1576382889"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Unlicensed Disintegration", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/4/74843584-d6b1-4ee6-bedb-999ab0a42bb9.jpg?1562636815", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/4/74843584-d6b1-4ee6-bedb-999ab0a42bb9.jpg?1562636815"}, "reprint": true, "digital": false, "set_type": "promo"}, {"name": "Urza's Rage", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/7/774c52e2-b0d1-4b70-b6d1-bf98f6298603.jpg?1562917055", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/7/774c52e2-b0d1-4b70-b6d1-bf98f6298603.jpg?1562917055"}, "reprint": true, "digital": false, "set_type": "duel_deck"}, {"name": "Urza's Rage", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/1/61a25a35-3ae4-471e-adcd-d8baf2f77b68.jpg?1562914759", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/1/61a25a35-3ae4-471e-adcd-d8baf2f77b68.jpg?1562914759"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Urza's Rage", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/8/d80e9897-d84c-4992-9e8e-3a00f377c7e5.jpg?1623945800", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/8/d80e9897-d84c-4992-9e8e-3a00f377c7e5.jpg?1623945800"}, "reprint": true, "digital": false, "set_type": "masterpiece"}, {"name": "Volcanic Fallout", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/5/65536d12-e75c-42b5-b592-a3ad4f550a71.jpg?1592485188", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/5/65536d12-e75c-42b5-b592-a3ad4f550a71.jpg?1592485188"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Volcanic Fallout", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/d/8d3a69d2-518d-4b70-a03e-6d02a525f9ad.jpg?1561757550", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/d/8d3a69d2-518d-4b70-a03e-6d02a525f9ad.jpg?1561757550"}, "reprint": true, "digital": false, "set_type": "promo"}, {"name": "Volcanic Geyser", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/f/df5bab70-3c28-48db-9ed3-64706f64f4fa.jpg?1562560984", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/f/df5bab70-3c28-48db-9ed3-64706f64f4fa.jpg?1562560984"}, "reprint": true, "digital": false, "set_type": "core"}, {"name": "Volcanic Geyser", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/1/911787db-9023-46f8-9501-3ad26b6ca51d.jpg?1562720483", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/1/911787db-9023-46f8-9501-3ad26b6ca51d.jpg?1562720483"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Volcanic Hammer", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/8/f8d93606-4864-4a5f-bcbf-8638211e979d.jpg?1562251759", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/8/f8d93606-4864-4a5f-bcbf-8638211e979d.jpg?1562251759"}, "reprint": true, "digital": false, "set_type": "core"}, {"name": "Volcanic Hammer", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/8/58c0489d-b073-4ad4-b044-447fcc865b6c.jpg?1562915903", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/8/58c0489d-b073-4ad4-b044-447fcc865b6c.jpg?1562915903"}, "reprint": true, "digital": false, "set_type": "starter"}, {"name": "Volcanic Hammer", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/5/9563d7c1-4ed1-4919-b0b8-ea1ec9d4bbf6.jpg?1562447337", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/5/9563d7c1-4ed1-4919-b0b8-ea1ec9d4bbf6.jpg?1562447337"}, "reprint": false, "digital": false, "set_type": "starter"}, {"name": "Volcanic Spray", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/7/97daab4b-d934-4a3f-a043-f7c9c1dd32bf.jpg?1562923217", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/7/97daab4b-d934-4a3f-a043-f7c9c1dd32bf.jpg?1562923217"}, "reprint": false, "frame_effects": ["tombstone"], "digital": false, "set_type": "expansion"}, {"name": "Volt Charge", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/a/aa88011c-a19d-4faa-8da6-86b9980cd571.jpg?1562880613", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/a/aa88011c-a19d-4faa-8da6-86b9980cd571.jpg?1562880613"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Warleader's Helix", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/1/81e474ac-54f7-43f9-8af9-2f1adf258b15.jpg?1562919089", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/1/81e474ac-54f7-43f9-8af9-2f1adf258b15.jpg?1562919089"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Warleader's Helix", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/c/fcc1dd23-90fa-4aa4-b0a9-7a92991ad7ec.jpg?1562640152", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/c/fcc1dd23-90fa-4aa4-b0a9-7a92991ad7ec.jpg?1562640152"}, "reprint": true, "digital": false, "set_type": "promo"}, {"name": "Weight of Spires", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/5/d5f26a87-4562-450c-800b-7d4acc1ae17b.jpg?1593273313", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/5/d5f26a87-4562-450c-800b-7d4acc1ae17b.jpg?1593273313"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Wild Slash", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/9/6975490f-7679-48b3-ba34-04dec97a29c2.jpg?1562826120", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/9/6975490f-7679-48b3-ba34-04dec97a29c2.jpg?1562826120"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Winter Sky", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/f/af1035f3-3027-4a41-834c-55222b13c2bc.jpg?1562588224", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/f/af1035f3-3027-4a41-834c-55222b13c2bc.jpg?1562588224"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Wizard's Lightning", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/9/59bf371a-164c-4db8-9207-197c2e7c3c10.jpg?1562736134", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/9/59bf371a-164c-4db8-9207-197c2e7c3c10.jpg?1562736134"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Word of Blasting", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/5/c5362ead-9162-4160-bfa9-432f7d0e222d.jpg?1562383027", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/5/c5362ead-9162-4160-bfa9-432f7d0e222d.jpg?1562383027"}, "reprint": true, "digital": false, "set_type": "expansion"}, {"name": "Word of Blasting", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/6/46b383c8-d604-4131-a869-9e9d13e30b94.jpg?1562907917", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/6/46b383c8-d604-4131-a869-9e9d13e30b94.jpg?1562907917"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Yamabushi's Flame", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/a/1a9bacba-55c4-4b92-bdd9-01b6035ed1b2.jpg?1562757952", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/a/1a9bacba-55c4-4b92-bdd9-01b6035ed1b2.jpg?1562757952"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Zap", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/5/7502ce01-b762-40fe-a064-c7b20b08a722.jpg?1562918451", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/5/7502ce01-b762-40fe-a064-c7b20b08a722.jpg?1562918451"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Zenith Flare", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/e/0efac1ed-3f01-487c-86be-8239568b4425.jpg?1591228324", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/e/0efac1ed-3f01-487c-86be-8239568b4425.jpg?1591228324"}, "reprint": false, "digital": false, "set_type": "expansion"}]} \ No newline at end of file diff --git a/web/public/mtg/jsons/counterspell1.json b/web/public/mtg/jsons/counterspell1.json index 2f6b4a05..abee75b2 100644 --- a/web/public/mtg/jsons/counterspell1.json +++ b/web/public/mtg/jsons/counterspell1.json @@ -1 +1 @@ -{"object": "list", "total_cards": 447, "has_more": true, "next_page": "https://api.scryfall.com/cards/search?format=json&include_extras=true&include_multilingual=false&order=name&page=2&q=otag%3Acounterspell+t%3Ainstant+not%3Aadventure+-%28set%3Asld+%28%28cn%3E%3D231+cn%3C%3D233%29+or+%28cn%3E%3D321+cn%3C%3D324%29+or+%28cn%3E%3D185+cn%3C%3D189%29+or+%28cn%3E%3D138+cn%3C%3D142%29+or+%28cn%3E%3D364+cn%3C%3D368%29+or+cn%3A669+or+cn%3A670%29%29+-name%3A%2F%5Ea-%2F+not%3Adfc+not%3Asplit+-set%3Acmb2+-set%3Acmb1+-set%3Aplist+-set%3Adbl+-frame%3Aextendedart+language%3Aenglish&unique=art", "data": [{"object": "card", "id": "fbad9449-d09c-4fd0-b2ad-2aa3a29e03bf", "oracle_id": "dd97e457-07eb-4918-b780-ae7ff42a37e7", "multiverse_ids": [4477], "mtgo_id": 9219, "mtgo_foil_id": 9220, "tcgplayer_id": 5970, "cardmarket_id": 8599, "name": "Abjure", "lang": "en", "released_at": "1997-06-09", "uri": "https://api.scryfall.com/cards/fbad9449-d09c-4fd0-b2ad-2aa3a29e03bf", "scryfall_uri": "https://scryfall.com/card/wth/31/abjure?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/f/b/fbad9449-d09c-4fd0-b2ad-2aa3a29e03bf.jpg?1562804357", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/b/fbad9449-d09c-4fd0-b2ad-2aa3a29e03bf.jpg?1562804357", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/f/b/fbad9449-d09c-4fd0-b2ad-2aa3a29e03bf.jpg?1562804357", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/f/b/fbad9449-d09c-4fd0-b2ad-2aa3a29e03bf.png?1562804357", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/b/fbad9449-d09c-4fd0-b2ad-2aa3a29e03bf.jpg?1562804357", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/f/b/fbad9449-d09c-4fd0-b2ad-2aa3a29e03bf.jpg?1562804357"}, "mana_cost": "{U}", "cmc": 1.0, "type_line": "Instant", "oracle_text": "As an additional cost to cast this spell, sacrifice a blue permanent.\nCounter target spell.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "700997ac-add2-4ce2-992e-5efa0fdfc0e9", "set": "wth", "set_name": "Weatherlight", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/700997ac-add2-4ce2-992e-5efa0fdfc0e9", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Awth&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/wth?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/fbad9449-d09c-4fd0-b2ad-2aa3a29e03bf/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Add97e457-07eb-4918-b780-ae7ff42a37e7&unique=prints", "collector_number": "31", "digital": false, "rarity": "common", "flavor_text": "Mirri's hackles rose as Ertai continued expounding his virtues. \"If that arrogant brat doesn't shut up soon,\" she growled to herself, \"I'm going to have to kill him.\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Ted Naifeh", "artist_ids": ["4601d9e5-616b-47c4-b9ca-e2b4ab257bc9"], "illustration_id": "99d878ef-98db-4ad7-8214-9f3be3f7e38d", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 4123, "prices": {"usd": "0.47", "usd_foil": null, "usd_etched": null, "eur": "0.29", "eur_foil": null, "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=4477", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Abjure&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Abjure&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Abjure"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/5970?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Abjure&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/9219?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "1e8a43c1-42d1-45ef-8a63-4b87775a6e88", "oracle_id": "132ca99a-a3c7-4ed6-b4d0-0edcd7140ca2", "multiverse_ids": [457295], "mtgo_id": 71302, "arena_id": 69279, "tcgplayer_id": 182492, "cardmarket_id": 367888, "name": "Absorb", "lang": "en", "released_at": "2019-01-25", "uri": "https://api.scryfall.com/cards/1e8a43c1-42d1-45ef-8a63-4b87775a6e88", "scryfall_uri": "https://scryfall.com/card/rna/151/absorb?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/1/e/1e8a43c1-42d1-45ef-8a63-4b87775a6e88.jpg?1584831352", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/e/1e8a43c1-42d1-45ef-8a63-4b87775a6e88.jpg?1584831352", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/1/e/1e8a43c1-42d1-45ef-8a63-4b87775a6e88.jpg?1584831352", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/1/e/1e8a43c1-42d1-45ef-8a63-4b87775a6e88.png?1584831352", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/e/1e8a43c1-42d1-45ef-8a63-4b87775a6e88.jpg?1584831352", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/1/e/1e8a43c1-42d1-45ef-8a63-4b87775a6e88.jpg?1584831352"}, "mana_cost": "{W}{U}{U}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Counter target spell. You gain 3 life.", "colors": ["U", "W"], "color_identity": ["U", "W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "97a7fd84-8d89-45a3-b48b-c951f6a3f9f1", "set": "rna", "set_name": "Ravnica Allegiance", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/97a7fd84-8d89-45a3-b48b-c951f6a3f9f1", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Arna&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/rna?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/1e8a43c1-42d1-45ef-8a63-4b87775a6e88/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A132ca99a-a3c7-4ed6-b4d0-0edcd7140ca2&unique=prints", "collector_number": "151", "digital": false, "rarity": "rare", "watermark": "azorius", "flavor_text": "\"In your misguided attempt to subvert the law, you have eloquently explained why the law must exist.\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Izzy", "artist_ids": ["2c3d2473-ff5d-4309-8194-e0b2def2ab65"], "illustration_id": "d64f2ad2-53b3-4d76-9f2f-4ef8b097af60", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 4201, "preview": {"source": "Wizards of the Coast", "source_uri": "https://twitter.com/wizards_magic/status/1077519325190385664", "previewed_at": "2018-12-25"}, "prices": {"usd": "3.63", "usd_foil": "3.49", "usd_etched": null, "eur": "1.09", "eur_foil": "5.50", "tix": "0.09"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=457295", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Absorb&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Absorb&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Absorb"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/182492?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Absorb&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/71302?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "5d6a0f3e-457f-41f5-be26-5fb249874f1a", "oracle_id": "132ca99a-a3c7-4ed6-b4d0-0edcd7140ca2", "multiverse_ids": [23155], "mtgo_id": 14401, "mtgo_foil_id": 14402, "tcgplayer_id": 7407, "cardmarket_id": 3402, "name": "Absorb", "lang": "en", "released_at": "2000-10-02", "uri": "https://api.scryfall.com/cards/5d6a0f3e-457f-41f5-be26-5fb249874f1a", "scryfall_uri": "https://scryfall.com/card/inv/226/absorb?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/5/d/5d6a0f3e-457f-41f5-be26-5fb249874f1a.jpg?1562913952", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/d/5d6a0f3e-457f-41f5-be26-5fb249874f1a.jpg?1562913952", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/5/d/5d6a0f3e-457f-41f5-be26-5fb249874f1a.jpg?1562913952", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/5/d/5d6a0f3e-457f-41f5-be26-5fb249874f1a.png?1562913952", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/d/5d6a0f3e-457f-41f5-be26-5fb249874f1a.jpg?1562913952", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/5/d/5d6a0f3e-457f-41f5-be26-5fb249874f1a.jpg?1562913952"}, "mana_cost": "{W}{U}{U}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Counter target spell. You gain 3 life.", "colors": ["U", "W"], "color_identity": ["U", "W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "b9ae5e02-7726-47ca-b5e4-5ec402b41cd1", "set": "inv", "set_name": "Invasion", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/b9ae5e02-7726-47ca-b5e4-5ec402b41cd1", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ainv&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/inv?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/5d6a0f3e-457f-41f5-be26-5fb249874f1a/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A132ca99a-a3c7-4ed6-b4d0-0edcd7140ca2&unique=prints", "collector_number": "226", "digital": false, "rarity": "rare", "flavor_text": "\"Your presumption is your downfall.\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Andrew Goldhawk", "artist_ids": ["f4a65a04-9e2e-4541-8d0e-f34e9517f092"], "illustration_id": "53d36272-c285-4bd3-9c46-f10d4e575cc7", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 4201, "prices": {"usd": "7.71", "usd_foil": "125.49", "usd_etched": null, "eur": "5.49", "eur_foil": "49.90", "tix": "1.42"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=23155", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Absorb&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Absorb&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Absorb"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/7407?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Absorb&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/14401?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "bfdca67d-9a97-4ddc-8d50-26a48ad2e4b7", "oracle_id": "3010f11c-8ee1-4854-96d2-ae33ea3fe4e8", "multiverse_ids": [], "arena_id": 79917, "name": "Absorb Energy", "lang": "en", "released_at": "2021-12-09", "uri": "https://api.scryfall.com/cards/bfdca67d-9a97-4ddc-8d50-26a48ad2e4b7", "scryfall_uri": "https://scryfall.com/card/ymid/12/absorb-energy?utm_source=api", "layout": "normal", "highres_image": false, "image_status": "lowres", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/b/f/bfdca67d-9a97-4ddc-8d50-26a48ad2e4b7.jpg?1645416627", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/f/bfdca67d-9a97-4ddc-8d50-26a48ad2e4b7.jpg?1645416627", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/b/f/bfdca67d-9a97-4ddc-8d50-26a48ad2e4b7.jpg?1645416627", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/b/f/bfdca67d-9a97-4ddc-8d50-26a48ad2e4b7.png?1645416627", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/f/bfdca67d-9a97-4ddc-8d50-26a48ad2e4b7.jpg?1645416627", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/b/f/bfdca67d-9a97-4ddc-8d50-26a48ad2e4b7.jpg?1645416627"}, "mana_cost": "{1}{U}{U}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Counter target spell. Cards in your hand that share a card type with that spell perpetually gain \"This spell costs {1} less to cast.\"", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "not_legal", "pauper": "not_legal", "vintage": "not_legal", "penny": "not_legal", "commander": "not_legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "not_legal", "duel": "not_legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "8a673262-8745-452d-820a-03d5c4a4f135", "set": "ymid", "set_name": "Alchemy: Innistrad", "set_type": "alchemy", "set_uri": "https://api.scryfall.com/sets/8a673262-8745-452d-820a-03d5c4a4f135", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aymid&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ymid?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/bfdca67d-9a97-4ddc-8d50-26a48ad2e4b7/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A3010f11c-8ee1-4854-96d2-ae33ea3fe4e8&unique=prints", "collector_number": "12", "digital": true, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Steve Argyle", "artist_ids": ["a44ddda4-5331-4f83-aac9-3e00ed36bd7b"], "illustration_id": "5f95edfa-3f1c-4183-a138-f7bcd935923f", "border_color": "black", "frame": "2015", "security_stamp": "arena", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "preview": {"source": "Wizards of the Coast", "source_uri": "https://www.twitch.tv/videos/1222240116", "previewed_at": "2021-12-03"}, "prices": {"usd": null, "usd_foil": null, "usd_etched": null, "eur": null, "eur_foil": null, "tix": null}, "related_uris": {"tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Absorb+Energy&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Absorb+Energy&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Absorb+Energy"}}, {"object": "card", "id": "249a7be3-311e-4ce6-97dc-97242463ae23", "oracle_id": "e8ebf5cb-3a26-4bbd-812b-414c129e4bb7", "multiverse_ids": [407550], "mtgo_id": 59391, "mtgo_foil_id": 59392, "tcgplayer_id": 111010, "cardmarket_id": 287341, "name": "Abstruse Interference", "lang": "en", "released_at": "2016-01-22", "uri": "https://api.scryfall.com/cards/249a7be3-311e-4ce6-97dc-97242463ae23", "scryfall_uri": "https://scryfall.com/card/ogw/40/abstruse-interference?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/2/4/249a7be3-311e-4ce6-97dc-97242463ae23.jpg?1562902357", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/4/249a7be3-311e-4ce6-97dc-97242463ae23.jpg?1562902357", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/2/4/249a7be3-311e-4ce6-97dc-97242463ae23.jpg?1562902357", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/2/4/249a7be3-311e-4ce6-97dc-97242463ae23.png?1562902357", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/4/249a7be3-311e-4ce6-97dc-97242463ae23.jpg?1562902357", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/2/4/249a7be3-311e-4ce6-97dc-97242463ae23.jpg?1562902357"}, "mana_cost": "{2}{U}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Devoid (This card has no color.)\nCounter target spell unless its controller pays {1}. You create a 1/1 colorless Eldrazi Scion creature token. It has \"Sacrifice this creature: Add {C}.\" ({C} represents colorless mana.)", "colors": [], "color_identity": ["U"], "keywords": ["Devoid"], "produced_mana": ["C"], "all_parts": [{"object": "related_card", "id": "249a7be3-311e-4ce6-97dc-97242463ae23", "component": "combo_piece", "name": "Abstruse Interference", "type_line": "Instant", "uri": "https://api.scryfall.com/cards/249a7be3-311e-4ce6-97dc-97242463ae23"}, {"object": "related_card", "id": "a03edf14-3495-4f61-ad73-f16e9456472c", "component": "token", "name": "Eldrazi Scion", "type_line": "Token Creature \u2014 Eldrazi Scion", "uri": "https://api.scryfall.com/cards/a03edf14-3495-4f61-ad73-f16e9456472c"}], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "cd51d245-8f95-45b0-ab5f-e2b3a3eb5dfe", "set": "ogw", "set_name": "Oath of the Gatewatch", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/cd51d245-8f95-45b0-ab5f-e2b3a3eb5dfe", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aogw&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ogw?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/249a7be3-311e-4ce6-97dc-97242463ae23/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ae8ebf5cb-3a26-4bbd-812b-414c129e4bb7&unique=prints", "collector_number": "40", "digital": false, "rarity": "common", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Igor Kieryluk", "artist_ids": ["9c3e9d17-509f-485c-9360-46d897ce716b"], "illustration_id": "98f9a509-1af6-425c-ad50-62954c745c70", "border_color": "black", "frame": "2015", "frame_effects": ["devoid"], "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 13054, "penny_rank": 10381, "prices": {"usd": "0.03", "usd_foil": "0.25", "usd_etched": null, "eur": "0.02", "eur_foil": "0.33", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=407550", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Abstruse+Interference&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Abstruse+Interference&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Abstruse+Interference"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/111010?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Abstruse+Interference&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/59391?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "1642df77-6fe8-47cf-b750-ca4dd9b331ba", "oracle_id": "353dd446-2ea6-41c9-a10f-5a03e4de19b4", "multiverse_ids": [553908], "mtgo_id": 97770, "tcgplayer_id": 263103, "cardmarket_id": 608603, "name": "Access Denied", "lang": "en", "released_at": "2022-02-18", "uri": "https://api.scryfall.com/cards/1642df77-6fe8-47cf-b750-ca4dd9b331ba", "scryfall_uri": "https://scryfall.com/card/nec/11/access-denied?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/1/6/1642df77-6fe8-47cf-b750-ca4dd9b331ba.jpg?1651655225", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/6/1642df77-6fe8-47cf-b750-ca4dd9b331ba.jpg?1651655225", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/1/6/1642df77-6fe8-47cf-b750-ca4dd9b331ba.jpg?1651655225", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/1/6/1642df77-6fe8-47cf-b750-ca4dd9b331ba.png?1651655225", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/6/1642df77-6fe8-47cf-b750-ca4dd9b331ba.jpg?1651655225", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/1/6/1642df77-6fe8-47cf-b750-ca4dd9b331ba.jpg?1651655225"}, "mana_cost": "{3}{U}{U}", "cmc": 5.0, "type_line": "Instant", "oracle_text": "Counter target spell. Create X 1/1 colorless Thopter artifact creature tokens with flying, where X is that spell's mana value.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "all_parts": [{"object": "related_card", "id": "1642df77-6fe8-47cf-b750-ca4dd9b331ba", "component": "combo_piece", "name": "Access Denied", "type_line": "Instant", "uri": "https://api.scryfall.com/cards/1642df77-6fe8-47cf-b750-ca4dd9b331ba"}, {"object": "related_card", "id": "65dd4252-09d0-4666-8d80-10432265ae4a", "component": "token", "name": "Thopter", "type_line": "Token Artifact Creature \u2014 Thopter", "uri": "https://api.scryfall.com/cards/65dd4252-09d0-4666-8d80-10432265ae4a"}], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "5b4d929d-bdf9-4bbf-858e-e248f53325ad", "set": "nec", "set_name": "Neon Dynasty Commander", "set_type": "commander", "set_uri": "https://api.scryfall.com/sets/5b4d929d-bdf9-4bbf-858e-e248f53325ad", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Anec&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/nec?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/1642df77-6fe8-47cf-b750-ca4dd9b331ba/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A353dd446-2ea6-41c9-a10f-5a03e4de19b4&unique=prints", "collector_number": "11", "digital": false, "rarity": "rare", "flavor_text": "The Saiba Futurists guard their secret experiments with ever-evolving networks of cutting-edge defensive technology.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Johan Grenier", "artist_ids": ["465e38b8-7eed-4d22-a6d2-d3603ee0c00b"], "illustration_id": "7ab89310-3dda-4c70-8647-eabe335fb7ce", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "edhrec_rank": 5251, "prices": {"usd": "0.38", "usd_foil": null, "usd_etched": null, "eur": "0.62", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=553908", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Access+Denied&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Access+Denied&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Access+Denied"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/263103?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Access+Denied&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/97770?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "80dc0310-afd9-49b4-b58f-a0e91120c38c", "oracle_id": "ae4fe5e0-408d-4398-84d7-a901b836df2a", "multiverse_ids": [439688], "mtgo_id": 66515, "arena_id": 66679, "tcgplayer_id": 155626, "cardmarket_id": 315327, "name": "Admiral's Order", "lang": "en", "released_at": "2018-01-19", "uri": "https://api.scryfall.com/cards/80dc0310-afd9-49b4-b58f-a0e91120c38c", "scryfall_uri": "https://scryfall.com/card/rix/31/admirals-order?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/8/0/80dc0310-afd9-49b4-b58f-a0e91120c38c.jpg?1555039852", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/0/80dc0310-afd9-49b4-b58f-a0e91120c38c.jpg?1555039852", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/8/0/80dc0310-afd9-49b4-b58f-a0e91120c38c.jpg?1555039852", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/8/0/80dc0310-afd9-49b4-b58f-a0e91120c38c.png?1555039852", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/0/80dc0310-afd9-49b4-b58f-a0e91120c38c.jpg?1555039852", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/8/0/80dc0310-afd9-49b4-b58f-a0e91120c38c.jpg?1555039852"}, "mana_cost": "{1}{U}{U}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Raid \u2014 If you attacked this turn, you may pay {U} rather than pay this spell's mana cost.\nCounter target spell.", "colors": ["U"], "color_identity": ["U"], "keywords": ["Raid"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "2f7e40fc-772d-4a85-bfdd-01653c41d0fa", "set": "rix", "set_name": "Rivals of Ixalan", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/2f7e40fc-772d-4a85-bfdd-01653c41d0fa", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Arix&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/rix?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/80dc0310-afd9-49b4-b58f-a0e91120c38c/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aae4fe5e0-408d-4398-84d7-a901b836df2a&unique=prints", "collector_number": "31", "digital": false, "rarity": "rare", "flavor_text": "\"Damn the cannons, mates. Charge!\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Slawomir Maniak", "artist_ids": ["d887bc66-2779-416c-a1ff-d8720242063e"], "illustration_id": "f7c1a3b3-57ee-4ba7-a2a0-c5928630e072", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 6521, "penny_rank": 4448, "prices": {"usd": "0.28", "usd_foil": "0.69", "usd_etched": null, "eur": "0.29", "eur_foil": "1.99", "tix": "0.01"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=439688", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Admiral%27s+Order&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Admiral%27s+Order&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Admiral%27s+Order"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/155626?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Admiral%27s+Order&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/66515?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "783da808-6698-4e55-9fac-430a6effe2b1", "oracle_id": "ecf1e378-d6bc-4ee0-800e-eb8a955d781f", "multiverse_ids": [466796], "mtgo_id": 72983, "arena_id": 69827, "tcgplayer_id": 192535, "cardmarket_id": 378360, "name": "Aether Gust", "lang": "en", "released_at": "2019-07-12", "uri": "https://api.scryfall.com/cards/783da808-6698-4e55-9fac-430a6effe2b1", "scryfall_uri": "https://scryfall.com/card/m20/42/aether-gust?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/7/8/783da808-6698-4e55-9fac-430a6effe2b1.jpg?1592516251", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/8/783da808-6698-4e55-9fac-430a6effe2b1.jpg?1592516251", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/7/8/783da808-6698-4e55-9fac-430a6effe2b1.jpg?1592516251", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/7/8/783da808-6698-4e55-9fac-430a6effe2b1.png?1592516251", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/8/783da808-6698-4e55-9fac-430a6effe2b1.jpg?1592516251", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/7/8/783da808-6698-4e55-9fac-430a6effe2b1.jpg?1592516251"}, "mana_cost": "{1}{U}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Choose target spell or permanent that's red or green. Its owner puts it on the top or bottom of their library.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "4a787360-9767-4f44-80b1-2405dc5e39c7", "set": "m20", "set_name": "Core Set 2020", "set_type": "core", "set_uri": "https://api.scryfall.com/sets/4a787360-9767-4f44-80b1-2405dc5e39c7", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Am20&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/m20?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/783da808-6698-4e55-9fac-430a6effe2b1/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aecf1e378-d6bc-4ee0-800e-eb8a955d781f&unique=prints", "collector_number": "42", "digital": false, "rarity": "uncommon", "flavor_text": "The chill wind extinguishes flame, and frosts the leaf on the branch.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Tomasz Jedruszek", "artist_ids": ["bba69285-2445-4a4b-a847-59397be972ea"], "illustration_id": "df8c9ae4-a4a5-41e6-8b59-beb5a8388f14", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 12448, "preview": {"source": "Numot The Nummy", "source_uri": "https://twitter.com/NumotTheNummy/status/1140697435368382464", "previewed_at": "2019-06-17"}, "prices": {"usd": "0.37", "usd_foil": "7.48", "usd_etched": null, "eur": "0.31", "eur_foil": "9.40", "tix": "0.26"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=466796", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Aether+Gust&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Aether+Gust&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Aether+Gust"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/192535?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Aether+Gust&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/72983?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "bcc1aa91-ec97-4fe8-b4b1-a213f050f956", "oracle_id": "ecf1e378-d6bc-4ee0-800e-eb8a955d781f", "multiverse_ids": [], "tcgplayer_id": 259210, "name": "Aether Gust", "lang": "en", "released_at": "2021-11-29", "uri": "https://api.scryfall.com/cards/bcc1aa91-ec97-4fe8-b4b1-a213f050f956", "scryfall_uri": "https://scryfall.com/card/sld/330/aether-gust?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/b/c/bcc1aa91-ec97-4fe8-b4b1-a213f050f956.jpg?1645141636", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/c/bcc1aa91-ec97-4fe8-b4b1-a213f050f956.jpg?1645141636", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/b/c/bcc1aa91-ec97-4fe8-b4b1-a213f050f956.jpg?1645141636", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/b/c/bcc1aa91-ec97-4fe8-b4b1-a213f050f956.png?1645141636", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/c/bcc1aa91-ec97-4fe8-b4b1-a213f050f956.jpg?1645141636", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/b/c/bcc1aa91-ec97-4fe8-b4b1-a213f050f956.jpg?1645141636"}, "mana_cost": "{1}{U}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Choose target spell or permanent that's red or green. Its owner puts it on the top or bottom of their library.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "4d92a8a7-ccb0-437d-abdc-9d70fc5ed672", "set": "sld", "set_name": "Secret Lair Drop", "set_type": "box", "set_uri": "https://api.scryfall.com/sets/4d92a8a7-ccb0-437d-abdc-9d70fc5ed672", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Asld&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/sld?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/bcc1aa91-ec97-4fe8-b4b1-a213f050f956/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aecf1e378-d6bc-4ee0-800e-eb8a955d781f&unique=prints", "collector_number": "330", "digital": false, "rarity": "rare", "flavor_text": "The cleansing winds swept away all traces of the demon, until not even his legend remained.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Mateus Manhanini", "artist_ids": ["d194fa7a-4c05-44b1-af60-d474a72f7076"], "illustration_id": "8a01c67c-d7d2-4413-8078-af8acdfdae8e", "border_color": "borderless", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "edhrec_rank": 12448, "prices": {"usd": "5.82", "usd_foil": "5.94", "usd_etched": null, "eur": null, "eur_foil": null, "tix": null}, "related_uris": {"tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Aether+Gust&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Aether+Gust&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Aether+Gust"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/259210?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Aether+Gust&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Aether+Gust&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "4b1d4a59-11a0-4a55-8ac0-07377a9e6dc8", "oracle_id": "d08e9784-75f7-4164-ac48-d06160f8c56b", "multiverse_ids": [503649], "mtgo_id": 87409, "arena_id": 75080, "tcgplayer_id": 230186, "cardmarket_id": 530412, "name": "Annul", "lang": "en", "released_at": "2021-02-05", "uri": "https://api.scryfall.com/cards/4b1d4a59-11a0-4a55-8ac0-07377a9e6dc8", "scryfall_uri": "https://scryfall.com/card/khm/42/annul?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/4/b/4b1d4a59-11a0-4a55-8ac0-07377a9e6dc8.jpg?1631046631", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/b/4b1d4a59-11a0-4a55-8ac0-07377a9e6dc8.jpg?1631046631", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/4/b/4b1d4a59-11a0-4a55-8ac0-07377a9e6dc8.jpg?1631046631", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/4/b/4b1d4a59-11a0-4a55-8ac0-07377a9e6dc8.png?1631046631", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/b/4b1d4a59-11a0-4a55-8ac0-07377a9e6dc8.jpg?1631046631", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/4/b/4b1d4a59-11a0-4a55-8ac0-07377a9e6dc8.jpg?1631046631"}, "mana_cost": "{U}", "cmc": 1.0, "type_line": "Instant", "oracle_text": "Counter target artifact or enchantment spell.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "43057fad-b1c1-437f-bc48-0045bce6d8c9", "set": "khm", "set_name": "Kaldheim", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/43057fad-b1c1-437f-bc48-0045bce6d8c9", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Akhm&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/khm?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/4b1d4a59-11a0-4a55-8ac0-07377a9e6dc8/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ad08e9784-75f7-4164-ac48-d06160f8c56b&unique=prints", "collector_number": "42", "digital": false, "rarity": "common", "flavor_text": "\"Many giants have tried to crush me with their hammers. You'll never stop me with that little toy.\"\n\u2014Stigur of the Omenseekers", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Caio Monteiro", "artist_ids": ["d5053eb6-af72-47a0-b6e8-023cc3b9aefb"], "illustration_id": "cd87ff60-04c8-4a0a-8de2-f2ba99230913", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 5047, "penny_rank": 7596, "preview": {"source": "Riley Knight", "source_uri": "https://www.twitch.tv/videos/868612115", "previewed_at": "2021-01-10"}, "prices": {"usd": "0.05", "usd_foil": "0.13", "usd_etched": null, "eur": "0.08", "eur_foil": "0.15", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=503649", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Annul&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Annul&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Annul"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/230186?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Annul&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/87409?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "5e71b6ad-4b81-4277-8512-0a3f2266cd23", "oracle_id": "d08e9784-75f7-4164-ac48-d06160f8c56b", "multiverse_ids": [373584], "mtgo_id": 50158, "mtgo_foil_id": 50159, "tcgplayer_id": 71315, "cardmarket_id": 264204, "name": "Annul", "lang": "en", "released_at": "2013-09-27", "uri": "https://api.scryfall.com/cards/5e71b6ad-4b81-4277-8512-0a3f2266cd23", "scryfall_uri": "https://scryfall.com/card/ths/38/annul?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/5/e/5e71b6ad-4b81-4277-8512-0a3f2266cd23.jpg?1562818788", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/e/5e71b6ad-4b81-4277-8512-0a3f2266cd23.jpg?1562818788", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/5/e/5e71b6ad-4b81-4277-8512-0a3f2266cd23.jpg?1562818788", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/5/e/5e71b6ad-4b81-4277-8512-0a3f2266cd23.png?1562818788", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/e/5e71b6ad-4b81-4277-8512-0a3f2266cd23.jpg?1562818788", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/5/e/5e71b6ad-4b81-4277-8512-0a3f2266cd23.jpg?1562818788"}, "mana_cost": "{U}", "cmc": 1.0, "type_line": "Instant", "oracle_text": "Counter target artifact or enchantment spell.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "69093d6f-e25a-41a4-8cf5-688d7f11c0fb", "set": "ths", "set_name": "Theros", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/69093d6f-e25a-41a4-8cf5-688d7f11c0fb", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aths&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ths?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/5e71b6ad-4b81-4277-8512-0a3f2266cd23/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ad08e9784-75f7-4164-ac48-d06160f8c56b&unique=prints", "collector_number": "38", "digital": false, "rarity": "common", "flavor_text": "\"Why pray to the gods, who feed on your worship? Dissolve your illusions and see the true nature of things.\"\n\u2014Xenagos, the Reveler", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Christine Choi", "artist_ids": ["b8266529-1ffe-41e7-9969-fcf39f61426b"], "illustration_id": "29552fa7-306d-4206-9c0b-147085d21b2f", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 5047, "penny_rank": 7596, "prices": {"usd": "0.06", "usd_foil": "0.15", "usd_etched": null, "eur": "0.07", "eur_foil": "0.99", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=373584", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Annul&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Annul&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Annul"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/71315?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Annul&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/50158?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "8ba18ec8-e82f-41be-9ed8-b1a4ae9b7426", "oracle_id": "d08e9784-75f7-4164-ac48-d06160f8c56b", "multiverse_ids": [45976], "mtgo_id": 19703, "mtgo_foil_id": 19704, "tcgplayer_id": 11352, "cardmarket_id": 29, "name": "Annul", "lang": "en", "released_at": "2003-10-02", "uri": "https://api.scryfall.com/cards/8ba18ec8-e82f-41be-9ed8-b1a4ae9b7426", "scryfall_uri": "https://scryfall.com/card/mrd/29/annul?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/8/b/8ba18ec8-e82f-41be-9ed8-b1a4ae9b7426.jpg?1562150464", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/b/8ba18ec8-e82f-41be-9ed8-b1a4ae9b7426.jpg?1562150464", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/8/b/8ba18ec8-e82f-41be-9ed8-b1a4ae9b7426.jpg?1562150464", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/8/b/8ba18ec8-e82f-41be-9ed8-b1a4ae9b7426.png?1562150464", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/b/8ba18ec8-e82f-41be-9ed8-b1a4ae9b7426.jpg?1562150464", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/8/b/8ba18ec8-e82f-41be-9ed8-b1a4ae9b7426.jpg?1562150464"}, "mana_cost": "{U}", "cmc": 1.0, "type_line": "Instant", "oracle_text": "Counter target artifact or enchantment spell.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "1d4f90ba-8d4a-4ee5-bc2f-e2d6bffe4955", "set": "mrd", "set_name": "Mirrodin", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/1d4f90ba-8d4a-4ee5-bc2f-e2d6bffe4955", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Amrd&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/mrd?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/8ba18ec8-e82f-41be-9ed8-b1a4ae9b7426/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ad08e9784-75f7-4164-ac48-d06160f8c56b&unique=prints", "collector_number": "29", "digital": false, "rarity": "common", "flavor_text": "\"Murder of the living is tragic, but murder of the idea is unforgivable.\"\n\u2014Janus, speaker of the synod", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Brian Sn\u00f5ddy", "artist_ids": ["770b4e16-de76-49ed-949f-84e6d2e06d25"], "illustration_id": "8c062707-9c4b-4b59-80dd-70577d6ac4b1", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 5047, "penny_rank": 7596, "prices": {"usd": "0.11", "usd_foil": "1.25", "usd_etched": null, "eur": "0.13", "eur_foil": "0.55", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=45976", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Annul&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Annul&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Annul"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/11352?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Annul&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/19703?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "3f8c73ff-be92-41ca-93a7-76f9823adb38", "oracle_id": "d08e9784-75f7-4164-ac48-d06160f8c56b", "multiverse_ids": [10420], "mtgo_id": 12315, "mtgo_foil_id": 12316, "tcgplayer_id": 6782, "cardmarket_id": 10266, "name": "Annul", "lang": "en", "released_at": "1998-10-12", "uri": "https://api.scryfall.com/cards/3f8c73ff-be92-41ca-93a7-76f9823adb38", "scryfall_uri": "https://scryfall.com/card/usg/59/annul?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/3/f/3f8c73ff-be92-41ca-93a7-76f9823adb38.jpg?1562908208", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/f/3f8c73ff-be92-41ca-93a7-76f9823adb38.jpg?1562908208", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/3/f/3f8c73ff-be92-41ca-93a7-76f9823adb38.jpg?1562908208", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/3/f/3f8c73ff-be92-41ca-93a7-76f9823adb38.png?1562908208", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/f/3f8c73ff-be92-41ca-93a7-76f9823adb38.jpg?1562908208", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/3/f/3f8c73ff-be92-41ca-93a7-76f9823adb38.jpg?1562908208"}, "mana_cost": "{U}", "cmc": 1.0, "type_line": "Instant", "oracle_text": "Counter target artifact or enchantment spell.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "c330df40-51db-4caf-bde6-48df6c181001", "set": "usg", "set_name": "Urza's Saga", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/c330df40-51db-4caf-bde6-48df6c181001", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ausg&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/usg?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/3f8c73ff-be92-41ca-93a7-76f9823adb38/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ad08e9784-75f7-4164-ac48-d06160f8c56b&unique=prints", "collector_number": "59", "digital": false, "rarity": "common", "flavor_text": "The most effective way to destroy a spell is to ensure it was never cast in the first place.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Greg Simanson", "artist_ids": ["13f79e83-d576-4017-93b5-54c47313ed88"], "illustration_id": "32c09565-eb84-461a-89d6-504daa950e0a", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 5047, "penny_rank": 7596, "prices": {"usd": "0.28", "usd_foil": null, "usd_etched": null, "eur": "0.21", "eur_foil": null, "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=10420", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Annul&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Annul&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Annul"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/6782?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Annul&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/12315?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "b9d349f3-5be2-4b1f-a4c3-ba94822cf0cf", "oracle_id": "234a734b-ba28-4f1b-9d01-3c3e7d516590", "multiverse_ids": [555252], "mtgo_id": 98321, "arena_id": 80202, "tcgplayer_id": 268317, "cardmarket_id": 651366, "name": "An Offer You Can't Refuse", "lang": "en", "released_at": "2022-04-29", "uri": "https://api.scryfall.com/cards/b9d349f3-5be2-4b1f-a4c3-ba94822cf0cf", "scryfall_uri": "https://scryfall.com/card/snc/51/an-offer-you-cant-refuse?utm_source=api", "layout": "normal", "highres_image": false, "image_status": "lowres", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/b/9/b9d349f3-5be2-4b1f-a4c3-ba94822cf0cf.jpg?1649394290", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/9/b9d349f3-5be2-4b1f-a4c3-ba94822cf0cf.jpg?1649394290", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/b/9/b9d349f3-5be2-4b1f-a4c3-ba94822cf0cf.jpg?1649394290", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/b/9/b9d349f3-5be2-4b1f-a4c3-ba94822cf0cf.png?1649394290", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/9/b9d349f3-5be2-4b1f-a4c3-ba94822cf0cf.jpg?1649394290", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/b/9/b9d349f3-5be2-4b1f-a4c3-ba94822cf0cf.jpg?1649394290"}, "mana_cost": "{U}", "cmc": 1.0, "type_line": "Instant", "oracle_text": "Counter target noncreature spell. Its controller creates two Treasure tokens. (They're artifacts with \"{T}, Sacrifice this artifact: Add one mana of any color.\")", "colors": ["U"], "color_identity": ["U"], "keywords": [], "produced_mana": ["B", "G", "R", "U", "W"], "all_parts": [{"object": "related_card", "id": "b9d349f3-5be2-4b1f-a4c3-ba94822cf0cf", "component": "combo_piece", "name": "An Offer You Can't Refuse", "type_line": "Instant", "uri": "https://api.scryfall.com/cards/b9d349f3-5be2-4b1f-a4c3-ba94822cf0cf"}, {"object": "related_card", "id": "1be23c27-d8b6-4f59-8ab8-9ce80e9e29dd", "component": "token", "name": "Treasure", "type_line": "Token Artifact \u2014 Treasure", "uri": "https://api.scryfall.com/cards/1be23c27-d8b6-4f59-8ab8-9ce80e9e29dd"}], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo", "arena"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "df837242-8c15-42e4-b049-c933a02dc501", "set": "snc", "set_name": "Streets of New Capenna", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/df837242-8c15-42e4-b049-c933a02dc501", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Asnc&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/snc?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/b9d349f3-5be2-4b1f-a4c3-ba94822cf0cf/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A234a734b-ba28-4f1b-9d01-3c3e7d516590&unique=prints", "collector_number": "51", "digital": false, "rarity": "uncommon", "flavor_text": "Elspeth wanted answers. Xander needed a spy. Their paths were destined to cross.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Dallas Williams", "artist_ids": ["f62fb5b7-5ef8-47ad-9c3d-8c3e59d886c3"], "illustration_id": "9ef1c49d-33e4-40ea-a295-6f05b6739316", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": true, "edhrec_rank": 811, "penny_rank": 2267, "prices": {"usd": "1.69", "usd_foil": "4.76", "usd_etched": null, "eur": "1.07", "eur_foil": "1.69", "tix": "0.01"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=555252", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=An+Offer+You+Can%27t+Refuse&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=An+Offer+You+Can%27t+Refuse&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=An+Offer+You+Can%27t+Refuse"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/268317?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=An+Offer+You+Can%27t+Refuse&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/98321?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "db99b872-77c7-4471-9c44-a36d4ff5d33f", "oracle_id": "4728e320-d29b-4019-8ab5-e45319c77c40", "multiverse_ids": [491672], "mtgo_id": 83037, "arena_id": 73233, "tcgplayer_id": 221883, "cardmarket_id": 495109, "name": "Anticognition", "lang": "en", "released_at": "2020-09-25", "uri": "https://api.scryfall.com/cards/db99b872-77c7-4471-9c44-a36d4ff5d33f", "scryfall_uri": "https://scryfall.com/card/znr/45/anticognition?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/d/b/db99b872-77c7-4471-9c44-a36d4ff5d33f.jpg?1604193539", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/b/db99b872-77c7-4471-9c44-a36d4ff5d33f.jpg?1604193539", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/d/b/db99b872-77c7-4471-9c44-a36d4ff5d33f.jpg?1604193539", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/d/b/db99b872-77c7-4471-9c44-a36d4ff5d33f.png?1604193539", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/b/db99b872-77c7-4471-9c44-a36d4ff5d33f.jpg?1604193539", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/d/b/db99b872-77c7-4471-9c44-a36d4ff5d33f.jpg?1604193539"}, "mana_cost": "{1}{U}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Counter target creature or planeswalker spell unless its controller pays {2}. If an opponent has eight or more cards in their graveyard, instead counter that spell, then scry 2.", "colors": ["U"], "color_identity": ["U"], "keywords": ["Scry"], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "f4e01fa7-b254-42dd-849f-69b58027a8c4", "set": "znr", "set_name": "Zendikar Rising", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/f4e01fa7-b254-42dd-849f-69b58027a8c4", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aznr&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/znr?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/db99b872-77c7-4471-9c44-a36d4ff5d33f/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A4728e320-d29b-4019-8ab5-e45319c77c40&unique=prints", "collector_number": "45", "digital": false, "rarity": "common", "flavor_text": "\"I think not.\"\n\u2014Flekon the Mindcensor", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Igor Kieryluk", "artist_ids": ["9c3e9d17-509f-485c-9360-46d897ce716b"], "illustration_id": "892645bc-6e0b-455c-9224-5ca4c61dabe0", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 6677, "penny_rank": 9386, "preview": {"source": "Wizards of the Coast", "source_uri": "https://twitter.com/MTGArenaJP/status/1301127432842305538", "previewed_at": "2020-09-02"}, "prices": {"usd": "0.06", "usd_foil": "0.07", "usd_etched": null, "eur": "0.01", "eur_foil": "0.04", "tix": "0.01"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=491672", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Anticognition&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Anticognition&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Anticognition"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/221883?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Anticognition&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/83037?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "9d1ffeb1-6c31-45f7-8140-913c397022a3", "oracle_id": "ab1cc360-b9de-48d9-9983-4dfe4a7d2a37", "multiverse_ids": [442030], "mtgo_id": 66996, "mtgo_foil_id": 66997, "tcgplayer_id": 161794, "cardmarket_id": 319468, "name": "Arcane Denial", "lang": "en", "released_at": "2018-03-16", "uri": "https://api.scryfall.com/cards/9d1ffeb1-6c31-45f7-8140-913c397022a3", "scryfall_uri": "https://scryfall.com/card/a25/41/arcane-denial?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/9/d/9d1ffeb1-6c31-45f7-8140-913c397022a3.jpg?1562439019", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/d/9d1ffeb1-6c31-45f7-8140-913c397022a3.jpg?1562439019", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/9/d/9d1ffeb1-6c31-45f7-8140-913c397022a3.jpg?1562439019", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/9/d/9d1ffeb1-6c31-45f7-8140-913c397022a3.png?1562439019", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/d/9d1ffeb1-6c31-45f7-8140-913c397022a3.jpg?1562439019", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/9/d/9d1ffeb1-6c31-45f7-8140-913c397022a3.jpg?1562439019"}, "mana_cost": "{1}{U}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Counter target spell. Its controller may draw up to two cards at the beginning of the next turn's upkeep.\nYou draw a card at the beginning of the next turn's upkeep.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "41ee6e2f-69b3-4c53-8a8e-960f5e974cfc", "set": "a25", "set_name": "Masters 25", "set_type": "masters", "set_uri": "https://api.scryfall.com/sets/41ee6e2f-69b3-4c53-8a8e-960f5e974cfc", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aa25&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/a25?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/9d1ffeb1-6c31-45f7-8140-913c397022a3/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aab1cc360-b9de-48d9-9983-4dfe4a7d2a37&unique=prints", "collector_number": "41", "digital": false, "rarity": "common", "watermark": "set", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Xi Zhang", "artist_ids": ["f83575d5-d9e0-4163-8fe2-05000b435e8c"], "illustration_id": "af9e846a-eddf-4922-af71-c937d4febad6", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 75, "prices": {"usd": "1.92", "usd_foil": "2.06", "usd_etched": null, "eur": "1.08", "eur_foil": "1.00", "tix": "0.09"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=442030", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Arcane+Denial&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Arcane+Denial&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Arcane+Denial"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/161794?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Arcane+Denial&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/66996?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "ab175817-da6a-4ae7-a016-c3bfb087eae0", "oracle_id": "ab1cc360-b9de-48d9-9983-4dfe4a7d2a37", "multiverse_ids": [376245], "mtgo_id": 51224, "mtgo_foil_id": 51225, "tcgplayer_id": 72033, "cardmarket_id": 264789, "name": "Arcane Denial", "lang": "en", "released_at": "2013-11-01", "uri": "https://api.scryfall.com/cards/ab175817-da6a-4ae7-a016-c3bfb087eae0", "scryfall_uri": "https://scryfall.com/card/c13/28/arcane-denial?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/a/b/ab175817-da6a-4ae7-a016-c3bfb087eae0.jpg?1562931100", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/b/ab175817-da6a-4ae7-a016-c3bfb087eae0.jpg?1562931100", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/a/b/ab175817-da6a-4ae7-a016-c3bfb087eae0.jpg?1562931100", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/a/b/ab175817-da6a-4ae7-a016-c3bfb087eae0.png?1562931100", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/b/ab175817-da6a-4ae7-a016-c3bfb087eae0.jpg?1562931100", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/a/b/ab175817-da6a-4ae7-a016-c3bfb087eae0.jpg?1562931100"}, "mana_cost": "{1}{U}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Counter target spell. Its controller may draw up to two cards at the beginning of the next turn's upkeep.\nYou draw a card at the beginning of the next turn's upkeep.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "c62e6d4f-af8c-4f27-9bc8-361291890146", "set": "c13", "set_name": "Commander 2013", "set_type": "commander", "set_uri": "https://api.scryfall.com/sets/c62e6d4f-af8c-4f27-9bc8-361291890146", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ac13&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/c13?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/ab175817-da6a-4ae7-a016-c3bfb087eae0/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aab1cc360-b9de-48d9-9983-4dfe4a7d2a37&unique=prints", "collector_number": "28", "digital": false, "rarity": "common", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Mark Zug", "artist_ids": ["48e2b98c-5467-4671-bd42-4c3746115117"], "illustration_id": "dcb19394-8fdf-4999-8b3c-68b46469c0ca", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "edhrec_rank": 75, "prices": {"usd": "1.88", "usd_foil": null, "usd_etched": null, "eur": "0.75", "eur_foil": null, "tix": "1.36"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=376245", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Arcane+Denial&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Arcane+Denial&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Arcane+Denial"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/72033?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Arcane+Denial&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/51224?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "b0c5728e-43e7-417a-ba18-5038345cec67", "oracle_id": "ab1cc360-b9de-48d9-9983-4dfe4a7d2a37", "multiverse_ids": [3097], "tcgplayer_id": 81803, "cardmarket_id": 7884, "name": "Arcane Denial", "lang": "en", "released_at": "1996-06-10", "uri": "https://api.scryfall.com/cards/b0c5728e-43e7-417a-ba18-5038345cec67", "scryfall_uri": "https://scryfall.com/card/all/22a/arcane-denial?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/b/0/b0c5728e-43e7-417a-ba18-5038345cec67.jpg?1562770144", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/0/b0c5728e-43e7-417a-ba18-5038345cec67.jpg?1562770144", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/b/0/b0c5728e-43e7-417a-ba18-5038345cec67.jpg?1562770144", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/b/0/b0c5728e-43e7-417a-ba18-5038345cec67.png?1562770144", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/0/b0c5728e-43e7-417a-ba18-5038345cec67.jpg?1562770144", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/b/0/b0c5728e-43e7-417a-ba18-5038345cec67.jpg?1562770144"}, "mana_cost": "{1}{U}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Counter target spell. Its controller may draw up to two cards at the beginning of the next turn's upkeep.\nYou draw a card at the beginning of the next turn's upkeep.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "64987b06-4a5c-443d-b560-ff5691744582", "set": "all", "set_name": "Alliances", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/64987b06-4a5c-443d-b560-ff5691744582", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aall&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/all?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/b0c5728e-43e7-417a-ba18-5038345cec67/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aab1cc360-b9de-48d9-9983-4dfe4a7d2a37&unique=prints", "collector_number": "22a", "digital": false, "rarity": "common", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Richard Kane Ferguson", "artist_ids": ["191620ed-2361-444e-96a6-1fe7ce32ef3b"], "illustration_id": "0f081704-f595-4e3d-aafd-2f54dd630795", "border_color": "black", "frame": "1993", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 75, "prices": {"usd": "1.76", "usd_foil": null, "usd_etched": null, "eur": "1.33", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=3097", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Arcane+Denial&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Arcane+Denial&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Arcane+Denial"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/81803?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Arcane+Denial&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Arcane+Denial&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "415a3104-90e6-4235-b67f-69337c7fe714", "oracle_id": "ab1cc360-b9de-48d9-9983-4dfe4a7d2a37", "multiverse_ids": [3098], "tcgplayer_id": 4097, "cardmarket_id": 7885, "name": "Arcane Denial", "lang": "en", "released_at": "1996-06-10", "uri": "https://api.scryfall.com/cards/415a3104-90e6-4235-b67f-69337c7fe714", "scryfall_uri": "https://scryfall.com/card/all/22b/arcane-denial?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/4/1/415a3104-90e6-4235-b67f-69337c7fe714.jpg?1562768258", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/1/415a3104-90e6-4235-b67f-69337c7fe714.jpg?1562768258", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/4/1/415a3104-90e6-4235-b67f-69337c7fe714.jpg?1562768258", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/4/1/415a3104-90e6-4235-b67f-69337c7fe714.png?1562768258", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/1/415a3104-90e6-4235-b67f-69337c7fe714.jpg?1562768258", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/4/1/415a3104-90e6-4235-b67f-69337c7fe714.jpg?1562768258"}, "mana_cost": "{1}{U}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Counter target spell. Its controller may draw up to two cards at the beginning of the next turn's upkeep.\nYou draw a card at the beginning of the next turn's upkeep.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "64987b06-4a5c-443d-b560-ff5691744582", "set": "all", "set_name": "Alliances", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/64987b06-4a5c-443d-b560-ff5691744582", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aall&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/all?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/415a3104-90e6-4235-b67f-69337c7fe714/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aab1cc360-b9de-48d9-9983-4dfe4a7d2a37&unique=prints", "collector_number": "22b", "digital": false, "rarity": "common", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Richard Kane Ferguson", "artist_ids": ["191620ed-2361-444e-96a6-1fe7ce32ef3b"], "illustration_id": "5a0bb299-86c5-4de1-a3a5-6e2035423c1c", "border_color": "black", "frame": "1993", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 75, "prices": {"usd": "1.84", "usd_foil": null, "usd_etched": null, "eur": "0.79", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=3098", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Arcane+Denial&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Arcane+Denial&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Arcane+Denial"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/4097?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Arcane+Denial&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Arcane+Denial&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "57b852b6-4388-4a41-a5c0-bba37a5c1451", "oracle_id": "85cbb035-25df-43bb-ae06-ab098f448b02", "multiverse_ids": [463989], "mtgo_id": 72452, "tcgplayer_id": 191041, "cardmarket_id": 374991, "name": "Archmage's Charm", "lang": "en", "released_at": "2019-06-14", "uri": "https://api.scryfall.com/cards/57b852b6-4388-4a41-a5c0-bba37a5c1451", "scryfall_uri": "https://scryfall.com/card/mh1/40/archmages-charm?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/5/7/57b852b6-4388-4a41-a5c0-bba37a5c1451.jpg?1562201300", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/7/57b852b6-4388-4a41-a5c0-bba37a5c1451.jpg?1562201300", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/5/7/57b852b6-4388-4a41-a5c0-bba37a5c1451.jpg?1562201300", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/5/7/57b852b6-4388-4a41-a5c0-bba37a5c1451.png?1562201300", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/7/57b852b6-4388-4a41-a5c0-bba37a5c1451.jpg?1562201300", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/5/7/57b852b6-4388-4a41-a5c0-bba37a5c1451.jpg?1562201300"}, "mana_cost": "{U}{U}{U}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Choose one \u2014\n\u2022 Counter target spell.\n\u2022 Target player draws two cards.\n\u2022 Gain control of target nonland permanent with mana value 1 or less.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "d7efccd6-55bc-4fb8-9138-e72577510a99", "set": "mh1", "set_name": "Modern Horizons", "set_type": "draft_innovation", "set_uri": "https://api.scryfall.com/sets/d7efccd6-55bc-4fb8-9138-e72577510a99", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Amh1&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/mh1?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/57b852b6-4388-4a41-a5c0-bba37a5c1451/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A85cbb035-25df-43bb-ae06-ab098f448b02&unique=prints", "collector_number": "40", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Alayna Danner", "artist_ids": ["bb677b1a-ce51-4888-83d6-5a94de461ff9"], "illustration_id": "bb6843d3-1578-4d27-b443-735c528fd277", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 2503, "preview": {"source": "Proven Combatants", "source_uri": "https://twitter.com/CombatantsMTG/status/1131992661487902721", "previewed_at": "2019-05-24"}, "prices": {"usd": "19.63", "usd_foil": "32.43", "usd_etched": null, "eur": "19.83", "eur_foil": "29.99", "tix": "10.08"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=463989", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Archmage%27s+Charm&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Archmage%27s+Charm&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Archmage%27s+Charm"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/191041?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Archmage%27s+Charm&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/72452?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "d378f4f8-ff9f-4389-86c8-23c5c4990b4c", "oracle_id": "85cbb035-25df-43bb-ae06-ab098f448b02", "multiverse_ids": [], "tcgplayer_id": 279090, "name": "Archmage's Charm", "lang": "en", "released_at": "2022-07-09", "uri": "https://api.scryfall.com/cards/d378f4f8-ff9f-4389-86c8-23c5c4990b4c", "scryfall_uri": "https://scryfall.com/card/sch/2/archmages-charm?utm_source=api", "layout": "normal", "highres_image": false, "image_status": "lowres", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/d/3/d378f4f8-ff9f-4389-86c8-23c5c4990b4c.jpg?1657849868", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/3/d378f4f8-ff9f-4389-86c8-23c5c4990b4c.jpg?1657849868", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/d/3/d378f4f8-ff9f-4389-86c8-23c5c4990b4c.jpg?1657849868", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/d/3/d378f4f8-ff9f-4389-86c8-23c5c4990b4c.png?1657849868", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/3/d378f4f8-ff9f-4389-86c8-23c5c4990b4c.jpg?1657849868", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/d/3/d378f4f8-ff9f-4389-86c8-23c5c4990b4c.jpg?1657849868"}, "mana_cost": "{U}{U}{U}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Choose one \u2014\n\u2022 Counter target spell.\n\u2022 Target player draws two cards.\n\u2022 Gain control of target nonland permanent with mana value 1 or less.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": true, "nonfoil": false, "finishes": ["foil"], "oversized": false, "promo": true, "reprint": true, "variation": false, "set_id": "211b56b9-961e-4eab-8245-a2f52dd9af47", "set": "sch", "set_name": "Store Championships 2022", "set_type": "promo", "set_uri": "https://api.scryfall.com/sets/211b56b9-961e-4eab-8245-a2f52dd9af47", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Asch&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/sch?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/d378f4f8-ff9f-4389-86c8-23c5c4990b4c/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A85cbb035-25df-43bb-ae06-ab098f448b02&unique=prints", "collector_number": "2", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Hector Ortiz", "artist_ids": ["b12df60b-57df-47d9-8f3e-cfc5fa3b8519"], "illustration_id": "f95a3f9b-2b48-43bc-a6b2-9dc071cd8e8b", "border_color": "black", "frame": "2015", "frame_effects": ["inverted"], "security_stamp": "oval", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "edhrec_rank": 2503, "preview": {"source": "Wizards of the Coast", "source_uri": "https://magic.wizards.com/en/articles/archive/news/your-sneak-peek-double-masters-2022-dominaria-united-and-beyond-2022-05-12", "previewed_at": "2022-05-12"}, "prices": {"usd": null, "usd_foil": "93.51", "usd_etched": null, "eur": null, "eur_foil": null, "tix": null}, "related_uris": {"tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Archmage%27s+Charm&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Archmage%27s+Charm&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Archmage%27s+Charm"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/279090?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Archmage%27s+Charm&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Archmage%27s+Charm&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "1506d99d-7b2e-4101-84a5-c950dadb263a", "oracle_id": "2d4aedc5-31c5-4281-98e1-b0c2233c3c8a", "multiverse_ids": [1057], "tcgplayer_id": 3258, "cardmarket_id": 6958, "name": "Artifact Blast", "lang": "en", "released_at": "1994-03-04", "uri": "https://api.scryfall.com/cards/1506d99d-7b2e-4101-84a5-c950dadb263a", "scryfall_uri": "https://scryfall.com/card/atq/22/artifact-blast?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/1/5/1506d99d-7b2e-4101-84a5-c950dadb263a.jpg?1562899411", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/5/1506d99d-7b2e-4101-84a5-c950dadb263a.jpg?1562899411", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/1/5/1506d99d-7b2e-4101-84a5-c950dadb263a.jpg?1562899411", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/1/5/1506d99d-7b2e-4101-84a5-c950dadb263a.png?1562899411", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/5/1506d99d-7b2e-4101-84a5-c950dadb263a.jpg?1562899411", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/1/5/1506d99d-7b2e-4101-84a5-c950dadb263a.jpg?1562899411"}, "mana_cost": "{R}", "cmc": 1.0, "type_line": "Instant", "oracle_text": "Counter target artifact spell.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "819f9678-87dd-4aba-a47b-2d553bfea21f", "set": "atq", "set_name": "Antiquities", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/819f9678-87dd-4aba-a47b-2d553bfea21f", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aatq&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/atq?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/1506d99d-7b2e-4101-84a5-c950dadb263a/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A2d4aedc5-31c5-4281-98e1-b0c2233c3c8a&unique=prints", "collector_number": "22", "digital": false, "rarity": "common", "flavor_text": "The first line of defense against Urza and Mishra, the Artifact Blast achieved widespread fame until an unlucky mage discovered it was useless on the devices the brothers had already created.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Mark Poole", "artist_ids": ["bfdeaf09-f915-4058-8e8b-bcac3bc43c33"], "illustration_id": "fa0bf6f7-7f6e-4edf-b29e-dc6a691aa3eb", "border_color": "black", "frame": "1993", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 14460, "penny_rank": 10547, "prices": {"usd": "2.24", "usd_foil": null, "usd_etched": null, "eur": "2.50", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=1057", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Artifact+Blast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Artifact+Blast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Artifact+Blast"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/3258?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Artifact+Blast&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Artifact+Blast&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "fc339ed7-e1d4-4fe9-a4c4-b030d3e74c00", "oracle_id": "085bc7be-bd44-40af-8e8f-a1a8006fe22c", "multiverse_ids": [49062], "mtgo_id": 20199, "mtgo_foil_id": 20200, "tcgplayer_id": 11353, "cardmarket_id": 30, "name": "Assert Authority", "lang": "en", "released_at": "2003-10-02", "uri": "https://api.scryfall.com/cards/fc339ed7-e1d4-4fe9-a4c4-b030d3e74c00", "scryfall_uri": "https://scryfall.com/card/mrd/30/assert-authority?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/f/c/fc339ed7-e1d4-4fe9-a4c4-b030d3e74c00.jpg?1562163986", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/c/fc339ed7-e1d4-4fe9-a4c4-b030d3e74c00.jpg?1562163986", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/f/c/fc339ed7-e1d4-4fe9-a4c4-b030d3e74c00.jpg?1562163986", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/f/c/fc339ed7-e1d4-4fe9-a4c4-b030d3e74c00.png?1562163986", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/c/fc339ed7-e1d4-4fe9-a4c4-b030d3e74c00.jpg?1562163986", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/f/c/fc339ed7-e1d4-4fe9-a4c4-b030d3e74c00.jpg?1562163986"}, "mana_cost": "{5}{U}{U}", "cmc": 7.0, "type_line": "Instant", "oracle_text": "Affinity for artifacts (This spell costs {1} less to cast for each artifact you control.)\nCounter target spell. If that spell is countered this way, exile it instead of putting it into its owner's graveyard.", "colors": ["U"], "color_identity": ["U"], "keywords": ["Affinity"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "1d4f90ba-8d4a-4ee5-bc2f-e2d6bffe4955", "set": "mrd", "set_name": "Mirrodin", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/1d4f90ba-8d4a-4ee5-bc2f-e2d6bffe4955", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Amrd&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/mrd?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/fc339ed7-e1d4-4fe9-a4c4-b030d3e74c00/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A085bc7be-bd44-40af-8e8f-a1a8006fe22c&unique=prints", "collector_number": "30", "digital": false, "rarity": "uncommon", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Greg Hildebrandt", "artist_ids": ["020f967b-0d2f-4166-aabe-901dba8bc7ec"], "illustration_id": "69f7ffcf-f31f-45f6-94ef-3774acbee7af", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 10622, "penny_rank": 11411, "prices": {"usd": "0.16", "usd_foil": "0.63", "usd_etched": null, "eur": "0.23", "eur_foil": "0.40", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=49062", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Assert+Authority&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Assert+Authority&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Assert+Authority"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/11353?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Assert+Authority&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/20199?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "92f1509e-6ed5-4009-a031-ea84b43cbd1b", "oracle_id": "c04dd88f-fb7f-43be-b586-7fc5642073dc", "multiverse_ids": [1515], "tcgplayer_id": 3801, "cardmarket_id": 7060, "name": "Avoid Fate", "lang": "en", "released_at": "1994-06-01", "uri": "https://api.scryfall.com/cards/92f1509e-6ed5-4009-a031-ea84b43cbd1b", "scryfall_uri": "https://scryfall.com/card/leg/175/avoid-fate?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/9/2/92f1509e-6ed5-4009-a031-ea84b43cbd1b.jpg?1562859699", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/2/92f1509e-6ed5-4009-a031-ea84b43cbd1b.jpg?1562859699", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/9/2/92f1509e-6ed5-4009-a031-ea84b43cbd1b.jpg?1562859699", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/9/2/92f1509e-6ed5-4009-a031-ea84b43cbd1b.png?1562859699", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/2/92f1509e-6ed5-4009-a031-ea84b43cbd1b.jpg?1562859699", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/9/2/92f1509e-6ed5-4009-a031-ea84b43cbd1b.jpg?1562859699"}, "mana_cost": "{G}", "cmc": 1.0, "type_line": "Instant", "oracle_text": "Counter target instant or Aura spell that targets a permanent you control.", "colors": ["G"], "color_identity": ["G"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "78c50b4b-b220-455b-a2d5-cee458fa56f3", "set": "leg", "set_name": "Legends", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/78c50b4b-b220-455b-a2d5-cee458fa56f3", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aleg&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/leg?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/92f1509e-6ed5-4009-a031-ea84b43cbd1b/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ac04dd88f-fb7f-43be-b586-7fc5642073dc&unique=prints", "collector_number": "175", "digital": false, "rarity": "common", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Phil Foglio", "artist_ids": ["3bfc0fd7-f6ce-4c3f-a755-aaafc84ac704"], "illustration_id": "a8c9017e-f04c-4f7e-8397-53c4dbb89e4b", "border_color": "black", "frame": "1993", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 7097, "penny_rank": 9766, "prices": {"usd": "6.56", "usd_foil": null, "usd_etched": null, "eur": "9.00", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=1515", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Avoid+Fate&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Avoid+Fate&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Avoid+Fate"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/3801?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Avoid+Fate&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Avoid+Fate&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "19f81099-f657-4f7d-84ad-f472ae87d9c5", "oracle_id": "8089c3eb-99a8-40ca-882a-c1d4e30075ee", "multiverse_ids": [562940], "tcgplayer_id": 273290, "cardmarket_id": 660820, "name": "Bane's Contingency", "lang": "en", "released_at": "2022-06-10", "uri": "https://api.scryfall.com/cards/19f81099-f657-4f7d-84ad-f472ae87d9c5", "scryfall_uri": "https://scryfall.com/card/clb/57/banes-contingency?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/1/9/19f81099-f657-4f7d-84ad-f472ae87d9c5.jpg?1653844052", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/9/19f81099-f657-4f7d-84ad-f472ae87d9c5.jpg?1653844052", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/1/9/19f81099-f657-4f7d-84ad-f472ae87d9c5.jpg?1653844052", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/1/9/19f81099-f657-4f7d-84ad-f472ae87d9c5.png?1653844052", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/9/19f81099-f657-4f7d-84ad-f472ae87d9c5.jpg?1653844052", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/1/9/19f81099-f657-4f7d-84ad-f472ae87d9c5.jpg?1653844052"}, "mana_cost": "{1}{U}{U}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Counter target spell. If that spell targets a commander you control, instead counter that spell, scry 2, then draw a card.", "colors": ["U"], "color_identity": ["U"], "keywords": ["Scry"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "5e4c3fe8-fd57-4b20-ad56-c03790a16cea", "set": "clb", "set_name": "Commander Legends: Battle for Baldur's Gate", "set_type": "draft_innovation", "set_uri": "https://api.scryfall.com/sets/5e4c3fe8-fd57-4b20-ad56-c03790a16cea", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aclb&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/clb?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/19f81099-f657-4f7d-84ad-f472ae87d9c5/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A8089c3eb-99a8-40ca-882a-c1d4e30075ee&unique=prints", "collector_number": "57", "digital": false, "rarity": "uncommon", "flavor_text": "\"My whims dictate the fate of nations. Your pitiful mortal magic is no more significant than a gnat buzzing in my ear.\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Hector Ortiz", "artist_ids": ["b12df60b-57df-47d9-8f3e-cfc5fa3b8519"], "illustration_id": "3f8cf796-0130-4a2d-8304-445918f83335", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 10388, "preview": {"source": "Wizards of the Coast", "source_uri": "https://www.twitch.tv/videos/1309876135", "previewed_at": "2022-05-26"}, "prices": {"usd": "0.11", "usd_foil": "0.12", "usd_etched": null, "eur": "0.18", "eur_foil": "0.14", "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=562940", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Bane%27s+Contingency&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Bane%27s+Contingency&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Bane%27s+Contingency"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/273290?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Bane%27s+Contingency&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Bane%27s+Contingency&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "65b65c87-b084-44aa-b841-411a3c73e234", "oracle_id": "324889d6-c857-41ed-bb60-408809fc9964", "multiverse_ids": [137931], "mtgo_id": 30871, "mtgo_foil_id": 30872, "tcgplayer_id": 27613, "cardmarket_id": 19911, "name": "Bant Charm", "lang": "en", "released_at": "2008-10-03", "uri": "https://api.scryfall.com/cards/65b65c87-b084-44aa-b841-411a3c73e234", "scryfall_uri": "https://scryfall.com/card/ala/155/bant-charm?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/6/5/65b65c87-b084-44aa-b841-411a3c73e234.jpg?1562704776", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/5/65b65c87-b084-44aa-b841-411a3c73e234.jpg?1562704776", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/6/5/65b65c87-b084-44aa-b841-411a3c73e234.jpg?1562704776", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/6/5/65b65c87-b084-44aa-b841-411a3c73e234.png?1562704776", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/5/65b65c87-b084-44aa-b841-411a3c73e234.jpg?1562704776", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/6/5/65b65c87-b084-44aa-b841-411a3c73e234.jpg?1562704776"}, "mana_cost": "{G}{W}{U}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Choose one \u2014\n\u2022 Destroy target artifact.\n\u2022 Put target creature on the bottom of its owner's library.\n\u2022 Counter target instant spell.", "colors": ["G", "U", "W"], "color_identity": ["G", "U", "W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "d667aaec-09b7-4406-b6fa-60795132dc11", "set": "ala", "set_name": "Shards of Alara", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/d667aaec-09b7-4406-b6fa-60795132dc11", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aala&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ala?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/65b65c87-b084-44aa-b841-411a3c73e234/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A324889d6-c857-41ed-bb60-408809fc9964&unique=prints", "collector_number": "155", "digital": false, "rarity": "uncommon", "flavor_text": "Bant is a world where death and chaos hold no sway.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Randy Gallegos", "artist_ids": ["a5048cc7-438a-4378-98e4-da99b78e1db0"], "illustration_id": "de2fca24-5d9c-4363-968b-ae27edb0e080", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 2742, "penny_rank": 4558, "prices": {"usd": "0.16", "usd_foil": "3.92", "usd_etched": null, "eur": "0.31", "eur_foil": "0.95", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=137931", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Bant+Charm&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Bant+Charm&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Bant+Charm"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/27613?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Bant+Charm&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/30871?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "b9b1e53f-1384-4860-9944-e68922afc65c", "oracle_id": "11f55ec5-b9a3-4670-8afb-31d29478fb59", "multiverse_ids": [527334], "mtgo_id": 91596, "arena_id": 77152, "tcgplayer_id": 243213, "cardmarket_id": 571196, "name": "Bar the Gate", "lang": "en", "released_at": "2021-07-23", "uri": "https://api.scryfall.com/cards/b9b1e53f-1384-4860-9944-e68922afc65c", "scryfall_uri": "https://scryfall.com/card/afr/47/bar-the-gate?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/b/9/b9b1e53f-1384-4860-9944-e68922afc65c.jpg?1627702860", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/9/b9b1e53f-1384-4860-9944-e68922afc65c.jpg?1627702860", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/b/9/b9b1e53f-1384-4860-9944-e68922afc65c.jpg?1627702860", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/b/9/b9b1e53f-1384-4860-9944-e68922afc65c.png?1627702860", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/9/b9b1e53f-1384-4860-9944-e68922afc65c.jpg?1627702860", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/b/9/b9b1e53f-1384-4860-9944-e68922afc65c.jpg?1627702860"}, "mana_cost": "{2}{U}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Counter target creature or planeswalker spell. Venture into the dungeon. (Enter the first room or advance to the next room.)", "colors": ["U"], "color_identity": ["U"], "keywords": ["Venture into the dungeon"], "all_parts": [{"object": "related_card", "id": "b9b1e53f-1384-4860-9944-e68922afc65c", "component": "combo_piece", "name": "Bar the Gate", "type_line": "Instant", "uri": "https://api.scryfall.com/cards/b9b1e53f-1384-4860-9944-e68922afc65c"}, {"object": "related_card", "id": "6f509dbe-6ec7-4438-ab36-e20be46c9922", "component": "combo_piece", "name": "Dungeon of the Mad Mage", "type_line": "Dungeon", "uri": "https://api.scryfall.com/cards/6f509dbe-6ec7-4438-ab36-e20be46c9922"}, {"object": "related_card", "id": "59b11ff8-f118-4978-87dd-509dc0c8c932", "component": "combo_piece", "name": "Lost Mine of Phandelver", "type_line": "Dungeon", "uri": "https://api.scryfall.com/cards/59b11ff8-f118-4978-87dd-509dc0c8c932"}, {"object": "related_card", "id": "70b284bd-7a8f-4b60-8238-f746bdc5b236", "component": "combo_piece", "name": "Tomb of Annihilation", "type_line": "Dungeon", "uri": "https://api.scryfall.com/cards/70b284bd-7a8f-4b60-8238-f746bdc5b236"}], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "e1ef87ba-ba92-4573-817f-543b996d2851", "set": "afr", "set_name": "Adventures in the Forgotten Realms", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/e1ef87ba-ba92-4573-817f-543b996d2851", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aafr&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/afr?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/b9b1e53f-1384-4860-9944-e68922afc65c/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A11f55ec5-b9a3-4670-8afb-31d29478fb59&unique=prints", "collector_number": "47", "digital": false, "rarity": "common", "flavor_text": "\"This path is closed to you!\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Johannes Voss", "artist_ids": ["3593dd7e-c547-4a32-81cd-7da725f60118"], "illustration_id": "122c0ffd-fce2-4bcf-95a5-467bf65f9faa", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 6638, "preview": {"source": "Tanya DePass", "source_uri": "https://twitter.com/cypheroftyr/status/1410219908542218245", "previewed_at": "2021-07-01"}, "prices": {"usd": "0.06", "usd_foil": "0.13", "usd_etched": null, "eur": "0.32", "eur_foil": "0.12", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=527334", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Bar+the+Gate&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Bar+the+Gate&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Bar+the+Gate"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/243213?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Bar+the+Gate&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/91596?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "cfa51783-9ef8-4e51-ba0d-ce8439d83bdf", "oracle_id": "2b9557df-7158-4ada-be77-5c346851a568", "multiverse_ids": [23146], "mtgo_id": 14595, "mtgo_foil_id": 14596, "tcgplayer_id": 7437, "cardmarket_id": 3432, "name": "Bind", "lang": "en", "released_at": "2000-10-02", "uri": "https://api.scryfall.com/cards/cfa51783-9ef8-4e51-ba0d-ce8439d83bdf", "scryfall_uri": "https://scryfall.com/card/inv/182/bind?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/c/f/cfa51783-9ef8-4e51-ba0d-ce8439d83bdf.jpg?1562936749", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/f/cfa51783-9ef8-4e51-ba0d-ce8439d83bdf.jpg?1562936749", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/c/f/cfa51783-9ef8-4e51-ba0d-ce8439d83bdf.jpg?1562936749", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/c/f/cfa51783-9ef8-4e51-ba0d-ce8439d83bdf.png?1562936749", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/f/cfa51783-9ef8-4e51-ba0d-ce8439d83bdf.jpg?1562936749", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/c/f/cfa51783-9ef8-4e51-ba0d-ce8439d83bdf.jpg?1562936749"}, "mana_cost": "{1}{G}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Counter target activated ability. (Mana abilities can't be targeted.)\nDraw a card.", "colors": ["G"], "color_identity": ["G"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "b9ae5e02-7726-47ca-b5e4-5ec402b41cd1", "set": "inv", "set_name": "Invasion", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/b9ae5e02-7726-47ca-b5e4-5ec402b41cd1", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ainv&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/inv?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/cfa51783-9ef8-4e51-ba0d-ce8439d83bdf/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A2b9557df-7158-4ada-be77-5c346851a568&unique=prints", "collector_number": "182", "digital": false, "rarity": "rare", "flavor_text": "\"The battlefield is cluttered enough. Be still.\"\n\u2014Multani, maro-sorcerer", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Mark Zug", "artist_ids": ["48e2b98c-5467-4671-bd42-4c3746115117"], "illustration_id": "6f4b8abf-dabe-4304-9ff5-0c6f045ea93b", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 10742, "prices": {"usd": "2.06", "usd_foil": "23.25", "usd_etched": null, "eur": "2.49", "eur_foil": "10.00", "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=23146", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Bind&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Bind&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Bind"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/7437?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Bind&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/14595?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "bab838e0-cfc5-4eeb-920d-bfbe462a1e31", "oracle_id": "d93fef14-c821-4a65-9e84-f268f777737f", "multiverse_ids": [], "arena_id": 81956, "name": "Bind to Secrecy", "lang": "en", "released_at": "2022-06-02", "uri": "https://api.scryfall.com/cards/bab838e0-cfc5-4eeb-920d-bfbe462a1e31", "scryfall_uri": "https://scryfall.com/card/ysnc/19/bind-to-secrecy?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/b/a/bab838e0-cfc5-4eeb-920d-bfbe462a1e31.jpg?1655963915", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/a/bab838e0-cfc5-4eeb-920d-bfbe462a1e31.jpg?1655963915", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/b/a/bab838e0-cfc5-4eeb-920d-bfbe462a1e31.jpg?1655963915", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/b/a/bab838e0-cfc5-4eeb-920d-bfbe462a1e31.png?1655963915", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/a/bab838e0-cfc5-4eeb-920d-bfbe462a1e31.jpg?1655963915", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/b/a/bab838e0-cfc5-4eeb-920d-bfbe462a1e31.jpg?1655963915"}, "mana_cost": "{U}{B}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Choose one \u2014\n\u2022 Counter target noncreature spell.\n\u2022 Conjure a duplicate of target creature card in an opponent's graveyard into your hand. It perpetually gains \"You may spend mana as though it were mana of any color to cast this spell.\"\nIf there are five or more mana values among cards in your graveyard, draft a card from Bind to Secrecy's spellbook.", "colors": ["B", "U"], "color_identity": ["B", "U"], "keywords": ["Conjure"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "not_legal", "pauper": "not_legal", "vintage": "not_legal", "penny": "not_legal", "commander": "not_legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "not_legal", "duel": "not_legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "64e1763b-7bcc-45a1-b1b2-69277b754caf", "set": "ysnc", "set_name": "Alchemy: New Capenna", "set_type": "alchemy", "set_uri": "https://api.scryfall.com/sets/64e1763b-7bcc-45a1-b1b2-69277b754caf", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aysnc&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ysnc?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/bab838e0-cfc5-4eeb-920d-bfbe462a1e31/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ad93fef14-c821-4a65-9e84-f268f777737f&unique=prints", "collector_number": "19", "digital": true, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "David Astruga", "artist_ids": ["4fa5b0e2-1324-4407-98b8-3282395a03e3"], "illustration_id": "6cc34dee-8eb1-48db-bc95-248dfb3d7fb4", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "prices": {"usd": null, "usd_foil": null, "usd_etched": null, "eur": null, "eur_foil": null, "tix": null}, "related_uris": {"tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Bind+to+Secrecy&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Bind+to+Secrecy&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Bind+to+Secrecy"}}, {"object": "card", "id": "2f51f88f-f662-4572-a371-9a77718ed079", "oracle_id": "65e1558c-6b09-4ddc-b520-f19f4fb972af", "multiverse_ids": [442032], "mtgo_id": 67000, "mtgo_foil_id": 67001, "tcgplayer_id": 161419, "cardmarket_id": 318986, "name": "Blue Elemental Blast", "lang": "en", "released_at": "2018-03-16", "uri": "https://api.scryfall.com/cards/2f51f88f-f662-4572-a371-9a77718ed079", "scryfall_uri": "https://scryfall.com/card/a25/43/blue-elemental-blast?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/2/f/2f51f88f-f662-4572-a371-9a77718ed079.jpg?1562434032", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/f/2f51f88f-f662-4572-a371-9a77718ed079.jpg?1562434032", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/2/f/2f51f88f-f662-4572-a371-9a77718ed079.jpg?1562434032", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/2/f/2f51f88f-f662-4572-a371-9a77718ed079.png?1562434032", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/f/2f51f88f-f662-4572-a371-9a77718ed079.jpg?1562434032", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/2/f/2f51f88f-f662-4572-a371-9a77718ed079.jpg?1562434032"}, "mana_cost": "{U}", "cmc": 1.0, "type_line": "Instant", "oracle_text": "Choose one \u2014\n\u2022 Counter target red spell.\n\u2022 Destroy target red permanent.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "41ee6e2f-69b3-4c53-8a8e-960f5e974cfc", "set": "a25", "set_name": "Masters 25", "set_type": "masters", "set_uri": "https://api.scryfall.com/sets/41ee6e2f-69b3-4c53-8a8e-960f5e974cfc", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aa25&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/a25?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/2f51f88f-f662-4572-a371-9a77718ed079/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A65e1558c-6b09-4ddc-b520-f19f4fb972af&unique=prints", "collector_number": "43", "digital": false, "rarity": "uncommon", "watermark": "set", "flavor_text": "Nothing escapes a sharp mind.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Izzy", "artist_ids": ["2c3d2473-ff5d-4309-8194-e0b2def2ab65"], "illustration_id": "2ff6c0ac-4a3e-431c-b24d-df82d677adf7", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 7466, "prices": {"usd": "0.28", "usd_foil": "1.25", "usd_etched": null, "eur": "0.28", "eur_foil": "2.50", "tix": "2.51"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=442032", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Blue+Elemental+Blast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Blue+Elemental+Blast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Blue+Elemental+Blast"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/161419?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Blue+Elemental+Blast&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/67000?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "20d666ef-39bf-4fbf-8201-5f1056539da2", "oracle_id": "65e1558c-6b09-4ddc-b520-f19f4fb972af", "multiverse_ids": [97], "tcgplayer_id": 1047, "cardmarket_id": 5283, "name": "Blue Elemental Blast", "lang": "en", "released_at": "1993-08-05", "uri": "https://api.scryfall.com/cards/20d666ef-39bf-4fbf-8201-5f1056539da2", "scryfall_uri": "https://scryfall.com/card/lea/49/blue-elemental-blast?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/2/0/20d666ef-39bf-4fbf-8201-5f1056539da2.jpg?1559591462", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/0/20d666ef-39bf-4fbf-8201-5f1056539da2.jpg?1559591462", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/2/0/20d666ef-39bf-4fbf-8201-5f1056539da2.jpg?1559591462", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/2/0/20d666ef-39bf-4fbf-8201-5f1056539da2.png?1559591462", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/0/20d666ef-39bf-4fbf-8201-5f1056539da2.jpg?1559591462", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/2/0/20d666ef-39bf-4fbf-8201-5f1056539da2.jpg?1559591462"}, "mana_cost": "{U}", "cmc": 1.0, "type_line": "Instant", "oracle_text": "Choose one \u2014\n\u2022 Counter target red spell.\n\u2022 Destroy target red permanent.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "legal", "premodern": "legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "288bd996-960e-448b-a187-9504c1930c2c", "set": "lea", "set_name": "Limited Edition Alpha", "set_type": "core", "set_uri": "https://api.scryfall.com/sets/288bd996-960e-448b-a187-9504c1930c2c", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Alea&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/lea?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/20d666ef-39bf-4fbf-8201-5f1056539da2/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A65e1558c-6b09-4ddc-b520-f19f4fb972af&unique=prints", "collector_number": "49", "digital": false, "rarity": "common", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Richard Thomas", "artist_ids": ["596b3aac-b331-4e1e-ae41-9ec2d3b653e1"], "illustration_id": "08aa3f14-7a01-4b5a-9f2b-9aad526ca273", "border_color": "black", "frame": "1993", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 7466, "prices": {"usd": "135.90", "usd_foil": null, "usd_etched": null, "eur": "49.90", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=97", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Blue+Elemental+Blast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Blue+Elemental+Blast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Blue+Elemental+Blast"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/1047?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Blue+Elemental+Blast&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Blue+Elemental+Blast&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "6582b980-3e4b-422a-9a6c-1927ae966d7e", "oracle_id": "65e1558c-6b09-4ddc-b520-f19f4fb972af", "multiverse_ids": [447130], "tcgplayer_id": 162748, "cardmarket_id": 320581, "name": "Blue Elemental Blast", "lang": "en", "released_at": "2018-06-15", "uri": "https://api.scryfall.com/cards/6582b980-3e4b-422a-9a6c-1927ae966d7e", "scryfall_uri": "https://scryfall.com/card/ss1/2/blue-elemental-blast?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/6/5/6582b980-3e4b-422a-9a6c-1927ae966d7e.jpg?1561757308", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/5/6582b980-3e4b-422a-9a6c-1927ae966d7e.jpg?1561757308", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/6/5/6582b980-3e4b-422a-9a6c-1927ae966d7e.jpg?1561757308", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/6/5/6582b980-3e4b-422a-9a6c-1927ae966d7e.png?1561757308", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/5/6582b980-3e4b-422a-9a6c-1927ae966d7e.jpg?1561757308", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/6/5/6582b980-3e4b-422a-9a6c-1927ae966d7e.jpg?1561757308"}, "mana_cost": "{U}", "cmc": 1.0, "type_line": "Instant", "oracle_text": "Choose one \u2014\n\u2022 Counter target red spell.\n\u2022 Destroy target red permanent.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "a24031db-1378-420f-b671-bcaec52d6f6c", "set": "ss1", "set_name": "Signature Spellbook: Jace", "set_type": "spellbook", "set_uri": "https://api.scryfall.com/sets/a24031db-1378-420f-b671-bcaec52d6f6c", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ass1&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ss1?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/6582b980-3e4b-422a-9a6c-1927ae966d7e/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A65e1558c-6b09-4ddc-b520-f19f4fb972af&unique=prints", "collector_number": "2", "digital": false, "rarity": "rare", "flavor_text": "\"Contrary to popular wisdom, I find it's best to fight fire with its opposite.\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Slawomir Maniak", "artist_ids": ["d887bc66-2779-416c-a1ff-d8720242063e"], "illustration_id": "514496b6-8f15-46c5-a621-75f48168f2ef", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "edhrec_rank": 7466, "prices": {"usd": "0.38", "usd_foil": "2.16", "usd_etched": null, "eur": "0.39", "eur_foil": "1.98", "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=447130", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Blue+Elemental+Blast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Blue+Elemental+Blast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Blue+Elemental+Blast"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/162748?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Blue+Elemental+Blast&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Blue+Elemental+Blast&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "a671237a-f895-4bbc-b6bd-b0eed4502ec5", "oracle_id": "65e1558c-6b09-4ddc-b520-f19f4fb972af", "multiverse_ids": [], "mtgo_id": 43606, "name": "Blue Elemental Blast", "lang": "en", "released_at": "2017-06-17", "uri": "https://api.scryfall.com/cards/a671237a-f895-4bbc-b6bd-b0eed4502ec5", "scryfall_uri": "https://scryfall.com/card/prm/43606/blue-elemental-blast?utm_source=api", "layout": "normal", "highres_image": false, "image_status": "lowres", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/a/6/a671237a-f895-4bbc-b6bd-b0eed4502ec5.jpg?1562547160", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/6/a671237a-f895-4bbc-b6bd-b0eed4502ec5.jpg?1562547160", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/a/6/a671237a-f895-4bbc-b6bd-b0eed4502ec5.jpg?1562547160", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/a/6/a671237a-f895-4bbc-b6bd-b0eed4502ec5.png?1562547160", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/6/a671237a-f895-4bbc-b6bd-b0eed4502ec5.jpg?1562547160", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/a/6/a671237a-f895-4bbc-b6bd-b0eed4502ec5.jpg?1562547160"}, "mana_cost": "{U}", "cmc": 1.0, "type_line": "Instant", "oracle_text": "Choose one \u2014\n\u2022 Counter target red spell.\n\u2022 Destroy target red permanent.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["mtgo"], "reserved": false, "foil": true, "nonfoil": false, "finishes": ["foil"], "oversized": false, "promo": true, "reprint": true, "variation": false, "set_id": "638940fb-6be9-4be3-b83f-68d3902fbbe5", "set": "prm", "set_name": "Magic Online Promos", "set_type": "promo", "set_uri": "https://api.scryfall.com/sets/638940fb-6be9-4be3-b83f-68d3902fbbe5", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aprm&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/prm?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/a671237a-f895-4bbc-b6bd-b0eed4502ec5/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A65e1558c-6b09-4ddc-b520-f19f4fb972af&unique=prints", "collector_number": "43606", "digital": true, "rarity": "uncommon", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Christopher Moeller", "artist_ids": ["21e10012-06ae-44f2-b38d-3824dd2e73d4"], "illustration_id": "8694d12e-f2ce-4e21-9415-e75ebf9c2801", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "edhrec_rank": 7466, "prices": {"usd": null, "usd_foil": null, "usd_etched": null, "eur": null, "eur_foil": null, "tix": "2.49"}, "related_uris": {"tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Blue+Elemental+Blast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Blue+Elemental+Blast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Blue+Elemental+Blast"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/search/magic/product?productLineName=magic&q=Blue+Elemental+Blast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall&view=grid", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Blue+Elemental+Blast&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/43606?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "c4a75cef-9551-45e2-b1ff-80662c76ec20", "oracle_id": "31be5bf4-9950-456c-8365-74b48e132ef5", "multiverse_ids": [262845], "mtgo_id": 43413, "mtgo_foil_id": 43414, "tcgplayer_id": 57855, "cardmarket_id": 252555, "name": "Bone to Ash", "lang": "en", "released_at": "2012-02-03", "uri": "https://api.scryfall.com/cards/c4a75cef-9551-45e2-b1ff-80662c76ec20", "scryfall_uri": "https://scryfall.com/card/dka/29/bone-to-ash?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/c/4/c4a75cef-9551-45e2-b1ff-80662c76ec20.jpg?1562941461", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/4/c4a75cef-9551-45e2-b1ff-80662c76ec20.jpg?1562941461", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/c/4/c4a75cef-9551-45e2-b1ff-80662c76ec20.jpg?1562941461", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/c/4/c4a75cef-9551-45e2-b1ff-80662c76ec20.png?1562941461", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/4/c4a75cef-9551-45e2-b1ff-80662c76ec20.jpg?1562941461", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/c/4/c4a75cef-9551-45e2-b1ff-80662c76ec20.jpg?1562941461"}, "mana_cost": "{2}{U}{U}", "cmc": 4.0, "type_line": "Instant", "oracle_text": "Counter target creature spell.\nDraw a card.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "8052750a-aaf2-46fc-b46d-633f14124017", "set": "dka", "set_name": "Dark Ascension", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/8052750a-aaf2-46fc-b46d-633f14124017", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Adka&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/dka?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/c4a75cef-9551-45e2-b1ff-80662c76ec20/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A31be5bf4-9950-456c-8365-74b48e132ef5&unique=prints", "collector_number": "29", "digital": false, "rarity": "common", "flavor_text": "\"I can think of worse ways to go. On second thought, maybe not.\"\n\u2014Ludevic, necro-alchemist", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Clint Cearley", "artist_ids": ["03b75350-d5a0-4e3a-b3b4-8d4a5554385b"], "illustration_id": "efd0c83f-91b4-4e5a-85fe-b3ce634d6a3b", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 9363, "penny_rank": 7630, "prices": {"usd": "0.04", "usd_foil": "0.19", "usd_etched": null, "eur": "0.11", "eur_foil": "0.09", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=262845", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Bone+to+Ash&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Bone+to+Ash&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Bone+to+Ash"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/57855?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Bone+to+Ash&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/43413?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "8052d90b-bc49-4a9e-9211-159a54aa2bcd", "oracle_id": "4a3fba0c-50b1-4139-834e-c8fc8e1315bb", "multiverse_ids": [145989], "mtgo_id": 28677, "mtgo_foil_id": 28678, "tcgplayer_id": 15437, "cardmarket_id": 17795, "name": "Broken Ambitions", "lang": "en", "released_at": "2007-10-12", "uri": "https://api.scryfall.com/cards/8052d90b-bc49-4a9e-9211-159a54aa2bcd", "scryfall_uri": "https://scryfall.com/card/lrw/54/broken-ambitions?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/8/0/8052d90b-bc49-4a9e-9211-159a54aa2bcd.jpg?1562355294", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/0/8052d90b-bc49-4a9e-9211-159a54aa2bcd.jpg?1562355294", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/8/0/8052d90b-bc49-4a9e-9211-159a54aa2bcd.jpg?1562355294", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/8/0/8052d90b-bc49-4a9e-9211-159a54aa2bcd.png?1562355294", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/0/8052d90b-bc49-4a9e-9211-159a54aa2bcd.jpg?1562355294", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/8/0/8052d90b-bc49-4a9e-9211-159a54aa2bcd.jpg?1562355294"}, "mana_cost": "{X}{U}", "cmc": 1.0, "type_line": "Instant", "oracle_text": "Counter target spell unless its controller pays {X}. Clash with an opponent. If you win, that spell's controller mills four cards. (Each clashing player reveals the top card of their library, then puts that card on the top or bottom. A player wins if their card had a higher mana value.)", "colors": ["U"], "color_identity": ["U"], "keywords": ["Clash", "Mill"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "30ec97cb-dca9-4bf4-a98b-310f9d8ceaff", "set": "lrw", "set_name": "Lorwyn", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/30ec97cb-dca9-4bf4-a98b-310f9d8ceaff", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Alrw&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/lrw?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/8052d90b-bc49-4a9e-9211-159a54aa2bcd/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A4a3fba0c-50b1-4139-834e-c8fc8e1315bb&unique=prints", "collector_number": "54", "digital": false, "rarity": "common", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Franz Vohwinkel", "artist_ids": ["3a243c17-3baa-4b53-9599-645311cd7d3d"], "illustration_id": "a9ed9b0d-1d59-442e-b344-041b749db082", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 13819, "penny_rank": 3613, "prices": {"usd": "0.14", "usd_foil": "0.90", "usd_etched": null, "eur": "0.14", "eur_foil": "0.50", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=145989", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Broken+Ambitions&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Broken+Ambitions&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Broken+Ambitions"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/15437?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Broken+Ambitions&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/28677?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "252eef1f-0a62-420d-aad8-e3d7f1e07c1b", "oracle_id": "7b0fa80e-6b16-4a4a-9776-6a91f145fc63", "multiverse_ids": [409792], "mtgo_id": 59976, "mtgo_foil_id": 59977, "tcgplayer_id": 116364, "cardmarket_id": 289149, "name": "Broken Concentration", "lang": "en", "released_at": "2016-04-08", "uri": "https://api.scryfall.com/cards/252eef1f-0a62-420d-aad8-e3d7f1e07c1b", "scryfall_uri": "https://scryfall.com/card/soi/50/broken-concentration?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/2/5/252eef1f-0a62-420d-aad8-e3d7f1e07c1b.jpg?1576383988", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/5/252eef1f-0a62-420d-aad8-e3d7f1e07c1b.jpg?1576383988", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/2/5/252eef1f-0a62-420d-aad8-e3d7f1e07c1b.jpg?1576383988", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/2/5/252eef1f-0a62-420d-aad8-e3d7f1e07c1b.png?1576383988", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/5/252eef1f-0a62-420d-aad8-e3d7f1e07c1b.jpg?1576383988", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/2/5/252eef1f-0a62-420d-aad8-e3d7f1e07c1b.jpg?1576383988"}, "mana_cost": "{1}{U}{U}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Counter target spell.\nMadness {3}{U} (If you discard this card, discard it into exile. When you do, cast it for its madness cost or put it into your graveyard.)", "colors": ["U"], "color_identity": ["U"], "keywords": ["Madness"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "5e914d7e-c1e9-446c-a33d-d093c02b2743", "set": "soi", "set_name": "Shadows over Innistrad", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/5e914d7e-c1e9-446c-a33d-d093c02b2743", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Asoi&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/soi?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/252eef1f-0a62-420d-aad8-e3d7f1e07c1b/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A7b0fa80e-6b16-4a4a-9776-6a91f145fc63&unique=prints", "collector_number": "50", "digital": false, "rarity": "uncommon", "flavor_text": "Some minds bend under pressure. Others break.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Clint Cearley", "artist_ids": ["03b75350-d5a0-4e3a-b3b4-8d4a5554385b"], "illustration_id": "efa7f8b1-c605-4069-8404-98ccce2abf5c", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 12883, "penny_rank": 4773, "prices": {"usd": "0.10", "usd_foil": "0.29", "usd_etched": null, "eur": "0.05", "eur_foil": "0.15", "tix": "0.04"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=409792", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Broken+Concentration&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Broken+Concentration&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Broken+Concentration"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/116364?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Broken+Concentration&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/59976?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "657ff5fc-1a95-46f9-85f7-fc1ad757c8c4", "oracle_id": "d9c6c9cc-2dbf-48ac-ad3a-c500e7074c62", "multiverse_ids": [], "tcgplayer_id": 269473, "cardmarket_id": 652462, "name": "Brokers Confluence", "lang": "en", "released_at": "2022-04-29", "uri": "https://api.scryfall.com/cards/657ff5fc-1a95-46f9-85f7-fc1ad757c8c4", "scryfall_uri": "https://scryfall.com/card/ncc/68/brokers-confluence?utm_source=api", "layout": "normal", "highres_image": false, "image_status": "lowres", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/6/5/657ff5fc-1a95-46f9-85f7-fc1ad757c8c4.jpg?1650506185", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/5/657ff5fc-1a95-46f9-85f7-fc1ad757c8c4.jpg?1650506185", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/6/5/657ff5fc-1a95-46f9-85f7-fc1ad757c8c4.jpg?1650506185", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/6/5/657ff5fc-1a95-46f9-85f7-fc1ad757c8c4.png?1650506185", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/5/657ff5fc-1a95-46f9-85f7-fc1ad757c8c4.jpg?1650506185", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/6/5/657ff5fc-1a95-46f9-85f7-fc1ad757c8c4.jpg?1650506185"}, "mana_cost": "{2}{G}{W}{U}", "cmc": 5.0, "type_line": "Instant", "oracle_text": "Choose three. You may choose the same mode more than once.\n\u2022 Proliferate. (Choose any number of permanents and/or players, then give each another counter of each kind already there.)\n\u2022 Target creature phases out. (Treat it and anything attached to it as though they don't exist until its controller's next turn.)\n\u2022 Counter target activated or triggered ability.", "colors": ["G", "U", "W"], "color_identity": ["G", "U", "W"], "keywords": ["Proliferate"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "c51de34b-d4d6-4179-a432-573744ded119", "set": "ncc", "set_name": "New Capenna Commander", "set_type": "commander", "set_uri": "https://api.scryfall.com/sets/c51de34b-d4d6-4179-a432-573744ded119", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ancc&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ncc?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/657ff5fc-1a95-46f9-85f7-fc1ad757c8c4/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ad9c6c9cc-2dbf-48ac-ad3a-c500e7074c62&unique=prints", "collector_number": "68", "digital": false, "rarity": "rare", "watermark": "brokers", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Brian Valeza", "artist_ids": ["bb2a9339-bbe4-445f-9736-3c43379ee076"], "illustration_id": "501e84f5-2c48-4e8e-b9bf-6c4a7e920af6", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "edhrec_rank": 8326, "prices": {"usd": "0.37", "usd_foil": null, "usd_etched": null, "eur": "0.38", "eur_foil": null, "tix": null}, "related_uris": {"tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Brokers+Confluence&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Brokers+Confluence&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Brokers+Confluence"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/269473?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Brokers+Confluence&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Brokers+Confluence&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "0cd0e11a-0398-431b-b523-9d3c8a0155cb", "oracle_id": "71d178b3-e5ca-4576-83f7-8dce74758acd", "multiverse_ids": [], "tcgplayer_id": 105908, "cardmarket_id": 285037, "name": "Brutal Expulsion", "lang": "en", "released_at": "2015-10-02", "uri": "https://api.scryfall.com/cards/0cd0e11a-0398-431b-b523-9d3c8a0155cb", "scryfall_uri": "https://scryfall.com/card/pbfz/200s/brutal-expulsion?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/0/c/0cd0e11a-0398-431b-b523-9d3c8a0155cb.jpg?1562132495", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/c/0cd0e11a-0398-431b-b523-9d3c8a0155cb.jpg?1562132495", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/0/c/0cd0e11a-0398-431b-b523-9d3c8a0155cb.jpg?1562132495", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/0/c/0cd0e11a-0398-431b-b523-9d3c8a0155cb.png?1562132495", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/c/0cd0e11a-0398-431b-b523-9d3c8a0155cb.jpg?1562132495", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/0/c/0cd0e11a-0398-431b-b523-9d3c8a0155cb.jpg?1562132495"}, "mana_cost": "{2}{U}{R}", "cmc": 4.0, "type_line": "Instant", "oracle_text": "Devoid (This card has no color.)\nChoose one or both \u2014\n\u2022 Return target spell or creature to its owner's hand.\n\u2022 Brutal Expulsion deals 2 damage to target creature or planeswalker. If that creature or planeswalker would die this turn, exile it instead.", "colors": [], "color_identity": ["R", "U"], "keywords": ["Devoid"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": true, "nonfoil": false, "finishes": ["foil"], "oversized": false, "promo": true, "reprint": true, "variation": false, "set_id": "1b5e95bd-4947-4991-8d7d-b770d6b2aaff", "set": "pbfz", "set_name": "Battle for Zendikar Promos", "set_type": "promo", "set_uri": "https://api.scryfall.com/sets/1b5e95bd-4947-4991-8d7d-b770d6b2aaff", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Apbfz&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/pbfz?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/0cd0e11a-0398-431b-b523-9d3c8a0155cb/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A71d178b3-e5ca-4576-83f7-8dce74758acd&unique=prints", "collector_number": "200s", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Victor Adame Minguez", "artist_ids": ["bd8f7368-5b10-4554-b6b8-d052c6aca89f"], "illustration_id": "d78641bf-6d84-4064-ab31-be489f6f1d14", "border_color": "black", "frame": "2015", "frame_effects": ["devoid"], "security_stamp": "oval", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "promo_types": ["setpromo", "datestamped", "prerelease"], "edhrec_rank": 12774, "penny_rank": 6225, "prices": {"usd": null, "usd_foil": "0.91", "usd_etched": null, "eur": null, "eur_foil": "0.20", "tix": null}, "related_uris": {"tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Brutal+Expulsion&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Brutal+Expulsion&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Brutal+Expulsion"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/105908?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Brutal+Expulsion&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Brutal+Expulsion&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "5a8f5a18-e490-4010-ac1c-c74a5f2dcbda", "oracle_id": "90865918-2f9a-4ab6-a881-e86f61a527cc", "multiverse_ids": [3166], "tcgplayer_id": 4115, "cardmarket_id": 7953, "name": "Burnout", "lang": "en", "released_at": "1996-06-10", "uri": "https://api.scryfall.com/cards/5a8f5a18-e490-4010-ac1c-c74a5f2dcbda", "scryfall_uri": "https://scryfall.com/card/all/68/burnout?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/5/a/5a8f5a18-e490-4010-ac1c-c74a5f2dcbda.jpg?1562768717", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/a/5a8f5a18-e490-4010-ac1c-c74a5f2dcbda.jpg?1562768717", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/5/a/5a8f5a18-e490-4010-ac1c-c74a5f2dcbda.jpg?1562768717", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/5/a/5a8f5a18-e490-4010-ac1c-c74a5f2dcbda.png?1562768717", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/a/5a8f5a18-e490-4010-ac1c-c74a5f2dcbda.jpg?1562768717", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/5/a/5a8f5a18-e490-4010-ac1c-c74a5f2dcbda.jpg?1562768717"}, "mana_cost": "{1}{R}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Counter target instant spell if it's blue.\nDraw a card at the beginning of the next turn's upkeep.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "64987b06-4a5c-443d-b560-ff5691744582", "set": "all", "set_name": "Alliances", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/64987b06-4a5c-443d-b560-ff5691744582", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aall&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/all?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/5a8f5a18-e490-4010-ac1c-c74a5f2dcbda/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A90865918-2f9a-4ab6-a881-e86f61a527cc&unique=prints", "collector_number": "68", "digital": false, "rarity": "uncommon", "flavor_text": "\"GOTCHA!\"\n\u2014Jaya Ballard, Task Mage", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Mike Raabe", "artist_ids": ["d29cd67f-30a7-4fb9-a081-36c3d5982442"], "illustration_id": "40c90c38-280a-4d95-bc67-b059dd4e62ee", "border_color": "black", "frame": "1993", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 7274, "penny_rank": 7718, "prices": {"usd": "0.70", "usd_foil": null, "usd_etched": null, "eur": "0.53", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=3166", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Burnout&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Burnout&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Burnout"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/4115?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Burnout&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Burnout&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "2c42ab35-6050-42b2-9c3c-3252f2e69442", "oracle_id": "d8e63065-9ebc-419d-b7af-5867fd81edff", "multiverse_ids": [398480], "mtgo_id": 57892, "mtgo_foil_id": 57893, "tcgplayer_id": 100355, "cardmarket_id": 283586, "name": "Calculated Dismissal", "lang": "en", "released_at": "2015-07-17", "uri": "https://api.scryfall.com/cards/2c42ab35-6050-42b2-9c3c-3252f2e69442", "scryfall_uri": "https://scryfall.com/card/ori/48/calculated-dismissal?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/2/c/2c42ab35-6050-42b2-9c3c-3252f2e69442.jpg?1562012331", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/c/2c42ab35-6050-42b2-9c3c-3252f2e69442.jpg?1562012331", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/2/c/2c42ab35-6050-42b2-9c3c-3252f2e69442.jpg?1562012331", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/2/c/2c42ab35-6050-42b2-9c3c-3252f2e69442.png?1562012331", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/c/2c42ab35-6050-42b2-9c3c-3252f2e69442.jpg?1562012331", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/2/c/2c42ab35-6050-42b2-9c3c-3252f2e69442.jpg?1562012331"}, "mana_cost": "{2}{U}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Counter target spell unless its controller pays {3}.\nSpell mastery \u2014 If there are two or more instant and/or sorcery cards in your graveyard, scry 2. (To scry 2, look at the top two cards of your library, then put any number of them on the bottom of your library and the rest on top in any order.)", "colors": ["U"], "color_identity": ["U"], "keywords": ["Spell mastery", "Scry"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "0eeb9a9a-20ac-404d-b55f-aeb7a43a7f62", "set": "ori", "set_name": "Magic Origins", "set_type": "core", "set_uri": "https://api.scryfall.com/sets/0eeb9a9a-20ac-404d-b55f-aeb7a43a7f62", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aori&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ori?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/2c42ab35-6050-42b2-9c3c-3252f2e69442/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ad8e63065-9ebc-419d-b7af-5867fd81edff&unique=prints", "collector_number": "48", "digital": false, "rarity": "common", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Karl Kopinski", "artist_ids": ["0fad2c48-a56e-4a0b-b512-224f6f238f20"], "illustration_id": "b1e8dc33-1034-4d64-b784-de568ad3ae2f", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 10813, "penny_rank": 5406, "prices": {"usd": "0.10", "usd_foil": "0.27", "usd_etched": null, "eur": "0.02", "eur_foil": "0.25", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=398480", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Calculated+Dismissal&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Calculated+Dismissal&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Calculated+Dismissal"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/100355?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Calculated+Dismissal&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/57892?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "cf6e5ad6-ffe2-4588-b357-c415c33fbc11", "oracle_id": "7d00fb28-ea6c-49a9-b4af-ffb38860a9a7", "multiverse_ids": [435199], "mtgo_id": 65106, "mtgo_foil_id": 65107, "arena_id": 66055, "tcgplayer_id": 145741, "cardmarket_id": 301754, "name": "Cancel", "lang": "en", "released_at": "2017-09-29", "uri": "https://api.scryfall.com/cards/cf6e5ad6-ffe2-4588-b357-c415c33fbc11", "scryfall_uri": "https://scryfall.com/card/xln/47/cancel?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/c/f/cf6e5ad6-ffe2-4588-b357-c415c33fbc11.jpg?1562564222", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/f/cf6e5ad6-ffe2-4588-b357-c415c33fbc11.jpg?1562564222", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/c/f/cf6e5ad6-ffe2-4588-b357-c415c33fbc11.jpg?1562564222", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/c/f/cf6e5ad6-ffe2-4588-b357-c415c33fbc11.png?1562564222", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/f/cf6e5ad6-ffe2-4588-b357-c415c33fbc11.jpg?1562564222", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/c/f/cf6e5ad6-ffe2-4588-b357-c415c33fbc11.jpg?1562564222"}, "mana_cost": "{1}{U}{U}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Counter target spell.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "fe0dad85-54bc-4151-9200-d68da84dd0f2", "set": "xln", "set_name": "Ixalan", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/fe0dad85-54bc-4151-9200-d68da84dd0f2", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Axln&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/xln?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/cf6e5ad6-ffe2-4588-b357-c415c33fbc11/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A7d00fb28-ea6c-49a9-b4af-ffb38860a9a7&unique=prints", "collector_number": "47", "digital": false, "rarity": "common", "flavor_text": "\"Hold your fire, obviously.\"\n\u2014Captain Brandis Thorn", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Mathias Kollros", "artist_ids": ["2ae0dd12-047c-4efb-80d7-bccc3bac5fba"], "illustration_id": "0444b530-c316-41a9-b992-d12dd0599d0c", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 1604, "penny_rank": 4707, "prices": {"usd": "0.05", "usd_foil": "0.21", "usd_etched": null, "eur": "0.49", "eur_foil": "0.10", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=435199", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Cancel&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Cancel&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Cancel"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/145741?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Cancel&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/65106?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "7258e651-868a-4f63-9454-6c6c95d25387", "oracle_id": "7d00fb28-ea6c-49a9-b4af-ffb38860a9a7", "multiverse_ids": [426746], "mtgo_id": 63690, "mtgo_foil_id": 63691, "tcgplayer_id": 130201, "cardmarket_id": 297146, "name": "Cancel", "lang": "en", "released_at": "2017-04-28", "uri": "https://api.scryfall.com/cards/7258e651-868a-4f63-9454-6c6c95d25387", "scryfall_uri": "https://scryfall.com/card/akh/44/cancel?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/7/2/7258e651-868a-4f63-9454-6c6c95d25387.jpg?1543674894", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/2/7258e651-868a-4f63-9454-6c6c95d25387.jpg?1543674894", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/7/2/7258e651-868a-4f63-9454-6c6c95d25387.jpg?1543674894", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/7/2/7258e651-868a-4f63-9454-6c6c95d25387.png?1543674894", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/2/7258e651-868a-4f63-9454-6c6c95d25387.jpg?1543674894", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/7/2/7258e651-868a-4f63-9454-6c6c95d25387.jpg?1543674894"}, "mana_cost": "{1}{U}{U}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Counter target spell.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "02d1c536-68bc-4208-9b65-7741ef1f9da8", "set": "akh", "set_name": "Amonkhet", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/02d1c536-68bc-4208-9b65-7741ef1f9da8", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aakh&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/akh?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/7258e651-868a-4f63-9454-6c6c95d25387/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A7d00fb28-ea6c-49a9-b4af-ffb38860a9a7&unique=prints", "collector_number": "44", "digital": false, "rarity": "common", "flavor_text": "\"Let me try one of Kefnet's puzzles. This one was too easy.\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Mathias Kollros", "artist_ids": ["2ae0dd12-047c-4efb-80d7-bccc3bac5fba"], "illustration_id": "45a70a34-d2e2-4ac0-96f4-fd5f8bc3d07d", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 1604, "penny_rank": 4707, "prices": {"usd": "0.05", "usd_foil": "0.24", "usd_etched": null, "eur": "0.02", "eur_foil": "0.21", "tix": "0.05"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=426746", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Cancel&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Cancel&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Cancel"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/130201?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Cancel&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/63690?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "9f540dcb-8d0b-4d33-8c0d-893fa5db54eb", "oracle_id": "7d00fb28-ea6c-49a9-b4af-ffb38860a9a7", "multiverse_ids": [386502], "mtgo_id": 53988, "mtgo_foil_id": 53989, "tcgplayer_id": 93206, "cardmarket_id": 269446, "name": "Cancel", "lang": "en", "released_at": "2014-09-26", "uri": "https://api.scryfall.com/cards/9f540dcb-8d0b-4d33-8c0d-893fa5db54eb", "scryfall_uri": "https://scryfall.com/card/ktk/33/cancel?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/9/f/9f540dcb-8d0b-4d33-8c0d-893fa5db54eb.jpg?1562791164", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/f/9f540dcb-8d0b-4d33-8c0d-893fa5db54eb.jpg?1562791164", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/9/f/9f540dcb-8d0b-4d33-8c0d-893fa5db54eb.jpg?1562791164", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/9/f/9f540dcb-8d0b-4d33-8c0d-893fa5db54eb.png?1562791164", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/f/9f540dcb-8d0b-4d33-8c0d-893fa5db54eb.jpg?1562791164", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/9/f/9f540dcb-8d0b-4d33-8c0d-893fa5db54eb.jpg?1562791164"}, "mana_cost": "{1}{U}{U}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Counter target spell.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "6c7a715c-ded9-449e-89b0-c665773e9c3c", "set": "ktk", "set_name": "Khans of Tarkir", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/6c7a715c-ded9-449e-89b0-c665773e9c3c", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aktk&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ktk?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/9f540dcb-8d0b-4d33-8c0d-893fa5db54eb/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A7d00fb28-ea6c-49a9-b4af-ffb38860a9a7&unique=prints", "collector_number": "33", "digital": false, "rarity": "common", "flavor_text": "\"Even the greatest inferno begins as a spark. And anyone can snuff out a spark.\"\n\u2014Chanyi, mistfire sage", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Slawomir Maniak", "artist_ids": ["d887bc66-2779-416c-a1ff-d8720242063e"], "illustration_id": "da3697de-5137-45e3-a684-af567f7ed566", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 1604, "penny_rank": 4707, "prices": {"usd": "0.05", "usd_foil": "0.25", "usd_etched": null, "eur": "0.02", "eur_foil": "0.10", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=386502", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Cancel&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Cancel&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Cancel"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/93206?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Cancel&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/53988?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "fd994a26-65ff-43be-8d52-476e887d3ed2", "oracle_id": "7d00fb28-ea6c-49a9-b4af-ffb38860a9a7", "multiverse_ids": [265403], "mtgo_id": 46481, "mtgo_foil_id": 46482, "tcgplayer_id": 66533, "cardmarket_id": 258408, "name": "Cancel", "lang": "en", "released_at": "2012-10-05", "uri": "https://api.scryfall.com/cards/fd994a26-65ff-43be-8d52-476e887d3ed2", "scryfall_uri": "https://scryfall.com/card/rtr/31/cancel?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/f/d/fd994a26-65ff-43be-8d52-476e887d3ed2.jpg?1562795930", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/d/fd994a26-65ff-43be-8d52-476e887d3ed2.jpg?1562795930", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/f/d/fd994a26-65ff-43be-8d52-476e887d3ed2.jpg?1562795930", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/f/d/fd994a26-65ff-43be-8d52-476e887d3ed2.png?1562795930", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/d/fd994a26-65ff-43be-8d52-476e887d3ed2.jpg?1562795930", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/f/d/fd994a26-65ff-43be-8d52-476e887d3ed2.jpg?1562795930"}, "mana_cost": "{1}{U}{U}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Counter target spell.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "80b2374d-c5f1-403e-9772-f6c806fd275e", "set": "rtr", "set_name": "Return to Ravnica", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/80b2374d-c5f1-403e-9772-f6c806fd275e", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Artr&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/rtr?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/fd994a26-65ff-43be-8d52-476e887d3ed2/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A7d00fb28-ea6c-49a9-b4af-ffb38860a9a7&unique=prints", "collector_number": "31", "digital": false, "rarity": "common", "flavor_text": "\"It is forbidden. Asking why is irrelevant.\"\n\u2014Sergiu, Opal Lake magistrate", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Karl Kopinski", "artist_ids": ["0fad2c48-a56e-4a0b-b512-224f6f238f20"], "illustration_id": "c2bd2b2e-eb8a-4939-9830-94465046d3f6", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 1604, "penny_rank": 4707, "prices": {"usd": "0.05", "usd_foil": "0.26", "usd_etched": null, "eur": "0.10", "eur_foil": "0.17", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=265403", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Cancel&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Cancel&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Cancel"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/66533?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Cancel&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/46481?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "9e557f54-3d9d-4610-a0d0-5874feacc76e", "oracle_id": "7d00fb28-ea6c-49a9-b4af-ffb38860a9a7", "multiverse_ids": [189001], "mtgo_id": 34566, "mtgo_foil_id": 34567, "tcgplayer_id": 33272, "cardmarket_id": 21869, "name": "Cancel", "lang": "en", "released_at": "2009-10-02", "uri": "https://api.scryfall.com/cards/9e557f54-3d9d-4610-a0d0-5874feacc76e", "scryfall_uri": "https://scryfall.com/card/zen/44/cancel?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/9/e/9e557f54-3d9d-4610-a0d0-5874feacc76e.jpg?1562614848", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/e/9e557f54-3d9d-4610-a0d0-5874feacc76e.jpg?1562614848", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/9/e/9e557f54-3d9d-4610-a0d0-5874feacc76e.jpg?1562614848", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/9/e/9e557f54-3d9d-4610-a0d0-5874feacc76e.png?1562614848", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/e/9e557f54-3d9d-4610-a0d0-5874feacc76e.jpg?1562614848", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/9/e/9e557f54-3d9d-4610-a0d0-5874feacc76e.jpg?1562614848"}, "mana_cost": "{1}{U}{U}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Counter target spell.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "eb16a2bd-a218-4e4e-8339-4aa1afc0c8d2", "set": "zen", "set_name": "Zendikar", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/eb16a2bd-a218-4e4e-8339-4aa1afc0c8d2", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Azen&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/zen?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/9e557f54-3d9d-4610-a0d0-5874feacc76e/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A7d00fb28-ea6c-49a9-b4af-ffb38860a9a7&unique=prints", "collector_number": "44", "digital": false, "rarity": "common", "flavor_text": "Zendikar's volatile mana is the basis for many spectacular spells\u2014and some equally astonishing failures.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Scott Chou", "artist_ids": ["9e048547-f9c3-4958-9c2c-91e45df7c6ae"], "illustration_id": "768b3510-eb4f-4015-8cac-1cc446dcb8d5", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 1604, "penny_rank": 4707, "prices": {"usd": "0.05", "usd_foil": "0.99", "usd_etched": null, "eur": "0.05", "eur_foil": "0.03", "tix": "0.04"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=189001", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Cancel&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Cancel&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Cancel"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/33272?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Cancel&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/34566?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "479f56c2-8256-4325-909a-bf460505dbc5", "oracle_id": "7d00fb28-ea6c-49a9-b4af-ffb38860a9a7", "multiverse_ids": [178092], "mtgo_id": 31299, "mtgo_foil_id": 31300, "tcgplayer_id": 27629, "cardmarket_id": 19806, "name": "Cancel", "lang": "en", "released_at": "2008-10-03", "uri": "https://api.scryfall.com/cards/479f56c2-8256-4325-909a-bf460505dbc5", "scryfall_uri": "https://scryfall.com/card/ala/33/cancel?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/4/7/479f56c2-8256-4325-909a-bf460505dbc5.jpg?1562703421", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/7/479f56c2-8256-4325-909a-bf460505dbc5.jpg?1562703421", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/4/7/479f56c2-8256-4325-909a-bf460505dbc5.jpg?1562703421", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/4/7/479f56c2-8256-4325-909a-bf460505dbc5.png?1562703421", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/7/479f56c2-8256-4325-909a-bf460505dbc5.jpg?1562703421", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/4/7/479f56c2-8256-4325-909a-bf460505dbc5.jpg?1562703421"}, "mana_cost": "{1}{U}{U}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Counter target spell.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "d667aaec-09b7-4406-b6fa-60795132dc11", "set": "ala", "set_name": "Shards of Alara", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/d667aaec-09b7-4406-b6fa-60795132dc11", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aala&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ala?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/479f56c2-8256-4325-909a-bf460505dbc5/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A7d00fb28-ea6c-49a9-b4af-ffb38860a9a7&unique=prints", "collector_number": "33", "digital": false, "rarity": "common", "flavor_text": "\"What you are attempting is not against the law. It is, however, extremely foolish.\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "David Palumbo", "artist_ids": ["04ce1c75-e30c-4b7a-8cb0-b53e4ecc2f39"], "illustration_id": "65d9c225-0cbc-4453-b8b4-e49f41dccd03", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 1604, "penny_rank": 4707, "prices": {"usd": "0.06", "usd_foil": "0.12", "usd_etched": null, "eur": "0.05", "eur_foil": "0.17", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=178092", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Cancel&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Cancel&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Cancel"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/27629?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Cancel&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/31299?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "b4e175f7-f649-451b-9ee5-ad1140b2e8a7", "oracle_id": "7d00fb28-ea6c-49a9-b4af-ffb38860a9a7", "multiverse_ids": [113523], "mtgo_id": 25631, "mtgo_foil_id": 25632, "tcgplayer_id": 14175, "cardmarket_id": 13782, "name": "Cancel", "lang": "en", "released_at": "2006-10-06", "uri": "https://api.scryfall.com/cards/b4e175f7-f649-451b-9ee5-ad1140b2e8a7", "scryfall_uri": "https://scryfall.com/card/tsp/51/cancel?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/b/4/b4e175f7-f649-451b-9ee5-ad1140b2e8a7.jpg?1562933181", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/4/b4e175f7-f649-451b-9ee5-ad1140b2e8a7.jpg?1562933181", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/b/4/b4e175f7-f649-451b-9ee5-ad1140b2e8a7.jpg?1562933181", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/b/4/b4e175f7-f649-451b-9ee5-ad1140b2e8a7.png?1562933181", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/4/b4e175f7-f649-451b-9ee5-ad1140b2e8a7.jpg?1562933181", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/b/4/b4e175f7-f649-451b-9ee5-ad1140b2e8a7.jpg?1562933181"}, "mana_cost": "{1}{U}{U}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Counter target spell.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "c1d109bc-ffd8-428f-8d7d-3f8d7e648046", "set": "tsp", "set_name": "Time Spiral", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/c1d109bc-ffd8-428f-8d7d-3f8d7e648046", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Atsp&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/tsp?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/b4e175f7-f649-451b-9ee5-ad1140b2e8a7/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A7d00fb28-ea6c-49a9-b4af-ffb38860a9a7&unique=prints", "collector_number": "51", "digital": false, "rarity": "common", "flavor_text": "Fendros gasped as he watched the spell drip from the ends of his fingers. He moved his foot, afraid to disturb the spot where it lay slain.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Mark Poole", "artist_ids": ["bfdeaf09-f915-4058-8e8b-bcac3bc43c33"], "illustration_id": "ffd375af-af0d-451b-9296-904cf1c60ef8", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 1604, "penny_rank": 4707, "prices": {"usd": "0.09", "usd_foil": "0.25", "usd_etched": null, "eur": "0.04", "eur_foil": "0.49", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=113523", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Cancel&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Cancel&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Cancel"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/14175?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Cancel&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/25631?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "bc4d6368-03dc-488a-9a6b-07a549a87572", "oracle_id": "7d00fb28-ea6c-49a9-b4af-ffb38860a9a7", "multiverse_ids": [], "tcgplayer_id": 38298, "cardmarket_id": 21798, "name": "Cancel", "lang": "en", "released_at": "2010-01-01", "uri": "https://api.scryfall.com/cards/bc4d6368-03dc-488a-9a6b-07a549a87572", "scryfall_uri": "https://scryfall.com/card/p10/2/cancel?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/b/c/bc4d6368-03dc-488a-9a6b-07a549a87572.jpg?1561757939", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/c/bc4d6368-03dc-488a-9a6b-07a549a87572.jpg?1561757939", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/b/c/bc4d6368-03dc-488a-9a6b-07a549a87572.jpg?1561757939", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/b/c/bc4d6368-03dc-488a-9a6b-07a549a87572.png?1561757939", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/c/bc4d6368-03dc-488a-9a6b-07a549a87572.jpg?1561757939", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/b/c/bc4d6368-03dc-488a-9a6b-07a549a87572.jpg?1561757939"}, "mana_cost": "{1}{U}{U}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Counter target spell.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": true, "reprint": true, "variation": false, "set_id": "d871e33b-7086-4549-89d6-fedd4422161f", "set": "p10", "set_name": "Magic Player Rewards 2010", "set_type": "promo", "set_uri": "https://api.scryfall.com/sets/d871e33b-7086-4549-89d6-fedd4422161f", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ap10&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/p10?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/bc4d6368-03dc-488a-9a6b-07a549a87572/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A7d00fb28-ea6c-49a9-b4af-ffb38860a9a7&unique=prints", "collector_number": "2", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Izzy", "artist_ids": ["2c3d2473-ff5d-4309-8194-e0b2def2ab65"], "illustration_id": "0c8b2b0d-50d0-41c9-bc9f-6928e54dffd4", "border_color": "black", "frame": "2003", "full_art": true, "textless": true, "booster": false, "story_spotlight": false, "promo_types": ["playerrewards"], "edhrec_rank": 1604, "penny_rank": 4707, "prices": {"usd": "1.23", "usd_foil": null, "usd_etched": null, "eur": "0.49", "eur_foil": null, "tix": null}, "related_uris": {"tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Cancel&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Cancel&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Cancel"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/38298?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Cancel&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Cancel&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "4cb4e315-1a77-479a-9f15-fb23575de805", "oracle_id": "3a42558c-7432-4c05-9599-95343eb09be1", "multiverse_ids": [426748], "mtgo_id": 63694, "mtgo_foil_id": 63695, "tcgplayer_id": 130042, "cardmarket_id": 296816, "name": "Censor", "lang": "en", "released_at": "2017-04-28", "uri": "https://api.scryfall.com/cards/4cb4e315-1a77-479a-9f15-fb23575de805", "scryfall_uri": "https://scryfall.com/card/akh/46/censor?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/4/c/4cb4e315-1a77-479a-9f15-fb23575de805.jpg?1543674908", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/c/4cb4e315-1a77-479a-9f15-fb23575de805.jpg?1543674908", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/4/c/4cb4e315-1a77-479a-9f15-fb23575de805.jpg?1543674908", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/4/c/4cb4e315-1a77-479a-9f15-fb23575de805.png?1543674908", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/c/4cb4e315-1a77-479a-9f15-fb23575de805.jpg?1543674908", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/4/c/4cb4e315-1a77-479a-9f15-fb23575de805.jpg?1543674908"}, "mana_cost": "{1}{U}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Counter target spell unless its controller pays {1}.\nCycling {U} ({U}, Discard this card: Draw a card.)", "colors": ["U"], "color_identity": ["U"], "keywords": ["Cycling"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "02d1c536-68bc-4208-9b65-7741ef1f9da8", "set": "akh", "set_name": "Amonkhet", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/02d1c536-68bc-4208-9b65-7741ef1f9da8", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aakh&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/akh?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/4cb4e315-1a77-479a-9f15-fb23575de805/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A3a42558c-7432-4c05-9599-95343eb09be1&unique=prints", "collector_number": "46", "digital": false, "rarity": "uncommon", "flavor_text": "\"Why so many questions?\"\n\u2014Temmet, vizier of Naktamun", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "John Stanko", "artist_ids": ["b0f038a0-73b5-4806-918e-9cd11b5f92e1"], "illustration_id": "bdd38394-de6f-43b3-83b3-cfe395cabb90", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 7787, "penny_rank": 108, "prices": {"usd": "0.21", "usd_foil": "2.19", "usd_etched": null, "eur": "0.43", "eur_foil": "0.49", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=426748", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Censor&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Censor&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Censor"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/130042?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Censor&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/63694?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "08c5ed8e-4804-4042-8a1d-ad24c6846816", "oracle_id": "6aa5aa3d-fb46-47e5-bcf1-51a28e0f9974", "multiverse_ids": [417613], "mtgo_id": 61661, "mtgo_foil_id": 61662, "tcgplayer_id": 122644, "cardmarket_id": 292495, "name": "Ceremonious Rejection", "lang": "en", "released_at": "2016-09-30", "uri": "https://api.scryfall.com/cards/08c5ed8e-4804-4042-8a1d-ad24c6846816", "scryfall_uri": "https://scryfall.com/card/kld/40/ceremonious-rejection?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/0/8/08c5ed8e-4804-4042-8a1d-ad24c6846816.jpg?1576381129", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/8/08c5ed8e-4804-4042-8a1d-ad24c6846816.jpg?1576381129", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/0/8/08c5ed8e-4804-4042-8a1d-ad24c6846816.jpg?1576381129", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/0/8/08c5ed8e-4804-4042-8a1d-ad24c6846816.png?1576381129", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/8/08c5ed8e-4804-4042-8a1d-ad24c6846816.jpg?1576381129", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/0/8/08c5ed8e-4804-4042-8a1d-ad24c6846816.jpg?1576381129"}, "mana_cost": "{U}", "cmc": 1.0, "type_line": "Instant", "oracle_text": "Counter target colorless spell.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "d667e468-be8f-411f-a030-473d148deb74", "set": "kld", "set_name": "Kaladesh", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/d667e468-be8f-411f-a030-473d148deb74", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Akld&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/kld?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/08c5ed8e-4804-4042-8a1d-ad24c6846816/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A6aa5aa3d-fb46-47e5-bcf1-51a28e0f9974&unique=prints", "collector_number": "40", "digital": false, "rarity": "uncommon", "flavor_text": "The judges at the Fair are held in such high esteem that a nod of recognition can inspire an inventor for a lifetime\u2014and a wave of dismissal can end a career.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Chris Rahn", "artist_ids": ["7742047e-0f80-4c0f-a530-d07460165e86"], "illustration_id": "9d85d17d-ce47-4550-bf9f-004196545abd", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 15978, "prices": {"usd": "0.13", "usd_foil": "0.88", "usd_etched": null, "eur": "0.10", "eur_foil": "1.50", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=417613", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Ceremonious+Rejection&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Ceremonious+Rejection&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Ceremonious+Rejection"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/122644?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Ceremonious+Rejection&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/61661?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "cd9198d6-201d-4175-8f70-eef92d7d5bb5", "oracle_id": "b071bbaf-79fa-413b-807b-2cc86c8a8125", "multiverse_ids": [34368], "mtgo_id": 17331, "mtgo_foil_id": 17332, "tcgplayer_id": 9638, "cardmarket_id": 2302, "name": "Circular Logic", "lang": "en", "released_at": "2002-02-04", "uri": "https://api.scryfall.com/cards/cd9198d6-201d-4175-8f70-eef92d7d5bb5", "scryfall_uri": "https://scryfall.com/card/tor/33/circular-logic?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/c/d/cd9198d6-201d-4175-8f70-eef92d7d5bb5.jpg?1562632085", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/d/cd9198d6-201d-4175-8f70-eef92d7d5bb5.jpg?1562632085", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/c/d/cd9198d6-201d-4175-8f70-eef92d7d5bb5.jpg?1562632085", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/c/d/cd9198d6-201d-4175-8f70-eef92d7d5bb5.png?1562632085", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/d/cd9198d6-201d-4175-8f70-eef92d7d5bb5.jpg?1562632085", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/c/d/cd9198d6-201d-4175-8f70-eef92d7d5bb5.jpg?1562632085"}, "mana_cost": "{2}{U}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Counter target spell unless its controller pays {1} for each card in your graveyard.\nMadness {U} (If you discard this card, discard it into exile. When you do, cast it for its madness cost or put it into your graveyard.)", "colors": ["U"], "color_identity": ["U"], "keywords": ["Madness"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "e0b3fda1-a6ca-4996-849b-08b463d39484", "set": "tor", "set_name": "Torment", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/e0b3fda1-a6ca-4996-849b-08b463d39484", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ator&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/tor?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/cd9198d6-201d-4175-8f70-eef92d7d5bb5/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ab071bbaf-79fa-413b-807b-2cc86c8a8125&unique=prints", "collector_number": "33", "digital": false, "rarity": "uncommon", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Anthony S. Waters", "artist_ids": ["f009de11-3c8d-4663-b996-ca0c3e997fad"], "illustration_id": "fb946ce1-0381-4abc-a0bf-fdebf86894ca", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 8039, "penny_rank": 1260, "prices": {"usd": "0.83", "usd_foil": "21.68", "usd_etched": null, "eur": "0.45", "eur_foil": "11.70", "tix": "0.10"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=34368", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Circular+Logic&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Circular+Logic&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Circular+Logic"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/9638?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Circular+Logic&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/17331?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "665ee42f-8d76-4f8b-9dd3-7455a90f0da7", "oracle_id": "56aec5bd-a8e8-403f-b339-0fc817426428", "multiverse_ids": [398542], "mtgo_id": 57902, "mtgo_foil_id": 57903, "tcgplayer_id": 100029, "cardmarket_id": 283367, "name": "Clash of Wills", "lang": "en", "released_at": "2015-07-17", "uri": "https://api.scryfall.com/cards/665ee42f-8d76-4f8b-9dd3-7455a90f0da7", "scryfall_uri": "https://scryfall.com/card/ori/49/clash-of-wills?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/6/6/665ee42f-8d76-4f8b-9dd3-7455a90f0da7.jpg?1562023499", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/6/665ee42f-8d76-4f8b-9dd3-7455a90f0da7.jpg?1562023499", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/6/6/665ee42f-8d76-4f8b-9dd3-7455a90f0da7.jpg?1562023499", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/6/6/665ee42f-8d76-4f8b-9dd3-7455a90f0da7.png?1562023499", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/6/665ee42f-8d76-4f8b-9dd3-7455a90f0da7.jpg?1562023499", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/6/6/665ee42f-8d76-4f8b-9dd3-7455a90f0da7.jpg?1562023499"}, "mana_cost": "{X}{U}", "cmc": 1.0, "type_line": "Instant", "oracle_text": "Counter target spell unless its controller pays {X}.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "0eeb9a9a-20ac-404d-b55f-aeb7a43a7f62", "set": "ori", "set_name": "Magic Origins", "set_type": "core", "set_uri": "https://api.scryfall.com/sets/0eeb9a9a-20ac-404d-b55f-aeb7a43a7f62", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aori&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ori?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/665ee42f-8d76-4f8b-9dd3-7455a90f0da7/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A56aec5bd-a8e8-403f-b339-0fc817426428&unique=prints", "collector_number": "49", "digital": false, "rarity": "uncommon", "flavor_text": "Alhammarret rose to his feet, and the full force of his mind hit Jace like a storm front.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Yan Li", "artist_ids": ["c620f1e2-62a6-4345-8dcf-9072bee231a8"], "illustration_id": "49394560-66ad-496d-b09e-465bdf9c66f6", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 9099, "penny_rank": 2609, "prices": {"usd": "0.16", "usd_foil": "0.26", "usd_etched": null, "eur": "0.22", "eur_foil": "0.39", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=398542", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Clash+of+Wills&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Clash+of+Wills&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Clash+of+Wills"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/100029?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Clash+of+Wills&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/57902?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "1c67ab53-9489-4658-859e-9dd8a6e0f20d", "oracle_id": "56aec5bd-a8e8-403f-b339-0fc817426428", "multiverse_ids": [], "tcgplayer_id": 111837, "cardmarket_id": 286755, "name": "Clash of Wills", "lang": "en", "released_at": "2016-01-01", "uri": "https://api.scryfall.com/cards/1c67ab53-9489-4658-859e-9dd8a6e0f20d", "scryfall_uri": "https://scryfall.com/card/f16/2/clash-of-wills?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/1/c/1c67ab53-9489-4658-859e-9dd8a6e0f20d.jpg?1562636752", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/c/1c67ab53-9489-4658-859e-9dd8a6e0f20d.jpg?1562636752", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/1/c/1c67ab53-9489-4658-859e-9dd8a6e0f20d.jpg?1562636752", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/1/c/1c67ab53-9489-4658-859e-9dd8a6e0f20d.png?1562636752", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/c/1c67ab53-9489-4658-859e-9dd8a6e0f20d.jpg?1562636752", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/1/c/1c67ab53-9489-4658-859e-9dd8a6e0f20d.jpg?1562636752"}, "mana_cost": "{X}{U}", "cmc": 1.0, "type_line": "Instant", "oracle_text": "Counter target spell unless its controller pays {X}.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": true, "nonfoil": false, "finishes": ["foil"], "oversized": false, "promo": true, "reprint": true, "variation": false, "set_id": "820ba719-0234-4ca7-9d72-e0f8d56460bb", "set": "f16", "set_name": "Friday Night Magic 2016", "set_type": "promo", "set_uri": "https://api.scryfall.com/sets/820ba719-0234-4ca7-9d72-e0f8d56460bb", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Af16&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/f16?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/1c67ab53-9489-4658-859e-9dd8a6e0f20d/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A56aec5bd-a8e8-403f-b339-0fc817426428&unique=prints", "collector_number": "2", "digital": false, "rarity": "rare", "watermark": "wotc", "flavor_text": "\"The mind of an Eldrazi is a puzzle that can never be solved. The trick is to make sure a piece goes missing.\"\n\u2014Jace Beleren", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Anna Steinbauer", "artist_ids": ["3516496c-c279-4b56-8239-720683d03ae0"], "illustration_id": "65b30d8c-ff4e-455a-bfd0-a688b304fb55", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "promo_types": ["tourney", "fnm"], "edhrec_rank": 9099, "penny_rank": 2609, "prices": {"usd": null, "usd_foil": "0.25", "usd_etched": null, "eur": null, "eur_foil": "0.07", "tix": null}, "related_uris": {"tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Clash+of+Wills&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Clash+of+Wills&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Clash+of+Wills"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/111837?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Clash+of+Wills&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Clash+of+Wills&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "33f69670-e494-42b8-9148-fe105ec61aa0", "oracle_id": "fc09cbc0-2d28-44c6-b9a9-b95e9e58bb1b", "multiverse_ids": [41146], "mtgo_id": 17849, "mtgo_foil_id": 17850, "tcgplayer_id": 10328, "cardmarket_id": 1707, "name": "Complicate", "lang": "en", "released_at": "2002-10-07", "uri": "https://api.scryfall.com/cards/33f69670-e494-42b8-9148-fe105ec61aa0", "scryfall_uri": "https://scryfall.com/card/ons/76/complicate?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/3/3/33f69670-e494-42b8-9148-fe105ec61aa0.jpg?1562907165", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/3/33f69670-e494-42b8-9148-fe105ec61aa0.jpg?1562907165", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/3/3/33f69670-e494-42b8-9148-fe105ec61aa0.jpg?1562907165", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/3/3/33f69670-e494-42b8-9148-fe105ec61aa0.png?1562907165", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/3/33f69670-e494-42b8-9148-fe105ec61aa0.jpg?1562907165", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/3/3/33f69670-e494-42b8-9148-fe105ec61aa0.jpg?1562907165"}, "mana_cost": "{2}{U}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Counter target spell unless its controller pays {3}.\nCycling {2}{U} ({2}{U}, Discard this card: Draw a card.)\nWhen you cycle Complicate, you may counter target spell unless its controller pays {1}.", "colors": ["U"], "color_identity": ["U"], "keywords": ["Cycling"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "914a6c6d-cb3b-45e8-a2db-9978a2339faf", "set": "ons", "set_name": "Onslaught", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/914a6c6d-cb3b-45e8-a2db-9978a2339faf", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aons&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ons?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/33f69670-e494-42b8-9148-fe105ec61aa0/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Afc09cbc0-2d28-44c6-b9a9-b95e9e58bb1b&unique=prints", "collector_number": "76", "digital": false, "rarity": "uncommon", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Scott M. Fischer", "artist_ids": ["23b0cf43-3e43-44c6-8329-96446eca5bce"], "illustration_id": "9054e4e5-b9c1-4484-8001-71b4af5d2ce7", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 6500, "penny_rank": 3584, "prices": {"usd": "0.89", "usd_foil": "11.39", "usd_etched": null, "eur": "0.65", "eur_foil": "5.90", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=41146", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Complicate&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Complicate&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Complicate"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/10328?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Complicate&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/17849?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "235c108d-3902-4c2e-919c-a5449cd2dc3c", "oracle_id": "77f02ae6-2411-4378-b5e0-cc1cf5964458", "multiverse_ids": [491680], "mtgo_id": 83053, "arena_id": 73241, "tcgplayer_id": 222084, "cardmarket_id": 496185, "name": "Concerted Defense", "lang": "en", "released_at": "2020-09-25", "uri": "https://api.scryfall.com/cards/235c108d-3902-4c2e-919c-a5449cd2dc3c", "scryfall_uri": "https://scryfall.com/card/znr/52/concerted-defense?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/2/3/235c108d-3902-4c2e-919c-a5449cd2dc3c.jpg?1604193820", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/3/235c108d-3902-4c2e-919c-a5449cd2dc3c.jpg?1604193820", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/2/3/235c108d-3902-4c2e-919c-a5449cd2dc3c.jpg?1604193820", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/2/3/235c108d-3902-4c2e-919c-a5449cd2dc3c.png?1604193820", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/3/235c108d-3902-4c2e-919c-a5449cd2dc3c.jpg?1604193820", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/2/3/235c108d-3902-4c2e-919c-a5449cd2dc3c.jpg?1604193820"}, "mana_cost": "{U}", "cmc": 1.0, "type_line": "Instant", "oracle_text": "Counter target noncreature spell unless its controller pays {1} plus an additional {1} for each creature in your party. (Your party consists of up to one each of Cleric, Rogue, Warrior, and Wizard.)", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "f4e01fa7-b254-42dd-849f-69b58027a8c4", "set": "znr", "set_name": "Zendikar Rising", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/f4e01fa7-b254-42dd-849f-69b58027a8c4", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aznr&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/znr?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/235c108d-3902-4c2e-919c-a5449cd2dc3c/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A77f02ae6-2411-4378-b5e0-cc1cf5964458&unique=prints", "collector_number": "52", "digital": false, "rarity": "uncommon", "flavor_text": "\"You mess with one of us, you mess with all of us!\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Chris Rallis", "artist_ids": ["a8e7b854-b15a-421a-b66d-6e68187ae285"], "illustration_id": "4ddb4732-1b11-403e-bc42-9ffbe7afa49a", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 8628, "penny_rank": 7852, "preview": {"source": "LeStream", "source_uri": "https://twitter.com/LeStreamFR/status/1302516889126678528", "previewed_at": "2020-09-06"}, "prices": {"usd": "0.08", "usd_foil": "0.22", "usd_etched": null, "eur": "0.10", "eur_foil": "0.36", "tix": "0.01"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=491680", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Concerted+Defense&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Concerted+Defense&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Concerted+Defense"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/222084?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Concerted+Defense&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/83053?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "5ba16c0f-dd42-4a2a-8f08-bc8c8478952b", "oracle_id": "96cf3c10-733d-4110-9dab-43d0cd4e6629", "multiverse_ids": [438612], "mtgo_id": 65971, "mtgo_foil_id": 65972, "tcgplayer_id": 145405, "cardmarket_id": 301435, "name": "Condescend", "lang": "en", "released_at": "2017-11-17", "uri": "https://api.scryfall.com/cards/5ba16c0f-dd42-4a2a-8f08-bc8c8478952b", "scryfall_uri": "https://scryfall.com/card/ima/46/condescend?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/5/b/5ba16c0f-dd42-4a2a-8f08-bc8c8478952b.jpg?1562849378", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/b/5ba16c0f-dd42-4a2a-8f08-bc8c8478952b.jpg?1562849378", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/5/b/5ba16c0f-dd42-4a2a-8f08-bc8c8478952b.jpg?1562849378", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/5/b/5ba16c0f-dd42-4a2a-8f08-bc8c8478952b.png?1562849378", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/b/5ba16c0f-dd42-4a2a-8f08-bc8c8478952b.jpg?1562849378", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/5/b/5ba16c0f-dd42-4a2a-8f08-bc8c8478952b.jpg?1562849378"}, "mana_cost": "{X}{U}", "cmc": 1.0, "type_line": "Instant", "oracle_text": "Counter target spell unless its controller pays {X}. Scry 2. (Look at the top two cards of your library, then put any number of them on the bottom of your library and the rest on top in any order.)", "colors": ["U"], "color_identity": ["U"], "keywords": ["Scry"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "741bcd30-7709-4133-8919-f4b46483bed7", "set": "ima", "set_name": "Iconic Masters", "set_type": "masters", "set_uri": "https://api.scryfall.com/sets/741bcd30-7709-4133-8919-f4b46483bed7", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aima&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ima?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/5ba16c0f-dd42-4a2a-8f08-bc8c8478952b/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A96cf3c10-733d-4110-9dab-43d0cd4e6629&unique=prints", "collector_number": "46", "digital": false, "rarity": "uncommon", "flavor_text": "\"Shame we'll never see what all the fuss was about.\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Kieran Yanner", "artist_ids": ["aa7e89ed-d294-4633-9057-ce04dacfcfa4"], "illustration_id": "ebd95613-d823-4cb0-ae6f-ada45d741eaf", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 3963, "penny_rank": 527, "prices": {"usd": "0.26", "usd_foil": "1.16", "usd_etched": null, "eur": "0.29", "eur_foil": "1.75", "tix": "0.11"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=438612", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Condescend&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Condescend&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Condescend"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/145405?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Condescend&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/65971?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "e8303b80-e29a-46b8-90b0-c0cfe551b435", "oracle_id": "96cf3c10-733d-4110-9dab-43d0cd4e6629", "multiverse_ids": [51223], "mtgo_id": 20838, "mtgo_foil_id": 20839, "tcgplayer_id": 11893, "cardmarket_id": 603, "name": "Condescend", "lang": "en", "released_at": "2004-06-04", "uri": "https://api.scryfall.com/cards/e8303b80-e29a-46b8-90b0-c0cfe551b435", "scryfall_uri": "https://scryfall.com/card/5dn/27/condescend?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/e/8/e8303b80-e29a-46b8-90b0-c0cfe551b435.jpg?1562880436", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/8/e8303b80-e29a-46b8-90b0-c0cfe551b435.jpg?1562880436", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/e/8/e8303b80-e29a-46b8-90b0-c0cfe551b435.jpg?1562880436", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/e/8/e8303b80-e29a-46b8-90b0-c0cfe551b435.png?1562880436", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/8/e8303b80-e29a-46b8-90b0-c0cfe551b435.jpg?1562880436", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/e/8/e8303b80-e29a-46b8-90b0-c0cfe551b435.jpg?1562880436"}, "mana_cost": "{X}{U}", "cmc": 1.0, "type_line": "Instant", "oracle_text": "Counter target spell unless its controller pays {X}. Scry 2. (Look at the top two cards of your library, then put any number of them on the bottom of your library and the rest on top in any order.)", "colors": ["U"], "color_identity": ["U"], "keywords": ["Scry"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "e4bc1b87-5476-463c-8640-4c414ecf1763", "set": "5dn", "set_name": "Fifth Dawn", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/e4bc1b87-5476-463c-8640-4c414ecf1763", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3A5dn&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/5dn?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/e8303b80-e29a-46b8-90b0-c0cfe551b435/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A96cf3c10-733d-4110-9dab-43d0cd4e6629&unique=prints", "collector_number": "27", "digital": false, "rarity": "common", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Ron Spears", "artist_ids": ["fce9030b-86bd-4439-b06a-920a1eeb184c"], "illustration_id": "56a18f9e-b07c-4cf4-bda0-488e61ef64a0", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 3963, "penny_rank": 527, "prices": {"usd": "0.25", "usd_foil": "6.01", "usd_etched": null, "eur": "0.39", "eur_foil": "2.50", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=51223", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Condescend&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Condescend&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Condescend"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/11893?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Condescend&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/20838?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "cf7fcbc2-1034-442d-9f2a-7d79ea40ac3d", "oracle_id": "a30d076b-c942-45e4-b943-3749ce955291", "multiverse_ids": [409795], "mtgo_id": 60328, "mtgo_foil_id": 60329, "tcgplayer_id": 115922, "cardmarket_id": 289006, "name": "Confirm Suspicions", "lang": "en", "released_at": "2016-04-08", "uri": "https://api.scryfall.com/cards/cf7fcbc2-1034-442d-9f2a-7d79ea40ac3d", "scryfall_uri": "https://scryfall.com/card/soi/53/confirm-suspicions?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/c/f/cf7fcbc2-1034-442d-9f2a-7d79ea40ac3d.jpg?1576384007", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/f/cf7fcbc2-1034-442d-9f2a-7d79ea40ac3d.jpg?1576384007", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/c/f/cf7fcbc2-1034-442d-9f2a-7d79ea40ac3d.jpg?1576384007", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/c/f/cf7fcbc2-1034-442d-9f2a-7d79ea40ac3d.png?1576384007", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/f/cf7fcbc2-1034-442d-9f2a-7d79ea40ac3d.jpg?1576384007", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/c/f/cf7fcbc2-1034-442d-9f2a-7d79ea40ac3d.jpg?1576384007"}, "mana_cost": "{3}{U}{U}", "cmc": 5.0, "type_line": "Instant", "oracle_text": "Counter target spell.\nInvestigate three times. (To investigate, create a Clue token. It's an artifact with \"{2}, Sacrifice this artifact: Draw a card.\")", "colors": ["U"], "color_identity": ["U"], "keywords": ["Investigate"], "all_parts": [{"object": "related_card", "id": "cf7fcbc2-1034-442d-9f2a-7d79ea40ac3d", "component": "combo_piece", "name": "Confirm Suspicions", "type_line": "Instant", "uri": "https://api.scryfall.com/cards/cf7fcbc2-1034-442d-9f2a-7d79ea40ac3d"}, {"object": "related_card", "id": "f2c859e1-181e-44d1-afbd-bbd6e52cf42a", "component": "token", "name": "Clue", "type_line": "Token Artifact \u2014 Clue", "uri": "https://api.scryfall.com/cards/f2c859e1-181e-44d1-afbd-bbd6e52cf42a"}], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "5e914d7e-c1e9-446c-a33d-d093c02b2743", "set": "soi", "set_name": "Shadows over Innistrad", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/5e914d7e-c1e9-446c-a33d-d093c02b2743", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Asoi&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/soi?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/cf7fcbc2-1034-442d-9f2a-7d79ea40ac3d/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aa30d076b-c942-45e4-b943-3749ce955291&unique=prints", "collector_number": "53", "digital": false, "rarity": "rare", "flavor_text": "Everyone has something to hide.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "David Gaillet", "artist_ids": ["3496c5b4-57bf-4e5e-8bac-a1e05a911a2d"], "illustration_id": "5a7ff760-ecff-41f3-a49a-6e145609dad5", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 5184, "penny_rank": 1440, "prices": {"usd": "0.25", "usd_foil": "0.92", "usd_etched": null, "eur": "0.15", "eur_foil": "0.37", "tix": "0.01"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=409795", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Confirm+Suspicions&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Confirm+Suspicions&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Confirm+Suspicions"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/115922?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Confirm+Suspicions&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/60328?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "4f3b7d39-ce98-48e2-b2bf-0d55b4d3102b", "oracle_id": "ca8a0e81-f885-47ee-82bb-fb25ec61bb1c", "multiverse_ids": [27714], "mtgo_id": 15325, "mtgo_foil_id": 15326, "tcgplayer_id": 7773, "cardmarket_id": 3277, "name": "Confound", "lang": "en", "released_at": "2001-02-05", "uri": "https://api.scryfall.com/cards/4f3b7d39-ce98-48e2-b2bf-0d55b4d3102b", "scryfall_uri": "https://scryfall.com/card/pls/22/confound?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/4/f/4f3b7d39-ce98-48e2-b2bf-0d55b4d3102b.jpg?1562911605", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/f/4f3b7d39-ce98-48e2-b2bf-0d55b4d3102b.jpg?1562911605", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/4/f/4f3b7d39-ce98-48e2-b2bf-0d55b4d3102b.jpg?1562911605", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/4/f/4f3b7d39-ce98-48e2-b2bf-0d55b4d3102b.png?1562911605", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/f/4f3b7d39-ce98-48e2-b2bf-0d55b4d3102b.jpg?1562911605", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/4/f/4f3b7d39-ce98-48e2-b2bf-0d55b4d3102b.jpg?1562911605"}, "mana_cost": "{1}{U}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Counter target spell that targets a creature.\nDraw a card.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "82dc193b-bd5f-4883-a93f-a4155b467ee0", "set": "pls", "set_name": "Planeshift", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/82dc193b-bd5f-4883-a93f-a4155b467ee0", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Apls&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/pls?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/4f3b7d39-ce98-48e2-b2bf-0d55b4d3102b/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aca8a0e81-f885-47ee-82bb-fb25ec61bb1c&unique=prints", "collector_number": "22", "digital": false, "rarity": "common", "flavor_text": "\"Did I know Szat would betray us?\" Urza asked quizzically. \"I was counting on it.\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Doug Chaffee", "artist_ids": ["dd587b27-dca3-4219-aa55-b285a7a77030"], "illustration_id": "4a01d19b-79ea-4682-a4bb-9b0095ac6830", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 9944, "penny_rank": 8455, "prices": {"usd": "0.20", "usd_foil": "6.88", "usd_etched": null, "eur": "0.15", "eur_foil": "1.60", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=27714", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Confound&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Confound&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Confound"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/7773?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Confound&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/15325?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "a0b3d4ff-09d1-4d9f-8c83-cdfbd7bb1079", "oracle_id": "a48f259a-99a0-49c7-a11b-6e796f8a12f4", "multiverse_ids": [394523], "mtgo_id": 56248, "mtgo_foil_id": 56249, "tcgplayer_id": 96636, "cardmarket_id": 273304, "name": "Contradict", "lang": "en", "released_at": "2015-03-27", "uri": "https://api.scryfall.com/cards/a0b3d4ff-09d1-4d9f-8c83-cdfbd7bb1079", "scryfall_uri": "https://scryfall.com/card/dtk/49/contradict?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/a/0/a0b3d4ff-09d1-4d9f-8c83-cdfbd7bb1079.jpg?1562790758", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/0/a0b3d4ff-09d1-4d9f-8c83-cdfbd7bb1079.jpg?1562790758", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/a/0/a0b3d4ff-09d1-4d9f-8c83-cdfbd7bb1079.jpg?1562790758", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/a/0/a0b3d4ff-09d1-4d9f-8c83-cdfbd7bb1079.png?1562790758", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/0/a0b3d4ff-09d1-4d9f-8c83-cdfbd7bb1079.jpg?1562790758", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/a/0/a0b3d4ff-09d1-4d9f-8c83-cdfbd7bb1079.jpg?1562790758"}, "mana_cost": "{3}{U}{U}", "cmc": 5.0, "type_line": "Instant", "oracle_text": "Counter target spell.\nDraw a card.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "7e72625f-f320-4552-a719-d11e2f1853bd", "set": "dtk", "set_name": "Dragons of Tarkir", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/7e72625f-f320-4552-a719-d11e2f1853bd", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Adtk&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/dtk?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/a0b3d4ff-09d1-4d9f-8c83-cdfbd7bb1079/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aa48f259a-99a0-49c7-a11b-6e796f8a12f4&unique=prints", "collector_number": "49", "digital": false, "rarity": "common", "flavor_text": "Those who question Ojutai may not like the answers they receive.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Steve Prescott", "artist_ids": ["a1139fb8-41f5-4a9e-9a74-f662e1a23b35"], "illustration_id": "4092138f-7dc5-4b66-863c-5a69c35342f6", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 13990, "penny_rank": 8006, "prices": {"usd": "0.07", "usd_foil": "0.29", "usd_etched": null, "eur": "0.03", "eur_foil": "0.16", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=394523", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Contradict&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Contradict&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Contradict"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/96636?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Contradict&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/56248?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "0e670f6b-d16e-47fc-a5b7-7ca0d8763644", "oracle_id": "f7ad79e3-d128-4aee-8542-99fd3527f9d3", "multiverse_ids": [122121], "mtgo_id": 24819, "mtgo_foil_id": 24820, "tcgplayer_id": 14018, "cardmarket_id": 13625, "name": "Controvert", "lang": "en", "released_at": "2006-07-21", "uri": "https://api.scryfall.com/cards/0e670f6b-d16e-47fc-a5b7-7ca0d8763644", "scryfall_uri": "https://scryfall.com/card/csp/30/controvert?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/0/e/0e670f6b-d16e-47fc-a5b7-7ca0d8763644.jpg?1593274904", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/e/0e670f6b-d16e-47fc-a5b7-7ca0d8763644.jpg?1593274904", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/0/e/0e670f6b-d16e-47fc-a5b7-7ca0d8763644.jpg?1593274904", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/0/e/0e670f6b-d16e-47fc-a5b7-7ca0d8763644.png?1593274904", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/e/0e670f6b-d16e-47fc-a5b7-7ca0d8763644.jpg?1593274904", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/0/e/0e670f6b-d16e-47fc-a5b7-7ca0d8763644.jpg?1593274904"}, "mana_cost": "{2}{U}{U}", "cmc": 4.0, "type_line": "Instant", "oracle_text": "Counter target spell.\nRecover {2}{U}{U} (When a creature is put into your graveyard from the battlefield, you may pay {2}{U}{U}. If you do, return this card from your graveyard to your hand. Otherwise, exile this card.)", "colors": ["U"], "color_identity": ["U"], "keywords": ["Recover"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "1f4f105f-73e4-4f03-849e-82a204807847", "set": "csp", "set_name": "Coldsnap", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/1f4f105f-73e4-4f03-849e-82a204807847", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Acsp&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/csp?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/0e670f6b-d16e-47fc-a5b7-7ca0d8763644/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Af7ad79e3-d128-4aee-8542-99fd3527f9d3&unique=prints", "collector_number": "30", "digital": false, "rarity": "uncommon", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Joel Thomas", "artist_ids": ["87723513-8114-4e78-bf30-a2957fb16fd0"], "illustration_id": "5c44f998-e24a-4318-83ec-8c3af788fab3", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 19493, "penny_rank": 6484, "prices": {"usd": "0.21", "usd_foil": "0.63", "usd_etched": null, "eur": "0.02", "eur_foil": "0.39", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=122121", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Controvert&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Controvert&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Controvert"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/14018?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Controvert&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/24819?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "3fd8e607-8179-4ae8-ba7f-f5f22649dc18", "oracle_id": "cd201ded-cfaf-4a51-9fcc-6a61b3c910b0", "multiverse_ids": [479565], "mtgo_id": 80099, "arena_id": 71112, "tcgplayer_id": 212721, "cardmarket_id": 455118, "name": "Convolute", "lang": "en", "released_at": "2020-04-24", "uri": "https://api.scryfall.com/cards/3fd8e607-8179-4ae8-ba7f-f5f22649dc18", "scryfall_uri": "https://scryfall.com/card/iko/45/convolute?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/3/f/3fd8e607-8179-4ae8-ba7f-f5f22649dc18.jpg?1591230479", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/f/3fd8e607-8179-4ae8-ba7f-f5f22649dc18.jpg?1591230479", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/3/f/3fd8e607-8179-4ae8-ba7f-f5f22649dc18.jpg?1591230479", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/3/f/3fd8e607-8179-4ae8-ba7f-f5f22649dc18.png?1591230479", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/f/3fd8e607-8179-4ae8-ba7f-f5f22649dc18.jpg?1591230479", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/3/f/3fd8e607-8179-4ae8-ba7f-f5f22649dc18.jpg?1591230479"}, "mana_cost": "{2}{U}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Counter target spell unless its controller pays {4}.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "19feda43-15ab-427e-a0e4-148a4bf2b03a", "set": "iko", "set_name": "Ikoria: Lair of Behemoths", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/19feda43-15ab-427e-a0e4-148a4bf2b03a", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aiko&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/iko?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/3fd8e607-8179-4ae8-ba7f-f5f22649dc18/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Acd201ded-cfaf-4a51-9fcc-6a61b3c910b0&unique=prints", "collector_number": "45", "digital": false, "rarity": "common", "flavor_text": "\"No, thank you.\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Jason Rainville", "artist_ids": ["6ed7e669-579b-443d-b223-e5cbcb2a7483"], "illustration_id": "e1d6f71e-b1bd-4c64-b68d-96c9e47f1a62", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 7185, "penny_rank": 5281, "prices": {"usd": "0.01", "usd_foil": "0.04", "usd_etched": null, "eur": "0.23", "eur_foil": "0.03", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=479565", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Convolute&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Convolute&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Convolute"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/212721?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Convolute&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/80099?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "e17cf756-ec41-4934-8906-4276277c1470", "oracle_id": "cd201ded-cfaf-4a51-9fcc-6a61b3c910b0", "multiverse_ids": [414345], "mtgo_id": 61106, "mtgo_foil_id": 61107, "tcgplayer_id": 120472, "cardmarket_id": 291118, "name": "Convolute", "lang": "en", "released_at": "2016-07-22", "uri": "https://api.scryfall.com/cards/e17cf756-ec41-4934-8906-4276277c1470", "scryfall_uri": "https://scryfall.com/card/emn/53/convolute?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/e/1/e17cf756-ec41-4934-8906-4276277c1470.jpg?1576384056", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/1/e17cf756-ec41-4934-8906-4276277c1470.jpg?1576384056", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/e/1/e17cf756-ec41-4934-8906-4276277c1470.jpg?1576384056", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/e/1/e17cf756-ec41-4934-8906-4276277c1470.png?1576384056", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/1/e17cf756-ec41-4934-8906-4276277c1470.jpg?1576384056", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/e/1/e17cf756-ec41-4934-8906-4276277c1470.jpg?1576384056"}, "mana_cost": "{2}{U}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Counter target spell unless its controller pays {4}.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "5f0e4093-334f-4439-bbb5-a0affafd0ffc", "set": "emn", "set_name": "Eldritch Moon", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/5f0e4093-334f-4439-bbb5-a0affafd0ffc", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aemn&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/emn?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/e17cf756-ec41-4934-8906-4276277c1470/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Acd201ded-cfaf-4a51-9fcc-6a61b3c910b0&unique=prints", "collector_number": "53", "digital": false, "rarity": "common", "flavor_text": "\"There's no sense arguing with insanity.\"\n\u2014Levana, Midnight Duelist", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Viktor Titov", "artist_ids": ["2270c0b0-afb4-42b0-bcb6-25fe4ad6eef2"], "illustration_id": "f7c32564-8b87-47a9-9874-031b3b2647a1", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 7185, "penny_rank": 5281, "prices": {"usd": "0.03", "usd_foil": "0.04", "usd_etched": null, "eur": "0.02", "eur_foil": "0.10", "tix": "0.04"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=414345", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Convolute&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Convolute&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Convolute"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/120472?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Convolute&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/61106?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "fac88052-96a3-4a4d-95a2-c5a652fcb275", "oracle_id": "cd201ded-cfaf-4a51-9fcc-6a61b3c910b0", "multiverse_ids": [88998], "mtgo_id": 23372, "mtgo_foil_id": 23373, "tcgplayer_id": 13240, "cardmarket_id": 13343, "name": "Convolute", "lang": "en", "released_at": "2005-10-07", "uri": "https://api.scryfall.com/cards/fac88052-96a3-4a4d-95a2-c5a652fcb275", "scryfall_uri": "https://scryfall.com/card/rav/41/convolute?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/f/a/fac88052-96a3-4a4d-95a2-c5a652fcb275.jpg?1598914075", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/a/fac88052-96a3-4a4d-95a2-c5a652fcb275.jpg?1598914075", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/f/a/fac88052-96a3-4a4d-95a2-c5a652fcb275.jpg?1598914075", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/f/a/fac88052-96a3-4a4d-95a2-c5a652fcb275.png?1598914075", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/a/fac88052-96a3-4a4d-95a2-c5a652fcb275.jpg?1598914075", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/f/a/fac88052-96a3-4a4d-95a2-c5a652fcb275.jpg?1598914075"}, "mana_cost": "{2}{U}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Counter target spell unless its controller pays {4}.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "15fccbe8-2825-41ca-9d0a-67aebdf91c4a", "set": "rav", "set_name": "Ravnica: City of Guilds", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/15fccbe8-2825-41ca-9d0a-67aebdf91c4a", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Arav&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/rav?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/fac88052-96a3-4a4d-95a2-c5a652fcb275/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Acd201ded-cfaf-4a51-9fcc-6a61b3c910b0&unique=prints", "collector_number": "41", "digital": false, "rarity": "common", "flavor_text": "The words came to the sorcerer's lips but refused to budge any further.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Dany Orizio", "artist_ids": ["fcd5ea36-64e0-4af0-992a-3c68a34a400f"], "illustration_id": "72aadce2-cb7f-4cdd-94e9-8f895261ef42", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 7185, "penny_rank": 5281, "prices": {"usd": "0.09", "usd_foil": "0.33", "usd_etched": null, "eur": "0.10", "eur_foil": "0.09", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=88998", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Convolute&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Convolute&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Convolute"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/13240?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Convolute&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/23372?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "28432161-023b-4a98-b92a-55dc6d936cd1", "oracle_id": "87837a94-05db-48fe-b810-26d8f92cfc58", "multiverse_ids": [233080], "mtgo_id": 40012, "mtgo_foil_id": 40013, "tcgplayer_id": 39502, "cardmarket_id": 245864, "name": "Corrupted Resolve", "lang": "en", "released_at": "2011-05-13", "uri": "https://api.scryfall.com/cards/28432161-023b-4a98-b92a-55dc6d936cd1", "scryfall_uri": "https://scryfall.com/card/nph/32/corrupted-resolve?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/2/8/28432161-023b-4a98-b92a-55dc6d936cd1.jpg?1562876198", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/8/28432161-023b-4a98-b92a-55dc6d936cd1.jpg?1562876198", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/2/8/28432161-023b-4a98-b92a-55dc6d936cd1.jpg?1562876198", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/2/8/28432161-023b-4a98-b92a-55dc6d936cd1.png?1562876198", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/8/28432161-023b-4a98-b92a-55dc6d936cd1.jpg?1562876198", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/2/8/28432161-023b-4a98-b92a-55dc6d936cd1.jpg?1562876198"}, "mana_cost": "{1}{U}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Counter target spell if its controller is poisoned.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "e8e356d8-6d01-4dab-aa07-d0999dc9359f", "set": "nph", "set_name": "New Phyrexia", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/e8e356d8-6d01-4dab-aa07-d0999dc9359f", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Anph&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/nph?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/28432161-023b-4a98-b92a-55dc6d936cd1/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A87837a94-05db-48fe-b810-26d8f92cfc58&unique=prints", "collector_number": "32", "digital": false, "rarity": "uncommon", "watermark": "phyrexian", "flavor_text": "\"Flesh is a sickness that infects Phyrexia.\"\n\u2014Avaricta, Gitaxian sective", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Greg Staples", "artist_ids": ["93d65564-bf00-447b-8406-e2031f03b6b1"], "illustration_id": "be655f00-ecef-4d1f-b0ec-a2ae780e8ff8", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 10178, "penny_rank": 9508, "prices": {"usd": "0.18", "usd_foil": "1.18", "usd_etched": null, "eur": "0.02", "eur_foil": "0.59", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=233080", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Corrupted+Resolve&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Corrupted+Resolve&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Corrupted+Resolve"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/39502?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Corrupted+Resolve&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/40012?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "f4228b80-d87d-4ebe-ae92-04e4a7d0dc43", "oracle_id": "1198ec53-9050-417d-812f-692e1378d346", "multiverse_ids": [153966], "mtgo_id": 29649, "mtgo_foil_id": 29650, "tcgplayer_id": 18595, "cardmarket_id": 19047, "name": "Counterbore", "lang": "en", "released_at": "2008-05-02", "uri": "https://api.scryfall.com/cards/f4228b80-d87d-4ebe-ae92-04e4a7d0dc43", "scryfall_uri": "https://scryfall.com/card/shm/33/counterbore?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/f/4/f4228b80-d87d-4ebe-ae92-04e4a7d0dc43.jpg?1562838120", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/4/f4228b80-d87d-4ebe-ae92-04e4a7d0dc43.jpg?1562838120", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/f/4/f4228b80-d87d-4ebe-ae92-04e4a7d0dc43.jpg?1562838120", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/f/4/f4228b80-d87d-4ebe-ae92-04e4a7d0dc43.png?1562838120", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/4/f4228b80-d87d-4ebe-ae92-04e4a7d0dc43.jpg?1562838120", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/f/4/f4228b80-d87d-4ebe-ae92-04e4a7d0dc43.jpg?1562838120"}, "mana_cost": "{3}{U}{U}", "cmc": 5.0, "type_line": "Instant", "oracle_text": "Counter target spell. Search its controller's graveyard, hand, and library for all cards with the same name as that spell and exile them. Then that player shuffles.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "c18c0ba1-2081-4808-9b2e-549bc3a666f3", "set": "shm", "set_name": "Shadowmoor", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/c18c0ba1-2081-4808-9b2e-549bc3a666f3", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ashm&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/shm?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/f4228b80-d87d-4ebe-ae92-04e4a7d0dc43/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A1198ec53-9050-417d-812f-692e1378d346&unique=prints", "collector_number": "33", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Wayne England", "artist_ids": ["62dc90c0-4bc2-4d42-ad76-59cad9243566"], "illustration_id": "038bfb87-4356-4c14-95f7-a6cab6ddd4db", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 20953, "penny_rank": 3978, "prices": {"usd": "0.26", "usd_foil": null, "usd_etched": null, "eur": "0.19", "eur_foil": "1.25", "tix": "0.01"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=153966", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Counterbore&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Counterbore&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Counterbore"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/18595?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Counterbore&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/29649?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "94e4b773-40a4-4272-85dd-f728ada22748", "oracle_id": "8c983da8-1436-4c06-af9c-91b72cab48c1", "multiverse_ids": [253524], "mtgo_id": 46487, "mtgo_foil_id": 46488, "tcgplayer_id": 66496, "cardmarket_id": 258371, "name": "Counterflux", "lang": "en", "released_at": "2012-10-05", "uri": "https://api.scryfall.com/cards/94e4b773-40a4-4272-85dd-f728ada22748", "scryfall_uri": "https://scryfall.com/card/rtr/153/counterflux?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/9/4/94e4b773-40a4-4272-85dd-f728ada22748.jpg?1562790128", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/4/94e4b773-40a4-4272-85dd-f728ada22748.jpg?1562790128", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/9/4/94e4b773-40a4-4272-85dd-f728ada22748.jpg?1562790128", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/9/4/94e4b773-40a4-4272-85dd-f728ada22748.png?1562790128", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/4/94e4b773-40a4-4272-85dd-f728ada22748.jpg?1562790128", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/9/4/94e4b773-40a4-4272-85dd-f728ada22748.jpg?1562790128"}, "mana_cost": "{U}{U}{R}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "This spell can't be countered.\nCounter target spell you don't control.\nOverload {1}{U}{U}{R} (You may cast this spell for its overload cost. If you do, change its text by replacing all instances of \"target\" with \"each.\")", "colors": ["R", "U"], "color_identity": ["R", "U"], "keywords": ["Overload"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "80b2374d-c5f1-403e-9772-f6c806fd275e", "set": "rtr", "set_name": "Return to Ravnica", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/80b2374d-c5f1-403e-9772-f6c806fd275e", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Artr&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/rtr?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/94e4b773-40a4-4272-85dd-f728ada22748/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A8c983da8-1436-4c06-af9c-91b72cab48c1&unique=prints", "collector_number": "153", "digital": false, "rarity": "rare", "watermark": "izzet", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Scott M. Fischer", "artist_ids": ["23b0cf43-3e43-44c6-8329-96446eca5bce"], "illustration_id": "0f4f8855-41fb-474b-a50d-74b7a2755ad8", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 1815, "penny_rank": 1337, "prices": {"usd": "0.52", "usd_foil": "3.33", "usd_etched": null, "eur": "0.46", "eur_foil": "2.00", "tix": "0.01"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=253524", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Counterflux&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Counterflux&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Counterflux"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/66496?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Counterflux&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/46487?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "e864fd80-baee-468e-9dc3-e650cc203b23", "oracle_id": "8c983da8-1436-4c06-af9c-91b72cab48c1", "multiverse_ids": [], "tcgplayer_id": 259271, "name": "Counterflux", "lang": "en", "released_at": "2021-11-29", "uri": "https://api.scryfall.com/cards/e864fd80-baee-468e-9dc3-e650cc203b23", "scryfall_uri": "https://scryfall.com/card/sld/482/counterflux?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/e/8/e864fd80-baee-468e-9dc3-e650cc203b23.jpg?1657120160", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/8/e864fd80-baee-468e-9dc3-e650cc203b23.jpg?1657120160", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/e/8/e864fd80-baee-468e-9dc3-e650cc203b23.jpg?1657120160", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/e/8/e864fd80-baee-468e-9dc3-e650cc203b23.png?1657120160", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/8/e864fd80-baee-468e-9dc3-e650cc203b23.jpg?1657120160", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/e/8/e864fd80-baee-468e-9dc3-e650cc203b23.jpg?1657120160"}, "mana_cost": "{U}{U}{R}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "This spell can't be countered.\nCounter target spell you don't control.\nOverload {1}{U}{U}{R} (You may cast this spell for its overload cost. If you do, change its text by replacing all instances of \"target\" with \"each.\")", "colors": ["R", "U"], "color_identity": ["R", "U"], "keywords": ["Overload"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "4d92a8a7-ccb0-437d-abdc-9d70fc5ed672", "set": "sld", "set_name": "Secret Lair Drop", "set_type": "box", "set_uri": "https://api.scryfall.com/sets/4d92a8a7-ccb0-437d-abdc-9d70fc5ed672", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Asld&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/sld?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/e864fd80-baee-468e-9dc3-e650cc203b23/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A8c983da8-1436-4c06-af9c-91b72cab48c1&unique=prints", "collector_number": "482", "digital": false, "rarity": "rare", "flavor_text": "For a moment, it seemed as if Powder's invention had really worked.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Riot Games", "artist_ids": ["ff266c40-c25c-4bfd-8c32-8be1b5845a14"], "illustration_id": "451d2af4-4145-42d0-bed6-e95c4c35f3e8", "border_color": "black", "frame": "2015", "security_stamp": "triangle", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "edhrec_rank": 1815, "penny_rank": 1337, "prices": {"usd": "1.08", "usd_foil": "1.69", "usd_etched": null, "eur": null, "eur_foil": null, "tix": null}, "related_uris": {"tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Counterflux&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Counterflux&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Counterflux"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/259271?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Counterflux&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Counterflux&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "d3ec2c57-8e67-472d-8f2e-0492d311f130", "oracle_id": "16de96d0-a58e-42a7-9a13-45358542a246", "multiverse_ids": [262830], "mtgo_id": 43385, "mtgo_foil_id": 43386, "tcgplayer_id": 57858, "cardmarket_id": 252515, "name": "Counterlash", "lang": "en", "released_at": "2012-02-03", "uri": "https://api.scryfall.com/cards/d3ec2c57-8e67-472d-8f2e-0492d311f130", "scryfall_uri": "https://scryfall.com/card/dka/33/counterlash?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/d/3/d3ec2c57-8e67-472d-8f2e-0492d311f130.jpg?1562945498", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/3/d3ec2c57-8e67-472d-8f2e-0492d311f130.jpg?1562945498", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/d/3/d3ec2c57-8e67-472d-8f2e-0492d311f130.jpg?1562945498", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/d/3/d3ec2c57-8e67-472d-8f2e-0492d311f130.png?1562945498", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/3/d3ec2c57-8e67-472d-8f2e-0492d311f130.jpg?1562945498", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/d/3/d3ec2c57-8e67-472d-8f2e-0492d311f130.jpg?1562945498"}, "mana_cost": "{4}{U}{U}", "cmc": 6.0, "type_line": "Instant", "oracle_text": "Counter target spell. You may cast a spell that shares a card type with it from your hand without paying its mana cost.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "8052750a-aaf2-46fc-b46d-633f14124017", "set": "dka", "set_name": "Dark Ascension", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/8052750a-aaf2-46fc-b46d-633f14124017", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Adka&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/dka?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/d3ec2c57-8e67-472d-8f2e-0492d311f130/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A16de96d0-a58e-42a7-9a13-45358542a246&unique=prints", "collector_number": "33", "digital": false, "rarity": "rare", "flavor_text": "\"Pathetic. Let me show you how it's done.\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Austin Hsu", "artist_ids": ["c5e439d8-b3db-4c13-ae93-4e129e3b9478"], "illustration_id": "0d42707c-88d0-4b8f-9888-a34e92ab3a46", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 10880, "penny_rank": 9759, "prices": {"usd": "0.17", "usd_foil": "0.70", "usd_etched": null, "eur": "0.20", "eur_foil": "0.65", "tix": "0.01"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=262830", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Counterlash&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Counterlash&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Counterlash"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/57858?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Counterlash&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/43385?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "07815e32-0b64-4c2b-84e6-a72336c45cf5", "oracle_id": "43402a6c-9fba-4a80-90b3-14bac05c574b", "multiverse_ids": [380388], "mtgo_id": 52204, "mtgo_foil_id": 52205, "tcgplayer_id": 82329, "cardmarket_id": 266687, "name": "Countermand", "lang": "en", "released_at": "2014-05-02", "uri": "https://api.scryfall.com/cards/07815e32-0b64-4c2b-84e6-a72336c45cf5", "scryfall_uri": "https://scryfall.com/card/jou/33/countermand?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/0/7/07815e32-0b64-4c2b-84e6-a72336c45cf5.jpg?1593095401", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/7/07815e32-0b64-4c2b-84e6-a72336c45cf5.jpg?1593095401", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/0/7/07815e32-0b64-4c2b-84e6-a72336c45cf5.jpg?1593095401", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/0/7/07815e32-0b64-4c2b-84e6-a72336c45cf5.png?1593095401", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/7/07815e32-0b64-4c2b-84e6-a72336c45cf5.jpg?1593095401", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/0/7/07815e32-0b64-4c2b-84e6-a72336c45cf5.jpg?1593095401"}, "mana_cost": "{2}{U}{U}", "cmc": 4.0, "type_line": "Instant", "oracle_text": "Counter target spell. Its controller mills four cards.", "colors": ["U"], "color_identity": ["U"], "keywords": ["Mill"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "204d2dca-1887-4721-9558-164aa7bbeb4f", "set": "jou", "set_name": "Journey into Nyx", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/204d2dca-1887-4721-9558-164aa7bbeb4f", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ajou&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/jou?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/07815e32-0b64-4c2b-84e6-a72336c45cf5/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A43402a6c-9fba-4a80-90b3-14bac05c574b&unique=prints", "collector_number": "33", "digital": false, "rarity": "common", "flavor_text": "The physical pain was nothing compared to the agony in his mind.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Clint Cearley", "artist_ids": ["03b75350-d5a0-4e3a-b3b4-8d4a5554385b"], "illustration_id": "1ea2a634-43b5-4054-89a8-c42273b3bc86", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 9487, "penny_rank": 8374, "prices": {"usd": "0.10", "usd_foil": "0.34", "usd_etched": null, "eur": "0.12", "eur_foil": "0.25", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=380388", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Countermand&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Countermand&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Countermand"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/82329?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Countermand&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/52204?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "0c9a7cb0-5bff-48ff-b620-2838816ac9b5", "oracle_id": "cc187110-1148-4090-bbb8-e205694a39f5", "multiverse_ids": [413585], "mtgo_id": 60895, "mtgo_foil_id": 60896, "tcgplayer_id": 118445, "cardmarket_id": 290195, "name": "Counterspell", "lang": "en", "released_at": "2016-06-10", "uri": "https://api.scryfall.com/cards/0c9a7cb0-5bff-48ff-b620-2838816ac9b5", "scryfall_uri": "https://scryfall.com/card/ema/43/counterspell?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/0/c/0c9a7cb0-5bff-48ff-b620-2838816ac9b5.jpg?1580013910", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/c/0c9a7cb0-5bff-48ff-b620-2838816ac9b5.jpg?1580013910", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/0/c/0c9a7cb0-5bff-48ff-b620-2838816ac9b5.jpg?1580013910", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/0/c/0c9a7cb0-5bff-48ff-b620-2838816ac9b5.png?1580013910", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/c/0c9a7cb0-5bff-48ff-b620-2838816ac9b5.jpg?1580013910", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/0/c/0c9a7cb0-5bff-48ff-b620-2838816ac9b5.jpg?1580013910"}, "mana_cost": "{U}{U}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Counter target spell.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "banned", "gladiator": "legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "1f29f022-3ace-4c96-85e8-1f7b63aadf7e", "set": "ema", "set_name": "Eternal Masters", "set_type": "masters", "set_uri": "https://api.scryfall.com/sets/1f29f022-3ace-4c96-85e8-1f7b63aadf7e", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aema&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ema?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/0c9a7cb0-5bff-48ff-b620-2838816ac9b5/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Acc187110-1148-4090-bbb8-e205694a39f5&unique=prints", "collector_number": "43", "digital": false, "rarity": "common", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Zack Stella", "artist_ids": ["17bc7f55-958b-43f4-bb40-09746d05b3f9"], "illustration_id": "1044055e-a362-4edb-8101-96655e15da95", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 17, "penny_rank": 7, "prices": {"usd": "1.39", "usd_foil": "2.02", "usd_etched": null, "eur": "0.82", "eur_foil": "2.11", "tix": "0.32"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=413585", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Counterspell&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Counterspell&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Counterspell"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/118445?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Counterspell&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/60895?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "71cfcba5-1571-48b8-a3db-55dca135506e", "oracle_id": "cc187110-1148-4090-bbb8-e205694a39f5", "multiverse_ids": [185820], "mtgo_id": 31572, "mtgo_foil_id": 31573, "tcgplayer_id": 36997, "cardmarket_id": 20033, "name": "Counterspell", "lang": "en", "released_at": "2008-11-07", "uri": "https://api.scryfall.com/cards/71cfcba5-1571-48b8-a3db-55dca135506e", "scryfall_uri": "https://scryfall.com/card/dd2/24/counterspell?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/7/1/71cfcba5-1571-48b8-a3db-55dca135506e.jpg?1562843855", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/1/71cfcba5-1571-48b8-a3db-55dca135506e.jpg?1562843855", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/7/1/71cfcba5-1571-48b8-a3db-55dca135506e.jpg?1562843855", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/7/1/71cfcba5-1571-48b8-a3db-55dca135506e.png?1562843855", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/1/71cfcba5-1571-48b8-a3db-55dca135506e.jpg?1562843855", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/7/1/71cfcba5-1571-48b8-a3db-55dca135506e.jpg?1562843855"}, "mana_cost": "{U}{U}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Counter target spell.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "banned", "gladiator": "legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "7161cc1c-adbd-479c-9125-df4c40b0e3ad", "set": "dd2", "set_name": "Duel Decks: Jace vs. Chandra", "set_type": "duel_deck", "set_uri": "https://api.scryfall.com/sets/7161cc1c-adbd-479c-9125-df4c40b0e3ad", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Add2&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/dd2?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/71cfcba5-1571-48b8-a3db-55dca135506e/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Acc187110-1148-4090-bbb8-e205694a39f5&unique=prints", "collector_number": "24", "digital": false, "rarity": "common", "flavor_text": "The pyromancer summoned up her mightiest onslaught of fire and rage. Jace feigned interest.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Jason Chan", "artist_ids": ["8062d5a9-51b6-4822-933f-fa9e9dba8416"], "illustration_id": "32026e72-0882-4ce4-a3a7-ef58d43804e7", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "edhrec_rank": 17, "penny_rank": 7, "prices": {"usd": "2.58", "usd_foil": null, "usd_etched": null, "eur": "2.00", "eur_foil": null, "tix": "0.65"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=185820", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Counterspell&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Counterspell&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Counterspell"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/36997?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Counterspell&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/31572?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "29bb1b85-9444-4bfa-b622-092a6873631c", "oracle_id": "cc187110-1148-4090-bbb8-e205694a39f5", "multiverse_ids": [11214], "mtgo_id": 15436, "mtgo_foil_id": 15437, "tcgplayer_id": 2860, "cardmarket_id": 2829, "name": "Counterspell", "lang": "en", "released_at": "2001-04-11", "uri": "https://api.scryfall.com/cards/29bb1b85-9444-4bfa-b622-092a6873631c", "scryfall_uri": "https://scryfall.com/card/7ed/67/counterspell?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/2/9/29bb1b85-9444-4bfa-b622-092a6873631c.jpg?1562234566", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/9/29bb1b85-9444-4bfa-b622-092a6873631c.jpg?1562234566", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/2/9/29bb1b85-9444-4bfa-b622-092a6873631c.jpg?1562234566", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/2/9/29bb1b85-9444-4bfa-b622-092a6873631c.png?1562234566", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/9/29bb1b85-9444-4bfa-b622-092a6873631c.jpg?1562234566", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/2/9/29bb1b85-9444-4bfa-b622-092a6873631c.jpg?1562234566"}, "mana_cost": "{U}{U}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Counter target spell.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "banned", "gladiator": "legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "230f38aa-9511-4db8-a3aa-aeddbc3f7bb9", "set": "7ed", "set_name": "Seventh Edition", "set_type": "core", "set_uri": "https://api.scryfall.com/sets/230f38aa-9511-4db8-a3aa-aeddbc3f7bb9", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3A7ed&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/7ed?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/29bb1b85-9444-4bfa-b622-092a6873631c/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Acc187110-1148-4090-bbb8-e205694a39f5&unique=prints", "collector_number": "67", "digital": false, "rarity": "common", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Mark Romanoski", "artist_ids": ["4ec62588-d6cc-41a2-a9be-a0f95b9613cc"], "illustration_id": "4d4ab980-b413-40c9-984f-b3bc347dda8b", "border_color": "white", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 17, "penny_rank": 7, "prices": {"usd": "1.56", "usd_foil": "188.43", "usd_etched": null, "eur": "1.40", "eur_foil": "215.00", "tix": "0.23"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=11214", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Counterspell&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Counterspell&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Counterspell"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/2860?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Counterspell&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/15436?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "7bd03c80-7812-4704-9e07-9cf73b49c01f", "oracle_id": "cc187110-1148-4090-bbb8-e205694a39f5", "multiverse_ids": [19570], "mtgo_id": 13259, "mtgo_foil_id": 13260, "tcgplayer_id": 6484, "cardmarket_id": 11442, "name": "Counterspell", "lang": "en", "released_at": "1999-10-04", "uri": "https://api.scryfall.com/cards/7bd03c80-7812-4704-9e07-9cf73b49c01f", "scryfall_uri": "https://scryfall.com/card/mmq/69/counterspell?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/7/b/7bd03c80-7812-4704-9e07-9cf73b49c01f.jpg?1562381815", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/b/7bd03c80-7812-4704-9e07-9cf73b49c01f.jpg?1562381815", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/7/b/7bd03c80-7812-4704-9e07-9cf73b49c01f.jpg?1562381815", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/7/b/7bd03c80-7812-4704-9e07-9cf73b49c01f.png?1562381815", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/b/7bd03c80-7812-4704-9e07-9cf73b49c01f.jpg?1562381815", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/7/b/7bd03c80-7812-4704-9e07-9cf73b49c01f.jpg?1562381815"}, "mana_cost": "{U}{U}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Counter target spell.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "banned", "gladiator": "legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "385e11a4-492b-4d07-b4a6-a1409ef829b8", "set": "mmq", "set_name": "Mercadian Masques", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/385e11a4-492b-4d07-b4a6-a1409ef829b8", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ammq&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/mmq?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/7bd03c80-7812-4704-9e07-9cf73b49c01f/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Acc187110-1148-4090-bbb8-e205694a39f5&unique=prints", "collector_number": "69", "digital": false, "rarity": "common", "flavor_text": "\"Your attack has been rendered harmless. It is, however, quite pretty.\"\n\u2014Saprazzan vizier", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Gao Yan", "artist_ids": ["0d253eb0-2579-4201-bde4-f0a9f0963827"], "illustration_id": "7b31588e-1438-47e9-9a6b-97b433071a24", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 17, "penny_rank": 7, "prices": {"usd": "2.24", "usd_foil": "155.00", "usd_etched": null, "eur": "0.61", "eur_foil": "122.50", "tix": "2.26"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=19570", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Counterspell&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Counterspell&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Counterspell"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/6484?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Counterspell&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/13259?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "dacdd380-71cf-4832-bd02-3697501325f3", "oracle_id": "cc187110-1148-4090-bbb8-e205694a39f5", "multiverse_ids": [4693], "mtgo_id": 9631, "mtgo_foil_id": 9632, "tcgplayer_id": 5503, "cardmarket_id": 8792, "name": "Counterspell", "lang": "en", "released_at": "1997-10-14", "uri": "https://api.scryfall.com/cards/dacdd380-71cf-4832-bd02-3697501325f3", "scryfall_uri": "https://scryfall.com/card/tmp/57/counterspell?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/d/a/dacdd380-71cf-4832-bd02-3697501325f3.jpg?1562056885", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/a/dacdd380-71cf-4832-bd02-3697501325f3.jpg?1562056885", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/d/a/dacdd380-71cf-4832-bd02-3697501325f3.jpg?1562056885", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/d/a/dacdd380-71cf-4832-bd02-3697501325f3.png?1562056885", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/a/dacdd380-71cf-4832-bd02-3697501325f3.jpg?1562056885", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/d/a/dacdd380-71cf-4832-bd02-3697501325f3.jpg?1562056885"}, "mana_cost": "{U}{U}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Counter target spell.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "banned", "gladiator": "legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "10df3a67-178e-4363-8668-34f0e6edf2a7", "set": "tmp", "set_name": "Tempest", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/10df3a67-178e-4363-8668-34f0e6edf2a7", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Atmp&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/tmp?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/dacdd380-71cf-4832-bd02-3697501325f3/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Acc187110-1148-4090-bbb8-e205694a39f5&unique=prints", "collector_number": "57", "digital": false, "rarity": "common", "flavor_text": "\"It was probably a lousy spell in the first place.\"\n\u2014Ertai, wizard adept", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Stephen Daniele", "artist_ids": ["a267f9bb-072b-410a-a704-50f4d19020d8"], "illustration_id": "02602346-cc8d-429d-bc6e-3a6495067172", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 17, "penny_rank": 7, "prices": {"usd": "1.61", "usd_foil": null, "usd_etched": null, "eur": "0.48", "eur_foil": null, "tix": "0.37"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=4693", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Counterspell&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Counterspell&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Counterspell"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/5503?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Counterspell&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/9631?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "b975289d-d8b8-46b4-8c60-d6ed4b594519", "oracle_id": "cc187110-1148-4090-bbb8-e205694a39f5", "multiverse_ids": [3898], "tcgplayer_id": 2086, "cardmarket_id": 9448, "name": "Counterspell", "lang": "en", "released_at": "1997-03-24", "uri": "https://api.scryfall.com/cards/b975289d-d8b8-46b4-8c60-d6ed4b594519", "scryfall_uri": "https://scryfall.com/card/5ed/77/counterspell?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/b/9/b975289d-d8b8-46b4-8c60-d6ed4b594519.jpg?1562593755", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/9/b975289d-d8b8-46b4-8c60-d6ed4b594519.jpg?1562593755", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/b/9/b975289d-d8b8-46b4-8c60-d6ed4b594519.jpg?1562593755", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/b/9/b975289d-d8b8-46b4-8c60-d6ed4b594519.png?1562593755", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/9/b975289d-d8b8-46b4-8c60-d6ed4b594519.jpg?1562593755", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/b/9/b975289d-d8b8-46b4-8c60-d6ed4b594519.jpg?1562593755"}, "mana_cost": "{U}{U}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Counter target spell.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "banned", "gladiator": "legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "5afd2f4b-8309-4f45-a2b2-3785018474cb", "set": "5ed", "set_name": "Fifth Edition", "set_type": "core", "set_uri": "https://api.scryfall.com/sets/5afd2f4b-8309-4f45-a2b2-3785018474cb", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3A5ed&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/5ed?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/b975289d-d8b8-46b4-8c60-d6ed4b594519/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Acc187110-1148-4090-bbb8-e205694a39f5&unique=prints", "collector_number": "77", "digital": false, "rarity": "common", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Hannibal King", "artist_ids": ["47fa68ed-4d79-4116-a562-fc0c11096e81"], "illustration_id": "717edff6-c8e9-4dfd-9cc1-1128aee55915", "border_color": "white", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 17, "penny_rank": 7, "prices": {"usd": "1.60", "usd_foil": null, "usd_etched": null, "eur": "1.00", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=3898", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Counterspell&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Counterspell&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Counterspell"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/2086?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Counterspell&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Counterspell&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "aedbcbaa-40f0-485f-8427-778edc2d2ec0", "oracle_id": "cc187110-1148-4090-bbb8-e205694a39f5", "multiverse_ids": [2500], "tcgplayer_id": 4636, "cardmarket_id": 6276, "name": "Counterspell", "lang": "en", "released_at": "1995-06-03", "uri": "https://api.scryfall.com/cards/aedbcbaa-40f0-485f-8427-778edc2d2ec0", "scryfall_uri": "https://scryfall.com/card/ice/64/counterspell?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/a/e/aedbcbaa-40f0-485f-8427-778edc2d2ec0.jpg?1562927522", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/e/aedbcbaa-40f0-485f-8427-778edc2d2ec0.jpg?1562927522", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/a/e/aedbcbaa-40f0-485f-8427-778edc2d2ec0.jpg?1562927522", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/a/e/aedbcbaa-40f0-485f-8427-778edc2d2ec0.png?1562927522", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/e/aedbcbaa-40f0-485f-8427-778edc2d2ec0.jpg?1562927522", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/a/e/aedbcbaa-40f0-485f-8427-778edc2d2ec0.jpg?1562927522"}, "mana_cost": "{U}{U}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Counter target spell.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "banned", "gladiator": "legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "b0e08eea-5c01-4406-a6e2-dcd09c5e5b67", "set": "ice", "set_name": "Ice Age", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/b0e08eea-5c01-4406-a6e2-dcd09c5e5b67", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aice&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ice?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/aedbcbaa-40f0-485f-8427-778edc2d2ec0/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Acc187110-1148-4090-bbb8-e205694a39f5&unique=prints", "collector_number": "64", "digital": false, "rarity": "common", "flavor_text": "\"The duel was going badly for me, and Zur thought I was finished. He boasted that he would eat my soul\u2014but all he ate were his words.\"\n\u2014Gustha Ebbasdotter, Kjeldoran Royal Mage", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Allen Williams", "artist_ids": ["8a56d854-b424-45ec-9262-e993a382a961"], "illustration_id": "c85178b7-687f-42b5-ab7a-0eda075526e9", "border_color": "black", "frame": "1993", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 17, "penny_rank": 7, "prices": {"usd": "2.02", "usd_foil": null, "usd_etched": null, "eur": "0.59", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=2500", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Counterspell&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Counterspell&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Counterspell"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/4636?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Counterspell&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Counterspell&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "0df55e3f-14de-46ef-b6b1-616618724d9e", "oracle_id": "cc187110-1148-4090-bbb8-e205694a39f5", "multiverse_ids": [102], "tcgplayer_id": 1073, "cardmarket_id": 5288, "name": "Counterspell", "lang": "en", "released_at": "1993-08-05", "uri": "https://api.scryfall.com/cards/0df55e3f-14de-46ef-b6b1-616618724d9e", "scryfall_uri": "https://scryfall.com/card/lea/54/counterspell?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/0/d/0df55e3f-14de-46ef-b6b1-616618724d9e.jpg?1559591713", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/d/0df55e3f-14de-46ef-b6b1-616618724d9e.jpg?1559591713", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/0/d/0df55e3f-14de-46ef-b6b1-616618724d9e.jpg?1559591713", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/0/d/0df55e3f-14de-46ef-b6b1-616618724d9e.png?1559591713", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/d/0df55e3f-14de-46ef-b6b1-616618724d9e.jpg?1559591713", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/0/d/0df55e3f-14de-46ef-b6b1-616618724d9e.jpg?1559591713"}, "mana_cost": "{U}{U}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Counter target spell.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "banned", "gladiator": "legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "legal", "premodern": "legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "288bd996-960e-448b-a187-9504c1930c2c", "set": "lea", "set_name": "Limited Edition Alpha", "set_type": "core", "set_uri": "https://api.scryfall.com/sets/288bd996-960e-448b-a187-9504c1930c2c", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Alea&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/lea?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/0df55e3f-14de-46ef-b6b1-616618724d9e/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Acc187110-1148-4090-bbb8-e205694a39f5&unique=prints", "collector_number": "54", "digital": false, "rarity": "uncommon", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Mark Poole", "artist_ids": ["bfdeaf09-f915-4058-8e8b-bcac3bc43c33"], "illustration_id": "911ff9e4-cc26-4d32-a3ab-887d55af04c6", "border_color": "black", "frame": "1993", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 17, "penny_rank": 7, "prices": {"usd": null, "usd_foil": null, "usd_etched": null, "eur": "890.00", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=102", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Counterspell&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Counterspell&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Counterspell"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/1073?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Counterspell&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Counterspell&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "f35ec9da-f38b-4b7f-9eb5-090ca7755668", "oracle_id": "cc187110-1148-4090-bbb8-e205694a39f5", "multiverse_ids": [], "tcgplayer_id": 259207, "name": "Counterspell", "lang": "en", "released_at": "2021-11-29", "uri": "https://api.scryfall.com/cards/f35ec9da-f38b-4b7f-9eb5-090ca7755668", "scryfall_uri": "https://scryfall.com/card/sld/331/counterspell?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/f/3/f35ec9da-f38b-4b7f-9eb5-090ca7755668.jpg?1645141660", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/3/f35ec9da-f38b-4b7f-9eb5-090ca7755668.jpg?1645141660", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/f/3/f35ec9da-f38b-4b7f-9eb5-090ca7755668.jpg?1645141660", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/f/3/f35ec9da-f38b-4b7f-9eb5-090ca7755668.png?1645141660", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/3/f35ec9da-f38b-4b7f-9eb5-090ca7755668.jpg?1645141660", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/f/3/f35ec9da-f38b-4b7f-9eb5-090ca7755668.jpg?1645141660"}, "mana_cost": "{U}{U}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Counter target spell.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "banned", "gladiator": "legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "4d92a8a7-ccb0-437d-abdc-9d70fc5ed672", "set": "sld", "set_name": "Secret Lair Drop", "set_type": "box", "set_uri": "https://api.scryfall.com/sets/4d92a8a7-ccb0-437d-abdc-9d70fc5ed672", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Asld&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/sld?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/f35ec9da-f38b-4b7f-9eb5-090ca7755668/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Acc187110-1148-4090-bbb8-e205694a39f5&unique=prints", "collector_number": "331", "digital": false, "rarity": "rare", "flavor_text": "\"If only there were a way to counter your inevitable whining.\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Mateus Manhanini", "artist_ids": ["d194fa7a-4c05-44b1-af60-d474a72f7076"], "illustration_id": "6758f3e6-3d7e-4973-95eb-509e6c735427", "border_color": "borderless", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "edhrec_rank": 17, "penny_rank": 7, "prices": {"usd": "10.92", "usd_foil": "11.64", "usd_etched": null, "eur": null, "eur_foil": null, "tix": null}, "related_uris": {"tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Counterspell&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Counterspell&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Counterspell"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/259207?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Counterspell&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Counterspell&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "2c358d75-01ad-4487-8104-425124b96aae", "oracle_id": "cc187110-1148-4090-bbb8-e205694a39f5", "multiverse_ids": [525343], "tcgplayer_id": 238618, "cardmarket_id": 564647, "name": "Counterspell", "lang": "en", "released_at": "2021-06-18", "uri": "https://api.scryfall.com/cards/2c358d75-01ad-4487-8104-425124b96aae", "scryfall_uri": "https://scryfall.com/card/mh2/308/counterspell?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/2/c/2c358d75-01ad-4487-8104-425124b96aae.jpg?1628337127", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/c/2c358d75-01ad-4487-8104-425124b96aae.jpg?1628337127", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/2/c/2c358d75-01ad-4487-8104-425124b96aae.jpg?1628337127", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/2/c/2c358d75-01ad-4487-8104-425124b96aae.png?1628337127", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/c/2c358d75-01ad-4487-8104-425124b96aae.jpg?1628337127", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/2/c/2c358d75-01ad-4487-8104-425124b96aae.jpg?1628337127"}, "mana_cost": "{U}{U}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Counter target spell.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "banned", "gladiator": "legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "c1c7eb8c-f205-40ab-a609-767cb296544e", "set": "mh2", "set_name": "Modern Horizons 2", "set_type": "draft_innovation", "set_uri": "https://api.scryfall.com/sets/c1c7eb8c-f205-40ab-a609-767cb296544e", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Amh2&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/mh2?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/2c358d75-01ad-4487-8104-425124b96aae/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Acc187110-1148-4090-bbb8-e205694a39f5&unique=prints", "collector_number": "308", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Ryan Yee", "artist_ids": ["8955dca7-3e37-42b4-83a9-167c78a2178f"], "illustration_id": "c0aa9ebd-7c68-4106-ac74-e7ba32ae374a", "border_color": "borderless", "frame": "2015", "frame_effects": ["inverted"], "security_stamp": "oval", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "promo_types": ["boosterfun"], "edhrec_rank": 17, "penny_rank": 7, "prices": {"usd": "5.49", "usd_foil": "11.30", "usd_etched": null, "eur": "4.42", "eur_foil": "11.65", "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=525343", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Counterspell&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Counterspell&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Counterspell"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/238618?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Counterspell&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Counterspell&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "ffdf9d2a-c163-43df-9a2f-20b8749c86ae", "oracle_id": "cc187110-1148-4090-bbb8-e205694a39f5", "multiverse_ids": [517565], "mtgo_id": 89087, "arena_id": 77494, "tcgplayer_id": 235162, "tcgplayer_etched_id": 235163, "cardmarket_id": 556418, "name": "Counterspell", "lang": "en", "released_at": "2021-04-23", "uri": "https://api.scryfall.com/cards/ffdf9d2a-c163-43df-9a2f-20b8749c86ae", "scryfall_uri": "https://scryfall.com/card/sta/15/counterspell?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/f/f/ffdf9d2a-c163-43df-9a2f-20b8749c86ae.jpg?1631491044", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/f/ffdf9d2a-c163-43df-9a2f-20b8749c86ae.jpg?1631491044", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/f/f/ffdf9d2a-c163-43df-9a2f-20b8749c86ae.jpg?1631491044", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/f/f/ffdf9d2a-c163-43df-9a2f-20b8749c86ae.png?1631491044", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/f/ffdf9d2a-c163-43df-9a2f-20b8749c86ae.jpg?1631491044", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/f/f/ffdf9d2a-c163-43df-9a2f-20b8749c86ae.jpg?1631491044"}, "mana_cost": "{U}{U}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Counter target spell.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "banned", "gladiator": "legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil", "etched"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "5064a720-907f-4cb6-a425-766dc1dd7374", "set": "sta", "set_name": "Strixhaven Mystical Archive", "set_type": "masterpiece", "set_uri": "https://api.scryfall.com/sets/5064a720-907f-4cb6-a425-766dc1dd7374", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Asta&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/sta?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/ffdf9d2a-c163-43df-9a2f-20b8749c86ae/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Acc187110-1148-4090-bbb8-e205694a39f5&unique=prints", "collector_number": "15", "digital": false, "rarity": "rare", "flavor_text": "\"One need not know the specific details of a spell to suppress its effect. Simply rearrange the rules of the reality within which the spell operates.\"\n\u2014Imbraham, Quandrix dean", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Olena Richards", "artist_ids": ["fad4282c-49d1-4b5b-be1d-713369fc8bc8"], "illustration_id": "5fd63e8f-8782-42af-9b43-f4b91cd260cf", "border_color": "borderless", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "edhrec_rank": 17, "penny_rank": 7, "preview": {"source": "Wizards of the Coast", "source_uri": "https://www.twitch.tv/videos/962617661", "previewed_at": "2021-03-26"}, "prices": {"usd": "2.71", "usd_foil": "6.90", "usd_etched": "7.13", "eur": "4.49", "eur_foil": "10.00", "tix": "0.52"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=517565", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Counterspell&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Counterspell&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Counterspell"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/235162?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Counterspell&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/89087?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "3126d20f-1082-4ebc-b2fa-b12be3ba1bac", "oracle_id": "cc187110-1148-4090-bbb8-e205694a39f5", "multiverse_ids": [429869], "mtgo_id": 64374, "mtgo_foil_id": 64375, "tcgplayer_id": 129541, "cardmarket_id": 296598, "name": "Counterspell", "lang": "en", "released_at": "2017-04-28", "uri": "https://api.scryfall.com/cards/3126d20f-1082-4ebc-b2fa-b12be3ba1bac", "scryfall_uri": "https://scryfall.com/card/mp2/10/counterspell?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/3/1/3126d20f-1082-4ebc-b2fa-b12be3ba1bac.jpg?1562904991", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/1/3126d20f-1082-4ebc-b2fa-b12be3ba1bac.jpg?1562904991", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/3/1/3126d20f-1082-4ebc-b2fa-b12be3ba1bac.jpg?1562904991", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/3/1/3126d20f-1082-4ebc-b2fa-b12be3ba1bac.png?1562904991", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/1/3126d20f-1082-4ebc-b2fa-b12be3ba1bac.jpg?1562904991", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/3/1/3126d20f-1082-4ebc-b2fa-b12be3ba1bac.jpg?1562904991"}, "mana_cost": "{U}{U}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Counter target spell.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "banned", "gladiator": "legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": false, "finishes": ["foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "c26402e7-838e-48db-a4b2-7abfc305998a", "set": "mp2", "set_name": "Amonkhet Invocations", "set_type": "masterpiece", "set_uri": "https://api.scryfall.com/sets/c26402e7-838e-48db-a4b2-7abfc305998a", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Amp2&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/mp2?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/3126d20f-1082-4ebc-b2fa-b12be3ba1bac/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Acc187110-1148-4090-bbb8-e205694a39f5&unique=prints", "collector_number": "10", "digital": false, "rarity": "mythic", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Chase Stone", "artist_ids": ["2d753f61-5f5b-468e-97ea-8e0fdd347340"], "illustration_id": "8f331420-5e99-4957-9405-dc6acc36a16b", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 17, "penny_rank": 7, "prices": {"usd": null, "usd_foil": "145.80", "usd_etched": null, "eur": null, "eur_foil": "134.98", "tix": "1.67"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=429869", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Counterspell&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Counterspell&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Counterspell"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/129541?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Counterspell&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/64374?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "7065deea-6117-47d4-9d72-fc67af5bb483", "oracle_id": "cc187110-1148-4090-bbb8-e205694a39f5", "multiverse_ids": [], "tcgplayer_id": 48138, "cardmarket_id": 18989, "name": "Counterspell", "lang": "en", "released_at": "1995-01-01", "uri": "https://api.scryfall.com/cards/7065deea-6117-47d4-9d72-fc67af5bb483", "scryfall_uri": "https://scryfall.com/card/plgm/1/counterspell?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/7/0/7065deea-6117-47d4-9d72-fc67af5bb483.jpg?1561757383", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/0/7065deea-6117-47d4-9d72-fc67af5bb483.jpg?1561757383", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/7/0/7065deea-6117-47d4-9d72-fc67af5bb483.jpg?1561757383", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/7/0/7065deea-6117-47d4-9d72-fc67af5bb483.png?1561757383", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/0/7065deea-6117-47d4-9d72-fc67af5bb483.jpg?1561757383", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/7/0/7065deea-6117-47d4-9d72-fc67af5bb483.jpg?1561757383"}, "mana_cost": "{U}{U}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Counter target spell.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "banned", "gladiator": "legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": true, "reprint": true, "variation": false, "set_id": "5b6a6daa-5a80-435c-a534-fd5dd04c5540", "set": "plgm", "set_name": "DCI Legend Membership", "set_type": "promo", "set_uri": "https://api.scryfall.com/sets/5b6a6daa-5a80-435c-a534-fd5dd04c5540", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aplgm&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/plgm?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/7065deea-6117-47d4-9d72-fc67af5bb483/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Acc187110-1148-4090-bbb8-e205694a39f5&unique=prints", "collector_number": "1", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Dom!", "artist_ids": ["c6521af6-535f-47e1-87cf-a133399164bf"], "illustration_id": "a36cbed8-c500-4814-bf4d-80c065d985c7", "border_color": "black", "frame": "1993", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "promo_types": ["instore"], "edhrec_rank": 17, "penny_rank": 7, "prices": {"usd": "51.22", "usd_foil": null, "usd_etched": null, "eur": "24.00", "eur_foil": null, "tix": null}, "related_uris": {"tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Counterspell&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Counterspell&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Counterspell"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/48138?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Counterspell&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Counterspell&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "2b645d74-420e-45e5-aa82-ba3a8dfdd9a0", "oracle_id": "6df620b8-1e54-4f63-8556-12c75e5679af", "multiverse_ids": [249406], "mtgo_id": 42178, "mtgo_foil_id": 42179, "tcgplayer_id": 52131, "cardmarket_id": 250471, "name": "Countersquall", "lang": "en", "released_at": "2011-09-02", "uri": "https://api.scryfall.com/cards/2b645d74-420e-45e5-aa82-ba3a8dfdd9a0", "scryfall_uri": "https://scryfall.com/card/ddh/59/countersquall?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/2/b/2b645d74-420e-45e5-aa82-ba3a8dfdd9a0.jpg?1562905206", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/b/2b645d74-420e-45e5-aa82-ba3a8dfdd9a0.jpg?1562905206", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/2/b/2b645d74-420e-45e5-aa82-ba3a8dfdd9a0.jpg?1562905206", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/2/b/2b645d74-420e-45e5-aa82-ba3a8dfdd9a0.png?1562905206", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/b/2b645d74-420e-45e5-aa82-ba3a8dfdd9a0.jpg?1562905206", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/2/b/2b645d74-420e-45e5-aa82-ba3a8dfdd9a0.jpg?1562905206"}, "mana_cost": "{U}{B}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Counter target noncreature spell. Its controller loses 2 life.", "colors": ["B", "U"], "color_identity": ["B", "U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "bad1fe7e-27df-4999-821b-d477c2ec658d", "set": "ddh", "set_name": "Duel Decks: Ajani vs. Nicol Bolas", "set_type": "duel_deck", "set_uri": "https://api.scryfall.com/sets/bad1fe7e-27df-4999-821b-d477c2ec658d", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Addh&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ddh?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/2b645d74-420e-45e5-aa82-ba3a8dfdd9a0/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A6df620b8-1e54-4f63-8556-12c75e5679af&unique=prints", "collector_number": "59", "digital": false, "rarity": "uncommon", "flavor_text": "\"The essence of every world, every spell, and every thought is power. Nothing else matters, because nothing else exists.\"\n\u2014Nicol Bolas", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Anthony Francisco", "artist_ids": ["6ac24c4b-70e9-4286-8f4b-b40c92ab5847"], "illustration_id": "ab016df1-94df-42ce-ba75-840dee65cb28", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "edhrec_rank": 1972, "penny_rank": 2472, "prices": {"usd": "1.24", "usd_foil": null, "usd_etched": null, "eur": "0.98", "eur_foil": null, "tix": "0.06"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=249406", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Countersquall&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Countersquall&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Countersquall"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/52131?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Countersquall&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/42178?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "ec16e216-95e1-41f7-87e0-78b6ac3fe1df", "oracle_id": "6df620b8-1e54-4f63-8556-12c75e5679af", "multiverse_ids": [186327], "mtgo_id": 31897, "mtgo_foil_id": 31898, "tcgplayer_id": 28517, "cardmarket_id": 20746, "name": "Countersquall", "lang": "en", "released_at": "2009-02-06", "uri": "https://api.scryfall.com/cards/ec16e216-95e1-41f7-87e0-78b6ac3fe1df", "scryfall_uri": "https://scryfall.com/card/con/103/countersquall?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/e/c/ec16e216-95e1-41f7-87e0-78b6ac3fe1df.jpg?1562804491", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/c/ec16e216-95e1-41f7-87e0-78b6ac3fe1df.jpg?1562804491", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/e/c/ec16e216-95e1-41f7-87e0-78b6ac3fe1df.jpg?1562804491", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/e/c/ec16e216-95e1-41f7-87e0-78b6ac3fe1df.png?1562804491", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/c/ec16e216-95e1-41f7-87e0-78b6ac3fe1df.jpg?1562804491", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/e/c/ec16e216-95e1-41f7-87e0-78b6ac3fe1df.jpg?1562804491"}, "mana_cost": "{U}{B}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Counter target noncreature spell. Its controller loses 2 life.", "colors": ["B", "U"], "color_identity": ["B", "U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "76b2db58-904c-4e49-8580-9f62f7b3cca4", "set": "con", "set_name": "Conflux", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/76b2db58-904c-4e49-8580-9f62f7b3cca4", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Acon&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/con?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/ec16e216-95e1-41f7-87e0-78b6ac3fe1df/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A6df620b8-1e54-4f63-8556-12c75e5679af&unique=prints", "collector_number": "103", "digital": false, "rarity": "uncommon", "flavor_text": "Each of the twenty-three winds of Esper is named and chronicled, and every possible interaction with the flow of magic is exhaustively detailed.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Anthony Francisco", "artist_ids": ["6ac24c4b-70e9-4286-8f4b-b40c92ab5847"], "illustration_id": "8f5183d4-1623-4a64-9709-8738c307331f", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 1972, "penny_rank": 2472, "prices": {"usd": "1.22", "usd_foil": "3.37", "usd_etched": null, "eur": "0.20", "eur_foil": "2.25", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=186327", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Countersquall&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Countersquall&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Countersquall"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/28517?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Countersquall&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/31897?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "de1c0ef3-b32c-403a-93cb-29cf05795711", "oracle_id": "2c51e20b-07b2-4c96-8d73-87379aafbc7c", "multiverse_ids": [430721], "mtgo_id": 64548, "mtgo_foil_id": 64549, "tcgplayer_id": 136680, "cardmarket_id": 298817, "name": "Countervailing Winds", "lang": "en", "released_at": "2017-07-14", "uri": "https://api.scryfall.com/cards/de1c0ef3-b32c-403a-93cb-29cf05795711", "scryfall_uri": "https://scryfall.com/card/hou/32/countervailing-winds?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/d/e/de1c0ef3-b32c-403a-93cb-29cf05795711.jpg?1562817497", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/e/de1c0ef3-b32c-403a-93cb-29cf05795711.jpg?1562817497", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/d/e/de1c0ef3-b32c-403a-93cb-29cf05795711.jpg?1562817497", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/d/e/de1c0ef3-b32c-403a-93cb-29cf05795711.png?1562817497", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/e/de1c0ef3-b32c-403a-93cb-29cf05795711.jpg?1562817497", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/d/e/de1c0ef3-b32c-403a-93cb-29cf05795711.jpg?1562817497"}, "mana_cost": "{2}{U}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Counter target spell unless its controller pays {1} for each card in your graveyard.\nCycling {2} ({2}, Discard this card: Draw a card.)", "colors": ["U"], "color_identity": ["U"], "keywords": ["Cycling"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "65ff168b-bb94-47a5-a8f9-4ec6c213e768", "set": "hou", "set_name": "Hour of Devastation", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/65ff168b-bb94-47a5-a8f9-4ec6c213e768", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ahou&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/hou?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/de1c0ef3-b32c-403a-93cb-29cf05795711/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A2c51e20b-07b2-4c96-8d73-87379aafbc7c&unique=prints", "collector_number": "32", "digital": false, "rarity": "common", "flavor_text": "The Eternals had long since mastered every technique taught during the trials.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Tyler Jacobson", "artist_ids": ["522af130-8db4-4b4b-950c-6e2b246339cf"], "illustration_id": "25494ab3-0a84-4d95-94db-463f6ea3d3cd", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 4701, "penny_rank": 2260, "prices": {"usd": "0.22", "usd_foil": "0.63", "usd_etched": null, "eur": "0.10", "eur_foil": "0.49", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=430721", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Countervailing+Winds&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Countervailing+Winds&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Countervailing+Winds"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/136680?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Countervailing+Winds&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/64548?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "94c70f23-0ca9-425e-a53a-6c09921c0075", "oracle_id": "3ece897d-5b52-4fca-9f97-d7e864134c0b", "multiverse_ids": [460974], "mtgo_id": 71700, "arena_id": 69498, "tcgplayer_id": 187176, "cardmarket_id": 371827, "name": "Crush Dissent", "lang": "en", "released_at": "2019-05-03", "uri": "https://api.scryfall.com/cards/94c70f23-0ca9-425e-a53a-6c09921c0075", "scryfall_uri": "https://scryfall.com/card/war/47/crush-dissent?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/9/4/94c70f23-0ca9-425e-a53a-6c09921c0075.jpg?1557576187", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/4/94c70f23-0ca9-425e-a53a-6c09921c0075.jpg?1557576187", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/9/4/94c70f23-0ca9-425e-a53a-6c09921c0075.jpg?1557576187", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/9/4/94c70f23-0ca9-425e-a53a-6c09921c0075.png?1557576187", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/4/94c70f23-0ca9-425e-a53a-6c09921c0075.jpg?1557576187", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/9/4/94c70f23-0ca9-425e-a53a-6c09921c0075.jpg?1557576187"}, "mana_cost": "{3}{U}", "cmc": 4.0, "type_line": "Instant", "oracle_text": "Counter target spell unless its controller pays {2}.\nAmass 2. (Put two +1/+1 counters on an Army you control. If you don't control one, create a 0/0 black Zombie Army creature token first.)", "colors": ["U"], "color_identity": ["U"], "keywords": ["Amass"], "all_parts": [{"object": "related_card", "id": "94c70f23-0ca9-425e-a53a-6c09921c0075", "component": "combo_piece", "name": "Crush Dissent", "type_line": "Instant", "uri": "https://api.scryfall.com/cards/94c70f23-0ca9-425e-a53a-6c09921c0075"}, {"object": "related_card", "id": "2f4b7c63-8430-4ca4-baee-dc958d5bd22f", "component": "token", "name": "Zombie Army", "type_line": "Token Creature \u2014 Zombie Army", "uri": "https://api.scryfall.com/cards/2f4b7c63-8430-4ca4-baee-dc958d5bd22f"}], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "ee044f0b-e101-4ead-8d0e-aa510aad4277", "set": "war", "set_name": "War of the Spark", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/ee044f0b-e101-4ead-8d0e-aa510aad4277", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Awar&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/war?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/94c70f23-0ca9-425e-a53a-6c09921c0075/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A3ece897d-5b52-4fca-9f97-d7e864134c0b&unique=prints", "collector_number": "47", "digital": false, "rarity": "common", "flavor_text": "\"All I ask is complete obedience.\"\n\u2014Nicol Bolas", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Mike Bierek", "artist_ids": ["e5f52ef5-1a2e-4128-90b0-ccc71cd47ea7"], "illustration_id": "1c4339de-7539-4a34-92f6-d54dfe921c5e", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 11417, "preview": {"source": "Limited Resources", "source_uri": "https://www.patreon.com/posts/official-war-of-25772567", "previewed_at": "2019-04-01"}, "prices": {"usd": "0.03", "usd_foil": "0.23", "usd_etched": null, "eur": "0.05", "eur_foil": "0.13", "tix": "0.04"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=460974", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Crush+Dissent&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Crush+Dissent&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Crush+Dissent"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/187176?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Crush+Dissent&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/71700?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "30f6fca9-003b-4f6b-9d6e-1e88adda4155", "oracle_id": "a3e51a35-09df-4189-b131-08a21e6a557d", "multiverse_ids": [438614], "mtgo_id": 65975, "mtgo_foil_id": 65976, "tcgplayer_id": 145338, "cardmarket_id": 301437, "name": "Cryptic Command", "lang": "en", "released_at": "2017-11-17", "uri": "https://api.scryfall.com/cards/30f6fca9-003b-4f6b-9d6e-1e88adda4155", "scryfall_uri": "https://scryfall.com/card/ima/48/cryptic-command?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/3/0/30f6fca9-003b-4f6b-9d6e-1e88adda4155.jpg?1562847413", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/0/30f6fca9-003b-4f6b-9d6e-1e88adda4155.jpg?1562847413", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/3/0/30f6fca9-003b-4f6b-9d6e-1e88adda4155.jpg?1562847413", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/3/0/30f6fca9-003b-4f6b-9d6e-1e88adda4155.png?1562847413", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/0/30f6fca9-003b-4f6b-9d6e-1e88adda4155.jpg?1562847413", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/3/0/30f6fca9-003b-4f6b-9d6e-1e88adda4155.jpg?1562847413"}, "mana_cost": "{1}{U}{U}{U}", "cmc": 4.0, "type_line": "Instant", "oracle_text": "Choose two \u2014\n\u2022 Counter target spell.\n\u2022 Return target permanent to its owner's hand.\n\u2022 Tap all creatures your opponents control.\n\u2022 Draw a card.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "741bcd30-7709-4133-8919-f4b46483bed7", "set": "ima", "set_name": "Iconic Masters", "set_type": "masters", "set_uri": "https://api.scryfall.com/sets/741bcd30-7709-4133-8919-f4b46483bed7", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aima&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ima?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/30f6fca9-003b-4f6b-9d6e-1e88adda4155/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aa3e51a35-09df-4189-b131-08a21e6a557d&unique=prints", "collector_number": "48", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Jason Rainville", "artist_ids": ["6ed7e669-579b-443d-b223-e5cbcb2a7483"], "illustration_id": "252862e5-49a9-4922-b445-70621d4de6f2", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 1276, "prices": {"usd": "11.69", "usd_foil": "16.82", "usd_etched": null, "eur": "10.00", "eur_foil": "14.99", "tix": "0.86"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=438614", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Cryptic+Command&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Cryptic+Command&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Cryptic+Command"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/145338?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Cryptic+Command&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/65975?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "829e3d6e-5d7c-4cc4-a7a6-7cbf5a7442ba", "oracle_id": "a3e51a35-09df-4189-b131-08a21e6a557d", "multiverse_ids": [141819], "mtgo_id": 28499, "mtgo_foil_id": 28500, "tcgplayer_id": 15456, "cardmarket_id": 17797, "name": "Cryptic Command", "lang": "en", "released_at": "2007-10-12", "uri": "https://api.scryfall.com/cards/829e3d6e-5d7c-4cc4-a7a6-7cbf5a7442ba", "scryfall_uri": "https://scryfall.com/card/lrw/56/cryptic-command?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/8/2/829e3d6e-5d7c-4cc4-a7a6-7cbf5a7442ba.jpg?1562355759", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/2/829e3d6e-5d7c-4cc4-a7a6-7cbf5a7442ba.jpg?1562355759", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/8/2/829e3d6e-5d7c-4cc4-a7a6-7cbf5a7442ba.jpg?1562355759", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/8/2/829e3d6e-5d7c-4cc4-a7a6-7cbf5a7442ba.png?1562355759", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/2/829e3d6e-5d7c-4cc4-a7a6-7cbf5a7442ba.jpg?1562355759", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/8/2/829e3d6e-5d7c-4cc4-a7a6-7cbf5a7442ba.jpg?1562355759"}, "mana_cost": "{1}{U}{U}{U}", "cmc": 4.0, "type_line": "Instant", "oracle_text": "Choose two \u2014\n\u2022 Counter target spell.\n\u2022 Return target permanent to its owner's hand.\n\u2022 Tap all creatures your opponents control.\n\u2022 Draw a card.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "30ec97cb-dca9-4bf4-a98b-310f9d8ceaff", "set": "lrw", "set_name": "Lorwyn", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/30ec97cb-dca9-4bf4-a98b-310f9d8ceaff", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Alrw&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/lrw?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/829e3d6e-5d7c-4cc4-a7a6-7cbf5a7442ba/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aa3e51a35-09df-4189-b131-08a21e6a557d&unique=prints", "collector_number": "56", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Wayne England", "artist_ids": ["62dc90c0-4bc2-4d42-ad76-59cad9243566"], "illustration_id": "35666314-b7f5-4081-b9f0-ed0aa38b183d", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 1276, "prices": {"usd": "22.97", "usd_foil": "61.10", "usd_etched": null, "eur": "11.89", "eur_foil": "32.99", "tix": "0.58"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=141819", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Cryptic+Command&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Cryptic+Command&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Cryptic+Command"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/15456?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Cryptic+Command&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/28499?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "a2a384c1-a05f-4f00-bd77-f897d9819971", "oracle_id": "a3e51a35-09df-4189-b131-08a21e6a557d", "multiverse_ids": [429870], "mtgo_id": 64376, "mtgo_foil_id": 64377, "tcgplayer_id": 129542, "cardmarket_id": 296605, "name": "Cryptic Command", "lang": "en", "released_at": "2017-04-28", "uri": "https://api.scryfall.com/cards/a2a384c1-a05f-4f00-bd77-f897d9819971", "scryfall_uri": "https://scryfall.com/card/mp2/11/cryptic-command?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/a/2/a2a384c1-a05f-4f00-bd77-f897d9819971.jpg?1562927862", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/2/a2a384c1-a05f-4f00-bd77-f897d9819971.jpg?1562927862", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/a/2/a2a384c1-a05f-4f00-bd77-f897d9819971.jpg?1562927862", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/a/2/a2a384c1-a05f-4f00-bd77-f897d9819971.png?1562927862", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/2/a2a384c1-a05f-4f00-bd77-f897d9819971.jpg?1562927862", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/a/2/a2a384c1-a05f-4f00-bd77-f897d9819971.jpg?1562927862"}, "mana_cost": "{1}{U}{U}{U}", "cmc": 4.0, "type_line": "Instant", "oracle_text": "Choose two \u2014\n\u2022 Counter target spell.\n\u2022 Return target permanent to its owner's hand.\n\u2022 Tap all creatures your opponents control.\n\u2022 Draw a card.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": false, "finishes": ["foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "c26402e7-838e-48db-a4b2-7abfc305998a", "set": "mp2", "set_name": "Amonkhet Invocations", "set_type": "masterpiece", "set_uri": "https://api.scryfall.com/sets/c26402e7-838e-48db-a4b2-7abfc305998a", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Amp2&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/mp2?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/a2a384c1-a05f-4f00-bd77-f897d9819971/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aa3e51a35-09df-4189-b131-08a21e6a557d&unique=prints", "collector_number": "11", "digital": false, "rarity": "mythic", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Richard Wright", "artist_ids": ["7b1b0ce9-2c58-4321-a2a7-cdc94feae082"], "illustration_id": "3a9ad863-636d-4b9c-bb75-784a0da7b890", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 1276, "prices": {"usd": null, "usd_foil": "89.15", "usd_etched": null, "eur": null, "eur_foil": "78.74", "tix": "0.60"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=429870", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Cryptic+Command&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Cryptic+Command&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Cryptic+Command"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/129542?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Cryptic+Command&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/64376?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "526607e9-1907-4639-b944-8ee152c81bfb", "oracle_id": "a3e51a35-09df-4189-b131-08a21e6a557d", "multiverse_ids": [], "tcgplayer_id": 38303, "cardmarket_id": 19966, "name": "Cryptic Command", "lang": "en", "released_at": "2009-01-01", "uri": "https://api.scryfall.com/cards/526607e9-1907-4639-b944-8ee152c81bfb", "scryfall_uri": "https://scryfall.com/card/p09/1/cryptic-command?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/5/2/526607e9-1907-4639-b944-8ee152c81bfb.jpg?1561757137", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/2/526607e9-1907-4639-b944-8ee152c81bfb.jpg?1561757137", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/5/2/526607e9-1907-4639-b944-8ee152c81bfb.jpg?1561757137", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/5/2/526607e9-1907-4639-b944-8ee152c81bfb.png?1561757137", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/2/526607e9-1907-4639-b944-8ee152c81bfb.jpg?1561757137", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/5/2/526607e9-1907-4639-b944-8ee152c81bfb.jpg?1561757137"}, "mana_cost": "{1}{U}{U}{U}", "cmc": 4.0, "type_line": "Instant", "oracle_text": "Choose two \u2014\n\u2022 Counter target spell.\n\u2022 Return target permanent to its owner's hand.\n\u2022 Tap all creatures your opponents control.\n\u2022 Draw a card.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": true, "nonfoil": false, "finishes": ["foil"], "oversized": false, "promo": true, "reprint": true, "variation": false, "set_id": "824eec08-e609-41db-8de4-4e58d8aeb37d", "set": "p09", "set_name": "Magic Player Rewards 2009", "set_type": "promo", "set_uri": "https://api.scryfall.com/sets/824eec08-e609-41db-8de4-4e58d8aeb37d", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ap09&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/p09?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/526607e9-1907-4639-b944-8ee152c81bfb/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aa3e51a35-09df-4189-b131-08a21e6a557d&unique=prints", "collector_number": "1", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Wayne England", "artist_ids": ["62dc90c0-4bc2-4d42-ad76-59cad9243566"], "illustration_id": "7767515b-7087-4d1c-839c-ff9b289aea64", "border_color": "black", "frame": "2003", "full_art": true, "textless": true, "booster": false, "story_spotlight": false, "promo_types": ["playerrewards"], "edhrec_rank": 1276, "prices": {"usd": null, "usd_foil": "51.95", "usd_etched": null, "eur": null, "eur_foil": "18.50", "tix": null}, "related_uris": {"tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Cryptic+Command&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Cryptic+Command&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Cryptic+Command"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/38303?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Cryptic+Command&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Cryptic+Command&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "814bcfc0-7539-4ed9-8b51-27e6a3ab9d9a", "oracle_id": "6a4ace6b-ef3a-4d11-89d7-958f98dcc445", "multiverse_ids": [126812], "mtgo_id": 26549, "mtgo_foil_id": 26550, "tcgplayer_id": 14705, "cardmarket_id": 14247, "name": "Dash Hopes", "lang": "en", "released_at": "2007-02-02", "uri": "https://api.scryfall.com/cards/814bcfc0-7539-4ed9-8b51-27e6a3ab9d9a", "scryfall_uri": "https://scryfall.com/card/plc/68/dash-hopes?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/8/1/814bcfc0-7539-4ed9-8b51-27e6a3ab9d9a.jpg?1562575740", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/1/814bcfc0-7539-4ed9-8b51-27e6a3ab9d9a.jpg?1562575740", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/8/1/814bcfc0-7539-4ed9-8b51-27e6a3ab9d9a.jpg?1562575740", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/8/1/814bcfc0-7539-4ed9-8b51-27e6a3ab9d9a.png?1562575740", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/1/814bcfc0-7539-4ed9-8b51-27e6a3ab9d9a.jpg?1562575740", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/8/1/814bcfc0-7539-4ed9-8b51-27e6a3ab9d9a.jpg?1562575740"}, "mana_cost": "{B}{B}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "When you cast this spell, any player may pay 5 life. If a player does, counter Dash Hopes.\nCounter target spell.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "5a1b571c-73e9-4c14-b9d4-a62507d85789", "set": "plc", "set_name": "Planar Chaos", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/5a1b571c-73e9-4c14-b9d4-a62507d85789", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aplc&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/plc?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/814bcfc0-7539-4ed9-8b51-27e6a3ab9d9a/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A6a4ace6b-ef3a-4d11-89d7-958f98dcc445&unique=prints", "collector_number": "68", "digital": false, "rarity": "common", "flavor_text": "\"Focus an enemy's mind on what's already gone, and it's easier to take away more.\"\n\u2014Holux, stronghold racketeer", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Zoltan Boros & Gabor Szikszai", "artist_ids": ["1885e6cb-c827-4896-994e-3d0a027d602f", "44c3877f-8771-43dc-9e40-f4c765f59d2e"], "illustration_id": "1e830e44-8b95-493b-a947-27818b00b3bf", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 9382, "penny_rank": 6350, "prices": {"usd": "0.54", "usd_foil": "9.60", "usd_etched": null, "eur": "0.20", "eur_foil": "4.23", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=126812", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Dash+Hopes&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Dash+Hopes&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Dash+Hopes"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/14705?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Dash+Hopes&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/26549?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "a4c9667b-1d94-42eb-ae8e-1ae4755e200a", "oracle_id": "a8f5cfa7-4956-4182-8e44-acf3493239f0", "multiverse_ids": [124080], "mtgo_id": 26343, "mtgo_foil_id": 26344, "tcgplayer_id": 14706, "cardmarket_id": 14183, "name": "Dawn Charm", "lang": "en", "released_at": "2007-02-02", "uri": "https://api.scryfall.com/cards/a4c9667b-1d94-42eb-ae8e-1ae4755e200a", "scryfall_uri": "https://scryfall.com/card/plc/4/dawn-charm?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/a/4/a4c9667b-1d94-42eb-ae8e-1ae4755e200a.jpg?1562578420", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/4/a4c9667b-1d94-42eb-ae8e-1ae4755e200a.jpg?1562578420", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/a/4/a4c9667b-1d94-42eb-ae8e-1ae4755e200a.jpg?1562578420", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/a/4/a4c9667b-1d94-42eb-ae8e-1ae4755e200a.png?1562578420", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/4/a4c9667b-1d94-42eb-ae8e-1ae4755e200a.jpg?1562578420", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/a/4/a4c9667b-1d94-42eb-ae8e-1ae4755e200a.jpg?1562578420"}, "mana_cost": "{1}{W}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Choose one \u2014\n\u2022 Prevent all combat damage that would be dealt this turn.\n\u2022 Regenerate target creature.\n\u2022 Counter target spell that targets you.", "colors": ["W"], "color_identity": ["W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "5a1b571c-73e9-4c14-b9d4-a62507d85789", "set": "plc", "set_name": "Planar Chaos", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/5a1b571c-73e9-4c14-b9d4-a62507d85789", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aplc&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/plc?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/a4c9667b-1d94-42eb-ae8e-1ae4755e200a/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aa8f5cfa7-4956-4182-8e44-acf3493239f0&unique=prints", "collector_number": "4", "digital": false, "rarity": "common", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "John Avon", "artist_ids": ["798f3932-30e0-4420-aa3f-db4d613f89ca"], "illustration_id": "7a6e9d8f-3669-42ce-b197-d96e7b9840e9", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 1677, "penny_rank": 2702, "prices": {"usd": "0.29", "usd_foil": "7.72", "usd_etched": null, "eur": "0.13", "eur_foil": "1.75", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=124080", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Dawn+Charm&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Dawn+Charm&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Dawn+Charm"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/14706?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Dawn+Charm&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/26343?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "f05e9a3e-8a35-4687-85cb-e31b3927a5e2", "oracle_id": "70486bee-6ee7-41ea-b834-8caf4699302b", "multiverse_ids": [413586], "mtgo_id": 60897, "mtgo_foil_id": 60898, "tcgplayer_id": 118406, "cardmarket_id": 290130, "name": "Daze", "lang": "en", "released_at": "2016-06-10", "uri": "https://api.scryfall.com/cards/f05e9a3e-8a35-4687-85cb-e31b3927a5e2", "scryfall_uri": "https://scryfall.com/card/ema/44/daze?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/f/0/f05e9a3e-8a35-4687-85cb-e31b3927a5e2.jpg?1580013916", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/0/f05e9a3e-8a35-4687-85cb-e31b3927a5e2.jpg?1580013916", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/f/0/f05e9a3e-8a35-4687-85cb-e31b3927a5e2.jpg?1580013916", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/f/0/f05e9a3e-8a35-4687-85cb-e31b3927a5e2.png?1580013916", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/0/f05e9a3e-8a35-4687-85cb-e31b3927a5e2.jpg?1580013916", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/f/0/f05e9a3e-8a35-4687-85cb-e31b3927a5e2.jpg?1580013916"}, "mana_cost": "{1}{U}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "You may return an Island you control to its owner's hand rather than pay this spell's mana cost.\nCounter target spell unless its controller pays {1}.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "banned", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "1f29f022-3ace-4c96-85e8-1f7b63aadf7e", "set": "ema", "set_name": "Eternal Masters", "set_type": "masters", "set_uri": "https://api.scryfall.com/sets/1f29f022-3ace-4c96-85e8-1f7b63aadf7e", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aema&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ema?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/f05e9a3e-8a35-4687-85cb-e31b3927a5e2/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A70486bee-6ee7-41ea-b834-8caf4699302b&unique=prints", "collector_number": "44", "digital": false, "rarity": "uncommon", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Min Yum", "artist_ids": ["9cb65d6f-8851-4d56-9add-9eefa274bd1b"], "illustration_id": "d81b9c1c-f267-4008-acaf-9f1b4dbd261b", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 5017, "prices": {"usd": "0.91", "usd_foil": "8.03", "usd_etched": null, "eur": "1.48", "eur_foil": "6.10", "tix": "4.78"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=413586", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Daze&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Daze&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Daze"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/118406?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Daze&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/60897?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "d03bff25-0d5e-4dcf-8d75-6df846afea3b", "oracle_id": "70486bee-6ee7-41ea-b834-8caf4699302b", "multiverse_ids": [21284], "mtgo_id": 14009, "mtgo_foil_id": 14010, "tcgplayer_id": 7142, "cardmarket_id": 11753, "name": "Daze", "lang": "en", "released_at": "2000-02-14", "uri": "https://api.scryfall.com/cards/d03bff25-0d5e-4dcf-8d75-6df846afea3b", "scryfall_uri": "https://scryfall.com/card/nem/30/daze?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/d/0/d03bff25-0d5e-4dcf-8d75-6df846afea3b.jpg?1562632115", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/0/d03bff25-0d5e-4dcf-8d75-6df846afea3b.jpg?1562632115", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/d/0/d03bff25-0d5e-4dcf-8d75-6df846afea3b.jpg?1562632115", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/d/0/d03bff25-0d5e-4dcf-8d75-6df846afea3b.png?1562632115", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/0/d03bff25-0d5e-4dcf-8d75-6df846afea3b.jpg?1562632115", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/d/0/d03bff25-0d5e-4dcf-8d75-6df846afea3b.jpg?1562632115"}, "mana_cost": "{1}{U}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "You may return an Island you control to its owner's hand rather than pay this spell's mana cost.\nCounter target spell unless its controller pays {1}.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "banned", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "fa5d1fdb-f781-473d-b14d-50396d40d43f", "set": "nem", "set_name": "Nemesis", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/fa5d1fdb-f781-473d-b14d-50396d40d43f", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Anem&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/nem?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/d03bff25-0d5e-4dcf-8d75-6df846afea3b/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A70486bee-6ee7-41ea-b834-8caf4699302b&unique=prints", "collector_number": "30", "digital": false, "rarity": "common", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Matthew D. Wilson", "artist_ids": ["4fbafd13-0cf9-42a1-870d-7f8ea276f140"], "illustration_id": "21b6e013-76bc-4d05-ab07-a4c0fc1e3f5d", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 5017, "prices": {"usd": "0.95", "usd_foil": "175.54", "usd_etched": null, "eur": "1.31", "eur_foil": "180.00", "tix": "6.31"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=21284", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Daze&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Daze&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Daze"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/7142?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Daze&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/14009?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "a9b037f1-3298-4ba8-92a8-0843f6e497d7", "oracle_id": "70486bee-6ee7-41ea-b834-8caf4699302b", "multiverse_ids": [429871], "mtgo_id": 64378, "mtgo_foil_id": 64379, "tcgplayer_id": 129544, "cardmarket_id": 296590, "name": "Daze", "lang": "en", "released_at": "2017-04-28", "uri": "https://api.scryfall.com/cards/a9b037f1-3298-4ba8-92a8-0843f6e497d7", "scryfall_uri": "https://scryfall.com/card/mp2/12/daze?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/a/9/a9b037f1-3298-4ba8-92a8-0843f6e497d7.jpg?1562929191", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/9/a9b037f1-3298-4ba8-92a8-0843f6e497d7.jpg?1562929191", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/a/9/a9b037f1-3298-4ba8-92a8-0843f6e497d7.jpg?1562929191", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/a/9/a9b037f1-3298-4ba8-92a8-0843f6e497d7.png?1562929191", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/9/a9b037f1-3298-4ba8-92a8-0843f6e497d7.jpg?1562929191", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/a/9/a9b037f1-3298-4ba8-92a8-0843f6e497d7.jpg?1562929191"}, "mana_cost": "{1}{U}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "You may return an Island you control to its owner's hand rather than pay this spell's mana cost.\nCounter target spell unless its controller pays {1}.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "banned", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": false, "finishes": ["foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "c26402e7-838e-48db-a4b2-7abfc305998a", "set": "mp2", "set_name": "Amonkhet Invocations", "set_type": "masterpiece", "set_uri": "https://api.scryfall.com/sets/c26402e7-838e-48db-a4b2-7abfc305998a", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Amp2&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/mp2?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/a9b037f1-3298-4ba8-92a8-0843f6e497d7/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A70486bee-6ee7-41ea-b834-8caf4699302b&unique=prints", "collector_number": "12", "digital": false, "rarity": "mythic", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Richard Wright", "artist_ids": ["7b1b0ce9-2c58-4321-a2a7-cdc94feae082"], "illustration_id": "3010236f-9234-446f-bcb2-9ea5144ac05b", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 5017, "prices": {"usd": null, "usd_foil": "126.97", "usd_etched": null, "eur": null, "eur_foil": "139.00", "tix": "6.55"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=429871", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Daze&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Daze&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Daze"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/129544?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Daze&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/64378?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "b2e9d132-95f7-4ee7-9c91-be19e4ad7a5d", "oracle_id": "2d0bd780-b754-44a3-894c-a9c8aa711f05", "multiverse_ids": [513669], "mtgo_id": 88861, "arena_id": 76585, "tcgplayer_id": 235920, "cardmarket_id": 557995, "name": "Decisive Denial", "lang": "en", "released_at": "2021-04-23", "uri": "https://api.scryfall.com/cards/b2e9d132-95f7-4ee7-9c91-be19e4ad7a5d", "scryfall_uri": "https://scryfall.com/card/stx/177/decisive-denial?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/b/2/b2e9d132-95f7-4ee7-9c91-be19e4ad7a5d.jpg?1627428577", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/2/b2e9d132-95f7-4ee7-9c91-be19e4ad7a5d.jpg?1627428577", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/b/2/b2e9d132-95f7-4ee7-9c91-be19e4ad7a5d.jpg?1627428577", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/b/2/b2e9d132-95f7-4ee7-9c91-be19e4ad7a5d.png?1627428577", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/2/b2e9d132-95f7-4ee7-9c91-be19e4ad7a5d.jpg?1627428577", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/b/2/b2e9d132-95f7-4ee7-9c91-be19e4ad7a5d.jpg?1627428577"}, "mana_cost": "{G}{U}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Choose one \u2014\n\u2022 Target creature you control fights target creature you don't control. (Each deals damage equal to its power to the other.)\n\u2022 Counter target noncreature spell unless its controller pays {3}.", "colors": ["G", "U"], "color_identity": ["G", "U"], "keywords": ["Fight"], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "541c3c28-8747-40e5-a231-8e8f33234859", "set": "stx", "set_name": "Strixhaven: School of Mages", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/541c3c28-8747-40e5-a231-8e8f33234859", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Astx&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/stx?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/b2e9d132-95f7-4ee7-9c91-be19e4ad7a5d/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A2d0bd780-b754-44a3-894c-a9c8aa711f05&unique=prints", "collector_number": "177", "digital": false, "rarity": "uncommon", "watermark": "quandrix", "flavor_text": "\"I've heard enough.\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Lorenzo Mastroianni", "artist_ids": ["70213e7d-47e0-4543-a1ae-451009053e2d"], "illustration_id": "a17e3613-16f8-4f90-a4aa-89753acea670", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 4247, "penny_rank": 1335, "preview": {"source": "Markus Heitz", "source_uri": "https://m.facebook.com/photo.php?fbid=282700626652354&id=100047372551277&set=a.243830503872700", "previewed_at": "2021-03-31"}, "prices": {"usd": "0.13", "usd_foil": "0.15", "usd_etched": null, "eur": "0.19", "eur_foil": "0.40", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=513669", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Decisive+Denial&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Decisive+Denial&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Decisive+Denial"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/235920?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Decisive+Denial&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/88861?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "3906d538-f1ca-4799-b91c-2e0d2934f241", "oracle_id": "983caa3f-7089-4e66-825d-4086a5adb9bb", "multiverse_ids": [509426], "mtgo_id": 86485, "tcgplayer_id": 233519, "cardmarket_id": 542851, "name": "Delay", "lang": "en", "released_at": "2021-03-19", "uri": "https://api.scryfall.com/cards/3906d538-f1ca-4799-b91c-2e0d2934f241", "scryfall_uri": "https://scryfall.com/card/tsr/61/delay?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/3/9/3906d538-f1ca-4799-b91c-2e0d2934f241.jpg?1619393997", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/9/3906d538-f1ca-4799-b91c-2e0d2934f241.jpg?1619393997", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/3/9/3906d538-f1ca-4799-b91c-2e0d2934f241.jpg?1619393997", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/3/9/3906d538-f1ca-4799-b91c-2e0d2934f241.png?1619393997", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/9/3906d538-f1ca-4799-b91c-2e0d2934f241.jpg?1619393997", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/3/9/3906d538-f1ca-4799-b91c-2e0d2934f241.jpg?1619393997"}, "mana_cost": "{1}{U}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Counter target spell. If the spell is countered this way, exile it with three time counters on it instead of putting it into its owner's graveyard. If it doesn't have suspend, it gains suspend. (At the beginning of its owner's upkeep, remove a time counter from that card. When the last is removed, the player plays it without paying its mana cost. If it's a creature, it has haste.)", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "11e90d1b-0502-43e6-b056-e24836523c13", "set": "tsr", "set_name": "Time Spiral Remastered", "set_type": "masters", "set_uri": "https://api.scryfall.com/sets/11e90d1b-0502-43e6-b056-e24836523c13", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Atsr&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/tsr?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/3906d538-f1ca-4799-b91c-2e0d2934f241/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A983caa3f-7089-4e66-825d-4086a5adb9bb&unique=prints", "collector_number": "61", "digital": false, "rarity": "uncommon", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Svetlin Velinov", "artist_ids": ["ffd063ae-c097-4f26-b2e6-b1e2137708bc"], "illustration_id": "9a2afc82-9988-48bc-8ea3-a389a96cedbe", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 579, "penny_rank": 4498, "preview": {"source": "Numerama", "source_uri": "https://www.numerama.com/pop-culture/689124-spirale-temporelle-remastered-3-cartes-exclusives-de-la-prochaine-extension-de-magic.html", "previewed_at": "2021-02-26"}, "prices": {"usd": "1.34", "usd_foil": "5.16", "usd_etched": null, "eur": "0.48", "eur_foil": "2.00", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=509426", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Delay&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Delay&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Delay"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/233519?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Delay&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/86485?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "e821d337-4bc5-4401-ac9b-34adf4012b73", "oracle_id": "983caa3f-7089-4e66-825d-4086a5adb9bb", "multiverse_ids": [132228], "mtgo_id": 26952, "mtgo_foil_id": 26953, "tcgplayer_id": 14876, "cardmarket_id": 15027, "name": "Delay", "lang": "en", "released_at": "2007-05-04", "uri": "https://api.scryfall.com/cards/e821d337-4bc5-4401-ac9b-34adf4012b73", "scryfall_uri": "https://scryfall.com/card/fut/35/delay?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/e/8/e821d337-4bc5-4401-ac9b-34adf4012b73.jpg?1562941573", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/8/e821d337-4bc5-4401-ac9b-34adf4012b73.jpg?1562941573", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/e/8/e821d337-4bc5-4401-ac9b-34adf4012b73.jpg?1562941573", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/e/8/e821d337-4bc5-4401-ac9b-34adf4012b73.png?1562941573", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/8/e821d337-4bc5-4401-ac9b-34adf4012b73.jpg?1562941573", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/e/8/e821d337-4bc5-4401-ac9b-34adf4012b73.jpg?1562941573"}, "mana_cost": "{1}{U}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Counter target spell. If the spell is countered this way, exile it with three time counters on it instead of putting it into its owner's graveyard. If it doesn't have suspend, it gains suspend. (At the beginning of its owner's upkeep, remove a time counter from that card. When the last is removed, the player plays it without paying its mana cost. If it's a creature, it has haste.)", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "bf951ddb-4445-4923-87cb-3fe4ac3c6b9a", "set": "fut", "set_name": "Future Sight", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/bf951ddb-4445-4923-87cb-3fe4ac3c6b9a", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Afut&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/fut?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/e821d337-4bc5-4401-ac9b-34adf4012b73/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A983caa3f-7089-4e66-825d-4086a5adb9bb&unique=prints", "collector_number": "35", "digital": false, "rarity": "uncommon", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Ron Spears", "artist_ids": ["fce9030b-86bd-4439-b06a-920a1eeb184c"], "illustration_id": "0f3509fb-c089-4e8b-9354-45a2ba74744a", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 579, "penny_rank": 4498, "prices": {"usd": "1.53", "usd_foil": "22.02", "usd_etched": null, "eur": "0.67", "eur_foil": "8.00", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=132228", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Delay&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Delay&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Delay"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/14876?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Delay&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/26952?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "1285c125-e145-4565-a029-352ac6adf688", "oracle_id": "4c39b74c-db93-4dba-8ce3-3683b8cfaac5", "multiverse_ids": [5800], "tcgplayer_id": 847, "cardmarket_id": 11887, "name": "Denied!", "lang": "en", "released_at": "1998-08-11", "uri": "https://api.scryfall.com/cards/1285c125-e145-4565-a029-352ac6adf688", "scryfall_uri": "https://scryfall.com/card/ugl/22/denied!?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/1/2/1285c125-e145-4565-a029-352ac6adf688.jpg?1562799062", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/2/1285c125-e145-4565-a029-352ac6adf688.jpg?1562799062", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/1/2/1285c125-e145-4565-a029-352ac6adf688.jpg?1562799062", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/1/2/1285c125-e145-4565-a029-352ac6adf688.png?1562799062", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/2/1285c125-e145-4565-a029-352ac6adf688.jpg?1562799062", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/1/2/1285c125-e145-4565-a029-352ac6adf688.jpg?1562799062"}, "mana_cost": "{U}", "cmc": 1.0, "type_line": "Instant", "oracle_text": "Choose a card name, then target spell's controller reveals their hand. If a card with the chosen name is revealed this way, counter that spell.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "not_legal", "pauper": "not_legal", "vintage": "not_legal", "penny": "not_legal", "commander": "not_legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "not_legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "3404fc78-6678-4cf4-bd39-4c0be3bb7baf", "set": "ugl", "set_name": "Unglued", "set_type": "funny", "set_uri": "https://api.scryfall.com/sets/3404fc78-6678-4cf4-bd39-4c0be3bb7baf", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Augl&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ugl?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/1285c125-e145-4565-a029-352ac6adf688/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A4c39b74c-db93-4dba-8ce3-3683b8cfaac5&unique=prints", "collector_number": "22", "digital": false, "rarity": "common", "flavor_text": "\"Don't worry about it. It happens to every mage sooner or later.\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Quinton Hoover", "artist_ids": ["1a2db619-92a5-431a-822b-101cdcc5bd5d"], "illustration_id": "ef4d77b8-cd24-4fa6-ae80-7b12de75f689", "border_color": "silver", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "prices": {"usd": "0.17", "usd_foil": null, "usd_etched": null, "eur": "0.18", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=5800", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Denied%21&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Denied%21&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Denied%21"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/847?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Denied%21&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Denied%21&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "16a14eeb-1c85-4029-a047-39a4efef3f74", "oracle_id": "b665a64b-4772-42dd-9fd2-fd8598e689ba", "multiverse_ids": [409798], "mtgo_id": 59820, "mtgo_foil_id": 59821, "tcgplayer_id": 116376, "cardmarket_id": 289150, "name": "Deny Existence", "lang": "en", "released_at": "2016-04-08", "uri": "https://api.scryfall.com/cards/16a14eeb-1c85-4029-a047-39a4efef3f74", "scryfall_uri": "https://scryfall.com/card/soi/55/deny-existence?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/1/6/16a14eeb-1c85-4029-a047-39a4efef3f74.jpg?1576384025", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/6/16a14eeb-1c85-4029-a047-39a4efef3f74.jpg?1576384025", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/1/6/16a14eeb-1c85-4029-a047-39a4efef3f74.jpg?1576384025", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/1/6/16a14eeb-1c85-4029-a047-39a4efef3f74.png?1576384025", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/6/16a14eeb-1c85-4029-a047-39a4efef3f74.jpg?1576384025", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/1/6/16a14eeb-1c85-4029-a047-39a4efef3f74.jpg?1576384025"}, "mana_cost": "{2}{U}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Counter target creature spell. If that spell is countered this way, exile it instead of putting it into its owner's graveyard.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "5e914d7e-c1e9-446c-a33d-d093c02b2743", "set": "soi", "set_name": "Shadows over Innistrad", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/5e914d7e-c1e9-446c-a33d-d093c02b2743", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Asoi&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/soi?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/16a14eeb-1c85-4029-a047-39a4efef3f74/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ab665a64b-4772-42dd-9fd2-fd8598e689ba&unique=prints", "collector_number": "55", "digital": false, "rarity": "common", "flavor_text": "When all logical solutions fail, try an illogical one.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Christopher Moeller", "artist_ids": ["21e10012-06ae-44f2-b38d-3824dd2e73d4"], "illustration_id": "2251c3c1-cc70-49ee-b0bd-aac4a9009298", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 13391, "penny_rank": 8399, "prices": {"usd": "0.04", "usd_foil": "0.10", "usd_etched": null, "eur": "0.04", "eur_foil": "0.11", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=409798", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Deny+Existence&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Deny+Existence&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Deny+Existence"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/116376?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Deny+Existence&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/59820?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "1200f68a-a8ea-4777-b6b0-de48b2203fd1", "oracle_id": "0146de73-29bf-415a-b450-11074553f715", "multiverse_ids": [476298], "mtgo_id": 79218, "arena_id": 70558, "tcgplayer_id": 207126, "cardmarket_id": 432119, "name": "Deny the Divine", "lang": "en", "released_at": "2020-01-24", "uri": "https://api.scryfall.com/cards/1200f68a-a8ea-4777-b6b0-de48b2203fd1", "scryfall_uri": "https://scryfall.com/card/thb/47/deny-the-divine?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/1/2/1200f68a-a8ea-4777-b6b0-de48b2203fd1.jpg?1588900840", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/2/1200f68a-a8ea-4777-b6b0-de48b2203fd1.jpg?1588900840", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/1/2/1200f68a-a8ea-4777-b6b0-de48b2203fd1.jpg?1588900840", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/1/2/1200f68a-a8ea-4777-b6b0-de48b2203fd1.png?1588900840", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/2/1200f68a-a8ea-4777-b6b0-de48b2203fd1.jpg?1588900840", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/1/2/1200f68a-a8ea-4777-b6b0-de48b2203fd1.jpg?1588900840"}, "mana_cost": "{2}{U}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Counter target creature or enchantment spell. If that spell is countered this way, exile it instead of putting it into its owner's graveyard.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "5f23a78d-cda1-462a-8be3-a62b40c34913", "set": "thb", "set_name": "Theros Beyond Death", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/5f23a78d-cda1-462a-8be3-a62b40c34913", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Athb&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/thb?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/1200f68a-a8ea-4777-b6b0-de48b2203fd1/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A0146de73-29bf-415a-b450-11074553f715&unique=prints", "collector_number": "47", "digital": false, "rarity": "common", "flavor_text": "\"A great wave crashed, and a mighty wind blew out the stars.\"\n\u2014*The Cosmogony*", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Yigit Koroglu", "artist_ids": ["a24479f8-6d9e-40f9-bede-f29899922b97"], "illustration_id": "86a13f59-2820-4ab0-9932-4b49d2b7284c", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 10989, "penny_rank": 8683, "prices": {"usd": "0.01", "usd_foil": "0.06", "usd_etched": null, "eur": "0.02", "eur_foil": "0.05", "tix": "0.04"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=476298", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Deny+the+Divine&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Deny+the+Divine&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Deny+the+Divine"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/207126?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Deny+the+Divine&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/79218?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "2efecdd9-bd3a-4b79-92da-6485589d5bde", "oracle_id": "1065eceb-9150-4ea4-bd6d-acaabda14e00", "multiverse_ids": [193519], "mtgo_id": 36492, "mtgo_foil_id": 36493, "tcgplayer_id": 34753, "cardmarket_id": 22520, "name": "Deprive", "lang": "en", "released_at": "2010-04-23", "uri": "https://api.scryfall.com/cards/2efecdd9-bd3a-4b79-92da-6485589d5bde", "scryfall_uri": "https://scryfall.com/card/roe/59/deprive?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/2/e/2efecdd9-bd3a-4b79-92da-6485589d5bde.jpg?1562702470", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/e/2efecdd9-bd3a-4b79-92da-6485589d5bde.jpg?1562702470", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/2/e/2efecdd9-bd3a-4b79-92da-6485589d5bde.jpg?1562702470", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/2/e/2efecdd9-bd3a-4b79-92da-6485589d5bde.png?1562702470", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/e/2efecdd9-bd3a-4b79-92da-6485589d5bde.jpg?1562702470", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/2/e/2efecdd9-bd3a-4b79-92da-6485589d5bde.jpg?1562702470"}, "mana_cost": "{U}{U}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "As an additional cost to cast this spell, return a land you control to its owner's hand.\nCounter target spell.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "eadb8a82-ec56-4623-b50e-42e7e60cb535", "set": "roe", "set_name": "Rise of the Eldrazi", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/eadb8a82-ec56-4623-b50e-42e7e60cb535", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aroe&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/roe?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/2efecdd9-bd3a-4b79-92da-6485589d5bde/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A1065eceb-9150-4ea4-bd6d-acaabda14e00&unique=prints", "collector_number": "59", "digital": false, "rarity": "common", "flavor_text": "\"That would have brought shame to you as a mage. Tell you what\u2014I'll keep your secret.\"\n\u2014Noyan Dar, Tazeem lullmage", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Izzy", "artist_ids": ["2c3d2473-ff5d-4309-8194-e0b2def2ab65"], "illustration_id": "f4e8f698-1e9c-4bb0-a3ec-83453e869314", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 5014, "penny_rank": 519, "prices": {"usd": "0.38", "usd_foil": "19.01", "usd_etched": null, "eur": "0.38", "eur_foil": "13.99", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=193519", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Deprive&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Deprive&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Deprive"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/34753?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Deprive&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/36492?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "9a2a1779-af08-4a9a-aba4-e6892ce2332c", "oracle_id": "ee3d1f44-e0ca-4ce9-be76-4b675a115156", "multiverse_ids": [3637], "mtgo_id": 7517, "mtgo_foil_id": 7518, "tcgplayer_id": 5824, "cardmarket_id": 8431, "name": "Desertion", "lang": "en", "released_at": "1997-02-03", "uri": "https://api.scryfall.com/cards/9a2a1779-af08-4a9a-aba4-e6892ce2332c", "scryfall_uri": "https://scryfall.com/card/vis/30/desertion?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/9/a/9a2a1779-af08-4a9a-aba4-e6892ce2332c.jpg?1562278155", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/a/9a2a1779-af08-4a9a-aba4-e6892ce2332c.jpg?1562278155", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/9/a/9a2a1779-af08-4a9a-aba4-e6892ce2332c.jpg?1562278155", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/9/a/9a2a1779-af08-4a9a-aba4-e6892ce2332c.png?1562278155", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/a/9a2a1779-af08-4a9a-aba4-e6892ce2332c.jpg?1562278155", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/9/a/9a2a1779-af08-4a9a-aba4-e6892ce2332c.jpg?1562278155"}, "mana_cost": "{3}{U}{U}", "cmc": 5.0, "type_line": "Instant", "oracle_text": "Counter target spell. If an artifact or creature spell is countered this way, put that card onto the battlefield under your control instead of into its owner's graveyard.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "2c32f1a9-7921-4826-bea0-80bbac70532c", "set": "vis", "set_name": "Visions", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/2c32f1a9-7921-4826-bea0-80bbac70532c", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Avis&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/vis?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/9a2a1779-af08-4a9a-aba4-e6892ce2332c/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aee3d1f44-e0ca-4ce9-be76-4b675a115156&unique=prints", "collector_number": "30", "digital": false, "rarity": "rare", "flavor_text": "First the insult, then the injury.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Richard Kane Ferguson", "artist_ids": ["191620ed-2361-444e-96a6-1fe7ce32ef3b"], "illustration_id": "69476d3b-c63b-48b2-998a-674f2476a17f", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 3827, "penny_rank": 11807, "prices": {"usd": "4.33", "usd_foil": null, "usd_etched": null, "eur": "3.80", "eur_foil": null, "tix": "0.14"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=3637", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Desertion&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Desertion&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Desertion"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/5824?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Desertion&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/7517?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "648281fe-89fb-4d8d-b944-3af28fb044f6", "oracle_id": "feb221fb-59bf-4671-a53f-1bbe8e9c2ca9", "multiverse_ids": [534809], "mtgo_id": 93032, "arena_id": 78380, "tcgplayer_id": 248277, "cardmarket_id": 575018, "name": "Devious Cover-Up", "lang": "en", "released_at": "2021-09-24", "uri": "https://api.scryfall.com/cards/648281fe-89fb-4d8d-b944-3af28fb044f6", "scryfall_uri": "https://scryfall.com/card/mid/48/devious-cover-up?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/6/4/648281fe-89fb-4d8d-b944-3af28fb044f6.jpg?1634348751", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/4/648281fe-89fb-4d8d-b944-3af28fb044f6.jpg?1634348751", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/6/4/648281fe-89fb-4d8d-b944-3af28fb044f6.jpg?1634348751", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/6/4/648281fe-89fb-4d8d-b944-3af28fb044f6.png?1634348751", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/4/648281fe-89fb-4d8d-b944-3af28fb044f6.jpg?1634348751", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/6/4/648281fe-89fb-4d8d-b944-3af28fb044f6.jpg?1634348751"}, "mana_cost": "{2}{U}{U}", "cmc": 4.0, "type_line": "Instant", "oracle_text": "Counter target spell. If that spell is countered this way, exile it instead of putting it into its owner's graveyard. You may shuffle up to four target cards from your graveyard into your library.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "44b8eb8f-fa23-401a-98b5-1fbb9871128e", "set": "mid", "set_name": "Innistrad: Midnight Hunt", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/44b8eb8f-fa23-401a-98b5-1fbb9871128e", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Amid&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/mid?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/648281fe-89fb-4d8d-b944-3af28fb044f6/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Afeb221fb-59bf-4671-a53f-1bbe8e9c2ca9&unique=prints", "collector_number": "48", "digital": false, "rarity": "common", "flavor_text": "Widow Weber's new scarecrow seemed to attract more crows than it scared off.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Colin Boyer", "artist_ids": ["9c201dbe-db56-429a-87e6-189ea70c2632"], "illustration_id": "4835c295-0648-4664-a373-107c06d758a5", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 7068, "penny_rank": 1423, "prices": {"usd": "0.01", "usd_foil": "0.02", "usd_etched": null, "eur": "0.02", "eur_foil": "0.05", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=534809", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Devious+Cover-Up&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Devious+Cover-Up&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Devious+Cover-Up"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/248277?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Devious+Cover-Up&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/93032?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "21ac6b0a-b1a5-439d-b65e-5f04e1826c80", "oracle_id": "feb221fb-59bf-4671-a53f-1bbe8e9c2ca9", "multiverse_ids": [452785], "mtgo_id": 69443, "arena_id": 68496, "tcgplayer_id": 176832, "cardmarket_id": 364236, "name": "Devious Cover-Up", "lang": "en", "released_at": "2018-10-05", "uri": "https://api.scryfall.com/cards/21ac6b0a-b1a5-439d-b65e-5f04e1826c80", "scryfall_uri": "https://scryfall.com/card/grn/35/devious-cover-up?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/2/1/21ac6b0a-b1a5-439d-b65e-5f04e1826c80.jpg?1636491628", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/1/21ac6b0a-b1a5-439d-b65e-5f04e1826c80.jpg?1636491628", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/2/1/21ac6b0a-b1a5-439d-b65e-5f04e1826c80.jpg?1636491628", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/2/1/21ac6b0a-b1a5-439d-b65e-5f04e1826c80.png?1636491628", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/1/21ac6b0a-b1a5-439d-b65e-5f04e1826c80.jpg?1636491628", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/2/1/21ac6b0a-b1a5-439d-b65e-5f04e1826c80.jpg?1636491628"}, "mana_cost": "{2}{U}{U}", "cmc": 4.0, "type_line": "Instant", "oracle_text": "Counter target spell. If that spell is countered this way, exile it instead of putting it into its owner's graveyard. You may shuffle up to four target cards from your graveyard into your library.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "597c6d4a-8212-4903-a6af-12c4ae9e13f0", "set": "grn", "set_name": "Guilds of Ravnica", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/597c6d4a-8212-4903-a6af-12c4ae9e13f0", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Agrn&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/grn?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/21ac6b0a-b1a5-439d-b65e-5f04e1826c80/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Afeb221fb-59bf-4671-a53f-1bbe8e9c2ca9&unique=prints", "collector_number": "35", "digital": false, "rarity": "common", "flavor_text": "First, dispose of the evidence. Then dispose of your knowledge of its disposal.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Micah Epstein", "artist_ids": ["957ec398-9a5e-4f54-9090-37a06d57b96c"], "illustration_id": "fb441ba2-75e3-4c04-aa27-fcc5040ff374", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 7068, "penny_rank": 1423, "prices": {"usd": "0.02", "usd_foil": "0.23", "usd_etched": null, "eur": "0.04", "eur_foil": "0.45", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=452785", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Devious+Cover-Up&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Devious+Cover-Up&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Devious+Cover-Up"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/176832?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Devious+Cover-Up&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/69443?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "77500b53-0852-4d6a-bfe3-b1e8ef5a12cd", "oracle_id": "b90bc464-a95a-42e4-9d9a-4b0882eb57ba", "multiverse_ids": [473004], "mtgo_id": 78188, "arena_id": 70189, "tcgplayer_id": 199508, "cardmarket_id": 403004, "name": "Didn't Say Please", "lang": "en", "released_at": "2019-10-04", "uri": "https://api.scryfall.com/cards/77500b53-0852-4d6a-bfe3-b1e8ef5a12cd", "scryfall_uri": "https://scryfall.com/card/eld/42/didnt-say-please?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/7/7/77500b53-0852-4d6a-bfe3-b1e8ef5a12cd.jpg?1572489858", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/7/77500b53-0852-4d6a-bfe3-b1e8ef5a12cd.jpg?1572489858", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/7/7/77500b53-0852-4d6a-bfe3-b1e8ef5a12cd.jpg?1572489858", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/7/7/77500b53-0852-4d6a-bfe3-b1e8ef5a12cd.png?1572489858", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/7/77500b53-0852-4d6a-bfe3-b1e8ef5a12cd.jpg?1572489858", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/7/7/77500b53-0852-4d6a-bfe3-b1e8ef5a12cd.jpg?1572489858"}, "mana_cost": "{1}{U}{U}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Counter target spell. Its controller mills three cards.", "colors": ["U"], "color_identity": ["U"], "keywords": ["Mill"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "a90a7b2f-9dd8-4fc7-9f7d-8ea2797ec782", "set": "eld", "set_name": "Throne of Eldraine", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/a90a7b2f-9dd8-4fc7-9f7d-8ea2797ec782", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aeld&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/eld?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/77500b53-0852-4d6a-bfe3-b1e8ef5a12cd/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ab90bc464-a95a-42e4-9d9a-4b0882eb57ba&unique=prints", "collector_number": "42", "digital": false, "rarity": "common", "flavor_text": "\"If you're in our home, we expect you to mind your manners.\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Jason A. Engle", "artist_ids": ["02e2b5de-4341-464c-8fdb-a1adbf873bc0"], "illustration_id": "3cad1a2a-3983-4645-a843-0339c5244b24", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 2344, "penny_rank": 3543, "prices": {"usd": "0.23", "usd_foil": "0.32", "usd_etched": null, "eur": "0.07", "eur_foil": "0.25", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=473004", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Didn%27t+Say+Please&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Didn%27t+Say+Please&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Didn%27t+Say+Please"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/199508?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Didn%27t+Say+Please&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/78188?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "f3f4cfa7-8ee4-4a85-9e6a-65a7541f62c1", "oracle_id": "4d99e786-585d-4026-9253-19741fb357de", "multiverse_ids": [366473], "mtgo_id": 47479, "mtgo_foil_id": 47480, "tcgplayer_id": 67393, "cardmarket_id": 259866, "name": "Dimir Charm", "lang": "en", "released_at": "2013-02-01", "uri": "https://api.scryfall.com/cards/f3f4cfa7-8ee4-4a85-9e6a-65a7541f62c1", "scryfall_uri": "https://scryfall.com/card/gtc/154/dimir-charm?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/f/3/f3f4cfa7-8ee4-4a85-9e6a-65a7541f62c1.jpg?1561852231", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/3/f3f4cfa7-8ee4-4a85-9e6a-65a7541f62c1.jpg?1561852231", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/f/3/f3f4cfa7-8ee4-4a85-9e6a-65a7541f62c1.jpg?1561852231", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/f/3/f3f4cfa7-8ee4-4a85-9e6a-65a7541f62c1.png?1561852231", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/3/f3f4cfa7-8ee4-4a85-9e6a-65a7541f62c1.jpg?1561852231", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/f/3/f3f4cfa7-8ee4-4a85-9e6a-65a7541f62c1.jpg?1561852231"}, "mana_cost": "{U}{B}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Choose one \u2014\n\u2022 Counter target sorcery spell.\n\u2022 Destroy target creature with power 2 or less.\n\u2022 Look at the top three cards of target player's library. Put one back and the rest into that player's graveyard.", "colors": ["B", "U"], "color_identity": ["B", "U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "035a05f7-e020-4f50-a141-ed16ba704bd2", "set": "gtc", "set_name": "Gatecrash", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/035a05f7-e020-4f50-a141-ed16ba704bd2", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Agtc&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/gtc?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/f3f4cfa7-8ee4-4a85-9e6a-65a7541f62c1/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A4d99e786-585d-4026-9253-19741fb357de&unique=prints", "collector_number": "154", "digital": false, "rarity": "uncommon", "watermark": "dimir", "flavor_text": "\"Dangerous to recognize. Deadly not to.\"\n\u2014Lazav", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Zoltan Boros", "artist_ids": ["1885e6cb-c827-4896-994e-3d0a027d602f"], "illustration_id": "264faf85-f1a8-4988-b21a-2d5003644315", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 4984, "penny_rank": 681, "prices": {"usd": "0.18", "usd_foil": "0.84", "usd_etched": null, "eur": "0.18", "eur_foil": "2.22", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=366473", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Dimir+Charm&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Dimir+Charm&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Dimir+Charm"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/67393?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Dimir+Charm&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/47479?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "9f6bc1da-3969-4f19-b072-4ed79f906fef", "oracle_id": "4d99e786-585d-4026-9253-19741fb357de", "multiverse_ids": [], "tcgplayer_id": 70918, "cardmarket_id": 263501, "name": "Dimir Charm", "lang": "en", "released_at": "2013-01-01", "uri": "https://api.scryfall.com/cards/9f6bc1da-3969-4f19-b072-4ed79f906fef", "scryfall_uri": "https://scryfall.com/card/f13/8/dimir-charm?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/9/f/9f6bc1da-3969-4f19-b072-4ed79f906fef.jpg?1562497257", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/f/9f6bc1da-3969-4f19-b072-4ed79f906fef.jpg?1562497257", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/9/f/9f6bc1da-3969-4f19-b072-4ed79f906fef.jpg?1562497257", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/9/f/9f6bc1da-3969-4f19-b072-4ed79f906fef.png?1562497257", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/f/9f6bc1da-3969-4f19-b072-4ed79f906fef.jpg?1562497257", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/9/f/9f6bc1da-3969-4f19-b072-4ed79f906fef.jpg?1562497257"}, "mana_cost": "{U}{B}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Choose one \u2014\n\u2022 Counter target sorcery spell.\n\u2022 Destroy target creature with power 2 or less.\n\u2022 Look at the top three cards of target player's library. Put one back and the rest into that player's graveyard.", "colors": ["B", "U"], "color_identity": ["B", "U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": true, "nonfoil": false, "finishes": ["foil"], "oversized": false, "promo": true, "reprint": true, "variation": false, "set_id": "4f0f5416-2f39-4339-8b9a-5454d94a4ca6", "set": "f13", "set_name": "Friday Night Magic 2013", "set_type": "promo", "set_uri": "https://api.scryfall.com/sets/4f0f5416-2f39-4339-8b9a-5454d94a4ca6", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Af13&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/f13?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/9f6bc1da-3969-4f19-b072-4ed79f906fef/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A4d99e786-585d-4026-9253-19741fb357de&unique=prints", "collector_number": "8", "digital": false, "rarity": "rare", "watermark": "dimir", "flavor_text": "\"Dangerous to recognize. Deadly not to.\"\n\u2014Lazav", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Zoltan Boros", "artist_ids": ["1885e6cb-c827-4896-994e-3d0a027d602f"], "illustration_id": "75ecc8d5-1a36-4ace-93f5-a8c3d4cddf5e", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "promo_types": ["tourney", "fnm"], "edhrec_rank": 4984, "penny_rank": 681, "prices": {"usd": null, "usd_foil": "0.50", "usd_etched": null, "eur": null, "eur_foil": "0.22", "tix": null}, "related_uris": {"tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Dimir+Charm&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Dimir+Charm&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Dimir+Charm"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/70918?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Dimir+Charm&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Dimir+Charm&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "25f05814-a5a5-460f-9d29-0ab03efecf4c", "oracle_id": "88b51e15-6630-4e14-a6b8-db0aa12e34ef", "multiverse_ids": [423698], "mtgo_id": 62659, "mtgo_foil_id": 62660, "tcgplayer_id": 126406, "cardmarket_id": 294567, "name": "Disallow", "lang": "en", "released_at": "2017-01-20", "uri": "https://api.scryfall.com/cards/25f05814-a5a5-460f-9d29-0ab03efecf4c", "scryfall_uri": "https://scryfall.com/card/aer/31/disallow?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/2/5/25f05814-a5a5-460f-9d29-0ab03efecf4c.jpg?1576381471", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/5/25f05814-a5a5-460f-9d29-0ab03efecf4c.jpg?1576381471", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/2/5/25f05814-a5a5-460f-9d29-0ab03efecf4c.jpg?1576381471", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/2/5/25f05814-a5a5-460f-9d29-0ab03efecf4c.png?1576381471", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/5/25f05814-a5a5-460f-9d29-0ab03efecf4c.jpg?1576381471", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/2/5/25f05814-a5a5-460f-9d29-0ab03efecf4c.jpg?1576381471"}, "mana_cost": "{1}{U}{U}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Counter target spell, activated ability, or triggered ability. (Mana abilities can't be targeted.)", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "a4a0db50-8826-4e73-833c-3fd934375f96", "set": "aer", "set_name": "Aether Revolt", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/a4a0db50-8826-4e73-833c-3fd934375f96", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aaer&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/aer?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/25f05814-a5a5-460f-9d29-0ab03efecf4c/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A88b51e15-6630-4e14-a6b8-db0aa12e34ef&unique=prints", "collector_number": "31", "digital": false, "rarity": "rare", "watermark": "planeswalker", "flavor_text": "\"How easily your flames are quenched.\"\n\u2014Baral, Chief of Compliance", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Min Yum", "artist_ids": ["9cb65d6f-8851-4d56-9add-9eefa274bd1b"], "illustration_id": "d98eca51-6a1e-4e30-a18d-1aaf836161c1", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": true, "story_spotlight": true, "edhrec_rank": 772, "penny_rank": 669, "prices": {"usd": "4.32", "usd_foil": "6.63", "usd_etched": null, "eur": "2.48", "eur_foil": "10.00", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=423698", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Disallow&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Disallow&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Disallow"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/126406?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Disallow&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/62659?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "9a4a6d56-9bed-444c-aae8-383c315779a0", "oracle_id": "20393369-fdee-45ea-8584-451f38b1c002", "multiverse_ids": [417616], "mtgo_id": 61639, "mtgo_foil_id": 61640, "tcgplayer_id": 123065, "cardmarket_id": 292779, "name": "Disappearing Act", "lang": "en", "released_at": "2016-09-30", "uri": "https://api.scryfall.com/cards/9a4a6d56-9bed-444c-aae8-383c315779a0", "scryfall_uri": "https://scryfall.com/card/kld/43/disappearing-act?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/9/a/9a4a6d56-9bed-444c-aae8-383c315779a0.jpg?1576381158", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/a/9a4a6d56-9bed-444c-aae8-383c315779a0.jpg?1576381158", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/9/a/9a4a6d56-9bed-444c-aae8-383c315779a0.jpg?1576381158", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/9/a/9a4a6d56-9bed-444c-aae8-383c315779a0.png?1576381158", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/a/9a4a6d56-9bed-444c-aae8-383c315779a0.jpg?1576381158", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/9/a/9a4a6d56-9bed-444c-aae8-383c315779a0.jpg?1576381158"}, "mana_cost": "{1}{U}{U}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "As an additional cost to cast this spell, return a permanent you control to its owner's hand.\nCounter target spell.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "d667e468-be8f-411f-a030-473d148deb74", "set": "kld", "set_name": "Kaladesh", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/d667e468-be8f-411f-a030-473d148deb74", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Akld&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/kld?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/9a4a6d56-9bed-444c-aae8-383c315779a0/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A20393369-fdee-45ea-8584-451f38b1c002&unique=prints", "collector_number": "43", "digital": false, "rarity": "uncommon", "flavor_text": "\"Baral took my family from me back then. I'd do anything to face him now.\"\n\u2014Chandra Nalaar", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Anthony Palumbo", "artist_ids": ["afd2d541-4140-41ae-a28f-862436458fcb"], "illustration_id": "6cec02f5-65f5-4a01-9a95-b1e2d1095151", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 10534, "penny_rank": 7360, "prices": {"usd": "0.07", "usd_foil": "0.23", "usd_etched": null, "eur": "0.03", "eur_foil": "0.10", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=417616", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Disappearing+Act&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Disappearing+Act&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Disappearing+Act"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/123065?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Disappearing+Act&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/61639?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "cef584c5-6e2d-419b-9c11-a1b6c9c9ab2a", "oracle_id": "b58d7a20-4bcd-4c33-8cda-955362525f48", "multiverse_ids": [39442], "mtgo_id": 17843, "mtgo_foil_id": 17844, "tcgplayer_id": 10330, "cardmarket_id": 1710, "name": "Discombobulate", "lang": "en", "released_at": "2002-10-07", "uri": "https://api.scryfall.com/cards/cef584c5-6e2d-419b-9c11-a1b6c9c9ab2a", "scryfall_uri": "https://scryfall.com/card/ons/79/discombobulate?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/c/e/cef584c5-6e2d-419b-9c11-a1b6c9c9ab2a.jpg?1562943839", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/e/cef584c5-6e2d-419b-9c11-a1b6c9c9ab2a.jpg?1562943839", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/c/e/cef584c5-6e2d-419b-9c11-a1b6c9c9ab2a.jpg?1562943839", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/c/e/cef584c5-6e2d-419b-9c11-a1b6c9c9ab2a.png?1562943839", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/e/cef584c5-6e2d-419b-9c11-a1b6c9c9ab2a.jpg?1562943839", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/c/e/cef584c5-6e2d-419b-9c11-a1b6c9c9ab2a.jpg?1562943839"}, "mana_cost": "{2}{U}{U}", "cmc": 4.0, "type_line": "Instant", "oracle_text": "Counter target spell. Look at the top four cards of your library, then put them back in any order.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "914a6c6d-cb3b-45e8-a2db-9978a2339faf", "set": "ons", "set_name": "Onslaught", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/914a6c6d-cb3b-45e8-a2db-9978a2339faf", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aons&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ons?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/cef584c5-6e2d-419b-9c11-a1b6c9c9ab2a/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ab58d7a20-4bcd-4c33-8cda-955362525f48&unique=prints", "collector_number": "79", "digital": false, "rarity": "uncommon", "flavor_text": "\"I said 'pick his brain,' not 'tear off his head.'\"\n\u2014Riptide Project researcher", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Alex Horley-Orlandelli", "artist_ids": ["1631a2ad-bf03-4ab9-b86c-60da982d58a1"], "illustration_id": "92b28862-8d4c-49b5-a9b1-c739f4ffbd6b", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 14247, "penny_rank": 10096, "prices": {"usd": "0.15", "usd_foil": "1.29", "usd_etched": null, "eur": "0.02", "eur_foil": "0.30", "tix": "0.05"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=39442", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Discombobulate&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Discombobulate&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Discombobulate"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/10330?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Discombobulate&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/17843?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "b33ba0a8-04e9-4df6-af20-a3ca4470cdcc", "oracle_id": "5cfd73ab-8509-4e4b-9704-68d8dad3b301", "multiverse_ids": [485371], "mtgo_id": 81323, "arena_id": 71830, "tcgplayer_id": 215672, "cardmarket_id": 470884, "name": "Discontinuity", "lang": "en", "released_at": "2020-07-03", "uri": "https://api.scryfall.com/cards/b33ba0a8-04e9-4df6-af20-a3ca4470cdcc", "scryfall_uri": "https://scryfall.com/card/m21/48/discontinuity?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/b/3/b33ba0a8-04e9-4df6-af20-a3ca4470cdcc.jpg?1594735451", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/3/b33ba0a8-04e9-4df6-af20-a3ca4470cdcc.jpg?1594735451", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/b/3/b33ba0a8-04e9-4df6-af20-a3ca4470cdcc.jpg?1594735451", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/b/3/b33ba0a8-04e9-4df6-af20-a3ca4470cdcc.png?1594735451", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/3/b33ba0a8-04e9-4df6-af20-a3ca4470cdcc.jpg?1594735451", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/b/3/b33ba0a8-04e9-4df6-af20-a3ca4470cdcc.jpg?1594735451"}, "mana_cost": "{3}{U}{U}{U}", "cmc": 6.0, "type_line": "Instant", "oracle_text": "As long as it's your turn, this spell costs {2}{U}{U} less to cast.\nEnd the turn. (Exile all spells and abilities from the stack, including this card. The player whose turn it is discards down to their maximum hand size. Damage wears off, and \"this turn\" and \"until end of turn\" effects end.)", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "bc94aba1-7376-4e02-a12d-3a2efb66ab0f", "set": "m21", "set_name": "Core Set 2021", "set_type": "core", "set_uri": "https://api.scryfall.com/sets/bc94aba1-7376-4e02-a12d-3a2efb66ab0f", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Am21&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/m21?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/b33ba0a8-04e9-4df6-af20-a3ca4470cdcc/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A5cfd73ab-8509-4e4b-9704-68d8dad3b301&unique=prints", "collector_number": "48", "digital": false, "rarity": "mythic", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Volkan Ba\u01f5a", "artist_ids": ["93bec3c0-0260-4d31-8064-5d01efb4153f"], "illustration_id": "3101be18-7f77-4040-a2de-79c5cb889f17", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 4489, "preview": {"source": "MTGGoldfish", "source_uri": "https://www.mtggoldfish.com/articles/stopping-time-exclusive-core-set-2021-preview", "previewed_at": "2020-06-12"}, "prices": {"usd": "1.03", "usd_foil": "1.40", "usd_etched": null, "eur": "0.72", "eur_foil": "1.50", "tix": "0.39"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=485371", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Discontinuity&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Discontinuity&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Discontinuity"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/215672?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Discontinuity&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/81323?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "492aa24c-61c4-48bc-b7b7-f423be2662da", "oracle_id": "11e02134-7b1a-46a4-a89e-7539dd1efada", "multiverse_ids": [555240], "mtgo_id": 98297, "arena_id": 80190, "tcgplayer_id": 268769, "cardmarket_id": 651834, "name": "Disdainful Stroke", "lang": "en", "released_at": "2022-04-29", "uri": "https://api.scryfall.com/cards/492aa24c-61c4-48bc-b7b7-f423be2662da", "scryfall_uri": "https://scryfall.com/card/snc/39/disdainful-stroke?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/4/9/492aa24c-61c4-48bc-b7b7-f423be2662da.jpg?1649881231", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/9/492aa24c-61c4-48bc-b7b7-f423be2662da.jpg?1649881231", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/4/9/492aa24c-61c4-48bc-b7b7-f423be2662da.jpg?1649881231", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/4/9/492aa24c-61c4-48bc-b7b7-f423be2662da.png?1649881231", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/9/492aa24c-61c4-48bc-b7b7-f423be2662da.jpg?1649881231", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/4/9/492aa24c-61c4-48bc-b7b7-f423be2662da.jpg?1649881231"}, "mana_cost": "{1}{U}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Counter target spell with mana value 4 or greater.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo", "arena"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "df837242-8c15-42e4-b049-c933a02dc501", "set": "snc", "set_name": "Streets of New Capenna", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/df837242-8c15-42e4-b049-c933a02dc501", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Asnc&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/snc?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/492aa24c-61c4-48bc-b7b7-f423be2662da/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A11e02134-7b1a-46a4-a89e-7539dd1efada&unique=prints", "collector_number": "39", "digital": false, "rarity": "common", "flavor_text": "\"I've known for a year that you would cast this exact spell, at this exact spot, at this exact time.\"\n\u2014Raffine", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Irina Nordsol", "artist_ids": ["1e4cb52d-476e-4c68-ac87-2e620aede6d4"], "illustration_id": "3c733048-9a4d-446b-9248-44b3e47592f5", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 1502, "penny_rank": 3335, "preview": {"source": "Pokde.net", "source_uri": "https://pokde.net/gaming/esports/mtg-streets-of-new-capenna-disdainful-stroke-card-preview", "previewed_at": "2022-04-13"}, "prices": {"usd": "0.05", "usd_foil": "0.08", "usd_etched": null, "eur": "0.13", "eur_foil": "0.11", "tix": "0.01"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=555240", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Disdainful+Stroke&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Disdainful+Stroke&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Disdainful+Stroke"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/268769?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Disdainful+Stroke&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/98297?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "7691ac89-f8ba-493e-aa11-5674a783dffb", "oracle_id": "11e02134-7b1a-46a4-a89e-7539dd1efada", "multiverse_ids": [503662], "mtgo_id": 87435, "arena_id": 75093, "tcgplayer_id": 230900, "cardmarket_id": 532292, "name": "Disdainful Stroke", "lang": "en", "released_at": "2021-02-05", "uri": "https://api.scryfall.com/cards/7691ac89-f8ba-493e-aa11-5674a783dffb", "scryfall_uri": "https://scryfall.com/card/khm/54/disdainful-stroke?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/7/6/7691ac89-f8ba-493e-aa11-5674a783dffb.jpg?1631047007", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/6/7691ac89-f8ba-493e-aa11-5674a783dffb.jpg?1631047007", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/7/6/7691ac89-f8ba-493e-aa11-5674a783dffb.jpg?1631047007", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/7/6/7691ac89-f8ba-493e-aa11-5674a783dffb.png?1631047007", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/6/7691ac89-f8ba-493e-aa11-5674a783dffb.jpg?1631047007", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/7/6/7691ac89-f8ba-493e-aa11-5674a783dffb.jpg?1631047007"}, "mana_cost": "{1}{U}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Counter target spell with mana value 4 or greater.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "43057fad-b1c1-437f-bc48-0045bce6d8c9", "set": "khm", "set_name": "Kaldheim", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/43057fad-b1c1-437f-bc48-0045bce6d8c9", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Akhm&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/khm?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/7691ac89-f8ba-493e-aa11-5674a783dffb/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A11e02134-7b1a-46a4-a89e-7539dd1efada&unique=prints", "collector_number": "54", "digital": false, "rarity": "common", "flavor_text": "\"The skald boasted that he could outsing the sea. Cosima heard him, and drowned his village with a single wave.\"\n\u2014*Longbeard Saga*", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Campbell White", "artist_ids": ["d281eab4-463a-4ba8-9039-8943737960a0"], "illustration_id": "fee1c69d-8abc-4316-a0ab-e3d4a4a25ef1", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 1502, "penny_rank": 3335, "preview": {"source": "Lierson Mattenhauer, Jr.", "source_uri": "https://twitter.com/lierson/status/1350122874812715009", "previewed_at": "2021-01-15"}, "prices": {"usd": "0.07", "usd_foil": "0.12", "usd_etched": null, "eur": "0.02", "eur_foil": "0.25", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=503662", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Disdainful+Stroke&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Disdainful+Stroke&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Disdainful+Stroke"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/230900?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Disdainful+Stroke&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/87435?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "0193dfa3-8409-44be-b4be-6c3cad42d4a4", "oracle_id": "11e02134-7b1a-46a4-a89e-7539dd1efada", "multiverse_ids": [452787], "mtgo_id": 69447, "arena_id": 68498, "tcgplayer_id": 176441, "cardmarket_id": 364114, "name": "Disdainful Stroke", "lang": "en", "released_at": "2018-10-05", "uri": "https://api.scryfall.com/cards/0193dfa3-8409-44be-b4be-6c3cad42d4a4", "scryfall_uri": "https://scryfall.com/card/grn/37/disdainful-stroke?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/0/1/0193dfa3-8409-44be-b4be-6c3cad42d4a4.jpg?1572892724", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/1/0193dfa3-8409-44be-b4be-6c3cad42d4a4.jpg?1572892724", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/0/1/0193dfa3-8409-44be-b4be-6c3cad42d4a4.jpg?1572892724", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/0/1/0193dfa3-8409-44be-b4be-6c3cad42d4a4.png?1572892724", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/1/0193dfa3-8409-44be-b4be-6c3cad42d4a4.jpg?1572892724", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/0/1/0193dfa3-8409-44be-b4be-6c3cad42d4a4.jpg?1572892724"}, "mana_cost": "{1}{U}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Counter target spell with mana value 4 or greater.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "597c6d4a-8212-4903-a6af-12c4ae9e13f0", "set": "grn", "set_name": "Guilds of Ravnica", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/597c6d4a-8212-4903-a6af-12c4ae9e13f0", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Agrn&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/grn?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/0193dfa3-8409-44be-b4be-6c3cad42d4a4/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A11e02134-7b1a-46a4-a89e-7539dd1efada&unique=prints", "collector_number": "37", "digital": false, "rarity": "common", "flavor_text": "\"Laws apply only to those who lack the vision to see past them.\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Deruchenko Alexander", "artist_ids": ["806f6ff9-6ed4-4e93-998a-a562c0b792e6"], "illustration_id": "3201547b-1aaf-4c5c-a186-b52b91831971", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 1502, "penny_rank": 3335, "prices": {"usd": "0.06", "usd_foil": "0.45", "usd_etched": null, "eur": "0.49", "eur_foil": "1.45", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=452787", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Disdainful+Stroke&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Disdainful+Stroke&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Disdainful+Stroke"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/176441?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Disdainful+Stroke&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/69447?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "180425c9-1898-48d4-9932-ddfb1a28e6b0", "oracle_id": "11e02134-7b1a-46a4-a89e-7539dd1efada", "multiverse_ids": [386519], "mtgo_id": 53982, "mtgo_foil_id": 53983, "tcgplayer_id": 93157, "cardmarket_id": 269387, "name": "Disdainful Stroke", "lang": "en", "released_at": "2014-09-26", "uri": "https://api.scryfall.com/cards/180425c9-1898-48d4-9932-ddfb1a28e6b0", "scryfall_uri": "https://scryfall.com/card/ktk/37/disdainful-stroke?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/1/8/180425c9-1898-48d4-9932-ddfb1a28e6b0.jpg?1562783110", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/8/180425c9-1898-48d4-9932-ddfb1a28e6b0.jpg?1562783110", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/1/8/180425c9-1898-48d4-9932-ddfb1a28e6b0.jpg?1562783110", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/1/8/180425c9-1898-48d4-9932-ddfb1a28e6b0.png?1562783110", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/8/180425c9-1898-48d4-9932-ddfb1a28e6b0.jpg?1562783110", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/1/8/180425c9-1898-48d4-9932-ddfb1a28e6b0.jpg?1562783110"}, "mana_cost": "{1}{U}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Counter target spell with mana value 4 or greater.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "6c7a715c-ded9-449e-89b0-c665773e9c3c", "set": "ktk", "set_name": "Khans of Tarkir", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/6c7a715c-ded9-449e-89b0-c665773e9c3c", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aktk&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ktk?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/180425c9-1898-48d4-9932-ddfb1a28e6b0/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A11e02134-7b1a-46a4-a89e-7539dd1efada&unique=prints", "collector_number": "37", "digital": false, "rarity": "common", "flavor_text": "\"You are beneath contempt. Your lineage will be forgotten.\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Svetlin Velinov", "artist_ids": ["ffd063ae-c097-4f26-b2e6-b1e2137708bc"], "illustration_id": "54161710-9f30-4869-a2de-0302e6f0ed8a", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 1502, "penny_rank": 3335, "prices": {"usd": "0.08", "usd_foil": "0.23", "usd_etched": null, "eur": "0.09", "eur_foil": "0.05", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=386519", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Disdainful+Stroke&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Disdainful+Stroke&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Disdainful+Stroke"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/93157?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Disdainful+Stroke&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/53982?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "3711f61d-6381-4c92-a3f5-6deed29aae47", "oracle_id": "11e02134-7b1a-46a4-a89e-7539dd1efada", "multiverse_ids": [], "tcgplayer_id": 95916, "cardmarket_id": 271498, "name": "Disdainful Stroke", "lang": "en", "released_at": "2015-01-01", "uri": "https://api.scryfall.com/cards/3711f61d-6381-4c92-a3f5-6deed29aae47", "scryfall_uri": "https://scryfall.com/card/f15/2/disdainful-stroke?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/3/7/3711f61d-6381-4c92-a3f5-6deed29aae47.jpg?1562639749", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/7/3711f61d-6381-4c92-a3f5-6deed29aae47.jpg?1562639749", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/3/7/3711f61d-6381-4c92-a3f5-6deed29aae47.jpg?1562639749", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/3/7/3711f61d-6381-4c92-a3f5-6deed29aae47.png?1562639749", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/7/3711f61d-6381-4c92-a3f5-6deed29aae47.jpg?1562639749", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/3/7/3711f61d-6381-4c92-a3f5-6deed29aae47.jpg?1562639749"}, "mana_cost": "{1}{U}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Counter target spell with mana value 4 or greater.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": true, "nonfoil": false, "finishes": ["foil"], "oversized": false, "promo": true, "reprint": true, "variation": false, "set_id": "b34e3169-310e-4161-82c8-868b38b9cc91", "set": "f15", "set_name": "Friday Night Magic 2015", "set_type": "promo", "set_uri": "https://api.scryfall.com/sets/b34e3169-310e-4161-82c8-868b38b9cc91", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Af15&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/f15?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/3711f61d-6381-4c92-a3f5-6deed29aae47/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A11e02134-7b1a-46a4-a89e-7539dd1efada&unique=prints", "collector_number": "2", "digital": false, "rarity": "rare", "watermark": "wotc", "flavor_text": "\"You are beneath contempt. Your lineage will be forgotten.\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Svetlin Velinov", "artist_ids": ["ffd063ae-c097-4f26-b2e6-b1e2137708bc"], "illustration_id": "e2a299bf-3793-4d22-a665-b308dd9518c9", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "promo_types": ["tourney", "fnm"], "edhrec_rank": 1502, "penny_rank": 3335, "prices": {"usd": null, "usd_foil": "0.53", "usd_etched": null, "eur": null, "eur_foil": "0.40", "tix": null}, "related_uris": {"tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Disdainful+Stroke&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Disdainful+Stroke&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Disdainful+Stroke"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/95916?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Disdainful+Stroke&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Disdainful+Stroke&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "35786a7a-faa6-457d-9b92-da560b93a43a", "oracle_id": "1feeb881-ebe6-4afb-ba31-3d116d8ab7a1", "multiverse_ids": [129022], "mtgo_id": 26455, "mtgo_foil_id": 26456, "tcgplayer_id": 14712, "cardmarket_id": 14218, "name": "Dismal Failure", "lang": "en", "released_at": "2007-02-02", "uri": "https://api.scryfall.com/cards/35786a7a-faa6-457d-9b92-da560b93a43a", "scryfall_uri": "https://scryfall.com/card/plc/39/dismal-failure?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/3/5/35786a7a-faa6-457d-9b92-da560b93a43a.jpg?1562569290", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/5/35786a7a-faa6-457d-9b92-da560b93a43a.jpg?1562569290", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/3/5/35786a7a-faa6-457d-9b92-da560b93a43a.jpg?1562569290", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/3/5/35786a7a-faa6-457d-9b92-da560b93a43a.png?1562569290", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/5/35786a7a-faa6-457d-9b92-da560b93a43a.jpg?1562569290", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/3/5/35786a7a-faa6-457d-9b92-da560b93a43a.jpg?1562569290"}, "mana_cost": "{2}{U}{U}", "cmc": 4.0, "type_line": "Instant", "oracle_text": "Counter target spell. Its controller discards a card.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "5a1b571c-73e9-4c14-b9d4-a62507d85789", "set": "plc", "set_name": "Planar Chaos", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/5a1b571c-73e9-4c14-b9d4-a62507d85789", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aplc&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/plc?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/35786a7a-faa6-457d-9b92-da560b93a43a/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A1feeb881-ebe6-4afb-ba31-3d116d8ab7a1&unique=prints", "collector_number": "39", "digital": false, "rarity": "uncommon", "flavor_text": "\"Two magi could trade spells all day and never crown a victor. The real battle is not one of power but of will. If your confidence breaks, so too shall you.\"\n\u2014Venser", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Dan Scott", "artist_ids": ["f852fa13-137e-40f2-bbc1-0f01df09c0e0"], "illustration_id": "6c36c762-1ea6-49cd-b0f3-13719c133cdf", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 16964, "penny_rank": 7435, "prices": {"usd": "0.20", "usd_foil": "1.95", "usd_etched": null, "eur": "0.10", "eur_foil": "0.25", "tix": "0.04"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=129022", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Dismal+Failure&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Dismal+Failure&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Dismal+Failure"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/14712?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Dismal+Failure&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/26455?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "1e55d6be-7682-4786-9872-e847afd710b0", "oracle_id": "5c828a5e-10ae-4f63-86fd-2f160af43cc3", "multiverse_ids": [4695], "mtgo_id": 10115, "mtgo_foil_id": 10116, "tcgplayer_id": 5522, "cardmarket_id": 8793, "name": "Dismiss", "lang": "en", "released_at": "1997-10-14", "uri": "https://api.scryfall.com/cards/1e55d6be-7682-4786-9872-e847afd710b0", "scryfall_uri": "https://scryfall.com/card/tmp/58/dismiss?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/1/e/1e55d6be-7682-4786-9872-e847afd710b0.jpg?1562052798", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/e/1e55d6be-7682-4786-9872-e847afd710b0.jpg?1562052798", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/1/e/1e55d6be-7682-4786-9872-e847afd710b0.jpg?1562052798", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/1/e/1e55d6be-7682-4786-9872-e847afd710b0.png?1562052798", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/e/1e55d6be-7682-4786-9872-e847afd710b0.jpg?1562052798", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/1/e/1e55d6be-7682-4786-9872-e847afd710b0.jpg?1562052798"}, "mana_cost": "{2}{U}{U}", "cmc": 4.0, "type_line": "Instant", "oracle_text": "Counter target spell.\nDraw a card.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "10df3a67-178e-4363-8668-34f0e6edf2a7", "set": "tmp", "set_name": "Tempest", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/10df3a67-178e-4363-8668-34f0e6edf2a7", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Atmp&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/tmp?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/1e55d6be-7682-4786-9872-e847afd710b0/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A5c828a5e-10ae-4f63-86fd-2f160af43cc3&unique=prints", "collector_number": "58", "digital": false, "rarity": "uncommon", "flavor_text": "\"There is nothing you can do that I cannot simply deny.\"\n\u2014Ertai, wizard adept", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Donato Giancola", "artist_ids": ["90332db2-aecb-4d79-917b-95cbeb8d0cb6"], "illustration_id": "1e92af98-bf72-4dbc-a86b-2d3c2f238311", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 6017, "penny_rank": 243, "prices": {"usd": "0.23", "usd_foil": null, "usd_etched": null, "eur": "0.09", "eur_foil": null, "tix": "0.14"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=4695", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Dismiss&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Dismiss&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Dismiss"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/5522?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Dismiss&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/10115?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "bceab6b3-6b64-4964-a501-ce806a6c13ad", "oracle_id": "6d7be242-a072-40ce-b540-95880506cccd", "multiverse_ids": [401858], "mtgo_id": 58363, "mtgo_foil_id": 58364, "tcgplayer_id": 105594, "cardmarket_id": 284829, "name": "Dispel", "lang": "en", "released_at": "2015-10-02", "uri": "https://api.scryfall.com/cards/bceab6b3-6b64-4964-a501-ce806a6c13ad", "scryfall_uri": "https://scryfall.com/card/bfz/76/dispel?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/b/c/bceab6b3-6b64-4964-a501-ce806a6c13ad.jpg?1562939587", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/c/bceab6b3-6b64-4964-a501-ce806a6c13ad.jpg?1562939587", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/b/c/bceab6b3-6b64-4964-a501-ce806a6c13ad.jpg?1562939587", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/b/c/bceab6b3-6b64-4964-a501-ce806a6c13ad.png?1562939587", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/c/bceab6b3-6b64-4964-a501-ce806a6c13ad.jpg?1562939587", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/b/c/bceab6b3-6b64-4964-a501-ce806a6c13ad.jpg?1562939587"}, "mana_cost": "{U}", "cmc": 1.0, "type_line": "Instant", "oracle_text": "Counter target instant spell.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "91719374-7ac5-4afa-ada8-5da964dcf1d4", "set": "bfz", "set_name": "Battle for Zendikar", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/91719374-7ac5-4afa-ada8-5da964dcf1d4", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Abfz&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/bfz?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/bceab6b3-6b64-4964-a501-ce806a6c13ad/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A6d7be242-a072-40ce-b540-95880506cccd&unique=prints", "collector_number": "76", "digital": false, "rarity": "common", "flavor_text": "\"I said we should destroy the Eldrazi. Ugin wanted to return them to stasis. Ugin's arguments were . . . unconvincing.\"\n\u2014Jace Beleren", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Chase Stone", "artist_ids": ["2d753f61-5f5b-468e-97ea-8e0fdd347340"], "illustration_id": "ad38153b-f98d-45f5-bcc5-90bd9d1fc1b0", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 304, "penny_rank": 1980, "prices": {"usd": "0.25", "usd_foil": "4.69", "usd_etched": null, "eur": "0.16", "eur_foil": "0.95", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=401858", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Dispel&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Dispel&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Dispel"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/105594?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Dispel&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/58363?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "08d4a8d7-c136-472f-8146-a1100701ca4f", "oracle_id": "6d7be242-a072-40ce-b540-95880506cccd", "multiverse_ids": [253566], "mtgo_id": 46587, "mtgo_foil_id": 46588, "tcgplayer_id": 66550, "cardmarket_id": 258411, "name": "Dispel", "lang": "en", "released_at": "2012-10-05", "uri": "https://api.scryfall.com/cards/08d4a8d7-c136-472f-8146-a1100701ca4f", "scryfall_uri": "https://scryfall.com/card/rtr/36/dispel?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/0/8/08d4a8d7-c136-472f-8146-a1100701ca4f.jpg?1562782227", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/8/08d4a8d7-c136-472f-8146-a1100701ca4f.jpg?1562782227", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/0/8/08d4a8d7-c136-472f-8146-a1100701ca4f.jpg?1562782227", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/0/8/08d4a8d7-c136-472f-8146-a1100701ca4f.png?1562782227", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/8/08d4a8d7-c136-472f-8146-a1100701ca4f.jpg?1562782227", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/0/8/08d4a8d7-c136-472f-8146-a1100701ca4f.jpg?1562782227"}, "mana_cost": "{U}", "cmc": 1.0, "type_line": "Instant", "oracle_text": "Counter target instant spell.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "80b2374d-c5f1-403e-9772-f6c806fd275e", "set": "rtr", "set_name": "Return to Ravnica", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/80b2374d-c5f1-403e-9772-f6c806fd275e", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Artr&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/rtr?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/08d4a8d7-c136-472f-8146-a1100701ca4f/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A6d7be242-a072-40ce-b540-95880506cccd&unique=prints", "collector_number": "36", "digital": false, "rarity": "common", "flavor_text": "\"Civilization will subsume us unless we overwhelm it instead.\"\n\u2014Speaker Zegana", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Chase Stone", "artist_ids": ["2d753f61-5f5b-468e-97ea-8e0fdd347340"], "illustration_id": "8e852281-c847-4086-a5dc-444865552e9c", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 304, "penny_rank": 1980, "prices": {"usd": "0.21", "usd_foil": "4.08", "usd_etched": null, "eur": "0.17", "eur_foil": "1.19", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=253566", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Dispel&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Dispel&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Dispel"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/66550?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Dispel&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/46587?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "f178d0cc-5dd1-41ab-a2e8-218ece6f2a86", "oracle_id": "6d7be242-a072-40ce-b540-95880506cccd", "multiverse_ids": [201562], "mtgo_id": 35543, "mtgo_foil_id": 35544, "tcgplayer_id": 34359, "cardmarket_id": 22166, "name": "Dispel", "lang": "en", "released_at": "2010-02-05", "uri": "https://api.scryfall.com/cards/f178d0cc-5dd1-41ab-a2e8-218ece6f2a86", "scryfall_uri": "https://scryfall.com/card/wwk/26/dispel?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/f/1/f178d0cc-5dd1-41ab-a2e8-218ece6f2a86.jpg?1562299138", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/1/f178d0cc-5dd1-41ab-a2e8-218ece6f2a86.jpg?1562299138", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/f/1/f178d0cc-5dd1-41ab-a2e8-218ece6f2a86.jpg?1562299138", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/f/1/f178d0cc-5dd1-41ab-a2e8-218ece6f2a86.png?1562299138", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/1/f178d0cc-5dd1-41ab-a2e8-218ece6f2a86.jpg?1562299138", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/f/1/f178d0cc-5dd1-41ab-a2e8-218ece6f2a86.jpg?1562299138"}, "mana_cost": "{U}", "cmc": 1.0, "type_line": "Instant", "oracle_text": "Counter target instant spell.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "2f248ce6-c2a5-4c6f-a2be-0c593fbe173c", "set": "wwk", "set_name": "Worldwake", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/2f248ce6-c2a5-4c6f-a2be-0c593fbe173c", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Awwk&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/wwk?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/f178d0cc-5dd1-41ab-a2e8-218ece6f2a86/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A6d7be242-a072-40ce-b540-95880506cccd&unique=prints", "collector_number": "26", "digital": false, "rarity": "common", "flavor_text": "The Jwari winds undo reality as easily as they scatter a pile of leaves.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Vance Kovacs", "artist_ids": ["b5516011-4722-4fc8-8542-102cecc52b71"], "illustration_id": "655bb918-764a-450e-ac04-047126506cbd", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 304, "penny_rank": 1980, "prices": {"usd": "0.23", "usd_foil": "12.26", "usd_etched": null, "eur": "0.22", "eur_foil": "5.00", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=201562", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Dispel&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Dispel&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Dispel"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/34359?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Dispel&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/35543?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "0c257df6-f275-40db-bfe3-a9291356cdf7", "oracle_id": "aefb1463-76fb-419e-8cda-8c5bfb88a3d2", "multiverse_ids": [35344], "mtgo_id": 18770, "mtgo_foil_id": 18771, "tcgplayer_id": 10859, "cardmarket_id": 1026, "name": "Dispersal Shield", "lang": "en", "released_at": "2003-05-26", "uri": "https://api.scryfall.com/cards/0c257df6-f275-40db-bfe3-a9291356cdf7", "scryfall_uri": "https://scryfall.com/card/scg/33/dispersal-shield?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/0/c/0c257df6-f275-40db-bfe3-a9291356cdf7.jpg?1562525399", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/c/0c257df6-f275-40db-bfe3-a9291356cdf7.jpg?1562525399", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/0/c/0c257df6-f275-40db-bfe3-a9291356cdf7.jpg?1562525399", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/0/c/0c257df6-f275-40db-bfe3-a9291356cdf7.png?1562525399", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/c/0c257df6-f275-40db-bfe3-a9291356cdf7.jpg?1562525399", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/0/c/0c257df6-f275-40db-bfe3-a9291356cdf7.jpg?1562525399"}, "mana_cost": "{1}{U}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Counter target spell if its mana value is less than or equal to the highest mana value among permanents you control.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "5133c3a1-1412-4ce6-a1f0-73b695966ded", "set": "scg", "set_name": "Scourge", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/5133c3a1-1412-4ce6-a1f0-73b695966ded", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ascg&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/scg?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/0c257df6-f275-40db-bfe3-a9291356cdf7/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aaefb1463-76fb-419e-8cda-8c5bfb88a3d2&unique=prints", "collector_number": "33", "digital": false, "rarity": "common", "flavor_text": "\"Maybe next time.\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Dave Dorman", "artist_ids": ["9235458b-ce92-45bd-a430-a72ecd8e6176"], "illustration_id": "93c165d7-29b0-4a46-9e95-ed90ed60531f", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 11583, "penny_rank": 3800, "prices": {"usd": "0.17", "usd_foil": "12.94", "usd_etched": null, "eur": "0.02", "eur_foil": "0.50", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=35344", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Dispersal+Shield&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Dispersal+Shield&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Dispersal+Shield"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/10859?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Dispersal+Shield&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/18770?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "c000a02f-6b7e-4925-a938-59e645e980d7", "oracle_id": "76347258-71d5-4874-adde-ff7aa932b808", "multiverse_ids": [23000], "mtgo_id": 14399, "mtgo_foil_id": 14400, "tcgplayer_id": 7475, "cardmarket_id": 3471, "name": "Disrupt", "lang": "en", "released_at": "2000-10-02", "uri": "https://api.scryfall.com/cards/c000a02f-6b7e-4925-a938-59e645e980d7", "scryfall_uri": "https://scryfall.com/card/inv/51/disrupt?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/c/0/c000a02f-6b7e-4925-a938-59e645e980d7.jpg?1562933600", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/0/c000a02f-6b7e-4925-a938-59e645e980d7.jpg?1562933600", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/c/0/c000a02f-6b7e-4925-a938-59e645e980d7.jpg?1562933600", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/c/0/c000a02f-6b7e-4925-a938-59e645e980d7.png?1562933600", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/0/c000a02f-6b7e-4925-a938-59e645e980d7.jpg?1562933600", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/c/0/c000a02f-6b7e-4925-a938-59e645e980d7.jpg?1562933600"}, "mana_cost": "{U}", "cmc": 1.0, "type_line": "Instant", "oracle_text": "Counter target instant or sorcery spell unless its controller pays {1}.\nDraw a card.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "b9ae5e02-7726-47ca-b5e4-5ec402b41cd1", "set": "inv", "set_name": "Invasion", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/b9ae5e02-7726-47ca-b5e4-5ec402b41cd1", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ainv&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/inv?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/c000a02f-6b7e-4925-a938-59e645e980d7/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A76347258-71d5-4874-adde-ff7aa932b808&unique=prints", "collector_number": "51", "digital": false, "rarity": "uncommon", "flavor_text": "Teferi wanted no part of Urza's battle plans, but both agreed the Phyrexian portal must be closed.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Paolo Parente", "artist_ids": ["d48dd097-720d-476a-8722-6a02854ae28b"], "illustration_id": "a7d30b52-7cb7-418c-badb-765d75e3118c", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 7129, "prices": {"usd": "0.29", "usd_foil": "21.99", "usd_etched": null, "eur": "0.40", "eur_foil": "29.99", "tix": "0.05"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=23000", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Disrupt&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Disrupt&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Disrupt"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/7475?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Disrupt&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/14399?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "c6cc89b0-9acf-452b-ac1a-bc7e90eb32fc", "oracle_id": "76347258-71d5-4874-adde-ff7aa932b808", "multiverse_ids": [4483], "mtgo_id": 9231, "mtgo_foil_id": 9232, "tcgplayer_id": 6013, "cardmarket_id": 8605, "name": "Disrupt", "lang": "en", "released_at": "1997-06-09", "uri": "https://api.scryfall.com/cards/c6cc89b0-9acf-452b-ac1a-bc7e90eb32fc", "scryfall_uri": "https://scryfall.com/card/wth/37/disrupt?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/c/6/c6cc89b0-9acf-452b-ac1a-bc7e90eb32fc.jpg?1562803281", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/6/c6cc89b0-9acf-452b-ac1a-bc7e90eb32fc.jpg?1562803281", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/c/6/c6cc89b0-9acf-452b-ac1a-bc7e90eb32fc.jpg?1562803281", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/c/6/c6cc89b0-9acf-452b-ac1a-bc7e90eb32fc.png?1562803281", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/6/c6cc89b0-9acf-452b-ac1a-bc7e90eb32fc.jpg?1562803281", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/c/6/c6cc89b0-9acf-452b-ac1a-bc7e90eb32fc.jpg?1562803281"}, "mana_cost": "{U}", "cmc": 1.0, "type_line": "Instant", "oracle_text": "Counter target instant or sorcery spell unless its controller pays {1}.\nDraw a card.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "700997ac-add2-4ce2-992e-5efa0fdfc0e9", "set": "wth", "set_name": "Weatherlight", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/700997ac-add2-4ce2-992e-5efa0fdfc0e9", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Awth&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/wth?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/c6cc89b0-9acf-452b-ac1a-bc7e90eb32fc/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A76347258-71d5-4874-adde-ff7aa932b808&unique=prints", "collector_number": "37", "digital": false, "rarity": "common", "flavor_text": "Oh, I'm sorry\u2014did I break your concentration?", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Adam Rex", "artist_ids": ["445bd2fb-4a70-4599-87a4-83cf5979fc56"], "illustration_id": "ffe4f1c9-6918-400d-918f-4da1024bf96b", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 7129, "prices": {"usd": "0.22", "usd_foil": null, "usd_etched": null, "eur": "0.39", "eur_foil": null, "tix": "0.05"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=4483", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Disrupt&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Disrupt&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Disrupt"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/6013?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Disrupt&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/9231?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "15589745-4c0a-4edf-ad45-3b7fa45e70c5", "oracle_id": "2912d93d-ed51-41ef-b64f-3cb6581c09e5", "multiverse_ids": [74128], "mtgo_id": 21685, "mtgo_foil_id": 21686, "tcgplayer_id": 12249, "cardmarket_id": 12807, "name": "Disrupting Shoal", "lang": "en", "released_at": "2005-02-04", "uri": "https://api.scryfall.com/cards/15589745-4c0a-4edf-ad45-3b7fa45e70c5", "scryfall_uri": "https://scryfall.com/card/bok/33/disrupting-shoal?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/1/5/15589745-4c0a-4edf-ad45-3b7fa45e70c5.jpg?1562875608", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/5/15589745-4c0a-4edf-ad45-3b7fa45e70c5.jpg?1562875608", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/1/5/15589745-4c0a-4edf-ad45-3b7fa45e70c5.jpg?1562875608", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/1/5/15589745-4c0a-4edf-ad45-3b7fa45e70c5.png?1562875608", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/5/15589745-4c0a-4edf-ad45-3b7fa45e70c5.jpg?1562875608", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/1/5/15589745-4c0a-4edf-ad45-3b7fa45e70c5.jpg?1562875608"}, "mana_cost": "{X}{U}{U}", "cmc": 2.0, "type_line": "Instant \u2014 Arcane", "oracle_text": "You may exile a blue card with mana value X from your hand rather than pay this spell's mana cost.\nCounter target spell if its mana value is X.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "d4b88587-a1f5-4b47-9e24-78ec9e57bd0e", "set": "bok", "set_name": "Betrayers of Kamigawa", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/d4b88587-a1f5-4b47-9e24-78ec9e57bd0e", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Abok&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/bok?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/15589745-4c0a-4edf-ad45-3b7fa45e70c5/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A2912d93d-ed51-41ef-b64f-3cb6581c09e5&unique=prints", "collector_number": "33", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Scott M. Fischer", "artist_ids": ["23b0cf43-3e43-44c6-8329-96446eca5bce"], "illustration_id": "6615c37c-f403-419f-97c4-fda6b6a9843b", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 10221, "prices": {"usd": "1.08", "usd_foil": "13.16", "usd_etched": null, "eur": "0.70", "eur_foil": "8.79", "tix": "0.01"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=74128", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Disrupting+Shoal&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Disrupting+Shoal&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Disrupting+Shoal"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/12249?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Disrupting+Shoal&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/21685?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "053ab598-06a4-43ae-b9fd-c291bd05642c", "oracle_id": "4ca3306b-06f7-4a09-b904-f5540d11ddf1", "multiverse_ids": [548347], "mtgo_id": 97018, "arena_id": 79474, "tcgplayer_id": 262783, "cardmarket_id": 608193, "name": "Disruption Protocol", "lang": "en", "released_at": "2022-02-18", "uri": "https://api.scryfall.com/cards/053ab598-06a4-43ae-b9fd-c291bd05642c", "scryfall_uri": "https://scryfall.com/card/neo/51/disruption-protocol?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/0/5/053ab598-06a4-43ae-b9fd-c291bd05642c.jpg?1654566666", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/5/053ab598-06a4-43ae-b9fd-c291bd05642c.jpg?1654566666", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/0/5/053ab598-06a4-43ae-b9fd-c291bd05642c.jpg?1654566666", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/0/5/053ab598-06a4-43ae-b9fd-c291bd05642c.png?1654566666", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/5/053ab598-06a4-43ae-b9fd-c291bd05642c.jpg?1654566666", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/0/5/053ab598-06a4-43ae-b9fd-c291bd05642c.jpg?1654566666"}, "mana_cost": "{U}{U}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "As an additional cost to cast this spell, tap an untapped artifact you control or pay {1}.\nCounter target spell.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo", "arena"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "59a2059f-5482-433f-8761-eb2e17859b71", "set": "neo", "set_name": "Kamigawa: Neon Dynasty", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/59a2059f-5482-433f-8761-eb2e17859b71", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aneo&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/neo?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/053ab598-06a4-43ae-b9fd-c291bd05642c/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A4ca3306b-06f7-4a09-b904-f5540d11ddf1&unique=prints", "collector_number": "51", "digital": false, "rarity": "common", "flavor_text": "\"Let's just turn that off, shall we?\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Pauline Voss", "artist_ids": ["d0d814a5-f4bc-4383-afe5-a3f329b68dce"], "illustration_id": "b3783eaf-bd18-4b90-8d5b-df6ff270e76f", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 6421, "penny_rank": 4399, "prices": {"usd": "0.05", "usd_foil": "0.09", "usd_etched": null, "eur": "0.03", "eur_foil": "0.06", "tix": "0.01"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=548347", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Disruption+Protocol&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Disruption+Protocol&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Disruption+Protocol"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/262783?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Disruption+Protocol&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/97018?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "4689b3f2-e4b7-448e-b3d4-ab33194aafb2", "oracle_id": "4b2e9aa9-6f91-41de-84b6-e9a89be06a53", "multiverse_ids": [534810], "mtgo_id": 93034, "arena_id": 78381, "tcgplayer_id": 247900, "cardmarket_id": 574745, "name": "Dissipate", "lang": "en", "released_at": "2021-09-24", "uri": "https://api.scryfall.com/cards/4689b3f2-e4b7-448e-b3d4-ab33194aafb2", "scryfall_uri": "https://scryfall.com/card/mid/49/dissipate?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/4/6/4689b3f2-e4b7-448e-b3d4-ab33194aafb2.jpg?1634348774", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/6/4689b3f2-e4b7-448e-b3d4-ab33194aafb2.jpg?1634348774", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/4/6/4689b3f2-e4b7-448e-b3d4-ab33194aafb2.jpg?1634348774", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/4/6/4689b3f2-e4b7-448e-b3d4-ab33194aafb2.png?1634348774", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/6/4689b3f2-e4b7-448e-b3d4-ab33194aafb2.jpg?1634348774", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/4/6/4689b3f2-e4b7-448e-b3d4-ab33194aafb2.jpg?1634348774"}, "mana_cost": "{1}{U}{U}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Counter target spell. If that spell is countered this way, exile it instead of putting it into its owner's graveyard.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "44b8eb8f-fa23-401a-98b5-1fbb9871128e", "set": "mid", "set_name": "Innistrad: Midnight Hunt", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/44b8eb8f-fa23-401a-98b5-1fbb9871128e", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Amid&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/mid?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/4689b3f2-e4b7-448e-b3d4-ab33194aafb2/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A4b2e9aa9-6f91-41de-84b6-e9a89be06a53&unique=prints", "collector_number": "49", "digital": false, "rarity": "uncommon", "flavor_text": "\"Morning light, morning light,\nChase away the fears of night.\"\n\u2014Gavony children's rhyme", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "David Palumbo", "artist_ids": ["04ce1c75-e30c-4b7a-8cb0-b53e4ecc2f39"], "illustration_id": "766bc054-cb42-45b6-9b20-2314ee4da76f", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 2665, "penny_rank": 1089, "preview": {"source": "Branca", "source_uri": "https://twitter.com/MartaBranc0/status/1433808020476137509", "previewed_at": "2021-09-03"}, "prices": {"usd": "0.06", "usd_foil": "0.08", "usd_etched": null, "eur": "0.07", "eur_foil": "0.12", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=534810", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Dissipate&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Dissipate&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Dissipate"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/247900?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Dissipate&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/93034?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "5d778082-bcdb-423a-b16f-57ac0d4dace7", "oracle_id": "4b2e9aa9-6f91-41de-84b6-e9a89be06a53", "multiverse_ids": [241985], "mtgo_id": 42664, "mtgo_foil_id": 42665, "tcgplayer_id": 56247, "cardmarket_id": 250692, "name": "Dissipate", "lang": "en", "released_at": "2011-09-30", "uri": "https://api.scryfall.com/cards/5d778082-bcdb-423a-b16f-57ac0d4dace7", "scryfall_uri": "https://scryfall.com/card/isd/53/dissipate?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/5/d/5d778082-bcdb-423a-b16f-57ac0d4dace7.jpg?1562830916", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/d/5d778082-bcdb-423a-b16f-57ac0d4dace7.jpg?1562830916", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/5/d/5d778082-bcdb-423a-b16f-57ac0d4dace7.jpg?1562830916", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/5/d/5d778082-bcdb-423a-b16f-57ac0d4dace7.png?1562830916", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/d/5d778082-bcdb-423a-b16f-57ac0d4dace7.jpg?1562830916", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/5/d/5d778082-bcdb-423a-b16f-57ac0d4dace7.jpg?1562830916"}, "mana_cost": "{1}{U}{U}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Counter target spell. If that spell is countered this way, exile it instead of putting it into its owner's graveyard.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "d1026945-2969-42b9-be53-f941405a58cb", "set": "isd", "set_name": "Innistrad", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/d1026945-2969-42b9-be53-f941405a58cb", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aisd&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/isd?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/5d778082-bcdb-423a-b16f-57ac0d4dace7/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A4b2e9aa9-6f91-41de-84b6-e9a89be06a53&unique=prints", "collector_number": "53", "digital": false, "rarity": "uncommon", "flavor_text": "\"This abomination never belonged in our world. I'm merely setting it free.\"\n\u2014Dierk, geistmage", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Tomasz Jedruszek", "artist_ids": ["bba69285-2445-4a4b-a847-59397be972ea"], "illustration_id": "dbf79234-44d3-43f4-9b51-15620fa5b092", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 2665, "penny_rank": 1089, "prices": {"usd": "0.17", "usd_foil": "0.91", "usd_etched": null, "eur": "0.04", "eur_foil": "1.00", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=241985", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Dissipate&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Dissipate&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Dissipate"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/56247?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Dissipate&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/42664?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "36d9271d-6dbf-4640-9222-721a7a3ccc08", "oracle_id": "4b2e9aa9-6f91-41de-84b6-e9a89be06a53", "multiverse_ids": [3332], "mtgo_id": 6909, "mtgo_foil_id": 6910, "tcgplayer_id": 5032, "cardmarket_id": 8112, "name": "Dissipate", "lang": "en", "released_at": "1996-10-08", "uri": "https://api.scryfall.com/cards/36d9271d-6dbf-4640-9222-721a7a3ccc08", "scryfall_uri": "https://scryfall.com/card/mir/61/dissipate?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/3/6/36d9271d-6dbf-4640-9222-721a7a3ccc08.jpg?1562718782", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/6/36d9271d-6dbf-4640-9222-721a7a3ccc08.jpg?1562718782", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/3/6/36d9271d-6dbf-4640-9222-721a7a3ccc08.jpg?1562718782", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/3/6/36d9271d-6dbf-4640-9222-721a7a3ccc08.png?1562718782", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/6/36d9271d-6dbf-4640-9222-721a7a3ccc08.jpg?1562718782", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/3/6/36d9271d-6dbf-4640-9222-721a7a3ccc08.jpg?1562718782"}, "mana_cost": "{1}{U}{U}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Counter target spell. If that spell is countered this way, exile it instead of putting it into its owner's graveyard.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "5f06acf3-8123-4a78-b2e7-089b0b775a4a", "set": "mir", "set_name": "Mirage", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/5f06acf3-8123-4a78-b2e7-089b0b775a4a", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Amir&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/mir?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/36d9271d-6dbf-4640-9222-721a7a3ccc08/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A4b2e9aa9-6f91-41de-84b6-e9a89be06a53&unique=prints", "collector_number": "61", "digital": false, "rarity": "uncommon", "flavor_text": "\"If you weren't born with it, you don't need it.\"\n\u2014Grahilah, former trader of Amiqat", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Richard Kane Ferguson", "artist_ids": ["191620ed-2361-444e-96a6-1fe7ce32ef3b"], "illustration_id": "aec0617f-8b74-4553-bac2-21d096d4f1c4", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 2665, "penny_rank": 1089, "prices": {"usd": "0.24", "usd_foil": null, "usd_etched": null, "eur": "0.44", "eur_foil": null, "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=3332", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Dissipate&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Dissipate&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Dissipate"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/5032?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Dissipate&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/6909?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "992e8119-f933-4e54-bb04-e1cc78f7e87b", "oracle_id": "2f0741f9-802b-4761-8094-7b1f3ea1a424", "multiverse_ids": [373557], "mtgo_id": 50360, "mtgo_foil_id": 50361, "tcgplayer_id": 71190, "cardmarket_id": 264124, "name": "Dissolve", "lang": "en", "released_at": "2013-09-27", "uri": "https://api.scryfall.com/cards/992e8119-f933-4e54-bb04-e1cc78f7e87b", "scryfall_uri": "https://scryfall.com/card/ths/47/dissolve?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/9/9/992e8119-f933-4e54-bb04-e1cc78f7e87b.jpg?1562821811", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/9/992e8119-f933-4e54-bb04-e1cc78f7e87b.jpg?1562821811", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/9/9/992e8119-f933-4e54-bb04-e1cc78f7e87b.jpg?1562821811", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/9/9/992e8119-f933-4e54-bb04-e1cc78f7e87b.png?1562821811", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/9/992e8119-f933-4e54-bb04-e1cc78f7e87b.jpg?1562821811", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/9/9/992e8119-f933-4e54-bb04-e1cc78f7e87b.jpg?1562821811"}, "mana_cost": "{1}{U}{U}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Counter target spell. Scry 1. (Look at the top card of your library. You may put that card on the bottom of your library.)", "colors": ["U"], "color_identity": ["U"], "keywords": ["Scry"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "69093d6f-e25a-41a4-8cf5-688d7f11c0fb", "set": "ths", "set_name": "Theros", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/69093d6f-e25a-41a4-8cf5-688d7f11c0fb", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aths&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ths?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/992e8119-f933-4e54-bb04-e1cc78f7e87b/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A2f0741f9-802b-4761-8094-7b1f3ea1a424&unique=prints", "collector_number": "47", "digital": false, "rarity": "uncommon", "flavor_text": "\"You thought only the gods could stop you?\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Wesley Burt", "artist_ids": ["b98c9d94-8bdb-49af-871d-7bac92274535"], "illustration_id": "11286764-f854-4b0e-834b-38ed1ea5fcfd", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 2854, "penny_rank": 306, "prices": {"usd": "0.19", "usd_foil": "0.47", "usd_etched": null, "eur": "0.08", "eur_foil": "0.49", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=373557", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Dissolve&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Dissolve&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Dissolve"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/71190?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Dissolve&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/50360?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "f2068083-5d53-43c3-af22-79bf617ccf1b", "oracle_id": "2f0741f9-802b-4761-8094-7b1f3ea1a424", "multiverse_ids": [], "tcgplayer_id": 82793, "cardmarket_id": 266966, "name": "Dissolve", "lang": "en", "released_at": "2014-01-01", "uri": "https://api.scryfall.com/cards/f2068083-5d53-43c3-af22-79bf617ccf1b", "scryfall_uri": "https://scryfall.com/card/f14/6/dissolve?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/f/2/f2068083-5d53-43c3-af22-79bf617ccf1b.jpg?1562640127", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/2/f2068083-5d53-43c3-af22-79bf617ccf1b.jpg?1562640127", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/f/2/f2068083-5d53-43c3-af22-79bf617ccf1b.jpg?1562640127", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/f/2/f2068083-5d53-43c3-af22-79bf617ccf1b.png?1562640127", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/2/f2068083-5d53-43c3-af22-79bf617ccf1b.jpg?1562640127", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/f/2/f2068083-5d53-43c3-af22-79bf617ccf1b.jpg?1562640127"}, "mana_cost": "{1}{U}{U}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Counter target spell. Scry 1. (Look at the top card of your library. You may put that card on the bottom of your library.)", "colors": ["U"], "color_identity": ["U"], "keywords": ["Scry"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": true, "nonfoil": false, "finishes": ["foil"], "oversized": false, "promo": true, "reprint": true, "variation": false, "set_id": "ed1404ce-ac05-4d93-8283-163a50bfc9b5", "set": "f14", "set_name": "Friday Night Magic 2014", "set_type": "promo", "set_uri": "https://api.scryfall.com/sets/ed1404ce-ac05-4d93-8283-163a50bfc9b5", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Af14&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/f14?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/f2068083-5d53-43c3-af22-79bf617ccf1b/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A2f0741f9-802b-4761-8094-7b1f3ea1a424&unique=prints", "collector_number": "6", "digital": false, "rarity": "rare", "watermark": "wotc", "flavor_text": "\"You thought only the gods could stop you?\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Jeff Simpson", "artist_ids": ["bb21cc10-54bf-4d10-b90c-72ba55dd3d37"], "illustration_id": "46537e5b-4bfd-4147-b89e-e2c2e9733b7d", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "promo_types": ["tourney", "fnm"], "edhrec_rank": 2854, "penny_rank": 306, "prices": {"usd": null, "usd_foil": "0.53", "usd_etched": null, "eur": null, "eur_foil": "0.30", "tix": null}, "related_uris": {"tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Dissolve&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Dissolve&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Dissolve"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/82793?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Dissolve&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Dissolve&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "1958d96e-ec44-48ab-80b1-5b01a24ac7b8", "oracle_id": "7b1c1a0c-f443-4eb5-a430-9eea886361ca", "multiverse_ids": [513518], "mtgo_id": 88559, "arena_id": 76434, "tcgplayer_id": 235990, "cardmarket_id": 558070, "name": "Divide by Zero", "lang": "en", "released_at": "2021-04-23", "uri": "https://api.scryfall.com/cards/1958d96e-ec44-48ab-80b1-5b01a24ac7b8", "scryfall_uri": "https://scryfall.com/card/stx/41/divide-by-zero?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/1/9/1958d96e-ec44-48ab-80b1-5b01a24ac7b8.jpg?1644607565", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/9/1958d96e-ec44-48ab-80b1-5b01a24ac7b8.jpg?1644607565", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/1/9/1958d96e-ec44-48ab-80b1-5b01a24ac7b8.jpg?1644607565", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/1/9/1958d96e-ec44-48ab-80b1-5b01a24ac7b8.png?1644607565", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/9/1958d96e-ec44-48ab-80b1-5b01a24ac7b8.jpg?1644607565", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/1/9/1958d96e-ec44-48ab-80b1-5b01a24ac7b8.jpg?1644607565"}, "mana_cost": "{2}{U}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Return target spell or permanent with mana value 1 or greater to its owner's hand.\nLearn. (You may reveal a Lesson card you own from outside the game and put it into your hand, or discard a card to draw a card.)", "colors": ["U"], "color_identity": ["U"], "keywords": ["Learn"], "all_parts": [{"object": "related_card", "id": "e550b066-1dc3-47a9-a89b-fcaee5706825", "component": "combo_piece", "name": "A-Divide by Zero", "type_line": "Instant", "uri": "https://api.scryfall.com/cards/e550b066-1dc3-47a9-a89b-fcaee5706825"}, {"object": "related_card", "id": "1958d96e-ec44-48ab-80b1-5b01a24ac7b8", "component": "combo_piece", "name": "Divide by Zero", "type_line": "Instant", "uri": "https://api.scryfall.com/cards/1958d96e-ec44-48ab-80b1-5b01a24ac7b8"}], "legalities": {"standard": "banned", "future": "banned", "historic": "not_legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "541c3c28-8747-40e5-a231-8e8f33234859", "set": "stx", "set_name": "Strixhaven: School of Mages", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/541c3c28-8747-40e5-a231-8e8f33234859", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Astx&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/stx?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/1958d96e-ec44-48ab-80b1-5b01a24ac7b8/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A7b1c1a0c-f443-4eb5-a430-9eea886361ca&unique=prints", "collector_number": "41", "digital": false, "rarity": "uncommon", "flavor_text": "\"Misery. Inadequacy. Failure. The common denominator is you.\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Liiga Smilshkalne", "artist_ids": ["5a50ced2-b301-4195-8af4-f7e1bae07d28"], "illustration_id": "8b3a3869-c059-4b50-aa61-46ca6fbb3235", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 9153, "penny_rank": 1300, "prices": {"usd": "0.13", "usd_foil": "0.20", "usd_etched": null, "eur": "0.14", "eur_foil": "0.30", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=513518", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Divide+by+Zero&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Divide+by+Zero&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Divide+by+Zero"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/235990?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Divide+by+Zero&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/88559?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "2c7e3c58-3cda-4891-8b3d-33bb21568cf5", "oracle_id": "9fe57d74-0394-4263-a1b1-da9773b485a6", "multiverse_ids": [179544], "mtgo_id": 32272, "mtgo_foil_id": 32273, "tcgplayer_id": 31720, "cardmarket_id": 20966, "name": "Double Negative", "lang": "en", "released_at": "2009-04-30", "uri": "https://api.scryfall.com/cards/2c7e3c58-3cda-4891-8b3d-33bb21568cf5", "scryfall_uri": "https://scryfall.com/card/arb/87/double-negative?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/2/c/2c7e3c58-3cda-4891-8b3d-33bb21568cf5.jpg?1562640325", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/c/2c7e3c58-3cda-4891-8b3d-33bb21568cf5.jpg?1562640325", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/2/c/2c7e3c58-3cda-4891-8b3d-33bb21568cf5.jpg?1562640325", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/2/c/2c7e3c58-3cda-4891-8b3d-33bb21568cf5.png?1562640325", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/c/2c7e3c58-3cda-4891-8b3d-33bb21568cf5.jpg?1562640325", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/2/c/2c7e3c58-3cda-4891-8b3d-33bb21568cf5.jpg?1562640325"}, "mana_cost": "{U}{U}{R}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Counter up to two target spells.", "colors": ["R", "U"], "color_identity": ["R", "U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "db486ec5-141d-4781-9ee5-5456926934c1", "set": "arb", "set_name": "Alara Reborn", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/db486ec5-141d-4781-9ee5-5456926934c1", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aarb&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/arb?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/2c7e3c58-3cda-4891-8b3d-33bb21568cf5/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A9fe57d74-0394-4263-a1b1-da9773b485a6&unique=prints", "collector_number": "87", "digital": false, "rarity": "uncommon", "flavor_text": "They feared each other for their differences but were absolutely terrified at their similarities.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Paolo Parente", "artist_ids": ["d48dd097-720d-476a-8722-6a02854ae28b"], "illustration_id": "5cd6e658-558c-443b-88fd-773434ec4496", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 14002, "penny_rank": 11861, "prices": {"usd": "0.13", "usd_foil": "0.71", "usd_etched": null, "eur": "0.07", "eur_foil": "0.40", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=179544", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Double+Negative&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Double+Negative&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Double+Negative"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/31720?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Double+Negative&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/32272?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "d60ca98f-7f91-4bbd-9d06-dadb0c1da282", "oracle_id": "1b388371-f9ef-45b4-82a3-ca20a8cd7807", "multiverse_ids": [], "tcgplayer_id": 187185, "cardmarket_id": 371835, "name": "Dovin's Veto", "lang": "en", "released_at": "2019-05-03", "uri": "https://api.scryfall.com/cards/d60ca98f-7f91-4bbd-9d06-dadb0c1da282", "scryfall_uri": "https://scryfall.com/card/pwar/193/dovins-veto?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/d/6/d60ca98f-7f91-4bbd-9d06-dadb0c1da282.jpg?1570573658", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/6/d60ca98f-7f91-4bbd-9d06-dadb0c1da282.jpg?1570573658", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/d/6/d60ca98f-7f91-4bbd-9d06-dadb0c1da282.jpg?1570573658", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/d/6/d60ca98f-7f91-4bbd-9d06-dadb0c1da282.png?1570573658", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/6/d60ca98f-7f91-4bbd-9d06-dadb0c1da282.jpg?1570573658", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/d/6/d60ca98f-7f91-4bbd-9d06-dadb0c1da282.jpg?1570573658"}, "mana_cost": "{W}{U}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "This spell can't be countered.\nCounter target noncreature spell.", "colors": ["U", "W"], "color_identity": ["U", "W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": true, "nonfoil": false, "finishes": ["foil"], "oversized": false, "promo": true, "reprint": true, "variation": false, "set_id": "9981777b-983e-4f17-b9b1-fe32cf243e23", "set": "pwar", "set_name": "War of the Spark Promos", "set_type": "promo", "set_uri": "https://api.scryfall.com/sets/9981777b-983e-4f17-b9b1-fe32cf243e23", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Apwar&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/pwar?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/d60ca98f-7f91-4bbd-9d06-dadb0c1da282/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A1b388371-f9ef-45b4-82a3-ca20a8cd7807&unique=prints", "collector_number": "193", "digital": false, "rarity": "uncommon", "watermark": "planeswalker", "flavor_text": "\"I see you've learned nothing, Chandra. You'd still put a match to something rather than understand it.\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Izzy", "artist_ids": ["2c3d2473-ff5d-4309-8194-e0b2def2ab65"], "illustration_id": "e8b7deab-a698-4b8a-b175-dfcda2d2b9a3", "border_color": "black", "frame": "2015", "frame_effects": ["inverted"], "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "promo_types": ["setpromo", "fnm"], "edhrec_rank": 150, "penny_rank": 371, "preview": {"source": "Wizards of the Coast", "source_uri": "https://magic.wizards.com/en/articles/archive/card-preview/war-spark-promos-and-packaging-2019-04-01", "previewed_at": "2019-04-01"}, "prices": {"usd": null, "usd_foil": "5.83", "usd_etched": null, "eur": null, "eur_foil": "2.00", "tix": null}, "related_uris": {"tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Dovin%27s+Veto&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Dovin%27s+Veto&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Dovin%27s+Veto"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/187185?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Dovin%27s+Veto&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Dovin%27s+Veto&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "daca6a57-38b7-4547-9174-a7f548ea1258", "oracle_id": "c5843d13-855f-41dd-ac13-3c7f7e18bb39", "multiverse_ids": [562949], "tcgplayer_id": 273309, "cardmarket_id": 660856, "name": "Dream Fracture", "lang": "en", "released_at": "2022-06-10", "uri": "https://api.scryfall.com/cards/daca6a57-38b7-4547-9174-a7f548ea1258", "scryfall_uri": "https://scryfall.com/card/clb/66/dream-fracture?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/d/a/daca6a57-38b7-4547-9174-a7f548ea1258.jpg?1653691053", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/a/daca6a57-38b7-4547-9174-a7f548ea1258.jpg?1653691053", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/d/a/daca6a57-38b7-4547-9174-a7f548ea1258.jpg?1653691053", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/d/a/daca6a57-38b7-4547-9174-a7f548ea1258.png?1653691053", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/a/daca6a57-38b7-4547-9174-a7f548ea1258.jpg?1653691053", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/d/a/daca6a57-38b7-4547-9174-a7f548ea1258.jpg?1653691053"}, "mana_cost": "{1}{U}{U}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Counter target spell. Its controller draws a card.\nDraw a card.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "5e4c3fe8-fd57-4b20-ad56-c03790a16cea", "set": "clb", "set_name": "Commander Legends: Battle for Baldur's Gate", "set_type": "draft_innovation", "set_uri": "https://api.scryfall.com/sets/5e4c3fe8-fd57-4b20-ad56-c03790a16cea", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aclb&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/clb?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/daca6a57-38b7-4547-9174-a7f548ea1258/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ac5843d13-855f-41dd-ac13-3c7f7e18bb39&unique=prints", "collector_number": "66", "digital": false, "rarity": "common", "flavor_text": "In her dream, Lola gazed into a mirror. Her familiar features warped, her jaw stretching wider and wider until it cracked and her reflection pulled her into its gaping maw.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Liiga Smilshkalne", "artist_ids": ["5a50ced2-b301-4195-8af4-f7e1bae07d28"], "illustration_id": "22d3fbb9-991c-4af0-a2a6-2ed66fcf1123", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 3522, "penny_rank": 9078, "prices": {"usd": "0.04", "usd_foil": "0.13", "usd_etched": null, "eur": "0.10", "eur_foil": "0.23", "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=562949", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Dream+Fracture&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Dream+Fracture&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Dream+Fracture"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/273309?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Dream+Fracture&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Dream+Fracture&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "4cfd71ff-d899-4f5b-b7df-ec47e2840be9", "oracle_id": "c5843d13-855f-41dd-ac13-3c7f7e18bb39", "multiverse_ids": [153036], "mtgo_id": 30066, "mtgo_foil_id": 30067, "tcgplayer_id": 27100, "cardmarket_id": 19481, "name": "Dream Fracture", "lang": "en", "released_at": "2008-07-25", "uri": "https://api.scryfall.com/cards/4cfd71ff-d899-4f5b-b7df-ec47e2840be9", "scryfall_uri": "https://scryfall.com/card/eve/19/dream-fracture?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/4/c/4cfd71ff-d899-4f5b-b7df-ec47e2840be9.jpg?1562911180", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/c/4cfd71ff-d899-4f5b-b7df-ec47e2840be9.jpg?1562911180", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/4/c/4cfd71ff-d899-4f5b-b7df-ec47e2840be9.jpg?1562911180", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/4/c/4cfd71ff-d899-4f5b-b7df-ec47e2840be9.png?1562911180", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/c/4cfd71ff-d899-4f5b-b7df-ec47e2840be9.jpg?1562911180", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/4/c/4cfd71ff-d899-4f5b-b7df-ec47e2840be9.jpg?1562911180"}, "mana_cost": "{1}{U}{U}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Counter target spell. Its controller draws a card.\nDraw a card.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "86b4dfef-f2d1-49d6-825d-7df6bda44357", "set": "eve", "set_name": "Eventide", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/86b4dfef-f2d1-49d6-825d-7df6bda44357", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aeve&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/eve?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/4cfd71ff-d899-4f5b-b7df-ec47e2840be9/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ac5843d13-855f-41dd-ac13-3c7f7e18bb39&unique=prints", "collector_number": "19", "digital": false, "rarity": "uncommon", "flavor_text": "\"Creation is a paradox. It hatches from its opposite.\"\n\u2014Olka, Mistmeadow witch", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Howard Lyon", "artist_ids": ["6dd06426-59fe-4b9c-aad5-6da8446a5c3d"], "illustration_id": "20084d4b-bff5-4620-9663-2590836a5753", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 3522, "penny_rank": 9078, "prices": {"usd": "0.35", "usd_foil": "3.02", "usd_etched": null, "eur": "0.25", "eur_foil": "1.99", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=153036", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Dream+Fracture&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Dream+Fracture&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Dream+Fracture"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/27100?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Dream+Fracture&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/30066?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "69f752d3-3f42-4275-be09-d257c89da70d", "oracle_id": "e9950393-8458-4132-9dc7-01246282a41a", "multiverse_ids": [376314], "mtgo_id": 51302, "mtgo_foil_id": 51303, "tcgplayer_id": 72098, "cardmarket_id": 264919, "name": "Dromar's Charm", "lang": "en", "released_at": "2013-11-01", "uri": "https://api.scryfall.com/cards/69f752d3-3f42-4275-be09-d257c89da70d", "scryfall_uri": "https://scryfall.com/card/c13/187/dromars-charm?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/6/9/69f752d3-3f42-4275-be09-d257c89da70d.jpg?1562917160", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/9/69f752d3-3f42-4275-be09-d257c89da70d.jpg?1562917160", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/6/9/69f752d3-3f42-4275-be09-d257c89da70d.jpg?1562917160", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/6/9/69f752d3-3f42-4275-be09-d257c89da70d.png?1562917160", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/9/69f752d3-3f42-4275-be09-d257c89da70d.jpg?1562917160", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/6/9/69f752d3-3f42-4275-be09-d257c89da70d.jpg?1562917160"}, "mana_cost": "{W}{U}{B}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Choose one \u2014\n\u2022 You gain 5 life.\n\u2022 Counter target spell.\n\u2022 Target creature gets -2/-2 until end of turn.", "colors": ["B", "U", "W"], "color_identity": ["B", "U", "W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "c62e6d4f-af8c-4f27-9bc8-361291890146", "set": "c13", "set_name": "Commander 2013", "set_type": "commander", "set_uri": "https://api.scryfall.com/sets/c62e6d4f-af8c-4f27-9bc8-361291890146", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ac13&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/c13?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/69f752d3-3f42-4275-be09-d257c89da70d/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ae9950393-8458-4132-9dc7-01246282a41a&unique=prints", "collector_number": "187", "digital": false, "rarity": "uncommon", "flavor_text": "\"Wisdom can be summed up in two rules: Control what you can. Eliminate what you cannot.\"\n\u2014Dromar, the Banisher", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Marco Nelor", "artist_ids": ["c0f95ec3-c7ca-47d6-be5c-b37dfce37be5"], "illustration_id": "ead62bf5-e1f8-43d9-b14a-70e029b3ddc8", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "edhrec_rank": 8454, "penny_rank": 4414, "prices": {"usd": "0.24", "usd_foil": null, "usd_etched": null, "eur": "0.29", "eur_foil": null, "tix": "0.04"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=376314", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Dromar%27s+Charm&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Dromar%27s+Charm&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Dromar%27s+Charm"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/72098?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Dromar%27s+Charm&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/51302?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "c7a1894c-af4e-4530-960f-2225916be8cb", "oracle_id": "e9950393-8458-4132-9dc7-01246282a41a", "multiverse_ids": [25862], "mtgo_id": 15109, "mtgo_foil_id": 15110, "tcgplayer_id": 7791, "cardmarket_id": 3360, "name": "Dromar's Charm", "lang": "en", "released_at": "2001-02-05", "uri": "https://api.scryfall.com/cards/c7a1894c-af4e-4530-960f-2225916be8cb", "scryfall_uri": "https://scryfall.com/card/pls/105/dromars-charm?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/c/7/c7a1894c-af4e-4530-960f-2225916be8cb.jpg?1562937176", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/7/c7a1894c-af4e-4530-960f-2225916be8cb.jpg?1562937176", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/c/7/c7a1894c-af4e-4530-960f-2225916be8cb.jpg?1562937176", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/c/7/c7a1894c-af4e-4530-960f-2225916be8cb.png?1562937176", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/7/c7a1894c-af4e-4530-960f-2225916be8cb.jpg?1562937176", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/c/7/c7a1894c-af4e-4530-960f-2225916be8cb.jpg?1562937176"}, "mana_cost": "{W}{U}{B}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Choose one \u2014\n\u2022 You gain 5 life.\n\u2022 Counter target spell.\n\u2022 Target creature gets -2/-2 until end of turn.", "colors": ["B", "U", "W"], "color_identity": ["B", "U", "W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "82dc193b-bd5f-4883-a93f-a4155b467ee0", "set": "pls", "set_name": "Planeshift", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/82dc193b-bd5f-4883-a93f-a4155b467ee0", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Apls&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/pls?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/c7a1894c-af4e-4530-960f-2225916be8cb/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ae9950393-8458-4132-9dc7-01246282a41a&unique=prints", "collector_number": "105", "digital": false, "rarity": "uncommon", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "David Martin", "artist_ids": ["996ad764-4ae0-4952-8bb5-5a75c9d68275"], "illustration_id": "70d7704f-485b-4ed1-acfe-03eadbf49476", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 8454, "penny_rank": 4414, "prices": {"usd": "0.25", "usd_foil": "11.44", "usd_etched": null, "eur": "0.25", "eur_foil": "5.00", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=25862", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Dromar%27s+Charm&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Dromar%27s+Charm&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Dromar%27s+Charm"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/7791?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Dromar%27s+Charm&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/15109?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "8bf5df5b-164d-4ec2-a5e6-bbaea152e271", "oracle_id": "0f264e5b-264e-4e97-9a8d-8ae1d6a286ce", "multiverse_ids": [473150], "mtgo_id": 78520, "arena_id": 70335, "tcgplayer_id": 199207, "cardmarket_id": 401119, "name": "Drown in the Loch", "lang": "en", "released_at": "2019-10-04", "uri": "https://api.scryfall.com/cards/8bf5df5b-164d-4ec2-a5e6-bbaea152e271", "scryfall_uri": "https://scryfall.com/card/eld/188/drown-in-the-loch?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/8/b/8bf5df5b-164d-4ec2-a5e6-bbaea152e271.jpg?1572490739", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/b/8bf5df5b-164d-4ec2-a5e6-bbaea152e271.jpg?1572490739", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/8/b/8bf5df5b-164d-4ec2-a5e6-bbaea152e271.jpg?1572490739", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/8/b/8bf5df5b-164d-4ec2-a5e6-bbaea152e271.png?1572490739", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/b/8bf5df5b-164d-4ec2-a5e6-bbaea152e271.jpg?1572490739", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/8/b/8bf5df5b-164d-4ec2-a5e6-bbaea152e271.jpg?1572490739"}, "mana_cost": "{U}{B}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Choose one \u2014\n\u2022 Counter target spell with mana value less than or equal to the number of cards in its controller's graveyard.\n\u2022 Destroy target creature with mana value less than or equal to the number of cards in its controller's graveyard.", "colors": ["B", "U"], "color_identity": ["B", "U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "a90a7b2f-9dd8-4fc7-9f7d-8ea2797ec782", "set": "eld", "set_name": "Throne of Eldraine", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/a90a7b2f-9dd8-4fc7-9f7d-8ea2797ec782", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aeld&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/eld?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/8bf5df5b-164d-4ec2-a5e6-bbaea152e271/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A0f264e5b-264e-4e97-9a8d-8ae1d6a286ce&unique=prints", "collector_number": "188", "digital": false, "rarity": "uncommon", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "John Stanko", "artist_ids": ["b0f038a0-73b5-4806-918e-9cd11b5f92e1"], "illustration_id": "71af5c85-3c42-41eb-abf6-441003d73ecf", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 670, "penny_rank": 84, "preview": {"source": "Carlos Rom\u00e3o", "source_uri": "https://twitter.com/Jabsmtg/status/1173564674920656896", "previewed_at": "2019-09-16"}, "prices": {"usd": "1.71", "usd_foil": "5.09", "usd_etched": null, "eur": "1.38", "eur_foil": "7.00", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=473150", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Drown+in+the+Loch&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Drown+in+the+Loch&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Drown+in+the+Loch"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/199207?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Drown+in+the+Loch&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/78520?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "01acd1c1-86b2-4423-9ba7-5b9725c0514f", "oracle_id": "0f264e5b-264e-4e97-9a8d-8ae1d6a286ce", "multiverse_ids": [], "mtgo_id": 89911, "tcgplayer_id": 237603, "cardmarket_id": 575337, "name": "Drown in the Loch", "lang": "en", "released_at": "2021-04-26", "uri": "https://api.scryfall.com/cards/01acd1c1-86b2-4423-9ba7-5b9725c0514f", "scryfall_uri": "https://scryfall.com/card/sld/270/drown-in-the-loch?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/0/1/01acd1c1-86b2-4423-9ba7-5b9725c0514f.jpg?1640249448", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/1/01acd1c1-86b2-4423-9ba7-5b9725c0514f.jpg?1640249448", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/0/1/01acd1c1-86b2-4423-9ba7-5b9725c0514f.jpg?1640249448", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/0/1/01acd1c1-86b2-4423-9ba7-5b9725c0514f.png?1640249448", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/1/01acd1c1-86b2-4423-9ba7-5b9725c0514f.jpg?1640249448", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/0/1/01acd1c1-86b2-4423-9ba7-5b9725c0514f.jpg?1640249448"}, "mana_cost": "{U}{B}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Choose one \u2014\n\u2022 Counter target spell with mana value less than or equal to the number of cards in its controller's graveyard.\n\u2022 Destroy target creature with mana value less than or equal to the number of cards in its controller's graveyard.", "colors": ["B", "U"], "color_identity": ["B", "U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "4d92a8a7-ccb0-437d-abdc-9d70fc5ed672", "set": "sld", "set_name": "Secret Lair Drop", "set_type": "box", "set_uri": "https://api.scryfall.com/sets/4d92a8a7-ccb0-437d-abdc-9d70fc5ed672", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Asld&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/sld?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/01acd1c1-86b2-4423-9ba7-5b9725c0514f/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A0f264e5b-264e-4e97-9a8d-8ae1d6a286ce&unique=prints", "collector_number": "270", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Anato Finnstark", "artist_ids": ["05d233e7-4958-4f79-83e6-f9bf8b6ff78e"], "illustration_id": "b42d6b40-0752-4804-8a66-68d980179698", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "edhrec_rank": 670, "penny_rank": 84, "prices": {"usd": "25.33", "usd_foil": "27.32", "usd_etched": null, "eur": "24.99", "eur_foil": "34.00", "tix": "1.48"}, "related_uris": {"tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Drown+in+the+Loch&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Drown+in+the+Loch&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Drown+in+the+Loch"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/237603?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Drown+in+the+Loch&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/89911?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "13798c8c-1aa5-4f95-979b-b971e73d715f", "oracle_id": "d65728cf-e9ce-46d8-a890-e1295b18cfbe", "multiverse_ids": [555384], "mtgo_id": 98585, "arena_id": 80334, "tcgplayer_id": 268903, "cardmarket_id": 652204, "name": "Endless Detour", "lang": "en", "released_at": "2022-04-29", "uri": "https://api.scryfall.com/cards/13798c8c-1aa5-4f95-979b-b971e73d715f", "scryfall_uri": "https://scryfall.com/card/snc/183/endless-detour?utm_source=api", "layout": "normal", "highres_image": false, "image_status": "lowres", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/1/3/13798c8c-1aa5-4f95-979b-b971e73d715f.jpg?1649942599", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/3/13798c8c-1aa5-4f95-979b-b971e73d715f.jpg?1649942599", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/1/3/13798c8c-1aa5-4f95-979b-b971e73d715f.jpg?1649942599", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/1/3/13798c8c-1aa5-4f95-979b-b971e73d715f.png?1649942599", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/3/13798c8c-1aa5-4f95-979b-b971e73d715f.jpg?1649942599", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/1/3/13798c8c-1aa5-4f95-979b-b971e73d715f.jpg?1649942599"}, "mana_cost": "{G}{W}{U}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "The owner of target spell, nonland permanent, or card in a graveyard puts it on the top or bottom of their library.", "colors": ["G", "U", "W"], "color_identity": ["G", "U", "W"], "keywords": [], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo", "arena"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "df837242-8c15-42e4-b049-c933a02dc501", "set": "snc", "set_name": "Streets of New Capenna", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/df837242-8c15-42e4-b049-c933a02dc501", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Asnc&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/snc?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/13798c8c-1aa5-4f95-979b-b971e73d715f/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ad65728cf-e9ce-46d8-a890-e1295b18cfbe&unique=prints", "collector_number": "183", "digital": false, "rarity": "rare", "watermark": "brokers", "flavor_text": "After diverting around the eleventh construction barrier, the taxi driver began to suspect she was being herded into a trap.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Eddie Mendoza", "artist_ids": ["edba879a-50b4-4e4a-8e21-2649f484ef03"], "illustration_id": "38c22d92-2456-4f0d-abae-9406883c8242", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 9386, "preview": {"source": "Arin Hanson", "source_uri": "https://twitter.com/egoraptor/status/1514594319725912072", "previewed_at": "2022-04-14"}, "prices": {"usd": "0.17", "usd_foil": "0.20", "usd_etched": null, "eur": "0.21", "eur_foil": "0.45", "tix": "0.01"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=555384", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Endless+Detour&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Endless+Detour&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Endless+Detour"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/268903?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Endless+Detour&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/98585?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "e55503d2-1b32-43cf-95c6-a4a61047a4dc", "oracle_id": "d65728cf-e9ce-46d8-a890-e1295b18cfbe", "multiverse_ids": [558703], "arena_id": 80483, "tcgplayer_id": 268904, "cardmarket_id": 652220, "name": "Endless Detour", "lang": "en", "released_at": "2022-04-29", "uri": "https://api.scryfall.com/cards/e55503d2-1b32-43cf-95c6-a4a61047a4dc", "scryfall_uri": "https://scryfall.com/card/snc/305/endless-detour?utm_source=api", "layout": "normal", "highres_image": false, "image_status": "lowres", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/e/5/e55503d2-1b32-43cf-95c6-a4a61047a4dc.jpg?1649942620", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/5/e55503d2-1b32-43cf-95c6-a4a61047a4dc.jpg?1649942620", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/e/5/e55503d2-1b32-43cf-95c6-a4a61047a4dc.jpg?1649942620", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/e/5/e55503d2-1b32-43cf-95c6-a4a61047a4dc.png?1649942620", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/5/e55503d2-1b32-43cf-95c6-a4a61047a4dc.jpg?1649942620", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/e/5/e55503d2-1b32-43cf-95c6-a4a61047a4dc.jpg?1649942620"}, "mana_cost": "{G}{W}{U}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "The owner of target spell, nonland permanent, or card in a graveyard puts it on the top or bottom of their library.", "colors": ["G", "U", "W"], "color_identity": ["G", "U", "W"], "keywords": [], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo", "arena"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "df837242-8c15-42e4-b049-c933a02dc501", "set": "snc", "set_name": "Streets of New Capenna", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/df837242-8c15-42e4-b049-c933a02dc501", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Asnc&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/snc?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/e55503d2-1b32-43cf-95c6-a4a61047a4dc/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ad65728cf-e9ce-46d8-a890-e1295b18cfbe&unique=prints", "collector_number": "305", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Jack Hughes", "artist_ids": ["ac1a1722-4d2b-499b-b8a9-2d642d3292cc"], "illustration_id": "cd553fd3-66a3-4894-83bd-b2127ef8a2ae", "border_color": "black", "frame": "2015", "frame_effects": ["showcase"], "security_stamp": "oval", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "promo_types": ["boosterfun"], "edhrec_rank": 9386, "preview": {"source": "Arin Hanson", "source_uri": "https://twitter.com/egoraptor/status/1514594319725912072", "previewed_at": "2022-04-14"}, "prices": {"usd": "0.18", "usd_foil": "0.31", "usd_etched": null, "eur": "0.38", "eur_foil": "0.27", "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=558703", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Endless+Detour&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Endless+Detour&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Endless+Detour"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/268904?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Endless+Detour&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Endless+Detour&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "e7ed250e-12d0-4ebc-9410-5711e71c6d1f", "oracle_id": "30062dd0-c049-4872-8011-8b4810a3fa26", "multiverse_ids": [36414], "mtgo_id": 17452, "mtgo_foil_id": 17453, "tcgplayer_id": 10199, "cardmarket_id": 2165, "name": "Envelop", "lang": "en", "released_at": "2002-05-27", "uri": "https://api.scryfall.com/cards/e7ed250e-12d0-4ebc-9410-5711e71c6d1f", "scryfall_uri": "https://scryfall.com/card/jud/39/envelop?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/e/7/e7ed250e-12d0-4ebc-9410-5711e71c6d1f.jpg?1562632433", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/7/e7ed250e-12d0-4ebc-9410-5711e71c6d1f.jpg?1562632433", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/e/7/e7ed250e-12d0-4ebc-9410-5711e71c6d1f.jpg?1562632433", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/e/7/e7ed250e-12d0-4ebc-9410-5711e71c6d1f.png?1562632433", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/7/e7ed250e-12d0-4ebc-9410-5711e71c6d1f.jpg?1562632433", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/e/7/e7ed250e-12d0-4ebc-9410-5711e71c6d1f.jpg?1562632433"}, "mana_cost": "{U}", "cmc": 1.0, "type_line": "Instant", "oracle_text": "Counter target sorcery spell.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "cd82de1a-36fd-4618-bfe8-b45532a582d9", "set": "jud", "set_name": "Judgment", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/cd82de1a-36fd-4618-bfe8-b45532a582d9", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ajud&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/jud?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/e7ed250e-12d0-4ebc-9410-5711e71c6d1f/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A30062dd0-c049-4872-8011-8b4810a3fa26&unique=prints", "collector_number": "39", "digital": false, "rarity": "common", "flavor_text": "\"What you made will be unmade. What you learned will be unlearned. And when you're done, you will be undone.\"\n\u2014Ambassador Laquatus", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Don Hazeltine", "artist_ids": ["b4117364-73af-47e5-8cf0-901eeea09e01"], "illustration_id": "59707c13-e420-42ac-950f-9dbadc64b111", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 14564, "penny_rank": 4938, "prices": {"usd": "0.23", "usd_foil": "1.83", "usd_etched": null, "eur": "0.37", "eur_foil": "1.95", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=36414", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Envelop&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Envelop&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Envelop"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/10199?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Envelop&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/17452?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "35c7e7fa-1493-4ef8-9cdb-b02b07a1ad85", "oracle_id": "609c529a-b3b3-46d5-b9d0-ae0117507d6e", "multiverse_ids": [4698], "mtgo_id": 9901, "mtgo_foil_id": 9902, "tcgplayer_id": 5542, "cardmarket_id": 8796, "name": "Ertai's Meddling", "lang": "en", "released_at": "1997-10-14", "uri": "https://api.scryfall.com/cards/35c7e7fa-1493-4ef8-9cdb-b02b07a1ad85", "scryfall_uri": "https://scryfall.com/card/tmp/61/ertais-meddling?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/3/5/35c7e7fa-1493-4ef8-9cdb-b02b07a1ad85.jpg?1562053736", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/5/35c7e7fa-1493-4ef8-9cdb-b02b07a1ad85.jpg?1562053736", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/3/5/35c7e7fa-1493-4ef8-9cdb-b02b07a1ad85.jpg?1562053736", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/3/5/35c7e7fa-1493-4ef8-9cdb-b02b07a1ad85.png?1562053736", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/5/35c7e7fa-1493-4ef8-9cdb-b02b07a1ad85.jpg?1562053736", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/3/5/35c7e7fa-1493-4ef8-9cdb-b02b07a1ad85.jpg?1562053736"}, "mana_cost": "{X}{U}", "cmc": 1.0, "type_line": "Instant", "oracle_text": "X can't be 0.\nTarget spell's controller exiles it with X delay counters on it.\nAt the beginning of each of that player's upkeeps, if that card is exiled, remove a delay counter from it. If the card has no delay counters on it, the player puts it onto the stack as a copy of the original spell.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "10df3a67-178e-4363-8668-34f0e6edf2a7", "set": "tmp", "set_name": "Tempest", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/10df3a67-178e-4363-8668-34f0e6edf2a7", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Atmp&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/tmp?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/35c7e7fa-1493-4ef8-9cdb-b02b07a1ad85/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A609c529a-b3b3-46d5-b9d0-ae0117507d6e&unique=prints", "collector_number": "61", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Steve Luke", "artist_ids": ["e2b0133e-a28d-45d1-8843-26285b41d61d"], "illustration_id": "62a50f39-0df4-4775-881c-0e8db22ac179", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 9825, "prices": {"usd": "1.62", "usd_foil": null, "usd_etched": null, "eur": "0.44", "eur_foil": null, "tix": "0.07"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=4698", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Ertai%27s+Meddling&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Ertai%27s+Meddling&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Ertai%27s+Meddling"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/5542?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Ertai%27s+Meddling&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/9901?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "544e3575-9fb6-41f7-a4e6-f8460dfae344", "oracle_id": "93d0691f-17b8-458b-a624-e182fc481f49", "multiverse_ids": [26590], "mtgo_id": 15117, "mtgo_foil_id": 15118, "tcgplayer_id": 7795, "cardmarket_id": 3279, "name": "Ertai's Trickery", "lang": "en", "released_at": "2001-02-05", "uri": "https://api.scryfall.com/cards/544e3575-9fb6-41f7-a4e6-f8460dfae344", "scryfall_uri": "https://scryfall.com/card/pls/24/ertais-trickery?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/5/4/544e3575-9fb6-41f7-a4e6-f8460dfae344.jpg?1562912607", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/4/544e3575-9fb6-41f7-a4e6-f8460dfae344.jpg?1562912607", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/5/4/544e3575-9fb6-41f7-a4e6-f8460dfae344.jpg?1562912607", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/5/4/544e3575-9fb6-41f7-a4e6-f8460dfae344.png?1562912607", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/4/544e3575-9fb6-41f7-a4e6-f8460dfae344.jpg?1562912607", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/5/4/544e3575-9fb6-41f7-a4e6-f8460dfae344.jpg?1562912607"}, "mana_cost": "{U}", "cmc": 1.0, "type_line": "Instant", "oracle_text": "Counter target spell if it was kicked.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "82dc193b-bd5f-4883-a93f-a4155b467ee0", "set": "pls", "set_name": "Planeshift", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/82dc193b-bd5f-4883-a93f-a4155b467ee0", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Apls&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/pls?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/544e3575-9fb6-41f7-a4e6-f8460dfae344/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A93d0691f-17b8-458b-a624-e182fc481f49&unique=prints", "collector_number": "24", "digital": false, "rarity": "uncommon", "flavor_text": "\"Don't worry, Gerrard,\" said Ertai. \"I'm sure the crew will come to your rescue as quickly as they came to mine.\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Kev Walker", "artist_ids": ["f366a0ee-a0cd-466d-ba6a-90058c7a31a6"], "illustration_id": "60fc92ed-eb8e-4ddd-bc50-3d175feee357", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 23129, "prices": {"usd": "0.11", "usd_foil": "0.53", "usd_etched": null, "eur": "0.02", "eur_foil": "0.50", "tix": "0.06"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=26590", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Ertai%27s+Trickery&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Ertai%27s+Trickery&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Ertai%27s+Trickery"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/7795?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Ertai%27s+Trickery&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/15117?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "a98609dc-ea90-4c7e-a191-5e5d0ba16847", "oracle_id": "f51ed0b4-c144-458e-b97c-618b9e1cf25d", "multiverse_ids": [290527], "mtgo_id": 46647, "mtgo_foil_id": 46648, "tcgplayer_id": 66559, "cardmarket_id": 258490, "name": "Essence Backlash", "lang": "en", "released_at": "2012-10-05", "uri": "https://api.scryfall.com/cards/a98609dc-ea90-4c7e-a191-5e5d0ba16847", "scryfall_uri": "https://scryfall.com/card/rtr/160/essence-backlash?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/a/9/a98609dc-ea90-4c7e-a191-5e5d0ba16847.jpg?1562791298", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/9/a98609dc-ea90-4c7e-a191-5e5d0ba16847.jpg?1562791298", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/a/9/a98609dc-ea90-4c7e-a191-5e5d0ba16847.jpg?1562791298", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/a/9/a98609dc-ea90-4c7e-a191-5e5d0ba16847.png?1562791298", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/9/a98609dc-ea90-4c7e-a191-5e5d0ba16847.jpg?1562791298", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/a/9/a98609dc-ea90-4c7e-a191-5e5d0ba16847.jpg?1562791298"}, "mana_cost": "{2}{U}{R}", "cmc": 4.0, "type_line": "Instant", "oracle_text": "Counter target creature spell. Essence Backlash deals damage equal to that spell's power to its controller.", "colors": ["R", "U"], "color_identity": ["R", "U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "80b2374d-c5f1-403e-9772-f6c806fd275e", "set": "rtr", "set_name": "Return to Ravnica", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/80b2374d-c5f1-403e-9772-f6c806fd275e", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Artr&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/rtr?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/a98609dc-ea90-4c7e-a191-5e5d0ba16847/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Af51ed0b4-c144-458e-b97c-618b9e1cf25d&unique=prints", "collector_number": "160", "digital": false, "rarity": "common", "watermark": "izzet", "flavor_text": "\"The other guilds will learn the hard way not to interfere with our investigations.\"\n\u2014Bori Andon, Izzet blastseeker", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Jung Park", "artist_ids": ["269392ac-4c06-4650-98e2-d49a5a7f2371"], "illustration_id": "67b7c4bf-3704-42d3-9d5c-6d898f866271", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 12930, "penny_rank": 13239, "prices": {"usd": "0.05", "usd_foil": "0.21", "usd_etched": null, "eur": "0.06", "eur_foil": "0.20", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=290527", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Essence+Backlash&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Essence+Backlash&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Essence+Backlash"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/66559?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Essence+Backlash&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/46647?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "f39bf1fa-b530-4353-a683-843466227109", "oracle_id": "0f730bd9-2060-46b1-9208-0ac6562e8b2a", "multiverse_ids": [548348], "mtgo_id": 97020, "arena_id": 79475, "tcgplayer_id": 262600, "cardmarket_id": 608194, "name": "Essence Capture", "lang": "en", "released_at": "2022-02-18", "uri": "https://api.scryfall.com/cards/f39bf1fa-b530-4353-a683-843466227109", "scryfall_uri": "https://scryfall.com/card/neo/52/essence-capture?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/f/3/f39bf1fa-b530-4353-a683-843466227109.jpg?1654566672", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/3/f39bf1fa-b530-4353-a683-843466227109.jpg?1654566672", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/f/3/f39bf1fa-b530-4353-a683-843466227109.jpg?1654566672", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/f/3/f39bf1fa-b530-4353-a683-843466227109.png?1654566672", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/3/f39bf1fa-b530-4353-a683-843466227109.jpg?1654566672", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/f/3/f39bf1fa-b530-4353-a683-843466227109.jpg?1654566672"}, "mana_cost": "{U}{U}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Counter target creature spell. Put a +1/+1 counter on up to one target creature you control.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo", "arena"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "59a2059f-5482-433f-8761-eb2e17859b71", "set": "neo", "set_name": "Kamigawa: Neon Dynasty", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/59a2059f-5482-433f-8761-eb2e17859b71", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aneo&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/neo?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/f39bf1fa-b530-4353-a683-843466227109/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A0f730bd9-2060-46b1-9208-0ac6562e8b2a&unique=prints", "collector_number": "52", "digital": false, "rarity": "uncommon", "flavor_text": "The Futurists regard the tradition of kami-bonding as anachronistic and inefficient, striving constantly to surpass spiritual power with technology.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Campbell White", "artist_ids": ["d281eab4-463a-4ba8-9039-8943737960a0"], "illustration_id": "9cc50283-1bfd-43ed-ab82-6368d1e20bab", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 6308, "penny_rank": 1519, "preview": {"source": "Corocoro", "source_uri": "https://corocoro.jp/322616/", "previewed_at": "2022-02-01"}, "prices": {"usd": "0.08", "usd_foil": "0.09", "usd_etched": null, "eur": "0.02", "eur_foil": "0.05", "tix": "0.01"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=548348", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Essence+Capture&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Essence+Capture&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Essence+Capture"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/262600?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Essence+Capture&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/97020?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "ce137910-0f0e-4f94-9b95-6e0eeeba164e", "oracle_id": "0f730bd9-2060-46b1-9208-0ac6562e8b2a", "multiverse_ids": [457181], "mtgo_id": 71074, "arena_id": 69165, "tcgplayer_id": 183208, "cardmarket_id": 368346, "name": "Essence Capture", "lang": "en", "released_at": "2019-01-25", "uri": "https://api.scryfall.com/cards/ce137910-0f0e-4f94-9b95-6e0eeeba164e", "scryfall_uri": "https://scryfall.com/card/rna/37/essence-capture?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/c/e/ce137910-0f0e-4f94-9b95-6e0eeeba164e.jpg?1584830187", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/e/ce137910-0f0e-4f94-9b95-6e0eeeba164e.jpg?1584830187", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/c/e/ce137910-0f0e-4f94-9b95-6e0eeeba164e.jpg?1584830187", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/c/e/ce137910-0f0e-4f94-9b95-6e0eeeba164e.png?1584830187", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/e/ce137910-0f0e-4f94-9b95-6e0eeeba164e.jpg?1584830187", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/c/e/ce137910-0f0e-4f94-9b95-6e0eeeba164e.jpg?1584830187"}, "mana_cost": "{U}{U}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Counter target creature spell. Put a +1/+1 counter on up to one target creature you control.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "97a7fd84-8d89-45a3-b48b-c951f6a3f9f1", "set": "rna", "set_name": "Ravnica Allegiance", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/97a7fd84-8d89-45a3-b48b-c951f6a3f9f1", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Arna&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/rna?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/ce137910-0f0e-4f94-9b95-6e0eeeba164e/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A0f730bd9-2060-46b1-9208-0ac6562e8b2a&unique=prints", "collector_number": "37", "digital": false, "rarity": "uncommon", "flavor_text": "\"It's not enough to defeat our foes. We must learn from them, too.\"\n\u2014Vannifar", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Mathias Kollros", "artist_ids": ["2ae0dd12-047c-4efb-80d7-bccc3bac5fba"], "illustration_id": "db679d53-13b2-4a6a-aa65-c97541693d47", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 6308, "penny_rank": 1519, "preview": {"source": "Robbie Yoon", "source_uri": "https://clips.twitch.tv/PoorSlickClipzLitty", "previewed_at": "2019-01-07"}, "prices": {"usd": "0.17", "usd_foil": "1.13", "usd_etched": null, "eur": "0.05", "eur_foil": "0.97", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=457181", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Essence+Capture&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Essence+Capture&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Essence+Capture"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/183208?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Essence+Capture&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/71074?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "5f79c8a0-291e-4e13-b765-4cf8c726cf30", "oracle_id": "46665089-aa3d-44c3-964d-6638dfbb5782", "multiverse_ids": [479569], "mtgo_id": 80107, "arena_id": 71116, "tcgplayer_id": 212042, "cardmarket_id": 451138, "name": "Essence Scatter", "lang": "en", "released_at": "2020-04-24", "uri": "https://api.scryfall.com/cards/5f79c8a0-291e-4e13-b765-4cf8c726cf30", "scryfall_uri": "https://scryfall.com/card/iko/49/essence-scatter?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/5/f/5f79c8a0-291e-4e13-b765-4cf8c726cf30.jpg?1636491405", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/f/5f79c8a0-291e-4e13-b765-4cf8c726cf30.jpg?1636491405", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/5/f/5f79c8a0-291e-4e13-b765-4cf8c726cf30.jpg?1636491405", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/5/f/5f79c8a0-291e-4e13-b765-4cf8c726cf30.png?1636491405", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/f/5f79c8a0-291e-4e13-b765-4cf8c726cf30.jpg?1636491405", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/5/f/5f79c8a0-291e-4e13-b765-4cf8c726cf30.jpg?1636491405"}, "mana_cost": "{1}{U}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Counter target creature spell.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "19feda43-15ab-427e-a0e4-148a4bf2b03a", "set": "iko", "set_name": "Ikoria: Lair of Behemoths", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/19feda43-15ab-427e-a0e4-148a4bf2b03a", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aiko&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/iko?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/5f79c8a0-291e-4e13-b765-4cf8c726cf30/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A46665089-aa3d-44c3-964d-6638dfbb5782&unique=prints", "collector_number": "49", "digital": false, "rarity": "common", "flavor_text": "\"I know the nightmares of Indatha seem scary, but when you break them down into their component parts, they're quite beautiful.\"\n\u2014Naireh, Ketria elementalist", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Seb McKinnon", "artist_ids": ["ad4caca0-8d89-44ce-a1a6-d5ca905bd6fb"], "illustration_id": "a8b9af30-7ef4-482e-ad96-f3f4b7846e18", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 3362, "penny_rank": 2125, "preview": {"source": "Eric Hawkins", "source_uri": "https://t.co/50BQlgfCin?amp=1", "previewed_at": "2020-04-02"}, "prices": {"usd": "0.03", "usd_foil": "0.11", "usd_etched": null, "eur": "0.08", "eur_foil": "0.09", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=479569", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Essence+Scatter&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Essence+Scatter&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Essence+Scatter"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/212042?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Essence+Scatter&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/80107?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "e1e325e1-f1f9-4448-84e3-1fd929b0bc12", "oracle_id": "46665089-aa3d-44c3-964d-6638dfbb5782", "multiverse_ids": [426754], "mtgo_id": 63706, "mtgo_foil_id": 63707, "tcgplayer_id": 129746, "cardmarket_id": 296703, "name": "Essence Scatter", "lang": "en", "released_at": "2017-04-28", "uri": "https://api.scryfall.com/cards/e1e325e1-f1f9-4448-84e3-1fd929b0bc12", "scryfall_uri": "https://scryfall.com/card/akh/52/essence-scatter?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/e/1/e1e325e1-f1f9-4448-84e3-1fd929b0bc12.jpg?1543674950", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/1/e1e325e1-f1f9-4448-84e3-1fd929b0bc12.jpg?1543674950", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/e/1/e1e325e1-f1f9-4448-84e3-1fd929b0bc12.jpg?1543674950", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/e/1/e1e325e1-f1f9-4448-84e3-1fd929b0bc12.png?1543674950", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/1/e1e325e1-f1f9-4448-84e3-1fd929b0bc12.jpg?1543674950", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/e/1/e1e325e1-f1f9-4448-84e3-1fd929b0bc12.jpg?1543674950"}, "mana_cost": "{1}{U}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Counter target creature spell.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "02d1c536-68bc-4208-9b65-7741ef1f9da8", "set": "akh", "set_name": "Amonkhet", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/02d1c536-68bc-4208-9b65-7741ef1f9da8", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aakh&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/akh?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/e1e325e1-f1f9-4448-84e3-1fd929b0bc12/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A46665089-aa3d-44c3-964d-6638dfbb5782&unique=prints", "collector_number": "52", "digital": false, "rarity": "common", "flavor_text": "Dependence on luck is anathema to Kefnet's rigorous studies. Those who hope to escape his maze by chance never succeed.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Josh Hass", "artist_ids": ["8fa1fdf0-96d6-46f4-a7ff-b1c0257c3735"], "illustration_id": "22af35ca-8b9b-4268-b8ac-e593e4dd05e4", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 3362, "penny_rank": 2125, "prices": {"usd": "0.05", "usd_foil": "0.15", "usd_etched": null, "eur": "0.02", "eur_foil": "0.20", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=426754", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Essence+Scatter&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Essence+Scatter&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Essence+Scatter"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/129746?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Essence+Scatter&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/63706?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "c231101e-6620-46fc-a0ad-a53291d12dc2", "oracle_id": "46665089-aa3d-44c3-964d-6638dfbb5782", "multiverse_ids": [193742], "mtgo_id": 32647, "mtgo_foil_id": 32648, "tcgplayer_id": 32607, "cardmarket_id": 21097, "name": "Essence Scatter", "lang": "en", "released_at": "2009-07-17", "uri": "https://api.scryfall.com/cards/c231101e-6620-46fc-a0ad-a53291d12dc2", "scryfall_uri": "https://scryfall.com/card/m10/51/essence-scatter?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/c/2/c231101e-6620-46fc-a0ad-a53291d12dc2.jpg?1561994248", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/2/c231101e-6620-46fc-a0ad-a53291d12dc2.jpg?1561994248", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/c/2/c231101e-6620-46fc-a0ad-a53291d12dc2.jpg?1561994248", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/c/2/c231101e-6620-46fc-a0ad-a53291d12dc2.png?1561994248", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/2/c231101e-6620-46fc-a0ad-a53291d12dc2.jpg?1561994248", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/c/2/c231101e-6620-46fc-a0ad-a53291d12dc2.jpg?1561994248"}, "mana_cost": "{1}{U}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Counter target creature spell.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "0dba38a9-6b9d-4768-9831-4e03e8970a0b", "set": "m10", "set_name": "Magic 2010", "set_type": "core", "set_uri": "https://api.scryfall.com/sets/0dba38a9-6b9d-4768-9831-4e03e8970a0b", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Am10&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/m10?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/c231101e-6620-46fc-a0ad-a53291d12dc2/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A46665089-aa3d-44c3-964d-6638dfbb5782&unique=prints", "collector_number": "51", "digital": false, "rarity": "common", "flavor_text": "Some wizards compete not to summon the most interesting creatures, but to create the most interesting aftereffects when a summons goes awry.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Jon Foster", "artist_ids": ["be1fa767-c905-49b1-afcf-77a8e9ebbd31"], "illustration_id": "c6e3d5b3-bab3-4df1-9988-919e4b223e71", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 3362, "penny_rank": 2125, "prices": {"usd": "0.05", "usd_foil": "0.24", "usd_etched": null, "eur": "0.02", "eur_foil": "0.45", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=193742", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Essence+Scatter&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Essence+Scatter&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Essence+Scatter"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/32607?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Essence+Scatter&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/32647?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "5d0b4f29-ada4-41d2-8292-b5af537c6fd2", "oracle_id": "4543a99d-eefa-470d-976d-11250524ae28", "multiverse_ids": [26261], "mtgo_id": 16046, "mtgo_foil_id": 16047, "tcgplayer_id": 7948, "cardmarket_id": 3135, "name": "Evasive Action", "lang": "en", "released_at": "2001-06-04", "uri": "https://api.scryfall.com/cards/5d0b4f29-ada4-41d2-8292-b5af537c6fd2", "scryfall_uri": "https://scryfall.com/card/apc/23/evasive-action?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/5/d/5d0b4f29-ada4-41d2-8292-b5af537c6fd2.jpg?1562916923", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/d/5d0b4f29-ada4-41d2-8292-b5af537c6fd2.jpg?1562916923", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/5/d/5d0b4f29-ada4-41d2-8292-b5af537c6fd2.jpg?1562916923", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/5/d/5d0b4f29-ada4-41d2-8292-b5af537c6fd2.png?1562916923", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/d/5d0b4f29-ada4-41d2-8292-b5af537c6fd2.jpg?1562916923", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/5/d/5d0b4f29-ada4-41d2-8292-b5af537c6fd2.jpg?1562916923"}, "mana_cost": "{1}{U}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Domain \u2014 Counter target spell unless its controller pays {1} for each basic land type among lands you control.", "colors": ["U"], "color_identity": ["U"], "keywords": ["Domain"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "e4e00913-d08d-4899-86ea-5cf631e09ce0", "set": "apc", "set_name": "Apocalypse", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/e4e00913-d08d-4899-86ea-5cf631e09ce0", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aapc&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/apc?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/5d0b4f29-ada4-41d2-8292-b5af537c6fd2/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A4543a99d-eefa-470d-976d-11250524ae28&unique=prints", "collector_number": "23", "digital": false, "rarity": "uncommon", "flavor_text": "Effective use of terrain is a lesson good commanders learn quickly.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Brian Sn\u00f5ddy", "artist_ids": ["770b4e16-de76-49ed-949f-84e6d2e06d25"], "illustration_id": "a2c7bbd6-72db-429c-b2b8-79e0087186ac", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 14701, "penny_rank": 1768, "prices": {"usd": "0.15", "usd_foil": "9.36", "usd_etched": null, "eur": "0.49", "eur_foil": "12.00", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=26261", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Evasive+Action&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Evasive+Action&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Evasive+Action"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/7948?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Evasive+Action&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/16046?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "a1a50f54-6363-41dd-88a7-9f9e820e7d5f", "oracle_id": "a8c9f91a-b1e7-451d-b6db-ae865e2b853c", "multiverse_ids": [442044], "mtgo_id": 67024, "mtgo_foil_id": 67025, "tcgplayer_id": 161526, "cardmarket_id": 319248, "name": "Exclude", "lang": "en", "released_at": "2018-03-16", "uri": "https://api.scryfall.com/cards/a1a50f54-6363-41dd-88a7-9f9e820e7d5f", "scryfall_uri": "https://scryfall.com/card/a25/55/exclude?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/a/1/a1a50f54-6363-41dd-88a7-9f9e820e7d5f.jpg?1562439432", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/1/a1a50f54-6363-41dd-88a7-9f9e820e7d5f.jpg?1562439432", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/a/1/a1a50f54-6363-41dd-88a7-9f9e820e7d5f.jpg?1562439432", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/a/1/a1a50f54-6363-41dd-88a7-9f9e820e7d5f.png?1562439432", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/1/a1a50f54-6363-41dd-88a7-9f9e820e7d5f.jpg?1562439432", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/a/1/a1a50f54-6363-41dd-88a7-9f9e820e7d5f.jpg?1562439432"}, "mana_cost": "{2}{U}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Counter target creature spell.\nDraw a card.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "41ee6e2f-69b3-4c53-8a8e-960f5e974cfc", "set": "a25", "set_name": "Masters 25", "set_type": "masters", "set_uri": "https://api.scryfall.com/sets/41ee6e2f-69b3-4c53-8a8e-960f5e974cfc", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aa25&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/a25?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/a1a50f54-6363-41dd-88a7-9f9e820e7d5f/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aa8c9f91a-b1e7-451d-b6db-ae865e2b853c&unique=prints", "collector_number": "55", "digital": false, "rarity": "uncommon", "watermark": "set", "flavor_text": "\"Terrifying, but thankfully temporary.\"\n\u2014Teferi", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Jehan Choo", "artist_ids": ["515df9fe-9c29-4e75-9e49-6ce5be4ec8c8"], "illustration_id": "99bb4d55-1a1a-4ea9-95c0-e56ab2f7df6e", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 5840, "penny_rank": 579, "prices": {"usd": "0.11", "usd_foil": "0.31", "usd_etched": null, "eur": "0.15", "eur_foil": "0.45", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=442044", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Exclude&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Exclude&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Exclude"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/161526?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Exclude&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/67024?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "970864e0-5488-4b6f-9316-3e3b4098770e", "oracle_id": "a8c9f91a-b1e7-451d-b6db-ae865e2b853c", "multiverse_ids": [389510], "mtgo_id": 55231, "mtgo_foil_id": 55232, "tcgplayer_id": 94268, "cardmarket_id": 270565, "name": "Exclude", "lang": "en", "released_at": "2014-11-07", "uri": "https://api.scryfall.com/cards/970864e0-5488-4b6f-9316-3e3b4098770e", "scryfall_uri": "https://scryfall.com/card/c14/108/exclude?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/9/7/970864e0-5488-4b6f-9316-3e3b4098770e.jpg?1561951119", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/7/970864e0-5488-4b6f-9316-3e3b4098770e.jpg?1561951119", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/9/7/970864e0-5488-4b6f-9316-3e3b4098770e.jpg?1561951119", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/9/7/970864e0-5488-4b6f-9316-3e3b4098770e.png?1561951119", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/7/970864e0-5488-4b6f-9316-3e3b4098770e.jpg?1561951119", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/9/7/970864e0-5488-4b6f-9316-3e3b4098770e.jpg?1561951119"}, "mana_cost": "{2}{U}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Counter target creature spell.\nDraw a card.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "0980a6e2-eb78-4ad2-8396-cef08fce365e", "set": "c14", "set_name": "Commander 2014", "set_type": "commander", "set_uri": "https://api.scryfall.com/sets/0980a6e2-eb78-4ad2-8396-cef08fce365e", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ac14&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/c14?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/970864e0-5488-4b6f-9316-3e3b4098770e/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aa8c9f91a-b1e7-451d-b6db-ae865e2b853c&unique=prints", "collector_number": "108", "digital": false, "rarity": "common", "flavor_text": "\"I don't have time for you right now.\"\n\u2014Teferi", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Greg Staples", "artist_ids": ["93d65564-bf00-447b-8406-e2031f03b6b1"], "illustration_id": "af95df5f-5c04-40b8-9fdc-2854252f488e", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "edhrec_rank": 5840, "penny_rank": 579, "prices": {"usd": "0.14", "usd_foil": null, "usd_etched": null, "eur": "0.40", "eur_foil": null, "tix": "0.09"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=389510", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Exclude&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Exclude&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Exclude"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/94268?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Exclude&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/55231?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "aeb359c8-209c-455f-84b2-970e5678a9fa", "oracle_id": "a8c9f91a-b1e7-451d-b6db-ae865e2b853c", "multiverse_ids": [22986], "mtgo_id": 14459, "mtgo_foil_id": 14460, "tcgplayer_id": 7491, "cardmarket_id": 3487, "name": "Exclude", "lang": "en", "released_at": "2000-10-02", "uri": "https://api.scryfall.com/cards/aeb359c8-209c-455f-84b2-970e5678a9fa", "scryfall_uri": "https://scryfall.com/card/inv/56/exclude?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/a/e/aeb359c8-209c-455f-84b2-970e5678a9fa.jpg?1562930137", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/e/aeb359c8-209c-455f-84b2-970e5678a9fa.jpg?1562930137", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/a/e/aeb359c8-209c-455f-84b2-970e5678a9fa.jpg?1562930137", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/a/e/aeb359c8-209c-455f-84b2-970e5678a9fa.png?1562930137", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/e/aeb359c8-209c-455f-84b2-970e5678a9fa.jpg?1562930137", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/a/e/aeb359c8-209c-455f-84b2-970e5678a9fa.jpg?1562930137"}, "mana_cost": "{2}{U}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Counter target creature spell.\nDraw a card.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "b9ae5e02-7726-47ca-b5e4-5ec402b41cd1", "set": "inv", "set_name": "Invasion", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/b9ae5e02-7726-47ca-b5e4-5ec402b41cd1", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ainv&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/inv?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/aeb359c8-209c-455f-84b2-970e5678a9fa/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aa8c9f91a-b1e7-451d-b6db-ae865e2b853c&unique=prints", "collector_number": "56", "digital": false, "rarity": "common", "flavor_text": "\"I don't have time for you right now.\"\n\u2014Teferi", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Mark Romanoski", "artist_ids": ["4ec62588-d6cc-41a2-a9be-a0f95b9613cc"], "illustration_id": "6ec087ac-9c0c-4aa8-8d34-483962074d44", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 5840, "penny_rank": 579, "prices": {"usd": "0.20", "usd_foil": "15.73", "usd_etched": null, "eur": "0.25", "eur_foil": "3.95", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=22986", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Exclude&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Exclude&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Exclude"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/7491?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Exclude&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/14459?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "21140417-09f5-4d05-b94c-355fde9b4719", "oracle_id": "b2c9f074-57ca-4709-976d-f432f632483f", "multiverse_ids": [10528], "tcgplayer_id": 456, "cardmarket_id": 11236, "name": "Extinguish", "lang": "en", "released_at": "1999-07-06", "uri": "https://api.scryfall.com/cards/21140417-09f5-4d05-b94c-355fde9b4719", "scryfall_uri": "https://scryfall.com/card/ptk/43/extinguish?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/2/1/21140417-09f5-4d05-b94c-355fde9b4719.jpg?1562255853", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/1/21140417-09f5-4d05-b94c-355fde9b4719.jpg?1562255853", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/2/1/21140417-09f5-4d05-b94c-355fde9b4719.jpg?1562255853", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/2/1/21140417-09f5-4d05-b94c-355fde9b4719.png?1562255853", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/1/21140417-09f5-4d05-b94c-355fde9b4719.jpg?1562255853", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/2/1/21140417-09f5-4d05-b94c-355fde9b4719.jpg?1562255853"}, "mana_cost": "{1}{U}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Counter target sorcery spell.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "2676ff2e-9d86-4b5b-b935-e84e41b0755e", "set": "ptk", "set_name": "Portal Three Kingdoms", "set_type": "starter", "set_uri": "https://api.scryfall.com/sets/2676ff2e-9d86-4b5b-b935-e84e41b0755e", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aptk&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ptk?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/21140417-09f5-4d05-b94c-355fde9b4719/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ab2c9f074-57ca-4709-976d-f432f632483f&unique=prints", "collector_number": "43", "digital": false, "rarity": "common", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Ding Songjian", "artist_ids": ["6949beb8-a1a8-4dfb-902c-07c0ce6a4760"], "illustration_id": "86dd9623-dc4c-412b-b198-dc0d445cc3d6", "border_color": "white", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 20728, "prices": {"usd": "2.99", "usd_foil": null, "usd_etched": null, "eur": "1.95", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=10528", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Extinguish&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Extinguish&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Extinguish"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/456?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Extinguish&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Extinguish&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "641f4e66-b46b-4da3-a053-f3763400d4f5", "oracle_id": "b2c9f074-57ca-4709-976d-f432f632483f", "multiverse_ids": [6534], "tcgplayer_id": 130, "cardmarket_id": 9858, "name": "Extinguish", "lang": "en", "released_at": "1998-06-24", "uri": "https://api.scryfall.com/cards/641f4e66-b46b-4da3-a053-f3763400d4f5", "scryfall_uri": "https://scryfall.com/card/p02/38/extinguish?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/6/4/641f4e66-b46b-4da3-a053-f3763400d4f5.jpg?1562918557", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/4/641f4e66-b46b-4da3-a053-f3763400d4f5.jpg?1562918557", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/6/4/641f4e66-b46b-4da3-a053-f3763400d4f5.jpg?1562918557", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/6/4/641f4e66-b46b-4da3-a053-f3763400d4f5.png?1562918557", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/4/641f4e66-b46b-4da3-a053-f3763400d4f5.jpg?1562918557", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/6/4/641f4e66-b46b-4da3-a053-f3763400d4f5.jpg?1562918557"}, "mana_cost": "{1}{U}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Counter target sorcery spell.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "ac67f18a-4f0e-407e-bab1-a9fe4f659565", "set": "p02", "set_name": "Portal Second Age", "set_type": "starter", "set_uri": "https://api.scryfall.com/sets/ac67f18a-4f0e-407e-bab1-a9fe4f659565", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ap02&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/p02?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/641f4e66-b46b-4da3-a053-f3763400d4f5/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ab2c9f074-57ca-4709-976d-f432f632483f&unique=prints", "collector_number": "38", "digital": false, "rarity": "common", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Douglas Shuler", "artist_ids": ["a9ddb513-51c7-455c-ab8f-5b90aae9f75b"], "illustration_id": "e8e3a223-40e6-449d-9765-9eded9ffc752", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 20728, "prices": {"usd": "0.16", "usd_foil": null, "usd_etched": null, "eur": "0.15", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=6534", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Extinguish&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Extinguish&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Extinguish"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/130?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Extinguish&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Extinguish&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "defb9f0b-195e-4aeb-92c1-8f827ad6724b", "oracle_id": "bbe370ba-412b-4052-89d9-2d0ae4928118", "multiverse_ids": [139435], "mtgo_id": 28249, "mtgo_foil_id": 28250, "tcgplayer_id": 15481, "cardmarket_id": 17803, "name": "Faerie Trickery", "lang": "en", "released_at": "2007-10-12", "uri": "https://api.scryfall.com/cards/defb9f0b-195e-4aeb-92c1-8f827ad6724b", "scryfall_uri": "https://scryfall.com/card/lrw/62/faerie-trickery?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/d/e/defb9f0b-195e-4aeb-92c1-8f827ad6724b.jpg?1562371108", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/e/defb9f0b-195e-4aeb-92c1-8f827ad6724b.jpg?1562371108", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/d/e/defb9f0b-195e-4aeb-92c1-8f827ad6724b.jpg?1562371108", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/d/e/defb9f0b-195e-4aeb-92c1-8f827ad6724b.png?1562371108", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/e/defb9f0b-195e-4aeb-92c1-8f827ad6724b.jpg?1562371108", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/d/e/defb9f0b-195e-4aeb-92c1-8f827ad6724b.jpg?1562371108"}, "mana_cost": "{1}{U}{U}", "cmc": 3.0, "type_line": "Tribal Instant \u2014 Faerie", "oracle_text": "Counter target non-Faerie spell. If that spell is countered this way, exile it instead of putting it into its owner's graveyard.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "30ec97cb-dca9-4bf4-a98b-310f9d8ceaff", "set": "lrw", "set_name": "Lorwyn", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/30ec97cb-dca9-4bf4-a98b-310f9d8ceaff", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Alrw&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/lrw?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/defb9f0b-195e-4aeb-92c1-8f827ad6724b/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Abbe370ba-412b-4052-89d9-2d0ae4928118&unique=prints", "collector_number": "62", "digital": false, "rarity": "common", "flavor_text": "The fae are so quick and their life spans so short that it's difficult to get retribution for their pranks.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Terese Nielsen", "artist_ids": ["eb55171c-2342-45f4-a503-2d5a75baf752"], "illustration_id": "4149fb3c-9c47-437b-b2a7-d5cc58358a36", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 8127, "penny_rank": 1966, "prices": {"usd": "0.22", "usd_foil": "4.36", "usd_etched": null, "eur": "0.06", "eur_foil": "0.90", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=139435", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Faerie+Trickery&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Faerie+Trickery&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Faerie+Trickery"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/15481?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Faerie+Trickery&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/28249?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "f8900f91-cb17-4f99-a5ce-15819369beb8", "oracle_id": "e4fbf952-de3b-4cbd-848a-37041f337e06", "multiverse_ids": [417620], "mtgo_id": 61659, "mtgo_foil_id": 61660, "tcgplayer_id": 123121, "cardmarket_id": 292807, "name": "Failed Inspection", "lang": "en", "released_at": "2016-09-30", "uri": "https://api.scryfall.com/cards/f8900f91-cb17-4f99-a5ce-15819369beb8", "scryfall_uri": "https://scryfall.com/card/kld/47/failed-inspection?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/f/8/f8900f91-cb17-4f99-a5ce-15819369beb8.jpg?1576381199", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/8/f8900f91-cb17-4f99-a5ce-15819369beb8.jpg?1576381199", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/f/8/f8900f91-cb17-4f99-a5ce-15819369beb8.jpg?1576381199", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/f/8/f8900f91-cb17-4f99-a5ce-15819369beb8.png?1576381199", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/8/f8900f91-cb17-4f99-a5ce-15819369beb8.jpg?1576381199", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/f/8/f8900f91-cb17-4f99-a5ce-15819369beb8.jpg?1576381199"}, "mana_cost": "{2}{U}{U}", "cmc": 4.0, "type_line": "Instant", "oracle_text": "Counter target spell. Draw a card, then discard a card.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "d667e468-be8f-411f-a030-473d148deb74", "set": "kld", "set_name": "Kaladesh", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/d667e468-be8f-411f-a030-473d148deb74", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Akld&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/kld?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/f8900f91-cb17-4f99-a5ce-15819369beb8/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ae4fbf952-de3b-4cbd-848a-37041f337e06&unique=prints", "collector_number": "47", "digital": false, "rarity": "common", "flavor_text": "The most dangerous thing an artificer can do is believe an invention is perfect.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Matt Stewart", "artist_ids": ["20871267-2d8a-41d5-b03a-be3d557c5734"], "illustration_id": "c4809518-b4df-4a95-85d0-84a21f764599", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 14907, "penny_rank": 6506, "prices": {"usd": "0.01", "usd_foil": "0.08", "usd_etched": null, "eur": "0.01", "eur_foil": "0.10", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=417620", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Failed+Inspection&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Failed+Inspection&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Failed+Inspection"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/123121?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Failed+Inspection&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/61659?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "64f42848-963b-4b16-aeec-66d0f349758b", "oracle_id": "5ad33099-0392-4f68-a4c5-7fa3ef2d473e", "multiverse_ids": [290536], "mtgo_id": 46425, "mtgo_foil_id": 46426, "tcgplayer_id": 66562, "cardmarket_id": 258491, "name": "Fall of the Gavel", "lang": "en", "released_at": "2012-10-05", "uri": "https://api.scryfall.com/cards/64f42848-963b-4b16-aeec-66d0f349758b", "scryfall_uri": "https://scryfall.com/card/rtr/161/fall-of-the-gavel?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/6/4/64f42848-963b-4b16-aeec-66d0f349758b.jpg?1562787318", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/4/64f42848-963b-4b16-aeec-66d0f349758b.jpg?1562787318", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/6/4/64f42848-963b-4b16-aeec-66d0f349758b.jpg?1562787318", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/6/4/64f42848-963b-4b16-aeec-66d0f349758b.png?1562787318", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/4/64f42848-963b-4b16-aeec-66d0f349758b.jpg?1562787318", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/6/4/64f42848-963b-4b16-aeec-66d0f349758b.jpg?1562787318"}, "mana_cost": "{3}{W}{U}", "cmc": 5.0, "type_line": "Instant", "oracle_text": "Counter target spell. You gain 5 life.", "colors": ["U", "W"], "color_identity": ["U", "W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "80b2374d-c5f1-403e-9772-f6c806fd275e", "set": "rtr", "set_name": "Return to Ravnica", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/80b2374d-c5f1-403e-9772-f6c806fd275e", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Artr&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/rtr?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/64f42848-963b-4b16-aeec-66d0f349758b/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A5ad33099-0392-4f68-a4c5-7fa3ef2d473e&unique=prints", "collector_number": "161", "digital": false, "rarity": "uncommon", "watermark": "azorius", "flavor_text": "\"My ruling is final. Order is upheld. Justice is done.\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Matt Stewart", "artist_ids": ["20871267-2d8a-41d5-b03a-be3d557c5734"], "illustration_id": "aeba28ea-dfef-44c7-8fbd-36dce4cab851", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 17936, "penny_rank": 9284, "prices": {"usd": "0.07", "usd_foil": "0.24", "usd_etched": null, "eur": "0.02", "eur_foil": "0.14", "tix": "0.04"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=290536", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Fall+of+the+Gavel&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Fall+of+the+Gavel&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Fall+of+the+Gavel"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/66562?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Fall+of+the+Gavel&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/46425?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "cd7d30a8-bc7a-42bc-8d1b-600cbf78ab98", "oracle_id": "4f891c68-c959-4210-94e5-94a8e487d5ef", "multiverse_ids": [6533], "tcgplayer_id": 132, "cardmarket_id": 9860, "name": "False Summoning", "lang": "en", "released_at": "1998-06-24", "uri": "https://api.scryfall.com/cards/cd7d30a8-bc7a-42bc-8d1b-600cbf78ab98", "scryfall_uri": "https://scryfall.com/card/p02/40/false-summoning?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/c/d/cd7d30a8-bc7a-42bc-8d1b-600cbf78ab98.jpg?1562943500", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/d/cd7d30a8-bc7a-42bc-8d1b-600cbf78ab98.jpg?1562943500", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/c/d/cd7d30a8-bc7a-42bc-8d1b-600cbf78ab98.jpg?1562943500", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/c/d/cd7d30a8-bc7a-42bc-8d1b-600cbf78ab98.png?1562943500", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/d/cd7d30a8-bc7a-42bc-8d1b-600cbf78ab98.jpg?1562943500", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/c/d/cd7d30a8-bc7a-42bc-8d1b-600cbf78ab98.jpg?1562943500"}, "mana_cost": "{1}{U}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Counter target creature spell.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "ac67f18a-4f0e-407e-bab1-a9fe4f659565", "set": "p02", "set_name": "Portal Second Age", "set_type": "starter", "set_uri": "https://api.scryfall.com/sets/ac67f18a-4f0e-407e-bab1-a9fe4f659565", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ap02&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/p02?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/cd7d30a8-bc7a-42bc-8d1b-600cbf78ab98/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A4f891c68-c959-4210-94e5-94a8e487d5ef&unique=prints", "collector_number": "40", "digital": false, "rarity": "common", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "DiTerlizzi", "artist_ids": ["ed44dce4-30cf-4c2c-b2e1-a19ba2295690"], "illustration_id": "3ff7a64f-7f64-435a-b5e5-4e90442972fa", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 18372, "penny_rank": 8209, "prices": {"usd": "0.34", "usd_foil": null, "usd_etched": null, "eur": "0.49", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=6533", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=False+Summoning&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=False+Summoning&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=False+Summoning"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/132?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=False+Summoning&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=False+Summoning&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "55b9be91-f3a1-49ce-8a3e-2ecd30e2e692", "oracle_id": "3b6d773b-e2f7-4e74-9e77-f2e0d369a31e", "multiverse_ids": [146584], "mtgo_id": 28741, "mtgo_foil_id": 28742, "tcgplayer_id": 15483, "cardmarket_id": 17805, "name": "Familiar's Ruse", "lang": "en", "released_at": "2007-10-12", "uri": "https://api.scryfall.com/cards/55b9be91-f3a1-49ce-8a3e-2ecd30e2e692", "scryfall_uri": "https://scryfall.com/card/lrw/64/familiars-ruse?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/5/5/55b9be91-f3a1-49ce-8a3e-2ecd30e2e692.jpg?1562348978", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/5/55b9be91-f3a1-49ce-8a3e-2ecd30e2e692.jpg?1562348978", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/5/5/55b9be91-f3a1-49ce-8a3e-2ecd30e2e692.jpg?1562348978", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/5/5/55b9be91-f3a1-49ce-8a3e-2ecd30e2e692.png?1562348978", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/5/55b9be91-f3a1-49ce-8a3e-2ecd30e2e692.jpg?1562348978", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/5/5/55b9be91-f3a1-49ce-8a3e-2ecd30e2e692.jpg?1562348978"}, "mana_cost": "{U}{U}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "As an additional cost to cast this spell, return a creature you control to its owner's hand.\nCounter target spell.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "30ec97cb-dca9-4bf4-a98b-310f9d8ceaff", "set": "lrw", "set_name": "Lorwyn", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/30ec97cb-dca9-4bf4-a98b-310f9d8ceaff", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Alrw&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/lrw?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/55b9be91-f3a1-49ce-8a3e-2ecd30e2e692/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A3b6d773b-e2f7-4e74-9e77-f2e0d369a31e&unique=prints", "collector_number": "64", "digital": false, "rarity": "uncommon", "flavor_text": "Because of their capricious nature, faeries can serve as living lenses for disruptive magic.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Eric Fortune", "artist_ids": ["c5562592-3387-495a-96fb-618a6a424a45"], "illustration_id": "e7ffcce6-88ba-42f8-9ddb-ae67e98533cc", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 3436, "penny_rank": 3598, "prices": {"usd": "0.50", "usd_foil": "4.41", "usd_etched": null, "eur": "0.17", "eur_foil": "1.39", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=146584", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Familiar%27s+Ruse&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Familiar%27s+Ruse&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Familiar%27s+Ruse"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/15483?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Familiar%27s+Ruse&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/28741?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "7b15428e-946e-490d-93bb-9888bfd3a1df", "oracle_id": "2e56bc34-1e35-4b95-9525-cb58ac8ba060", "multiverse_ids": [470632], "mtgo_id": 77286, "tcgplayer_id": 196599, "cardmarket_id": 392107, "name": "Fervent Denial", "lang": "en", "released_at": "2019-08-23", "uri": "https://api.scryfall.com/cards/7b15428e-946e-490d-93bb-9888bfd3a1df", "scryfall_uri": "https://scryfall.com/card/c19/86/fervent-denial?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/7/b/7b15428e-946e-490d-93bb-9888bfd3a1df.jpg?1568003997", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/b/7b15428e-946e-490d-93bb-9888bfd3a1df.jpg?1568003997", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/7/b/7b15428e-946e-490d-93bb-9888bfd3a1df.jpg?1568003997", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/7/b/7b15428e-946e-490d-93bb-9888bfd3a1df.png?1568003997", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/b/7b15428e-946e-490d-93bb-9888bfd3a1df.jpg?1568003997", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/7/b/7b15428e-946e-490d-93bb-9888bfd3a1df.jpg?1568003997"}, "mana_cost": "{3}{U}{U}", "cmc": 5.0, "type_line": "Instant", "oracle_text": "Counter target spell.\nFlashback {5}{U}{U} (You may cast this card from your graveyard for its flashback cost. Then exile it.)", "colors": ["U"], "color_identity": ["U"], "keywords": ["Flashback"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "0fa3ccbb-d86d-4a2e-a55e-c4979c4feeb2", "set": "c19", "set_name": "Commander 2019", "set_type": "commander", "set_uri": "https://api.scryfall.com/sets/0fa3ccbb-d86d-4a2e-a55e-c4979c4feeb2", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ac19&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/c19?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/7b15428e-946e-490d-93bb-9888bfd3a1df/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A2e56bc34-1e35-4b95-9525-cb58ac8ba060&unique=prints", "collector_number": "86", "digital": false, "rarity": "uncommon", "flavor_text": "\"I prefer a reality in which you are not.\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Igor Kieryluk", "artist_ids": ["9c3e9d17-509f-485c-9360-46d897ce716b"], "illustration_id": "1c641fb6-52f0-4b7b-b441-e6fe871d29e4", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "edhrec_rank": 13351, "penny_rank": 8914, "prices": {"usd": "0.04", "usd_foil": null, "usd_etched": null, "eur": "0.05", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=470632", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Fervent+Denial&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Fervent+Denial&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Fervent+Denial"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/196599?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Fervent+Denial&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/77286?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "ed13fdb4-f28a-43c9-a69f-bab227806c39", "oracle_id": "2e56bc34-1e35-4b95-9525-cb58ac8ba060", "multiverse_ids": [29724], "mtgo_id": 16867, "mtgo_foil_id": 16868, "tcgplayer_id": 9361, "cardmarket_id": 2498, "name": "Fervent Denial", "lang": "en", "released_at": "2001-10-01", "uri": "https://api.scryfall.com/cards/ed13fdb4-f28a-43c9-a69f-bab227806c39", "scryfall_uri": "https://scryfall.com/card/ody/86/fervent-denial?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/e/d/ed13fdb4-f28a-43c9-a69f-bab227806c39.jpg?1562939482", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/d/ed13fdb4-f28a-43c9-a69f-bab227806c39.jpg?1562939482", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/e/d/ed13fdb4-f28a-43c9-a69f-bab227806c39.jpg?1562939482", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/e/d/ed13fdb4-f28a-43c9-a69f-bab227806c39.png?1562939482", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/d/ed13fdb4-f28a-43c9-a69f-bab227806c39.jpg?1562939482", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/e/d/ed13fdb4-f28a-43c9-a69f-bab227806c39.jpg?1562939482"}, "mana_cost": "{3}{U}{U}", "cmc": 5.0, "type_line": "Instant", "oracle_text": "Counter target spell.\nFlashback {5}{U}{U} (You may cast this card from your graveyard for its flashback cost. Then exile it.)", "colors": ["U"], "color_identity": ["U"], "keywords": ["Flashback"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "b0d90d2d-494a-4224-bfa0-36ce5ee281b1", "set": "ody", "set_name": "Odyssey", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/b0d90d2d-494a-4224-bfa0-36ce5ee281b1", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aody&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ody?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/ed13fdb4-f28a-43c9-a69f-bab227806c39/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A2e56bc34-1e35-4b95-9525-cb58ac8ba060&unique=prints", "collector_number": "86", "digital": false, "rarity": "uncommon", "flavor_text": "\"Your tenacity is admirable. And futile.\"\n\u2014Emperor Aboshan", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Scott M. Fischer", "artist_ids": ["23b0cf43-3e43-44c6-8329-96446eca5bce"], "illustration_id": "16429f18-8904-4f5d-895b-ec3fb510a993", "border_color": "black", "frame": "1997", "frame_effects": ["tombstone"], "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 13351, "penny_rank": 8914, "prices": {"usd": "0.12", "usd_foil": "0.61", "usd_etched": null, "eur": "0.02", "eur_foil": "1.49", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=29724", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Fervent+Denial&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Fervent+Denial&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Fervent+Denial"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/9361?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Fervent+Denial&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/16867?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "4c5ffa83-c88d-4f5d-851e-a642b229d596", "oracle_id": "d09c9cba-fdd2-479b-ad5d-d05181c3e3f9", "multiverse_ids": [484882], "mtgo_id": 80651, "tcgplayer_id": 212218, "cardmarket_id": 453113, "name": "Fierce Guardianship", "lang": "en", "released_at": "2020-04-17", "uri": "https://api.scryfall.com/cards/4c5ffa83-c88d-4f5d-851e-a642b229d596", "scryfall_uri": "https://scryfall.com/card/c20/35/fierce-guardianship?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/4/c/4c5ffa83-c88d-4f5d-851e-a642b229d596.jpg?1591319453", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/c/4c5ffa83-c88d-4f5d-851e-a642b229d596.jpg?1591319453", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/4/c/4c5ffa83-c88d-4f5d-851e-a642b229d596.jpg?1591319453", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/4/c/4c5ffa83-c88d-4f5d-851e-a642b229d596.png?1591319453", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/c/4c5ffa83-c88d-4f5d-851e-a642b229d596.jpg?1591319453", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/4/c/4c5ffa83-c88d-4f5d-851e-a642b229d596.jpg?1591319453"}, "mana_cost": "{2}{U}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "If you control a commander, you may cast this spell without paying its mana cost.\nCounter target noncreature spell.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "banned", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "f60ec786-1f8d-42f7-9abc-0d880fe243f6", "set": "c20", "set_name": "Commander 2020", "set_type": "commander", "set_uri": "https://api.scryfall.com/sets/f60ec786-1f8d-42f7-9abc-0d880fe243f6", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ac20&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/c20?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/4c5ffa83-c88d-4f5d-851e-a642b229d596/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ad09c9cba-fdd2-479b-ad5d-d05181c3e3f9&unique=prints", "collector_number": "35", "digital": false, "rarity": "rare", "flavor_text": "\"Hunt somewhere else. This is your only warning.\"\n\u2014Gavi, nest warden", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Randy Vargas", "artist_ids": ["d20672ca-0555-4238-a984-fd171d36b247"], "illustration_id": "442f8011-9c74-4a3d-a569-941e372f62eb", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "edhrec_rank": 78, "preview": {"source": "Wizards of the Coast", "source_uri": "", "previewed_at": "2020-04-06"}, "prices": {"usd": "53.08", "usd_foil": null, "usd_etched": null, "eur": "45.18", "eur_foil": null, "tix": "14.83"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=484882", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Fierce+Guardianship&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Fierce+Guardianship&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Fierce+Guardianship"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/212218?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Fierce+Guardianship&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/80651?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "409cb48a-572a-40df-ae1a-a43feab6bdfd", "oracle_id": "4023934b-1b7d-4df9-80cb-21df48934691", "multiverse_ids": [74330], "tcgplayer_id": 37858, "cardmarket_id": 14795, "name": "Flaccify", "lang": "en", "released_at": "2004-11-19", "uri": "https://api.scryfall.com/cards/409cb48a-572a-40df-ae1a-a43feab6bdfd", "scryfall_uri": "https://scryfall.com/card/unh/32/flaccify?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/4/0/409cb48a-572a-40df-ae1a-a43feab6bdfd.jpg?1562487932", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/0/409cb48a-572a-40df-ae1a-a43feab6bdfd.jpg?1562487932", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/4/0/409cb48a-572a-40df-ae1a-a43feab6bdfd.jpg?1562487932", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/4/0/409cb48a-572a-40df-ae1a-a43feab6bdfd.png?1562487932", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/0/409cb48a-572a-40df-ae1a-a43feab6bdfd.jpg?1562487932", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/4/0/409cb48a-572a-40df-ae1a-a43feab6bdfd.jpg?1562487932"}, "mana_cost": "{2}{U}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Counter target spell unless its controller pays {3}{\u00bd}.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "not_legal", "pauper": "not_legal", "vintage": "not_legal", "penny": "not_legal", "commander": "not_legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "not_legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "4c8bc76a-05a5-43db-aaf0-34deb347b871", "set": "unh", "set_name": "Unhinged", "set_type": "funny", "set_uri": "https://api.scryfall.com/sets/4c8bc76a-05a5-43db-aaf0-34deb347b871", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aunh&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/unh?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/409cb48a-572a-40df-ae1a-a43feab6bdfd/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A4023934b-1b7d-4df9-80cb-21df48934691&unique=prints", "collector_number": "32", "digital": false, "rarity": "common", "flavor_text": "\"Don't worry about it. It happens to every mage sooner or later.\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Tim Hildebrandt", "artist_ids": ["caa7228c-f74c-4145-91fb-1af8d623c353"], "illustration_id": "f3d8e048-878a-4c2f-869f-346b15c691f4", "border_color": "silver", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "prices": {"usd": "0.18", "usd_foil": "0.49", "usd_etched": null, "eur": "0.05", "eur_foil": "0.97", "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=74330", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Flaccify&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Flaccify&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Flaccify"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/37858?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Flaccify&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Flaccify&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "dc14e61f-481a-4bfa-aca0-fb63dc952be6", "oracle_id": "75b2dd64-a2f5-4032-a19f-5b485dc44b16", "multiverse_ids": [45238], "mtgo_id": 19557, "mtgo_foil_id": 19558, "tcgplayer_id": 11038, "cardmarket_id": 714, "name": "Flash Counter", "lang": "en", "released_at": "2003-07-28", "uri": "https://api.scryfall.com/cards/dc14e61f-481a-4bfa-aca0-fb63dc952be6", "scryfall_uri": "https://scryfall.com/card/8ed/78/flash-counter?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/d/c/dc14e61f-481a-4bfa-aca0-fb63dc952be6.jpg?1562939250", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/c/dc14e61f-481a-4bfa-aca0-fb63dc952be6.jpg?1562939250", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/d/c/dc14e61f-481a-4bfa-aca0-fb63dc952be6.jpg?1562939250", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/d/c/dc14e61f-481a-4bfa-aca0-fb63dc952be6.png?1562939250", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/c/dc14e61f-481a-4bfa-aca0-fb63dc952be6.jpg?1562939250", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/d/c/dc14e61f-481a-4bfa-aca0-fb63dc952be6.jpg?1562939250"}, "mana_cost": "{1}{U}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Counter target instant spell.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "cae8d29d-5979-4d8f-884d-7f3183bcc886", "set": "8ed", "set_name": "Eighth Edition", "set_type": "core", "set_uri": "https://api.scryfall.com/sets/cae8d29d-5979-4d8f-884d-7f3183bcc886", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3A8ed&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/8ed?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/dc14e61f-481a-4bfa-aca0-fb63dc952be6/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A75b2dd64-a2f5-4032-a19f-5b485dc44b16&unique=prints", "collector_number": "78", "digital": false, "rarity": "common", "flavor_text": "\"So much for that bright idea!\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Matt Cavotta", "artist_ids": ["2e6a0611-9411-4ba4-98e3-c0e18cbf9f83"], "illustration_id": "6590c7ba-e241-43ae-80cc-7448bd9c0611", "border_color": "white", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 13320, "penny_rank": 1832, "prices": {"usd": "0.14", "usd_foil": "0.39", "usd_etched": null, "eur": "0.05", "eur_foil": "0.24", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=45238", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Flash+Counter&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Flash+Counter&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Flash+Counter"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/11038?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Flash+Counter&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/19557?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "3c3cd450-f1cd-416b-9271-37d95815c089", "oracle_id": "75b2dd64-a2f5-4032-a19f-5b485dc44b16", "multiverse_ids": [1482], "tcgplayer_id": 3868, "cardmarket_id": 7027, "name": "Flash Counter", "lang": "en", "released_at": "1994-06-01", "uri": "https://api.scryfall.com/cards/3c3cd450-f1cd-416b-9271-37d95815c089", "scryfall_uri": "https://scryfall.com/card/leg/56/flash-counter?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/3/c/3c3cd450-f1cd-416b-9271-37d95815c089.jpg?1587858200", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/c/3c3cd450-f1cd-416b-9271-37d95815c089.jpg?1587858200", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/3/c/3c3cd450-f1cd-416b-9271-37d95815c089.jpg?1587858200", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/3/c/3c3cd450-f1cd-416b-9271-37d95815c089.png?1587858200", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/c/3c3cd450-f1cd-416b-9271-37d95815c089.jpg?1587858200", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/3/c/3c3cd450-f1cd-416b-9271-37d95815c089.jpg?1587858200"}, "mana_cost": "{1}{U}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Counter target instant spell.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "78c50b4b-b220-455b-a2d5-cee458fa56f3", "set": "leg", "set_name": "Legends", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/78c50b4b-b220-455b-a2d5-cee458fa56f3", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aleg&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/leg?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/3c3cd450-f1cd-416b-9271-37d95815c089/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A75b2dd64-a2f5-4032-a19f-5b485dc44b16&unique=prints", "collector_number": "56", "digital": false, "rarity": "common", "flavor_text": "\"She grinned at me\u2014a wicked grin. 'I hope you weren't relying too heavily on that, my dear.'\"\n\u2014Medryn Silverwand, *Diary*", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Harold McNeill", "artist_ids": ["8aadc8a8-df50-45b3-bd88-449e709df482"], "illustration_id": "6ed11fdf-1756-4415-b7ec-b7fd5798282f", "border_color": "black", "frame": "1993", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 13320, "penny_rank": 1832, "prices": {"usd": "0.74", "usd_foil": null, "usd_etched": null, "eur": "1.00", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=1482", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Flash+Counter&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Flash+Counter&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Flash+Counter"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/3868?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Flash+Counter&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Flash+Counter&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "cefd9955-a195-4855-a00e-3809b96ca92b", "oracle_id": "eaf98e03-729b-4145-b2af-c910c415c15d", "multiverse_ids": [121218], "mtgo_id": 24677, "mtgo_foil_id": 24678, "tcgplayer_id": 14032, "cardmarket_id": 13639, "name": "Flashfreeze", "lang": "en", "released_at": "2006-07-21", "uri": "https://api.scryfall.com/cards/cefd9955-a195-4855-a00e-3809b96ca92b", "scryfall_uri": "https://scryfall.com/card/csp/33/flashfreeze?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/c/e/cefd9955-a195-4855-a00e-3809b96ca92b.jpg?1593274923", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/e/cefd9955-a195-4855-a00e-3809b96ca92b.jpg?1593274923", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/c/e/cefd9955-a195-4855-a00e-3809b96ca92b.jpg?1593274923", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/c/e/cefd9955-a195-4855-a00e-3809b96ca92b.png?1593274923", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/e/cefd9955-a195-4855-a00e-3809b96ca92b.jpg?1593274923", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/c/e/cefd9955-a195-4855-a00e-3809b96ca92b.jpg?1593274923"}, "mana_cost": "{1}{U}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Counter target red or green spell.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "1f4f105f-73e4-4f03-849e-82a204807847", "set": "csp", "set_name": "Coldsnap", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/1f4f105f-73e4-4f03-849e-82a204807847", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Acsp&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/csp?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/cefd9955-a195-4855-a00e-3809b96ca92b/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aeaf98e03-729b-4145-b2af-c910c415c15d&unique=prints", "collector_number": "33", "digital": false, "rarity": "uncommon", "flavor_text": "\"Nature? Fire? Bah! Both are chaotic and difficult to control. Ice is structured, latticed, light as a feather, massive as a glacier. In ice, there is power!\"\n\u2014Heidar, Rimewind master", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Brian Despain", "artist_ids": ["b4733d20-d538-4dd6-81fe-408c958ca54b"], "illustration_id": "c8326e99-76bc-4d41-8664-0873f4d49347", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 14759, "penny_rank": 5419, "prices": {"usd": "0.09", "usd_foil": "1.03", "usd_etched": null, "eur": "0.06", "eur_foil": "0.25", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=121218", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Flashfreeze&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Flashfreeze&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Flashfreeze"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/14032?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Flashfreeze&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/24677?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "5cdbe4e3-f030-46fa-ae84-edf261b61706", "oracle_id": "a28eb946-c7f2-4c90-ab6c-b194e290e33d", "multiverse_ids": [534815], "mtgo_id": 93044, "arena_id": 78386, "tcgplayer_id": 248285, "cardmarket_id": 575022, "name": "Flip the Switch", "lang": "en", "released_at": "2021-09-24", "uri": "https://api.scryfall.com/cards/5cdbe4e3-f030-46fa-ae84-edf261b61706", "scryfall_uri": "https://scryfall.com/card/mid/54/flip-the-switch?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/5/c/5cdbe4e3-f030-46fa-ae84-edf261b61706.jpg?1634348893", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/c/5cdbe4e3-f030-46fa-ae84-edf261b61706.jpg?1634348893", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/5/c/5cdbe4e3-f030-46fa-ae84-edf261b61706.jpg?1634348893", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/5/c/5cdbe4e3-f030-46fa-ae84-edf261b61706.png?1634348893", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/c/5cdbe4e3-f030-46fa-ae84-edf261b61706.jpg?1634348893", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/5/c/5cdbe4e3-f030-46fa-ae84-edf261b61706.jpg?1634348893"}, "mana_cost": "{2}{U}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Counter target spell unless its controller pays {4}. Create a 2/2 black Zombie creature token with decayed. (It can't block. When it attacks, sacrifice it at end of combat.)", "colors": ["U"], "color_identity": ["U"], "keywords": [], "all_parts": [{"object": "related_card", "id": "5cdbe4e3-f030-46fa-ae84-edf261b61706", "component": "combo_piece", "name": "Flip the Switch", "type_line": "Instant", "uri": "https://api.scryfall.com/cards/5cdbe4e3-f030-46fa-ae84-edf261b61706"}, {"object": "related_card", "id": "6adb8607-1066-451d-a719-74ad32358278", "component": "token", "name": "Zombie", "type_line": "Token Creature \u2014 Zombie", "uri": "https://api.scryfall.com/cards/6adb8607-1066-451d-a719-74ad32358278"}], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "44b8eb8f-fa23-401a-98b5-1fbb9871128e", "set": "mid", "set_name": "Innistrad: Midnight Hunt", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/44b8eb8f-fa23-401a-98b5-1fbb9871128e", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Amid&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/mid?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/5cdbe4e3-f030-46fa-ae84-edf261b61706/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aa28eb946-c7f2-4c90-ab6c-b194e290e33d&unique=prints", "collector_number": "54", "digital": false, "rarity": "common", "flavor_text": "\"Works every time! Well, every time they don't explode, anyway.\"\n\u2014Barton, stitcher", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Campbell White", "artist_ids": ["d281eab4-463a-4ba8-9039-8943737960a0"], "illustration_id": "6bac8bd9-0f83-4880-9fc7-65e467fb83d6", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 8862, "penny_rank": 6348, "prices": {"usd": "0.04", "usd_foil": "0.02", "usd_etched": null, "eur": "0.29", "eur_foil": "0.50", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=534815", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Flip+the+Switch&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Flip+the+Switch&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Flip+the+Switch"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/248285?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Flip+the+Switch&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/93044?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "1e2e09bf-e7c8-4f13-bcee-f9c8cbc57993", "oracle_id": "86bf58f2-7f25-4e10-b797-25e0e8e67769", "multiverse_ids": [228255], "mtgo_id": 40625, "mtgo_foil_id": 40945, "tcgplayer_id": 47522, "cardmarket_id": 247052, "name": "Flusterstorm", "lang": "en", "released_at": "2011-06-17", "uri": "https://api.scryfall.com/cards/1e2e09bf-e7c8-4f13-bcee-f9c8cbc57993", "scryfall_uri": "https://scryfall.com/card/cmd/46/flusterstorm?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/1/e/1e2e09bf-e7c8-4f13-bcee-f9c8cbc57993.jpg?1592713006", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/e/1e2e09bf-e7c8-4f13-bcee-f9c8cbc57993.jpg?1592713006", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/1/e/1e2e09bf-e7c8-4f13-bcee-f9c8cbc57993.jpg?1592713006", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/1/e/1e2e09bf-e7c8-4f13-bcee-f9c8cbc57993.png?1592713006", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/e/1e2e09bf-e7c8-4f13-bcee-f9c8cbc57993.jpg?1592713006", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/1/e/1e2e09bf-e7c8-4f13-bcee-f9c8cbc57993.jpg?1592713006"}, "mana_cost": "{U}", "cmc": 1.0, "type_line": "Instant", "oracle_text": "Counter target instant or sorcery spell unless its controller pays {1}.\nStorm (When you cast this spell, copy it for each spell cast before it this turn. You may choose new targets for the copies.)", "colors": ["U"], "color_identity": ["U"], "keywords": ["Storm"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "84ff1a64-4e69-4ed2-8c08-26206e3b97a0", "set": "cmd", "set_name": "Commander 2011", "set_type": "commander", "set_uri": "https://api.scryfall.com/sets/84ff1a64-4e69-4ed2-8c08-26206e3b97a0", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Acmd&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/cmd?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/1e2e09bf-e7c8-4f13-bcee-f9c8cbc57993/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A86bf58f2-7f25-4e10-b797-25e0e8e67769&unique=prints", "collector_number": "46", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Erica Yang", "artist_ids": ["fcc15b63-b280-49da-9fee-f862824a2fc8"], "illustration_id": "6565f15d-208e-4533-9880-2c24623a809e", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "edhrec_rank": 270, "prices": {"usd": "22.81", "usd_foil": null, "usd_etched": null, "eur": "22.50", "eur_foil": null, "tix": "22.97"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=228255", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Flusterstorm&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Flusterstorm&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Flusterstorm"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/47522?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Flusterstorm&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/40625?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "9c2077c2-81ce-4ddf-82f0-6fece362d6d7", "oracle_id": "86bf58f2-7f25-4e10-b797-25e0e8e67769", "multiverse_ids": [], "mtgo_id": 69985, "name": "Flusterstorm", "lang": "en", "released_at": "2018-09-28", "uri": "https://api.scryfall.com/cards/9c2077c2-81ce-4ddf-82f0-6fece362d6d7", "scryfall_uri": "https://scryfall.com/card/prm/69985/flusterstorm?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/9/c/9c2077c2-81ce-4ddf-82f0-6fece362d6d7.jpg?1562546827", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/c/9c2077c2-81ce-4ddf-82f0-6fece362d6d7.jpg?1562546827", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/9/c/9c2077c2-81ce-4ddf-82f0-6fece362d6d7.jpg?1562546827", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/9/c/9c2077c2-81ce-4ddf-82f0-6fece362d6d7.png?1562546827", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/c/9c2077c2-81ce-4ddf-82f0-6fece362d6d7.jpg?1562546827", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/9/c/9c2077c2-81ce-4ddf-82f0-6fece362d6d7.jpg?1562546827"}, "mana_cost": "{U}", "cmc": 1.0, "type_line": "Instant", "oracle_text": "Counter target instant or sorcery spell unless its controller pays {1}.\nStorm (When you cast this spell, copy it for each spell cast before it this turn. You may choose new targets for the copies.)", "colors": ["U"], "color_identity": ["U"], "keywords": ["Storm"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": true, "reprint": true, "variation": false, "set_id": "638940fb-6be9-4be3-b83f-68d3902fbbe5", "set": "prm", "set_name": "Magic Online Promos", "set_type": "promo", "set_uri": "https://api.scryfall.com/sets/638940fb-6be9-4be3-b83f-68d3902fbbe5", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aprm&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/prm?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/9c2077c2-81ce-4ddf-82f0-6fece362d6d7/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A86bf58f2-7f25-4e10-b797-25e0e8e67769&unique=prints", "collector_number": "69985", "digital": true, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Chris Rallis", "artist_ids": ["a8e7b854-b15a-421a-b66d-6e68187ae285"], "illustration_id": "7ce3d40d-0f7c-460e-ad7f-2eb2133743f8", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "edhrec_rank": 270, "prices": {"usd": null, "usd_foil": null, "usd_etched": null, "eur": null, "eur_foil": null, "tix": "24.51"}, "related_uris": {"tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Flusterstorm&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Flusterstorm&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Flusterstorm"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/search/magic/product?productLineName=magic&q=Flusterstorm&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall&view=grid", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Flusterstorm&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/69985?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "e8b39fd6-9240-4f76-b12c-e7d9aa88f061", "oracle_id": "7dde4eb6-e9d7-4259-abc2-3af738e0f00f", "multiverse_ids": [456651], "mtgo_id": 70183, "tcgplayer_id": 180808, "cardmarket_id": 366857, "name": "Foil", "lang": "en", "released_at": "2018-12-07", "uri": "https://api.scryfall.com/cards/e8b39fd6-9240-4f76-b12c-e7d9aa88f061", "scryfall_uri": "https://scryfall.com/card/uma/55/foil?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/e/8/e8b39fd6-9240-4f76-b12c-e7d9aa88f061.jpg?1547516254", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/8/e8b39fd6-9240-4f76-b12c-e7d9aa88f061.jpg?1547516254", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/e/8/e8b39fd6-9240-4f76-b12c-e7d9aa88f061.jpg?1547516254", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/e/8/e8b39fd6-9240-4f76-b12c-e7d9aa88f061.png?1547516254", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/8/e8b39fd6-9240-4f76-b12c-e7d9aa88f061.jpg?1547516254", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/e/8/e8b39fd6-9240-4f76-b12c-e7d9aa88f061.jpg?1547516254"}, "mana_cost": "{2}{U}{U}", "cmc": 4.0, "type_line": "Instant", "oracle_text": "You may discard an Island card and another card rather than pay this spell's mana cost.\nCounter target spell.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "2ec77b94-6d47-4891-a480-5d0b4e5c9372", "set": "uma", "set_name": "Ultimate Masters", "set_type": "masters", "set_uri": "https://api.scryfall.com/sets/2ec77b94-6d47-4891-a480-5d0b4e5c9372", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Auma&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/uma?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/e8b39fd6-9240-4f76-b12c-e7d9aa88f061/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A7dde4eb6-e9d7-4259-abc2-3af738e0f00f&unique=prints", "collector_number": "55", "digital": false, "rarity": "common", "flavor_text": "Among wizards, poor timing is the most consistent mistake.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Donato Giancola", "artist_ids": ["90332db2-aecb-4d79-917b-95cbeb8d0cb6"], "illustration_id": "139ace29-3164-451a-a444-4565f13fbbbc", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 2527, "prices": {"usd": "0.29", "usd_foil": "0.86", "usd_etched": null, "eur": "0.18", "eur_foil": "0.60", "tix": "0.40"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=456651", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Foil&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Foil&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Foil"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/180808?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Foil&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/70183?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}]} \ No newline at end of file +{"has_more": true, "data": [{"name": "Abjure", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/b/fbad9449-d09c-4fd0-b2ad-2aa3a29e03bf.jpg?1562804357", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/b/fbad9449-d09c-4fd0-b2ad-2aa3a29e03bf.jpg?1562804357"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Absorb", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/e/1e8a43c1-42d1-45ef-8a63-4b87775a6e88.jpg?1584831352", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/e/1e8a43c1-42d1-45ef-8a63-4b87775a6e88.jpg?1584831352"}, "reprint": true, "digital": false, "set_type": "expansion"}, {"name": "Absorb", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/d/5d6a0f3e-457f-41f5-be26-5fb249874f1a.jpg?1562913952", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/d/5d6a0f3e-457f-41f5-be26-5fb249874f1a.jpg?1562913952"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Absorb Energy", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/f/bfdca67d-9a97-4ddc-8d50-26a48ad2e4b7.jpg?1645416627", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/f/bfdca67d-9a97-4ddc-8d50-26a48ad2e4b7.jpg?1645416627"}, "reprint": false, "digital": true, "set_type": "alchemy"}, {"name": "Abstruse Interference", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/4/249a7be3-311e-4ce6-97dc-97242463ae23.jpg?1562902357", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/4/249a7be3-311e-4ce6-97dc-97242463ae23.jpg?1562902357"}, "reprint": false, "frame_effects": ["devoid"], "digital": false, "set_type": "expansion"}, {"name": "Access Denied", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/6/1642df77-6fe8-47cf-b750-ca4dd9b331ba.jpg?1651655225", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/6/1642df77-6fe8-47cf-b750-ca4dd9b331ba.jpg?1651655225"}, "reprint": false, "digital": false, "set_type": "commander"}, {"name": "Admiral's Order", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/0/80dc0310-afd9-49b4-b58f-a0e91120c38c.jpg?1555039852", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/0/80dc0310-afd9-49b4-b58f-a0e91120c38c.jpg?1555039852"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Aether Gust", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/8/783da808-6698-4e55-9fac-430a6effe2b1.jpg?1592516251", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/8/783da808-6698-4e55-9fac-430a6effe2b1.jpg?1592516251"}, "reprint": false, "digital": false, "set_type": "core"}, {"name": "Aether Gust", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/c/bcc1aa91-ec97-4fe8-b4b1-a213f050f956.jpg?1645141636", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/c/bcc1aa91-ec97-4fe8-b4b1-a213f050f956.jpg?1645141636"}, "reprint": true, "digital": false, "set_type": "box"}, {"name": "Annul", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/b/4b1d4a59-11a0-4a55-8ac0-07377a9e6dc8.jpg?1631046631", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/b/4b1d4a59-11a0-4a55-8ac0-07377a9e6dc8.jpg?1631046631"}, "reprint": true, "digital": false, "set_type": "expansion"}, {"name": "Annul", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/e/5e71b6ad-4b81-4277-8512-0a3f2266cd23.jpg?1562818788", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/e/5e71b6ad-4b81-4277-8512-0a3f2266cd23.jpg?1562818788"}, "reprint": true, "digital": false, "set_type": "expansion"}, {"name": "Annul", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/b/8ba18ec8-e82f-41be-9ed8-b1a4ae9b7426.jpg?1562150464", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/b/8ba18ec8-e82f-41be-9ed8-b1a4ae9b7426.jpg?1562150464"}, "reprint": true, "digital": false, "set_type": "expansion"}, {"name": "Annul", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/f/3f8c73ff-be92-41ca-93a7-76f9823adb38.jpg?1562908208", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/f/3f8c73ff-be92-41ca-93a7-76f9823adb38.jpg?1562908208"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "An Offer You Can't Refuse", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/9/b9d349f3-5be2-4b1f-a4c3-ba94822cf0cf.jpg?1649394290", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/9/b9d349f3-5be2-4b1f-a4c3-ba94822cf0cf.jpg?1649394290"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Anticognition", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/b/db99b872-77c7-4471-9c44-a36d4ff5d33f.jpg?1604193539", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/b/db99b872-77c7-4471-9c44-a36d4ff5d33f.jpg?1604193539"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Arcane Denial", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/d/9d1ffeb1-6c31-45f7-8140-913c397022a3.jpg?1562439019", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/d/9d1ffeb1-6c31-45f7-8140-913c397022a3.jpg?1562439019"}, "reprint": true, "digital": false, "set_type": "masters"}, {"name": "Arcane Denial", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/b/ab175817-da6a-4ae7-a016-c3bfb087eae0.jpg?1562931100", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/b/ab175817-da6a-4ae7-a016-c3bfb087eae0.jpg?1562931100"}, "reprint": true, "digital": false, "set_type": "commander"}, {"name": "Arcane Denial", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/0/b0c5728e-43e7-417a-ba18-5038345cec67.jpg?1562770144", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/0/b0c5728e-43e7-417a-ba18-5038345cec67.jpg?1562770144"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Arcane Denial", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/1/415a3104-90e6-4235-b67f-69337c7fe714.jpg?1562768258", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/1/415a3104-90e6-4235-b67f-69337c7fe714.jpg?1562768258"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Archmage's Charm", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/7/57b852b6-4388-4a41-a5c0-bba37a5c1451.jpg?1562201300", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/7/57b852b6-4388-4a41-a5c0-bba37a5c1451.jpg?1562201300"}, "reprint": false, "digital": false, "set_type": "draft_innovation"}, {"name": "Archmage's Charm", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/3/d378f4f8-ff9f-4389-86c8-23c5c4990b4c.jpg?1657849868", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/3/d378f4f8-ff9f-4389-86c8-23c5c4990b4c.jpg?1657849868"}, "reprint": true, "frame_effects": ["inverted"], "digital": false, "set_type": "promo"}, {"name": "Artifact Blast", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/5/1506d99d-7b2e-4101-84a5-c950dadb263a.jpg?1562899411", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/5/1506d99d-7b2e-4101-84a5-c950dadb263a.jpg?1562899411"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Assert Authority", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/c/fc339ed7-e1d4-4fe9-a4c4-b030d3e74c00.jpg?1562163986", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/c/fc339ed7-e1d4-4fe9-a4c4-b030d3e74c00.jpg?1562163986"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Avoid Fate", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/2/92f1509e-6ed5-4009-a031-ea84b43cbd1b.jpg?1562859699", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/2/92f1509e-6ed5-4009-a031-ea84b43cbd1b.jpg?1562859699"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Bane's Contingency", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/9/19f81099-f657-4f7d-84ad-f472ae87d9c5.jpg?1653844052", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/9/19f81099-f657-4f7d-84ad-f472ae87d9c5.jpg?1653844052"}, "reprint": false, "digital": false, "set_type": "draft_innovation"}, {"name": "Bant Charm", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/5/65b65c87-b084-44aa-b841-411a3c73e234.jpg?1562704776", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/5/65b65c87-b084-44aa-b841-411a3c73e234.jpg?1562704776"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Bar the Gate", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/9/b9b1e53f-1384-4860-9944-e68922afc65c.jpg?1627702860", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/9/b9b1e53f-1384-4860-9944-e68922afc65c.jpg?1627702860"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Bind", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/f/cfa51783-9ef8-4e51-ba0d-ce8439d83bdf.jpg?1562936749", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/f/cfa51783-9ef8-4e51-ba0d-ce8439d83bdf.jpg?1562936749"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Bind to Secrecy", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/a/bab838e0-cfc5-4eeb-920d-bfbe462a1e31.jpg?1655963915", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/a/bab838e0-cfc5-4eeb-920d-bfbe462a1e31.jpg?1655963915"}, "reprint": false, "digital": true, "set_type": "alchemy"}, {"name": "Blue Elemental Blast", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/f/2f51f88f-f662-4572-a371-9a77718ed079.jpg?1562434032", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/f/2f51f88f-f662-4572-a371-9a77718ed079.jpg?1562434032"}, "reprint": true, "digital": false, "set_type": "masters"}, {"name": "Blue Elemental Blast", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/0/20d666ef-39bf-4fbf-8201-5f1056539da2.jpg?1559591462", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/0/20d666ef-39bf-4fbf-8201-5f1056539da2.jpg?1559591462"}, "reprint": false, "digital": false, "set_type": "core"}, {"name": "Blue Elemental Blast", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/5/6582b980-3e4b-422a-9a6c-1927ae966d7e.jpg?1561757308", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/5/6582b980-3e4b-422a-9a6c-1927ae966d7e.jpg?1561757308"}, "reprint": true, "digital": false, "set_type": "spellbook"}, {"name": "Blue Elemental Blast", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/6/a671237a-f895-4bbc-b6bd-b0eed4502ec5.jpg?1562547160", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/6/a671237a-f895-4bbc-b6bd-b0eed4502ec5.jpg?1562547160"}, "reprint": true, "digital": true, "set_type": "promo"}, {"name": "Bone to Ash", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/4/c4a75cef-9551-45e2-b1ff-80662c76ec20.jpg?1562941461", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/4/c4a75cef-9551-45e2-b1ff-80662c76ec20.jpg?1562941461"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Broken Ambitions", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/0/8052d90b-bc49-4a9e-9211-159a54aa2bcd.jpg?1562355294", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/0/8052d90b-bc49-4a9e-9211-159a54aa2bcd.jpg?1562355294"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Broken Concentration", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/5/252eef1f-0a62-420d-aad8-e3d7f1e07c1b.jpg?1576383988", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/5/252eef1f-0a62-420d-aad8-e3d7f1e07c1b.jpg?1576383988"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Brokers Confluence", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/5/657ff5fc-1a95-46f9-85f7-fc1ad757c8c4.jpg?1650506185", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/5/657ff5fc-1a95-46f9-85f7-fc1ad757c8c4.jpg?1650506185"}, "reprint": false, "digital": false, "set_type": "commander"}, {"name": "Brutal Expulsion", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/c/0cd0e11a-0398-431b-b523-9d3c8a0155cb.jpg?1562132495", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/c/0cd0e11a-0398-431b-b523-9d3c8a0155cb.jpg?1562132495"}, "reprint": true, "frame_effects": ["devoid"], "digital": false, "set_type": "promo"}, {"name": "Burnout", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/a/5a8f5a18-e490-4010-ac1c-c74a5f2dcbda.jpg?1562768717", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/a/5a8f5a18-e490-4010-ac1c-c74a5f2dcbda.jpg?1562768717"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Calculated Dismissal", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/c/2c42ab35-6050-42b2-9c3c-3252f2e69442.jpg?1562012331", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/c/2c42ab35-6050-42b2-9c3c-3252f2e69442.jpg?1562012331"}, "reprint": false, "digital": false, "set_type": "core"}, {"name": "Cancel", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/f/cf6e5ad6-ffe2-4588-b357-c415c33fbc11.jpg?1562564222", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/f/cf6e5ad6-ffe2-4588-b357-c415c33fbc11.jpg?1562564222"}, "reprint": true, "digital": false, "set_type": "expansion"}, {"name": "Cancel", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/2/7258e651-868a-4f63-9454-6c6c95d25387.jpg?1543674894", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/2/7258e651-868a-4f63-9454-6c6c95d25387.jpg?1543674894"}, "reprint": true, "digital": false, "set_type": "expansion"}, {"name": "Cancel", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/f/9f540dcb-8d0b-4d33-8c0d-893fa5db54eb.jpg?1562791164", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/f/9f540dcb-8d0b-4d33-8c0d-893fa5db54eb.jpg?1562791164"}, "reprint": true, "digital": false, "set_type": "expansion"}, {"name": "Cancel", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/d/fd994a26-65ff-43be-8d52-476e887d3ed2.jpg?1562795930", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/d/fd994a26-65ff-43be-8d52-476e887d3ed2.jpg?1562795930"}, "reprint": true, "digital": false, "set_type": "expansion"}, {"name": "Cancel", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/e/9e557f54-3d9d-4610-a0d0-5874feacc76e.jpg?1562614848", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/e/9e557f54-3d9d-4610-a0d0-5874feacc76e.jpg?1562614848"}, "reprint": true, "digital": false, "set_type": "expansion"}, {"name": "Cancel", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/7/479f56c2-8256-4325-909a-bf460505dbc5.jpg?1562703421", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/7/479f56c2-8256-4325-909a-bf460505dbc5.jpg?1562703421"}, "reprint": true, "digital": false, "set_type": "expansion"}, {"name": "Cancel", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/4/b4e175f7-f649-451b-9ee5-ad1140b2e8a7.jpg?1562933181", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/4/b4e175f7-f649-451b-9ee5-ad1140b2e8a7.jpg?1562933181"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Cancel", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/c/bc4d6368-03dc-488a-9a6b-07a549a87572.jpg?1561757939", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/c/bc4d6368-03dc-488a-9a6b-07a549a87572.jpg?1561757939"}, "reprint": true, "digital": false, "set_type": "promo"}, {"name": "Censor", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/c/4cb4e315-1a77-479a-9f15-fb23575de805.jpg?1543674908", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/c/4cb4e315-1a77-479a-9f15-fb23575de805.jpg?1543674908"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Ceremonious Rejection", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/8/08c5ed8e-4804-4042-8a1d-ad24c6846816.jpg?1576381129", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/8/08c5ed8e-4804-4042-8a1d-ad24c6846816.jpg?1576381129"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Circular Logic", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/d/cd9198d6-201d-4175-8f70-eef92d7d5bb5.jpg?1562632085", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/d/cd9198d6-201d-4175-8f70-eef92d7d5bb5.jpg?1562632085"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Clash of Wills", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/6/665ee42f-8d76-4f8b-9dd3-7455a90f0da7.jpg?1562023499", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/6/665ee42f-8d76-4f8b-9dd3-7455a90f0da7.jpg?1562023499"}, "reprint": false, "digital": false, "set_type": "core"}, {"name": "Clash of Wills", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/c/1c67ab53-9489-4658-859e-9dd8a6e0f20d.jpg?1562636752", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/c/1c67ab53-9489-4658-859e-9dd8a6e0f20d.jpg?1562636752"}, "reprint": true, "digital": false, "set_type": "promo"}, {"name": "Complicate", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/3/33f69670-e494-42b8-9148-fe105ec61aa0.jpg?1562907165", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/3/33f69670-e494-42b8-9148-fe105ec61aa0.jpg?1562907165"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Concerted Defense", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/3/235c108d-3902-4c2e-919c-a5449cd2dc3c.jpg?1604193820", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/3/235c108d-3902-4c2e-919c-a5449cd2dc3c.jpg?1604193820"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Condescend", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/b/5ba16c0f-dd42-4a2a-8f08-bc8c8478952b.jpg?1562849378", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/b/5ba16c0f-dd42-4a2a-8f08-bc8c8478952b.jpg?1562849378"}, "reprint": true, "digital": false, "set_type": "masters"}, {"name": "Condescend", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/8/e8303b80-e29a-46b8-90b0-c0cfe551b435.jpg?1562880436", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/8/e8303b80-e29a-46b8-90b0-c0cfe551b435.jpg?1562880436"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Confirm Suspicions", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/f/cf7fcbc2-1034-442d-9f2a-7d79ea40ac3d.jpg?1576384007", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/f/cf7fcbc2-1034-442d-9f2a-7d79ea40ac3d.jpg?1576384007"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Confound", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/f/4f3b7d39-ce98-48e2-b2bf-0d55b4d3102b.jpg?1562911605", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/f/4f3b7d39-ce98-48e2-b2bf-0d55b4d3102b.jpg?1562911605"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Contradict", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/0/a0b3d4ff-09d1-4d9f-8c83-cdfbd7bb1079.jpg?1562790758", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/0/a0b3d4ff-09d1-4d9f-8c83-cdfbd7bb1079.jpg?1562790758"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Controvert", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/e/0e670f6b-d16e-47fc-a5b7-7ca0d8763644.jpg?1593274904", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/e/0e670f6b-d16e-47fc-a5b7-7ca0d8763644.jpg?1593274904"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Convolute", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/f/3fd8e607-8179-4ae8-ba7f-f5f22649dc18.jpg?1591230479", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/f/3fd8e607-8179-4ae8-ba7f-f5f22649dc18.jpg?1591230479"}, "reprint": true, "digital": false, "set_type": "expansion"}, {"name": "Convolute", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/1/e17cf756-ec41-4934-8906-4276277c1470.jpg?1576384056", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/1/e17cf756-ec41-4934-8906-4276277c1470.jpg?1576384056"}, "reprint": true, "digital": false, "set_type": "expansion"}, {"name": "Convolute", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/a/fac88052-96a3-4a4d-95a2-c5a652fcb275.jpg?1598914075", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/a/fac88052-96a3-4a4d-95a2-c5a652fcb275.jpg?1598914075"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Corrupted Resolve", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/8/28432161-023b-4a98-b92a-55dc6d936cd1.jpg?1562876198", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/8/28432161-023b-4a98-b92a-55dc6d936cd1.jpg?1562876198"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Counterbore", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/4/f4228b80-d87d-4ebe-ae92-04e4a7d0dc43.jpg?1562838120", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/4/f4228b80-d87d-4ebe-ae92-04e4a7d0dc43.jpg?1562838120"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Counterflux", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/4/94e4b773-40a4-4272-85dd-f728ada22748.jpg?1562790128", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/4/94e4b773-40a4-4272-85dd-f728ada22748.jpg?1562790128"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Counterflux", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/8/e864fd80-baee-468e-9dc3-e650cc203b23.jpg?1657120160", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/8/e864fd80-baee-468e-9dc3-e650cc203b23.jpg?1657120160"}, "reprint": true, "digital": false, "set_type": "box"}, {"name": "Counterlash", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/3/d3ec2c57-8e67-472d-8f2e-0492d311f130.jpg?1562945498", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/3/d3ec2c57-8e67-472d-8f2e-0492d311f130.jpg?1562945498"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Countermand", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/7/07815e32-0b64-4c2b-84e6-a72336c45cf5.jpg?1593095401", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/7/07815e32-0b64-4c2b-84e6-a72336c45cf5.jpg?1593095401"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Counterspell", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/c/0c9a7cb0-5bff-48ff-b620-2838816ac9b5.jpg?1580013910", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/c/0c9a7cb0-5bff-48ff-b620-2838816ac9b5.jpg?1580013910"}, "reprint": true, "digital": false, "set_type": "masters"}, {"name": "Counterspell", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/1/71cfcba5-1571-48b8-a3db-55dca135506e.jpg?1562843855", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/1/71cfcba5-1571-48b8-a3db-55dca135506e.jpg?1562843855"}, "reprint": true, "digital": false, "set_type": "duel_deck"}, {"name": "Counterspell", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/9/29bb1b85-9444-4bfa-b622-092a6873631c.jpg?1562234566", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/9/29bb1b85-9444-4bfa-b622-092a6873631c.jpg?1562234566"}, "reprint": true, "digital": false, "set_type": "core"}, {"name": "Counterspell", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/b/7bd03c80-7812-4704-9e07-9cf73b49c01f.jpg?1562381815", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/b/7bd03c80-7812-4704-9e07-9cf73b49c01f.jpg?1562381815"}, "reprint": true, "digital": false, "set_type": "expansion"}, {"name": "Counterspell", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/a/dacdd380-71cf-4832-bd02-3697501325f3.jpg?1562056885", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/a/dacdd380-71cf-4832-bd02-3697501325f3.jpg?1562056885"}, "reprint": true, "digital": false, "set_type": "expansion"}, {"name": "Counterspell", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/9/b975289d-d8b8-46b4-8c60-d6ed4b594519.jpg?1562593755", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/9/b975289d-d8b8-46b4-8c60-d6ed4b594519.jpg?1562593755"}, "reprint": true, "digital": false, "set_type": "core"}, {"name": "Counterspell", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/e/aedbcbaa-40f0-485f-8427-778edc2d2ec0.jpg?1562927522", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/e/aedbcbaa-40f0-485f-8427-778edc2d2ec0.jpg?1562927522"}, "reprint": true, "digital": false, "set_type": "expansion"}, {"name": "Counterspell", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/d/0df55e3f-14de-46ef-b6b1-616618724d9e.jpg?1559591713", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/d/0df55e3f-14de-46ef-b6b1-616618724d9e.jpg?1559591713"}, "reprint": false, "digital": false, "set_type": "core"}, {"name": "Counterspell", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/3/f35ec9da-f38b-4b7f-9eb5-090ca7755668.jpg?1645141660", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/3/f35ec9da-f38b-4b7f-9eb5-090ca7755668.jpg?1645141660"}, "reprint": true, "digital": false, "set_type": "box"}, {"name": "Counterspell", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/c/2c358d75-01ad-4487-8104-425124b96aae.jpg?1628337127", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/c/2c358d75-01ad-4487-8104-425124b96aae.jpg?1628337127"}, "reprint": true, "frame_effects": ["inverted"], "digital": false, "set_type": "draft_innovation"}, {"name": "Counterspell", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/f/ffdf9d2a-c163-43df-9a2f-20b8749c86ae.jpg?1631491044", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/f/ffdf9d2a-c163-43df-9a2f-20b8749c86ae.jpg?1631491044"}, "reprint": true, "digital": false, "set_type": "masterpiece"}, {"name": "Counterspell", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/1/3126d20f-1082-4ebc-b2fa-b12be3ba1bac.jpg?1562904991", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/1/3126d20f-1082-4ebc-b2fa-b12be3ba1bac.jpg?1562904991"}, "reprint": true, "digital": false, "set_type": "masterpiece"}, {"name": "Counterspell", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/0/7065deea-6117-47d4-9d72-fc67af5bb483.jpg?1561757383", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/0/7065deea-6117-47d4-9d72-fc67af5bb483.jpg?1561757383"}, "reprint": true, "digital": false, "set_type": "promo"}, {"name": "Countersquall", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/b/2b645d74-420e-45e5-aa82-ba3a8dfdd9a0.jpg?1562905206", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/b/2b645d74-420e-45e5-aa82-ba3a8dfdd9a0.jpg?1562905206"}, "reprint": true, "digital": false, "set_type": "duel_deck"}, {"name": "Countersquall", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/c/ec16e216-95e1-41f7-87e0-78b6ac3fe1df.jpg?1562804491", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/c/ec16e216-95e1-41f7-87e0-78b6ac3fe1df.jpg?1562804491"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Countervailing Winds", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/e/de1c0ef3-b32c-403a-93cb-29cf05795711.jpg?1562817497", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/e/de1c0ef3-b32c-403a-93cb-29cf05795711.jpg?1562817497"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Crush Dissent", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/4/94c70f23-0ca9-425e-a53a-6c09921c0075.jpg?1557576187", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/4/94c70f23-0ca9-425e-a53a-6c09921c0075.jpg?1557576187"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Cryptic Command", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/0/30f6fca9-003b-4f6b-9d6e-1e88adda4155.jpg?1562847413", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/0/30f6fca9-003b-4f6b-9d6e-1e88adda4155.jpg?1562847413"}, "reprint": true, "digital": false, "set_type": "masters"}, {"name": "Cryptic Command", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/2/829e3d6e-5d7c-4cc4-a7a6-7cbf5a7442ba.jpg?1562355759", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/2/829e3d6e-5d7c-4cc4-a7a6-7cbf5a7442ba.jpg?1562355759"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Cryptic Command", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/2/a2a384c1-a05f-4f00-bd77-f897d9819971.jpg?1562927862", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/2/a2a384c1-a05f-4f00-bd77-f897d9819971.jpg?1562927862"}, "reprint": true, "digital": false, "set_type": "masterpiece"}, {"name": "Cryptic Command", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/2/526607e9-1907-4639-b944-8ee152c81bfb.jpg?1561757137", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/2/526607e9-1907-4639-b944-8ee152c81bfb.jpg?1561757137"}, "reprint": true, "digital": false, "set_type": "promo"}, {"name": "Dash Hopes", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/1/814bcfc0-7539-4ed9-8b51-27e6a3ab9d9a.jpg?1562575740", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/1/814bcfc0-7539-4ed9-8b51-27e6a3ab9d9a.jpg?1562575740"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Dawn Charm", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/4/a4c9667b-1d94-42eb-ae8e-1ae4755e200a.jpg?1562578420", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/4/a4c9667b-1d94-42eb-ae8e-1ae4755e200a.jpg?1562578420"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Daze", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/0/f05e9a3e-8a35-4687-85cb-e31b3927a5e2.jpg?1580013916", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/0/f05e9a3e-8a35-4687-85cb-e31b3927a5e2.jpg?1580013916"}, "reprint": true, "digital": false, "set_type": "masters"}, {"name": "Daze", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/0/d03bff25-0d5e-4dcf-8d75-6df846afea3b.jpg?1562632115", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/0/d03bff25-0d5e-4dcf-8d75-6df846afea3b.jpg?1562632115"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Daze", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/9/a9b037f1-3298-4ba8-92a8-0843f6e497d7.jpg?1562929191", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/9/a9b037f1-3298-4ba8-92a8-0843f6e497d7.jpg?1562929191"}, "reprint": true, "digital": false, "set_type": "masterpiece"}, {"name": "Decisive Denial", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/2/b2e9d132-95f7-4ee7-9c91-be19e4ad7a5d.jpg?1627428577", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/2/b2e9d132-95f7-4ee7-9c91-be19e4ad7a5d.jpg?1627428577"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Delay", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/9/3906d538-f1ca-4799-b91c-2e0d2934f241.jpg?1619393997", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/9/3906d538-f1ca-4799-b91c-2e0d2934f241.jpg?1619393997"}, "reprint": true, "digital": false, "set_type": "masters"}, {"name": "Delay", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/8/e821d337-4bc5-4401-ac9b-34adf4012b73.jpg?1562941573", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/8/e821d337-4bc5-4401-ac9b-34adf4012b73.jpg?1562941573"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Denied!", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/2/1285c125-e145-4565-a029-352ac6adf688.jpg?1562799062", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/2/1285c125-e145-4565-a029-352ac6adf688.jpg?1562799062"}, "reprint": false, "digital": false, "set_type": "funny"}, {"name": "Deny Existence", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/6/16a14eeb-1c85-4029-a047-39a4efef3f74.jpg?1576384025", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/6/16a14eeb-1c85-4029-a047-39a4efef3f74.jpg?1576384025"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Deny the Divine", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/2/1200f68a-a8ea-4777-b6b0-de48b2203fd1.jpg?1588900840", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/2/1200f68a-a8ea-4777-b6b0-de48b2203fd1.jpg?1588900840"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Deprive", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/e/2efecdd9-bd3a-4b79-92da-6485589d5bde.jpg?1562702470", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/e/2efecdd9-bd3a-4b79-92da-6485589d5bde.jpg?1562702470"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Desertion", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/a/9a2a1779-af08-4a9a-aba4-e6892ce2332c.jpg?1562278155", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/a/9a2a1779-af08-4a9a-aba4-e6892ce2332c.jpg?1562278155"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Devious Cover-Up", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/4/648281fe-89fb-4d8d-b944-3af28fb044f6.jpg?1634348751", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/4/648281fe-89fb-4d8d-b944-3af28fb044f6.jpg?1634348751"}, "reprint": true, "digital": false, "set_type": "expansion"}, {"name": "Devious Cover-Up", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/1/21ac6b0a-b1a5-439d-b65e-5f04e1826c80.jpg?1636491628", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/1/21ac6b0a-b1a5-439d-b65e-5f04e1826c80.jpg?1636491628"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Didn't Say Please", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/7/77500b53-0852-4d6a-bfe3-b1e8ef5a12cd.jpg?1572489858", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/7/77500b53-0852-4d6a-bfe3-b1e8ef5a12cd.jpg?1572489858"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Dimir Charm", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/3/f3f4cfa7-8ee4-4a85-9e6a-65a7541f62c1.jpg?1561852231", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/3/f3f4cfa7-8ee4-4a85-9e6a-65a7541f62c1.jpg?1561852231"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Dimir Charm", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/f/9f6bc1da-3969-4f19-b072-4ed79f906fef.jpg?1562497257", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/f/9f6bc1da-3969-4f19-b072-4ed79f906fef.jpg?1562497257"}, "reprint": true, "digital": false, "set_type": "promo"}, {"name": "Disallow", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/5/25f05814-a5a5-460f-9d29-0ab03efecf4c.jpg?1576381471", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/5/25f05814-a5a5-460f-9d29-0ab03efecf4c.jpg?1576381471"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Disappearing Act", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/a/9a4a6d56-9bed-444c-aae8-383c315779a0.jpg?1576381158", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/a/9a4a6d56-9bed-444c-aae8-383c315779a0.jpg?1576381158"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Discombobulate", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/e/cef584c5-6e2d-419b-9c11-a1b6c9c9ab2a.jpg?1562943839", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/e/cef584c5-6e2d-419b-9c11-a1b6c9c9ab2a.jpg?1562943839"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Discontinuity", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/3/b33ba0a8-04e9-4df6-af20-a3ca4470cdcc.jpg?1594735451", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/3/b33ba0a8-04e9-4df6-af20-a3ca4470cdcc.jpg?1594735451"}, "reprint": false, "digital": false, "set_type": "core"}, {"name": "Disdainful Stroke", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/9/492aa24c-61c4-48bc-b7b7-f423be2662da.jpg?1649881231", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/9/492aa24c-61c4-48bc-b7b7-f423be2662da.jpg?1649881231"}, "reprint": true, "digital": false, "set_type": "expansion"}, {"name": "Disdainful Stroke", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/6/7691ac89-f8ba-493e-aa11-5674a783dffb.jpg?1631047007", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/6/7691ac89-f8ba-493e-aa11-5674a783dffb.jpg?1631047007"}, "reprint": true, "digital": false, "set_type": "expansion"}, {"name": "Disdainful Stroke", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/1/0193dfa3-8409-44be-b4be-6c3cad42d4a4.jpg?1572892724", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/1/0193dfa3-8409-44be-b4be-6c3cad42d4a4.jpg?1572892724"}, "reprint": true, "digital": false, "set_type": "expansion"}, {"name": "Disdainful Stroke", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/8/180425c9-1898-48d4-9932-ddfb1a28e6b0.jpg?1562783110", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/8/180425c9-1898-48d4-9932-ddfb1a28e6b0.jpg?1562783110"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Disdainful Stroke", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/7/3711f61d-6381-4c92-a3f5-6deed29aae47.jpg?1562639749", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/7/3711f61d-6381-4c92-a3f5-6deed29aae47.jpg?1562639749"}, "reprint": true, "digital": false, "set_type": "promo"}, {"name": "Dismal Failure", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/5/35786a7a-faa6-457d-9b92-da560b93a43a.jpg?1562569290", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/5/35786a7a-faa6-457d-9b92-da560b93a43a.jpg?1562569290"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Dismiss", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/e/1e55d6be-7682-4786-9872-e847afd710b0.jpg?1562052798", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/e/1e55d6be-7682-4786-9872-e847afd710b0.jpg?1562052798"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Dispel", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/c/bceab6b3-6b64-4964-a501-ce806a6c13ad.jpg?1562939587", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/c/bceab6b3-6b64-4964-a501-ce806a6c13ad.jpg?1562939587"}, "reprint": true, "digital": false, "set_type": "expansion"}, {"name": "Dispel", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/8/08d4a8d7-c136-472f-8146-a1100701ca4f.jpg?1562782227", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/8/08d4a8d7-c136-472f-8146-a1100701ca4f.jpg?1562782227"}, "reprint": true, "digital": false, "set_type": "expansion"}, {"name": "Dispel", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/1/f178d0cc-5dd1-41ab-a2e8-218ece6f2a86.jpg?1562299138", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/1/f178d0cc-5dd1-41ab-a2e8-218ece6f2a86.jpg?1562299138"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Dispersal Shield", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/c/0c257df6-f275-40db-bfe3-a9291356cdf7.jpg?1562525399", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/c/0c257df6-f275-40db-bfe3-a9291356cdf7.jpg?1562525399"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Disrupt", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/0/c000a02f-6b7e-4925-a938-59e645e980d7.jpg?1562933600", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/0/c000a02f-6b7e-4925-a938-59e645e980d7.jpg?1562933600"}, "reprint": true, "digital": false, "set_type": "expansion"}, {"name": "Disrupt", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/6/c6cc89b0-9acf-452b-ac1a-bc7e90eb32fc.jpg?1562803281", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/6/c6cc89b0-9acf-452b-ac1a-bc7e90eb32fc.jpg?1562803281"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Disrupting Shoal", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/5/15589745-4c0a-4edf-ad45-3b7fa45e70c5.jpg?1562875608", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/5/15589745-4c0a-4edf-ad45-3b7fa45e70c5.jpg?1562875608"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Disruption Protocol", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/5/053ab598-06a4-43ae-b9fd-c291bd05642c.jpg?1654566666", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/5/053ab598-06a4-43ae-b9fd-c291bd05642c.jpg?1654566666"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Dissipate", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/6/4689b3f2-e4b7-448e-b3d4-ab33194aafb2.jpg?1634348774", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/6/4689b3f2-e4b7-448e-b3d4-ab33194aafb2.jpg?1634348774"}, "reprint": true, "digital": false, "set_type": "expansion"}, {"name": "Dissipate", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/d/5d778082-bcdb-423a-b16f-57ac0d4dace7.jpg?1562830916", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/d/5d778082-bcdb-423a-b16f-57ac0d4dace7.jpg?1562830916"}, "reprint": true, "digital": false, "set_type": "expansion"}, {"name": "Dissipate", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/6/36d9271d-6dbf-4640-9222-721a7a3ccc08.jpg?1562718782", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/6/36d9271d-6dbf-4640-9222-721a7a3ccc08.jpg?1562718782"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Dissolve", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/9/992e8119-f933-4e54-bb04-e1cc78f7e87b.jpg?1562821811", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/9/992e8119-f933-4e54-bb04-e1cc78f7e87b.jpg?1562821811"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Dissolve", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/2/f2068083-5d53-43c3-af22-79bf617ccf1b.jpg?1562640127", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/2/f2068083-5d53-43c3-af22-79bf617ccf1b.jpg?1562640127"}, "reprint": true, "digital": false, "set_type": "promo"}, {"name": "Divide by Zero", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/9/1958d96e-ec44-48ab-80b1-5b01a24ac7b8.jpg?1644607565", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/9/1958d96e-ec44-48ab-80b1-5b01a24ac7b8.jpg?1644607565"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Double Negative", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/c/2c7e3c58-3cda-4891-8b3d-33bb21568cf5.jpg?1562640325", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/c/2c7e3c58-3cda-4891-8b3d-33bb21568cf5.jpg?1562640325"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Dovin's Veto", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/6/d60ca98f-7f91-4bbd-9d06-dadb0c1da282.jpg?1570573658", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/6/d60ca98f-7f91-4bbd-9d06-dadb0c1da282.jpg?1570573658"}, "reprint": true, "frame_effects": ["inverted"], "digital": false, "set_type": "promo"}, {"name": "Dream Fracture", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/a/daca6a57-38b7-4547-9174-a7f548ea1258.jpg?1653691053", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/a/daca6a57-38b7-4547-9174-a7f548ea1258.jpg?1653691053"}, "reprint": true, "digital": false, "set_type": "draft_innovation"}, {"name": "Dream Fracture", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/c/4cfd71ff-d899-4f5b-b7df-ec47e2840be9.jpg?1562911180", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/c/4cfd71ff-d899-4f5b-b7df-ec47e2840be9.jpg?1562911180"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Dromar's Charm", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/9/69f752d3-3f42-4275-be09-d257c89da70d.jpg?1562917160", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/9/69f752d3-3f42-4275-be09-d257c89da70d.jpg?1562917160"}, "reprint": true, "digital": false, "set_type": "commander"}, {"name": "Dromar's Charm", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/7/c7a1894c-af4e-4530-960f-2225916be8cb.jpg?1562937176", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/7/c7a1894c-af4e-4530-960f-2225916be8cb.jpg?1562937176"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Drown in the Loch", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/b/8bf5df5b-164d-4ec2-a5e6-bbaea152e271.jpg?1572490739", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/b/8bf5df5b-164d-4ec2-a5e6-bbaea152e271.jpg?1572490739"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Drown in the Loch", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/1/01acd1c1-86b2-4423-9ba7-5b9725c0514f.jpg?1640249448", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/1/01acd1c1-86b2-4423-9ba7-5b9725c0514f.jpg?1640249448"}, "reprint": true, "digital": false, "set_type": "box"}, {"name": "Endless Detour", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/3/13798c8c-1aa5-4f95-979b-b971e73d715f.jpg?1649942599", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/3/13798c8c-1aa5-4f95-979b-b971e73d715f.jpg?1649942599"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Endless Detour", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/5/e55503d2-1b32-43cf-95c6-a4a61047a4dc.jpg?1649942620", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/5/e55503d2-1b32-43cf-95c6-a4a61047a4dc.jpg?1649942620"}, "reprint": false, "frame_effects": ["showcase"], "digital": false, "set_type": "expansion"}, {"name": "Envelop", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/7/e7ed250e-12d0-4ebc-9410-5711e71c6d1f.jpg?1562632433", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/7/e7ed250e-12d0-4ebc-9410-5711e71c6d1f.jpg?1562632433"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Ertai's Meddling", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/5/35c7e7fa-1493-4ef8-9cdb-b02b07a1ad85.jpg?1562053736", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/5/35c7e7fa-1493-4ef8-9cdb-b02b07a1ad85.jpg?1562053736"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Ertai's Trickery", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/4/544e3575-9fb6-41f7-a4e6-f8460dfae344.jpg?1562912607", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/4/544e3575-9fb6-41f7-a4e6-f8460dfae344.jpg?1562912607"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Essence Backlash", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/9/a98609dc-ea90-4c7e-a191-5e5d0ba16847.jpg?1562791298", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/9/a98609dc-ea90-4c7e-a191-5e5d0ba16847.jpg?1562791298"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Essence Capture", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/3/f39bf1fa-b530-4353-a683-843466227109.jpg?1654566672", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/3/f39bf1fa-b530-4353-a683-843466227109.jpg?1654566672"}, "reprint": true, "digital": false, "set_type": "expansion"}, {"name": "Essence Capture", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/e/ce137910-0f0e-4f94-9b95-6e0eeeba164e.jpg?1584830187", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/e/ce137910-0f0e-4f94-9b95-6e0eeeba164e.jpg?1584830187"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Essence Scatter", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/f/5f79c8a0-291e-4e13-b765-4cf8c726cf30.jpg?1636491405", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/f/5f79c8a0-291e-4e13-b765-4cf8c726cf30.jpg?1636491405"}, "reprint": true, "digital": false, "set_type": "expansion"}, {"name": "Essence Scatter", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/1/e1e325e1-f1f9-4448-84e3-1fd929b0bc12.jpg?1543674950", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/1/e1e325e1-f1f9-4448-84e3-1fd929b0bc12.jpg?1543674950"}, "reprint": true, "digital": false, "set_type": "expansion"}, {"name": "Essence Scatter", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/2/c231101e-6620-46fc-a0ad-a53291d12dc2.jpg?1561994248", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/2/c231101e-6620-46fc-a0ad-a53291d12dc2.jpg?1561994248"}, "reprint": false, "digital": false, "set_type": "core"}, {"name": "Evasive Action", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/d/5d0b4f29-ada4-41d2-8292-b5af537c6fd2.jpg?1562916923", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/d/5d0b4f29-ada4-41d2-8292-b5af537c6fd2.jpg?1562916923"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Exclude", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/1/a1a50f54-6363-41dd-88a7-9f9e820e7d5f.jpg?1562439432", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/1/a1a50f54-6363-41dd-88a7-9f9e820e7d5f.jpg?1562439432"}, "reprint": true, "digital": false, "set_type": "masters"}, {"name": "Exclude", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/7/970864e0-5488-4b6f-9316-3e3b4098770e.jpg?1561951119", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/7/970864e0-5488-4b6f-9316-3e3b4098770e.jpg?1561951119"}, "reprint": true, "digital": false, "set_type": "commander"}, {"name": "Exclude", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/e/aeb359c8-209c-455f-84b2-970e5678a9fa.jpg?1562930137", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/e/aeb359c8-209c-455f-84b2-970e5678a9fa.jpg?1562930137"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Extinguish", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/1/21140417-09f5-4d05-b94c-355fde9b4719.jpg?1562255853", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/1/21140417-09f5-4d05-b94c-355fde9b4719.jpg?1562255853"}, "reprint": true, "digital": false, "set_type": "starter"}, {"name": "Extinguish", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/4/641f4e66-b46b-4da3-a053-f3763400d4f5.jpg?1562918557", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/4/641f4e66-b46b-4da3-a053-f3763400d4f5.jpg?1562918557"}, "reprint": false, "digital": false, "set_type": "starter"}, {"name": "Faerie Trickery", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/e/defb9f0b-195e-4aeb-92c1-8f827ad6724b.jpg?1562371108", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/e/defb9f0b-195e-4aeb-92c1-8f827ad6724b.jpg?1562371108"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Failed Inspection", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/8/f8900f91-cb17-4f99-a5ce-15819369beb8.jpg?1576381199", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/8/f8900f91-cb17-4f99-a5ce-15819369beb8.jpg?1576381199"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Fall of the Gavel", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/4/64f42848-963b-4b16-aeec-66d0f349758b.jpg?1562787318", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/4/64f42848-963b-4b16-aeec-66d0f349758b.jpg?1562787318"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "False Summoning", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/d/cd7d30a8-bc7a-42bc-8d1b-600cbf78ab98.jpg?1562943500", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/d/cd7d30a8-bc7a-42bc-8d1b-600cbf78ab98.jpg?1562943500"}, "reprint": false, "digital": false, "set_type": "starter"}, {"name": "Familiar's Ruse", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/5/55b9be91-f3a1-49ce-8a3e-2ecd30e2e692.jpg?1562348978", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/5/55b9be91-f3a1-49ce-8a3e-2ecd30e2e692.jpg?1562348978"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Fervent Denial", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/b/7b15428e-946e-490d-93bb-9888bfd3a1df.jpg?1568003997", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/b/7b15428e-946e-490d-93bb-9888bfd3a1df.jpg?1568003997"}, "reprint": true, "digital": false, "set_type": "commander"}, {"name": "Fervent Denial", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/d/ed13fdb4-f28a-43c9-a69f-bab227806c39.jpg?1562939482", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/d/ed13fdb4-f28a-43c9-a69f-bab227806c39.jpg?1562939482"}, "reprint": false, "frame_effects": ["tombstone"], "digital": false, "set_type": "expansion"}, {"name": "Fierce Guardianship", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/c/4c5ffa83-c88d-4f5d-851e-a642b229d596.jpg?1591319453", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/c/4c5ffa83-c88d-4f5d-851e-a642b229d596.jpg?1591319453"}, "reprint": false, "digital": false, "set_type": "commander"}, {"name": "Flaccify", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/0/409cb48a-572a-40df-ae1a-a43feab6bdfd.jpg?1562487932", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/0/409cb48a-572a-40df-ae1a-a43feab6bdfd.jpg?1562487932"}, "reprint": false, "digital": false, "set_type": "funny"}, {"name": "Flash Counter", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/c/dc14e61f-481a-4bfa-aca0-fb63dc952be6.jpg?1562939250", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/c/dc14e61f-481a-4bfa-aca0-fb63dc952be6.jpg?1562939250"}, "reprint": true, "digital": false, "set_type": "core"}, {"name": "Flash Counter", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/c/3c3cd450-f1cd-416b-9271-37d95815c089.jpg?1587858200", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/c/3c3cd450-f1cd-416b-9271-37d95815c089.jpg?1587858200"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Flashfreeze", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/e/cefd9955-a195-4855-a00e-3809b96ca92b.jpg?1593274923", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/e/cefd9955-a195-4855-a00e-3809b96ca92b.jpg?1593274923"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Flip the Switch", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/c/5cdbe4e3-f030-46fa-ae84-edf261b61706.jpg?1634348893", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/c/5cdbe4e3-f030-46fa-ae84-edf261b61706.jpg?1634348893"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Flusterstorm", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/e/1e2e09bf-e7c8-4f13-bcee-f9c8cbc57993.jpg?1592713006", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/e/1e2e09bf-e7c8-4f13-bcee-f9c8cbc57993.jpg?1592713006"}, "reprint": false, "digital": false, "set_type": "commander"}, {"name": "Flusterstorm", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/c/9c2077c2-81ce-4ddf-82f0-6fece362d6d7.jpg?1562546827", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/c/9c2077c2-81ce-4ddf-82f0-6fece362d6d7.jpg?1562546827"}, "reprint": true, "digital": true, "set_type": "promo"}, {"name": "Foil", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/8/e8b39fd6-9240-4f76-b12c-e7d9aa88f061.jpg?1547516254", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/8/e8b39fd6-9240-4f76-b12c-e7d9aa88f061.jpg?1547516254"}, "reprint": true, "digital": false, "set_type": "masters"}]} \ No newline at end of file diff --git a/web/public/mtg/jsons/counterspell2.json b/web/public/mtg/jsons/counterspell2.json index c24649ec..e32ed2c7 100644 --- a/web/public/mtg/jsons/counterspell2.json +++ b/web/public/mtg/jsons/counterspell2.json @@ -1 +1 @@ -{"object": "list", "total_cards": 447, "has_more": true, "next_page": "https://api.scryfall.com/cards/search?format=json&include_extras=true&include_multilingual=false&order=name&page=3&q=otag%3Acounterspell+t%3Ainstant+not%3Aadventure+-%28set%3Asld+%28%28cn%3E%3D231+cn%3C%3D233%29+or+%28cn%3E%3D321+cn%3C%3D324%29+or+%28cn%3E%3D185+cn%3C%3D189%29+or+%28cn%3E%3D138+cn%3C%3D142%29+or+%28cn%3E%3D364+cn%3C%3D368%29+or+cn%3A669+or+cn%3A670%29%29+-name%3A%2F%5Ea-%2F+not%3Adfc+not%3Asplit+-set%3Acmb2+-set%3Acmb1+-set%3Aplist+-set%3Adbl+-frame%3Aextendedart+language%3Aenglish&unique=art", "data": [{"object": "card", "id": "870fb793-3107-4cb2-ba78-34fbf5c9da2f", "oracle_id": "7dde4eb6-e9d7-4259-abc2-3af738e0f00f", "multiverse_ids": [24587], "mtgo_id": 14289, "mtgo_foil_id": 14290, "tcgplayer_id": 7306, "cardmarket_id": 3928, "name": "Foil", "lang": "en", "released_at": "2000-06-05", "uri": "https://api.scryfall.com/cards/870fb793-3107-4cb2-ba78-34fbf5c9da2f", "scryfall_uri": "https://scryfall.com/card/pcy/34/foil?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/8/7/870fb793-3107-4cb2-ba78-34fbf5c9da2f.jpg?1562920018", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/7/870fb793-3107-4cb2-ba78-34fbf5c9da2f.jpg?1562920018", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/8/7/870fb793-3107-4cb2-ba78-34fbf5c9da2f.jpg?1562920018", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/8/7/870fb793-3107-4cb2-ba78-34fbf5c9da2f.png?1562920018", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/7/870fb793-3107-4cb2-ba78-34fbf5c9da2f.jpg?1562920018", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/8/7/870fb793-3107-4cb2-ba78-34fbf5c9da2f.jpg?1562920018"}, "mana_cost": "{2}{U}{U}", "cmc": 4.0, "type_line": "Instant", "oracle_text": "You may discard an Island card and another card rather than pay this spell's mana cost.\nCounter target spell.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "c233bd36-57c0-4aa2-ae6c-7aeabfb4e3ce", "set": "pcy", "set_name": "Prophecy", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/c233bd36-57c0-4aa2-ae6c-7aeabfb4e3ce", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Apcy&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/pcy?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/870fb793-3107-4cb2-ba78-34fbf5c9da2f/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A7dde4eb6-e9d7-4259-abc2-3af738e0f00f&unique=prints", "collector_number": "34", "digital": false, "rarity": "uncommon", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Bradley Williams", "artist_ids": ["24d81dfa-3745-4386-93f8-7e67dddb3c8a"], "illustration_id": "2f066cbe-97da-42bd-8202-6b3f9c00f22e", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 2527, "prices": {"usd": "0.85", "usd_foil": "44.99", "usd_etched": null, "eur": "0.93", "eur_foil": "35.45", "tix": "1.06"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=24587", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Foil&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Foil&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Foil"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/7306?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Foil&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/14289?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "615157d6-0160-417b-b06c-0e253b306c37", "oracle_id": "bc2f807b-555d-4a62-ab14-75fe62c64b97", "multiverse_ids": [51631], "mtgo_id": 20860, "mtgo_foil_id": 20861, "tcgplayer_id": 11897, "cardmarket_id": 607, "name": "Fold into Aether", "lang": "en", "released_at": "2004-06-04", "uri": "https://api.scryfall.com/cards/615157d6-0160-417b-b06c-0e253b306c37", "scryfall_uri": "https://scryfall.com/card/5dn/31/fold-into-aether?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/6/1/615157d6-0160-417b-b06c-0e253b306c37.jpg?1562877336", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/1/615157d6-0160-417b-b06c-0e253b306c37.jpg?1562877336", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/6/1/615157d6-0160-417b-b06c-0e253b306c37.jpg?1562877336", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/6/1/615157d6-0160-417b-b06c-0e253b306c37.png?1562877336", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/1/615157d6-0160-417b-b06c-0e253b306c37.jpg?1562877336", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/6/1/615157d6-0160-417b-b06c-0e253b306c37.jpg?1562877336"}, "mana_cost": "{2}{U}{U}", "cmc": 4.0, "type_line": "Instant", "oracle_text": "Counter target spell. If that spell is countered this way, its controller may put a creature card from their hand onto the battlefield.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "e4bc1b87-5476-463c-8640-4c414ecf1763", "set": "5dn", "set_name": "Fifth Dawn", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/e4bc1b87-5476-463c-8640-4c414ecf1763", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3A5dn&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/5dn?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/615157d6-0160-417b-b06c-0e253b306c37/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Abc2f807b-555d-4a62-ab14-75fe62c64b97&unique=prints", "collector_number": "31", "digital": false, "rarity": "uncommon", "flavor_text": "\u00c6ther portals drift across Mirrodin's surface, dragging creatures across time and space.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Anthony S. Waters", "artist_ids": ["f009de11-3c8d-4663-b996-ca0c3e997fad"], "illustration_id": "a82a46f3-d7ca-4b3c-a98a-b1bfa3ef0984", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 19855, "penny_rank": 9729, "prices": {"usd": "0.14", "usd_foil": "0.08", "usd_etched": null, "eur": "0.01", "eur_foil": "0.80", "tix": "0.04"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=51631", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Fold+into+Aether&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Fold+into+Aether&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Fold+into+Aether"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/11897?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Fold+into+Aether&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/20860?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "29df5ef7-d679-4543-bdb7-3984155c87e0", "oracle_id": "6e26a525-2584-490d-b106-621c1a30e1fd", "multiverse_ids": [5157], "mtgo_id": 10459, "mtgo_foil_id": 10460, "tcgplayer_id": 4328, "cardmarket_id": 9263, "name": "Forbid", "lang": "en", "released_at": "1998-06-15", "uri": "https://api.scryfall.com/cards/29df5ef7-d679-4543-bdb7-3984155c87e0", "scryfall_uri": "https://scryfall.com/card/exo/35/forbid?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/2/9/29df5ef7-d679-4543-bdb7-3984155c87e0.jpg?1562087370", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/9/29df5ef7-d679-4543-bdb7-3984155c87e0.jpg?1562087370", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/2/9/29df5ef7-d679-4543-bdb7-3984155c87e0.jpg?1562087370", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/2/9/29df5ef7-d679-4543-bdb7-3984155c87e0.png?1562087370", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/9/29df5ef7-d679-4543-bdb7-3984155c87e0.jpg?1562087370", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/2/9/29df5ef7-d679-4543-bdb7-3984155c87e0.jpg?1562087370"}, "mana_cost": "{1}{U}{U}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Buyback\u2014Discard two cards. (You may discard two cards in addition to any other costs as you cast this spell. If you do, put this card into your hand as it resolves.)\nCounter target spell.", "colors": ["U"], "color_identity": ["U"], "keywords": ["Buyback"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "1401f7af-2e71-476d-9813-991084ed0bb9", "set": "exo", "set_name": "Exodus", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/1401f7af-2e71-476d-9813-991084ed0bb9", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aexo&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/exo?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/29df5ef7-d679-4543-bdb7-3984155c87e0/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A6e26a525-2584-490d-b106-621c1a30e1fd&unique=prints", "collector_number": "35", "digital": false, "rarity": "uncommon", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Scott Kirschner", "artist_ids": ["a9199ae8-9891-4366-bf5b-42cfb662d840"], "illustration_id": "e42cf4ba-0c08-4e2e-bfac-922ce7a26549", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 3833, "penny_rank": 123, "prices": {"usd": "1.82", "usd_foil": null, "usd_etched": null, "eur": "0.25", "eur_foil": null, "tix": "0.09"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=5157", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Forbid&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Forbid&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Forbid"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/4328?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Forbid&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/10459?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "14a9cc52-a45b-4cde-8aff-d672b35c3118", "oracle_id": "6e26a525-2584-490d-b106-621c1a30e1fd", "multiverse_ids": [430668], "mtgo_id": 64928, "mtgo_foil_id": 64929, "tcgplayer_id": 134907, "cardmarket_id": 298576, "name": "Forbid", "lang": "en", "released_at": "2017-04-28", "uri": "https://api.scryfall.com/cards/14a9cc52-a45b-4cde-8aff-d672b35c3118", "scryfall_uri": "https://scryfall.com/card/mp2/33/forbid?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/1/4/14a9cc52-a45b-4cde-8aff-d672b35c3118.jpg?1562899128", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/4/14a9cc52-a45b-4cde-8aff-d672b35c3118.jpg?1562899128", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/1/4/14a9cc52-a45b-4cde-8aff-d672b35c3118.jpg?1562899128", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/1/4/14a9cc52-a45b-4cde-8aff-d672b35c3118.png?1562899128", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/4/14a9cc52-a45b-4cde-8aff-d672b35c3118.jpg?1562899128", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/1/4/14a9cc52-a45b-4cde-8aff-d672b35c3118.jpg?1562899128"}, "mana_cost": "{1}{U}{U}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Buyback\u2014Discard two cards. (You may discard two cards in addition to any other costs as you cast this spell. If you do, put this card into your hand as it resolves.)\nCounter target spell.", "colors": ["U"], "color_identity": ["U"], "keywords": ["Buyback"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": false, "finishes": ["foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "c26402e7-838e-48db-a4b2-7abfc305998a", "set": "mp2", "set_name": "Amonkhet Invocations", "set_type": "masterpiece", "set_uri": "https://api.scryfall.com/sets/c26402e7-838e-48db-a4b2-7abfc305998a", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Amp2&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/mp2?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/14a9cc52-a45b-4cde-8aff-d672b35c3118/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A6e26a525-2584-490d-b106-621c1a30e1fd&unique=prints", "collector_number": "33", "digital": false, "rarity": "mythic", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Richard Wright", "artist_ids": ["7b1b0ce9-2c58-4321-a2a7-cdc94feae082"], "illustration_id": "3540c49a-a04d-4e5f-b122-259080671ec8", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 3833, "penny_rank": 123, "prices": {"usd": null, "usd_foil": "37.45", "usd_etched": null, "eur": null, "eur_foil": "25.00", "tix": "1.21"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=430668", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Forbid&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Forbid&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Forbid"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/134907?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Forbid&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/64928?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "27c75157-2670-4804-8853-a6867c83c40a", "oracle_id": "21d3db6b-58cc-435c-bfd6-8320f6efcbbe", "multiverse_ids": [497589], "mtgo_id": 84920, "tcgplayer_id": 226390, "cardmarket_id": 510440, "name": "Forceful Denial", "lang": "en", "released_at": "2020-11-20", "uri": "https://api.scryfall.com/cards/27c75157-2670-4804-8853-a6867c83c40a", "scryfall_uri": "https://scryfall.com/card/cmr/69/forceful-denial?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/2/7/27c75157-2670-4804-8853-a6867c83c40a.jpg?1608909212", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/7/27c75157-2670-4804-8853-a6867c83c40a.jpg?1608909212", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/2/7/27c75157-2670-4804-8853-a6867c83c40a.jpg?1608909212", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/2/7/27c75157-2670-4804-8853-a6867c83c40a.png?1608909212", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/7/27c75157-2670-4804-8853-a6867c83c40a.jpg?1608909212", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/2/7/27c75157-2670-4804-8853-a6867c83c40a.jpg?1608909212"}, "mana_cost": "{3}{U}{U}", "cmc": 5.0, "type_line": "Instant", "oracle_text": "Cascade (When you cast this spell, exile cards from the top of your library until you exile a nonland card that costs less. You may cast it without paying its mana cost. Put the exiled cards on the bottom of your library in a random order.)\nCounter target spell.", "colors": ["U"], "color_identity": ["U"], "keywords": ["Cascade"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "39de6fbf-1f11-48d0-8f04-f0407f6a0732", "set": "cmr", "set_name": "Commander Legends", "set_type": "draft_innovation", "set_uri": "https://api.scryfall.com/sets/39de6fbf-1f11-48d0-8f04-f0407f6a0732", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Acmr&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/cmr?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/27c75157-2670-4804-8853-a6867c83c40a/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A21d3db6b-58cc-435c-bfd6-8320f6efcbbe&unique=prints", "collector_number": "69", "digital": false, "rarity": "common", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Volkan Ba\u01f5a", "artist_ids": ["93bec3c0-0260-4d31-8064-5d01efb4153f"], "illustration_id": "909e509a-bd2b-41d8-99c8-802e74956757", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 4955, "preview": {"source": "Herumkommandiert", "source_uri": "https://www.youtube.com/watch?v=E5iXlkN0IkM", "previewed_at": "2020-10-27"}, "prices": {"usd": "0.04", "usd_foil": "0.15", "usd_etched": null, "eur": "0.02", "eur_foil": "0.09", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=497589", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Forceful+Denial&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Forceful+Denial&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Forceful+Denial"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/226390?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Forceful+Denial&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/84920?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "e9be371c-c688-44ad-ab71-bd4c9f242d58", "oracle_id": "ac2173f9-f223-440a-9231-fd98762bdc6f", "multiverse_ids": [464001], "mtgo_id": 72476, "tcgplayer_id": 190647, "cardmarket_id": 374424, "name": "Force of Negation", "lang": "en", "released_at": "2019-06-14", "uri": "https://api.scryfall.com/cards/e9be371c-c688-44ad-ab71-bd4c9f242d58", "scryfall_uri": "https://scryfall.com/card/mh1/52/force-of-negation?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/e/9/e9be371c-c688-44ad-ab71-bd4c9f242d58.jpg?1562201382", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/9/e9be371c-c688-44ad-ab71-bd4c9f242d58.jpg?1562201382", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/e/9/e9be371c-c688-44ad-ab71-bd4c9f242d58.jpg?1562201382", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/e/9/e9be371c-c688-44ad-ab71-bd4c9f242d58.png?1562201382", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/9/e9be371c-c688-44ad-ab71-bd4c9f242d58.jpg?1562201382", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/e/9/e9be371c-c688-44ad-ab71-bd4c9f242d58.jpg?1562201382"}, "mana_cost": "{1}{U}{U}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "If it's not your turn, you may exile a blue card from your hand rather than pay this spell's mana cost.\nCounter target noncreature spell. If that spell is countered this way, exile it instead of putting it into its owner's graveyard.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "d7efccd6-55bc-4fb8-9138-e72577510a99", "set": "mh1", "set_name": "Modern Horizons", "set_type": "draft_innovation", "set_uri": "https://api.scryfall.com/sets/d7efccd6-55bc-4fb8-9138-e72577510a99", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Amh1&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/mh1?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/e9be371c-c688-44ad-ab71-bd4c9f242d58/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aac2173f9-f223-440a-9231-fd98762bdc6f&unique=prints", "collector_number": "52", "digital": false, "rarity": "rare", "flavor_text": "\"Try, if you must.\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Paul Scott Canavan", "artist_ids": ["c19bfb77-5099-4f7c-8585-6eaf367712c9"], "illustration_id": "ac811f1c-0e04-4eb5-a666-9bacc7c30d2f", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 265, "preview": {"source": "Wizards of the Coast", "source_uri": "https://www.twitch.tv/videos/427047692", "previewed_at": "2019-05-19"}, "prices": {"usd": "48.27", "usd_foil": "103.76", "usd_etched": null, "eur": "44.66", "eur_foil": "83.99", "tix": "21.22"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=464001", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Force+of+Negation&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Force+of+Negation&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Force+of+Negation"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/190647?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Force+of+Negation&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/72476?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "5396b405-6fa0-43d7-a8f6-f64154e95e98", "oracle_id": "ac2173f9-f223-440a-9231-fd98762bdc6f", "multiverse_ids": [573008], "tcgplayer_id": 276737, "cardmarket_id": 664916, "name": "Force of Negation", "lang": "en", "released_at": "2022-07-08", "uri": "https://api.scryfall.com/cards/5396b405-6fa0-43d7-a8f6-f64154e95e98", "scryfall_uri": "https://scryfall.com/card/2x2/346/force-of-negation?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/5/3/5396b405-6fa0-43d7-a8f6-f64154e95e98.jpg?1655823932", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/3/5396b405-6fa0-43d7-a8f6-f64154e95e98.jpg?1655823932", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/5/3/5396b405-6fa0-43d7-a8f6-f64154e95e98.jpg?1655823932", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/5/3/5396b405-6fa0-43d7-a8f6-f64154e95e98.png?1655823932", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/3/5396b405-6fa0-43d7-a8f6-f64154e95e98.jpg?1655823932", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/5/3/5396b405-6fa0-43d7-a8f6-f64154e95e98.jpg?1655823932"}, "mana_cost": "{1}{U}{U}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "If it's not your turn, you may exile a blue card from your hand rather than pay this spell's mana cost.\nCounter target noncreature spell. If that spell is countered this way, exile it instead of putting it into its owner's graveyard.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "5a645837-b050-449f-ac90-1e7ccbf45031", "set": "2x2", "set_name": "Double Masters 2022", "set_type": "masters", "set_uri": "https://api.scryfall.com/sets/5a645837-b050-449f-ac90-1e7ccbf45031", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3A2x2&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/2x2?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/5396b405-6fa0-43d7-a8f6-f64154e95e98/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aac2173f9-f223-440a-9231-fd98762bdc6f&unique=prints", "collector_number": "346", "digital": false, "rarity": "rare", "flavor_text": "Not even the most seathing critics can break her concentration.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Greg Hildebrandt", "artist_ids": ["020f967b-0d2f-4166-aabe-901dba8bc7ec"], "illustration_id": "03be95e6-7d33-42f1-b582-9b7396b05efa", "border_color": "borderless", "frame": "2015", "frame_effects": ["inverted"], "security_stamp": "oval", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "promo_types": ["boosterfun"], "edhrec_rank": 265, "preview": {"source": "Good Luck High Five", "source_uri": "https://www.youtube.com/watch?v=Tlw7qsCEIL0", "previewed_at": "2022-06-21"}, "prices": {"usd": "60.37", "usd_foil": "80.72", "usd_etched": null, "eur": "55.81", "eur_foil": "96.42", "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=573008", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Force+of+Negation&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Force+of+Negation&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Force+of+Negation"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/276737?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Force+of+Negation&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Force+of+Negation&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "ebc01ab4-d89a-4d25-bf54-6aed33772f4b", "oracle_id": "956381ba-6d37-4a8a-846c-bad79222dbee", "multiverse_ids": [413591], "mtgo_id": 60887, "mtgo_foil_id": 60888, "tcgplayer_id": 117736, "cardmarket_id": 288395, "name": "Force of Will", "lang": "en", "released_at": "2016-06-10", "uri": "https://api.scryfall.com/cards/ebc01ab4-d89a-4d25-bf54-6aed33772f4b", "scryfall_uri": "https://scryfall.com/card/ema/49/force-of-will?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/e/b/ebc01ab4-d89a-4d25-bf54-6aed33772f4b.jpg?1580013954", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/b/ebc01ab4-d89a-4d25-bf54-6aed33772f4b.jpg?1580013954", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/e/b/ebc01ab4-d89a-4d25-bf54-6aed33772f4b.jpg?1580013954", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/e/b/ebc01ab4-d89a-4d25-bf54-6aed33772f4b.png?1580013954", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/b/ebc01ab4-d89a-4d25-bf54-6aed33772f4b.jpg?1580013954", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/e/b/ebc01ab4-d89a-4d25-bf54-6aed33772f4b.jpg?1580013954"}, "mana_cost": "{3}{U}{U}", "cmc": 5.0, "type_line": "Instant", "oracle_text": "You may pay 1 life and exile a blue card from your hand rather than pay this spell's mana cost.\nCounter target spell.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "banned"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "1f29f022-3ace-4c96-85e8-1f7b63aadf7e", "set": "ema", "set_name": "Eternal Masters", "set_type": "masters", "set_uri": "https://api.scryfall.com/sets/1f29f022-3ace-4c96-85e8-1f7b63aadf7e", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aema&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ema?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/ebc01ab4-d89a-4d25-bf54-6aed33772f4b/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A956381ba-6d37-4a8a-846c-bad79222dbee&unique=prints", "collector_number": "49", "digital": false, "rarity": "mythic", "flavor_text": "\"I alone determine my destiny.\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Terese Nielsen", "artist_ids": ["eb55171c-2342-45f4-a503-2d5a75baf752"], "illustration_id": "5a0ba1ca-1344-4923-8e11-686ef8a1ddfb", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 149, "prices": {"usd": "111.35", "usd_foil": "239.21", "usd_etched": null, "eur": "84.00", "eur_foil": "164.75", "tix": "30.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=413591", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Force+of+Will&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Force+of+Will&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Force+of+Will"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/117736?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Force+of+Will&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/60887?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "9a879b60-4381-447d-8a5a-8e0b6a1d49ca", "oracle_id": "956381ba-6d37-4a8a-846c-bad79222dbee", "multiverse_ids": [3107], "tcgplayer_id": 4146, "cardmarket_id": 7894, "name": "Force of Will", "lang": "en", "released_at": "1996-06-10", "uri": "https://api.scryfall.com/cards/9a879b60-4381-447d-8a5a-8e0b6a1d49ca", "scryfall_uri": "https://scryfall.com/card/all/28/force-of-will?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/9/a/9a879b60-4381-447d-8a5a-8e0b6a1d49ca.jpg?1562769672", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/a/9a879b60-4381-447d-8a5a-8e0b6a1d49ca.jpg?1562769672", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/9/a/9a879b60-4381-447d-8a5a-8e0b6a1d49ca.jpg?1562769672", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/9/a/9a879b60-4381-447d-8a5a-8e0b6a1d49ca.png?1562769672", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/a/9a879b60-4381-447d-8a5a-8e0b6a1d49ca.jpg?1562769672", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/9/a/9a879b60-4381-447d-8a5a-8e0b6a1d49ca.jpg?1562769672"}, "mana_cost": "{3}{U}{U}", "cmc": 5.0, "type_line": "Instant", "oracle_text": "You may pay 1 life and exile a blue card from your hand rather than pay this spell's mana cost.\nCounter target spell.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "banned"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "64987b06-4a5c-443d-b560-ff5691744582", "set": "all", "set_name": "Alliances", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/64987b06-4a5c-443d-b560-ff5691744582", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aall&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/all?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/9a879b60-4381-447d-8a5a-8e0b6a1d49ca/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A956381ba-6d37-4a8a-846c-bad79222dbee&unique=prints", "collector_number": "28", "digital": false, "rarity": "uncommon", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Terese Nielsen", "artist_ids": ["eb55171c-2342-45f4-a503-2d5a75baf752"], "illustration_id": "5956189e-c71e-4c70-acbe-643d04faf52d", "border_color": "black", "frame": "1993", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 149, "prices": {"usd": "108.35", "usd_foil": null, "usd_etched": null, "eur": "67.25", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=3107", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Force+of+Will&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Force+of+Will&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Force+of+Will"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/4146?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Force+of+Will&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Force+of+Will&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "ec136ce7-bad4-4ebb-ab00-b86de3d209a7", "oracle_id": "956381ba-6d37-4a8a-846c-bad79222dbee", "multiverse_ids": [491349], "tcgplayer_id": 218702, "cardmarket_id": 484374, "name": "Force of Will", "lang": "en", "released_at": "2020-08-07", "uri": "https://api.scryfall.com/cards/ec136ce7-bad4-4ebb-ab00-b86de3d209a7", "scryfall_uri": "https://scryfall.com/card/2xm/340/force-of-will?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/e/c/ec136ce7-bad4-4ebb-ab00-b86de3d209a7.jpg?1599710933", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/c/ec136ce7-bad4-4ebb-ab00-b86de3d209a7.jpg?1599710933", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/e/c/ec136ce7-bad4-4ebb-ab00-b86de3d209a7.jpg?1599710933", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/e/c/ec136ce7-bad4-4ebb-ab00-b86de3d209a7.png?1599710933", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/c/ec136ce7-bad4-4ebb-ab00-b86de3d209a7.jpg?1599710933", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/e/c/ec136ce7-bad4-4ebb-ab00-b86de3d209a7.jpg?1599710933"}, "mana_cost": "{3}{U}{U}", "cmc": 5.0, "type_line": "Instant", "oracle_text": "You may pay 1 life and exile a blue card from your hand rather than pay this spell's mana cost.\nCounter target spell.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "banned"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": true, "reprint": true, "variation": false, "set_id": "372dafe8-b5d1-4b81-998f-3ae96b59498a", "set": "2xm", "set_name": "Double Masters", "set_type": "masters", "set_uri": "https://api.scryfall.com/sets/372dafe8-b5d1-4b81-998f-3ae96b59498a", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3A2xm&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/2xm?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/ec136ce7-bad4-4ebb-ab00-b86de3d209a7/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A956381ba-6d37-4a8a-846c-bad79222dbee&unique=prints", "collector_number": "340", "digital": false, "rarity": "mythic", "flavor_text": "\"Amateur.\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Scott M. Fischer", "artist_ids": ["23b0cf43-3e43-44c6-8329-96446eca5bce"], "illustration_id": "275ece84-76f7-49ca-b829-586ee269b352", "border_color": "borderless", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "promo_types": ["boxtopper", "boosterfun"], "edhrec_rank": 149, "preview": {"source": "Wizards of the Coast", "source_uri": "", "previewed_at": "2020-07-23"}, "prices": {"usd": "230.31", "usd_foil": "295.28", "usd_etched": null, "eur": "149.98", "eur_foil": "289.99", "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=491349", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Force+of+Will&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Force+of+Will&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Force+of+Will"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/218702?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Force+of+Will&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Force+of+Will&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "026983a4-03ca-4812-b129-5ea523596942", "oracle_id": "956381ba-6d37-4a8a-846c-bad79222dbee", "multiverse_ids": [429873], "mtgo_id": 64382, "mtgo_foil_id": 64383, "tcgplayer_id": 129545, "cardmarket_id": 296595, "name": "Force of Will", "lang": "en", "released_at": "2017-04-28", "uri": "https://api.scryfall.com/cards/026983a4-03ca-4812-b129-5ea523596942", "scryfall_uri": "https://scryfall.com/card/mp2/14/force-of-will?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/0/2/026983a4-03ca-4812-b129-5ea523596942.jpg?1562895460", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/2/026983a4-03ca-4812-b129-5ea523596942.jpg?1562895460", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/0/2/026983a4-03ca-4812-b129-5ea523596942.jpg?1562895460", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/0/2/026983a4-03ca-4812-b129-5ea523596942.png?1562895460", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/2/026983a4-03ca-4812-b129-5ea523596942.jpg?1562895460", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/0/2/026983a4-03ca-4812-b129-5ea523596942.jpg?1562895460"}, "mana_cost": "{3}{U}{U}", "cmc": 5.0, "type_line": "Instant", "oracle_text": "You may pay 1 life and exile a blue card from your hand rather than pay this spell's mana cost.\nCounter target spell.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "banned"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": false, "finishes": ["foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "c26402e7-838e-48db-a4b2-7abfc305998a", "set": "mp2", "set_name": "Amonkhet Invocations", "set_type": "masterpiece", "set_uri": "https://api.scryfall.com/sets/c26402e7-838e-48db-a4b2-7abfc305998a", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Amp2&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/mp2?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/026983a4-03ca-4812-b129-5ea523596942/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A956381ba-6d37-4a8a-846c-bad79222dbee&unique=prints", "collector_number": "14", "digital": false, "rarity": "mythic", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Jaime Jones", "artist_ids": ["92f6c2c1-fa57-4b52-99c4-0fd866c13dc9"], "illustration_id": "8960612a-770a-4f55-8b1a-0ea18338ddeb", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 149, "prices": {"usd": null, "usd_foil": "312.82", "usd_etched": null, "eur": null, "eur_foil": "246.00", "tix": "30.48"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=429873", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Force+of+Will&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Force+of+Will&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Force+of+Will"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/129545?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Force+of+Will&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/64382?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "53ed5673-728f-4da3-ad18-3bd72032e815", "oracle_id": "956381ba-6d37-4a8a-846c-bad79222dbee", "multiverse_ids": [], "tcgplayer_id": 82619, "cardmarket_id": 266983, "name": "Force of Will", "lang": "en", "released_at": "2014-01-01", "uri": "https://api.scryfall.com/cards/53ed5673-728f-4da3-ad18-3bd72032e815", "scryfall_uri": "https://scryfall.com/card/j14/4/force-of-will?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/5/3/53ed5673-728f-4da3-ad18-3bd72032e815.jpg?1562258455", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/3/53ed5673-728f-4da3-ad18-3bd72032e815.jpg?1562258455", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/5/3/53ed5673-728f-4da3-ad18-3bd72032e815.jpg?1562258455", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/5/3/53ed5673-728f-4da3-ad18-3bd72032e815.png?1562258455", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/3/53ed5673-728f-4da3-ad18-3bd72032e815.jpg?1562258455", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/5/3/53ed5673-728f-4da3-ad18-3bd72032e815.jpg?1562258455"}, "mana_cost": "{3}{U}{U}", "cmc": 5.0, "type_line": "Instant", "oracle_text": "You may pay 1 life and exile a blue card from your hand rather than pay this spell's mana cost.\nCounter target spell.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "banned"}, "games": ["paper"], "reserved": false, "foil": true, "nonfoil": false, "finishes": ["foil"], "oversized": false, "promo": true, "reprint": true, "variation": false, "set_id": "27b3e564-c016-47d4-8a63-55b0034f9e30", "set": "j14", "set_name": "Judge Gift Cards 2014", "set_type": "promo", "set_uri": "https://api.scryfall.com/sets/27b3e564-c016-47d4-8a63-55b0034f9e30", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aj14&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/j14?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/53ed5673-728f-4da3-ad18-3bd72032e815/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A956381ba-6d37-4a8a-846c-bad79222dbee&unique=prints", "collector_number": "4", "digital": false, "rarity": "rare", "watermark": "wotc", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Matt Stewart", "artist_ids": ["20871267-2d8a-41d5-b03a-be3d557c5734"], "illustration_id": "ae3c6e7c-458f-41a5-aec2-f6d4ba1fee93", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "promo_types": ["judgegift"], "edhrec_rank": 149, "prices": {"usd": null, "usd_foil": "517.42", "usd_etched": null, "eur": null, "eur_foil": "421.00", "tix": null}, "related_uris": {"tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Force+of+Will&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Force+of+Will&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Force+of+Will"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/82619?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Force+of+Will&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Force+of+Will&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "1d03d73f-0530-4125-8689-1c43e502e331", "oracle_id": "896ea218-3019-47e4-b0a0-2487335872bb", "multiverse_ids": [11285], "mtgo_id": 15530, "mtgo_foil_id": 15531, "tcgplayer_id": 2907, "cardmarket_id": 2838, "name": "Force Spike", "lang": "en", "released_at": "2001-04-11", "uri": "https://api.scryfall.com/cards/1d03d73f-0530-4125-8689-1c43e502e331", "scryfall_uri": "https://scryfall.com/card/7ed/76/force-spike?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/1/d/1d03d73f-0530-4125-8689-1c43e502e331.jpg?1562233829", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/d/1d03d73f-0530-4125-8689-1c43e502e331.jpg?1562233829", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/1/d/1d03d73f-0530-4125-8689-1c43e502e331.jpg?1562233829", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/1/d/1d03d73f-0530-4125-8689-1c43e502e331.png?1562233829", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/d/1d03d73f-0530-4125-8689-1c43e502e331.jpg?1562233829", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/1/d/1d03d73f-0530-4125-8689-1c43e502e331.jpg?1562233829"}, "mana_cost": "{U}", "cmc": 1.0, "type_line": "Instant", "oracle_text": "Counter target spell unless its controller pays {1}.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "230f38aa-9511-4db8-a3aa-aeddbc3f7bb9", "set": "7ed", "set_name": "Seventh Edition", "set_type": "core", "set_uri": "https://api.scryfall.com/sets/230f38aa-9511-4db8-a3aa-aeddbc3f7bb9", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3A7ed&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/7ed?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/1d03d73f-0530-4125-8689-1c43e502e331/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A896ea218-3019-47e4-b0a0-2487335872bb&unique=prints", "collector_number": "76", "digital": false, "rarity": "common", "flavor_text": "\"I don't *think* so.\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Nelson DeCastro", "artist_ids": ["0fdb4eb2-3c36-47ee-a207-a90557ff1bbd"], "illustration_id": "dcb0db53-e913-45b7-a9e1-5adf2f7171aa", "border_color": "white", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 8425, "prices": {"usd": "0.23", "usd_foil": "38.49", "usd_etched": null, "eur": "0.58", "eur_foil": "30.99", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=11285", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Force+Spike&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Force+Spike&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Force+Spike"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/2907?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Force+Spike&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/15530?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "ba23d540-8c2d-4a42-b4c0-86f0988bd1ce", "oracle_id": "896ea218-3019-47e4-b0a0-2487335872bb", "multiverse_ids": [3909], "tcgplayer_id": 2157, "cardmarket_id": 9460, "name": "Force Spike", "lang": "en", "released_at": "1997-03-24", "uri": "https://api.scryfall.com/cards/ba23d540-8c2d-4a42-b4c0-86f0988bd1ce", "scryfall_uri": "https://scryfall.com/card/5ed/88/force-spike?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/b/a/ba23d540-8c2d-4a42-b4c0-86f0988bd1ce.jpg?1562593757", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/a/ba23d540-8c2d-4a42-b4c0-86f0988bd1ce.jpg?1562593757", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/b/a/ba23d540-8c2d-4a42-b4c0-86f0988bd1ce.jpg?1562593757", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/b/a/ba23d540-8c2d-4a42-b4c0-86f0988bd1ce.png?1562593757", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/a/ba23d540-8c2d-4a42-b4c0-86f0988bd1ce.jpg?1562593757", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/b/a/ba23d540-8c2d-4a42-b4c0-86f0988bd1ce.jpg?1562593757"}, "mana_cost": "{U}", "cmc": 1.0, "type_line": "Instant", "oracle_text": "Counter target spell unless its controller pays {1}.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "5afd2f4b-8309-4f45-a2b2-3785018474cb", "set": "5ed", "set_name": "Fifth Edition", "set_type": "core", "set_uri": "https://api.scryfall.com/sets/5afd2f4b-8309-4f45-a2b2-3785018474cb", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3A5ed&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/5ed?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/ba23d540-8c2d-4a42-b4c0-86f0988bd1ce/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A896ea218-3019-47e4-b0a0-2487335872bb&unique=prints", "collector_number": "88", "digital": false, "rarity": "common", "flavor_text": "\"Unknown spears / Suddenly hurtle before my dream-awakened eyes . . . .\"\n\u2014William Butler Yeats, \"The Valley of the Black Pig\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "John Matson", "artist_ids": ["a1685587-4b55-446b-b420-c37b202ed3f1"], "illustration_id": "ae8363f4-141e-47ca-b80c-862c3919540c", "border_color": "white", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 8425, "prices": {"usd": "0.21", "usd_foil": null, "usd_etched": null, "eur": "0.23", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=3909", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Force+Spike&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Force+Spike&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Force+Spike"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/2157?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Force+Spike&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Force+Spike&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "70e64028-ae96-4950-aa6c-9d347409fad3", "oracle_id": "896ea218-3019-47e4-b0a0-2487335872bb", "multiverse_ids": [1484], "tcgplayer_id": 3871, "cardmarket_id": 7029, "name": "Force Spike", "lang": "en", "released_at": "1994-06-01", "uri": "https://api.scryfall.com/cards/70e64028-ae96-4950-aa6c-9d347409fad3", "scryfall_uri": "https://scryfall.com/card/leg/58/force-spike?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/7/0/70e64028-ae96-4950-aa6c-9d347409fad3.jpg?1562859654", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/0/70e64028-ae96-4950-aa6c-9d347409fad3.jpg?1562859654", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/7/0/70e64028-ae96-4950-aa6c-9d347409fad3.jpg?1562859654", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/7/0/70e64028-ae96-4950-aa6c-9d347409fad3.png?1562859654", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/0/70e64028-ae96-4950-aa6c-9d347409fad3.jpg?1562859654", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/7/0/70e64028-ae96-4950-aa6c-9d347409fad3.jpg?1562859654"}, "mana_cost": "{U}", "cmc": 1.0, "type_line": "Instant", "oracle_text": "Counter target spell unless its controller pays {1}.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "legal", "premodern": "legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "78c50b4b-b220-455b-a2d5-cee458fa56f3", "set": "leg", "set_name": "Legends", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/78c50b4b-b220-455b-a2d5-cee458fa56f3", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aleg&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/leg?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/70e64028-ae96-4950-aa6c-9d347409fad3/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A896ea218-3019-47e4-b0a0-2487335872bb&unique=prints", "collector_number": "58", "digital": false, "rarity": "common", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Bryon Wackwitz", "artist_ids": ["c99a114b-c679-47df-a6e9-4f9d3ad5b114"], "illustration_id": "010badf5-c395-42d2-a275-b0716ba4f64b", "border_color": "black", "frame": "1993", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 8425, "prices": {"usd": "2.03", "usd_foil": null, "usd_etched": null, "eur": "3.18", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=1484", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Force+Spike&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Force+Spike&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Force+Spike"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/3871?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Force+Spike&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Force+Spike&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "226555ba-22af-45f1-a3f4-d265f8685dd5", "oracle_id": "469bdca3-d373-4420-9266-921b6605f327", "multiverse_ids": [2506], "tcgplayer_id": 4678, "cardmarket_id": 6282, "name": "Force Void", "lang": "en", "released_at": "1995-06-03", "uri": "https://api.scryfall.com/cards/226555ba-22af-45f1-a3f4-d265f8685dd5", "scryfall_uri": "https://scryfall.com/card/ice/70/force-void?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/2/2/226555ba-22af-45f1-a3f4-d265f8685dd5.jpg?1587911634", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/2/226555ba-22af-45f1-a3f4-d265f8685dd5.jpg?1587911634", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/2/2/226555ba-22af-45f1-a3f4-d265f8685dd5.jpg?1587911634", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/2/2/226555ba-22af-45f1-a3f4-d265f8685dd5.png?1587911634", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/2/226555ba-22af-45f1-a3f4-d265f8685dd5.jpg?1587911634", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/2/2/226555ba-22af-45f1-a3f4-d265f8685dd5.jpg?1587911634"}, "mana_cost": "{2}{U}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Counter target spell unless its controller pays {1}.\nDraw a card at the beginning of the next turn's upkeep.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "b0e08eea-5c01-4406-a6e2-dcd09c5e5b67", "set": "ice", "set_name": "Ice Age", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/b0e08eea-5c01-4406-a6e2-dcd09c5e5b67", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aice&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ice?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/226555ba-22af-45f1-a3f4-d265f8685dd5/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A469bdca3-d373-4420-9266-921b6605f327&unique=prints", "collector_number": "70", "digital": false, "rarity": "uncommon", "flavor_text": "\"My mind and spirit are one\u2014a barrier not readily passed.\"\n\u2014Gustha Ebbasdotter, Kjeldoran Royal Mage", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Mark Tedin", "artist_ids": ["9ee9a9cc-c09e-486f-918b-69f80cbc4188"], "illustration_id": "30b244ce-7d5d-4aac-90fe-44efc9642387", "border_color": "black", "frame": "1993", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 20904, "prices": {"usd": "0.11", "usd_foil": null, "usd_etched": null, "eur": "0.22", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=2506", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Force+Void&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Force+Void&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Force+Void"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/4678?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Force+Void&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Force+Void&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "68b7f705-4d64-4551-8d76-826d91324e9e", "oracle_id": "55c4df81-9513-424b-aa58-10190797bba7", "multiverse_ids": [96890], "mtgo_id": 23701, "mtgo_foil_id": 23702, "tcgplayer_id": 13687, "cardmarket_id": 13169, "name": "Frazzle", "lang": "en", "released_at": "2006-02-03", "uri": "https://api.scryfall.com/cards/68b7f705-4d64-4551-8d76-826d91324e9e", "scryfall_uri": "https://scryfall.com/card/gpt/25/frazzle?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/6/8/68b7f705-4d64-4551-8d76-826d91324e9e.jpg?1593271993", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/8/68b7f705-4d64-4551-8d76-826d91324e9e.jpg?1593271993", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/6/8/68b7f705-4d64-4551-8d76-826d91324e9e.jpg?1593271993", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/6/8/68b7f705-4d64-4551-8d76-826d91324e9e.png?1593271993", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/8/68b7f705-4d64-4551-8d76-826d91324e9e.jpg?1593271993", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/6/8/68b7f705-4d64-4551-8d76-826d91324e9e.jpg?1593271993"}, "mana_cost": "{3}{U}", "cmc": 4.0, "type_line": "Instant", "oracle_text": "Counter target nonblue spell.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "594b4d09-8ce1-494d-bdb2-842c124bd087", "set": "gpt", "set_name": "Guildpact", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/594b4d09-8ce1-494d-bdb2-842c124bd087", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Agpt&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/gpt?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/68b7f705-4d64-4551-8d76-826d91324e9e/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A55c4df81-9513-424b-aa58-10190797bba7&unique=prints", "collector_number": "25", "digital": false, "rarity": "uncommon", "flavor_text": "The chant was interrupted, the components cooked, and Zok worried that it was his brain he smelled smoking.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Pete Venters", "artist_ids": ["d54c4a1a-c0c5-4834-84db-125d341f3ad8"], "illustration_id": "d2d17cbf-cd4c-4ec6-b842-032b4a0b4389", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 21856, "prices": {"usd": "0.07", "usd_foil": "0.25", "usd_etched": null, "eur": "0.05", "eur_foil": "0.24", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=96890", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Frazzle&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Frazzle&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Frazzle"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/13687?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Frazzle&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/23701?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "38c9ba98-90b4-4c28-9eef-a4fe0913b921", "oracle_id": "13ca3ede-a4c8-463d-b160-99b4071034b0", "multiverse_ids": [220031], "mtgo_id": 42276, "mtgo_foil_id": 42277, "tcgplayer_id": 56250, "cardmarket_id": 250655, "name": "Frightful Delusion", "lang": "en", "released_at": "2011-09-30", "uri": "https://api.scryfall.com/cards/38c9ba98-90b4-4c28-9eef-a4fe0913b921", "scryfall_uri": "https://scryfall.com/card/isd/57/frightful-delusion?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/3/8/38c9ba98-90b4-4c28-9eef-a4fe0913b921.jpg?1562828708", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/8/38c9ba98-90b4-4c28-9eef-a4fe0913b921.jpg?1562828708", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/3/8/38c9ba98-90b4-4c28-9eef-a4fe0913b921.jpg?1562828708", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/3/8/38c9ba98-90b4-4c28-9eef-a4fe0913b921.png?1562828708", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/8/38c9ba98-90b4-4c28-9eef-a4fe0913b921.jpg?1562828708", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/3/8/38c9ba98-90b4-4c28-9eef-a4fe0913b921.jpg?1562828708"}, "mana_cost": "{2}{U}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Counter target spell unless its controller pays {1}. That player discards a card.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "d1026945-2969-42b9-be53-f941405a58cb", "set": "isd", "set_name": "Innistrad", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/d1026945-2969-42b9-be53-f941405a58cb", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aisd&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/isd?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/38c9ba98-90b4-4c28-9eef-a4fe0913b921/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A13ca3ede-a4c8-463d-b160-99b4071034b0&unique=prints", "collector_number": "57", "digital": false, "rarity": "common", "flavor_text": "Whether he actually exists is in question, but the terror she feels is excruciatingly real.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Anthony Palumbo", "artist_ids": ["afd2d541-4140-41ae-a28f-862436458fcb"], "illustration_id": "fae692fa-98ab-4be2-b5d4-fa5b33f10f80", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 19624, "penny_rank": 6186, "prices": {"usd": "0.07", "usd_foil": "0.25", "usd_etched": null, "eur": "0.15", "eur_foil": "0.10", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=220031", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Frightful+Delusion&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Frightful+Delusion&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Frightful+Delusion"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/56250?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Frightful+Delusion&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/42276?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "4126e0e5-9b23-496f-8a09-7a35499f9a09", "oracle_id": "667cffdd-8951-4223-8895-fa46e9f14b96", "multiverse_ids": [213736], "mtgo_id": 39337, "mtgo_foil_id": 39338, "tcgplayer_id": 39157, "cardmarket_id": 245403, "name": "Fuel for the Cause", "lang": "en", "released_at": "2011-02-04", "uri": "https://api.scryfall.com/cards/4126e0e5-9b23-496f-8a09-7a35499f9a09", "scryfall_uri": "https://scryfall.com/card/mbs/25/fuel-for-the-cause?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/4/1/4126e0e5-9b23-496f-8a09-7a35499f9a09.jpg?1562610827", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/1/4126e0e5-9b23-496f-8a09-7a35499f9a09.jpg?1562610827", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/4/1/4126e0e5-9b23-496f-8a09-7a35499f9a09.jpg?1562610827", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/4/1/4126e0e5-9b23-496f-8a09-7a35499f9a09.png?1562610827", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/1/4126e0e5-9b23-496f-8a09-7a35499f9a09.jpg?1562610827", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/4/1/4126e0e5-9b23-496f-8a09-7a35499f9a09.jpg?1562610827"}, "mana_cost": "{2}{U}{U}", "cmc": 4.0, "type_line": "Instant", "oracle_text": "Counter target spell, then proliferate. (Choose any number of permanents and/or players, then give each another counter of each kind already there.)", "colors": ["U"], "color_identity": ["U"], "keywords": ["Proliferate"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "f46c57e3-9301-4006-a6ca-06f3f65961fb", "set": "mbs", "set_name": "Mirrodin Besieged", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/f46c57e3-9301-4006-a6ca-06f3f65961fb", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ambs&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/mbs?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/4126e0e5-9b23-496f-8a09-7a35499f9a09/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A667cffdd-8951-4223-8895-fa46e9f14b96&unique=prints", "collector_number": "25", "digital": false, "rarity": "common", "watermark": "phyrexian", "flavor_text": "\"Your ideas will be discarded and your will repurposed.\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Steven Belledin", "artist_ids": ["f07d73b9-52a0-4fe5-858b-61f7b42174a5"], "illustration_id": "2d41e35f-9261-430c-a17f-204464fc427b", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 3257, "penny_rank": 8251, "prices": {"usd": "0.22", "usd_foil": "3.81", "usd_etched": null, "eur": "0.14", "eur_foil": "3.46", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=213736", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Fuel+for+the+Cause&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Fuel+for+the+Cause&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Fuel+for+the+Cause"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/39157?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Fuel+for+the+Cause&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/39337?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "e658939a-fa5a-4497-b35c-b6fbfa3f6882", "oracle_id": "5115eb6b-efae-4561-912a-f7909cc75775", "multiverse_ids": [373682], "mtgo_id": 50614, "mtgo_foil_id": 50615, "tcgplayer_id": 71092, "cardmarket_id": 264078, "name": "Gainsay", "lang": "en", "released_at": "2013-09-27", "uri": "https://api.scryfall.com/cards/e658939a-fa5a-4497-b35c-b6fbfa3f6882", "scryfall_uri": "https://scryfall.com/card/ths/49/gainsay?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/e/6/e658939a-fa5a-4497-b35c-b6fbfa3f6882.jpg?1562835545", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/6/e658939a-fa5a-4497-b35c-b6fbfa3f6882.jpg?1562835545", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/e/6/e658939a-fa5a-4497-b35c-b6fbfa3f6882.jpg?1562835545", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/e/6/e658939a-fa5a-4497-b35c-b6fbfa3f6882.png?1562835545", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/6/e658939a-fa5a-4497-b35c-b6fbfa3f6882.jpg?1562835545", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/e/6/e658939a-fa5a-4497-b35c-b6fbfa3f6882.jpg?1562835545"}, "mana_cost": "{1}{U}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Counter target blue spell.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "69093d6f-e25a-41a4-8cf5-688d7f11c0fb", "set": "ths", "set_name": "Theros", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/69093d6f-e25a-41a4-8cf5-688d7f11c0fb", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aths&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ths?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/e658939a-fa5a-4497-b35c-b6fbfa3f6882/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A5115eb6b-efae-4561-912a-f7909cc75775&unique=prints", "collector_number": "49", "digital": false, "rarity": "uncommon", "flavor_text": "\"You dryfolk must take the air for granted. You constantly insist on wasting it.\"\n\u2014Kenessos, priest of Thassa", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Clint Cearley", "artist_ids": ["03b75350-d5a0-4e3a-b3b4-8d4a5554385b"], "illustration_id": "f9e6e159-4706-4df9-b745-2f15d31fc993", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 16147, "penny_rank": 11671, "prices": {"usd": "0.05", "usd_foil": "0.18", "usd_etched": null, "eur": "0.02", "eur_foil": "0.29", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=373682", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Gainsay&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Gainsay&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Gainsay"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/71092?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Gainsay&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/50614?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "a70a2092-5048-49c0-9351-a3f882c2f56e", "oracle_id": "5115eb6b-efae-4561-912a-f7909cc75775", "multiverse_ids": [27189], "mtgo_id": 15131, "mtgo_foil_id": 15132, "tcgplayer_id": 7804, "cardmarket_id": 3281, "name": "Gainsay", "lang": "en", "released_at": "2001-02-05", "uri": "https://api.scryfall.com/cards/a70a2092-5048-49c0-9351-a3f882c2f56e", "scryfall_uri": "https://scryfall.com/card/pls/26/gainsay?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/a/7/a70a2092-5048-49c0-9351-a3f882c2f56e.jpg?1562930170", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/7/a70a2092-5048-49c0-9351-a3f882c2f56e.jpg?1562930170", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/a/7/a70a2092-5048-49c0-9351-a3f882c2f56e.jpg?1562930170", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/a/7/a70a2092-5048-49c0-9351-a3f882c2f56e.png?1562930170", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/7/a70a2092-5048-49c0-9351-a3f882c2f56e.jpg?1562930170", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/a/7/a70a2092-5048-49c0-9351-a3f882c2f56e.jpg?1562930170"}, "mana_cost": "{1}{U}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Counter target blue spell.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "82dc193b-bd5f-4883-a93f-a4155b467ee0", "set": "pls", "set_name": "Planeshift", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/82dc193b-bd5f-4883-a93f-a4155b467ee0", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Apls&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/pls?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/a70a2092-5048-49c0-9351-a3f882c2f56e/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A5115eb6b-efae-4561-912a-f7909cc75775&unique=prints", "collector_number": "26", "digital": false, "rarity": "uncommon", "flavor_text": "\"I'd be happy to stop contradicting you, Urza, just as soon as you start being right.\"\n\u2014Bo Levar, planeswalker", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Roger Raupp", "artist_ids": ["79d6f296-1948-4a24-a2ce-a76e89057f23"], "illustration_id": "a272fb1b-c62d-4b62-8341-64fb944dceec", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 16147, "penny_rank": 11671, "prices": {"usd": "0.20", "usd_foil": "2.28", "usd_etched": null, "eur": "0.04", "eur_foil": "2.50", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=27189", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Gainsay&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Gainsay&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Gainsay"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/7804?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Gainsay&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/15131?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "1f5ddcf8-c87b-4a26-b226-8593f517a74a", "oracle_id": "8676f007-bf5f-4312-968c-59f4549f7d51", "multiverse_ids": [562956], "tcgplayer_id": 272917, "cardmarket_id": 660719, "name": "Gale's Redirection", "lang": "en", "released_at": "2022-06-10", "uri": "https://api.scryfall.com/cards/1f5ddcf8-c87b-4a26-b226-8593f517a74a", "scryfall_uri": "https://scryfall.com/card/clb/73/gales-redirection?utm_source=api", "layout": "normal", "highres_image": false, "image_status": "lowres", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/1/f/1f5ddcf8-c87b-4a26-b226-8593f517a74a.jpg?1653353395", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/f/1f5ddcf8-c87b-4a26-b226-8593f517a74a.jpg?1653353395", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/1/f/1f5ddcf8-c87b-4a26-b226-8593f517a74a.jpg?1653353395", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/1/f/1f5ddcf8-c87b-4a26-b226-8593f517a74a.png?1653353395", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/f/1f5ddcf8-c87b-4a26-b226-8593f517a74a.jpg?1653353395", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/1/f/1f5ddcf8-c87b-4a26-b226-8593f517a74a.jpg?1653353395"}, "mana_cost": "{3}{U}{U}", "cmc": 5.0, "type_line": "Instant", "oracle_text": "Exile target spell, then roll a d20 and add that spell's mana value.\n1\u201414 | You may cast the exiled card for as long as it remains exiled, and you may spend mana as though it were mana of any color to cast that spell.\n15+ | You may cast the exiled card without paying its mana cost for as long as it remains exiled.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "5e4c3fe8-fd57-4b20-ad56-c03790a16cea", "set": "clb", "set_name": "Commander Legends: Battle for Baldur's Gate", "set_type": "draft_innovation", "set_uri": "https://api.scryfall.com/sets/5e4c3fe8-fd57-4b20-ad56-c03790a16cea", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aclb&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/clb?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/1f5ddcf8-c87b-4a26-b226-8593f517a74a/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A8676f007-bf5f-4312-968c-59f4549f7d51&unique=prints", "collector_number": "73", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Yeong-Hao Han", "artist_ids": ["f8e7f8d6-6dde-4059-973c-30f1fd1bbe4e"], "illustration_id": "527b1f52-7ab0-430d-932a-b669499eec27", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 9441, "preview": {"source": "Fazendo Nerdice", "source_uri": "https://twitter.com/Fazendo_Nerdice/status/1528012744712232960", "previewed_at": "2022-05-21"}, "prices": {"usd": "0.17", "usd_foil": "0.23", "usd_etched": null, "eur": "0.24", "eur_foil": "0.49", "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=562956", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Gale%27s+Redirection&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Gale%27s+Redirection&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Gale%27s+Redirection"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/272917?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Gale%27s+Redirection&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Gale%27s+Redirection&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "7302b5da-cac5-4ce7-ad38-2ff4e410891b", "oracle_id": "45f159dc-a5f9-4335-896b-ad544c303801", "multiverse_ids": [540898], "mtgo_id": 94424, "arena_id": 78846, "tcgplayer_id": 252944, "cardmarket_id": 581366, "name": "Geistlight Snare", "lang": "en", "released_at": "2021-11-19", "uri": "https://api.scryfall.com/cards/7302b5da-cac5-4ce7-ad38-2ff4e410891b", "scryfall_uri": "https://scryfall.com/card/vow/60/geistlight-snare?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/7/3/7302b5da-cac5-4ce7-ad38-2ff4e410891b.jpg?1643587841", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/3/7302b5da-cac5-4ce7-ad38-2ff4e410891b.jpg?1643587841", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/7/3/7302b5da-cac5-4ce7-ad38-2ff4e410891b.jpg?1643587841", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/7/3/7302b5da-cac5-4ce7-ad38-2ff4e410891b.png?1643587841", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/3/7302b5da-cac5-4ce7-ad38-2ff4e410891b.jpg?1643587841", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/7/3/7302b5da-cac5-4ce7-ad38-2ff4e410891b.jpg?1643587841"}, "mana_cost": "{2}{U}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "This spell costs {1} less to cast if you control a Spirit. It also costs {1} less to cast if you control an enchantment.\nCounter target spell unless its controller pays {3}.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "8144b676-569f-4716-8005-bc8f0778f3fa", "set": "vow", "set_name": "Innistrad: Crimson Vow", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/8144b676-569f-4716-8005-bc8f0778f3fa", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Avow&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/vow?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/7302b5da-cac5-4ce7-ad38-2ff4e410891b/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A45f159dc-a5f9-4335-896b-ad544c303801&unique=prints", "collector_number": "60", "digital": false, "rarity": "uncommon", "flavor_text": "Tamil had always wanted a closer look at a geist's lantern. Now he had an eternity to study one.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Anato Finnstark", "artist_ids": ["05d233e7-4958-4f79-83e6-f9bf8b6ff78e"], "illustration_id": "9e7b4116-6a94-4bfd-a08c-05d89e33a1fa", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 11123, "penny_rank": 5570, "prices": {"usd": "0.41", "usd_foil": "0.41", "usd_etched": null, "eur": "0.14", "eur_foil": "0.15", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=540898", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Geistlight+Snare&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Geistlight+Snare&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Geistlight+Snare"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/252944?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Geistlight+Snare&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/94424?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "b6dac5db-ef96-4bd5-aabc-e5ae2b95c8c3", "oracle_id": "b5fcfcf5-8af5-4395-b989-427fa92e0dd2", "multiverse_ids": [240021], "mtgo_id": 43911, "mtgo_foil_id": 43912, "tcgplayer_id": 58881, "cardmarket_id": 254629, "name": "Geist Snatch", "lang": "en", "released_at": "2012-05-04", "uri": "https://api.scryfall.com/cards/b6dac5db-ef96-4bd5-aabc-e5ae2b95c8c3", "scryfall_uri": "https://scryfall.com/card/avr/55/geist-snatch?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/b/6/b6dac5db-ef96-4bd5-aabc-e5ae2b95c8c3.jpg?1592708554", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/6/b6dac5db-ef96-4bd5-aabc-e5ae2b95c8c3.jpg?1592708554", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/b/6/b6dac5db-ef96-4bd5-aabc-e5ae2b95c8c3.jpg?1592708554", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/b/6/b6dac5db-ef96-4bd5-aabc-e5ae2b95c8c3.png?1592708554", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/6/b6dac5db-ef96-4bd5-aabc-e5ae2b95c8c3.jpg?1592708554", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/b/6/b6dac5db-ef96-4bd5-aabc-e5ae2b95c8c3.jpg?1592708554"}, "mana_cost": "{2}{U}{U}", "cmc": 4.0, "type_line": "Instant", "oracle_text": "Counter target creature spell. Create a 1/1 blue Spirit creature token with flying.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "all_parts": [{"object": "related_card", "id": "b6dac5db-ef96-4bd5-aabc-e5ae2b95c8c3", "component": "combo_piece", "name": "Geist Snatch", "type_line": "Instant", "uri": "https://api.scryfall.com/cards/b6dac5db-ef96-4bd5-aabc-e5ae2b95c8c3"}, {"object": "related_card", "id": "44c14591-f807-40cf-9c00-4c94b85fff44", "component": "token", "name": "Spirit", "type_line": "Token Creature \u2014 Spirit", "uri": "https://api.scryfall.com/cards/44c14591-f807-40cf-9c00-4c94b85fff44"}], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "039810a9-92d7-4f2d-b2d0-ca661ac586c0", "set": "avr", "set_name": "Avacyn Restored", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/039810a9-92d7-4f2d-b2d0-ca661ac586c0", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aavr&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/avr?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/b6dac5db-ef96-4bd5-aabc-e5ae2b95c8c3/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ab5fcfcf5-8af5-4395-b989-427fa92e0dd2&unique=prints", "collector_number": "55", "digital": false, "rarity": "common", "flavor_text": "Angels and demons aren't the only ones listening to your prayers.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Dan Scott", "artist_ids": ["f852fa13-137e-40f2-bbc1-0f01df09c0e0"], "illustration_id": "e806aa03-eca3-49df-b003-bba0e2e17912", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 14157, "penny_rank": 13972, "prices": {"usd": "0.05", "usd_foil": "0.20", "usd_etched": null, "eur": "0.02", "eur_foil": "0.05", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=240021", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Geist+Snatch&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Geist+Snatch&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Geist+Snatch"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/58881?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Geist+Snatch&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/43911?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "2922b976-7beb-4c68-b39e-1b66d5c6f65e", "oracle_id": "e611a3e0-eb0e-466e-a771-51310eeb34cd", "multiverse_ids": [426835], "mtgo_id": 63868, "mtgo_foil_id": 63869, "tcgplayer_id": 130226, "cardmarket_id": 297186, "name": "Glorious End", "lang": "en", "released_at": "2017-04-28", "uri": "https://api.scryfall.com/cards/2922b976-7beb-4c68-b39e-1b66d5c6f65e", "scryfall_uri": "https://scryfall.com/card/akh/133/glorious-end?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/2/9/2922b976-7beb-4c68-b39e-1b66d5c6f65e.jpg?1543675588", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/9/2922b976-7beb-4c68-b39e-1b66d5c6f65e.jpg?1543675588", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/2/9/2922b976-7beb-4c68-b39e-1b66d5c6f65e.jpg?1543675588", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/2/9/2922b976-7beb-4c68-b39e-1b66d5c6f65e.png?1543675588", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/9/2922b976-7beb-4c68-b39e-1b66d5c6f65e.jpg?1543675588", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/2/9/2922b976-7beb-4c68-b39e-1b66d5c6f65e.jpg?1543675588"}, "mana_cost": "{2}{R}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "End the turn. (Exile all spells and abilities from the stack, including this card. The player whose turn it is discards down to their maximum hand size. Damage wears off, and \"this turn\" and \"until end of turn\" effects end.)\nAt the beginning of your next end step, you lose the game.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "02d1c536-68bc-4208-9b65-7741ef1f9da8", "set": "akh", "set_name": "Amonkhet", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/02d1c536-68bc-4208-9b65-7741ef1f9da8", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aakh&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/akh?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/2922b976-7beb-4c68-b39e-1b66d5c6f65e/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ae611a3e0-eb0e-466e-a771-51310eeb34cd&unique=prints", "collector_number": "133", "digital": false, "rarity": "mythic", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Raymond Swanland", "artist_ids": ["e956bacc-077d-4c12-b6bc-ba798b718af9"], "illustration_id": "add0c328-9b4a-4916-89b4-93ba07eeff82", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 5521, "penny_rank": 4369, "prices": {"usd": "0.77", "usd_foil": "2.77", "usd_etched": null, "eur": "0.37", "eur_foil": "1.80", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=426835", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Glorious+End&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Glorious+End&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Glorious+End"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/130226?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Glorious+End&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/63868?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "43dc7e2a-5b9b-4f0f-8b2e-a7c7f847e1f1", "oracle_id": "0144d9bb-d3cb-4c23-b133-6653d7c3a76d", "multiverse_ids": [34808], "mtgo_id": 17454, "mtgo_foil_id": 17455, "tcgplayer_id": 10201, "cardmarket_id": 2167, "name": "Grip of Amnesia", "lang": "en", "released_at": "2002-05-27", "uri": "https://api.scryfall.com/cards/43dc7e2a-5b9b-4f0f-8b2e-a7c7f847e1f1", "scryfall_uri": "https://scryfall.com/card/jud/41/grip-of-amnesia?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/4/3/43dc7e2a-5b9b-4f0f-8b2e-a7c7f847e1f1.jpg?1562629609", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/3/43dc7e2a-5b9b-4f0f-8b2e-a7c7f847e1f1.jpg?1562629609", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/4/3/43dc7e2a-5b9b-4f0f-8b2e-a7c7f847e1f1.jpg?1562629609", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/4/3/43dc7e2a-5b9b-4f0f-8b2e-a7c7f847e1f1.png?1562629609", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/3/43dc7e2a-5b9b-4f0f-8b2e-a7c7f847e1f1.jpg?1562629609", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/4/3/43dc7e2a-5b9b-4f0f-8b2e-a7c7f847e1f1.jpg?1562629609"}, "mana_cost": "{1}{U}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Counter target spell unless its controller exiles all cards from their graveyard.\nDraw a card.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "cd82de1a-36fd-4618-bfe8-b45532a582d9", "set": "jud", "set_name": "Judgment", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/cd82de1a-36fd-4618-bfe8-b45532a582d9", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ajud&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/jud?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/43dc7e2a-5b9b-4f0f-8b2e-a7c7f847e1f1/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A0144d9bb-d3cb-4c23-b133-6653d7c3a76d&unique=prints", "collector_number": "41", "digital": false, "rarity": "common", "flavor_text": "\"Would you abandon your past to save your future?\"\n\u2014Ambassador Laquatus", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Bradley Williams", "artist_ids": ["24d81dfa-3745-4386-93f8-7e67dddb3c8a"], "illustration_id": "fd2dacfe-56cd-4f6a-875a-1d8a740633ae", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 12984, "penny_rank": 8380, "prices": {"usd": "0.20", "usd_foil": "4.56", "usd_etched": null, "eur": "0.50", "eur_foil": "0.50", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=34808", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Grip+of+Amnesia&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Grip+of+Amnesia&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Grip+of+Amnesia"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/10201?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Grip+of+Amnesia&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/17454?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "9121e55e-5070-48cc-b706-92c67ad89254", "oracle_id": "9fb80575-9c8e-4745-9a8f-d48cdcbbb868", "multiverse_ids": [426628], "tcgplayer_id": 129364, "cardmarket_id": 296220, "name": "Guttural Response", "lang": "en", "released_at": "2017-03-31", "uri": "https://api.scryfall.com/cards/9121e55e-5070-48cc-b706-92c67ad89254", "scryfall_uri": "https://scryfall.com/card/dds/56/guttural-response?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/9/1/9121e55e-5070-48cc-b706-92c67ad89254.jpg?1592761849", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/1/9121e55e-5070-48cc-b706-92c67ad89254.jpg?1592761849", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/9/1/9121e55e-5070-48cc-b706-92c67ad89254.jpg?1592761849", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/9/1/9121e55e-5070-48cc-b706-92c67ad89254.png?1592761849", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/1/9121e55e-5070-48cc-b706-92c67ad89254.jpg?1592761849", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/9/1/9121e55e-5070-48cc-b706-92c67ad89254.jpg?1592761849"}, "mana_cost": "{R/G}", "cmc": 1.0, "type_line": "Instant", "oracle_text": "Counter target blue instant spell.", "colors": ["G", "R"], "color_identity": ["G", "R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "758fe4d1-ce2b-4106-8cec-820841d730af", "set": "dds", "set_name": "Duel Decks: Mind vs. Might", "set_type": "duel_deck", "set_uri": "https://api.scryfall.com/sets/758fe4d1-ce2b-4106-8cec-820841d730af", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Adds&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/dds?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/9121e55e-5070-48cc-b706-92c67ad89254/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A9fb80575-9c8e-4745-9a8f-d48cdcbbb868&unique=prints", "collector_number": "56", "digital": false, "rarity": "uncommon", "flavor_text": "A savage cry with the power to shatter minds.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Ben Wootten", "artist_ids": ["31cdca96-ecde-4245-bfb6-653929d57d9c"], "illustration_id": "a0359eff-11f6-4231-bfe1-a73374689169", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "edhrec_rank": 7247, "penny_rank": 11169, "prices": {"usd": "0.29", "usd_foil": null, "usd_etched": null, "eur": "0.10", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=426628", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Guttural+Response&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Guttural+Response&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Guttural+Response"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/129364?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Guttural+Response&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Guttural+Response&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "e0662ab6-b475-4b8d-ae77-a9b654e611da", "oracle_id": "9fb80575-9c8e-4745-9a8f-d48cdcbbb868", "multiverse_ids": [158773], "mtgo_id": 29847, "mtgo_foil_id": 29848, "tcgplayer_id": 18658, "cardmarket_id": 19222, "name": "Guttural Response", "lang": "en", "released_at": "2008-05-02", "uri": "https://api.scryfall.com/cards/e0662ab6-b475-4b8d-ae77-a9b654e611da", "scryfall_uri": "https://scryfall.com/card/shm/208/guttural-response?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/e/0/e0662ab6-b475-4b8d-ae77-a9b654e611da.jpg?1562837134", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/0/e0662ab6-b475-4b8d-ae77-a9b654e611da.jpg?1562837134", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/e/0/e0662ab6-b475-4b8d-ae77-a9b654e611da.jpg?1562837134", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/e/0/e0662ab6-b475-4b8d-ae77-a9b654e611da.png?1562837134", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/0/e0662ab6-b475-4b8d-ae77-a9b654e611da.jpg?1562837134", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/e/0/e0662ab6-b475-4b8d-ae77-a9b654e611da.jpg?1562837134"}, "mana_cost": "{R/G}", "cmc": 1.0, "type_line": "Instant", "oracle_text": "Counter target blue instant spell.", "colors": ["G", "R"], "color_identity": ["G", "R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "c18c0ba1-2081-4808-9b2e-549bc3a666f3", "set": "shm", "set_name": "Shadowmoor", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/c18c0ba1-2081-4808-9b2e-549bc3a666f3", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ashm&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/shm?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/e0662ab6-b475-4b8d-ae77-a9b654e611da/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A9fb80575-9c8e-4745-9a8f-d48cdcbbb868&unique=prints", "collector_number": "208", "digital": false, "rarity": "uncommon", "flavor_text": "Wort had a raiding-bellow that could shatter steel, melt auras, and slice countermagic in half.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Matt Cavotta", "artist_ids": ["2e6a0611-9411-4ba4-98e3-c0e18cbf9f83"], "illustration_id": "bdb5d3ff-8d14-4450-b47c-0c4539944ac1", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 7247, "penny_rank": 11169, "prices": {"usd": "0.68", "usd_foil": "16.10", "usd_etched": null, "eur": "0.91", "eur_foil": "3.99", "tix": "0.05"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=158773", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Guttural+Response&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Guttural+Response&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Guttural+Response"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/18658?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Guttural+Response&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/29847?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "7fed18af-7301-4d03-ba7c-e94f07f078b3", "oracle_id": "a5fdf1b2-da22-4fa6-810a-85c3f7587535", "multiverse_ids": [194110], "mtgo_id": 37995, "mtgo_foil_id": 37996, "tcgplayer_id": 36443, "cardmarket_id": 242764, "name": "Halt Order", "lang": "en", "released_at": "2010-10-01", "uri": "https://api.scryfall.com/cards/7fed18af-7301-4d03-ba7c-e94f07f078b3", "scryfall_uri": "https://scryfall.com/card/som/34/halt-order?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/7/f/7fed18af-7301-4d03-ba7c-e94f07f078b3.jpg?1562819574", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/f/7fed18af-7301-4d03-ba7c-e94f07f078b3.jpg?1562819574", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/7/f/7fed18af-7301-4d03-ba7c-e94f07f078b3.jpg?1562819574", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/7/f/7fed18af-7301-4d03-ba7c-e94f07f078b3.png?1562819574", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/f/7fed18af-7301-4d03-ba7c-e94f07f078b3.jpg?1562819574", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/7/f/7fed18af-7301-4d03-ba7c-e94f07f078b3.jpg?1562819574"}, "mana_cost": "{2}{U}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Counter target artifact spell.\nDraw a card.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "8f403072-9b22-4e69-8d59-22dc4c97fd8d", "set": "som", "set_name": "Scars of Mirrodin", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/8f403072-9b22-4e69-8d59-22dc4c97fd8d", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Asom&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/som?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/7fed18af-7301-4d03-ba7c-e94f07f078b3/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aa5fdf1b2-da22-4fa6-810a-85c3f7587535&unique=prints", "collector_number": "34", "digital": false, "rarity": "uncommon", "watermark": "mirran", "flavor_text": "An artificer's least favorite mind-missive may be \"I regret to inform you that the funding for your project has been cut.\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Izzy", "artist_ids": ["2c3d2473-ff5d-4309-8194-e0b2def2ab65"], "illustration_id": "61ae9cab-71b9-4acf-b553-c0fdf6b47aee", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 20965, "prices": {"usd": "0.12", "usd_foil": "0.24", "usd_etched": null, "eur": "0.02", "eur_foil": "0.15", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=194110", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Halt+Order&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Halt+Order&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Halt+Order"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/36443?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Halt+Order&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/37995?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "dc7befed-805b-4a02-a87d-7df3a95db8a0", "oracle_id": "c9db6b94-a7b1-4b93-b454-4dead8f85e34", "multiverse_ids": [50426], "mtgo_id": 21057, "mtgo_foil_id": 21058, "tcgplayer_id": 12019, "cardmarket_id": 12038, "name": "Hinder", "lang": "en", "released_at": "2004-10-01", "uri": "https://api.scryfall.com/cards/dc7befed-805b-4a02-a87d-7df3a95db8a0", "scryfall_uri": "https://scryfall.com/card/chk/65/hinder?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/d/c/dc7befed-805b-4a02-a87d-7df3a95db8a0.jpg?1562765119", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/c/dc7befed-805b-4a02-a87d-7df3a95db8a0.jpg?1562765119", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/d/c/dc7befed-805b-4a02-a87d-7df3a95db8a0.jpg?1562765119", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/d/c/dc7befed-805b-4a02-a87d-7df3a95db8a0.png?1562765119", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/c/dc7befed-805b-4a02-a87d-7df3a95db8a0.jpg?1562765119", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/d/c/dc7befed-805b-4a02-a87d-7df3a95db8a0.jpg?1562765119"}, "mana_cost": "{1}{U}{U}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Counter target spell. If that spell is countered this way, put that card on the top or bottom of its owner's library instead of into that player's graveyard.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "6183d21f-a0af-4118-ba58-aca1d8719c01", "set": "chk", "set_name": "Champions of Kamigawa", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/6183d21f-a0af-4118-ba58-aca1d8719c01", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Achk&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/chk?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/dc7befed-805b-4a02-a87d-7df3a95db8a0/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ac9db6b94-a7b1-4b93-b454-4dead8f85e34&unique=prints", "collector_number": "65", "digital": false, "rarity": "uncommon", "flavor_text": "\"Do not react to force in kind. Turn it aside. Direct it to where it can do no harm.\"\n\u2014Meloku the Clouded Mirror", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Wayne Reynolds", "artist_ids": ["afc47cec-3ccc-404e-a8c6-4d83dd504271"], "illustration_id": "668633b1-8954-40ec-90d7-80ef676451fd", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 5265, "penny_rank": 7943, "prices": {"usd": "0.23", "usd_foil": "1.71", "usd_etched": null, "eur": "0.20", "eur_foil": "0.69", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=50426", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Hinder&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Hinder&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Hinder"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/12019?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Hinder&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/21057?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "679d6226-7ec1-44f3-ac90-30b123501aa0", "oracle_id": "c9db6b94-a7b1-4b93-b454-4dead8f85e34", "multiverse_ids": [], "tcgplayer_id": 38313, "cardmarket_id": 17575, "name": "Hinder", "lang": "en", "released_at": "2006-01-01", "uri": "https://api.scryfall.com/cards/679d6226-7ec1-44f3-ac90-30b123501aa0", "scryfall_uri": "https://scryfall.com/card/p06/2/hinder?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/6/7/679d6226-7ec1-44f3-ac90-30b123501aa0.jpg?1561757329", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/7/679d6226-7ec1-44f3-ac90-30b123501aa0.jpg?1561757329", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/6/7/679d6226-7ec1-44f3-ac90-30b123501aa0.jpg?1561757329", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/6/7/679d6226-7ec1-44f3-ac90-30b123501aa0.png?1561757329", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/7/679d6226-7ec1-44f3-ac90-30b123501aa0.jpg?1561757329", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/6/7/679d6226-7ec1-44f3-ac90-30b123501aa0.jpg?1561757329"}, "mana_cost": "{1}{U}{U}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Counter target spell. If that spell is countered this way, put that card on the top or bottom of its owner's library instead of into that player's graveyard.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": true, "reprint": true, "variation": false, "set_id": "619f656b-94dc-4772-bc99-62bac48f1eb9", "set": "p06", "set_name": "Magic Player Rewards 2006", "set_type": "promo", "set_uri": "https://api.scryfall.com/sets/619f656b-94dc-4772-bc99-62bac48f1eb9", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ap06&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/p06?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/679d6226-7ec1-44f3-ac90-30b123501aa0/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ac9db6b94-a7b1-4b93-b454-4dead8f85e34&unique=prints", "collector_number": "2", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Anthony S. Waters", "artist_ids": ["f009de11-3c8d-4663-b996-ca0c3e997fad"], "illustration_id": "62536087-f80e-43cf-b7e5-962cf8971637", "border_color": "black", "frame": "2003", "full_art": true, "textless": true, "booster": false, "story_spotlight": false, "promo_types": ["playerrewards"], "edhrec_rank": 5265, "penny_rank": 7943, "prices": {"usd": "2.40", "usd_foil": null, "usd_etched": null, "eur": "2.49", "eur_foil": null, "tix": null}, "related_uris": {"tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Hinder&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Hinder&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Hinder"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/38313?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Hinder&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Hinder&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "98e43870-4bed-4d76-a633-a6326c736d22", "oracle_id": "945ac15c-780b-44a9-8a8e-011cf1c30876", "multiverse_ids": [177598], "mtgo_id": 31287, "mtgo_foil_id": 31288, "tcgplayer_id": 27695, "cardmarket_id": 19722, "name": "Hindering Light", "lang": "en", "released_at": "2008-10-03", "uri": "https://api.scryfall.com/cards/98e43870-4bed-4d76-a633-a6326c736d22", "scryfall_uri": "https://scryfall.com/card/ala/173/hindering-light?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/9/8/98e43870-4bed-4d76-a633-a6326c736d22.jpg?1562706936", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/8/98e43870-4bed-4d76-a633-a6326c736d22.jpg?1562706936", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/9/8/98e43870-4bed-4d76-a633-a6326c736d22.jpg?1562706936", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/9/8/98e43870-4bed-4d76-a633-a6326c736d22.png?1562706936", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/8/98e43870-4bed-4d76-a633-a6326c736d22.jpg?1562706936", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/9/8/98e43870-4bed-4d76-a633-a6326c736d22.jpg?1562706936"}, "mana_cost": "{W}{U}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Counter target spell that targets you or a permanent you control.\nDraw a card.", "colors": ["U", "W"], "color_identity": ["U", "W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "d667aaec-09b7-4406-b6fa-60795132dc11", "set": "ala", "set_name": "Shards of Alara", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/d667aaec-09b7-4406-b6fa-60795132dc11", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aala&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ala?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/98e43870-4bed-4d76-a633-a6326c736d22/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A945ac15c-780b-44a9-8a8e-011cf1c30876&unique=prints", "collector_number": "173", "digital": false, "rarity": "common", "flavor_text": "Centuries of careful practice have elevated the casting of protective spells to an art form. What little offensive magic remains on Bant stands little chance of breaching them.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Chris Rahn", "artist_ids": ["7742047e-0f80-4c0f-a530-d07460165e86"], "illustration_id": "86c313c9-e420-48db-8163-4315b4a4408d", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 6075, "penny_rank": 6501, "prices": {"usd": "0.35", "usd_foil": "1.61", "usd_etched": null, "eur": "0.36", "eur_foil": "0.70", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=177598", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Hindering+Light&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Hindering+Light&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Hindering+Light"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/27695?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Hindering+Light&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/31287?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "db9735d9-4aac-4175-8ec8-fc9bfd8f2c5c", "oracle_id": "90c6f338-fc41-4499-8f39-1cd202a2cd31", "multiverse_ids": [45837], "mtgo_id": 18868, "mtgo_foil_id": 18869, "tcgplayer_id": 10863, "cardmarket_id": 1030, "name": "Hindering Touch", "lang": "en", "released_at": "2003-05-26", "uri": "https://api.scryfall.com/cards/db9735d9-4aac-4175-8ec8-fc9bfd8f2c5c", "scryfall_uri": "https://scryfall.com/card/scg/37/hindering-touch?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/d/b/db9735d9-4aac-4175-8ec8-fc9bfd8f2c5c.jpg?1562535667", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/b/db9735d9-4aac-4175-8ec8-fc9bfd8f2c5c.jpg?1562535667", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/d/b/db9735d9-4aac-4175-8ec8-fc9bfd8f2c5c.jpg?1562535667", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/d/b/db9735d9-4aac-4175-8ec8-fc9bfd8f2c5c.png?1562535667", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/b/db9735d9-4aac-4175-8ec8-fc9bfd8f2c5c.jpg?1562535667", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/d/b/db9735d9-4aac-4175-8ec8-fc9bfd8f2c5c.jpg?1562535667"}, "mana_cost": "{3}{U}", "cmc": 4.0, "type_line": "Instant", "oracle_text": "Counter target spell unless its controller pays {2}.\nStorm (When you cast this spell, copy it for each spell cast before it this turn. You may choose new targets for the copies.)", "colors": ["U"], "color_identity": ["U"], "keywords": ["Storm"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "5133c3a1-1412-4ce6-a1f0-73b695966ded", "set": "scg", "set_name": "Scourge", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/5133c3a1-1412-4ce6-a1f0-73b695966ded", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ascg&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/scg?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/db9735d9-4aac-4175-8ec8-fc9bfd8f2c5c/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A90c6f338-fc41-4499-8f39-1cd202a2cd31&unique=prints", "collector_number": "37", "digital": false, "rarity": "common", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Glen Angus", "artist_ids": ["7be3b9e4-de9b-4a3d-884e-e67b9681d409"], "illustration_id": "84608881-afdf-4b37-8c10-b619e4885221", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 15259, "penny_rank": 8260, "prices": {"usd": "0.10", "usd_foil": "0.36", "usd_etched": null, "eur": "0.01", "eur_foil": "0.30", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=45837", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Hindering+Touch&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Hindering+Touch&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Hindering+Touch"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/10863?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Hindering+Touch&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/18868?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "09fd4d01-1204-46a3-b237-45c37985acac", "oracle_id": "2ac6f1c7-f4c5-4d45-9644-da49d8fe4758", "multiverse_ids": [50439], "mtgo_id": 21065, "mtgo_foil_id": 21066, "tcgplayer_id": 12021, "cardmarket_id": 12040, "name": "Hisoka's Defiance", "lang": "en", "released_at": "2004-10-01", "uri": "https://api.scryfall.com/cards/09fd4d01-1204-46a3-b237-45c37985acac", "scryfall_uri": "https://scryfall.com/card/chk/67/hisokas-defiance?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/0/9/09fd4d01-1204-46a3-b237-45c37985acac.jpg?1562757466", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/9/09fd4d01-1204-46a3-b237-45c37985acac.jpg?1562757466", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/0/9/09fd4d01-1204-46a3-b237-45c37985acac.jpg?1562757466", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/0/9/09fd4d01-1204-46a3-b237-45c37985acac.png?1562757466", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/9/09fd4d01-1204-46a3-b237-45c37985acac.jpg?1562757466", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/0/9/09fd4d01-1204-46a3-b237-45c37985acac.jpg?1562757466"}, "mana_cost": "{1}{U}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Counter target Spirit or Arcane spell.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "6183d21f-a0af-4118-ba58-aca1d8719c01", "set": "chk", "set_name": "Champions of Kamigawa", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/6183d21f-a0af-4118-ba58-aca1d8719c01", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Achk&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/chk?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/09fd4d01-1204-46a3-b237-45c37985acac/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A2ac6f1c7-f4c5-4d45-9644-da49d8fe4758&unique=prints", "collector_number": "67", "digital": false, "rarity": "common", "flavor_text": "\"With every passing day, the kami shape our world to suit their will. I, for one, would not see them succeed.\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Greg Hildebrandt", "artist_ids": ["020f967b-0d2f-4166-aabe-901dba8bc7ec"], "illustration_id": "e072c140-f34a-4660-9c25-6a43bf7eb8b5", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 23135, "prices": {"usd": "0.05", "usd_foil": "0.19", "usd_etched": null, "eur": "0.02", "eur_foil": "0.04", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=50439", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Hisoka%27s+Defiance&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Hisoka%27s+Defiance&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Hisoka%27s+Defiance"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/12021?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Hisoka%27s+Defiance&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/21065?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "b10b8f15-b323-44d8-85a7-ed662a40889d", "oracle_id": "71b178bd-3b37-4de9-97a3-96e23d5444a4", "multiverse_ids": [439696], "mtgo_id": 66531, "arena_id": 66695, "tcgplayer_id": 155798, "cardmarket_id": 315381, "name": "Hornswoggle", "lang": "en", "released_at": "2018-01-19", "uri": "https://api.scryfall.com/cards/b10b8f15-b323-44d8-85a7-ed662a40889d", "scryfall_uri": "https://scryfall.com/card/rix/39/hornswoggle?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/b/1/b10b8f15-b323-44d8-85a7-ed662a40889d.jpg?1555039907", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/1/b10b8f15-b323-44d8-85a7-ed662a40889d.jpg?1555039907", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/b/1/b10b8f15-b323-44d8-85a7-ed662a40889d.jpg?1555039907", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/b/1/b10b8f15-b323-44d8-85a7-ed662a40889d.png?1555039907", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/1/b10b8f15-b323-44d8-85a7-ed662a40889d.jpg?1555039907", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/b/1/b10b8f15-b323-44d8-85a7-ed662a40889d.jpg?1555039907"}, "mana_cost": "{2}{U}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Counter target creature spell. You create a Treasure token. (It's an artifact with \"{T}, Sacrifice this artifact: Add one mana of any color.\")", "colors": ["U"], "color_identity": ["U"], "keywords": [], "produced_mana": ["B", "G", "R", "U", "W"], "all_parts": [{"object": "related_card", "id": "b10b8f15-b323-44d8-85a7-ed662a40889d", "component": "combo_piece", "name": "Hornswoggle", "type_line": "Instant", "uri": "https://api.scryfall.com/cards/b10b8f15-b323-44d8-85a7-ed662a40889d"}, {"object": "related_card", "id": "1a2d027f-8996-4761-a776-47cd428f6779", "component": "token", "name": "Treasure", "type_line": "Token Artifact \u2014 Treasure", "uri": "https://api.scryfall.com/cards/1a2d027f-8996-4761-a776-47cd428f6779"}], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "2f7e40fc-772d-4a85-bfdd-01653c41d0fa", "set": "rix", "set_name": "Rivals of Ixalan", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/2f7e40fc-772d-4a85-bfdd-01653c41d0fa", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Arix&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/rix?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/b10b8f15-b323-44d8-85a7-ed662a40889d/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A71b178bd-3b37-4de9-97a3-96e23d5444a4&unique=prints", "collector_number": "39", "digital": false, "rarity": "uncommon", "flavor_text": "Being a merciful pirate, she saved the vampire's gold from falling overboard.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Deruchenko Alexander", "artist_ids": ["806f6ff9-6ed4-4e93-998a-a562c0b792e6"], "illustration_id": "8c66bcef-66e2-4210-8319-92eb7473b6d7", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 5423, "penny_rank": 8751, "prices": {"usd": "0.21", "usd_foil": "0.83", "usd_etched": null, "eur": "0.20", "eur_foil": "0.37", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=439696", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Hornswoggle&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Hornswoggle&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Hornswoggle"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/155798?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Hornswoggle&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/66531?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "4cd05532-686e-40dc-858b-8a77a3628c99", "oracle_id": "9cac23a1-a0b3-490c-aea2-dc2928f6dc9e", "multiverse_ids": [401914], "mtgo_id": 58367, "mtgo_foil_id": 58368, "tcgplayer_id": 105297, "cardmarket_id": 284737, "name": "Horribly Awry", "lang": "en", "released_at": "2015-10-02", "uri": "https://api.scryfall.com/cards/4cd05532-686e-40dc-858b-8a77a3628c99", "scryfall_uri": "https://scryfall.com/card/bfz/59/horribly-awry?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/4/c/4cd05532-686e-40dc-858b-8a77a3628c99.jpg?1562912968", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/c/4cd05532-686e-40dc-858b-8a77a3628c99.jpg?1562912968", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/4/c/4cd05532-686e-40dc-858b-8a77a3628c99.jpg?1562912968", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/4/c/4cd05532-686e-40dc-858b-8a77a3628c99.png?1562912968", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/c/4cd05532-686e-40dc-858b-8a77a3628c99.jpg?1562912968", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/4/c/4cd05532-686e-40dc-858b-8a77a3628c99.jpg?1562912968"}, "mana_cost": "{1}{U}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Devoid (This card has no color.)\nCounter target creature spell with mana value 4 or less. If that spell is countered this way, exile it instead of putting it into its owner's graveyard.", "colors": [], "color_identity": ["U"], "keywords": ["Devoid"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "91719374-7ac5-4afa-ada8-5da964dcf1d4", "set": "bfz", "set_name": "Battle for Zendikar", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/91719374-7ac5-4afa-ada8-5da964dcf1d4", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Abfz&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/bfz?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/4cd05532-686e-40dc-858b-8a77a3628c99/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A9cac23a1-a0b3-490c-aea2-dc2928f6dc9e&unique=prints", "collector_number": "59", "digital": false, "rarity": "uncommon", "flavor_text": "\"We are nothing but dust to them\u2014our bodies, our actions, even our words.\"\n\u2014Jori En, expedition leader", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Clint Cearley", "artist_ids": ["03b75350-d5a0-4e3a-b3b4-8d4a5554385b"], "illustration_id": "dd0844dc-5f3d-4436-a80d-bda0c490c9b3", "border_color": "black", "frame": "2015", "frame_effects": ["devoid"], "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 13373, "penny_rank": 4158, "prices": {"usd": "0.08", "usd_foil": "0.42", "usd_etched": null, "eur": "0.10", "eur_foil": "0.29", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=401914", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Horribly+Awry&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Horribly+Awry&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Horribly+Awry"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/105297?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Horribly+Awry&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/58367?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "4c9c9b16-5567-4473-95e6-622292f77336", "oracle_id": "b94c0336-2ca8-4bb1-bb1f-e9babd1826ad", "multiverse_ids": [413597], "mtgo_id": 60921, "mtgo_foil_id": 60922, "tcgplayer_id": 118464, "cardmarket_id": 290216, "name": "Hydroblast", "lang": "en", "released_at": "2016-06-10", "uri": "https://api.scryfall.com/cards/4c9c9b16-5567-4473-95e6-622292f77336", "scryfall_uri": "https://scryfall.com/card/ema/55/hydroblast?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/4/c/4c9c9b16-5567-4473-95e6-622292f77336.jpg?1580013995", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/c/4c9c9b16-5567-4473-95e6-622292f77336.jpg?1580013995", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/4/c/4c9c9b16-5567-4473-95e6-622292f77336.jpg?1580013995", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/4/c/4c9c9b16-5567-4473-95e6-622292f77336.png?1580013995", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/c/4c9c9b16-5567-4473-95e6-622292f77336.jpg?1580013995", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/4/c/4c9c9b16-5567-4473-95e6-622292f77336.jpg?1580013995"}, "mana_cost": "{U}", "cmc": 1.0, "type_line": "Instant", "oracle_text": "Choose one \u2014\n\u2022 Counter target spell if it's red.\n\u2022 Destroy target permanent if it's red.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "1f29f022-3ace-4c96-85e8-1f7b63aadf7e", "set": "ema", "set_name": "Eternal Masters", "set_type": "masters", "set_uri": "https://api.scryfall.com/sets/1f29f022-3ace-4c96-85e8-1f7b63aadf7e", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aema&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ema?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/4c9c9b16-5567-4473-95e6-622292f77336/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ab94c0336-2ca8-4bb1-bb1f-e9babd1826ad&unique=prints", "collector_number": "55", "digital": false, "rarity": "uncommon", "flavor_text": "Fire can be savage, but it is fickle. Water is always true, its flow steady and world-shaping.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Lake Hurwitz", "artist_ids": ["3677c64b-55e6-4a0d-a952-bdbb05531220"], "illustration_id": "e503946e-99d7-43eb-b604-b819a4197b54", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 7550, "prices": {"usd": "0.64", "usd_foil": "4.47", "usd_etched": null, "eur": "1.20", "eur_foil": "3.98", "tix": "6.12"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=413597", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Hydroblast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Hydroblast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Hydroblast"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/118464?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Hydroblast&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/60921?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "f62716f0-fde2-49ef-b8a4-c1b03f451194", "oracle_id": "b94c0336-2ca8-4bb1-bb1f-e9babd1826ad", "multiverse_ids": [2508], "tcgplayer_id": 4727, "cardmarket_id": 6284, "name": "Hydroblast", "lang": "en", "released_at": "1995-06-03", "uri": "https://api.scryfall.com/cards/f62716f0-fde2-49ef-b8a4-c1b03f451194", "scryfall_uri": "https://scryfall.com/card/ice/72/hydroblast?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/f/6/f62716f0-fde2-49ef-b8a4-c1b03f451194.jpg?1562941220", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/6/f62716f0-fde2-49ef-b8a4-c1b03f451194.jpg?1562941220", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/f/6/f62716f0-fde2-49ef-b8a4-c1b03f451194.jpg?1562941220", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/f/6/f62716f0-fde2-49ef-b8a4-c1b03f451194.png?1562941220", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/6/f62716f0-fde2-49ef-b8a4-c1b03f451194.jpg?1562941220", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/f/6/f62716f0-fde2-49ef-b8a4-c1b03f451194.jpg?1562941220"}, "mana_cost": "{U}", "cmc": 1.0, "type_line": "Instant", "oracle_text": "Choose one \u2014\n\u2022 Counter target spell if it's red.\n\u2022 Destroy target permanent if it's red.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "b0e08eea-5c01-4406-a6e2-dcd09c5e5b67", "set": "ice", "set_name": "Ice Age", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/b0e08eea-5c01-4406-a6e2-dcd09c5e5b67", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aice&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ice?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/f62716f0-fde2-49ef-b8a4-c1b03f451194/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ab94c0336-2ca8-4bb1-bb1f-e9babd1826ad&unique=prints", "collector_number": "72", "digital": false, "rarity": "common", "flavor_text": "\"Heed the lessons of our time: the forms of water may move the land itself and hold captive the fires within.\"\n\u2014Gustha Ebbasdotter, Kjeldoran Royal Mage", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Kaja Foglio", "artist_ids": ["e8b85539-756a-4eac-ac66-a2258d7cf547"], "illustration_id": "f6213f08-aef2-4ba0-81d0-9c67ebcfb5e3", "border_color": "black", "frame": "1993", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 7550, "prices": {"usd": "0.55", "usd_foil": null, "usd_etched": null, "eur": "1.01", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=2508", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Hydroblast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Hydroblast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Hydroblast"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/4727?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Hydroblast&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Hydroblast&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "222db3a6-c2b1-48fc-9b0c-018ac6ed517b", "oracle_id": "b94c0336-2ca8-4bb1-bb1f-e9babd1826ad", "multiverse_ids": [], "mtgo_id": 69979, "name": "Hydroblast", "lang": "en", "released_at": "2018-09-28", "uri": "https://api.scryfall.com/cards/222db3a6-c2b1-48fc-9b0c-018ac6ed517b", "scryfall_uri": "https://scryfall.com/card/prm/69979/hydroblast?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/2/2/222db3a6-c2b1-48fc-9b0c-018ac6ed517b.jpg?1562543501", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/2/222db3a6-c2b1-48fc-9b0c-018ac6ed517b.jpg?1562543501", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/2/2/222db3a6-c2b1-48fc-9b0c-018ac6ed517b.jpg?1562543501", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/2/2/222db3a6-c2b1-48fc-9b0c-018ac6ed517b.png?1562543501", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/2/222db3a6-c2b1-48fc-9b0c-018ac6ed517b.jpg?1562543501", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/2/2/222db3a6-c2b1-48fc-9b0c-018ac6ed517b.jpg?1562543501"}, "mana_cost": "{U}", "cmc": 1.0, "type_line": "Instant", "oracle_text": "Choose one \u2014\n\u2022 Counter target spell if it's red.\n\u2022 Destroy target permanent if it's red.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": true, "reprint": true, "variation": false, "set_id": "638940fb-6be9-4be3-b83f-68d3902fbbe5", "set": "prm", "set_name": "Magic Online Promos", "set_type": "promo", "set_uri": "https://api.scryfall.com/sets/638940fb-6be9-4be3-b83f-68d3902fbbe5", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aprm&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/prm?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/222db3a6-c2b1-48fc-9b0c-018ac6ed517b/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ab94c0336-2ca8-4bb1-bb1f-e9babd1826ad&unique=prints", "collector_number": "69979", "digital": true, "rarity": "common", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Joseph Meehan", "artist_ids": ["6befd6d5-7f8d-4b7c-87e3-5511391a3359"], "illustration_id": "d37cd808-8553-466a-9789-e9898089ab3f", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "edhrec_rank": 7550, "prices": {"usd": null, "usd_foil": null, "usd_etched": null, "eur": null, "eur_foil": null, "tix": "6.31"}, "related_uris": {"tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Hydroblast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Hydroblast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Hydroblast"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/search/magic/product?productLineName=magic&q=Hydroblast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall&view=grid", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Hydroblast&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/69979?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "eb28f6e5-c9ef-416e-b315-967d857e7600", "oracle_id": "cd1a6508-aaba-4515-9496-057915d02040", "multiverse_ids": [3496], "mtgo_id": 7055, "mtgo_foil_id": 7056, "tcgplayer_id": 5105, "cardmarket_id": 8276, "name": "Illumination", "lang": "en", "released_at": "1996-10-08", "uri": "https://api.scryfall.com/cards/eb28f6e5-c9ef-416e-b315-967d857e7600", "scryfall_uri": "https://scryfall.com/card/mir/21/illumination?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/e/b/eb28f6e5-c9ef-416e-b315-967d857e7600.jpg?1562722393", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/b/eb28f6e5-c9ef-416e-b315-967d857e7600.jpg?1562722393", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/e/b/eb28f6e5-c9ef-416e-b315-967d857e7600.jpg?1562722393", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/e/b/eb28f6e5-c9ef-416e-b315-967d857e7600.png?1562722393", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/b/eb28f6e5-c9ef-416e-b315-967d857e7600.jpg?1562722393", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/e/b/eb28f6e5-c9ef-416e-b315-967d857e7600.jpg?1562722393"}, "mana_cost": "{W}{W}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Counter target artifact or enchantment spell. Its controller gains life equal to its mana value.", "colors": ["W"], "color_identity": ["W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "5f06acf3-8123-4a78-b2e7-089b0b775a4a", "set": "mir", "set_name": "Mirage", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/5f06acf3-8123-4a78-b2e7-089b0b775a4a", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Amir&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/mir?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/eb28f6e5-c9ef-416e-b315-967d857e7600/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Acd1a6508-aaba-4515-9496-057915d02040&unique=prints", "collector_number": "21", "digital": false, "rarity": "uncommon", "flavor_text": "\"A brilliant light can either illuminate or blind. How will you know which until you open your eyes?\"\n\u2014Asmira, Holy Avenger", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "David O'Connor", "artist_ids": ["bd8dcf6f-4ab3-4854-bfb0-f2e21610fc16"], "illustration_id": "099e24af-52e8-499c-a22f-94f3f39cdf85", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 11640, "prices": {"usd": "0.33", "usd_foil": null, "usd_etched": null, "eur": "0.43", "eur_foil": null, "tix": "0.09"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=3496", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Illumination&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Illumination&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Illumination"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/5105?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Illumination&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/7055?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "bc462b75-8b08-47a3-be22-d7b5c062ec5b", "oracle_id": "ec9475f8-235a-4c85-9b96-9c2085a9b732", "multiverse_ids": [87924], "mtgo_id": 23094, "mtgo_foil_id": 23095, "tcgplayer_id": 13330, "cardmarket_id": 13436, "name": "Induce Paranoia", "lang": "en", "released_at": "2005-10-07", "uri": "https://api.scryfall.com/cards/bc462b75-8b08-47a3-be22-d7b5c062ec5b", "scryfall_uri": "https://scryfall.com/card/rav/56/induce-paranoia?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/b/c/bc462b75-8b08-47a3-be22-d7b5c062ec5b.jpg?1598914307", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/c/bc462b75-8b08-47a3-be22-d7b5c062ec5b.jpg?1598914307", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/b/c/bc462b75-8b08-47a3-be22-d7b5c062ec5b.jpg?1598914307", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/b/c/bc462b75-8b08-47a3-be22-d7b5c062ec5b.png?1598914307", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/c/bc462b75-8b08-47a3-be22-d7b5c062ec5b.jpg?1598914307", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/b/c/bc462b75-8b08-47a3-be22-d7b5c062ec5b.jpg?1598914307"}, "mana_cost": "{2}{U}{U}", "cmc": 4.0, "type_line": "Instant", "oracle_text": "Counter target spell. If {B} was spent to cast this spell, that spell's controller mills X cards, where X is the spell's mana value.", "colors": ["U"], "color_identity": ["B", "U"], "keywords": ["Mill"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "15fccbe8-2825-41ca-9d0a-67aebdf91c4a", "set": "rav", "set_name": "Ravnica: City of Guilds", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/15fccbe8-2825-41ca-9d0a-67aebdf91c4a", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Arav&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/rav?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/bc462b75-8b08-47a3-be22-d7b5c062ec5b/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aec9475f8-235a-4c85-9b96-9c2085a9b732&unique=prints", "collector_number": "56", "digital": false, "rarity": "common", "watermark": "dimir", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Jim Murray", "artist_ids": ["1c906f9b-5bbe-4643-8f5c-90eb1c7f0c43"], "illustration_id": "94a3eea4-201b-4bd2-be42-3c8e80e6bdd8", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 10360, "penny_rank": 7398, "prices": {"usd": "0.22", "usd_foil": "2.99", "usd_etched": null, "eur": "0.24", "eur_foil": "0.70", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=87924", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Induce+Paranoia&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Induce+Paranoia&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Induce+Paranoia"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/13330?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Induce+Paranoia&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/23094?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "8eafb2bb-58bf-4c6b-ae8f-91bcea12c7d2", "oracle_id": "8088d110-2314-45c3-b6ee-3f55d1f388e4", "multiverse_ids": [417625], "mtgo_id": 61657, "mtgo_foil_id": 61658, "tcgplayer_id": 123137, "cardmarket_id": 292764, "name": "Insidious Will", "lang": "en", "released_at": "2016-09-30", "uri": "https://api.scryfall.com/cards/8eafb2bb-58bf-4c6b-ae8f-91bcea12c7d2", "scryfall_uri": "https://scryfall.com/card/kld/52/insidious-will?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/8/e/8eafb2bb-58bf-4c6b-ae8f-91bcea12c7d2.jpg?1576381260", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/e/8eafb2bb-58bf-4c6b-ae8f-91bcea12c7d2.jpg?1576381260", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/8/e/8eafb2bb-58bf-4c6b-ae8f-91bcea12c7d2.jpg?1576381260", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/8/e/8eafb2bb-58bf-4c6b-ae8f-91bcea12c7d2.png?1576381260", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/e/8eafb2bb-58bf-4c6b-ae8f-91bcea12c7d2.jpg?1576381260", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/8/e/8eafb2bb-58bf-4c6b-ae8f-91bcea12c7d2.jpg?1576381260"}, "mana_cost": "{2}{U}{U}", "cmc": 4.0, "type_line": "Instant", "oracle_text": "Choose one \u2014\n\u2022 Counter target spell.\n\u2022 You may choose new targets for target spell.\n\u2022 Copy target instant or sorcery spell. You may choose new targets for the copy.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "d667e468-be8f-411f-a030-473d148deb74", "set": "kld", "set_name": "Kaladesh", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/d667e468-be8f-411f-a030-473d148deb74", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Akld&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/kld?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/8eafb2bb-58bf-4c6b-ae8f-91bcea12c7d2/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A8088d110-2314-45c3-b6ee-3f55d1f388e4&unique=prints", "collector_number": "52", "digital": false, "rarity": "rare", "flavor_text": "\"We meet again, pyromancer.\"\n\u2014Baral, Chief of Compliance", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Anthony Palumbo", "artist_ids": ["afd2d541-4140-41ae-a28f-862436458fcb"], "illustration_id": "2771590e-6207-4ff0-84eb-2c34a442f819", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 2574, "penny_rank": 5299, "prices": {"usd": "0.40", "usd_foil": "1.18", "usd_etched": null, "eur": "0.30", "eur_foil": "0.50", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=417625", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Insidious+Will&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Insidious+Will&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Insidious+Will"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/123137?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Insidious+Will&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/61657?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "3442c919-73b9-4d29-a014-87293f456325", "oracle_id": "93771480-2672-4bc7-81a8-011d3b8878b0", "multiverse_ids": [4706], "mtgo_id": 10105, "mtgo_foil_id": 10106, "tcgplayer_id": 5592, "cardmarket_id": 8804, "name": "Interdict", "lang": "en", "released_at": "1997-10-14", "uri": "https://api.scryfall.com/cards/3442c919-73b9-4d29-a014-87293f456325", "scryfall_uri": "https://scryfall.com/card/tmp/69/interdict?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/3/4/3442c919-73b9-4d29-a014-87293f456325.jpg?1562053290", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/4/3442c919-73b9-4d29-a014-87293f456325.jpg?1562053290", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/3/4/3442c919-73b9-4d29-a014-87293f456325.jpg?1562053290", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/3/4/3442c919-73b9-4d29-a014-87293f456325.png?1562053290", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/4/3442c919-73b9-4d29-a014-87293f456325.jpg?1562053290", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/3/4/3442c919-73b9-4d29-a014-87293f456325.jpg?1562053290"}, "mana_cost": "{1}{U}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Counter target activated ability from an artifact, creature, enchantment, or land. That permanent's activated abilities can't be activated this turn. (Mana abilities can't be targeted.)\nDraw a card.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "10df3a67-178e-4363-8668-34f0e6edf2a7", "set": "tmp", "set_name": "Tempest", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/10df3a67-178e-4363-8668-34f0e6edf2a7", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Atmp&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/tmp?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/3442c919-73b9-4d29-a014-87293f456325/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A93771480-2672-4bc7-81a8-011d3b8878b0&unique=prints", "collector_number": "69", "digital": false, "rarity": "uncommon", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Jeff Laubenstein", "artist_ids": ["7c5b6391-2a5a-4b78-b19d-2b181149cb0f"], "illustration_id": "862e3868-e639-42f8-a50b-312311366073", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 14004, "penny_rank": 4249, "prices": {"usd": "0.25", "usd_foil": null, "usd_etched": null, "eur": "0.29", "eur_foil": null, "tix": "0.04"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=4706", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Interdict&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Interdict&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Interdict"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/5592?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Interdict&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/10105?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "4b0e3894-5dfe-4d03-9996-eebf96c58168", "oracle_id": "380b386f-90c8-45c5-a611-1ed6803b52d2", "multiverse_ids": [12378], "mtgo_id": 12593, "mtgo_foil_id": 12594, "tcgplayer_id": 6328, "cardmarket_id": 10590, "name": "Intervene", "lang": "en", "released_at": "1999-02-15", "uri": "https://api.scryfall.com/cards/4b0e3894-5dfe-4d03-9996-eebf96c58168", "scryfall_uri": "https://scryfall.com/card/ulg/33/intervene?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/4/b/4b0e3894-5dfe-4d03-9996-eebf96c58168.jpg?1562862808", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/b/4b0e3894-5dfe-4d03-9996-eebf96c58168.jpg?1562862808", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/4/b/4b0e3894-5dfe-4d03-9996-eebf96c58168.jpg?1562862808", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/4/b/4b0e3894-5dfe-4d03-9996-eebf96c58168.png?1562862808", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/b/4b0e3894-5dfe-4d03-9996-eebf96c58168.jpg?1562862808", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/4/b/4b0e3894-5dfe-4d03-9996-eebf96c58168.jpg?1562862808"}, "mana_cost": "{U}", "cmc": 1.0, "type_line": "Instant", "oracle_text": "Counter target spell that targets a creature.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "78ced61b-4b8a-4b33-b6b2-f5bd66f1a75a", "set": "ulg", "set_name": "Urza's Legacy", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/78ced61b-4b8a-4b33-b6b2-f5bd66f1a75a", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aulg&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ulg?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/4b0e3894-5dfe-4d03-9996-eebf96c58168/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A380b386f-90c8-45c5-a611-1ed6803b52d2&unique=prints", "collector_number": "33", "digital": false, "rarity": "common", "flavor_text": "\"At first I simply observed. But I found that without investment in others, life serves no purpose.\"\n\u2014Karn, silver golem", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Heather Hudson", "artist_ids": ["4441fe52-9e41-40c1-9b74-8510426279ab"], "illustration_id": "c60f9f83-3160-4c3e-9946-e6f4e714beb0", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 10393, "penny_rank": 6510, "prices": {"usd": "0.22", "usd_foil": "5.55", "usd_etched": null, "eur": "0.10", "eur_foil": "1.99", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=12378", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Intervene&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Intervene&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Intervene"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/6328?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Intervene&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/12593?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "6e644e38-39bf-40bd-9be1-5eb80f472e81", "oracle_id": "545f56c6-b10f-4868-8aa8-ea3154980854", "multiverse_ids": [409811], "mtgo_id": 59906, "mtgo_foil_id": 59907, "tcgplayer_id": 116416, "cardmarket_id": 289279, "name": "Invasive Surgery", "lang": "en", "released_at": "2016-04-08", "uri": "https://api.scryfall.com/cards/6e644e38-39bf-40bd-9be1-5eb80f472e81", "scryfall_uri": "https://scryfall.com/card/soi/68/invasive-surgery?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/6/e/6e644e38-39bf-40bd-9be1-5eb80f472e81.jpg?1576384110", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/e/6e644e38-39bf-40bd-9be1-5eb80f472e81.jpg?1576384110", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/6/e/6e644e38-39bf-40bd-9be1-5eb80f472e81.jpg?1576384110", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/6/e/6e644e38-39bf-40bd-9be1-5eb80f472e81.png?1576384110", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/e/6e644e38-39bf-40bd-9be1-5eb80f472e81.jpg?1576384110", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/6/e/6e644e38-39bf-40bd-9be1-5eb80f472e81.jpg?1576384110"}, "mana_cost": "{U}", "cmc": 1.0, "type_line": "Instant", "oracle_text": "Counter target sorcery spell.\nDelirium \u2014 If there are four or more card types among cards in your graveyard, search the graveyard, hand, and library of that spell's controller for any number of cards with the same name as that spell, exile those cards, then that player shuffles.", "colors": ["U"], "color_identity": ["U"], "keywords": ["Delirium"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "5e914d7e-c1e9-446c-a33d-d093c02b2743", "set": "soi", "set_name": "Shadows over Innistrad", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/5e914d7e-c1e9-446c-a33d-d093c02b2743", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Asoi&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/soi?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/6e644e38-39bf-40bd-9be1-5eb80f472e81/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A545f56c6-b10f-4868-8aa8-ea3154980854&unique=prints", "collector_number": "68", "digital": false, "rarity": "uncommon", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Steven Belledin", "artist_ids": ["f07d73b9-52a0-4fe5-858b-61f7b42174a5"], "illustration_id": "d6240ff1-6df7-4f9a-8b73-33a9ef4d6a60", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 18069, "penny_rank": 2643, "prices": {"usd": "0.17", "usd_foil": "1.02", "usd_etched": null, "eur": "0.24", "eur_foil": "12.49", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=409811", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Invasive+Surgery&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Invasive+Surgery&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Invasive+Surgery"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/116416?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Invasive+Surgery&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/59906?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "f161f7d2-eaa1-4931-93f9-befa8b5df821", "oracle_id": "01da67a5-e3dc-44f4-8a93-513bfa4d8fbc", "multiverse_ids": [452929], "mtgo_id": 69731, "arena_id": 68640, "tcgplayer_id": 176422, "cardmarket_id": 363952, "name": "Ionize", "lang": "en", "released_at": "2018-10-05", "uri": "https://api.scryfall.com/cards/f161f7d2-eaa1-4931-93f9-befa8b5df821", "scryfall_uri": "https://scryfall.com/card/grn/179/ionize?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/f/1/f161f7d2-eaa1-4931-93f9-befa8b5df821.jpg?1572893679", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/1/f161f7d2-eaa1-4931-93f9-befa8b5df821.jpg?1572893679", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/f/1/f161f7d2-eaa1-4931-93f9-befa8b5df821.jpg?1572893679", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/f/1/f161f7d2-eaa1-4931-93f9-befa8b5df821.png?1572893679", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/1/f161f7d2-eaa1-4931-93f9-befa8b5df821.jpg?1572893679", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/f/1/f161f7d2-eaa1-4931-93f9-befa8b5df821.jpg?1572893679"}, "mana_cost": "{1}{U}{R}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Counter target spell. Ionize deals 2 damage to that spell's controller.", "colors": ["R", "U"], "color_identity": ["R", "U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "597c6d4a-8212-4903-a6af-12c4ae9e13f0", "set": "grn", "set_name": "Guilds of Ravnica", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/597c6d4a-8212-4903-a6af-12c4ae9e13f0", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Agrn&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/grn?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/f161f7d2-eaa1-4931-93f9-befa8b5df821/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A01da67a5-e3dc-44f4-8a93-513bfa4d8fbc&unique=prints", "collector_number": "179", "digital": false, "rarity": "rare", "watermark": "izzet", "flavor_text": "\"Countermagic is a simple process of breaking matter into its elementary particles.\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Chase Stone", "artist_ids": ["2d753f61-5f5b-468e-97ea-8e0fdd347340"], "illustration_id": "5035de86-267e-491c-885f-a5188299b730", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 4399, "penny_rank": 3356, "prices": {"usd": "0.26", "usd_foil": "0.99", "usd_etched": null, "eur": "0.34", "eur_foil": "1.39", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=452929", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Ionize&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Ionize&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Ionize"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/176422?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Ionize&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/69731?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "1b713448-853a-41ee-a302-963e9c1c1c65", "oracle_id": "a84c9507-d054-4770-84f3-5a4b5a01d826", "multiverse_ids": [39843], "mtgo_id": 17805, "mtgo_foil_id": 17806, "tcgplayer_id": 10469, "cardmarket_id": 1721, "name": "Ixidor's Will", "lang": "en", "released_at": "2002-10-07", "uri": "https://api.scryfall.com/cards/1b713448-853a-41ee-a302-963e9c1c1c65", "scryfall_uri": "https://scryfall.com/card/ons/90/ixidors-will?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/1/b/1b713448-853a-41ee-a302-963e9c1c1c65.jpg?1562901464", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/b/1b713448-853a-41ee-a302-963e9c1c1c65.jpg?1562901464", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/1/b/1b713448-853a-41ee-a302-963e9c1c1c65.jpg?1562901464", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/1/b/1b713448-853a-41ee-a302-963e9c1c1c65.png?1562901464", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/b/1b713448-853a-41ee-a302-963e9c1c1c65.jpg?1562901464", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/1/b/1b713448-853a-41ee-a302-963e9c1c1c65.jpg?1562901464"}, "mana_cost": "{2}{U}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Counter target spell unless its controller pays {2} for each Wizard on the battlefield.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "914a6c6d-cb3b-45e8-a2db-9978a2339faf", "set": "ons", "set_name": "Onslaught", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/914a6c6d-cb3b-45e8-a2db-9978a2339faf", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aons&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ons?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/1b713448-853a-41ee-a302-963e9c1c1c65/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aa84c9507-d054-4770-84f3-5a4b5a01d826&unique=prints", "collector_number": "90", "digital": false, "rarity": "common", "flavor_text": "\"Some dreams should not come to be.\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Eric Peterson", "artist_ids": ["0fc26d3b-4c0e-41d1-8eb3-286ab55a2328"], "illustration_id": "f69642d0-92fb-44bb-b483-df6fabe55344", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 16261, "penny_rank": 4030, "prices": {"usd": "0.11", "usd_foil": "0.35", "usd_etched": null, "eur": "0.02", "eur_foil": "0.55", "tix": "0.06"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=39843", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Ixidor%27s+Will&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Ixidor%27s+Will&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Ixidor%27s+Will"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/10469?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Ixidor%27s+Will&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/17805?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "61289196-a56b-4d24-b340-9cf067c77f45", "oracle_id": "a07698f6-5ad5-49a3-9da2-f82d407f5cd7", "multiverse_ids": [338413], "mtgo_id": 46129, "mtgo_foil_id": 46130, "tcgplayer_id": 66311, "cardmarket_id": 258129, "name": "Izzet Charm", "lang": "en", "released_at": "2012-09-07", "uri": "https://api.scryfall.com/cards/61289196-a56b-4d24-b340-9cf067c77f45", "scryfall_uri": "https://scryfall.com/card/ddj/21/izzet-charm?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/6/1/61289196-a56b-4d24-b340-9cf067c77f45.jpg?1592713417", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/1/61289196-a56b-4d24-b340-9cf067c77f45.jpg?1592713417", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/6/1/61289196-a56b-4d24-b340-9cf067c77f45.jpg?1592713417", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/6/1/61289196-a56b-4d24-b340-9cf067c77f45.png?1592713417", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/1/61289196-a56b-4d24-b340-9cf067c77f45.jpg?1592713417", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/6/1/61289196-a56b-4d24-b340-9cf067c77f45.jpg?1592713417"}, "mana_cost": "{U}{R}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Choose one \u2014\n\u2022 Counter target noncreature spell unless its controller pays {2}.\n\u2022 Izzet Charm deals 2 damage to target creature.\n\u2022 Draw two cards, then discard two cards.", "colors": ["R", "U"], "color_identity": ["R", "U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "2dfea68b-b0c4-4f63-ba6c-36c9a6e3030f", "set": "ddj", "set_name": "Duel Decks: Izzet vs. Golgari", "set_type": "duel_deck", "set_uri": "https://api.scryfall.com/sets/2dfea68b-b0c4-4f63-ba6c-36c9a6e3030f", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Addj&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ddj?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/61289196-a56b-4d24-b340-9cf067c77f45/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aa07698f6-5ad5-49a3-9da2-f82d407f5cd7&unique=prints", "collector_number": "21", "digital": false, "rarity": "uncommon", "watermark": "izzet", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Zoltan Boros", "artist_ids": ["1885e6cb-c827-4896-994e-3d0a027d602f"], "illustration_id": "1b8be289-53f7-4fd8-9877-7085486c242d", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "edhrec_rank": 1220, "penny_rank": 304, "prices": {"usd": "0.35", "usd_foil": null, "usd_etched": null, "eur": "0.05", "eur_foil": null, "tix": "0.89"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=338413", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Izzet+Charm&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Izzet+Charm&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Izzet+Charm"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/66311?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Izzet+Charm&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/46129?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "e8e84a97-8e40-42fa-a114-df90e820ede6", "oracle_id": "a07698f6-5ad5-49a3-9da2-f82d407f5cd7", "multiverse_ids": [], "tcgplayer_id": 70766, "cardmarket_id": 262171, "name": "Izzet Charm", "lang": "en", "released_at": "2013-01-01", "uri": "https://api.scryfall.com/cards/e8e84a97-8e40-42fa-a114-df90e820ede6", "scryfall_uri": "https://scryfall.com/card/f13/6/izzet-charm?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/e/8/e8e84a97-8e40-42fa-a114-df90e820ede6.jpg?1562497263", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/8/e8e84a97-8e40-42fa-a114-df90e820ede6.jpg?1562497263", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/e/8/e8e84a97-8e40-42fa-a114-df90e820ede6.jpg?1562497263", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/e/8/e8e84a97-8e40-42fa-a114-df90e820ede6.png?1562497263", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/8/e8e84a97-8e40-42fa-a114-df90e820ede6.jpg?1562497263", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/e/8/e8e84a97-8e40-42fa-a114-df90e820ede6.jpg?1562497263"}, "mana_cost": "{U}{R}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Choose one \u2014\n\u2022 Counter target noncreature spell unless its controller pays {2}.\n\u2022 Izzet Charm deals 2 damage to target creature.\n\u2022 Draw two cards, then discard two cards.", "colors": ["R", "U"], "color_identity": ["R", "U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": true, "nonfoil": false, "finishes": ["foil"], "oversized": false, "promo": true, "reprint": true, "variation": false, "set_id": "4f0f5416-2f39-4339-8b9a-5454d94a4ca6", "set": "f13", "set_name": "Friday Night Magic 2013", "set_type": "promo", "set_uri": "https://api.scryfall.com/sets/4f0f5416-2f39-4339-8b9a-5454d94a4ca6", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Af13&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/f13?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/e8e84a97-8e40-42fa-a114-df90e820ede6/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aa07698f6-5ad5-49a3-9da2-f82d407f5cd7&unique=prints", "collector_number": "6", "digital": false, "rarity": "rare", "watermark": "izzet", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Zoltan Boros", "artist_ids": ["1885e6cb-c827-4896-994e-3d0a027d602f"], "illustration_id": "d6a18e94-d65e-45de-936e-6a065ebd8af4", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "promo_types": ["tourney", "fnm"], "edhrec_rank": 1220, "penny_rank": 304, "prices": {"usd": null, "usd_foil": "1.99", "usd_etched": null, "eur": null, "eur_foil": "1.22", "tix": null}, "related_uris": {"tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Izzet+Charm&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Izzet+Charm&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Izzet+Charm"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/70766?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Izzet+Charm&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Izzet+Charm&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "c6b103c1-9b25-4bfe-9081-570977e9fdad", "oracle_id": "8ed8e27b-2137-4e19-99bb-5e0d6d32e3af", "multiverse_ids": [430727], "mtgo_id": 64560, "mtgo_foil_id": 64561, "tcgplayer_id": 134875, "cardmarket_id": 298494, "name": "Jace's Defeat", "lang": "en", "released_at": "2017-07-14", "uri": "https://api.scryfall.com/cards/c6b103c1-9b25-4bfe-9081-570977e9fdad", "scryfall_uri": "https://scryfall.com/card/hou/38/jaces-defeat?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/c/6/c6b103c1-9b25-4bfe-9081-570977e9fdad.jpg?1562814148", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/6/c6b103c1-9b25-4bfe-9081-570977e9fdad.jpg?1562814148", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/c/6/c6b103c1-9b25-4bfe-9081-570977e9fdad.jpg?1562814148", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/c/6/c6b103c1-9b25-4bfe-9081-570977e9fdad.png?1562814148", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/6/c6b103c1-9b25-4bfe-9081-570977e9fdad.jpg?1562814148", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/c/6/c6b103c1-9b25-4bfe-9081-570977e9fdad.jpg?1562814148"}, "mana_cost": "{1}{U}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Counter target blue spell. If it was a Jace planeswalker spell, scry 2.", "colors": ["U"], "color_identity": ["U"], "keywords": ["Scry"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "65ff168b-bb94-47a5-a8f9-4ec6c213e768", "set": "hou", "set_name": "Hour of Devastation", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/65ff168b-bb94-47a5-a8f9-4ec6c213e768", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ahou&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/hou?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/c6b103c1-9b25-4bfe-9081-570977e9fdad/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A8ed8e27b-2137-4e19-99bb-5e0d6d32e3af&unique=prints", "collector_number": "38", "digital": false, "rarity": "uncommon", "flavor_text": "\"I had hoped for more from you, Jace. But I expected as much.\"\n\u2014Nicol Bolas", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Kieran Yanner", "artist_ids": ["aa7e89ed-d294-4633-9057-ce04dacfcfa4"], "illustration_id": "6480f436-43ea-4d92-8c66-109b82fcb1bf", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 16464, "prices": {"usd": "0.04", "usd_foil": "0.20", "usd_etched": null, "eur": "0.02", "eur_foil": "0.20", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=430727", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Jace%27s+Defeat&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Jace%27s+Defeat&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Jace%27s+Defeat"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/134875?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Jace%27s+Defeat&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/64560?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "6a9ab1f0-4e75-4165-85bc-6f838c221d6a", "oracle_id": "23917517-7561-45b3-b156-77cd2f340466", "multiverse_ids": [26673], "mtgo_id": 16164, "mtgo_foil_id": 16165, "tcgplayer_id": 7973, "cardmarket_id": 3138, "name": "Jaded Response", "lang": "en", "released_at": "2001-06-04", "uri": "https://api.scryfall.com/cards/6a9ab1f0-4e75-4165-85bc-6f838c221d6a", "scryfall_uri": "https://scryfall.com/card/apc/26/jaded-response?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/6/a/6a9ab1f0-4e75-4165-85bc-6f838c221d6a.jpg?1562920093", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/a/6a9ab1f0-4e75-4165-85bc-6f838c221d6a.jpg?1562920093", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/6/a/6a9ab1f0-4e75-4165-85bc-6f838c221d6a.jpg?1562920093", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/6/a/6a9ab1f0-4e75-4165-85bc-6f838c221d6a.png?1562920093", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/a/6a9ab1f0-4e75-4165-85bc-6f838c221d6a.jpg?1562920093", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/6/a/6a9ab1f0-4e75-4165-85bc-6f838c221d6a.jpg?1562920093"}, "mana_cost": "{1}{U}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Counter target spell if it shares a color with a creature you control.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "e4e00913-d08d-4899-86ea-5cf631e09ce0", "set": "apc", "set_name": "Apocalypse", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/e4e00913-d08d-4899-86ea-5cf631e09ce0", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aapc&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/apc?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/6a9ab1f0-4e75-4165-85bc-6f838c221d6a/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A23917517-7561-45b3-b156-77cd2f340466&unique=prints", "collector_number": "26", "digital": false, "rarity": "common", "flavor_text": "\"Calm down everyone; it's nothing we haven't seen before.\"\n\u2014Sisay", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Matt Cavotta", "artist_ids": ["2e6a0611-9411-4ba4-98e3-c0e18cbf9f83"], "illustration_id": "cf46b463-edab-4981-b8f4-73c5ef2ba990", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 14640, "prices": {"usd": "0.13", "usd_foil": "6.16", "usd_etched": null, "eur": "0.02", "eur_foil": "0.50", "tix": "0.09"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=26673", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Jaded+Response&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Jaded+Response&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Jaded+Response"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/7973?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Jaded+Response&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/16164?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "febfa682-76ae-4979-a40c-c1eae1121f3c", "oracle_id": "5602c14d-cc22-47d7-a1b0-6491749f00dd", "multiverse_ids": [479576], "mtgo_id": 80121, "arena_id": 71123, "tcgplayer_id": 212259, "cardmarket_id": 452943, "name": "Keep Safe", "lang": "en", "released_at": "2020-04-24", "uri": "https://api.scryfall.com/cards/febfa682-76ae-4979-a40c-c1eae1121f3c", "scryfall_uri": "https://scryfall.com/card/iko/56/keep-safe?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/f/e/febfa682-76ae-4979-a40c-c1eae1121f3c.jpg?1591226372", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/e/febfa682-76ae-4979-a40c-c1eae1121f3c.jpg?1591226372", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/f/e/febfa682-76ae-4979-a40c-c1eae1121f3c.jpg?1591226372", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/f/e/febfa682-76ae-4979-a40c-c1eae1121f3c.png?1591226372", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/e/febfa682-76ae-4979-a40c-c1eae1121f3c.jpg?1591226372", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/f/e/febfa682-76ae-4979-a40c-c1eae1121f3c.jpg?1591226372"}, "mana_cost": "{1}{U}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Counter target spell that targets a permanent you control.\nDraw a card.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "19feda43-15ab-427e-a0e4-148a4bf2b03a", "set": "iko", "set_name": "Ikoria: Lair of Behemoths", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/19feda43-15ab-427e-a0e4-148a4bf2b03a", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aiko&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/iko?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/febfa682-76ae-4979-a40c-c1eae1121f3c/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A5602c14d-cc22-47d7-a1b0-6491749f00dd&unique=prints", "collector_number": "56", "digital": false, "rarity": "common", "flavor_text": "\"Coppercoats think they understand duty and loyalty, but they can't begin to fathom the depths of my bond.\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Ekaterina Burmak", "artist_ids": ["2a9f3780-fcc8-4ec5-b403-ee1d1370d3b4"], "illustration_id": "41665ae3-bb53-43a1-9eb3-e7b9da252283", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 4194, "penny_rank": 7405, "prices": {"usd": "0.05", "usd_foil": "0.22", "usd_etched": null, "eur": "0.15", "eur_foil": "0.20", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=479576", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Keep+Safe&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Keep+Safe&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Keep+Safe"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/212259?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Keep+Safe&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/80121?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "4fbdeac6-f61b-4669-934c-9216d669500f", "oracle_id": "ea8a552d-c325-46ed-ae9b-f7f58a39e56a", "multiverse_ids": [], "arena_id": 79923, "name": "Kindred Denial", "lang": "en", "released_at": "2021-12-09", "uri": "https://api.scryfall.com/cards/4fbdeac6-f61b-4669-934c-9216d669500f", "scryfall_uri": "https://scryfall.com/card/ymid/18/kindred-denial?utm_source=api", "layout": "normal", "highres_image": false, "image_status": "lowres", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/4/f/4fbdeac6-f61b-4669-934c-9216d669500f.jpg?1645417342", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/f/4fbdeac6-f61b-4669-934c-9216d669500f.jpg?1645417342", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/4/f/4fbdeac6-f61b-4669-934c-9216d669500f.jpg?1645417342", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/4/f/4fbdeac6-f61b-4669-934c-9216d669500f.png?1645417342", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/f/4fbdeac6-f61b-4669-934c-9216d669500f.jpg?1645417342", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/4/f/4fbdeac6-f61b-4669-934c-9216d669500f.jpg?1645417342"}, "mana_cost": "{2}{U}{U}", "cmc": 4.0, "type_line": "Instant", "oracle_text": "Counter target spell. Seek a card with the same mana value as that spell.", "colors": ["U"], "color_identity": ["U"], "keywords": ["Seek"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "not_legal", "pauper": "not_legal", "vintage": "not_legal", "penny": "not_legal", "commander": "not_legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "not_legal", "duel": "not_legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "8a673262-8745-452d-820a-03d5c4a4f135", "set": "ymid", "set_name": "Alchemy: Innistrad", "set_type": "alchemy", "set_uri": "https://api.scryfall.com/sets/8a673262-8745-452d-820a-03d5c4a4f135", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aymid&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ymid?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/4fbdeac6-f61b-4669-934c-9216d669500f/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aea8a552d-c325-46ed-ae9b-f7f58a39e56a&unique=prints", "collector_number": "18", "digital": true, "rarity": "uncommon", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Justyna Gil", "artist_ids": ["d2340aef-8ca9-4e0d-864c-6a4e8d5e350a"], "illustration_id": "d7830471-3bdd-4394-87cf-525c93142460", "border_color": "black", "frame": "2015", "security_stamp": "arena", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "preview": {"source": "CovertGoBlue", "source_uri": "https://twitter.com/covertgoblue/status/1466905407226626058", "previewed_at": "2021-12-03"}, "prices": {"usd": null, "usd_foil": null, "usd_etched": null, "eur": null, "eur_foil": null, "tix": null}, "related_uris": {"tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Kindred+Denial&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Kindred+Denial&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Kindred+Denial"}}, {"object": "card", "id": "ec609036-dfbf-47de-9a3a-762aea4196d4", "oracle_id": "1b721ad3-d0f6-4eec-9bf0-f57ea9dfa392", "multiverse_ids": [175026], "mtgo_id": 31715, "mtgo_foil_id": 31716, "tcgplayer_id": 28560, "cardmarket_id": 20652, "name": "Lapse of Certainty", "lang": "en", "released_at": "2009-02-06", "uri": "https://api.scryfall.com/cards/ec609036-dfbf-47de-9a3a-762aea4196d4", "scryfall_uri": "https://scryfall.com/card/con/9/lapse-of-certainty?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/e/c/ec609036-dfbf-47de-9a3a-762aea4196d4.jpg?1562804498", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/c/ec609036-dfbf-47de-9a3a-762aea4196d4.jpg?1562804498", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/e/c/ec609036-dfbf-47de-9a3a-762aea4196d4.jpg?1562804498", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/e/c/ec609036-dfbf-47de-9a3a-762aea4196d4.png?1562804498", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/c/ec609036-dfbf-47de-9a3a-762aea4196d4.jpg?1562804498", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/e/c/ec609036-dfbf-47de-9a3a-762aea4196d4.jpg?1562804498"}, "mana_cost": "{2}{W}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Counter target spell. If that spell is countered this way, put it on top of its owner's library instead of into that player's graveyard.", "colors": ["W"], "color_identity": ["W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "76b2db58-904c-4e49-8580-9f62f7b3cca4", "set": "con", "set_name": "Conflux", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/76b2db58-904c-4e49-8580-9f62f7b3cca4", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Acon&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/con?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/ec609036-dfbf-47de-9a3a-762aea4196d4/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A1b721ad3-d0f6-4eec-9bf0-f57ea9dfa392&unique=prints", "collector_number": "9", "digital": false, "rarity": "common", "flavor_text": "Without a connection of mind and body, magic is just an idea stuck in the head, a word on the tip of a tongue.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Anthony Francisco", "artist_ids": ["6ac24c4b-70e9-4286-8f4b-b40c92ab5847"], "illustration_id": "a587ba8b-d3da-48de-920a-5e64ae5ec550", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 2675, "penny_rank": 6719, "prices": {"usd": "0.52", "usd_foil": "2.63", "usd_etched": null, "eur": "0.22", "eur_foil": "0.99", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=175026", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Lapse+of+Certainty&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Lapse+of+Certainty&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Lapse+of+Certainty"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/28560?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Lapse+of+Certainty&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/31715?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "e2ea5448-2d72-42eb-814c-197153d8e06a", "oracle_id": "68f330ca-8279-46c5-900d-a9b443676104", "multiverse_ids": [27145], "mtgo_id": 17358, "mtgo_foil_id": 17359, "tcgplayer_id": 10204, "cardmarket_id": 2170, "name": "Laquatus's Disdain", "lang": "en", "released_at": "2002-05-27", "uri": "https://api.scryfall.com/cards/e2ea5448-2d72-42eb-814c-197153d8e06a", "scryfall_uri": "https://scryfall.com/card/jud/44/laquatuss-disdain?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/e/2/e2ea5448-2d72-42eb-814c-197153d8e06a.jpg?1562632366", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/2/e2ea5448-2d72-42eb-814c-197153d8e06a.jpg?1562632366", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/e/2/e2ea5448-2d72-42eb-814c-197153d8e06a.jpg?1562632366", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/e/2/e2ea5448-2d72-42eb-814c-197153d8e06a.png?1562632366", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/2/e2ea5448-2d72-42eb-814c-197153d8e06a.jpg?1562632366", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/e/2/e2ea5448-2d72-42eb-814c-197153d8e06a.jpg?1562632366"}, "mana_cost": "{1}{U}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Counter target spell cast from a graveyard.\nDraw a card.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "cd82de1a-36fd-4618-bfe8-b45532a582d9", "set": "jud", "set_name": "Judgment", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/cd82de1a-36fd-4618-bfe8-b45532a582d9", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ajud&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/jud?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/e2ea5448-2d72-42eb-814c-197153d8e06a/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A68f330ca-8279-46c5-900d-a9b443676104&unique=prints", "collector_number": "44", "digital": false, "rarity": "uncommon", "flavor_text": "\"The first time was amusing, but now you're getting tiresome.\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Pete Venters", "artist_ids": ["d54c4a1a-c0c5-4834-84db-125d341f3ad8"], "illustration_id": "76f453f9-6dd0-4b83-9e08-64e960d3f3ec", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 22378, "prices": {"usd": "0.12", "usd_foil": "1.14", "usd_etched": null, "eur": "0.10", "eur_foil": "0.60", "tix": "0.09"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=27145", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Laquatus%27s+Disdain&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Laquatus%27s+Disdain&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Laquatus%27s+Disdain"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/10204?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Laquatus%27s+Disdain&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/17358?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "139d2ece-f656-4cac-8d77-b0f083f76c70", "oracle_id": "33d6a17a-0112-4d4f-a24a-0769360408a8", "multiverse_ids": [50929], "mtgo_id": 20591, "mtgo_foil_id": 20592, "tcgplayer_id": 11724, "cardmarket_id": 440, "name": "Last Word", "lang": "en", "released_at": "2004-02-06", "uri": "https://api.scryfall.com/cards/139d2ece-f656-4cac-8d77-b0f083f76c70", "scryfall_uri": "https://scryfall.com/card/dst/23/last-word?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/1/3/139d2ece-f656-4cac-8d77-b0f083f76c70.jpg?1562635496", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/3/139d2ece-f656-4cac-8d77-b0f083f76c70.jpg?1562635496", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/1/3/139d2ece-f656-4cac-8d77-b0f083f76c70.jpg?1562635496", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/1/3/139d2ece-f656-4cac-8d77-b0f083f76c70.png?1562635496", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/3/139d2ece-f656-4cac-8d77-b0f083f76c70.jpg?1562635496", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/1/3/139d2ece-f656-4cac-8d77-b0f083f76c70.jpg?1562635496"}, "mana_cost": "{2}{U}{U}", "cmc": 4.0, "type_line": "Instant", "oracle_text": "This spell can't be countered.\nCounter target spell.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "e29cb2dd-1345-4032-abfe-e52e8c8ce074", "set": "dst", "set_name": "Darksteel", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/e29cb2dd-1345-4032-abfe-e52e8c8ce074", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Adst&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/dst?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/139d2ece-f656-4cac-8d77-b0f083f76c70/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A33d6a17a-0112-4d4f-a24a-0769360408a8&unique=prints", "collector_number": "23", "digital": false, "rarity": "rare", "flavor_text": "\"Someday, someone will best me. But it won't be today, and it won't be you.\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Scott M. Fischer", "artist_ids": ["23b0cf43-3e43-44c6-8329-96446eca5bce"], "illustration_id": "e0783dda-0521-4ed6-b965-ae74839539e6", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 12209, "penny_rank": 9293, "prices": {"usd": "1.01", "usd_foil": "4.97", "usd_etched": null, "eur": "0.10", "eur_foil": "3.99", "tix": "0.01"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=50929", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Last+Word&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Last+Word&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Last+Word"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/11724?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Last+Word&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/20591?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "0454c2a8-b17d-4cdf-8562-9a28bc6cf0be", "oracle_id": "4d3ac460-79ac-4eef-9446-1b9fe0261556", "multiverse_ids": [193469], "mtgo_id": 36420, "mtgo_foil_id": 36421, "tcgplayer_id": 34768, "cardmarket_id": 22531, "name": "Lay Bare", "lang": "en", "released_at": "2010-04-23", "uri": "https://api.scryfall.com/cards/0454c2a8-b17d-4cdf-8562-9a28bc6cf0be", "scryfall_uri": "https://scryfall.com/card/roe/74/lay-bare?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/0/4/0454c2a8-b17d-4cdf-8562-9a28bc6cf0be.jpg?1562700738", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/4/0454c2a8-b17d-4cdf-8562-9a28bc6cf0be.jpg?1562700738", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/0/4/0454c2a8-b17d-4cdf-8562-9a28bc6cf0be.jpg?1562700738", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/0/4/0454c2a8-b17d-4cdf-8562-9a28bc6cf0be.png?1562700738", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/4/0454c2a8-b17d-4cdf-8562-9a28bc6cf0be.jpg?1562700738", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/0/4/0454c2a8-b17d-4cdf-8562-9a28bc6cf0be.jpg?1562700738"}, "mana_cost": "{2}{U}{U}", "cmc": 4.0, "type_line": "Instant", "oracle_text": "Counter target spell. Look at its controller's hand.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "eadb8a82-ec56-4623-b50e-42e7e60cb535", "set": "roe", "set_name": "Rise of the Eldrazi", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/eadb8a82-ec56-4623-b50e-42e7e60cb535", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aroe&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/roe?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/0454c2a8-b17d-4cdf-8562-9a28bc6cf0be/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A4d3ac460-79ac-4eef-9446-1b9fe0261556&unique=prints", "collector_number": "74", "digital": false, "rarity": "common", "flavor_text": "\"It's good to learn from your failures, but I prefer to learn from the failures of others.\"\n\u2014Jace Beleren", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Chippy", "artist_ids": ["a36f01a0-e51a-48b2-a556-b9b3bc73f969"], "illustration_id": "507aed8b-2c09-4d0a-804d-e6851ec9d727", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 16492, "penny_rank": 987, "prices": {"usd": "0.08", "usd_foil": "0.30", "usd_etched": null, "eur": "0.10", "eur_foil": "0.25", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=193469", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Lay+Bare&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Lay+Bare&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Lay+Bare"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/34768?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Lay+Bare&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/36420?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "12fadf25-0995-440d-a3e6-7964ed86cff6", "oracle_id": "dc9ae094-139f-4f28-9d4e-4d6def765744", "multiverse_ids": [34756], "mtgo_id": 17133, "mtgo_foil_id": 17134, "tcgplayer_id": 9639, "cardmarket_id": 2310, "name": "Liquify", "lang": "en", "released_at": "2002-02-04", "uri": "https://api.scryfall.com/cards/12fadf25-0995-440d-a3e6-7964ed86cff6", "scryfall_uri": "https://scryfall.com/card/tor/41/liquify?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/1/2/12fadf25-0995-440d-a3e6-7964ed86cff6.jpg?1562628664", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/2/12fadf25-0995-440d-a3e6-7964ed86cff6.jpg?1562628664", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/1/2/12fadf25-0995-440d-a3e6-7964ed86cff6.jpg?1562628664", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/1/2/12fadf25-0995-440d-a3e6-7964ed86cff6.png?1562628664", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/2/12fadf25-0995-440d-a3e6-7964ed86cff6.jpg?1562628664", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/1/2/12fadf25-0995-440d-a3e6-7964ed86cff6.jpg?1562628664"}, "mana_cost": "{2}{U}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Counter target spell with mana value 3 or less. If that spell is countered this way, exile it instead of putting it into its owner's graveyard.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "e0b3fda1-a6ca-4996-849b-08b463d39484", "set": "tor", "set_name": "Torment", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/e0b3fda1-a6ca-4996-849b-08b463d39484", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ator&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/tor?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/12fadf25-0995-440d-a3e6-7964ed86cff6/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Adc9ae094-139f-4f28-9d4e-4d6def765744&unique=prints", "collector_number": "41", "digital": false, "rarity": "common", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Ron Spencer", "artist_ids": ["dab52c11-0564-4207-a4a1-c1735c946a65"], "illustration_id": "acbdba15-65e2-4219-b6c7-52f587c3eea1", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 20640, "penny_rank": 2566, "prices": {"usd": "0.09", "usd_foil": "0.64", "usd_etched": null, "eur": "0.05", "eur_foil": "0.50", "tix": "0.05"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=34756", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Liquify&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Liquify&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Liquify"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/9639?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Liquify&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/17133?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "64832674-beb1-446e-b2f7-8a5e271139a5", "oracle_id": "d799a2c4-628a-45da-b9ca-0337c46e3e14", "multiverse_ids": [485379], "mtgo_id": 81339, "arena_id": 71838, "tcgplayer_id": 215611, "cardmarket_id": 470249, "name": "Lofty Denial", "lang": "en", "released_at": "2020-07-03", "uri": "https://api.scryfall.com/cards/64832674-beb1-446e-b2f7-8a5e271139a5", "scryfall_uri": "https://scryfall.com/card/m21/56/lofty-denial?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/6/4/64832674-beb1-446e-b2f7-8a5e271139a5.jpg?1616182218", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/4/64832674-beb1-446e-b2f7-8a5e271139a5.jpg?1616182218", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/6/4/64832674-beb1-446e-b2f7-8a5e271139a5.jpg?1616182218", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/6/4/64832674-beb1-446e-b2f7-8a5e271139a5.png?1616182218", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/4/64832674-beb1-446e-b2f7-8a5e271139a5.jpg?1616182218", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/6/4/64832674-beb1-446e-b2f7-8a5e271139a5.jpg?1616182218"}, "mana_cost": "{1}{U}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Counter target spell unless its controller pays {1}. If you control a creature with flying, counter that spell unless its controller pays {4} instead.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "bc94aba1-7376-4e02-a12d-3a2efb66ab0f", "set": "m21", "set_name": "Core Set 2021", "set_type": "core", "set_uri": "https://api.scryfall.com/sets/bc94aba1-7376-4e02-a12d-3a2efb66ab0f", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Am21&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/m21?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/64832674-beb1-446e-b2f7-8a5e271139a5/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ad799a2c4-628a-45da-b9ca-0337c46e3e14&unique=prints", "collector_number": "56", "digital": false, "rarity": "common", "flavor_text": "The mage scowled as yet another bolt splashed harmlessly against seemingly empty air.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Manuel Casta\u00f1\u00f3n", "artist_ids": ["35f11eeb-36ff-4059-bb70-d1274f5bd858"], "illustration_id": "c426c1c2-e059-4dad-9494-00e81980ebe1", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 4207, "penny_rank": 812, "preview": {"source": "spieletipps", "source_uri": "https://www.spieletipps.de/artikel/10515/1/", "previewed_at": "2020-06-10"}, "prices": {"usd": "0.18", "usd_foil": "1.21", "usd_etched": null, "eur": "0.11", "eur_foil": "0.75", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=485379", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Lofty+Denial&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Lofty+Denial&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Lofty+Denial"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/215611?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Lofty+Denial&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/81339?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "624feb0e-f683-4eb6-a63b-7872d0e28f1f", "oracle_id": "b2da7acb-d80c-414c-9f7d-753a5d6ccad9", "multiverse_ids": [509438], "mtgo_id": 86509, "tcgplayer_id": 233518, "cardmarket_id": 542846, "name": "Logic Knot", "lang": "en", "released_at": "2021-03-19", "uri": "https://api.scryfall.com/cards/624feb0e-f683-4eb6-a63b-7872d0e28f1f", "scryfall_uri": "https://scryfall.com/card/tsr/73/logic-knot?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/6/2/624feb0e-f683-4eb6-a63b-7872d0e28f1f.jpg?1619394325", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/2/624feb0e-f683-4eb6-a63b-7872d0e28f1f.jpg?1619394325", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/6/2/624feb0e-f683-4eb6-a63b-7872d0e28f1f.jpg?1619394325", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/6/2/624feb0e-f683-4eb6-a63b-7872d0e28f1f.png?1619394325", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/2/624feb0e-f683-4eb6-a63b-7872d0e28f1f.jpg?1619394325", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/6/2/624feb0e-f683-4eb6-a63b-7872d0e28f1f.jpg?1619394325"}, "mana_cost": "{X}{U}{U}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Delve (Each card you exile from your graveyard while casting this spell pays for {1}.)\nCounter target spell unless its controller pays {X}.", "colors": ["U"], "color_identity": ["U"], "keywords": ["Delve"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "11e90d1b-0502-43e6-b056-e24836523c13", "set": "tsr", "set_name": "Time Spiral Remastered", "set_type": "masters", "set_uri": "https://api.scryfall.com/sets/11e90d1b-0502-43e6-b056-e24836523c13", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Atsr&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/tsr?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/624feb0e-f683-4eb6-a63b-7872d0e28f1f/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ab2da7acb-d80c-414c-9f7d-753a5d6ccad9&unique=prints", "collector_number": "73", "digital": false, "rarity": "common", "flavor_text": "\"Such sloppy work. Let's unravel it and try again!\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Kev Walker", "artist_ids": ["f366a0ee-a0cd-466d-ba6a-90058c7a31a6"], "illustration_id": "37383a52-ff33-48e6-aa74-90372d727269", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 6430, "penny_rank": 1100, "preview": {"source": "Numerama", "source_uri": "https://www.numerama.com/pop-culture/689124-spirale-temporelle-remastered-3-cartes-exclusives-de-la-prochaine-extension-de-magic.html", "previewed_at": "2021-02-26"}, "prices": {"usd": "0.05", "usd_foil": "0.68", "usd_etched": null, "eur": "0.30", "eur_foil": "0.72", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=509438", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Logic+Knot&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Logic+Knot&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Logic+Knot"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/233518?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Logic+Knot&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/86509?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "4e946be1-4ed6-4e2c-9782-3f630f8a8e1f", "oracle_id": "b2da7acb-d80c-414c-9f7d-753a5d6ccad9", "multiverse_ids": [126151], "mtgo_id": 26616, "mtgo_foil_id": 26617, "tcgplayer_id": 14925, "cardmarket_id": 15044, "name": "Logic Knot", "lang": "en", "released_at": "2007-05-04", "uri": "https://api.scryfall.com/cards/4e946be1-4ed6-4e2c-9782-3f630f8a8e1f", "scryfall_uri": "https://scryfall.com/card/fut/52/logic-knot?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/4/e/4e946be1-4ed6-4e2c-9782-3f630f8a8e1f.jpg?1562910897", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/e/4e946be1-4ed6-4e2c-9782-3f630f8a8e1f.jpg?1562910897", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/4/e/4e946be1-4ed6-4e2c-9782-3f630f8a8e1f.jpg?1562910897", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/4/e/4e946be1-4ed6-4e2c-9782-3f630f8a8e1f.png?1562910897", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/e/4e946be1-4ed6-4e2c-9782-3f630f8a8e1f.jpg?1562910897", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/4/e/4e946be1-4ed6-4e2c-9782-3f630f8a8e1f.jpg?1562910897"}, "mana_cost": "{X}{U}{U}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Delve (Each card you exile from your graveyard while casting this spell pays for {1}.)\nCounter target spell unless its controller pays {X}.", "colors": ["U"], "color_identity": ["U"], "keywords": ["Delve"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "bf951ddb-4445-4923-87cb-3fe4ac3c6b9a", "set": "fut", "set_name": "Future Sight", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/bf951ddb-4445-4923-87cb-3fe4ac3c6b9a", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Afut&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/fut?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/4e946be1-4ed6-4e2c-9782-3f630f8a8e1f/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ab2da7acb-d80c-414c-9f7d-753a5d6ccad9&unique=prints", "collector_number": "52", "digital": false, "rarity": "common", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Glen Angus", "artist_ids": ["7be3b9e4-de9b-4a3d-884e-e67b9681d409"], "illustration_id": "caa89cee-79af-4011-8a96-f4b3b74ea96e", "border_color": "black", "frame": "future", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 6430, "penny_rank": 1100, "prices": {"usd": "0.22", "usd_foil": "6.87", "usd_etched": null, "eur": "0.12", "eur_foil": "4.36", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=126151", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Logic+Knot&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Logic+Knot&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Logic+Knot"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/14925?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Logic+Knot&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/26616?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "f5751a3c-7695-4c47-9cbd-92fd5b1b7ec9", "oracle_id": "e2e44d46-9df4-46f8-acf7-5581b2257620", "multiverse_ids": [435214], "mtgo_id": 65136, "mtgo_foil_id": 65137, "arena_id": 66085, "tcgplayer_id": 145364, "cardmarket_id": 301392, "name": "Lookout's Dispersal", "lang": "en", "released_at": "2017-09-29", "uri": "https://api.scryfall.com/cards/f5751a3c-7695-4c47-9cbd-92fd5b1b7ec9", "scryfall_uri": "https://scryfall.com/card/xln/62/lookouts-dispersal?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/f/5/f5751a3c-7695-4c47-9cbd-92fd5b1b7ec9.jpg?1562566719", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/5/f5751a3c-7695-4c47-9cbd-92fd5b1b7ec9.jpg?1562566719", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/f/5/f5751a3c-7695-4c47-9cbd-92fd5b1b7ec9.jpg?1562566719", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/f/5/f5751a3c-7695-4c47-9cbd-92fd5b1b7ec9.png?1562566719", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/5/f5751a3c-7695-4c47-9cbd-92fd5b1b7ec9.jpg?1562566719", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/f/5/f5751a3c-7695-4c47-9cbd-92fd5b1b7ec9.jpg?1562566719"}, "mana_cost": "{2}{U}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "This spell costs {1} less to cast if you control a Pirate.\nCounter target spell unless its controller pays {4}.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "fe0dad85-54bc-4151-9200-d68da84dd0f2", "set": "xln", "set_name": "Ixalan", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/fe0dad85-54bc-4151-9200-d68da84dd0f2", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Axln&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/xln?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/f5751a3c-7695-4c47-9cbd-92fd5b1b7ec9/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ae2e44d46-9df4-46f8-acf7-5581b2257620&unique=prints", "collector_number": "62", "digital": false, "rarity": "uncommon", "flavor_text": "Her song plucks the strings of the storm, shifting wind and storm into a harmony that will carry her ship to safety.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Ryan Yee", "artist_ids": ["8955dca7-3e37-42b4-83a9-167c78a2178f"], "illustration_id": "d85130fb-ee17-4053-b9de-0ebe26d85b25", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 6911, "penny_rank": 11414, "prices": {"usd": "0.23", "usd_foil": "0.35", "usd_etched": null, "eur": "0.13", "eur_foil": "0.15", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=435214", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Lookout%27s+Dispersal&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Lookout%27s+Dispersal&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Lookout%27s+Dispersal"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/145364?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Lookout%27s+Dispersal&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/65136?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "985bdb0c-ce6c-4506-8163-76f3b2fdf5fb", "oracle_id": "1cea6439-7ae5-4887-8c33-7da9fb36e2d4", "multiverse_ids": [522125], "mtgo_id": 90467, "tcgplayer_id": 240145, "cardmarket_id": 566662, "name": "Lose Focus", "lang": "en", "released_at": "2021-06-18", "uri": "https://api.scryfall.com/cards/985bdb0c-ce6c-4506-8163-76f3b2fdf5fb", "scryfall_uri": "https://scryfall.com/card/mh2/49/lose-focus?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/9/8/985bdb0c-ce6c-4506-8163-76f3b2fdf5fb.jpg?1626094565", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/8/985bdb0c-ce6c-4506-8163-76f3b2fdf5fb.jpg?1626094565", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/9/8/985bdb0c-ce6c-4506-8163-76f3b2fdf5fb.jpg?1626094565", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/9/8/985bdb0c-ce6c-4506-8163-76f3b2fdf5fb.png?1626094565", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/8/985bdb0c-ce6c-4506-8163-76f3b2fdf5fb.jpg?1626094565", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/9/8/985bdb0c-ce6c-4506-8163-76f3b2fdf5fb.jpg?1626094565"}, "mana_cost": "{1}{U}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Replicate {U} (When you cast this spell, copy it for each time you paid its replicate cost. You may choose new targets for the copies.)\nCounter target spell unless its controller pays {2}.", "colors": ["U"], "color_identity": ["U"], "keywords": ["Replicate"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "c1c7eb8c-f205-40ab-a609-767cb296544e", "set": "mh2", "set_name": "Modern Horizons 2", "set_type": "draft_innovation", "set_uri": "https://api.scryfall.com/sets/c1c7eb8c-f205-40ab-a609-767cb296544e", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Amh2&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/mh2?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/985bdb0c-ce6c-4506-8163-76f3b2fdf5fb/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A1cea6439-7ae5-4887-8c33-7da9fb36e2d4&unique=prints", "collector_number": "49", "digital": false, "rarity": "common", "flavor_text": "The spell wavered, caught on the tip of his tongue and at the edge of his awareness.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Martina Fackova", "artist_ids": ["6338124e-8e53-498d-8bf9-93a55db2f61c"], "illustration_id": "817f4da1-8433-4117-8234-a2b42e3de042", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 6717, "penny_rank": 15, "preview": {"source": "Wizards of the Coast", "source_uri": "https://twitter.com/MagicEsports/status/1398366635258355713", "previewed_at": "2021-05-28"}, "prices": {"usd": "0.06", "usd_foil": "0.11", "usd_etched": null, "eur": "0.05", "eur_foil": "0.20", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=522125", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Lose+Focus&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Lose+Focus&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Lose+Focus"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/240145?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Lose+Focus&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/90467?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "1e5fc39d-590a-436b-ab90-a1741d2ae3da", "oracle_id": "98014ad2-7a2b-45f5-808c-edd4d0b2c597", "multiverse_ids": [241982], "mtgo_id": 42658, "mtgo_foil_id": 42659, "tcgplayer_id": 56253, "cardmarket_id": 250696, "name": "Lost in the Mist", "lang": "en", "released_at": "2011-09-30", "uri": "https://api.scryfall.com/cards/1e5fc39d-590a-436b-ab90-a1741d2ae3da", "scryfall_uri": "https://scryfall.com/card/isd/63/lost-in-the-mist?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/1/e/1e5fc39d-590a-436b-ab90-a1741d2ae3da.jpg?1562827161", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/e/1e5fc39d-590a-436b-ab90-a1741d2ae3da.jpg?1562827161", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/1/e/1e5fc39d-590a-436b-ab90-a1741d2ae3da.jpg?1562827161", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/1/e/1e5fc39d-590a-436b-ab90-a1741d2ae3da.png?1562827161", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/e/1e5fc39d-590a-436b-ab90-a1741d2ae3da.jpg?1562827161", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/1/e/1e5fc39d-590a-436b-ab90-a1741d2ae3da.jpg?1562827161"}, "mana_cost": "{3}{U}{U}", "cmc": 5.0, "type_line": "Instant", "oracle_text": "Counter target spell. Return target permanent to its owner's hand.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "d1026945-2969-42b9-be53-f941405a58cb", "set": "isd", "set_name": "Innistrad", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/d1026945-2969-42b9-be53-f941405a58cb", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aisd&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/isd?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/1e5fc39d-590a-436b-ab90-a1741d2ae3da/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A98014ad2-7a2b-45f5-808c-edd4d0b2c597&unique=prints", "collector_number": "63", "digital": false, "rarity": "common", "flavor_text": "The secrets she carried could have saved many lives, but they quietly drowned with her.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "David Palumbo", "artist_ids": ["04ce1c75-e30c-4b7a-8cb0-b53e4ecc2f39"], "illustration_id": "7e401eae-5a84-40dd-9fdb-37e8ec84376c", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 16615, "penny_rank": 12471, "prices": {"usd": "0.07", "usd_foil": "0.26", "usd_etched": null, "eur": "0.05", "eur_foil": "0.20", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=241982", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Lost+in+the+Mist&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Lost+in+the+Mist&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Lost+in+the+Mist"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/56253?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Lost+in+the+Mist&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/42658?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "c516861c-68d9-4d02-a343-689dba0526c6", "oracle_id": "b0a6bf69-7e21-4d5c-ac72-5946d84fc2ca", "multiverse_ids": [23102], "mtgo_id": 14467, "mtgo_foil_id": 14468, "tcgplayer_id": 7550, "cardmarket_id": 3546, "name": "Mages' Contest", "lang": "en", "released_at": "2000-10-02", "uri": "https://api.scryfall.com/cards/c516861c-68d9-4d02-a343-689dba0526c6", "scryfall_uri": "https://scryfall.com/card/inv/154/mages-contest?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/c/5/c516861c-68d9-4d02-a343-689dba0526c6.jpg?1562934507", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/5/c516861c-68d9-4d02-a343-689dba0526c6.jpg?1562934507", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/c/5/c516861c-68d9-4d02-a343-689dba0526c6.jpg?1562934507", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/c/5/c516861c-68d9-4d02-a343-689dba0526c6.png?1562934507", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/5/c516861c-68d9-4d02-a343-689dba0526c6.jpg?1562934507", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/c/5/c516861c-68d9-4d02-a343-689dba0526c6.jpg?1562934507"}, "mana_cost": "{1}{R}{R}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "You and target spell's controller bid life. You start the bidding with a bid of 1. In turn order, each player may top the high bid. The bidding ends if the high bid stands. The high bidder loses life equal to the high bid. If you win the bidding, counter that spell.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "b9ae5e02-7726-47ca-b5e4-5ec402b41cd1", "set": "inv", "set_name": "Invasion", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/b9ae5e02-7726-47ca-b5e4-5ec402b41cd1", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ainv&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/inv?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/c516861c-68d9-4d02-a343-689dba0526c6/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ab0a6bf69-7e21-4d5c-ac72-5946d84fc2ca&unique=prints", "collector_number": "154", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Bradley Williams", "artist_ids": ["24d81dfa-3745-4386-93f8-7e67dddb3c8a"], "illustration_id": "a3842318-4464-4af1-b68a-0fed6045f200", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 9075, "prices": {"usd": "3.09", "usd_foil": "22.35", "usd_etched": null, "eur": "0.50", "eur_foil": "24.94", "tix": "0.11"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=23102", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Mages%27+Contest&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Mages%27+Contest&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Mages%27+Contest"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/7550?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Mages%27+Contest&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/14467?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "3f2d6a21-ea77-484b-9e3a-1bd49806f907", "oracle_id": "5f12f665-f083-48ae-b61a-541051c996ec", "multiverse_ids": [555250], "mtgo_id": 98317, "arena_id": 80200, "tcgplayer_id": 268455, "cardmarket_id": 651627, "name": "Make Disappear", "lang": "en", "released_at": "2022-04-29", "uri": "https://api.scryfall.com/cards/3f2d6a21-ea77-484b-9e3a-1bd49806f907", "scryfall_uri": "https://scryfall.com/card/snc/49/make-disappear?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/3/f/3f2d6a21-ea77-484b-9e3a-1bd49806f907.jpg?1649471769", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/f/3f2d6a21-ea77-484b-9e3a-1bd49806f907.jpg?1649471769", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/3/f/3f2d6a21-ea77-484b-9e3a-1bd49806f907.jpg?1649471769", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/3/f/3f2d6a21-ea77-484b-9e3a-1bd49806f907.png?1649471769", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/f/3f2d6a21-ea77-484b-9e3a-1bd49806f907.jpg?1649471769", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/3/f/3f2d6a21-ea77-484b-9e3a-1bd49806f907.jpg?1649471769"}, "mana_cost": "{1}{U}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Casualty 1 (As you cast this spell, you may sacrifice a creature with power 1 or greater. When you do, copy this spell and you may choose a new target for the copy.)\nCounter target spell unless its controller pays {2}.", "colors": ["U"], "color_identity": ["U"], "keywords": ["Casualty"], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo", "arena"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "df837242-8c15-42e4-b049-c933a02dc501", "set": "snc", "set_name": "Streets of New Capenna", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/df837242-8c15-42e4-b049-c933a02dc501", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Asnc&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/snc?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/3f2d6a21-ea77-484b-9e3a-1bd49806f907/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A5f12f665-f083-48ae-b61a-541051c996ec&unique=prints", "collector_number": "49", "digital": false, "rarity": "common", "watermark": "maestros", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Inka Schulz", "artist_ids": ["3f93408e-c510-42a5-beef-9ddbc56d9056"], "illustration_id": "c35ca814-c316-4175-bdad-fafeb0ffc389", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 11525, "penny_rank": 3853, "preview": {"source": "Wizards of the Coast", "source_uri": "https://www.youtube.com/watch?v=503zQMW2BCA", "previewed_at": "2022-04-08"}, "prices": {"usd": "0.06", "usd_foil": "0.20", "usd_etched": null, "eur": "0.11", "eur_foil": "0.10", "tix": "0.01"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=555250", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Make+Disappear&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Make+Disappear&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Make+Disappear"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/268455?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Make+Disappear&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/98317?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "416d2d51-8f29-4e95-b037-e8c32b081e6c", "oracle_id": "74d3277a-38e5-4732-afed-084a56148f20", "multiverse_ids": [438631], "mtgo_id": 66009, "mtgo_foil_id": 66010, "tcgplayer_id": 145275, "cardmarket_id": 301446, "name": "Mana Drain", "lang": "en", "released_at": "2017-11-17", "uri": "https://api.scryfall.com/cards/416d2d51-8f29-4e95-b037-e8c32b081e6c", "scryfall_uri": "https://scryfall.com/card/ima/65/mana-drain?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/4/1/416d2d51-8f29-4e95-b037-e8c32b081e6c.jpg?1562848002", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/1/416d2d51-8f29-4e95-b037-e8c32b081e6c.jpg?1562848002", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/4/1/416d2d51-8f29-4e95-b037-e8c32b081e6c.jpg?1562848002", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/4/1/416d2d51-8f29-4e95-b037-e8c32b081e6c.png?1562848002", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/1/416d2d51-8f29-4e95-b037-e8c32b081e6c.jpg?1562848002", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/4/1/416d2d51-8f29-4e95-b037-e8c32b081e6c.jpg?1562848002"}, "mana_cost": "{U}{U}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Counter target spell. At the beginning of your next main phase, add an amount of {C} equal to that spell's mana value.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "produced_mana": ["C"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "banned", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "banned", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "741bcd30-7709-4133-8919-f4b46483bed7", "set": "ima", "set_name": "Iconic Masters", "set_type": "masters", "set_uri": "https://api.scryfall.com/sets/741bcd30-7709-4133-8919-f4b46483bed7", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aima&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ima?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/416d2d51-8f29-4e95-b037-e8c32b081e6c/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A74d3277a-38e5-4732-afed-084a56148f20&unique=prints", "collector_number": "65", "digital": false, "rarity": "mythic", "flavor_text": "Enthusiasm is no match for preparation.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Raymond Swanland", "artist_ids": ["e956bacc-077d-4c12-b6bc-ba798b718af9"], "illustration_id": "ee852820-be35-4eed-96fc-a4d821f21b73", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 106, "prices": {"usd": "43.33", "usd_foil": "58.79", "usd_etched": null, "eur": "24.95", "eur_foil": "94.98", "tix": "3.16"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=438631", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Mana+Drain&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Mana+Drain&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Mana+Drain"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/145275?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Mana+Drain&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/66009?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "cc9a04dc-afee-4194-80f5-fb1d9c906de7", "oracle_id": "74d3277a-38e5-4732-afed-084a56148f20", "multiverse_ids": [383006], "mtgo_id": 53157, "mtgo_foil_id": 53158, "name": "Mana Drain", "lang": "en", "released_at": "2014-06-16", "uri": "https://api.scryfall.com/cards/cc9a04dc-afee-4194-80f5-fb1d9c906de7", "scryfall_uri": "https://scryfall.com/card/vma/78/mana-drain?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/c/c/cc9a04dc-afee-4194-80f5-fb1d9c906de7.jpg?1562936126", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/c/cc9a04dc-afee-4194-80f5-fb1d9c906de7.jpg?1562936126", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/c/c/cc9a04dc-afee-4194-80f5-fb1d9c906de7.jpg?1562936126", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/c/c/cc9a04dc-afee-4194-80f5-fb1d9c906de7.png?1562936126", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/c/cc9a04dc-afee-4194-80f5-fb1d9c906de7.jpg?1562936126", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/c/c/cc9a04dc-afee-4194-80f5-fb1d9c906de7.jpg?1562936126"}, "mana_cost": "{U}{U}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Counter target spell. At the beginning of your next main phase, add an amount of {C} equal to that spell's mana value.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "produced_mana": ["C"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "banned", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "banned", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "a944551a-73fa-41cd-9159-e8d0e4674403", "set": "vma", "set_name": "Vintage Masters", "set_type": "masters", "set_uri": "https://api.scryfall.com/sets/a944551a-73fa-41cd-9159-e8d0e4674403", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Avma&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/vma?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/cc9a04dc-afee-4194-80f5-fb1d9c906de7/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A74d3277a-38e5-4732-afed-084a56148f20&unique=prints", "collector_number": "78", "digital": true, "rarity": "mythic", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Mike Bierek", "artist_ids": ["e5f52ef5-1a2e-4128-90b0-ccc71cd47ea7"], "illustration_id": "ca175dbc-35ca-40fe-a90c-cfe215a6f400", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 106, "prices": {"usd": null, "usd_foil": null, "usd_etched": null, "eur": null, "eur_foil": null, "tix": "1.19"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=383006", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Mana+Drain&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Mana+Drain&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Mana+Drain"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/search/magic/product?productLineName=magic&q=Mana+Drain&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall&view=grid", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Mana+Drain&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/53157?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "e691adef-3027-4e6a-889f-9f4e2df36a7c", "oracle_id": "74d3277a-38e5-4732-afed-084a56148f20", "multiverse_ids": [1491], "tcgplayer_id": 3951, "cardmarket_id": 7036, "name": "Mana Drain", "lang": "en", "released_at": "1994-06-01", "uri": "https://api.scryfall.com/cards/e691adef-3027-4e6a-889f-9f4e2df36a7c", "scryfall_uri": "https://scryfall.com/card/leg/65/mana-drain?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/e/6/e691adef-3027-4e6a-889f-9f4e2df36a7c.jpg?1562861377", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/6/e691adef-3027-4e6a-889f-9f4e2df36a7c.jpg?1562861377", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/e/6/e691adef-3027-4e6a-889f-9f4e2df36a7c.jpg?1562861377", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/e/6/e691adef-3027-4e6a-889f-9f4e2df36a7c.png?1562861377", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/6/e691adef-3027-4e6a-889f-9f4e2df36a7c.jpg?1562861377", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/e/6/e691adef-3027-4e6a-889f-9f4e2df36a7c.jpg?1562861377"}, "mana_cost": "{U}{U}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Counter target spell. At the beginning of your next main phase, add an amount of {C} equal to that spell's mana value.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "produced_mana": ["C"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "banned", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "banned", "oldschool": "restricted", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "78c50b4b-b220-455b-a2d5-cee458fa56f3", "set": "leg", "set_name": "Legends", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/78c50b4b-b220-455b-a2d5-cee458fa56f3", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aleg&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/leg?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/e691adef-3027-4e6a-889f-9f4e2df36a7c/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A74d3277a-38e5-4732-afed-084a56148f20&unique=prints", "collector_number": "65", "digital": false, "rarity": "uncommon", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Mark Tedin", "artist_ids": ["9ee9a9cc-c09e-486f-918b-69f80cbc4188"], "illustration_id": "046da52f-b396-42f4-955b-4729c7b669c8", "border_color": "black", "frame": "1993", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 106, "prices": {"usd": "332.09", "usd_foil": null, "usd_etched": null, "eur": "182.99", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=1491", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Mana+Drain&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Mana+Drain&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Mana+Drain"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/3951?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Mana+Drain&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Mana+Drain&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "456a2f03-8304-4512-804c-76653e30f436", "oracle_id": "74d3277a-38e5-4732-afed-084a56148f20", "multiverse_ids": [573010], "tcgplayer_id": 276717, "cardmarket_id": 664918, "name": "Mana Drain", "lang": "en", "released_at": "2022-07-08", "uri": "https://api.scryfall.com/cards/456a2f03-8304-4512-804c-76653e30f436", "scryfall_uri": "https://scryfall.com/card/2x2/348/mana-drain?utm_source=api", "layout": "normal", "highres_image": false, "image_status": "lowres", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/4/5/456a2f03-8304-4512-804c-76653e30f436.jpg?1655827521", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/5/456a2f03-8304-4512-804c-76653e30f436.jpg?1655827521", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/4/5/456a2f03-8304-4512-804c-76653e30f436.jpg?1655827521", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/4/5/456a2f03-8304-4512-804c-76653e30f436.png?1655827521", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/5/456a2f03-8304-4512-804c-76653e30f436.jpg?1655827521", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/4/5/456a2f03-8304-4512-804c-76653e30f436.jpg?1655827521"}, "mana_cost": "{U}{U}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Counter target spell. At the beginning of your next main phase, add an amount of {C} equal to that spell's mana value.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "produced_mana": ["C"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "banned", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "banned", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "5a645837-b050-449f-ac90-1e7ccbf45031", "set": "2x2", "set_name": "Double Masters 2022", "set_type": "masters", "set_uri": "https://api.scryfall.com/sets/5a645837-b050-449f-ac90-1e7ccbf45031", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3A2x2&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/2x2?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/456a2f03-8304-4512-804c-76653e30f436/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A74d3277a-38e5-4732-afed-084a56148f20&unique=prints", "collector_number": "348", "digital": false, "rarity": "mythic", "flavor_text": "\"I suppose you've never heard of conservation of energy.\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Chuck Lukacs", "artist_ids": ["2bdf4da7-c66c-4c46-a253-284c856ccfab"], "illustration_id": "a2dd5489-1aaf-44fa-8444-d293d30e1bc6", "border_color": "borderless", "frame": "2015", "frame_effects": ["inverted"], "security_stamp": "oval", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "promo_types": ["boosterfun"], "edhrec_rank": 106, "preview": {"source": "CovertGoBlue", "source_uri": "https://twitter.com/covertgoblue/status/1539331265064730624", "previewed_at": "2022-06-21"}, "prices": {"usd": "52.92", "usd_foil": "91.77", "usd_etched": null, "eur": "53.98", "eur_foil": "85.89", "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=573010", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Mana+Drain&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Mana+Drain&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Mana+Drain"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/276717?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Mana+Drain&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Mana+Drain&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "a7c7757d-8036-4b33-a1cb-07795d392588", "oracle_id": "c61fe162-2202-4e56-9ba0-393547f9875f", "multiverse_ids": [204981], "mtgo_id": 37324, "mtgo_foil_id": 37325, "tcgplayer_id": 35510, "cardmarket_id": 241931, "name": "Mana Leak", "lang": "en", "released_at": "2010-07-16", "uri": "https://api.scryfall.com/cards/a7c7757d-8036-4b33-a1cb-07795d392588", "scryfall_uri": "https://scryfall.com/card/m11/62/mana-leak?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/a/7/a7c7757d-8036-4b33-a1cb-07795d392588.jpg?1562470857", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/7/a7c7757d-8036-4b33-a1cb-07795d392588.jpg?1562470857", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/a/7/a7c7757d-8036-4b33-a1cb-07795d392588.jpg?1562470857", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/a/7/a7c7757d-8036-4b33-a1cb-07795d392588.png?1562470857", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/7/a7c7757d-8036-4b33-a1cb-07795d392588.jpg?1562470857", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/a/7/a7c7757d-8036-4b33-a1cb-07795d392588.jpg?1562470857"}, "mana_cost": "{1}{U}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Counter target spell unless its controller pays {3}.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "485d2468-18c8-42a4-9482-ca1c51e0470e", "set": "m11", "set_name": "Magic 2011", "set_type": "core", "set_uri": "https://api.scryfall.com/sets/485d2468-18c8-42a4-9482-ca1c51e0470e", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Am11&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/m11?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/a7c7757d-8036-4b33-a1cb-07795d392588/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ac61fe162-2202-4e56-9ba0-393547f9875f&unique=prints", "collector_number": "62", "digital": false, "rarity": "common", "flavor_text": "The fatal flaw in every plan is the assumption that you know more than your enemy.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Howard Lyon", "artist_ids": ["6dd06426-59fe-4b9c-aad5-6da8446a5c3d"], "illustration_id": "586c8890-cec9-481d-bdc0-4538b8946917", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 1296, "penny_rank": 22, "prices": {"usd": "0.23", "usd_foil": "2.62", "usd_etched": null, "eur": "0.02", "eur_foil": "0.86", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=204981", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Mana+Leak&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Mana+Leak&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Mana+Leak"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/35510?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Mana+Leak&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/37324?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "abcaf16d-aa02-43e2-aa38-bb1835d47a05", "oracle_id": "c61fe162-2202-4e56-9ba0-393547f9875f", "multiverse_ids": [5182], "mtgo_id": 10307, "mtgo_foil_id": 10308, "tcgplayer_id": 5369, "cardmarket_id": 9121, "name": "Mana Leak", "lang": "en", "released_at": "1998-03-02", "uri": "https://api.scryfall.com/cards/abcaf16d-aa02-43e2-aa38-bb1835d47a05", "scryfall_uri": "https://scryfall.com/card/sth/36/mana-leak?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/a/b/abcaf16d-aa02-43e2-aa38-bb1835d47a05.jpg?1562597349", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/b/abcaf16d-aa02-43e2-aa38-bb1835d47a05.jpg?1562597349", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/a/b/abcaf16d-aa02-43e2-aa38-bb1835d47a05.jpg?1562597349", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/a/b/abcaf16d-aa02-43e2-aa38-bb1835d47a05.png?1562597349", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/b/abcaf16d-aa02-43e2-aa38-bb1835d47a05.jpg?1562597349", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/a/b/abcaf16d-aa02-43e2-aa38-bb1835d47a05.jpg?1562597349"}, "mana_cost": "{1}{U}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Counter target spell unless its controller pays {3}.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "5c83396a-d386-4367-926b-571a75b086a3", "set": "sth", "set_name": "Stronghold", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/5c83396a-d386-4367-926b-571a75b086a3", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Asth&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/sth?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/abcaf16d-aa02-43e2-aa38-bb1835d47a05/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ac61fe162-2202-4e56-9ba0-393547f9875f&unique=prints", "collector_number": "36", "digital": false, "rarity": "common", "flavor_text": "\"The fatal flaw in every plan is the assumption that you know more than your enemy.\"\n\u2014Volrath", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Christopher Rush", "artist_ids": ["c96773f0-346c-4f7d-9271-2d98cc5d86e1"], "illustration_id": "a13e40b6-284c-4f88-aca1-10a1c46a138d", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 1296, "penny_rank": 22, "prices": {"usd": "0.24", "usd_foil": null, "usd_etched": null, "eur": "0.35", "eur_foil": null, "tix": "0.05"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=5182", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Mana+Leak&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Mana+Leak&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Mana+Leak"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/5369?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Mana+Leak&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/10307?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "dea41eb7-5828-4735-bca1-0dbb0fda04e3", "oracle_id": "c61fe162-2202-4e56-9ba0-393547f9875f", "multiverse_ids": [], "tcgplayer_id": 38319, "cardmarket_id": 17572, "name": "Mana Leak", "lang": "en", "released_at": "2005-01-01", "uri": "https://api.scryfall.com/cards/dea41eb7-5828-4735-bca1-0dbb0fda04e3", "scryfall_uri": "https://scryfall.com/card/p05/5/mana-leak?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/d/e/dea41eb7-5828-4735-bca1-0dbb0fda04e3.jpg?1561758236", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/e/dea41eb7-5828-4735-bca1-0dbb0fda04e3.jpg?1561758236", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/d/e/dea41eb7-5828-4735-bca1-0dbb0fda04e3.jpg?1561758236", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/d/e/dea41eb7-5828-4735-bca1-0dbb0fda04e3.png?1561758236", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/e/dea41eb7-5828-4735-bca1-0dbb0fda04e3.jpg?1561758236", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/d/e/dea41eb7-5828-4735-bca1-0dbb0fda04e3.jpg?1561758236"}, "mana_cost": "{1}{U}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Counter target spell unless its controller pays {3}.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": true, "reprint": true, "variation": false, "set_id": "e7f182b7-cd28-46de-bce8-223e83a78ae0", "set": "p05", "set_name": "Magic Player Rewards 2005", "set_type": "promo", "set_uri": "https://api.scryfall.com/sets/e7f182b7-cd28-46de-bce8-223e83a78ae0", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ap05&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/p05?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/dea41eb7-5828-4735-bca1-0dbb0fda04e3/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ac61fe162-2202-4e56-9ba0-393547f9875f&unique=prints", "collector_number": "5", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Christopher Rush", "artist_ids": ["c96773f0-346c-4f7d-9271-2d98cc5d86e1"], "illustration_id": "8efda6a2-25d1-4ad6-aa4c-9da0770335c2", "border_color": "black", "frame": "2003", "full_art": true, "textless": true, "booster": false, "story_spotlight": false, "promo_types": ["playerrewards"], "edhrec_rank": 1296, "penny_rank": 22, "prices": {"usd": "9.88", "usd_foil": null, "usd_etched": null, "eur": "4.00", "eur_foil": null, "tix": null}, "related_uris": {"tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Mana+Leak&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Mana+Leak&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Mana+Leak"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/38319?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Mana+Leak&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Mana+Leak&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "7d48d622-f397-4f31-b1a5-0c23f60aa71c", "oracle_id": "948217ac-289e-455f-8c7c-519aa75fa345", "multiverse_ids": [122324], "mtgo_id": 26511, "mtgo_foil_id": 26512, "tcgplayer_id": 14757, "cardmarket_id": 14204, "name": "Mana Tithe", "lang": "en", "released_at": "2007-02-02", "uri": "https://api.scryfall.com/cards/7d48d622-f397-4f31-b1a5-0c23f60aa71c", "scryfall_uri": "https://scryfall.com/card/plc/25/mana-tithe?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/7/d/7d48d622-f397-4f31-b1a5-0c23f60aa71c.jpg?1562575298", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/d/7d48d622-f397-4f31-b1a5-0c23f60aa71c.jpg?1562575298", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/7/d/7d48d622-f397-4f31-b1a5-0c23f60aa71c.jpg?1562575298", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/7/d/7d48d622-f397-4f31-b1a5-0c23f60aa71c.png?1562575298", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/d/7d48d622-f397-4f31-b1a5-0c23f60aa71c.jpg?1562575298", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/7/d/7d48d622-f397-4f31-b1a5-0c23f60aa71c.jpg?1562575298"}, "mana_cost": "{W}", "cmc": 1.0, "type_line": "Instant", "oracle_text": "Counter target spell unless its controller pays {1}.", "colors": ["W"], "color_identity": ["W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "5a1b571c-73e9-4c14-b9d4-a62507d85789", "set": "plc", "set_name": "Planar Chaos", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/5a1b571c-73e9-4c14-b9d4-a62507d85789", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aplc&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/plc?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/7d48d622-f397-4f31-b1a5-0c23f60aa71c/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A948217ac-289e-455f-8c7c-519aa75fa345&unique=prints", "collector_number": "25", "digital": false, "rarity": "common", "flavor_text": "\"Those who seek to upset the balance must be taxed for such ambitions.\"\n\u2014Verithain, mesa high priest", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Martina Pilcerova", "artist_ids": ["30fead7c-da53-4c1b-b514-4be6e5ce487c"], "illustration_id": "cd5398d3-5a81-4819-9acd-a478fd8c0870", "border_color": "black", "frame": "2003", "frame_effects": ["colorshifted"], "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 1615, "penny_rank": 573, "prices": {"usd": "0.47", "usd_foil": "22.30", "usd_etched": null, "eur": "0.22", "eur_foil": "9.95", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=122324", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Mana+Tithe&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Mana+Tithe&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Mana+Tithe"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/14757?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Mana+Tithe&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/26511?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "e7f32354-893d-4f0b-b555-e0757fb5443b", "oracle_id": "948217ac-289e-455f-8c7c-519aa75fa345", "multiverse_ids": [517558], "mtgo_id": 89073, "arena_id": 77487, "tcgplayer_id": 235606, "tcgplayer_etched_id": 235608, "cardmarket_id": 556532, "name": "Mana Tithe", "lang": "en", "released_at": "2021-04-23", "uri": "https://api.scryfall.com/cards/e7f32354-893d-4f0b-b555-e0757fb5443b", "scryfall_uri": "https://scryfall.com/card/sta/8/mana-tithe?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/e/7/e7f32354-893d-4f0b-b555-e0757fb5443b.jpg?1623592291", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/7/e7f32354-893d-4f0b-b555-e0757fb5443b.jpg?1623592291", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/e/7/e7f32354-893d-4f0b-b555-e0757fb5443b.jpg?1623592291", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/e/7/e7f32354-893d-4f0b-b555-e0757fb5443b.png?1623592291", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/7/e7f32354-893d-4f0b-b555-e0757fb5443b.jpg?1623592291", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/e/7/e7f32354-893d-4f0b-b555-e0757fb5443b.jpg?1623592291"}, "mana_cost": "{W}", "cmc": 1.0, "type_line": "Instant", "oracle_text": "Counter target spell unless its controller pays {1}.", "colors": ["W"], "color_identity": ["W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil", "etched"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "5064a720-907f-4cb6-a425-766dc1dd7374", "set": "sta", "set_name": "Strixhaven Mystical Archive", "set_type": "masterpiece", "set_uri": "https://api.scryfall.com/sets/5064a720-907f-4cb6-a425-766dc1dd7374", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Asta&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/sta?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/e7f32354-893d-4f0b-b555-e0757fb5443b/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A948217ac-289e-455f-8c7c-519aa75fa345&unique=prints", "collector_number": "8", "digital": false, "rarity": "rare", "flavor_text": "\"The tyrant's bellow of rage trailed off into a whimper as the last of his fortune escaped his grasp.\"\n\u2014*The Dethroner's Grimoire*", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Robbie Trevino", "artist_ids": ["34f236c4-d646-4e48-9723-9df5f507754d"], "illustration_id": "5d56af61-3e0e-40a2-b285-094eb197dc43", "border_color": "borderless", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "promo_types": ["boosterfun"], "edhrec_rank": 1615, "penny_rank": 573, "preview": {"source": "cafe.daum.net", "source_uri": "https://cafe.daum.net/magin/9Uu6/5237", "previewed_at": "2021-03-26"}, "prices": {"usd": "0.63", "usd_foil": "0.99", "usd_etched": "1.59", "eur": "0.43", "eur_foil": "1.45", "tix": "0.26"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=517558", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Mana+Tithe&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Mana+Tithe&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Mana+Tithe"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/235606?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Mana+Tithe&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/89073?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "652b0ce3-293d-4599-8a04-9df01b9bc678", "oracle_id": "948217ac-289e-455f-8c7c-519aa75fa345", "multiverse_ids": [], "tcgplayer_id": 38320, "cardmarket_id": 19010, "name": "Mana Tithe", "lang": "en", "released_at": "2008-01-01", "uri": "https://api.scryfall.com/cards/652b0ce3-293d-4599-8a04-9df01b9bc678", "scryfall_uri": "https://scryfall.com/card/p08/4/mana-tithe?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/6/5/652b0ce3-293d-4599-8a04-9df01b9bc678.jpg?1561757305", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/5/652b0ce3-293d-4599-8a04-9df01b9bc678.jpg?1561757305", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/6/5/652b0ce3-293d-4599-8a04-9df01b9bc678.jpg?1561757305", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/6/5/652b0ce3-293d-4599-8a04-9df01b9bc678.png?1561757305", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/5/652b0ce3-293d-4599-8a04-9df01b9bc678.jpg?1561757305", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/6/5/652b0ce3-293d-4599-8a04-9df01b9bc678.jpg?1561757305"}, "mana_cost": "{W}", "cmc": 1.0, "type_line": "Instant", "oracle_text": "Counter target spell unless its controller pays {1}.", "colors": ["W"], "color_identity": ["W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": true, "reprint": true, "variation": false, "set_id": "6c1d0a31-b5d2-421d-95f4-5816382f764f", "set": "p08", "set_name": "Magic Player Rewards 2008", "set_type": "promo", "set_uri": "https://api.scryfall.com/sets/6c1d0a31-b5d2-421d-95f4-5816382f764f", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ap08&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/p08?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/652b0ce3-293d-4599-8a04-9df01b9bc678/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A948217ac-289e-455f-8c7c-519aa75fa345&unique=prints", "collector_number": "4", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Donato Giancola", "artist_ids": ["90332db2-aecb-4d79-917b-95cbeb8d0cb6"], "illustration_id": "f037af1a-2c5a-4a78-bfb2-5e41d91b1b20", "border_color": "black", "frame": "2003", "full_art": true, "textless": true, "booster": false, "story_spotlight": false, "promo_types": ["playerrewards"], "edhrec_rank": 1615, "penny_rank": 573, "prices": {"usd": "8.59", "usd_foil": null, "usd_etched": null, "eur": "2.00", "eur_foil": null, "tix": null}, "related_uris": {"tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Mana+Tithe&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Mana+Tithe&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Mana+Tithe"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/38320?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Mana+Tithe&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Mana+Tithe&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "aadc1809-d6bb-455c-b6ce-dd11521808b6", "oracle_id": "1a61929e-14bd-4f21-b173-00818d49743d", "multiverse_ids": [476305], "mtgo_id": 79232, "arena_id": 70565, "tcgplayer_id": 206207, "cardmarket_id": 429281, "name": "Memory Drain", "lang": "en", "released_at": "2020-01-24", "uri": "https://api.scryfall.com/cards/aadc1809-d6bb-455c-b6ce-dd11521808b6", "scryfall_uri": "https://scryfall.com/card/thb/54/memory-drain?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/a/a/aadc1809-d6bb-455c-b6ce-dd11521808b6.jpg?1581479403", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/a/aadc1809-d6bb-455c-b6ce-dd11521808b6.jpg?1581479403", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/a/a/aadc1809-d6bb-455c-b6ce-dd11521808b6.jpg?1581479403", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/a/a/aadc1809-d6bb-455c-b6ce-dd11521808b6.png?1581479403", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/a/aadc1809-d6bb-455c-b6ce-dd11521808b6.jpg?1581479403", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/a/a/aadc1809-d6bb-455c-b6ce-dd11521808b6.jpg?1581479403"}, "mana_cost": "{2}{U}{U}", "cmc": 4.0, "type_line": "Instant", "oracle_text": "Counter target spell. Scry 2.", "colors": ["U"], "color_identity": ["U"], "keywords": ["Scry"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "5f23a78d-cda1-462a-8be3-a62b40c34913", "set": "thb", "set_name": "Theros Beyond Death", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/5f23a78d-cda1-462a-8be3-a62b40c34913", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Athb&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/thb?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/aadc1809-d6bb-455c-b6ce-dd11521808b6/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A1a61929e-14bd-4f21-b173-00818d49743d&unique=prints", "collector_number": "54", "digital": false, "rarity": "common", "flavor_text": "Alythos sat and stared blankly out over the glassy oceans of Nerono, trying in vain to remember what he knew he had forgotten.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "PINDURSKI", "artist_ids": ["f333a7f0-7330-40e9-8c58-667eea2f0f60"], "illustration_id": "6a991ecb-b3f6-4c70-a819-88bbf545ec6a", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 8687, "penny_rank": 8574, "preview": {"source": "Wizards of the Coast", "source_uri": "https://magic.wizards.com/en/articles/archive/card-image-gallery/theros-beyond-death", "previewed_at": "2019-12-12"}, "prices": {"usd": "0.02", "usd_foil": "0.04", "usd_etched": null, "eur": "0.01", "eur_foil": "0.10", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=476305", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Memory+Drain&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Memory+Drain&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Memory+Drain"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/206207?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Memory+Drain&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/79232?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "30202613-d05f-4f47-af97-d0b75ccac293", "oracle_id": "bbfb3e4a-b389-4391-8141-13b68c0ef2e0", "multiverse_ids": [413602], "mtgo_id": 60923, "mtgo_foil_id": 60924, "tcgplayer_id": 118731, "cardmarket_id": 290363, "name": "Memory Lapse", "lang": "en", "released_at": "2016-06-10", "uri": "https://api.scryfall.com/cards/30202613-d05f-4f47-af97-d0b75ccac293", "scryfall_uri": "https://scryfall.com/card/ema/60/memory-lapse?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/3/0/30202613-d05f-4f47-af97-d0b75ccac293.jpg?1634131658", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/0/30202613-d05f-4f47-af97-d0b75ccac293.jpg?1634131658", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/3/0/30202613-d05f-4f47-af97-d0b75ccac293.jpg?1634131658", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/3/0/30202613-d05f-4f47-af97-d0b75ccac293.png?1634131658", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/0/30202613-d05f-4f47-af97-d0b75ccac293.jpg?1634131658", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/3/0/30202613-d05f-4f47-af97-d0b75ccac293.jpg?1634131658"}, "mana_cost": "{1}{U}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Counter target spell. If that spell is countered this way, put it on top of its owner's library instead of into that player's graveyard.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "banned", "gladiator": "legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "1f29f022-3ace-4c96-85e8-1f7b63aadf7e", "set": "ema", "set_name": "Eternal Masters", "set_type": "masters", "set_uri": "https://api.scryfall.com/sets/1f29f022-3ace-4c96-85e8-1f7b63aadf7e", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aema&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ema?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/30202613-d05f-4f47-af97-d0b75ccac293/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Abbfb3e4a-b389-4391-8141-13b68c0ef2e0&unique=prints", "collector_number": "60", "digital": false, "rarity": "common", "flavor_text": "What a lonely agony, the memory of memories lost.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Greg Staples", "artist_ids": ["93d65564-bf00-447b-8406-e2031f03b6b1"], "illustration_id": "84c95a0f-8a4a-4c21-bbff-af978d48f44b", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 1937, "penny_rank": 44, "prices": {"usd": "0.18", "usd_foil": "0.41", "usd_etched": null, "eur": "0.25", "eur_foil": "0.55", "tix": "0.05"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=413602", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Memory+Lapse&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Memory+Lapse&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Memory+Lapse"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/118731?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Memory+Lapse&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/60923?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "2d85cc30-ccae-4af8-834a-f7870dace679", "oracle_id": "bbfb3e4a-b389-4391-8141-13b68c0ef2e0", "multiverse_ids": [27080], "mtgo_id": 15684, "mtgo_foil_id": 15685, "tcgplayer_id": 2991, "cardmarket_id": 2850, "name": "Memory Lapse", "lang": "en", "released_at": "2001-04-11", "uri": "https://api.scryfall.com/cards/2d85cc30-ccae-4af8-834a-f7870dace679", "scryfall_uri": "https://scryfall.com/card/7ed/88/memory-lapse?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/2/d/2d85cc30-ccae-4af8-834a-f7870dace679.jpg?1562235009", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/d/2d85cc30-ccae-4af8-834a-f7870dace679.jpg?1562235009", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/2/d/2d85cc30-ccae-4af8-834a-f7870dace679.jpg?1562235009", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/2/d/2d85cc30-ccae-4af8-834a-f7870dace679.png?1562235009", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/d/2d85cc30-ccae-4af8-834a-f7870dace679.jpg?1562235009", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/2/d/2d85cc30-ccae-4af8-834a-f7870dace679.jpg?1562235009"}, "mana_cost": "{1}{U}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Counter target spell. If that spell is countered this way, put it on top of its owner's library instead of into that player's graveyard.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "banned", "gladiator": "legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "230f38aa-9511-4db8-a3aa-aeddbc3f7bb9", "set": "7ed", "set_name": "Seventh Edition", "set_type": "core", "set_uri": "https://api.scryfall.com/sets/230f38aa-9511-4db8-a3aa-aeddbc3f7bb9", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3A7ed&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/7ed?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/2d85cc30-ccae-4af8-834a-f7870dace679/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Abbfb3e4a-b389-4391-8141-13b68c0ef2e0&unique=prints", "collector_number": "88", "digital": false, "rarity": "common", "flavor_text": "\"Eri phar phesta . . . um, phistor . . . er, phistara . . .\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Tristan Elwell", "artist_ids": ["94764133-a3a6-4bc4-b29b-2b328d9657f6"], "illustration_id": "8c91fbb4-9d1d-4433-aad7-05c0981cbf0e", "border_color": "white", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 1937, "penny_rank": 44, "prices": {"usd": "0.17", "usd_foil": "30.75", "usd_etched": null, "eur": "0.10", "eur_foil": "39.99", "tix": "0.04"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=27080", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Memory+Lapse&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Memory+Lapse&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Memory+Lapse"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/2991?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Memory+Lapse&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/15684?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "63453ed9-5cf1-4cad-b173-a067f22a4405", "oracle_id": "bbfb3e4a-b389-4391-8141-13b68c0ef2e0", "multiverse_ids": [3345], "mtgo_id": 7127, "mtgo_foil_id": 7128, "tcgplayer_id": 5141, "cardmarket_id": 8125, "name": "Memory Lapse", "lang": "en", "released_at": "1996-10-08", "uri": "https://api.scryfall.com/cards/63453ed9-5cf1-4cad-b173-a067f22a4405", "scryfall_uri": "https://scryfall.com/card/mir/74/memory-lapse?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/6/3/63453ed9-5cf1-4cad-b173-a067f22a4405.jpg?1562719747", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/3/63453ed9-5cf1-4cad-b173-a067f22a4405.jpg?1562719747", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/6/3/63453ed9-5cf1-4cad-b173-a067f22a4405.jpg?1562719747", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/6/3/63453ed9-5cf1-4cad-b173-a067f22a4405.png?1562719747", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/3/63453ed9-5cf1-4cad-b173-a067f22a4405.jpg?1562719747", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/6/3/63453ed9-5cf1-4cad-b173-a067f22a4405.jpg?1562719747"}, "mana_cost": "{1}{U}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Counter target spell. If that spell is countered this way, put it on top of its owner's library instead of into that player's graveyard.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "banned", "gladiator": "legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "5f06acf3-8123-4a78-b2e7-089b0b775a4a", "set": "mir", "set_name": "Mirage", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/5f06acf3-8123-4a78-b2e7-089b0b775a4a", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Amir&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/mir?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/63453ed9-5cf1-4cad-b173-a067f22a4405/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Abbfb3e4a-b389-4391-8141-13b68c0ef2e0&unique=prints", "collector_number": "74", "digital": false, "rarity": "common", "flavor_text": "\"The caliph was so intelligent he could not remember what he knew.\"\n\u2014Azeworai, \"Three Riddles\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Rebecca Guay", "artist_ids": ["f8f662fa-d597-46a3-afb2-91d6e13243e2"], "illustration_id": "3f6bcb6d-ed3c-4137-9709-49867ad65ede", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 1937, "penny_rank": 44, "prices": {"usd": "0.19", "usd_foil": null, "usd_etched": null, "eur": "0.49", "eur_foil": null, "tix": "0.04"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=3345", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Memory+Lapse&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Memory+Lapse&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Memory+Lapse"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/5141?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Memory+Lapse&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/7127?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "3d2cc591-3a81-468a-91a4-3c3aac83a21a", "oracle_id": "bbfb3e4a-b389-4391-8141-13b68c0ef2e0", "multiverse_ids": [2949], "tcgplayer_id": 4525, "cardmarket_id": 7752, "name": "Memory Lapse", "lang": "en", "released_at": "1995-10-01", "uri": "https://api.scryfall.com/cards/3d2cc591-3a81-468a-91a4-3c3aac83a21a", "scryfall_uri": "https://scryfall.com/card/hml/32a/memory-lapse?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/3/d/3d2cc591-3a81-468a-91a4-3c3aac83a21a.jpg?1562587259", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/d/3d2cc591-3a81-468a-91a4-3c3aac83a21a.jpg?1562587259", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/3/d/3d2cc591-3a81-468a-91a4-3c3aac83a21a.jpg?1562587259", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/3/d/3d2cc591-3a81-468a-91a4-3c3aac83a21a.png?1562587259", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/d/3d2cc591-3a81-468a-91a4-3c3aac83a21a.jpg?1562587259", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/3/d/3d2cc591-3a81-468a-91a4-3c3aac83a21a.jpg?1562587259"}, "mana_cost": "{1}{U}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Counter target spell. If that spell is countered this way, put it on top of its owner's library instead of into that player's graveyard.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "banned", "gladiator": "legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "5ac1f606-e682-46e9-ad0f-122a3783581b", "set": "hml", "set_name": "Homelands", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/5ac1f606-e682-46e9-ad0f-122a3783581b", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ahml&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/hml?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/3d2cc591-3a81-468a-91a4-3c3aac83a21a/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Abbfb3e4a-b389-4391-8141-13b68c0ef2e0&unique=prints", "collector_number": "32a", "digital": false, "rarity": "common", "flavor_text": "\"Um . . . oh . . . what was I saying?\"\n\u2014Reveka, Wizard Savant", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Mark Tedin", "artist_ids": ["9ee9a9cc-c09e-486f-918b-69f80cbc4188"], "illustration_id": "82b124ed-5206-41d3-83f1-3cb8c8700c11", "border_color": "black", "frame": "1993", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 1937, "penny_rank": 44, "prices": {"usd": "0.20", "usd_foil": null, "usd_etched": null, "eur": "0.13", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=2949", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Memory+Lapse&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Memory+Lapse&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Memory+Lapse"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/4525?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Memory+Lapse&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Memory+Lapse&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "6c8b5df3-6153-470e-be9c-f38d3cf66081", "oracle_id": "bbfb3e4a-b389-4391-8141-13b68c0ef2e0", "multiverse_ids": [2950], "tcgplayer_id": 18282, "cardmarket_id": 7753, "name": "Memory Lapse", "lang": "en", "released_at": "1995-10-01", "uri": "https://api.scryfall.com/cards/6c8b5df3-6153-470e-be9c-f38d3cf66081", "scryfall_uri": "https://scryfall.com/card/hml/32b/memory-lapse?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/6/c/6c8b5df3-6153-470e-be9c-f38d3cf66081.jpg?1562587296", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/c/6c8b5df3-6153-470e-be9c-f38d3cf66081.jpg?1562587296", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/6/c/6c8b5df3-6153-470e-be9c-f38d3cf66081.jpg?1562587296", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/6/c/6c8b5df3-6153-470e-be9c-f38d3cf66081.png?1562587296", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/c/6c8b5df3-6153-470e-be9c-f38d3cf66081.jpg?1562587296", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/6/c/6c8b5df3-6153-470e-be9c-f38d3cf66081.jpg?1562587296"}, "mana_cost": "{1}{U}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Counter target spell. If that spell is countered this way, put it on top of its owner's library instead of into that player's graveyard.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "banned", "gladiator": "legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "5ac1f606-e682-46e9-ad0f-122a3783581b", "set": "hml", "set_name": "Homelands", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/5ac1f606-e682-46e9-ad0f-122a3783581b", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ahml&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/hml?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/6c8b5df3-6153-470e-be9c-f38d3cf66081/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Abbfb3e4a-b389-4391-8141-13b68c0ef2e0&unique=prints", "collector_number": "32b", "digital": false, "rarity": "common", "flavor_text": "\"Oh, I had a conscience once. But alas, I seem to have forgotten where I put it.\"\n\u2014Chandler", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Mark Tedin", "artist_ids": ["9ee9a9cc-c09e-486f-918b-69f80cbc4188"], "illustration_id": "e37736ba-90c6-4e21-af2c-1259475b7bf7", "border_color": "black", "frame": "1993", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 1937, "penny_rank": 44, "prices": {"usd": "0.15", "usd_foil": null, "usd_etched": null, "eur": "0.10", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=2950", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Memory+Lapse&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Memory+Lapse&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Memory+Lapse"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/18282?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Memory+Lapse&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Memory+Lapse&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "98c1b465-b6d9-491b-bfc2-c034cc825d27", "oracle_id": "bbfb3e4a-b389-4391-8141-13b68c0ef2e0", "multiverse_ids": [517566], "mtgo_id": 89089, "arena_id": 77495, "tcgplayer_id": 235396, "tcgplayer_etched_id": 235397, "cardmarket_id": 556497, "name": "Memory Lapse", "lang": "en", "released_at": "2021-04-23", "uri": "https://api.scryfall.com/cards/98c1b465-b6d9-491b-bfc2-c034cc825d27", "scryfall_uri": "https://scryfall.com/card/sta/16/memory-lapse?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/9/8/98c1b465-b6d9-491b-bfc2-c034cc825d27.jpg?1623592117", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/8/98c1b465-b6d9-491b-bfc2-c034cc825d27.jpg?1623592117", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/9/8/98c1b465-b6d9-491b-bfc2-c034cc825d27.jpg?1623592117", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/9/8/98c1b465-b6d9-491b-bfc2-c034cc825d27.png?1623592117", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/8/98c1b465-b6d9-491b-bfc2-c034cc825d27.jpg?1623592117", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/9/8/98c1b465-b6d9-491b-bfc2-c034cc825d27.jpg?1623592117"}, "mana_cost": "{1}{U}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Counter target spell. If that spell is countered this way, put it on top of its owner's library instead of into that player's graveyard.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "banned", "gladiator": "legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil", "etched"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "5064a720-907f-4cb6-a425-766dc1dd7374", "set": "sta", "set_name": "Strixhaven Mystical Archive", "set_type": "masterpiece", "set_uri": "https://api.scryfall.com/sets/5064a720-907f-4cb6-a425-766dc1dd7374", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Asta&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/sta?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/98c1b465-b6d9-491b-bfc2-c034cc825d27/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Abbfb3e4a-b389-4391-8141-13b68c0ef2e0&unique=prints", "collector_number": "16", "digital": false, "rarity": "rare", "flavor_text": "\"Where do our forgotten thoughts go? I knew once, but I can't remember.\"\n\u2014Director Taiva, journal entry", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Kristina Collantes", "artist_ids": ["73fa8a53-d63a-49b6-ab59-41c88f397f56"], "illustration_id": "b7de5431-2aa7-4cc6-9def-aeb69791eca1", "border_color": "borderless", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "edhrec_rank": 1937, "penny_rank": 44, "prices": {"usd": "0.34", "usd_foil": "0.73", "usd_etched": "0.83", "eur": "0.26", "eur_foil": "1.99", "tix": "0.12"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=517566", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Memory+Lapse&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Memory+Lapse&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Memory+Lapse"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/235396?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Memory+Lapse&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/89089?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "61e9c6df-1c84-4eab-9076-a4feb6347c10", "oracle_id": "1a0770e6-b093-4439-baff-6889a50ba12e", "multiverse_ids": [230066], "mtgo_id": 39920, "mtgo_foil_id": 39921, "tcgplayer_id": 39543, "cardmarket_id": 245870, "name": "Mental Misstep", "lang": "en", "released_at": "2011-05-13", "uri": "https://api.scryfall.com/cards/61e9c6df-1c84-4eab-9076-a4feb6347c10", "scryfall_uri": "https://scryfall.com/card/nph/38/mental-misstep?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/6/1/61e9c6df-1c84-4eab-9076-a4feb6347c10.jpg?1566819829", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/1/61e9c6df-1c84-4eab-9076-a4feb6347c10.jpg?1566819829", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/6/1/61e9c6df-1c84-4eab-9076-a4feb6347c10.jpg?1566819829", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/6/1/61e9c6df-1c84-4eab-9076-a4feb6347c10.png?1566819829", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/1/61e9c6df-1c84-4eab-9076-a4feb6347c10.jpg?1566819829", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/6/1/61e9c6df-1c84-4eab-9076-a4feb6347c10.jpg?1566819829"}, "mana_cost": "{U/P}", "cmc": 1.0, "type_line": "Instant", "oracle_text": "({U/P} can be paid with either {U} or 2 life.)\nCounter target spell with mana value 1.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "banned", "legacy": "banned", "pauper": "not_legal", "vintage": "restricted", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "e8e356d8-6d01-4dab-aa07-d0999dc9359f", "set": "nph", "set_name": "New Phyrexia", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/e8e356d8-6d01-4dab-aa07-d0999dc9359f", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Anph&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/nph?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/61e9c6df-1c84-4eab-9076-a4feb6347c10/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A1a0770e6-b093-4439-baff-6889a50ba12e&unique=prints", "collector_number": "38", "digital": false, "rarity": "uncommon", "watermark": "phyrexian", "flavor_text": "\"Your first mistake was thinking I would let you live long enough to make a second.\"\n\u2014Sarnvax, Gitaxian sective", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Erica Yang", "artist_ids": ["fcc15b63-b280-49da-9fee-f862824a2fc8"], "illustration_id": "493e0cb0-ff48-43c0-b1bf-f531da2c5ebb", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 389, "prices": {"usd": "4.53", "usd_foil": "88.70", "usd_etched": null, "eur": "4.59", "eur_foil": "49.99", "tix": "0.07"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=230066", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Mental+Misstep&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Mental+Misstep&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Mental+Misstep"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/39543?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Mental+Misstep&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/39920?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "f712ac26-dca4-459b-84c1-010597007f60", "oracle_id": "c4920e95-a6fc-4373-a0d6-244f51851364", "multiverse_ids": [423706], "mtgo_id": 62629, "mtgo_foil_id": 62630, "tcgplayer_id": 126433, "cardmarket_id": 294830, "name": "Metallic Rebuke", "lang": "en", "released_at": "2017-01-20", "uri": "https://api.scryfall.com/cards/f712ac26-dca4-459b-84c1-010597007f60", "scryfall_uri": "https://scryfall.com/card/aer/39/metallic-rebuke?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/f/7/f712ac26-dca4-459b-84c1-010597007f60.jpg?1576381519", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/7/f712ac26-dca4-459b-84c1-010597007f60.jpg?1576381519", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/f/7/f712ac26-dca4-459b-84c1-010597007f60.jpg?1576381519", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/f/7/f712ac26-dca4-459b-84c1-010597007f60.png?1576381519", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/7/f712ac26-dca4-459b-84c1-010597007f60.jpg?1576381519", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/f/7/f712ac26-dca4-459b-84c1-010597007f60.jpg?1576381519"}, "mana_cost": "{2}{U}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Improvise (Your artifacts can help cast this spell. Each artifact you tap after you're done activating mana abilities pays for {1}.)\nCounter target spell unless its controller pays {3}.", "colors": ["U"], "color_identity": ["U"], "keywords": ["Improvise"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "a4a0db50-8826-4e73-833c-3fd934375f96", "set": "aer", "set_name": "Aether Revolt", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/a4a0db50-8826-4e73-833c-3fd934375f96", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aaer&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/aer?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/f712ac26-dca4-459b-84c1-010597007f60/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ac4920e95-a6fc-4373-a0d6-244f51851364&unique=prints", "collector_number": "39", "digital": false, "rarity": "common", "flavor_text": "\"Too little, too late. The machine is in motion.\"\n\u2014Tezzeret", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Eric Deschamps", "artist_ids": ["37970e22-9cee-44c1-af44-5ee27cf26b76"], "illustration_id": "2d6b85e9-ae2d-4983-a915-cc9e7b0f198c", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 8392, "penny_rank": 1262, "prices": {"usd": "0.22", "usd_foil": "3.27", "usd_etched": null, "eur": "0.13", "eur_foil": "3.19", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=423706", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Metallic+Rebuke&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Metallic+Rebuke&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Metallic+Rebuke"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/126433?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Metallic+Rebuke&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/62629?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "502c4aca-98f8-4c7d-89fd-ee42c938fac7", "oracle_id": "6c7239b0-e67f-4848-b244-8be9915bd2dc", "multiverse_ids": [74665], "mtgo_id": 21899, "mtgo_foil_id": 21900, "tcgplayer_id": 12309, "cardmarket_id": 12867, "name": "Minamo's Meddling", "lang": "en", "released_at": "2005-02-04", "uri": "https://api.scryfall.com/cards/502c4aca-98f8-4c7d-89fd-ee42c938fac7", "scryfall_uri": "https://scryfall.com/card/bok/42/minamos-meddling?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/5/0/502c4aca-98f8-4c7d-89fd-ee42c938fac7.jpg?1562876978", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/0/502c4aca-98f8-4c7d-89fd-ee42c938fac7.jpg?1562876978", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/5/0/502c4aca-98f8-4c7d-89fd-ee42c938fac7.jpg?1562876978", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/5/0/502c4aca-98f8-4c7d-89fd-ee42c938fac7.png?1562876978", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/0/502c4aca-98f8-4c7d-89fd-ee42c938fac7.jpg?1562876978", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/5/0/502c4aca-98f8-4c7d-89fd-ee42c938fac7.jpg?1562876978"}, "mana_cost": "{2}{U}{U}", "cmc": 4.0, "type_line": "Instant", "oracle_text": "Counter target spell. That spell's controller reveals their hand, then discards each card with the same name as a card spliced onto that spell.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "d4b88587-a1f5-4b47-9e24-78ec9e57bd0e", "set": "bok", "set_name": "Betrayers of Kamigawa", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/d4b88587-a1f5-4b47-9e24-78ec9e57bd0e", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Abok&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/bok?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/502c4aca-98f8-4c7d-89fd-ee42c938fac7/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A6c7239b0-e67f-4848-b244-8be9915bd2dc&unique=prints", "collector_number": "42", "digital": false, "rarity": "common", "flavor_text": "Like storm water through the segments of bamboo, the spell followed the links of magic. Then it destroyed them.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Alex Horley-Orlandelli", "artist_ids": ["1631a2ad-bf03-4ab9-b86c-60da982d58a1"], "illustration_id": "8f1f0f27-9a8f-4dc9-821f-7a20c39dcb4d", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 22301, "prices": {"usd": "0.02", "usd_foil": "0.14", "usd_etched": null, "eur": "0.02", "eur_foil": "0.09", "tix": "0.04"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=74665", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Minamo%27s+Meddling&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Minamo%27s+Meddling&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Minamo%27s+Meddling"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/12309?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Minamo%27s+Meddling&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/21899?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "4f51140b-6254-431a-8810-94307bfdfbbe", "oracle_id": "48712d36-5c13-4ded-87a4-68106da4a5cd", "multiverse_ids": [197532], "mtgo_id": 34802, "mtgo_foil_id": 34803, "tcgplayer_id": 33369, "cardmarket_id": 21743, "name": "Mindbreak Trap", "lang": "en", "released_at": "2009-10-02", "uri": "https://api.scryfall.com/cards/4f51140b-6254-431a-8810-94307bfdfbbe", "scryfall_uri": "https://scryfall.com/card/zen/57/mindbreak-trap?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/4/f/4f51140b-6254-431a-8810-94307bfdfbbe.jpg?1562612097", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/f/4f51140b-6254-431a-8810-94307bfdfbbe.jpg?1562612097", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/4/f/4f51140b-6254-431a-8810-94307bfdfbbe.jpg?1562612097", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/4/f/4f51140b-6254-431a-8810-94307bfdfbbe.png?1562612097", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/f/4f51140b-6254-431a-8810-94307bfdfbbe.jpg?1562612097", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/4/f/4f51140b-6254-431a-8810-94307bfdfbbe.jpg?1562612097"}, "mana_cost": "{2}{U}{U}", "cmc": 4.0, "type_line": "Instant \u2014 Trap", "oracle_text": "If an opponent cast three or more spells this turn, you may pay {0} rather than pay this spell's mana cost.\nExile any number of target spells.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "eb16a2bd-a218-4e4e-8339-4aa1afc0c8d2", "set": "zen", "set_name": "Zendikar", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/eb16a2bd-a218-4e4e-8339-4aa1afc0c8d2", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Azen&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/zen?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/4f51140b-6254-431a-8810-94307bfdfbbe/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A48712d36-5c13-4ded-87a4-68106da4a5cd&unique=prints", "collector_number": "57", "digital": false, "rarity": "mythic", "flavor_text": "\"Life is a maze. This is one of its dead ends.\"\n\u2014Noyan Dar, Tazeem lullmage", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Christopher Moeller", "artist_ids": ["21e10012-06ae-44f2-b38d-3824dd2e73d4"], "illustration_id": "e2873ad2-7dfb-4140-a179-e9f156e64b91", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 5717, "prices": {"usd": "25.14", "usd_foil": "171.79", "usd_etched": null, "eur": "9.42", "eur_foil": "89.90", "tix": "2.09"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=197532", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Mindbreak+Trap&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Mindbreak+Trap&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Mindbreak+Trap"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/33369?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Mindbreak+Trap&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/34802?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "55d3fad5-a12a-4b41-9c7b-c1af5e0b5ca8", "oracle_id": "880e0177-f1d2-4bdc-83b4-cae6a0706ef9", "multiverse_ids": [368980], "mtgo_id": 48470, "mtgo_foil_id": 48471, "tcgplayer_id": 67964, "cardmarket_id": 261506, "name": "Mindstatic", "lang": "en", "released_at": "2013-05-03", "uri": "https://api.scryfall.com/cards/55d3fad5-a12a-4b41-9c7b-c1af5e0b5ca8", "scryfall_uri": "https://scryfall.com/card/dgm/14/mindstatic?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/5/5/55d3fad5-a12a-4b41-9c7b-c1af5e0b5ca8.jpg?1562910742", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/5/55d3fad5-a12a-4b41-9c7b-c1af5e0b5ca8.jpg?1562910742", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/5/5/55d3fad5-a12a-4b41-9c7b-c1af5e0b5ca8.jpg?1562910742", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/5/5/55d3fad5-a12a-4b41-9c7b-c1af5e0b5ca8.png?1562910742", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/5/55d3fad5-a12a-4b41-9c7b-c1af5e0b5ca8.jpg?1562910742", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/5/5/55d3fad5-a12a-4b41-9c7b-c1af5e0b5ca8.jpg?1562910742"}, "mana_cost": "{3}{U}", "cmc": 4.0, "type_line": "Instant", "oracle_text": "Counter target spell unless its controller pays {6}.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "c8bd8520-cd98-45cd-b533-8d40c2087426", "set": "dgm", "set_name": "Dragon's Maze", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/c8bd8520-cd98-45cd-b533-8d40c2087426", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Adgm&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/dgm?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/55d3fad5-a12a-4b41-9c7b-c1af5e0b5ca8/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A880e0177-f1d2-4bdc-83b4-cae6a0706ef9&unique=prints", "collector_number": "14", "digital": false, "rarity": "common", "flavor_text": "\"It's always satisfying to stymie the best efforts of a rival, but the reactions of the Gruul are particularly amusing.\"\n\u2014Bori Andon, Izzet blastseeker", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Johann Bodin", "artist_ids": ["d92e2dd9-9ef6-43f6-81f8-df87f9066983"], "illustration_id": "9ff5e7f4-5d88-4e39-a73d-a7cd39a5b27e", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 15926, "prices": {"usd": "0.02", "usd_foil": "0.20", "usd_etched": null, "eur": "0.01", "eur_foil": "0.09", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=368980", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Mindstatic&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Mindstatic&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Mindstatic"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/67964?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Mindstatic&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/48470?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "557e8303-a021-4257-b41a-7d25f04618c8", "oracle_id": "4682c39e-c21a-4c8b-bc63-9cbac59dc563", "multiverse_ids": [386604], "mtgo_id": 54144, "mtgo_foil_id": 54145, "tcgplayer_id": 92959, "cardmarket_id": 269208, "name": "Mindswipe", "lang": "en", "released_at": "2014-09-26", "uri": "https://api.scryfall.com/cards/557e8303-a021-4257-b41a-7d25f04618c8", "scryfall_uri": "https://scryfall.com/card/ktk/189/mindswipe?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/5/5/557e8303-a021-4257-b41a-7d25f04618c8.jpg?1562786781", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/5/557e8303-a021-4257-b41a-7d25f04618c8.jpg?1562786781", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/5/5/557e8303-a021-4257-b41a-7d25f04618c8.jpg?1562786781", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/5/5/557e8303-a021-4257-b41a-7d25f04618c8.png?1562786781", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/5/557e8303-a021-4257-b41a-7d25f04618c8.jpg?1562786781", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/5/5/557e8303-a021-4257-b41a-7d25f04618c8.jpg?1562786781"}, "mana_cost": "{X}{U}{R}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Counter target spell unless its controller pays {X}. Mindswipe deals X damage to that spell's controller.", "colors": ["R", "U"], "color_identity": ["R", "U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "6c7a715c-ded9-449e-89b0-c665773e9c3c", "set": "ktk", "set_name": "Khans of Tarkir", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/6c7a715c-ded9-449e-89b0-c665773e9c3c", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aktk&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ktk?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/557e8303-a021-4257-b41a-7d25f04618c8/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A4682c39e-c21a-4c8b-bc63-9cbac59dc563&unique=prints", "collector_number": "189", "digital": false, "rarity": "rare", "flavor_text": "\"The past and the unwritten are frozen. To understand their meaning requires heat.\"\n\u2014Arel the Whisperer", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Ryan Alexander Lee", "artist_ids": ["f4d194b4-958a-4830-8d87-1a84e0b9ffbc"], "illustration_id": "5f8d5cf8-ab10-4315-92cd-e0b6efe02637", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 8274, "penny_rank": 4240, "prices": {"usd": "0.20", "usd_foil": "0.67", "usd_etched": null, "eur": "0.14", "eur_foil": "0.15", "tix": "0.01"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=386604", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Mindswipe&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Mindswipe&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Mindswipe"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/92959?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Mindswipe&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/54144?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "4b4956a2-9a39-4152-9c98-70e4b2acfa26", "oracle_id": "9078db26-3a54-4a11-9aae-e45c38da7226", "multiverse_ids": [12376], "mtgo_id": 12607, "mtgo_foil_id": 12608, "tcgplayer_id": 6343, "cardmarket_id": 10593, "name": "Miscalculation", "lang": "en", "released_at": "1999-02-15", "uri": "https://api.scryfall.com/cards/4b4956a2-9a39-4152-9c98-70e4b2acfa26", "scryfall_uri": "https://scryfall.com/card/ulg/36/miscalculation?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/4/b/4b4956a2-9a39-4152-9c98-70e4b2acfa26.jpg?1562862809", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/b/4b4956a2-9a39-4152-9c98-70e4b2acfa26.jpg?1562862809", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/4/b/4b4956a2-9a39-4152-9c98-70e4b2acfa26.jpg?1562862809", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/4/b/4b4956a2-9a39-4152-9c98-70e4b2acfa26.png?1562862809", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/b/4b4956a2-9a39-4152-9c98-70e4b2acfa26.jpg?1562862809", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/4/b/4b4956a2-9a39-4152-9c98-70e4b2acfa26.jpg?1562862809"}, "mana_cost": "{1}{U}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Counter target spell unless its controller pays {2}.\nCycling {2} ({2}, Discard this card: Draw a card.)", "colors": ["U"], "color_identity": ["U"], "keywords": ["Cycling"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "78ced61b-4b8a-4b33-b6b2-f5bd66f1a75a", "set": "ulg", "set_name": "Urza's Legacy", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/78ced61b-4b8a-4b33-b6b2-f5bd66f1a75a", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aulg&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ulg?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/4b4956a2-9a39-4152-9c98-70e4b2acfa26/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A9078db26-3a54-4a11-9aae-e45c38da7226&unique=prints", "collector_number": "36", "digital": false, "rarity": "common", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Jeff Laubenstein", "artist_ids": ["7c5b6391-2a5a-4b78-b19d-2b181149cb0f"], "illustration_id": "ae0dfde5-7b10-405e-8851-1860fcfac893", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 5268, "prices": {"usd": "0.23", "usd_foil": "36.90", "usd_etched": null, "eur": "0.32", "eur_foil": "24.00", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=12376", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Miscalculation&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Miscalculation&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Miscalculation"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/6343?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Miscalculation&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/12607?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "033afbd5-9937-4957-98ba-48e469a490bb", "oracle_id": "e08c71aa-d35c-4c20-b4db-ae9d36ee3169", "multiverse_ids": [485380], "mtgo_id": 81341, "arena_id": 71839, "tcgplayer_id": 215633, "cardmarket_id": 470319, "name": "Miscast", "lang": "en", "released_at": "2020-07-03", "uri": "https://api.scryfall.com/cards/033afbd5-9937-4957-98ba-48e469a490bb", "scryfall_uri": "https://scryfall.com/card/m21/57/miscast?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/0/3/033afbd5-9937-4957-98ba-48e469a490bb.jpg?1594735579", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/3/033afbd5-9937-4957-98ba-48e469a490bb.jpg?1594735579", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/0/3/033afbd5-9937-4957-98ba-48e469a490bb.jpg?1594735579", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/0/3/033afbd5-9937-4957-98ba-48e469a490bb.png?1594735579", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/3/033afbd5-9937-4957-98ba-48e469a490bb.jpg?1594735579", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/0/3/033afbd5-9937-4957-98ba-48e469a490bb.jpg?1594735579"}, "mana_cost": "{U}", "cmc": 1.0, "type_line": "Instant", "oracle_text": "Counter target instant or sorcery spell unless its controller pays {3}.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "bc94aba1-7376-4e02-a12d-3a2efb66ab0f", "set": "m21", "set_name": "Core Set 2021", "set_type": "core", "set_uri": "https://api.scryfall.com/sets/bc94aba1-7376-4e02-a12d-3a2efb66ab0f", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Am21&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/m21?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/033afbd5-9937-4957-98ba-48e469a490bb/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ae08c71aa-d35c-4c20-b4db-ae9d36ee3169&unique=prints", "collector_number": "57", "digital": false, "rarity": "uncommon", "flavor_text": "\"Next time, try something more appropriate for your skill level.\"\n\u2014Barrin, Tolarian archmage", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Steve Argyle", "artist_ids": ["a44ddda4-5331-4f83-aac9-3e00ed36bd7b"], "illustration_id": "81c60ca3-b1d1-45e6-bbbf-2670e0b3b6f5", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 704, "penny_rank": 349, "preview": {"source": "Mythic Meebo", "source_uri": "https://twitter.com/MythicMeebo/status/1271125588602912769", "previewed_at": "2020-06-11"}, "prices": {"usd": "1.51", "usd_foil": "3.50", "usd_etched": null, "eur": "0.54", "eur_foil": "2.03", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=485380", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Miscast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Miscast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Miscast"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/215633?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Miscast&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/81341?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "4c2b326b-d177-4a03-a0a3-fe2c2d4af272", "oracle_id": "d955a26a-d474-4dff-9eba-69fcfe92d8ae", "multiverse_ids": [29972], "mtgo_id": 16645, "mtgo_foil_id": 16646, "tcgplayer_id": 9482, "cardmarket_id": 2619, "name": "Molten Influence", "lang": "en", "released_at": "2001-10-01", "uri": "https://api.scryfall.com/cards/4c2b326b-d177-4a03-a0a3-fe2c2d4af272", "scryfall_uri": "https://scryfall.com/card/ody/207/molten-influence?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/4/c/4c2b326b-d177-4a03-a0a3-fe2c2d4af272.jpg?1562908953", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/c/4c2b326b-d177-4a03-a0a3-fe2c2d4af272.jpg?1562908953", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/4/c/4c2b326b-d177-4a03-a0a3-fe2c2d4af272.jpg?1562908953", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/4/c/4c2b326b-d177-4a03-a0a3-fe2c2d4af272.png?1562908953", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/c/4c2b326b-d177-4a03-a0a3-fe2c2d4af272.jpg?1562908953", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/4/c/4c2b326b-d177-4a03-a0a3-fe2c2d4af272.jpg?1562908953"}, "mana_cost": "{1}{R}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Counter target instant or sorcery spell unless its controller has Molten Influence deal 4 damage to them.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "b0d90d2d-494a-4224-bfa0-36ce5ee281b1", "set": "ody", "set_name": "Odyssey", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/b0d90d2d-494a-4224-bfa0-36ce5ee281b1", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aody&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ody?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/4c2b326b-d177-4a03-a0a3-fe2c2d4af272/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ad955a26a-d474-4dff-9eba-69fcfe92d8ae&unique=prints", "collector_number": "207", "digital": false, "rarity": "rare", "flavor_text": "Lavamancers make simple requests: obey or die.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Franz Vohwinkel", "artist_ids": ["3a243c17-3baa-4b53-9599-645311cd7d3d"], "illustration_id": "ab26c6f8-b839-4e32-8df8-110741cbff11", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 14614, "penny_rank": 11017, "prices": {"usd": "2.73", "usd_foil": "29.97", "usd_etched": null, "eur": "2.00", "eur_foil": "12.95", "tix": "0.08"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=29972", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Molten+Influence&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Molten+Influence&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Molten+Influence"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/9482?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Molten+Influence&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/16645?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "4cc785b0-0a77-4b02-b0b4-2bda2fc621cc", "oracle_id": "0826cf7d-7ccc-459b-a92f-29dc169628f8", "multiverse_ids": [88955], "mtgo_id": 23312, "mtgo_foil_id": 23313, "tcgplayer_id": 13359, "cardmarket_id": 13471, "name": "Muddle the Mixture", "lang": "en", "released_at": "2005-10-07", "uri": "https://api.scryfall.com/cards/4cc785b0-0a77-4b02-b0b4-2bda2fc621cc", "scryfall_uri": "https://scryfall.com/card/rav/60/muddle-the-mixture?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/4/c/4cc785b0-0a77-4b02-b0b4-2bda2fc621cc.jpg?1598914378", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/c/4cc785b0-0a77-4b02-b0b4-2bda2fc621cc.jpg?1598914378", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/4/c/4cc785b0-0a77-4b02-b0b4-2bda2fc621cc.jpg?1598914378", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/4/c/4cc785b0-0a77-4b02-b0b4-2bda2fc621cc.png?1598914378", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/c/4cc785b0-0a77-4b02-b0b4-2bda2fc621cc.jpg?1598914378", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/4/c/4cc785b0-0a77-4b02-b0b4-2bda2fc621cc.jpg?1598914378"}, "mana_cost": "{U}{U}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Counter target instant or sorcery spell.\nTransmute {1}{U}{U} ({1}{U}{U}, Discard this card: Search your library for a card with the same mana value as this card, reveal it, put it into your hand, then shuffle. Transmute only as a sorcery.)", "colors": ["U"], "color_identity": ["U"], "keywords": ["Transmute"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "15fccbe8-2825-41ca-9d0a-67aebdf91c4a", "set": "rav", "set_name": "Ravnica: City of Guilds", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/15fccbe8-2825-41ca-9d0a-67aebdf91c4a", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Arav&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/rav?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/4cc785b0-0a77-4b02-b0b4-2bda2fc621cc/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A0826cf7d-7ccc-459b-a92f-29dc169628f8&unique=prints", "collector_number": "60", "digital": false, "rarity": "common", "watermark": "dimir", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Luca Zontini", "artist_ids": ["aa57d42a-72c1-4d94-a200-3571233c4b20"], "illustration_id": "d6fe33a0-0424-41a1-b4d9-331734d22b50", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 371, "penny_rank": 797, "prices": {"usd": "4.22", "usd_foil": "56.38", "usd_etched": null, "eur": "2.36", "eur_foil": "12.00", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=88955", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Muddle+the+Mixture&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Muddle+the+Mixture&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Muddle+the+Mixture"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/13359?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Muddle+the+Mixture&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/23312?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "fbe04cb8-a8b9-4241-baae-b398a2509a3a", "oracle_id": "48390b8d-db41-48a5-9bac-316660ab7252", "multiverse_ids": [473020], "mtgo_id": 78226, "arena_id": 70205, "tcgplayer_id": 198683, "cardmarket_id": 399689, "name": "Mystical Dispute", "lang": "en", "released_at": "2019-10-04", "uri": "https://api.scryfall.com/cards/fbe04cb8-a8b9-4241-baae-b398a2509a3a", "scryfall_uri": "https://scryfall.com/card/eld/58/mystical-dispute?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/f/b/fbe04cb8-a8b9-4241-baae-b398a2509a3a.jpg?1572489956", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/b/fbe04cb8-a8b9-4241-baae-b398a2509a3a.jpg?1572489956", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/f/b/fbe04cb8-a8b9-4241-baae-b398a2509a3a.jpg?1572489956", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/f/b/fbe04cb8-a8b9-4241-baae-b398a2509a3a.png?1572489956", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/b/fbe04cb8-a8b9-4241-baae-b398a2509a3a.jpg?1572489956", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/f/b/fbe04cb8-a8b9-4241-baae-b398a2509a3a.jpg?1572489956"}, "mana_cost": "{2}{U}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "This spell costs {2} less to cast if it targets a blue spell.\nCounter target spell unless its controller pays {3}.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "a90a7b2f-9dd8-4fc7-9f7d-8ea2797ec782", "set": "eld", "set_name": "Throne of Eldraine", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/a90a7b2f-9dd8-4fc7-9f7d-8ea2797ec782", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aeld&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/eld?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/fbe04cb8-a8b9-4241-baae-b398a2509a3a/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A48390b8d-db41-48a5-9bac-316660ab7252&unique=prints", "collector_number": "58", "digital": false, "rarity": "uncommon", "flavor_text": "\"Poor, lost mage. Your feet are on land, yet you're in over your head, aren't you?\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Ekaterina Burmak", "artist_ids": ["2a9f3780-fcc8-4ec5-b403-ee1d1370d3b4"], "illustration_id": "9854dc21-6ee2-4252-b752-e7c6987434ae", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 5482, "preview": {"source": "Andrea Mengucci ", "source_uri": "https://twitter.com/Mengu09/status/1170965891317735424", "previewed_at": "2019-09-09"}, "prices": {"usd": "3.90", "usd_foil": "10.32", "usd_etched": null, "eur": "1.83", "eur_foil": "5.75", "tix": "0.19"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=473020", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Mystical+Dispute&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Mystical+Dispute&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Mystical+Dispute"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/198683?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Mystical+Dispute&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/78226?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "81bbffc2-6f58-4baa-8f95-168eab106b15", "oracle_id": "cd11c27b-9368-4622-bc5a-2e0b993cc42b", "multiverse_ids": [405314], "tcgplayer_id": 107874, "cardmarket_id": 285797, "name": "Mystic Confluence", "lang": "en", "released_at": "2015-11-13", "uri": "https://api.scryfall.com/cards/81bbffc2-6f58-4baa-8f95-168eab106b15", "scryfall_uri": "https://scryfall.com/card/c15/14/mystic-confluence?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/8/1/81bbffc2-6f58-4baa-8f95-168eab106b15.jpg?1562706477", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/1/81bbffc2-6f58-4baa-8f95-168eab106b15.jpg?1562706477", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/8/1/81bbffc2-6f58-4baa-8f95-168eab106b15.jpg?1562706477", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/8/1/81bbffc2-6f58-4baa-8f95-168eab106b15.png?1562706477", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/1/81bbffc2-6f58-4baa-8f95-168eab106b15.jpg?1562706477", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/8/1/81bbffc2-6f58-4baa-8f95-168eab106b15.jpg?1562706477"}, "mana_cost": "{3}{U}{U}", "cmc": 5.0, "type_line": "Instant", "oracle_text": "Choose three. You may choose the same mode more than once.\n\u2022 Counter target spell unless its controller pays {3}.\n\u2022 Return target creature to its owner's hand.\n\u2022 Draw a card.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "ea6c99f9-5489-4504-b30c-c819fa3b1fd3", "set": "c15", "set_name": "Commander 2015", "set_type": "commander", "set_uri": "https://api.scryfall.com/sets/ea6c99f9-5489-4504-b30c-c819fa3b1fd3", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ac15&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/c15?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/81bbffc2-6f58-4baa-8f95-168eab106b15/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Acd11c27b-9368-4622-bc5a-2e0b993cc42b&unique=prints", "collector_number": "14", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Kieran Yanner", "artist_ids": ["aa7e89ed-d294-4633-9057-ce04dacfcfa4"], "illustration_id": "570652d9-2c09-4702-acc2-85d160bec8a0", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "edhrec_rank": 729, "prices": {"usd": "2.74", "usd_foil": null, "usd_etched": null, "eur": "2.85", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=405314", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Mystic+Confluence&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Mystic+Confluence&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Mystic+Confluence"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/107874?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Mystic+Confluence&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Mystic+Confluence&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "1296ddc4-300d-44f6-95d8-1b392613d379", "oracle_id": "d2bd23a6-4f77-4d6e-bf8f-339cb7a4184d", "multiverse_ids": [10565], "tcgplayer_id": 502, "cardmarket_id": 11242, "name": "Mystic Denial", "lang": "en", "released_at": "1999-07-06", "uri": "https://api.scryfall.com/cards/1296ddc4-300d-44f6-95d8-1b392613d379", "scryfall_uri": "https://scryfall.com/card/ptk/49/mystic-denial?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/1/2/1296ddc4-300d-44f6-95d8-1b392613d379.jpg?1562255840", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/2/1296ddc4-300d-44f6-95d8-1b392613d379.jpg?1562255840", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/1/2/1296ddc4-300d-44f6-95d8-1b392613d379.jpg?1562255840", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/1/2/1296ddc4-300d-44f6-95d8-1b392613d379.png?1562255840", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/2/1296ddc4-300d-44f6-95d8-1b392613d379.jpg?1562255840", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/1/2/1296ddc4-300d-44f6-95d8-1b392613d379.jpg?1562255840"}, "mana_cost": "{1}{U}{U}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Counter target creature or sorcery spell.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "2676ff2e-9d86-4b5b-b935-e84e41b0755e", "set": "ptk", "set_name": "Portal Three Kingdoms", "set_type": "starter", "set_uri": "https://api.scryfall.com/sets/2676ff2e-9d86-4b5b-b935-e84e41b0755e", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aptk&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ptk?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/1296ddc4-300d-44f6-95d8-1b392613d379/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ad2bd23a6-4f77-4d6e-bf8f-339cb7a4184d&unique=prints", "collector_number": "49", "digital": false, "rarity": "uncommon", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Kang Yu", "artist_ids": ["f238555b-3484-4d1a-bccc-ca9466af9c4f"], "illustration_id": "ef98d855-ff23-4047-9e28-0a7ac65acdb0", "border_color": "white", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 21742, "prices": {"usd": "29.85", "usd_foil": null, "usd_etched": null, "eur": "2.00", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=10565", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Mystic+Denial&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Mystic+Denial&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Mystic+Denial"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/502?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Mystic+Denial&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Mystic+Denial&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "30bb424f-f3d6-4616-a368-df12af3ad024", "oracle_id": "d2bd23a6-4f77-4d6e-bf8f-339cb7a4184d", "multiverse_ids": [6542], "tcgplayer_id": 173, "cardmarket_id": 9861, "name": "Mystic Denial", "lang": "en", "released_at": "1998-06-24", "uri": "https://api.scryfall.com/cards/30bb424f-f3d6-4616-a368-df12af3ad024", "scryfall_uri": "https://scryfall.com/card/p02/41/mystic-denial?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/3/0/30bb424f-f3d6-4616-a368-df12af3ad024.jpg?1562906405", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/0/30bb424f-f3d6-4616-a368-df12af3ad024.jpg?1562906405", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/3/0/30bb424f-f3d6-4616-a368-df12af3ad024.jpg?1562906405", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/3/0/30bb424f-f3d6-4616-a368-df12af3ad024.png?1562906405", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/0/30bb424f-f3d6-4616-a368-df12af3ad024.jpg?1562906405", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/3/0/30bb424f-f3d6-4616-a368-df12af3ad024.jpg?1562906405"}, "mana_cost": "{1}{U}{U}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Counter target creature or sorcery spell.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "ac67f18a-4f0e-407e-bab1-a9fe4f659565", "set": "p02", "set_name": "Portal Second Age", "set_type": "starter", "set_uri": "https://api.scryfall.com/sets/ac67f18a-4f0e-407e-bab1-a9fe4f659565", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ap02&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/p02?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/30bb424f-f3d6-4616-a368-df12af3ad024/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ad2bd23a6-4f77-4d6e-bf8f-339cb7a4184d&unique=prints", "collector_number": "41", "digital": false, "rarity": "uncommon", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "DiTerlizzi", "artist_ids": ["ed44dce4-30cf-4c2c-b2e1-a19ba2295690"], "illustration_id": "ce436edf-1c6e-4244-907c-f5d13f3ec29b", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 21742, "prices": {"usd": "0.29", "usd_foil": null, "usd_etched": null, "eur": "0.29", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=6542", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Mystic+Denial&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Mystic+Denial&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Mystic+Denial"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/173?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Mystic+Denial&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Mystic+Denial&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "52d60f29-6da0-4ce6-9c92-96f313007271", "oracle_id": "d2bd23a6-4f77-4d6e-bf8f-339cb7a4184d", "multiverse_ids": [4268], "tcgplayer_id": 729, "cardmarket_id": 10047, "name": "Mystic Denial", "lang": "en", "released_at": "1997-05-01", "uri": "https://api.scryfall.com/cards/52d60f29-6da0-4ce6-9c92-96f313007271", "scryfall_uri": "https://scryfall.com/card/por/61/mystic-denial?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/5/2/52d60f29-6da0-4ce6-9c92-96f313007271.jpg?1562446637", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/2/52d60f29-6da0-4ce6-9c92-96f313007271.jpg?1562446637", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/5/2/52d60f29-6da0-4ce6-9c92-96f313007271.jpg?1562446637", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/5/2/52d60f29-6da0-4ce6-9c92-96f313007271.png?1562446637", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/2/52d60f29-6da0-4ce6-9c92-96f313007271.jpg?1562446637", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/5/2/52d60f29-6da0-4ce6-9c92-96f313007271.jpg?1562446637"}, "mana_cost": "{1}{U}{U}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Counter target creature or sorcery spell.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "478c47df-5058-4ce6-830e-7e80732b2ca9", "set": "por", "set_name": "Portal", "set_type": "starter", "set_uri": "https://api.scryfall.com/sets/478c47df-5058-4ce6-830e-7e80732b2ca9", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Apor&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/por?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/52d60f29-6da0-4ce6-9c92-96f313007271/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ad2bd23a6-4f77-4d6e-bf8f-339cb7a4184d&unique=prints", "collector_number": "61", "digital": false, "rarity": "uncommon", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Hannibal King", "artist_ids": ["47fa68ed-4d79-4116-a562-fc0c11096e81"], "illustration_id": "843a9afc-b229-4a9c-a31a-293f95263b81", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 21742, "prices": {"usd": "0.25", "usd_foil": null, "usd_etched": null, "eur": "0.25", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=4268", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Mystic+Denial&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Mystic+Denial&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Mystic+Denial"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/729?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Mystic+Denial&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Mystic+Denial&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "ae1dd1ac-1a1e-485d-a11f-d1323a69f95e", "oracle_id": "58940a7e-3827-43fa-8bf5-cc88dc295df0", "multiverse_ids": [366401], "mtgo_id": 47731, "mtgo_foil_id": 47732, "tcgplayer_id": 67382, "cardmarket_id": 259854, "name": "Mystic Genesis", "lang": "en", "released_at": "2013-02-01", "uri": "https://api.scryfall.com/cards/ae1dd1ac-1a1e-485d-a11f-d1323a69f95e", "scryfall_uri": "https://scryfall.com/card/gtc/180/mystic-genesis?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/a/e/ae1dd1ac-1a1e-485d-a11f-d1323a69f95e.jpg?1561841867", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/e/ae1dd1ac-1a1e-485d-a11f-d1323a69f95e.jpg?1561841867", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/a/e/ae1dd1ac-1a1e-485d-a11f-d1323a69f95e.jpg?1561841867", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/a/e/ae1dd1ac-1a1e-485d-a11f-d1323a69f95e.png?1561841867", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/e/ae1dd1ac-1a1e-485d-a11f-d1323a69f95e.jpg?1561841867", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/a/e/ae1dd1ac-1a1e-485d-a11f-d1323a69f95e.jpg?1561841867"}, "mana_cost": "{2}{G}{U}{U}", "cmc": 5.0, "type_line": "Instant", "oracle_text": "Counter target spell. Create an X/X green Ooze creature token, where X is that spell's mana value.", "colors": ["G", "U"], "color_identity": ["G", "U"], "keywords": [], "all_parts": [{"object": "related_card", "id": "ae1dd1ac-1a1e-485d-a11f-d1323a69f95e", "component": "combo_piece", "name": "Mystic Genesis", "type_line": "Instant", "uri": "https://api.scryfall.com/cards/ae1dd1ac-1a1e-485d-a11f-d1323a69f95e"}, {"object": "related_card", "id": "d49e91df-0647-4c9f-9c3e-fb8c77c4886c", "component": "token", "name": "Ooze", "type_line": "Token Creature \u2014 Ooze", "uri": "https://api.scryfall.com/cards/d49e91df-0647-4c9f-9c3e-fb8c77c4886c"}], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "035a05f7-e020-4f50-a141-ed16ba704bd2", "set": "gtc", "set_name": "Gatecrash", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/035a05f7-e020-4f50-a141-ed16ba704bd2", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Agtc&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/gtc?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/ae1dd1ac-1a1e-485d-a11f-d1323a69f95e/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A58940a7e-3827-43fa-8bf5-cc88dc295df0&unique=prints", "collector_number": "180", "digital": false, "rarity": "rare", "watermark": "simic", "flavor_text": "\"The Simic can grow anything out of a puddle of sludge. I just hope they never join forces with the Golgari.\"\n\u2014Teysa Karlov, Grand Envoy of Orzhov", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Mike Bierek", "artist_ids": ["e5f52ef5-1a2e-4128-90b0-ccc71cd47ea7"], "illustration_id": "668f8ba0-222b-49fa-9fed-2e7c4b9b549d", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 9897, "penny_rank": 6617, "prices": {"usd": "0.16", "usd_foil": "0.62", "usd_etched": null, "eur": "0.02", "eur_foil": "0.50", "tix": "0.01"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=366401", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Mystic+Genesis&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Mystic+Genesis&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Mystic+Genesis"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/67382?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Mystic+Genesis&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/47731?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "63754036-d51e-47bb-925b-564d9dc922ff", "oracle_id": "d55f6c70-321f-4fb4-bd33-0850ae1a7c36", "multiverse_ids": [460989], "mtgo_id": 71730, "arena_id": 69513, "tcgplayer_id": 188708, "cardmarket_id": 372278, "name": "Narset's Reversal", "lang": "en", "released_at": "2019-05-03", "uri": "https://api.scryfall.com/cards/63754036-d51e-47bb-925b-564d9dc922ff", "scryfall_uri": "https://scryfall.com/card/war/62/narsets-reversal?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/6/3/63754036-d51e-47bb-925b-564d9dc922ff.jpg?1557576279", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/3/63754036-d51e-47bb-925b-564d9dc922ff.jpg?1557576279", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/6/3/63754036-d51e-47bb-925b-564d9dc922ff.jpg?1557576279", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/6/3/63754036-d51e-47bb-925b-564d9dc922ff.png?1557576279", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/3/63754036-d51e-47bb-925b-564d9dc922ff.jpg?1557576279", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/6/3/63754036-d51e-47bb-925b-564d9dc922ff.jpg?1557576279"}, "mana_cost": "{U}{U}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Copy target instant or sorcery spell, then return it to its owner's hand. You may choose new targets for the copy.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "ee044f0b-e101-4ead-8d0e-aa510aad4277", "set": "war", "set_name": "War of the Spark", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/ee044f0b-e101-4ead-8d0e-aa510aad4277", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Awar&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/war?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/63754036-d51e-47bb-925b-564d9dc922ff/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ad55f6c70-321f-4fb4-bd33-0850ae1a7c36&unique=prints", "collector_number": "62", "digital": false, "rarity": "rare", "flavor_text": "\"In the disarray of battle, an enemy's attack may be your most convenient weapon.\"\n\u2014Narset", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Viktor Titov", "artist_ids": ["2270c0b0-afb4-42b0-bcb6-25fe4ad6eef2"], "illustration_id": "8004a2b8-5538-4c87-abe9-a3cce67b719c", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 275, "preview": {"source": "Wizards of the Coast", "source_uri": "https://magic.wizards.com/en/articles/archive/card-preview/chronicling-war-spark-set-design-2019-04-17", "previewed_at": "2019-04-17"}, "prices": {"usd": "6.57", "usd_foil": "11.56", "usd_etched": null, "eur": "3.26", "eur_foil": "5.99", "tix": "0.23"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=460989", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Narset%27s+Reversal&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Narset%27s+Reversal&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Narset%27s+Reversal"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/188708?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Narset%27s+Reversal&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/71730?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "e92c7477-d453-4fa4-acf4-3835ab9eb55a", "oracle_id": "3407fe41-fdd3-4119-8f70-4bc4590a379f", "multiverse_ids": [491701], "mtgo_id": 83095, "arena_id": 73262, "tcgplayer_id": 222130, "cardmarket_id": 496540, "name": "Negate", "lang": "en", "released_at": "2020-09-25", "uri": "https://api.scryfall.com/cards/e92c7477-d453-4fa4-acf4-3835ab9eb55a", "scryfall_uri": "https://scryfall.com/card/znr/71/negate?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/e/9/e92c7477-d453-4fa4-acf4-3835ab9eb55a.jpg?1604194548", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/9/e92c7477-d453-4fa4-acf4-3835ab9eb55a.jpg?1604194548", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/e/9/e92c7477-d453-4fa4-acf4-3835ab9eb55a.jpg?1604194548", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/e/9/e92c7477-d453-4fa4-acf4-3835ab9eb55a.png?1604194548", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/9/e92c7477-d453-4fa4-acf4-3835ab9eb55a.jpg?1604194548", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/e/9/e92c7477-d453-4fa4-acf4-3835ab9eb55a.jpg?1604194548"}, "mana_cost": "{1}{U}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Counter target noncreature spell.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "f4e01fa7-b254-42dd-849f-69b58027a8c4", "set": "znr", "set_name": "Zendikar Rising", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/f4e01fa7-b254-42dd-849f-69b58027a8c4", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aznr&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/znr?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/e92c7477-d453-4fa4-acf4-3835ab9eb55a/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A3407fe41-fdd3-4119-8f70-4bc4590a379f&unique=prints", "collector_number": "71", "digital": false, "rarity": "common", "flavor_text": "\"The ancient kor were a clever bunch with a taste for nasty traps. Spikes, poison, fire pouring forth with no warning . . . I've seen and disabled them all. If you intend to raid a Skyclave, you'd be wise to hire me on.\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Billy Christian", "artist_ids": ["10f26f94-64fc-4174-856e-701bea4f1521"], "illustration_id": "344cafa5-9687-4361-9a67-77b5e9c2aea4", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 50, "penny_rank": 210, "preview": {"source": "Hello Good Game", "source_uri": "https://www.youtube.com/watch?v=o8Ba05CRKv8", "previewed_at": "2020-09-07"}, "prices": {"usd": "0.10", "usd_foil": "0.21", "usd_etched": null, "eur": "0.13", "eur_foil": "0.13", "tix": "0.01"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=491701", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Negate&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Negate&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Negate"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/222130?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Negate&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/83095?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "31534f45-43e6-4103-bf58-ad8fa688e4b0", "oracle_id": "3407fe41-fdd3-4119-8f70-4bc4590a379f", "multiverse_ids": [439701], "mtgo_id": 66541, "arena_id": 66705, "tcgplayer_id": 155801, "cardmarket_id": 315384, "name": "Negate", "lang": "en", "released_at": "2018-01-19", "uri": "https://api.scryfall.com/cards/31534f45-43e6-4103-bf58-ad8fa688e4b0", "scryfall_uri": "https://scryfall.com/card/rix/44/negate?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/3/1/31534f45-43e6-4103-bf58-ad8fa688e4b0.jpg?1555039942", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/1/31534f45-43e6-4103-bf58-ad8fa688e4b0.jpg?1555039942", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/3/1/31534f45-43e6-4103-bf58-ad8fa688e4b0.jpg?1555039942", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/3/1/31534f45-43e6-4103-bf58-ad8fa688e4b0.png?1555039942", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/1/31534f45-43e6-4103-bf58-ad8fa688e4b0.jpg?1555039942", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/3/1/31534f45-43e6-4103-bf58-ad8fa688e4b0.jpg?1555039942"}, "mana_cost": "{1}{U}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Counter target noncreature spell.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "2f7e40fc-772d-4a85-bfdd-01653c41d0fa", "set": "rix", "set_name": "Rivals of Ixalan", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/2f7e40fc-772d-4a85-bfdd-01653c41d0fa", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Arix&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/rix?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/31534f45-43e6-4103-bf58-ad8fa688e4b0/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A3407fe41-fdd3-4119-8f70-4bc4590a379f&unique=prints", "collector_number": "44", "digital": false, "rarity": "common", "flavor_text": "\"As one, nature lifts its voice to tell you this: 'No.'\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Magali Villeneuve", "artist_ids": ["9e6a55ae-be4d-4c23-a2a5-135737ffd879"], "illustration_id": "5ebee670-4898-4816-a90a-3168fd54df0e", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 50, "penny_rank": 210, "prices": {"usd": "0.12", "usd_foil": "1.25", "usd_etched": null, "eur": "0.11", "eur_foil": "0.45", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=439701", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Negate&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Negate&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Negate"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/155801?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Negate&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/66541?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "cb142515-0856-441d-84d4-9c9d450a86e9", "oracle_id": "3407fe41-fdd3-4119-8f70-4bc4590a379f", "multiverse_ids": [423707], "mtgo_id": 62627, "mtgo_foil_id": 62628, "tcgplayer_id": 126511, "cardmarket_id": 294865, "name": "Negate", "lang": "en", "released_at": "2017-01-20", "uri": "https://api.scryfall.com/cards/cb142515-0856-441d-84d4-9c9d450a86e9", "scryfall_uri": "https://scryfall.com/card/aer/40/negate?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/c/b/cb142515-0856-441d-84d4-9c9d450a86e9.jpg?1576381530", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/b/cb142515-0856-441d-84d4-9c9d450a86e9.jpg?1576381530", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/c/b/cb142515-0856-441d-84d4-9c9d450a86e9.jpg?1576381530", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/c/b/cb142515-0856-441d-84d4-9c9d450a86e9.png?1576381530", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/b/cb142515-0856-441d-84d4-9c9d450a86e9.jpg?1576381530", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/c/b/cb142515-0856-441d-84d4-9c9d450a86e9.jpg?1576381530"}, "mana_cost": "{1}{U}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Counter target noncreature spell.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "a4a0db50-8826-4e73-833c-3fd934375f96", "set": "aer", "set_name": "Aether Revolt", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/a4a0db50-8826-4e73-833c-3fd934375f96", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aaer&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/aer?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/cb142515-0856-441d-84d4-9c9d450a86e9/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A3407fe41-fdd3-4119-8f70-4bc4590a379f&unique=prints", "collector_number": "40", "digital": false, "rarity": "common", "flavor_text": "\"It is fascinating to see how the people of this plane replicate magical techniques without a natural gift. Also frustrating.\"\n\u2014Jace Beleren", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Zack Stella", "artist_ids": ["17bc7f55-958b-43f4-bb40-09746d05b3f9"], "illustration_id": "86ce46b3-799d-4811-a58b-7db5fe6a12e1", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 50, "penny_rank": 210, "prices": {"usd": "0.08", "usd_foil": "0.28", "usd_etched": null, "eur": "0.04", "eur_foil": "0.40", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=423707", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Negate&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Negate&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Negate"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/126511?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Negate&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/62627?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "026c499d-3d5b-4f65-a824-f78f146b82ef", "oracle_id": "3407fe41-fdd3-4119-8f70-4bc4590a379f", "multiverse_ids": [407569], "mtgo_id": 59511, "mtgo_foil_id": 59512, "tcgplayer_id": 111057, "cardmarket_id": 287352, "name": "Negate", "lang": "en", "released_at": "2016-01-22", "uri": "https://api.scryfall.com/cards/026c499d-3d5b-4f65-a824-f78f146b82ef", "scryfall_uri": "https://scryfall.com/card/ogw/59/negate?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/0/2/026c499d-3d5b-4f65-a824-f78f146b82ef.jpg?1562895467", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/2/026c499d-3d5b-4f65-a824-f78f146b82ef.jpg?1562895467", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/0/2/026c499d-3d5b-4f65-a824-f78f146b82ef.jpg?1562895467", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/0/2/026c499d-3d5b-4f65-a824-f78f146b82ef.png?1562895467", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/2/026c499d-3d5b-4f65-a824-f78f146b82ef.jpg?1562895467", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/0/2/026c499d-3d5b-4f65-a824-f78f146b82ef.jpg?1562895467"}, "mana_cost": "{1}{U}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Counter target noncreature spell.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "cd51d245-8f95-45b0-ab5f-e2b3a3eb5dfe", "set": "ogw", "set_name": "Oath of the Gatewatch", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/cd51d245-8f95-45b0-ab5f-e2b3a3eb5dfe", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aogw&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ogw?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/026c499d-3d5b-4f65-a824-f78f146b82ef/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A3407fe41-fdd3-4119-8f70-4bc4590a379f&unique=prints", "collector_number": "59", "digital": false, "rarity": "common", "flavor_text": "\"Eventually, everything returns to silence.\"\n\u2014Zarra, lullmage", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Ryan Pancoast", "artist_ids": ["89cc9475-dda2-4d13-bf88-54b92867a25c"], "illustration_id": "39fbeefd-4b33-4742-ad3b-5f8f865e36ea", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 50, "penny_rank": 210, "prices": {"usd": "0.12", "usd_foil": "0.48", "usd_etched": null, "eur": "0.02", "eur_foil": "0.20", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=407569", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Negate&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Negate&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Negate"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/111057?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Negate&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/59511?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "60380ed0-fed1-4d68-9763-56a9ff8ac5e6", "oracle_id": "3407fe41-fdd3-4119-8f70-4bc4590a379f", "multiverse_ids": [394636], "mtgo_id": 55940, "mtgo_foil_id": 55941, "tcgplayer_id": 96647, "cardmarket_id": 273315, "name": "Negate", "lang": "en", "released_at": "2015-03-27", "uri": "https://api.scryfall.com/cards/60380ed0-fed1-4d68-9763-56a9ff8ac5e6", "scryfall_uri": "https://scryfall.com/card/dtk/65/negate?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/6/0/60380ed0-fed1-4d68-9763-56a9ff8ac5e6.jpg?1562787156", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/0/60380ed0-fed1-4d68-9763-56a9ff8ac5e6.jpg?1562787156", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/6/0/60380ed0-fed1-4d68-9763-56a9ff8ac5e6.jpg?1562787156", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/6/0/60380ed0-fed1-4d68-9763-56a9ff8ac5e6.png?1562787156", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/0/60380ed0-fed1-4d68-9763-56a9ff8ac5e6.jpg?1562787156", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/6/0/60380ed0-fed1-4d68-9763-56a9ff8ac5e6.jpg?1562787156"}, "mana_cost": "{1}{U}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Counter target noncreature spell.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "7e72625f-f320-4552-a719-d11e2f1853bd", "set": "dtk", "set_name": "Dragons of Tarkir", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/7e72625f-f320-4552-a719-d11e2f1853bd", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Adtk&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/dtk?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/60380ed0-fed1-4d68-9763-56a9ff8ac5e6/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A3407fe41-fdd3-4119-8f70-4bc4590a379f&unique=prints", "collector_number": "65", "digital": false, "rarity": "common", "flavor_text": "\"You cannot be an Ojutai monk. They prize wisdom and skill, and you have neither.\"\n\u2014Siara, the Dragon's Mouth", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Willian Murai", "artist_ids": ["5a553c8e-e3b9-40e0-bde5-1db621c53939"], "illustration_id": "216ba9bc-60d1-489f-a521-a86793a9dbdd", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 50, "penny_rank": 210, "prices": {"usd": "0.12", "usd_foil": "0.52", "usd_etched": null, "eur": "0.15", "eur_foil": "0.24", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=394636", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Negate&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Negate&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Negate"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/96647?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Negate&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/55940?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "5a501252-e722-4ebf-bcf7-f53a42745fa7", "oracle_id": "3407fe41-fdd3-4119-8f70-4bc4590a379f", "multiverse_ids": [152570], "mtgo_id": 29010, "mtgo_foil_id": 29011, "tcgplayer_id": 18024, "cardmarket_id": 18872, "name": "Negate", "lang": "en", "released_at": "2008-02-01", "uri": "https://api.scryfall.com/cards/5a501252-e722-4ebf-bcf7-f53a42745fa7", "scryfall_uri": "https://scryfall.com/card/mor/43/negate?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/5/a/5a501252-e722-4ebf-bcf7-f53a42745fa7.jpg?1562878670", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/a/5a501252-e722-4ebf-bcf7-f53a42745fa7.jpg?1562878670", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/5/a/5a501252-e722-4ebf-bcf7-f53a42745fa7.jpg?1562878670", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/5/a/5a501252-e722-4ebf-bcf7-f53a42745fa7.png?1562878670", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/a/5a501252-e722-4ebf-bcf7-f53a42745fa7.jpg?1562878670", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/5/a/5a501252-e722-4ebf-bcf7-f53a42745fa7.jpg?1562878670"}, "mana_cost": "{1}{U}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Counter target noncreature spell.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "c41550df-7b41-41a3-85ab-8612eb2f168f", "set": "mor", "set_name": "Morningtide", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/c41550df-7b41-41a3-85ab-8612eb2f168f", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Amor&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/mor?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/5a501252-e722-4ebf-bcf7-f53a42745fa7/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A3407fe41-fdd3-4119-8f70-4bc4590a379f&unique=prints", "collector_number": "43", "digital": false, "rarity": "common", "flavor_text": "Masters of the arcane savor a delicious irony. Their study of deep and complex arcana leads to such a simple end: the ability to say merely yes or no.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Jeremy Jarvis", "artist_ids": ["b40ac320-89b4-4c51-a85f-4a4b63ae614e"], "illustration_id": "35656b4b-460f-4173-9dae-509c7bcf17f7", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 50, "penny_rank": 210, "prices": {"usd": "0.18", "usd_foil": "4.82", "usd_etched": null, "eur": "0.17", "eur_foil": "2.50", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=152570", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Negate&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Negate&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Negate"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/18024?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Negate&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/29010?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "5bfe3a17-3349-4fcc-a9b5-418faa55cc43", "oracle_id": "3407fe41-fdd3-4119-8f70-4bc4590a379f", "multiverse_ids": [517568], "mtgo_id": 89093, "arena_id": 77497, "tcgplayer_id": 235301, "tcgplayer_etched_id": 235302, "cardmarket_id": 556527, "name": "Negate", "lang": "en", "released_at": "2021-04-23", "uri": "https://api.scryfall.com/cards/5bfe3a17-3349-4fcc-a9b5-418faa55cc43", "scryfall_uri": "https://scryfall.com/card/sta/18/negate?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/5/b/5bfe3a17-3349-4fcc-a9b5-418faa55cc43.jpg?1623592516", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/b/5bfe3a17-3349-4fcc-a9b5-418faa55cc43.jpg?1623592516", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/5/b/5bfe3a17-3349-4fcc-a9b5-418faa55cc43.jpg?1623592516", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/5/b/5bfe3a17-3349-4fcc-a9b5-418faa55cc43.png?1623592516", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/b/5bfe3a17-3349-4fcc-a9b5-418faa55cc43.jpg?1623592516", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/5/b/5bfe3a17-3349-4fcc-a9b5-418faa55cc43.jpg?1623592516"}, "mana_cost": "{1}{U}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Counter target noncreature spell.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil", "etched"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "5064a720-907f-4cb6-a425-766dc1dd7374", "set": "sta", "set_name": "Strixhaven Mystical Archive", "set_type": "masterpiece", "set_uri": "https://api.scryfall.com/sets/5064a720-907f-4cb6-a425-766dc1dd7374", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Asta&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/sta?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/5bfe3a17-3349-4fcc-a9b5-418faa55cc43/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A3407fe41-fdd3-4119-8f70-4bc4590a379f&unique=prints", "collector_number": "18", "digital": false, "rarity": "uncommon", "flavor_text": "\"Shatter your opponent's spell with enough force, and you'll shatter their confidence with it.\"\n\u2014*Tome of Obstructions*, marginalia", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Dominik Mayer", "artist_ids": ["c3439c4a-1fee-4e33-9b89-18dac27ac927"], "illustration_id": "620966a8-a3ec-4401-a7b3-84cff39e3141", "border_color": "borderless", "frame": "2015", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "edhrec_rank": 50, "penny_rank": 210, "prices": {"usd": "0.49", "usd_foil": "1.10", "usd_etched": "1.58", "eur": "0.27", "eur_foil": "0.71", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=517568", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Negate&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Negate&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Negate"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/235301?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Negate&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/89093?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "9850fbe9-68d2-4952-b48d-4737cef34f4a", "oracle_id": "3407fe41-fdd3-4119-8f70-4bc4590a379f", "multiverse_ids": [447135], "tcgplayer_id": 162753, "cardmarket_id": 320576, "name": "Negate", "lang": "en", "released_at": "2018-06-15", "uri": "https://api.scryfall.com/cards/9850fbe9-68d2-4952-b48d-4737cef34f4a", "scryfall_uri": "https://scryfall.com/card/ss1/7/negate?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/9/8/9850fbe9-68d2-4952-b48d-4737cef34f4a.jpg?1561757632", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/8/9850fbe9-68d2-4952-b48d-4737cef34f4a.jpg?1561757632", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/9/8/9850fbe9-68d2-4952-b48d-4737cef34f4a.jpg?1561757632", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/9/8/9850fbe9-68d2-4952-b48d-4737cef34f4a.png?1561757632", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/8/9850fbe9-68d2-4952-b48d-4737cef34f4a.jpg?1561757632", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/9/8/9850fbe9-68d2-4952-b48d-4737cef34f4a.jpg?1561757632"}, "mana_cost": "{1}{U}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Counter target noncreature spell.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "a24031db-1378-420f-b671-bcaec52d6f6c", "set": "ss1", "set_name": "Signature Spellbook: Jace", "set_type": "spellbook", "set_uri": "https://api.scryfall.com/sets/a24031db-1378-420f-b671-bcaec52d6f6c", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ass1&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ss1?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/9850fbe9-68d2-4952-b48d-4737cef34f4a/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A3407fe41-fdd3-4119-8f70-4bc4590a379f&unique=prints", "collector_number": "7", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Jason Rainville", "artist_ids": ["6ed7e669-579b-443d-b223-e5cbcb2a7483"], "illustration_id": "bb559c35-a901-4625-849e-d3514e876e0a", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "edhrec_rank": 50, "penny_rank": 210, "prices": {"usd": "0.33", "usd_foil": "0.94", "usd_etched": null, "eur": "0.25", "eur_foil": "1.48", "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=447135", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Negate&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Negate&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Negate"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/162753?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Negate&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Negate&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "226e5187-d285-4547-869d-761fdbee6f1b", "oracle_id": "3407fe41-fdd3-4119-8f70-4bc4590a379f", "multiverse_ids": [], "tcgplayer_id": 38323, "cardmarket_id": 21296, "name": "Negate", "lang": "en", "released_at": "2009-01-01", "uri": "https://api.scryfall.com/cards/226e5187-d285-4547-869d-761fdbee6f1b", "scryfall_uri": "https://scryfall.com/card/p09/8/negate?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/2/2/226e5187-d285-4547-869d-761fdbee6f1b.jpg?1561756781", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/2/226e5187-d285-4547-869d-761fdbee6f1b.jpg?1561756781", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/2/2/226e5187-d285-4547-869d-761fdbee6f1b.jpg?1561756781", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/2/2/226e5187-d285-4547-869d-761fdbee6f1b.png?1561756781", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/2/226e5187-d285-4547-869d-761fdbee6f1b.jpg?1561756781", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/2/2/226e5187-d285-4547-869d-761fdbee6f1b.jpg?1561756781"}, "mana_cost": "{1}{U}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Counter target noncreature spell.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": true, "reprint": true, "variation": false, "set_id": "824eec08-e609-41db-8de4-4e58d8aeb37d", "set": "p09", "set_name": "Magic Player Rewards 2009", "set_type": "promo", "set_uri": "https://api.scryfall.com/sets/824eec08-e609-41db-8de4-4e58d8aeb37d", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ap09&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/p09?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/226e5187-d285-4547-869d-761fdbee6f1b/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A3407fe41-fdd3-4119-8f70-4bc4590a379f&unique=prints", "collector_number": "8", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Ralph Horsley", "artist_ids": ["a51444a8-eb4b-4615-a663-d1d418591ccb"], "illustration_id": "a9ad79f2-faad-407e-9199-fe193067fcf5", "border_color": "black", "frame": "2003", "full_art": true, "textless": true, "booster": false, "story_spotlight": false, "promo_types": ["playerrewards"], "edhrec_rank": 50, "penny_rank": 210, "prices": {"usd": "5.72", "usd_foil": null, "usd_etched": null, "eur": "3.00", "eur_foil": null, "tix": null}, "related_uris": {"tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Negate&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Negate&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Negate"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/38323?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Negate&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Negate&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "0430da3c-9460-4b62-ae28-2e7e6f4d06a4", "oracle_id": "c2c60973-b4d5-43fa-a0c4-b5688b28df05", "multiverse_ids": [479579], "mtgo_id": 80127, "arena_id": 71126, "tcgplayer_id": 212117, "cardmarket_id": 451933, "name": "Neutralize", "lang": "en", "released_at": "2020-04-24", "uri": "https://api.scryfall.com/cards/0430da3c-9460-4b62-ae28-2e7e6f4d06a4", "scryfall_uri": "https://scryfall.com/card/iko/59/neutralize?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/0/4/0430da3c-9460-4b62-ae28-2e7e6f4d06a4.jpg?1591226400", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/4/0430da3c-9460-4b62-ae28-2e7e6f4d06a4.jpg?1591226400", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/0/4/0430da3c-9460-4b62-ae28-2e7e6f4d06a4.jpg?1591226400", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/0/4/0430da3c-9460-4b62-ae28-2e7e6f4d06a4.png?1591226400", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/4/0430da3c-9460-4b62-ae28-2e7e6f4d06a4.jpg?1591226400", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/0/4/0430da3c-9460-4b62-ae28-2e7e6f4d06a4.jpg?1591226400"}, "mana_cost": "{1}{U}{U}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Counter target spell.\nCycling {2} ({2}, Discard this card: Draw a card.)", "colors": ["U"], "color_identity": ["U"], "keywords": ["Cycling"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "19feda43-15ab-427e-a0e4-148a4bf2b03a", "set": "iko", "set_name": "Ikoria: Lair of Behemoths", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/19feda43-15ab-427e-a0e4-148a4bf2b03a", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aiko&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/iko?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/0430da3c-9460-4b62-ae28-2e7e6f4d06a4/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ac2c60973-b4d5-43fa-a0c4-b5688b28df05&unique=prints", "collector_number": "59", "digital": false, "rarity": "uncommon", "flavor_text": "On Ikoria, reactive magic can make the difference between barely grazed and really dead.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Yongjae Choi", "artist_ids": ["5ab91c3b-a6da-4751-a56e-81d0f61a67ab"], "illustration_id": "6abfa6e9-690f-4f8c-ae27-92fef0721f47", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 2303, "penny_rank": 445, "preview": {"source": "ChannelFireball", "source_uri": "https://www.channelfireball.com/all-strategy/articles/exclusive-ikoria-preview-card-neutralize/", "previewed_at": "2020-04-03"}, "prices": {"usd": "0.08", "usd_foil": "0.23", "usd_etched": null, "eur": "0.27", "eur_foil": "0.09", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=479579", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Neutralize&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Neutralize&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Neutralize"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/212117?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Neutralize&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/80127?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "e549a8fc-6001-43db-88b1-ce8ed42a3443", "oracle_id": "e42ca67d-c9c3-499a-a7b7-63dc2dafdeab", "multiverse_ids": [391887], "mtgo_id": 55682, "mtgo_foil_id": 55683, "tcgplayer_id": 95287, "cardmarket_id": 271592, "name": "Neutralizing Blast", "lang": "en", "released_at": "2015-01-23", "uri": "https://api.scryfall.com/cards/e549a8fc-6001-43db-88b1-ce8ed42a3443", "scryfall_uri": "https://scryfall.com/card/frf/44/neutralizing-blast?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/e/5/e549a8fc-6001-43db-88b1-ce8ed42a3443.jpg?1562830917", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/5/e549a8fc-6001-43db-88b1-ce8ed42a3443.jpg?1562830917", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/e/5/e549a8fc-6001-43db-88b1-ce8ed42a3443.jpg?1562830917", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/e/5/e549a8fc-6001-43db-88b1-ce8ed42a3443.png?1562830917", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/5/e549a8fc-6001-43db-88b1-ce8ed42a3443.jpg?1562830917", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/e/5/e549a8fc-6001-43db-88b1-ce8ed42a3443.jpg?1562830917"}, "mana_cost": "{1}{U}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Counter target multicolored spell.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "7bb5cb2b-081a-4c8c-b7e1-494046e6baa1", "set": "frf", "set_name": "Fate Reforged", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/7bb5cb2b-081a-4c8c-b7e1-494046e6baa1", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Afrf&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/frf?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/e549a8fc-6001-43db-88b1-ce8ed42a3443/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ae42ca67d-c9c3-499a-a7b7-63dc2dafdeab&unique=prints", "collector_number": "44", "digital": false, "rarity": "uncommon", "flavor_text": "\"To defeat your enemies, you must remove their ability to make war against you.\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Dan Scott", "artist_ids": ["f852fa13-137e-40f2-bbc1-0f01df09c0e0"], "illustration_id": "e69e0399-778c-440b-ab48-b973c9202d2b", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 15251, "penny_rank": 9070, "prices": {"usd": "0.04", "usd_foil": "0.25", "usd_etched": null, "eur": "0.02", "eur_foil": "0.10", "tix": "0.04"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=391887", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Neutralizing+Blast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Neutralizing+Blast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Neutralizing+Blast"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/95287?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Neutralizing+Blast&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/55682?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "3dab4f64-2a91-409a-b83b-45b22afd22ff", "oracle_id": "fe1a9af0-1774-4d54-b59f-f42dc8afcbe9", "multiverse_ids": [130564], "mtgo_id": 26916, "mtgo_foil_id": 26917, "tcgplayer_id": 14951, "cardmarket_id": 15047, "name": "Nix", "lang": "en", "released_at": "2007-05-04", "uri": "https://api.scryfall.com/cards/3dab4f64-2a91-409a-b83b-45b22afd22ff", "scryfall_uri": "https://scryfall.com/card/fut/55/nix?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/3/d/3dab4f64-2a91-409a-b83b-45b22afd22ff.jpg?1562907421", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/d/3dab4f64-2a91-409a-b83b-45b22afd22ff.jpg?1562907421", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/3/d/3dab4f64-2a91-409a-b83b-45b22afd22ff.jpg?1562907421", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/3/d/3dab4f64-2a91-409a-b83b-45b22afd22ff.png?1562907421", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/d/3dab4f64-2a91-409a-b83b-45b22afd22ff.jpg?1562907421", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/3/d/3dab4f64-2a91-409a-b83b-45b22afd22ff.jpg?1562907421"}, "mana_cost": "{U}", "cmc": 1.0, "type_line": "Instant", "oracle_text": "Counter target spell if no mana was spent to cast it.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "bf951ddb-4445-4923-87cb-3fe4ac3c6b9a", "set": "fut", "set_name": "Future Sight", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/bf951ddb-4445-4923-87cb-3fe4ac3c6b9a", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Afut&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/fut?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/3dab4f64-2a91-409a-b83b-45b22afd22ff/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Afe1a9af0-1774-4d54-b59f-f42dc8afcbe9&unique=prints", "collector_number": "55", "digital": false, "rarity": "rare", "flavor_text": "\"There is no shortcut to work done true and well. The Creators learned this to their sorrow, the first time they made the world.\"\n\u2014Githri the Prisoner", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Brian Despain", "artist_ids": ["b4733d20-d538-4dd6-81fe-408c958ca54b"], "illustration_id": "a74e0d9b-79df-4973-8cfc-5f633e2cd911", "border_color": "black", "frame": "future", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 17604, "prices": {"usd": "2.30", "usd_foil": "30.00", "usd_etched": null, "eur": "2.10", "eur_foil": "11.95", "tix": "0.01"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=130564", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Nix&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Nix&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Nix"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/14951?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Nix&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/26916?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "bc9888a1-6f35-4802-b8fb-902017736d4a", "oracle_id": "7c6e0198-edd8-42b8-ba1b-549e1713d188", "multiverse_ids": [460990], "mtgo_id": 71732, "arena_id": 69514, "tcgplayer_id": 187124, "cardmarket_id": 371806, "name": "No Escape", "lang": "en", "released_at": "2019-05-03", "uri": "https://api.scryfall.com/cards/bc9888a1-6f35-4802-b8fb-902017736d4a", "scryfall_uri": "https://scryfall.com/card/war/63/no-escape?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/b/c/bc9888a1-6f35-4802-b8fb-902017736d4a.jpg?1557576285", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/c/bc9888a1-6f35-4802-b8fb-902017736d4a.jpg?1557576285", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/b/c/bc9888a1-6f35-4802-b8fb-902017736d4a.jpg?1557576285", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/b/c/bc9888a1-6f35-4802-b8fb-902017736d4a.png?1557576285", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/c/bc9888a1-6f35-4802-b8fb-902017736d4a.jpg?1557576285", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/b/c/bc9888a1-6f35-4802-b8fb-902017736d4a.jpg?1557576285"}, "mana_cost": "{2}{U}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Counter target creature or planeswalker spell. If that spell is countered this way, exile it instead of putting it into its owner's graveyard.\nScry 1.", "colors": ["U"], "color_identity": ["U"], "keywords": ["Scry"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "ee044f0b-e101-4ead-8d0e-aa510aad4277", "set": "war", "set_name": "War of the Spark", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/ee044f0b-e101-4ead-8d0e-aa510aad4277", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Awar&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/war?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/bc9888a1-6f35-4802-b8fb-902017736d4a/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A7c6e0198-edd8-42b8-ba1b-549e1713d188&unique=prints", "collector_number": "63", "digital": false, "rarity": "common", "flavor_text": "Jace surmised that they were walking into Bolas's trap. He felt no joy in being right.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "G-host Lee", "artist_ids": ["009fe350-a82b-430f-92bc-04fe08d78f50"], "illustration_id": "626739d7-a5b0-4dff-871e-abad1126f724", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": true, "edhrec_rank": 9518, "penny_rank": 9240, "preview": {"source": "Wizards of the Coast", "source_uri": "https://www.twitch.tv/videos/404095372", "previewed_at": "2019-03-31"}, "prices": {"usd": "0.03", "usd_foil": "0.26", "usd_etched": null, "eur": "0.02", "eur_foil": "0.10", "tix": "0.04"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=460990", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=No+Escape&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=No+Escape&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=No+Escape"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/187124?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=No+Escape&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/71732?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "569e2c39-7a49-4a3b-afe5-1862a7da8026", "oracle_id": "5da5d8a3-009e-4d8a-977e-6ebc73ba2682", "multiverse_ids": [198296], "mtgo_id": 36760, "mtgo_foil_id": 36761, "tcgplayer_id": 34702, "cardmarket_id": 22508, "name": "Not of This World", "lang": "en", "released_at": "2010-04-23", "uri": "https://api.scryfall.com/cards/569e2c39-7a49-4a3b-afe5-1862a7da8026", "scryfall_uri": "https://scryfall.com/card/roe/8/not-of-this-world?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/5/6/569e2c39-7a49-4a3b-afe5-1862a7da8026.jpg?1562704022", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/6/569e2c39-7a49-4a3b-afe5-1862a7da8026.jpg?1562704022", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/5/6/569e2c39-7a49-4a3b-afe5-1862a7da8026.jpg?1562704022", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/5/6/569e2c39-7a49-4a3b-afe5-1862a7da8026.png?1562704022", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/6/569e2c39-7a49-4a3b-afe5-1862a7da8026.jpg?1562704022", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/5/6/569e2c39-7a49-4a3b-afe5-1862a7da8026.jpg?1562704022"}, "mana_cost": "{7}", "cmc": 7.0, "type_line": "Tribal Instant \u2014 Eldrazi", "oracle_text": "Counter target spell or ability that targets a permanent you control.\nThis spell costs {7} less to cast if it targets a spell or ability that targets a creature you control with power 7 or greater.", "colors": [], "color_identity": [], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "eadb8a82-ec56-4623-b50e-42e7e60cb535", "set": "roe", "set_name": "Rise of the Eldrazi", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/eadb8a82-ec56-4623-b50e-42e7e60cb535", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aroe&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/roe?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/569e2c39-7a49-4a3b-afe5-1862a7da8026/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A5da5d8a3-009e-4d8a-977e-6ebc73ba2682&unique=prints", "collector_number": "8", "digital": false, "rarity": "uncommon", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Izzy", "artist_ids": ["2c3d2473-ff5d-4309-8194-e0b2def2ab65"], "illustration_id": "854ffd4e-d66b-47c8-b7a2-48488b24e41d", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 3243, "penny_rank": 6927, "prices": {"usd": "2.40", "usd_foil": "11.35", "usd_etched": null, "eur": "2.19", "eur_foil": "17.50", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=198296", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Not+of+This+World&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Not+of+This+World&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Not+of+This+World"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/34702?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Not+of+This+World&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/36760?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "a940d859-3fb1-4946-8277-b7c503605b1e", "oracle_id": "5ea295af-e117-49cc-836b-da16b5d5bbdf", "multiverse_ids": [378417], "mtgo_id": 51597, "mtgo_foil_id": 51598, "tcgplayer_id": 79144, "cardmarket_id": 266023, "name": "Nullify", "lang": "en", "released_at": "2014-02-07", "uri": "https://api.scryfall.com/cards/a940d859-3fb1-4946-8277-b7c503605b1e", "scryfall_uri": "https://scryfall.com/card/bng/45/nullify?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/a/9/a940d859-3fb1-4946-8277-b7c503605b1e.jpg?1593091715", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/9/a940d859-3fb1-4946-8277-b7c503605b1e.jpg?1593091715", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/a/9/a940d859-3fb1-4946-8277-b7c503605b1e.jpg?1593091715", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/a/9/a940d859-3fb1-4946-8277-b7c503605b1e.png?1593091715", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/9/a940d859-3fb1-4946-8277-b7c503605b1e.jpg?1593091715", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/a/9/a940d859-3fb1-4946-8277-b7c503605b1e.jpg?1593091715"}, "mana_cost": "{U}{U}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Counter target creature or Aura spell.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "50a80fe4-a757-408f-ad23-52c5cc5f45cc", "set": "bng", "set_name": "Born of the Gods", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/50a80fe4-a757-408f-ad23-52c5cc5f45cc", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Abng&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/bng?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/a940d859-3fb1-4946-8277-b7c503605b1e/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A5ea295af-e117-49cc-836b-da16b5d5bbdf&unique=prints", "collector_number": "45", "digital": false, "rarity": "common", "flavor_text": "\"Those who incur Thassa's anger will be swallowed whole by her waves, or torn asunder by her bident.\"\n\u2014Thrasios, triton hero", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Adam Paquette", "artist_ids": ["89023dad-e6c0-41e0-83fb-eb2bfbbdc3f2"], "illustration_id": "cc2513d2-a9f2-47fb-ad78-1d19f9b6e703", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 13059, "penny_rank": 4560, "prices": {"usd": "0.04", "usd_foil": "0.15", "usd_etched": null, "eur": "0.04", "eur_foil": "0.15", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=378417", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Nullify&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Nullify&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Nullify"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/79144?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Nullify&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/51597?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "9961562d-cad9-40e5-afae-3ebce77a2260", "oracle_id": "884eaa3f-b6af-4f0e-b0e7-cd40666986ce", "multiverse_ids": [555409], "mtgo_id": 98635, "arena_id": 80359, "tcgplayer_id": 267673, "cardmarket_id": 650858, "name": "Obscura Charm", "lang": "en", "released_at": "2022-04-29", "uri": "https://api.scryfall.com/cards/9961562d-cad9-40e5-afae-3ebce77a2260", "scryfall_uri": "https://scryfall.com/card/snc/208/obscura-charm?utm_source=api", "layout": "normal", "highres_image": false, "image_status": "lowres", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/9/9/9961562d-cad9-40e5-afae-3ebce77a2260.jpg?1648583418", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/9/9961562d-cad9-40e5-afae-3ebce77a2260.jpg?1648583418", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/9/9/9961562d-cad9-40e5-afae-3ebce77a2260.jpg?1648583418", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/9/9/9961562d-cad9-40e5-afae-3ebce77a2260.png?1648583418", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/9/9961562d-cad9-40e5-afae-3ebce77a2260.jpg?1648583418", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/9/9/9961562d-cad9-40e5-afae-3ebce77a2260.jpg?1648583418"}, "mana_cost": "{W}{U}{B}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Choose one \u2014\n\u2022 Return target multicolored permanent card with mana value 3 or less from your graveyard to the battlefield tapped.\n\u2022 Counter target instant or sorcery spell.\n\u2022 Destroy target creature or planeswalker with mana value 3 or less.", "colors": ["B", "U", "W"], "color_identity": ["B", "U", "W"], "keywords": [], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "arena", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "df837242-8c15-42e4-b049-c933a02dc501", "set": "snc", "set_name": "Streets of New Capenna", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/df837242-8c15-42e4-b049-c933a02dc501", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Asnc&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/snc?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/9961562d-cad9-40e5-afae-3ebce77a2260/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A884eaa3f-b6af-4f0e-b0e7-cd40666986ce&unique=prints", "collector_number": "208", "digital": false, "rarity": "uncommon", "watermark": "obscura", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Steve Argyle", "artist_ids": ["a44ddda4-5331-4f83-aac9-3e00ed36bd7b"], "illustration_id": "1cbfa74a-4a68-4bae-88fe-f182d9f1f6ca", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 5329, "penny_rank": 1467, "preview": {"source": "Wizards of the Coast", "source_uri": "https://magic.wizards.com/en/articles/archive/magic-story/episode-2-dirty-laundry-2022-03-29", "previewed_at": "2022-03-29"}, "prices": {"usd": "0.09", "usd_foil": "0.16", "usd_etched": null, "eur": "0.10", "eur_foil": "0.18", "tix": "0.01"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=555409", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Obscura+Charm&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Obscura+Charm&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Obscura+Charm"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/267673?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Obscura+Charm&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/98635?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "4a02b758-65b6-4c25-83b9-de63a1a92b51", "oracle_id": "884eaa3f-b6af-4f0e-b0e7-cd40666986ce", "multiverse_ids": [558721], "arena_id": 80501, "tcgplayer_id": 267674, "cardmarket_id": 650859, "name": "Obscura Charm", "lang": "en", "released_at": "2022-04-29", "uri": "https://api.scryfall.com/cards/4a02b758-65b6-4c25-83b9-de63a1a92b51", "scryfall_uri": "https://scryfall.com/card/snc/323/obscura-charm?utm_source=api", "layout": "normal", "highres_image": false, "image_status": "lowres", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/4/a/4a02b758-65b6-4c25-83b9-de63a1a92b51.jpg?1648583494", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/a/4a02b758-65b6-4c25-83b9-de63a1a92b51.jpg?1648583494", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/4/a/4a02b758-65b6-4c25-83b9-de63a1a92b51.jpg?1648583494", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/4/a/4a02b758-65b6-4c25-83b9-de63a1a92b51.png?1648583494", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/a/4a02b758-65b6-4c25-83b9-de63a1a92b51.jpg?1648583494", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/4/a/4a02b758-65b6-4c25-83b9-de63a1a92b51.jpg?1648583494"}, "mana_cost": "{W}{U}{B}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Choose one \u2014\n\u2022 Return target multicolored permanent card with mana value 3 or less from your graveyard to the battlefield tapped.\n\u2022 Counter target instant or sorcery spell.\n\u2022 Destroy target creature or planeswalker with mana value 3 or less.", "colors": ["B", "U", "W"], "color_identity": ["B", "U", "W"], "keywords": [], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "arena", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "df837242-8c15-42e4-b049-c933a02dc501", "set": "snc", "set_name": "Streets of New Capenna", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/df837242-8c15-42e4-b049-c933a02dc501", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Asnc&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/snc?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/4a02b758-65b6-4c25-83b9-de63a1a92b51/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A884eaa3f-b6af-4f0e-b0e7-cd40666986ce&unique=prints", "collector_number": "323", "digital": false, "rarity": "uncommon", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "J\u00e9r\u00e9mie Solomon", "artist_ids": ["53c2b1ff-9b69-4fa0-99d6-2362b676f249"], "illustration_id": "364801af-b60f-4773-83b2-1c4d4e103241", "border_color": "black", "frame": "2015", "frame_effects": ["showcase"], "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "promo_types": ["boosterfun"], "edhrec_rank": 5329, "penny_rank": 1467, "preview": {"source": "Wizards of the Coast", "source_uri": "https://magic.wizards.com/en/articles/archive/magic-story/episode-2-dirty-laundry-2022-03-29", "previewed_at": "2022-03-29"}, "prices": {"usd": "0.05", "usd_foil": "0.18", "usd_etched": null, "eur": "0.22", "eur_foil": "0.18", "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=558721", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Obscura+Charm&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Obscura+Charm&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Obscura+Charm"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/267674?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Obscura+Charm&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Obscura+Charm&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "260fe443-ca03-42b1-bcee-86e5173c1aaf", "oracle_id": "d061972e-6f4f-41a7-966a-88839f105f19", "multiverse_ids": [183007], "mtgo_id": 32410, "mtgo_foil_id": 32411, "tcgplayer_id": 31787, "cardmarket_id": 20888, "name": "Offering to Asha", "lang": "en", "released_at": "2009-04-30", "uri": "https://api.scryfall.com/cards/260fe443-ca03-42b1-bcee-86e5173c1aaf", "scryfall_uri": "https://scryfall.com/card/arb/9/offering-to-asha?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/2/6/260fe443-ca03-42b1-bcee-86e5173c1aaf.jpg?1562640177", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/6/260fe443-ca03-42b1-bcee-86e5173c1aaf.jpg?1562640177", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/2/6/260fe443-ca03-42b1-bcee-86e5173c1aaf.jpg?1562640177", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/2/6/260fe443-ca03-42b1-bcee-86e5173c1aaf.png?1562640177", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/6/260fe443-ca03-42b1-bcee-86e5173c1aaf.jpg?1562640177", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/2/6/260fe443-ca03-42b1-bcee-86e5173c1aaf.jpg?1562640177"}, "mana_cost": "{2}{W}{U}", "cmc": 4.0, "type_line": "Instant", "oracle_text": "Counter target spell unless its controller pays {4}. You gain 4 life.", "colors": ["U", "W"], "color_identity": ["U", "W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "db486ec5-141d-4781-9ee5-5456926934c1", "set": "arb", "set_name": "Alara Reborn", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/db486ec5-141d-4781-9ee5-5456926934c1", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aarb&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/arb?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/260fe443-ca03-42b1-bcee-86e5173c1aaf/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ad061972e-6f4f-41a7-966a-88839f105f19&unique=prints", "collector_number": "9", "digital": false, "rarity": "common", "flavor_text": "\"His body belongs to Bant now. His soul? I honestly don't know. I expect it belongs to the angels.\"\n\u2014Rafiq of the Many", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Daarken", "artist_ids": ["e607a0d4-fc12-4c01-9e3f-501f5269b9cb"], "illustration_id": "b5570045-727c-4f82-aea1-9f0964d4a7d1", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 18742, "penny_rank": 8409, "prices": {"usd": "0.05", "usd_foil": "0.25", "usd_etched": null, "eur": "0.02", "eur_foil": "0.49", "tix": "0.04"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=183007", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Offering+to+Asha&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Offering+to+Asha&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Offering+to+Asha"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/31787?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Offering+to+Asha&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/32410?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "c7a7f500-594d-4c7b-80e8-54ae1ada2444", "oracle_id": "c1fafe93-8fd2-44c1-a4a0-5c9ecee550cc", "multiverse_ids": [394642], "mtgo_id": 56328, "mtgo_foil_id": 56329, "tcgplayer_id": 96401, "cardmarket_id": 273092, "name": "Ojutai's Command", "lang": "en", "released_at": "2015-03-27", "uri": "https://api.scryfall.com/cards/c7a7f500-594d-4c7b-80e8-54ae1ada2444", "scryfall_uri": "https://scryfall.com/card/dtk/227/ojutais-command?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/c/7/c7a7f500-594d-4c7b-80e8-54ae1ada2444.jpg?1562792959", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/7/c7a7f500-594d-4c7b-80e8-54ae1ada2444.jpg?1562792959", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/c/7/c7a7f500-594d-4c7b-80e8-54ae1ada2444.jpg?1562792959", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/c/7/c7a7f500-594d-4c7b-80e8-54ae1ada2444.png?1562792959", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/7/c7a7f500-594d-4c7b-80e8-54ae1ada2444.jpg?1562792959", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/c/7/c7a7f500-594d-4c7b-80e8-54ae1ada2444.jpg?1562792959"}, "mana_cost": "{2}{W}{U}", "cmc": 4.0, "type_line": "Instant", "oracle_text": "Choose two \u2014\n\u2022 Return target creature card with mana value 2 or less from your graveyard to the battlefield.\n\u2022 You gain 4 life.\n\u2022 Counter target creature spell.\n\u2022 Draw a card.", "colors": ["U", "W"], "color_identity": ["U", "W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "7e72625f-f320-4552-a719-d11e2f1853bd", "set": "dtk", "set_name": "Dragons of Tarkir", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/7e72625f-f320-4552-a719-d11e2f1853bd", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Adtk&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/dtk?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/c7a7f500-594d-4c7b-80e8-54ae1ada2444/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ac1fafe93-8fd2-44c1-a4a0-5c9ecee550cc&unique=prints", "collector_number": "227", "digital": false, "rarity": "rare", "watermark": "ojutai", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Willian Murai", "artist_ids": ["5a553c8e-e3b9-40e0-bde5-1db621c53939"], "illustration_id": "a7620a78-9e35-4474-8f3c-b22215a55108", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 7146, "penny_rank": 3028, "prices": {"usd": "0.22", "usd_foil": "0.58", "usd_etched": null, "eur": "0.30", "eur_foil": "0.99", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=394642", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Ojutai%27s+Command&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Ojutai%27s+Command&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Ojutai%27s+Command"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/96401?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Ojutai%27s+Command&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/56328?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "939778a2-a10d-4dd4-8f78-0c366b76bf81", "oracle_id": "c1fafe93-8fd2-44c1-a4a0-5c9ecee550cc", "multiverse_ids": [], "tcgplayer_id": 96443, "cardmarket_id": 273119, "name": "Ojutai's Command", "lang": "en", "released_at": "2015-03-27", "uri": "https://api.scryfall.com/cards/939778a2-a10d-4dd4-8f78-0c366b76bf81", "scryfall_uri": "https://scryfall.com/card/pdtk/227/ojutais-command?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/9/3/939778a2-a10d-4dd4-8f78-0c366b76bf81.jpg?1562876267", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/3/939778a2-a10d-4dd4-8f78-0c366b76bf81.jpg?1562876267", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/9/3/939778a2-a10d-4dd4-8f78-0c366b76bf81.jpg?1562876267", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/9/3/939778a2-a10d-4dd4-8f78-0c366b76bf81.png?1562876267", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/3/939778a2-a10d-4dd4-8f78-0c366b76bf81.jpg?1562876267", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/9/3/939778a2-a10d-4dd4-8f78-0c366b76bf81.jpg?1562876267"}, "mana_cost": "{2}{W}{U}", "cmc": 4.0, "type_line": "Instant", "oracle_text": "Choose two \u2014\n\u2022 Return target creature card with mana value 2 or less from your graveyard to the battlefield.\n\u2022 You gain 4 life.\n\u2022 Counter target creature spell.\n\u2022 Draw a card.", "colors": ["U", "W"], "color_identity": ["U", "W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": true, "nonfoil": false, "finishes": ["foil"], "oversized": false, "promo": true, "reprint": true, "variation": false, "set_id": "7f424509-214f-4d0e-91ab-18a99e83afef", "set": "pdtk", "set_name": "Dragons of Tarkir Promos", "set_type": "promo", "set_uri": "https://api.scryfall.com/sets/7f424509-214f-4d0e-91ab-18a99e83afef", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Apdtk&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/pdtk?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/939778a2-a10d-4dd4-8f78-0c366b76bf81/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ac1fafe93-8fd2-44c1-a4a0-5c9ecee550cc&unique=prints", "collector_number": "227", "digital": false, "rarity": "rare", "watermark": "ojutai", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Craig J Spearing", "artist_ids": ["b0f15e74-0dd6-4156-959e-c5e30c5cdc52"], "illustration_id": "2061758a-6bfc-4251-8c0c-827205effe3e", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "promo_types": ["setpromo", "buyabox"], "edhrec_rank": 7146, "penny_rank": 3028, "prices": {"usd": null, "usd_foil": "0.37", "usd_etched": null, "eur": null, "eur_foil": "0.10", "tix": null}, "related_uris": {"tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Ojutai%27s+Command&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Ojutai%27s+Command&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Ojutai%27s+Command"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/96443?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Ojutai%27s+Command&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Ojutai%27s+Command&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "abcb5e75-c7a1-41de-a952-05aefb115270", "oracle_id": "983a2a50-3634-4783-8576-30916c3d0818", "multiverse_ids": [74423], "mtgo_id": 22250, "mtgo_foil_id": 22251, "tcgplayer_id": 12505, "cardmarket_id": 12733, "name": "Oppressive Will", "lang": "en", "released_at": "2005-06-03", "uri": "https://api.scryfall.com/cards/abcb5e75-c7a1-41de-a952-05aefb115270", "scryfall_uri": "https://scryfall.com/card/sok/50/oppressive-will?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/a/b/abcb5e75-c7a1-41de-a952-05aefb115270.jpg?1562495576", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/b/abcb5e75-c7a1-41de-a952-05aefb115270.jpg?1562495576", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/a/b/abcb5e75-c7a1-41de-a952-05aefb115270.jpg?1562495576", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/a/b/abcb5e75-c7a1-41de-a952-05aefb115270.png?1562495576", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/b/abcb5e75-c7a1-41de-a952-05aefb115270.jpg?1562495576", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/a/b/abcb5e75-c7a1-41de-a952-05aefb115270.jpg?1562495576"}, "mana_cost": "{2}{U}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Counter target spell unless its controller pays {1} for each card in your hand.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "4db16ad3-2b95-442f-bb6b-e9aa7fe7f769", "set": "sok", "set_name": "Saviors of Kamigawa", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/4db16ad3-2b95-442f-bb6b-e9aa7fe7f769", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Asok&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/sok?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/abcb5e75-c7a1-41de-a952-05aefb115270/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A983a2a50-3634-4783-8576-30916c3d0818&unique=prints", "collector_number": "50", "digital": false, "rarity": "common", "flavor_text": "When Minamo was abandoned, its younger students found themselves thrust into a war beyond their skill with talents beyond their control.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Pat Lee", "artist_ids": ["4902294d-a1e5-495b-8526-49b2bfdda056"], "illustration_id": "450a2db0-0579-4355-9911-892456d9489e", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 17101, "penny_rank": 12469, "prices": {"usd": "0.08", "usd_foil": "0.15", "usd_etched": null, "eur": "0.02", "eur_foil": "0.10", "tix": "0.04"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=74423", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Oppressive+Will&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Oppressive+Will&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Oppressive+Will"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/12505?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Oppressive+Will&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/22250?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "8b457672-902b-42c0-9d53-a3c21be2f500", "oracle_id": "431b2e52-1290-47b1-920d-2c1817553d96", "multiverse_ids": [446006], "tcgplayer_id": 167810, "cardmarket_id": 358601, "name": "Out of Bounds", "lang": "en", "released_at": "2018-06-08", "uri": "https://api.scryfall.com/cards/8b457672-902b-42c0-9d53-a3c21be2f500", "scryfall_uri": "https://scryfall.com/card/bbd/38/out-of-bounds?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/8/b/8b457672-902b-42c0-9d53-a3c21be2f500.jpg?1562923137", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/b/8b457672-902b-42c0-9d53-a3c21be2f500.jpg?1562923137", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/8/b/8b457672-902b-42c0-9d53-a3c21be2f500.jpg?1562923137", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/8/b/8b457672-902b-42c0-9d53-a3c21be2f500.png?1562923137", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/b/8b457672-902b-42c0-9d53-a3c21be2f500.jpg?1562923137", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/8/b/8b457672-902b-42c0-9d53-a3c21be2f500.jpg?1562923137"}, "mana_cost": "{3}{U}", "cmc": 4.0, "type_line": "Instant", "oracle_text": "Assist (Another player can pay up to {3} of this spell's cost.)\nCounter target spell.", "colors": ["U"], "color_identity": ["U"], "keywords": ["Assist"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "95f97fbc-58ef-4645-982e-43e2db6f1124", "set": "bbd", "set_name": "Battlebond", "set_type": "draft_innovation", "set_uri": "https://api.scryfall.com/sets/95f97fbc-58ef-4645-982e-43e2db6f1124", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Abbd&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/bbd?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/8b457672-902b-42c0-9d53-a3c21be2f500/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A431b2e52-1290-47b1-920d-2c1817553d96&unique=prints", "collector_number": "38", "digital": false, "rarity": "uncommon", "flavor_text": "The wardens watch for illegal tactics and protect spectators from the occasional rogue fireball.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Dmitry Burmak", "artist_ids": ["9872f5c0-274a-48ce-a9ad-6f0d5654e29c"], "illustration_id": "0aed36c1-c18b-4b5a-87bc-e613323ec11b", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 10153, "prices": {"usd": "0.15", "usd_foil": "0.56", "usd_etched": null, "eur": "0.05", "eur_foil": "0.38", "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=446006", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Out+of+Bounds&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Out+of+Bounds&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Out+of+Bounds"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/167810?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Out+of+Bounds&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Out+of+Bounds&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "429f7cf0-579a-4003-b5cf-4baf5d420796", "oracle_id": "eac02e36-15c8-4b6d-b9b4-da549a722336", "multiverse_ids": [240050], "mtgo_id": 43955, "mtgo_foil_id": 43956, "tcgplayer_id": 58891, "cardmarket_id": 254636, "name": "Outwit", "lang": "en", "released_at": "2012-05-04", "uri": "https://api.scryfall.com/cards/429f7cf0-579a-4003-b5cf-4baf5d420796", "scryfall_uri": "https://scryfall.com/card/avr/70/outwit?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/4/2/429f7cf0-579a-4003-b5cf-4baf5d420796.jpg?1592708662", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/2/429f7cf0-579a-4003-b5cf-4baf5d420796.jpg?1592708662", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/4/2/429f7cf0-579a-4003-b5cf-4baf5d420796.jpg?1592708662", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/4/2/429f7cf0-579a-4003-b5cf-4baf5d420796.png?1592708662", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/2/429f7cf0-579a-4003-b5cf-4baf5d420796.jpg?1592708662", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/4/2/429f7cf0-579a-4003-b5cf-4baf5d420796.jpg?1592708662"}, "mana_cost": "{U}", "cmc": 1.0, "type_line": "Instant", "oracle_text": "Counter target spell that targets a player.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "039810a9-92d7-4f2d-b2d0-ca661ac586c0", "set": "avr", "set_name": "Avacyn Restored", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/039810a9-92d7-4f2d-b2d0-ca661ac586c0", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aavr&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/avr?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/429f7cf0-579a-4003-b5cf-4baf5d420796/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aeac02e36-15c8-4b6d-b9b4-da549a722336&unique=prints", "collector_number": "70", "digital": false, "rarity": "common", "flavor_text": "The student asks how a spell is begun. The master ponders what ends it.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Erica Yang", "artist_ids": ["fcc15b63-b280-49da-9fee-f862824a2fc8"], "illustration_id": "a9a0e552-061b-407b-8997-15e998497474", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 17103, "prices": {"usd": "0.18", "usd_foil": "0.20", "usd_etched": null, "eur": "0.05", "eur_foil": "0.29", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=240050", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Outwit&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Outwit&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Outwit"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/58891?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Outwit&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/43955?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "35964fa6-800d-41d6-9f82-fb9c87deee56", "oracle_id": "a2845761-7e43-4a88-8fc2-2d95d471b00c", "multiverse_ids": [46089], "mtgo_id": 19699, "mtgo_foil_id": 19700, "tcgplayer_id": 11368, "cardmarket_id": 45, "name": "Override", "lang": "en", "released_at": "2003-10-02", "uri": "https://api.scryfall.com/cards/35964fa6-800d-41d6-9f82-fb9c87deee56", "scryfall_uri": "https://scryfall.com/card/mrd/45/override?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/3/5/35964fa6-800d-41d6-9f82-fb9c87deee56.jpg?1562140248", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/5/35964fa6-800d-41d6-9f82-fb9c87deee56.jpg?1562140248", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/3/5/35964fa6-800d-41d6-9f82-fb9c87deee56.jpg?1562140248", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/3/5/35964fa6-800d-41d6-9f82-fb9c87deee56.png?1562140248", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/5/35964fa6-800d-41d6-9f82-fb9c87deee56.jpg?1562140248", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/3/5/35964fa6-800d-41d6-9f82-fb9c87deee56.jpg?1562140248"}, "mana_cost": "{2}{U}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Counter target spell unless its controller pays {1} for each artifact you control.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "1d4f90ba-8d4a-4ee5-bc2f-e2d6bffe4955", "set": "mrd", "set_name": "Mirrodin", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/1d4f90ba-8d4a-4ee5-bc2f-e2d6bffe4955", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Amrd&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/mrd?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/35964fa6-800d-41d6-9f82-fb9c87deee56/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aa2845761-7e43-4a88-8fc2-2d95d471b00c&unique=prints", "collector_number": "45", "digital": false, "rarity": "common", "flavor_text": "\"The Knowledge Pool has all the answers\u2014especially 'No.'\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Hugh Jamieson", "artist_ids": ["ae735af7-4895-45e0-aeb5-58c82343942e"], "illustration_id": "589965b3-4ce5-4592-ad72-bdad9fd0da59", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 13983, "penny_rank": 13290, "prices": {"usd": "0.09", "usd_foil": "0.49", "usd_etched": null, "eur": "0.02", "eur_foil": "0.27", "tix": "0.04"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=46089", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Override&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Override&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Override"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/11368?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Override&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/19699?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "22b83a31-f974-4a49-b9ee-92f7767f11e0", "oracle_id": "fa43d688-99de-4774-ac2d-2d01866eef58", "multiverse_ids": [97111], "mtgo_id": 24069, "mtgo_foil_id": 24070, "tcgplayer_id": 13906, "cardmarket_id": 13042, "name": "Overrule", "lang": "en", "released_at": "2006-05-05", "uri": "https://api.scryfall.com/cards/22b83a31-f974-4a49-b9ee-92f7767f11e0", "scryfall_uri": "https://scryfall.com/card/dis/120/overrule?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/2/2/22b83a31-f974-4a49-b9ee-92f7767f11e0.jpg?1593273676", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/2/22b83a31-f974-4a49-b9ee-92f7767f11e0.jpg?1593273676", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/2/2/22b83a31-f974-4a49-b9ee-92f7767f11e0.jpg?1593273676", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/2/2/22b83a31-f974-4a49-b9ee-92f7767f11e0.png?1593273676", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/2/22b83a31-f974-4a49-b9ee-92f7767f11e0.jpg?1593273676", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/2/2/22b83a31-f974-4a49-b9ee-92f7767f11e0.jpg?1593273676"}, "mana_cost": "{X}{W}{U}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Counter target spell unless its controller pays {X}. You gain X life.", "colors": ["U", "W"], "color_identity": ["U", "W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "fdebeda1-b95f-4343-8a94-d125821e6b5c", "set": "dis", "set_name": "Dissension", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/fdebeda1-b95f-4343-8a94-d125821e6b5c", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Adis&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/dis?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/22b83a31-f974-4a49-b9ee-92f7767f11e0/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Afa43d688-99de-4774-ac2d-2d01866eef58&unique=prints", "collector_number": "120", "digital": false, "rarity": "common", "watermark": "azorius", "flavor_text": "With one commanding word, the spell was put down and a fine collected for its casting.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Alan Pollack", "artist_ids": ["70c20ea3-5ad6-4082-a337-6e994ae5828e"], "illustration_id": "b2343190-b5bd-460b-a652-ff68163e99fb", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 14847, "penny_rank": 2995, "prices": {"usd": "0.13", "usd_foil": "0.50", "usd_etched": null, "eur": "0.02", "eur_foil": "0.30", "tix": "0.04"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=97111", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Overrule&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Overrule&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Overrule"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/13906?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Overrule&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/24069?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "33ff1000-1a4e-43f6-aa02-1dbe9fac6901", "oracle_id": "45aa8bdb-54da-4069-bd6c-c63396154464", "multiverse_ids": [407571], "mtgo_id": 59495, "mtgo_foil_id": 59496, "tcgplayer_id": 110872, "cardmarket_id": 287293, "name": "Overwhelming Denial", "lang": "en", "released_at": "2016-01-22", "uri": "https://api.scryfall.com/cards/33ff1000-1a4e-43f6-aa02-1dbe9fac6901", "scryfall_uri": "https://scryfall.com/card/ogw/61/overwhelming-denial?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/3/3/33ff1000-1a4e-43f6-aa02-1dbe9fac6901.jpg?1562905471", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/3/33ff1000-1a4e-43f6-aa02-1dbe9fac6901.jpg?1562905471", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/3/3/33ff1000-1a4e-43f6-aa02-1dbe9fac6901.jpg?1562905471", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/3/3/33ff1000-1a4e-43f6-aa02-1dbe9fac6901.png?1562905471", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/3/33ff1000-1a4e-43f6-aa02-1dbe9fac6901.jpg?1562905471", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/3/3/33ff1000-1a4e-43f6-aa02-1dbe9fac6901.jpg?1562905471"}, "mana_cost": "{2}{U}{U}", "cmc": 4.0, "type_line": "Instant", "oracle_text": "Surge {U}{U} (You may cast this spell for its surge cost if you or a teammate has cast another spell this turn.)\nThis spell can't be countered.\nCounter target spell.", "colors": ["U"], "color_identity": ["U"], "keywords": ["Surge"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "cd51d245-8f95-45b0-ab5f-e2b3a3eb5dfe", "set": "ogw", "set_name": "Oath of the Gatewatch", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/cd51d245-8f95-45b0-ab5f-e2b3a3eb5dfe", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aogw&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ogw?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/33ff1000-1a4e-43f6-aa02-1dbe9fac6901/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A45aa8bdb-54da-4069-bd6c-c63396154464&unique=prints", "collector_number": "61", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Jama Jurabaev", "artist_ids": ["dd6ac36b-bdb4-48d5-9fae-1b017437669d"], "illustration_id": "bdfaba7f-1c14-4a47-82ac-873f6cc1b24f", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 8353, "penny_rank": 2948, "prices": {"usd": "0.22", "usd_foil": "0.45", "usd_etched": null, "eur": "0.05", "eur_foil": "0.19", "tix": "0.01"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=407571", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Overwhelming+Denial&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Overwhelming+Denial&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Overwhelming+Denial"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/110872?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Overwhelming+Denial&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/59495?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "cbeea686-7efc-48f5-b90b-bf1befc76a30", "oracle_id": "8038337b-aff9-49aa-800c-0e12d2688765", "multiverse_ids": [89403], "mtgo_id": 22084, "mtgo_foil_id": 22085, "tcgplayer_id": 12506, "cardmarket_id": 12734, "name": "Overwhelming Intellect", "lang": "en", "released_at": "2005-06-03", "uri": "https://api.scryfall.com/cards/cbeea686-7efc-48f5-b90b-bf1befc76a30", "scryfall_uri": "https://scryfall.com/card/sok/51/overwhelming-intellect?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/c/b/cbeea686-7efc-48f5-b90b-bf1befc76a30.jpg?1562496066", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/b/cbeea686-7efc-48f5-b90b-bf1befc76a30.jpg?1562496066", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/c/b/cbeea686-7efc-48f5-b90b-bf1befc76a30.jpg?1562496066", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/c/b/cbeea686-7efc-48f5-b90b-bf1befc76a30.png?1562496066", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/b/cbeea686-7efc-48f5-b90b-bf1befc76a30.jpg?1562496066", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/c/b/cbeea686-7efc-48f5-b90b-bf1befc76a30.jpg?1562496066"}, "mana_cost": "{4}{U}{U}", "cmc": 6.0, "type_line": "Instant", "oracle_text": "Counter target creature spell. Draw cards equal to that spell's mana value.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "4db16ad3-2b95-442f-bb6b-e9aa7fe7f769", "set": "sok", "set_name": "Saviors of Kamigawa", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/4db16ad3-2b95-442f-bb6b-e9aa7fe7f769", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Asok&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/sok?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/cbeea686-7efc-48f5-b90b-bf1befc76a30/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A8038337b-aff9-49aa-800c-0e12d2688765&unique=prints", "collector_number": "51", "digital": false, "rarity": "uncommon", "flavor_text": "\"My brain hurts.\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Alex Horley-Orlandelli", "artist_ids": ["1631a2ad-bf03-4ab9-b86c-60da982d58a1"], "illustration_id": "7c2cec7a-b103-466d-8576-9d4adc98409a", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 10562, "penny_rank": 9060, "prices": {"usd": "0.30", "usd_foil": "3.31", "usd_etched": null, "eur": "0.30", "eur_foil": "1.74", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=89403", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Overwhelming+Intellect&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Overwhelming+Intellect&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Overwhelming+Intellect"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/12506?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Overwhelming+Intellect&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/22084?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "cca467a2-a2b3-4bdf-9d60-62979f675347", "oracle_id": "f3e213a4-ba5a-468a-93b3-c0a34e1bd725", "multiverse_ids": [130701], "mtgo_id": 26758, "mtgo_foil_id": 26759, "tcgplayer_id": 14954, "cardmarket_id": 15034, "name": "Pact of Negation", "lang": "en", "released_at": "2007-05-04", "uri": "https://api.scryfall.com/cards/cca467a2-a2b3-4bdf-9d60-62979f675347", "scryfall_uri": "https://scryfall.com/card/fut/42/pact-of-negation?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/c/c/cca467a2-a2b3-4bdf-9d60-62979f675347.jpg?1562936138", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/c/cca467a2-a2b3-4bdf-9d60-62979f675347.jpg?1562936138", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/c/c/cca467a2-a2b3-4bdf-9d60-62979f675347.jpg?1562936138", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/c/c/cca467a2-a2b3-4bdf-9d60-62979f675347.png?1562936138", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/c/cca467a2-a2b3-4bdf-9d60-62979f675347.jpg?1562936138", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/c/c/cca467a2-a2b3-4bdf-9d60-62979f675347.jpg?1562936138"}, "mana_cost": "{0}", "cmc": 0.0, "type_line": "Instant", "oracle_text": "Counter target spell.\nAt the beginning of your next upkeep, pay {3}{U}{U}. If you don't, you lose the game.", "colors": ["U"], "color_indicator": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "bf951ddb-4445-4923-87cb-3fe4ac3c6b9a", "set": "fut", "set_name": "Future Sight", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/bf951ddb-4445-4923-87cb-3fe4ac3c6b9a", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Afut&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/fut?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/cca467a2-a2b3-4bdf-9d60-62979f675347/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Af3e213a4-ba5a-468a-93b3-c0a34e1bd725&unique=prints", "collector_number": "42", "digital": false, "rarity": "rare", "flavor_text": "Those who expect betrayal at every turn are seldom disappointed.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Jason Chan", "artist_ids": ["8062d5a9-51b6-4822-933f-fa9e9dba8416"], "illustration_id": "6323e279-55fc-45e8-92b3-0c65dcb17f99", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 193, "prices": {"usd": "17.99", "usd_foil": "166.92", "usd_etched": null, "eur": "9.43", "eur_foil": "35.00", "tix": "1.42"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=130701", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Pact+of+Negation&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Pact+of+Negation&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Pact+of+Negation"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/14954?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Pact+of+Negation&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/26758?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "3ab90299-547a-4538-a31c-f55afab10c50", "oracle_id": "f3e213a4-ba5a-468a-93b3-c0a34e1bd725", "multiverse_ids": [429875], "mtgo_id": 64386, "mtgo_foil_id": 64387, "tcgplayer_id": 129549, "cardmarket_id": 296602, "name": "Pact of Negation", "lang": "en", "released_at": "2017-04-28", "uri": "https://api.scryfall.com/cards/3ab90299-547a-4538-a31c-f55afab10c50", "scryfall_uri": "https://scryfall.com/card/mp2/16/pact-of-negation?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/3/a/3ab90299-547a-4538-a31c-f55afab10c50.jpg?1562906886", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/a/3ab90299-547a-4538-a31c-f55afab10c50.jpg?1562906886", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/3/a/3ab90299-547a-4538-a31c-f55afab10c50.jpg?1562906886", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/3/a/3ab90299-547a-4538-a31c-f55afab10c50.png?1562906886", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/a/3ab90299-547a-4538-a31c-f55afab10c50.jpg?1562906886", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/3/a/3ab90299-547a-4538-a31c-f55afab10c50.jpg?1562906886"}, "mana_cost": "{0}", "cmc": 0.0, "type_line": "Instant", "oracle_text": "Counter target spell.\nAt the beginning of your next upkeep, pay {3}{U}{U}. If you don't, you lose the game.", "colors": ["U"], "color_indicator": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": false, "finishes": ["foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "c26402e7-838e-48db-a4b2-7abfc305998a", "set": "mp2", "set_name": "Amonkhet Invocations", "set_type": "masterpiece", "set_uri": "https://api.scryfall.com/sets/c26402e7-838e-48db-a4b2-7abfc305998a", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Amp2&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/mp2?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/3ab90299-547a-4538-a31c-f55afab10c50/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Af3e213a4-ba5a-468a-93b3-c0a34e1bd725&unique=prints", "collector_number": "16", "digital": false, "rarity": "mythic", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Titus Lunter", "artist_ids": ["b11e6b3a-f4ca-4cf1-8fd7-475696de5f5c"], "illustration_id": "10cf8762-c915-4ec3-aedf-92a11bdadee1", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 193, "prices": {"usd": null, "usd_foil": "131.64", "usd_etched": null, "eur": null, "eur_foil": "120.00", "tix": "1.77"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=429875", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Pact+of+Negation&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Pact+of+Negation&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Pact+of+Negation"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/129549?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Pact+of+Negation&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/64386?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "0db57459-29f0-4ef6-b256-56955036c0ef", "oracle_id": "904f9e0c-cb7f-4611-8bf7-2e408e8ab237", "multiverse_ids": [87992], "mtgo_id": 23182, "mtgo_foil_id": 23183, "tcgplayer_id": 13375, "cardmarket_id": 13487, "name": "Perplex", "lang": "en", "released_at": "2005-10-07", "uri": "https://api.scryfall.com/cards/0db57459-29f0-4ef6-b256-56955036c0ef", "scryfall_uri": "https://scryfall.com/card/rav/217/perplex?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/0/d/0db57459-29f0-4ef6-b256-56955036c0ef.jpg?1598917204", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/d/0db57459-29f0-4ef6-b256-56955036c0ef.jpg?1598917204", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/0/d/0db57459-29f0-4ef6-b256-56955036c0ef.jpg?1598917204", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/0/d/0db57459-29f0-4ef6-b256-56955036c0ef.png?1598917204", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/d/0db57459-29f0-4ef6-b256-56955036c0ef.jpg?1598917204", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/0/d/0db57459-29f0-4ef6-b256-56955036c0ef.jpg?1598917204"}, "mana_cost": "{1}{U}{B}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Counter target spell unless its controller discards their hand.\nTransmute {1}{U}{B} ({1}{U}{B}, Discard this card: Search your library for a card with the same mana value as this card, reveal it, put it into your hand, then shuffle. Transmute only as a sorcery.)", "colors": ["B", "U"], "color_identity": ["B", "U"], "keywords": ["Transmute"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "15fccbe8-2825-41ca-9d0a-67aebdf91c4a", "set": "rav", "set_name": "Ravnica: City of Guilds", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/15fccbe8-2825-41ca-9d0a-67aebdf91c4a", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Arav&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/rav?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/0db57459-29f0-4ef6-b256-56955036c0ef/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A904f9e0c-cb7f-4611-8bf7-2e408e8ab237&unique=prints", "collector_number": "217", "digital": false, "rarity": "common", "watermark": "dimir", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Tsutomu Kawade", "artist_ids": ["433a40d2-2caa-4cba-ba8d-0308a951d026"], "illustration_id": "4d4ef7f2-a185-4344-b974-84466a4b22c9", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 3043, "penny_rank": 2879, "prices": {"usd": "0.70", "usd_foil": "9.49", "usd_etched": null, "eur": "0.19", "eur_foil": "3.50", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=87992", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Perplex&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Perplex&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Perplex"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/13375?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Perplex&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/23182?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "0ffe8485-d5fb-47cc-af53-6e0fd062b7a2", "oracle_id": "3673219d-d2b5-43ad-b0c8-58b583491158", "multiverse_ids": [369069], "mtgo_id": 48362, "mtgo_foil_id": 48363, "tcgplayer_id": 68013, "cardmarket_id": 261552, "name": "Plasm Capture", "lang": "en", "released_at": "2013-05-03", "uri": "https://api.scryfall.com/cards/0ffe8485-d5fb-47cc-af53-6e0fd062b7a2", "scryfall_uri": "https://scryfall.com/card/dgm/91/plasm-capture?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/0/f/0ffe8485-d5fb-47cc-af53-6e0fd062b7a2.jpg?1562898119", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/f/0ffe8485-d5fb-47cc-af53-6e0fd062b7a2.jpg?1562898119", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/0/f/0ffe8485-d5fb-47cc-af53-6e0fd062b7a2.jpg?1562898119", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/0/f/0ffe8485-d5fb-47cc-af53-6e0fd062b7a2.png?1562898119", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/f/0ffe8485-d5fb-47cc-af53-6e0fd062b7a2.jpg?1562898119", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/0/f/0ffe8485-d5fb-47cc-af53-6e0fd062b7a2.jpg?1562898119"}, "mana_cost": "{G}{G}{U}{U}", "cmc": 4.0, "type_line": "Instant", "oracle_text": "Counter target spell. At the beginning of your next precombat main phase, add X mana in any combination of colors, where X is that spell's mana value.", "colors": ["G", "U"], "color_identity": ["G", "U"], "keywords": [], "produced_mana": ["B", "G", "R", "U", "W"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "c8bd8520-cd98-45cd-b533-8d40c2087426", "set": "dgm", "set_name": "Dragon's Maze", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/c8bd8520-cd98-45cd-b533-8d40c2087426", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Adgm&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/dgm?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/0ffe8485-d5fb-47cc-af53-6e0fd062b7a2/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A3673219d-d2b5-43ad-b0c8-58b583491158&unique=prints", "collector_number": "91", "digital": false, "rarity": "rare", "watermark": "simic", "flavor_text": "\"Everything serves a purpose. Even you.\"\n\u2014Vorel of the Hull Clade", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Chase Stone", "artist_ids": ["2d753f61-5f5b-468e-97ea-8e0fdd347340"], "illustration_id": "2e6db3f5-473c-4fc6-8564-9ea86e88a7d2", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 2702, "penny_rank": 8511, "prices": {"usd": "0.47", "usd_foil": "3.83", "usd_etched": null, "eur": "0.58", "eur_foil": "0.95", "tix": "0.01"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=369069", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Plasm+Capture&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Plasm+Capture&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Plasm+Capture"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/68013?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Plasm+Capture&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/48362?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "662cf693-18c4-4169-bcce-09862778f60c", "oracle_id": "39412e6d-2837-4729-abf9-e64a5ba87e40", "multiverse_ids": [5757], "mtgo_id": 12289, "mtgo_foil_id": 12290, "tcgplayer_id": 6986, "cardmarket_id": 10296, "name": "Power Sink", "lang": "en", "released_at": "1998-10-12", "uri": "https://api.scryfall.com/cards/662cf693-18c4-4169-bcce-09862778f60c", "scryfall_uri": "https://scryfall.com/card/usg/89/power-sink?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/6/6/662cf693-18c4-4169-bcce-09862778f60c.jpg?1562916378", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/6/662cf693-18c4-4169-bcce-09862778f60c.jpg?1562916378", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/6/6/662cf693-18c4-4169-bcce-09862778f60c.jpg?1562916378", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/6/6/662cf693-18c4-4169-bcce-09862778f60c.png?1562916378", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/6/662cf693-18c4-4169-bcce-09862778f60c.jpg?1562916378", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/6/6/662cf693-18c4-4169-bcce-09862778f60c.jpg?1562916378"}, "mana_cost": "{X}{U}", "cmc": 1.0, "type_line": "Instant", "oracle_text": "Counter target spell unless its controller pays {X}. If that player doesn't, they tap all lands with mana abilities they control and lose all unspent mana.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "c330df40-51db-4caf-bde6-48df6c181001", "set": "usg", "set_name": "Urza's Saga", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/c330df40-51db-4caf-bde6-48df6c181001", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ausg&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/usg?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/662cf693-18c4-4169-bcce-09862778f60c/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A39412e6d-2837-4729-abf9-e64a5ba87e40&unique=prints", "collector_number": "89", "digital": false, "rarity": "common", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Andrew Robinson", "artist_ids": ["cb577db7-7f47-4f78-8682-6eaef8a77bd1"], "illustration_id": "aef8556a-ea2e-4bba-aa83-fe1e98f73e05", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 6455, "penny_rank": 221, "prices": {"usd": "0.12", "usd_foil": null, "usd_etched": null, "eur": "0.47", "eur_foil": null, "tix": "0.09"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=5757", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Power+Sink&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Power+Sink&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Power+Sink"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/6986?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Power+Sink&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/12289?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "abc58c34-c3de-47f8-a42f-3a974dcb9c47", "oracle_id": "39412e6d-2837-4729-abf9-e64a5ba87e40", "multiverse_ids": [4716], "mtgo_id": 9629, "mtgo_foil_id": 9630, "tcgplayer_id": 5673, "cardmarket_id": 8813, "name": "Power Sink", "lang": "en", "released_at": "1997-10-14", "uri": "https://api.scryfall.com/cards/abc58c34-c3de-47f8-a42f-3a974dcb9c47", "scryfall_uri": "https://scryfall.com/card/tmp/78/power-sink?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/a/b/abc58c34-c3de-47f8-a42f-3a974dcb9c47.jpg?1562055922", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/b/abc58c34-c3de-47f8-a42f-3a974dcb9c47.jpg?1562055922", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/a/b/abc58c34-c3de-47f8-a42f-3a974dcb9c47.jpg?1562055922", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/a/b/abc58c34-c3de-47f8-a42f-3a974dcb9c47.png?1562055922", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/b/abc58c34-c3de-47f8-a42f-3a974dcb9c47.jpg?1562055922", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/a/b/abc58c34-c3de-47f8-a42f-3a974dcb9c47.jpg?1562055922"}, "mana_cost": "{X}{U}", "cmc": 1.0, "type_line": "Instant", "oracle_text": "Counter target spell unless its controller pays {X}. If that player doesn't, they tap all lands with mana abilities they control and lose all unspent mana.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "10df3a67-178e-4363-8668-34f0e6edf2a7", "set": "tmp", "set_name": "Tempest", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/10df3a67-178e-4363-8668-34f0e6edf2a7", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Atmp&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/tmp?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/abc58c34-c3de-47f8-a42f-3a974dcb9c47/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A39412e6d-2837-4729-abf9-e64a5ba87e40&unique=prints", "collector_number": "78", "digital": false, "rarity": "common", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Jeff Miracola", "artist_ids": ["9b465bde-3656-4495-ace4-af4ce29999ed"], "illustration_id": "f6985a45-8863-4dae-bd14-249a5f46b707", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 6455, "penny_rank": 221, "prices": {"usd": "0.16", "usd_foil": null, "usd_etched": null, "eur": "0.06", "eur_foil": null, "tix": "0.09"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=4716", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Power+Sink&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Power+Sink&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Power+Sink"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/5673?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Power+Sink&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/9629?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "49717583-e0bb-47d6-92d0-8959af13391f", "oracle_id": "39412e6d-2837-4729-abf9-e64a5ba87e40", "multiverse_ids": [3354], "mtgo_id": 7205, "mtgo_foil_id": 7206, "tcgplayer_id": 5180, "cardmarket_id": 8134, "name": "Power Sink", "lang": "en", "released_at": "1996-10-08", "uri": "https://api.scryfall.com/cards/49717583-e0bb-47d6-92d0-8959af13391f", "scryfall_uri": "https://scryfall.com/card/mir/83/power-sink?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/4/9/49717583-e0bb-47d6-92d0-8959af13391f.jpg?1562718814", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/9/49717583-e0bb-47d6-92d0-8959af13391f.jpg?1562718814", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/4/9/49717583-e0bb-47d6-92d0-8959af13391f.jpg?1562718814", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/4/9/49717583-e0bb-47d6-92d0-8959af13391f.png?1562718814", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/9/49717583-e0bb-47d6-92d0-8959af13391f.jpg?1562718814", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/4/9/49717583-e0bb-47d6-92d0-8959af13391f.jpg?1562718814"}, "mana_cost": "{X}{U}", "cmc": 1.0, "type_line": "Instant", "oracle_text": "Counter target spell unless its controller pays {X}. If that player doesn't, they tap all lands with mana abilities they control and lose all unspent mana.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "5f06acf3-8123-4a78-b2e7-089b0b775a4a", "set": "mir", "set_name": "Mirage", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/5f06acf3-8123-4a78-b2e7-089b0b775a4a", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Amir&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/mir?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/49717583-e0bb-47d6-92d0-8959af13391f/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A39412e6d-2837-4729-abf9-e64a5ba87e40&unique=prints", "collector_number": "83", "digital": false, "rarity": "common", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Charles Gillespie", "artist_ids": ["ec2c14ea-79eb-4c55-963f-c46f7cef1c22"], "illustration_id": "0195dbbb-c56c-4862-941d-5ae4c8345301", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 6455, "penny_rank": 221, "prices": {"usd": "0.19", "usd_foil": null, "usd_etched": null, "eur": "0.27", "eur_foil": null, "tix": "0.09"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=3354", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Power+Sink&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Power+Sink&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Power+Sink"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/5180?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Power+Sink&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/7205?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "85cbec45-81b4-40cc-b356-d6713a6a9b2b", "oracle_id": "39412e6d-2837-4729-abf9-e64a5ba87e40", "multiverse_ids": [2527], "tcgplayer_id": 4843, "cardmarket_id": 6303, "name": "Power Sink", "lang": "en", "released_at": "1995-06-03", "uri": "https://api.scryfall.com/cards/85cbec45-81b4-40cc-b356-d6713a6a9b2b", "scryfall_uri": "https://scryfall.com/card/ice/91/power-sink?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/8/5/85cbec45-81b4-40cc-b356-d6713a6a9b2b.jpg?1562919825", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/5/85cbec45-81b4-40cc-b356-d6713a6a9b2b.jpg?1562919825", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/8/5/85cbec45-81b4-40cc-b356-d6713a6a9b2b.jpg?1562919825", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/8/5/85cbec45-81b4-40cc-b356-d6713a6a9b2b.png?1562919825", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/5/85cbec45-81b4-40cc-b356-d6713a6a9b2b.jpg?1562919825", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/8/5/85cbec45-81b4-40cc-b356-d6713a6a9b2b.jpg?1562919825"}, "mana_cost": "{X}{U}", "cmc": 1.0, "type_line": "Instant", "oracle_text": "Counter target spell unless its controller pays {X}. If that player doesn't, they tap all lands with mana abilities they control and lose all unspent mana.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "b0e08eea-5c01-4406-a6e2-dcd09c5e5b67", "set": "ice", "set_name": "Ice Age", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/b0e08eea-5c01-4406-a6e2-dcd09c5e5b67", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aice&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ice?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/85cbec45-81b4-40cc-b356-d6713a6a9b2b/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A39412e6d-2837-4729-abf9-e64a5ba87e40&unique=prints", "collector_number": "91", "digital": false, "rarity": "common", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Mark Poole", "artist_ids": ["bfdeaf09-f915-4058-8e8b-bcac3bc43c33"], "illustration_id": "094df9bd-a0e2-4f16-b839-90f7726feb5e", "border_color": "black", "frame": "1993", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 6455, "penny_rank": 221, "prices": {"usd": "0.25", "usd_foil": null, "usd_etched": null, "eur": "0.05", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=2527", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Power+Sink&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Power+Sink&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Power+Sink"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/4843?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Power+Sink&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Power+Sink&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "1b342dd3-09b9-4108-bf12-a65d4cef4eb9", "oracle_id": "39412e6d-2837-4729-abf9-e64a5ba87e40", "multiverse_ids": [120], "tcgplayer_id": 1224, "cardmarket_id": 5306, "name": "Power Sink", "lang": "en", "released_at": "1993-08-05", "uri": "https://api.scryfall.com/cards/1b342dd3-09b9-4108-bf12-a65d4cef4eb9", "scryfall_uri": "https://scryfall.com/card/lea/72/power-sink?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/1/b/1b342dd3-09b9-4108-bf12-a65d4cef4eb9.jpg?1559591331", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/b/1b342dd3-09b9-4108-bf12-a65d4cef4eb9.jpg?1559591331", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/1/b/1b342dd3-09b9-4108-bf12-a65d4cef4eb9.jpg?1559591331", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/1/b/1b342dd3-09b9-4108-bf12-a65d4cef4eb9.png?1559591331", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/b/1b342dd3-09b9-4108-bf12-a65d4cef4eb9.jpg?1559591331", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/1/b/1b342dd3-09b9-4108-bf12-a65d4cef4eb9.jpg?1559591331"}, "mana_cost": "{X}{U}", "cmc": 1.0, "type_line": "Instant", "oracle_text": "Counter target spell unless its controller pays {X}. If that player doesn't, they tap all lands with mana abilities they control and lose all unspent mana.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "legal", "premodern": "legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "288bd996-960e-448b-a187-9504c1930c2c", "set": "lea", "set_name": "Limited Edition Alpha", "set_type": "core", "set_uri": "https://api.scryfall.com/sets/288bd996-960e-448b-a187-9504c1930c2c", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Alea&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/lea?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/1b342dd3-09b9-4108-bf12-a65d4cef4eb9/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A39412e6d-2837-4729-abf9-e64a5ba87e40&unique=prints", "collector_number": "72", "digital": false, "rarity": "common", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Richard Thomas", "artist_ids": ["596b3aac-b331-4e1e-ae41-9ec2d3b653e1"], "illustration_id": "2c0f8da0-af8a-4e93-be82-4d4b164361a5", "border_color": "black", "frame": "1993", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 6455, "penny_rank": 221, "prices": {"usd": "112.99", "usd_foil": null, "usd_etched": null, "eur": "30.00", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=120", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Power+Sink&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Power+Sink&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Power+Sink"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/1224?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Power+Sink&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Power+Sink&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "c2314bf1-b22d-48c2-860f-e1081f56296b", "oracle_id": "250f8642-9754-48fd-8f09-70ed13d7a42c", "multiverse_ids": [10530], "tcgplayer_id": 510, "cardmarket_id": 11243, "name": "Preemptive Strike", "lang": "en", "released_at": "1999-07-06", "uri": "https://api.scryfall.com/cards/c2314bf1-b22d-48c2-860f-e1081f56296b", "scryfall_uri": "https://scryfall.com/card/ptk/50/preemptive-strike?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/c/2/c2314bf1-b22d-48c2-860f-e1081f56296b.jpg?1562257530", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/2/c2314bf1-b22d-48c2-860f-e1081f56296b.jpg?1562257530", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/c/2/c2314bf1-b22d-48c2-860f-e1081f56296b.jpg?1562257530", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/c/2/c2314bf1-b22d-48c2-860f-e1081f56296b.png?1562257530", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/2/c2314bf1-b22d-48c2-860f-e1081f56296b.jpg?1562257530", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/c/2/c2314bf1-b22d-48c2-860f-e1081f56296b.jpg?1562257530"}, "mana_cost": "{1}{U}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Counter target creature spell.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "2676ff2e-9d86-4b5b-b935-e84e41b0755e", "set": "ptk", "set_name": "Portal Three Kingdoms", "set_type": "starter", "set_uri": "https://api.scryfall.com/sets/2676ff2e-9d86-4b5b-b935-e84e41b0755e", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aptk&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ptk?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/c2314bf1-b22d-48c2-860f-e1081f56296b/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A250f8642-9754-48fd-8f09-70ed13d7a42c&unique=prints", "collector_number": "50", "digital": false, "rarity": "common", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Jiaming", "artist_ids": ["54d82a8b-8eac-43da-8131-ff5858d1ccae"], "illustration_id": "57ff7b06-7ccb-4c09-a33d-6d9df0fa1e2d", "border_color": "white", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 20538, "prices": {"usd": "4.49", "usd_foil": null, "usd_etched": null, "eur": "1.00", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=10530", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Preemptive+Strike&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Preemptive+Strike&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Preemptive+Strike"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/510?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Preemptive+Strike&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Preemptive+Strike&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "0daa5458-2a97-40d0-b18d-2381a7a68ee1", "oracle_id": "d95f1797-56f9-41be-a5fe-8398961f4b8b", "multiverse_ids": [22989], "mtgo_id": 14331, "mtgo_foil_id": 14332, "tcgplayer_id": 7600, "cardmarket_id": 3594, "name": "Prohibit", "lang": "en", "released_at": "2000-10-02", "uri": "https://api.scryfall.com/cards/0daa5458-2a97-40d0-b18d-2381a7a68ee1", "scryfall_uri": "https://scryfall.com/card/inv/67/prohibit?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/0/d/0daa5458-2a97-40d0-b18d-2381a7a68ee1.jpg?1562897807", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/d/0daa5458-2a97-40d0-b18d-2381a7a68ee1.jpg?1562897807", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/0/d/0daa5458-2a97-40d0-b18d-2381a7a68ee1.jpg?1562897807", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/0/d/0daa5458-2a97-40d0-b18d-2381a7a68ee1.png?1562897807", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/d/0daa5458-2a97-40d0-b18d-2381a7a68ee1.jpg?1562897807", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/0/d/0daa5458-2a97-40d0-b18d-2381a7a68ee1.jpg?1562897807"}, "mana_cost": "{1}{U}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Kicker {2} (You may pay an additional {2} as you cast this spell.)\nCounter target spell if its mana value is 2 or less. If this spell was kicked, counter that spell if its mana value is 4 or less instead.", "colors": ["U"], "color_identity": ["U"], "keywords": ["Kicker"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "b9ae5e02-7726-47ca-b5e4-5ec402b41cd1", "set": "inv", "set_name": "Invasion", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/b9ae5e02-7726-47ca-b5e4-5ec402b41cd1", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ainv&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/inv?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/0daa5458-2a97-40d0-b18d-2381a7a68ee1/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ad95f1797-56f9-41be-a5fe-8398961f4b8b&unique=prints", "collector_number": "67", "digital": false, "rarity": "common", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Adam Rex", "artist_ids": ["445bd2fb-4a70-4599-87a4-83cf5979fc56"], "illustration_id": "ca08f02b-08bb-472e-97a3-6d3b057d39c5", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 11279, "penny_rank": 910, "prices": {"usd": "0.22", "usd_foil": "4.61", "usd_etched": null, "eur": "0.36", "eur_foil": "5.00", "tix": "0.05"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=22989", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Prohibit&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Prohibit&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Prohibit"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/7600?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Prohibit&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/14331?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "1cba7d67-5c6c-4738-8907-7cce503e3180", "oracle_id": "2e712090-2284-4325-8ee8-38cd0e2bedd8", "multiverse_ids": [218016], "mtgo_id": 39806, "mtgo_foil_id": 39807, "tcgplayer_id": 39570, "cardmarket_id": 245874, "name": "Psychic Barrier", "lang": "en", "released_at": "2011-05-13", "uri": "https://api.scryfall.com/cards/1cba7d67-5c6c-4738-8907-7cce503e3180", "scryfall_uri": "https://scryfall.com/card/nph/43/psychic-barrier?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/1/c/1cba7d67-5c6c-4738-8907-7cce503e3180.jpg?1562875859", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/c/1cba7d67-5c6c-4738-8907-7cce503e3180.jpg?1562875859", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/1/c/1cba7d67-5c6c-4738-8907-7cce503e3180.jpg?1562875859", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/1/c/1cba7d67-5c6c-4738-8907-7cce503e3180.png?1562875859", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/c/1cba7d67-5c6c-4738-8907-7cce503e3180.jpg?1562875859", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/1/c/1cba7d67-5c6c-4738-8907-7cce503e3180.jpg?1562875859"}, "mana_cost": "{U}{U}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Counter target creature spell. Its controller loses 1 life.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "e8e356d8-6d01-4dab-aa07-d0999dc9359f", "set": "nph", "set_name": "New Phyrexia", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/e8e356d8-6d01-4dab-aa07-d0999dc9359f", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Anph&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/nph?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/1cba7d67-5c6c-4738-8907-7cce503e3180/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A2e712090-2284-4325-8ee8-38cd0e2bedd8&unique=prints", "collector_number": "43", "digital": false, "rarity": "common", "watermark": "phyrexian", "flavor_text": "\"I tolerate Phyrexians because the dragon requires it. But I have no patience for uninvited guests.\"\n\u2014Tezzeret", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Dan Scott", "artist_ids": ["f852fa13-137e-40f2-bbc1-0f01df09c0e0"], "illustration_id": "9662be73-c27e-4f2c-82a4-46bf379d8f01", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 14010, "penny_rank": 2289, "prices": {"usd": "0.10", "usd_foil": "0.47", "usd_etched": null, "eur": "0.16", "eur_foil": "0.59", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=218016", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Psychic+Barrier&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Psychic+Barrier&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Psychic+Barrier"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/39570?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Psychic+Barrier&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/39806?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "67a105f8-0c01-4c09-a3bf-8c912b6dc741", "oracle_id": "08dd393f-12d8-4801-882c-6d76009b4f12", "multiverse_ids": [398479], "mtgo_id": 57890, "mtgo_foil_id": 57891, "tcgplayer_id": 100359, "cardmarket_id": 283590, "name": "Psychic Rebuttal", "lang": "en", "released_at": "2015-07-17", "uri": "https://api.scryfall.com/cards/67a105f8-0c01-4c09-a3bf-8c912b6dc741", "scryfall_uri": "https://scryfall.com/card/ori/67/psychic-rebuttal?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/6/7/67a105f8-0c01-4c09-a3bf-8c912b6dc741.jpg?1562023585", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/7/67a105f8-0c01-4c09-a3bf-8c912b6dc741.jpg?1562023585", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/6/7/67a105f8-0c01-4c09-a3bf-8c912b6dc741.jpg?1562023585", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/6/7/67a105f8-0c01-4c09-a3bf-8c912b6dc741.png?1562023585", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/7/67a105f8-0c01-4c09-a3bf-8c912b6dc741.jpg?1562023585", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/6/7/67a105f8-0c01-4c09-a3bf-8c912b6dc741.jpg?1562023585"}, "mana_cost": "{1}{U}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Counter target instant or sorcery spell that targets you.\nSpell mastery \u2014 If there are two or more instant and/or sorcery cards in your graveyard, you may copy the spell countered this way. You may choose new targets for the copy.", "colors": ["U"], "color_identity": ["U"], "keywords": ["Spell mastery"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "0eeb9a9a-20ac-404d-b55f-aeb7a43a7f62", "set": "ori", "set_name": "Magic Origins", "set_type": "core", "set_uri": "https://api.scryfall.com/sets/0eeb9a9a-20ac-404d-b55f-aeb7a43a7f62", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aori&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ori?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/67a105f8-0c01-4c09-a3bf-8c912b6dc741/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A08dd393f-12d8-4801-882c-6d76009b4f12&unique=prints", "collector_number": "67", "digital": false, "rarity": "uncommon", "flavor_text": "\"I know what you're thinking,\" Jace whispered in the mage's mind. \"It's not going to work.\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Todd Lockwood", "artist_ids": ["d0b9f3cc-13fb-42b6-bc43-b034728e5c7b"], "illustration_id": "95a1f37a-ad84-4557-b9ec-c0c4ebd3a450", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 12630, "penny_rank": 5008, "prices": {"usd": "0.11", "usd_foil": "0.45", "usd_etched": null, "eur": "0.15", "eur_foil": "0.21", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=398479", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Psychic+Rebuttal&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Psychic+Rebuttal&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Psychic+Rebuttal"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/100359?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Psychic+Rebuttal&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/57890?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "0d87927c-80a6-4146-92a5-58c510ce7958", "oracle_id": "17694111-5623-48b3-8c54-c383418e8d2b", "multiverse_ids": [366296], "mtgo_id": 47555, "mtgo_foil_id": 47556, "tcgplayer_id": 67586, "cardmarket_id": 260084, "name": "Psychic Strike", "lang": "en", "released_at": "2013-02-01", "uri": "https://api.scryfall.com/cards/0d87927c-80a6-4146-92a5-58c510ce7958", "scryfall_uri": "https://scryfall.com/card/gtc/189/psychic-strike?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/0/d/0d87927c-80a6-4146-92a5-58c510ce7958.jpg?1561815780", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/d/0d87927c-80a6-4146-92a5-58c510ce7958.jpg?1561815780", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/0/d/0d87927c-80a6-4146-92a5-58c510ce7958.jpg?1561815780", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/0/d/0d87927c-80a6-4146-92a5-58c510ce7958.png?1561815780", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/d/0d87927c-80a6-4146-92a5-58c510ce7958.jpg?1561815780", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/0/d/0d87927c-80a6-4146-92a5-58c510ce7958.jpg?1561815780"}, "mana_cost": "{1}{U}{B}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Counter target spell. Its controller mills two cards.", "colors": ["B", "U"], "color_identity": ["B", "U"], "keywords": ["Mill"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "035a05f7-e020-4f50-a141-ed16ba704bd2", "set": "gtc", "set_name": "Gatecrash", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/035a05f7-e020-4f50-a141-ed16ba704bd2", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Agtc&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/gtc?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/0d87927c-80a6-4146-92a5-58c510ce7958/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A17694111-5623-48b3-8c54-c383418e8d2b&unique=prints", "collector_number": "189", "digital": false, "rarity": "common", "watermark": "dimir", "flavor_text": "Until more information could be gleaned about Niv-Mizzet's intentions, Lazav took every opportunity to stall his experiments.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Mathias Kollros", "artist_ids": ["2ae0dd12-047c-4efb-80d7-bccc3bac5fba"], "illustration_id": "280b4087-bbe9-4cde-8dcf-0900befa91b6", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 4959, "penny_rank": 1510, "prices": {"usd": "0.21", "usd_foil": "1.53", "usd_etched": null, "eur": "0.20", "eur_foil": "0.81", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=366296", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Psychic+Strike&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Psychic+Strike&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Psychic+Strike"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/67586?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Psychic+Strike&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/47555?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "d5e55695-16cc-4373-8078-959f1ded4c6d", "oracle_id": "5870175d-83df-43af-b199-fcd1e60b824e", "multiverse_ids": [40173], "mtgo_id": 17853, "mtgo_foil_id": 17854, "tcgplayer_id": 10494, "cardmarket_id": 1733, "name": "Psychic Trance", "lang": "en", "released_at": "2002-10-07", "uri": "https://api.scryfall.com/cards/d5e55695-16cc-4373-8078-959f1ded4c6d", "scryfall_uri": "https://scryfall.com/card/ons/102/psychic-trance?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/d/5/d5e55695-16cc-4373-8078-959f1ded4c6d.jpg?1562945989", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/5/d5e55695-16cc-4373-8078-959f1ded4c6d.jpg?1562945989", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/d/5/d5e55695-16cc-4373-8078-959f1ded4c6d.jpg?1562945989", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/d/5/d5e55695-16cc-4373-8078-959f1ded4c6d.png?1562945989", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/5/d5e55695-16cc-4373-8078-959f1ded4c6d.jpg?1562945989", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/d/5/d5e55695-16cc-4373-8078-959f1ded4c6d.jpg?1562945989"}, "mana_cost": "{2}{U}{U}", "cmc": 4.0, "type_line": "Instant", "oracle_text": "Until end of turn, Wizards you control gain \"{T}: Counter target spell.\"", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "914a6c6d-cb3b-45e8-a2db-9978a2339faf", "set": "ons", "set_name": "Onslaught", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/914a6c6d-cb3b-45e8-a2db-9978a2339faf", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aons&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ons?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/d5e55695-16cc-4373-8078-959f1ded4c6d/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A5870175d-83df-43af-b199-fcd1e60b824e&unique=prints", "collector_number": "102", "digital": false, "rarity": "rare", "flavor_text": "The Riptide Project was perhaps the only school devoted to preventing the spread of knowledge.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Rebecca Guay", "artist_ids": ["f8f662fa-d597-46a3-afb2-91d6e13243e2"], "illustration_id": "4bc89994-9897-436f-8a87-a608c91cdc95", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 17820, "penny_rank": 4112, "prices": {"usd": "0.23", "usd_foil": "8.54", "usd_etched": null, "eur": "0.14", "eur_foil": "15.00", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=40173", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Psychic+Trance&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Psychic+Trance&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Psychic+Trance"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/10494?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Psychic+Trance&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/17853?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "9bc37d01-ffe5-4dfe-b59e-204df82d1d36", "oracle_id": "0fc56124-bdcd-4f4f-886f-0fafcf8003bc", "multiverse_ids": [176450], "mtgo_id": 31273, "mtgo_foil_id": 31274, "tcgplayer_id": 27761, "cardmarket_id": 19931, "name": "Punish Ignorance", "lang": "en", "released_at": "2008-10-03", "uri": "https://api.scryfall.com/cards/9bc37d01-ffe5-4dfe-b59e-204df82d1d36", "scryfall_uri": "https://scryfall.com/card/ala/183/punish-ignorance?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/9/b/9bc37d01-ffe5-4dfe-b59e-204df82d1d36.jpg?1562707043", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/b/9bc37d01-ffe5-4dfe-b59e-204df82d1d36.jpg?1562707043", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/9/b/9bc37d01-ffe5-4dfe-b59e-204df82d1d36.jpg?1562707043", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/9/b/9bc37d01-ffe5-4dfe-b59e-204df82d1d36.png?1562707043", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/b/9bc37d01-ffe5-4dfe-b59e-204df82d1d36.jpg?1562707043", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/9/b/9bc37d01-ffe5-4dfe-b59e-204df82d1d36.jpg?1562707043"}, "mana_cost": "{W}{U}{U}{B}", "cmc": 4.0, "type_line": "Instant", "oracle_text": "Counter target spell. Its controller loses 3 life and you gain 3 life.", "colors": ["B", "U", "W"], "color_identity": ["B", "U", "W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "d667aaec-09b7-4406-b6fa-60795132dc11", "set": "ala", "set_name": "Shards of Alara", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/d667aaec-09b7-4406-b6fa-60795132dc11", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aala&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ala?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/9bc37d01-ffe5-4dfe-b59e-204df82d1d36/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A0fc56124-bdcd-4f4f-886f-0fafcf8003bc&unique=prints", "collector_number": "183", "digital": false, "rarity": "rare", "flavor_text": "\"Amateurish. Nearsighted. A waste of my time and everyone else's.\"\n\u2014Indra, nullmage of Vectis", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Shelly Wan", "artist_ids": ["bc1722f2-95d4-462d-948b-35be540ef4c2"], "illustration_id": "ad1e5eab-636f-4395-ab0b-3dc2cc86c1a3", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 16649, "penny_rank": 7773, "prices": {"usd": "0.22", "usd_foil": "1.06", "usd_etched": null, "eur": "0.30", "eur_foil": "2.49", "tix": "0.01"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=176450", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Punish+Ignorance&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Punish+Ignorance&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Punish+Ignorance"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/27761?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Punish+Ignorance&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/31273?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "c17dff9e-23f7-4b12-95e7-aa1c00ab3d18", "oracle_id": "1bc9a89c-7831-4c08-8934-896286d63e7c", "multiverse_ids": [159398], "mtgo_id": 29857, "mtgo_foil_id": 29858, "tcgplayer_id": 18753, "cardmarket_id": 19062, "name": "Put Away", "lang": "en", "released_at": "2008-05-02", "uri": "https://api.scryfall.com/cards/c17dff9e-23f7-4b12-95e7-aa1c00ab3d18", "scryfall_uri": "https://scryfall.com/card/shm/48/put-away?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/c/1/c17dff9e-23f7-4b12-95e7-aa1c00ab3d18.jpg?1562835533", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/1/c17dff9e-23f7-4b12-95e7-aa1c00ab3d18.jpg?1562835533", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/c/1/c17dff9e-23f7-4b12-95e7-aa1c00ab3d18.jpg?1562835533", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/c/1/c17dff9e-23f7-4b12-95e7-aa1c00ab3d18.png?1562835533", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/1/c17dff9e-23f7-4b12-95e7-aa1c00ab3d18.jpg?1562835533", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/c/1/c17dff9e-23f7-4b12-95e7-aa1c00ab3d18.jpg?1562835533"}, "mana_cost": "{2}{U}{U}", "cmc": 4.0, "type_line": "Instant", "oracle_text": "Counter target spell. You may shuffle up to one target card from your graveyard into your library.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "c18c0ba1-2081-4808-9b2e-549bc3a666f3", "set": "shm", "set_name": "Shadowmoor", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/c18c0ba1-2081-4808-9b2e-549bc3a666f3", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ashm&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/shm?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/c17dff9e-23f7-4b12-95e7-aa1c00ab3d18/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A1bc9a89c-7831-4c08-8934-896286d63e7c&unique=prints", "collector_number": "48", "digital": false, "rarity": "common", "flavor_text": "Kithkin spellbottlers spend half their time preserving old memories and the other half punishing the new.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Matt Cavotta", "artist_ids": ["2e6a0611-9411-4ba4-98e3-c0e18cbf9f83"], "illustration_id": "167eb19a-8e17-4aa8-bb73-ebc362762346", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 16864, "penny_rank": 8225, "prices": {"usd": "0.11", "usd_foil": "0.35", "usd_etched": null, "eur": "0.02", "eur_foil": "0.25", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=159398", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Put+Away&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Put+Away&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Put+Away"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/18753?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Put+Away&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/29857?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "b029eb9a-dd7a-40c2-96c4-0063d9cc002c", "oracle_id": "ecc435e2-deb1-420a-a79f-01dd08747314", "multiverse_ids": [413684], "mtgo_id": 60943, "mtgo_foil_id": 60944, "tcgplayer_id": 118587, "cardmarket_id": 290218, "name": "Pyroblast", "lang": "en", "released_at": "2016-06-10", "uri": "https://api.scryfall.com/cards/b029eb9a-dd7a-40c2-96c4-0063d9cc002c", "scryfall_uri": "https://scryfall.com/card/ema/142/pyroblast?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/b/0/b029eb9a-dd7a-40c2-96c4-0063d9cc002c.jpg?1580014621", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/0/b029eb9a-dd7a-40c2-96c4-0063d9cc002c.jpg?1580014621", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/b/0/b029eb9a-dd7a-40c2-96c4-0063d9cc002c.jpg?1580014621", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/b/0/b029eb9a-dd7a-40c2-96c4-0063d9cc002c.png?1580014621", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/0/b029eb9a-dd7a-40c2-96c4-0063d9cc002c.jpg?1580014621", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/b/0/b029eb9a-dd7a-40c2-96c4-0063d9cc002c.jpg?1580014621"}, "mana_cost": "{R}", "cmc": 1.0, "type_line": "Instant", "oracle_text": "Choose one \u2014\n\u2022 Counter target spell if it's blue.\n\u2022 Destroy target permanent if it's blue.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "1f29f022-3ace-4c96-85e8-1f7b63aadf7e", "set": "ema", "set_name": "Eternal Masters", "set_type": "masters", "set_uri": "https://api.scryfall.com/sets/1f29f022-3ace-4c96-85e8-1f7b63aadf7e", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aema&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ema?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/b029eb9a-dd7a-40c2-96c4-0063d9cc002c/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aecc435e2-deb1-420a-a79f-01dd08747314&unique=prints", "collector_number": "142", "digital": false, "rarity": "uncommon", "flavor_text": "Water can be crushing, but it is predictable. Fire is always dynamic, its rage absolute and all-consuming.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Lake Hurwitz", "artist_ids": ["3677c64b-55e6-4a0d-a952-bdbb05531220"], "illustration_id": "95568fc8-b2a5-4991-9070-77543735c70a", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 262, "prices": {"usd": "6.29", "usd_foil": "21.66", "usd_etched": null, "eur": "3.38", "eur_foil": "19.54", "tix": "10.53"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=413684", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Pyroblast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Pyroblast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Pyroblast"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/118587?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Pyroblast&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/60943?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "c342cac5-08ae-4428-9c2c-f6c5904e54d2", "oracle_id": "ecc435e2-deb1-420a-a79f-01dd08747314", "multiverse_ids": [2649], "tcgplayer_id": 4848, "cardmarket_id": 6425, "name": "Pyroblast", "lang": "en", "released_at": "1995-06-03", "uri": "https://api.scryfall.com/cards/c342cac5-08ae-4428-9c2c-f6c5904e54d2", "scryfall_uri": "https://scryfall.com/card/ice/213/pyroblast?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/c/3/c342cac5-08ae-4428-9c2c-f6c5904e54d2.jpg?1562931528", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/3/c342cac5-08ae-4428-9c2c-f6c5904e54d2.jpg?1562931528", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/c/3/c342cac5-08ae-4428-9c2c-f6c5904e54d2.jpg?1562931528", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/c/3/c342cac5-08ae-4428-9c2c-f6c5904e54d2.png?1562931528", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/3/c342cac5-08ae-4428-9c2c-f6c5904e54d2.jpg?1562931528", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/c/3/c342cac5-08ae-4428-9c2c-f6c5904e54d2.jpg?1562931528"}, "mana_cost": "{R}", "cmc": 1.0, "type_line": "Instant", "oracle_text": "Choose one \u2014\n\u2022 Counter target spell if it's blue.\n\u2022 Destroy target permanent if it's blue.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "b0e08eea-5c01-4406-a6e2-dcd09c5e5b67", "set": "ice", "set_name": "Ice Age", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/b0e08eea-5c01-4406-a6e2-dcd09c5e5b67", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aice&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ice?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/c342cac5-08ae-4428-9c2c-f6c5904e54d2/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aecc435e2-deb1-420a-a79f-01dd08747314&unique=prints", "collector_number": "213", "digital": false, "rarity": "common", "flavor_text": "\"Just the thing for those pesky water mages.\"\n\u2014Jaya Ballard, Task Mage", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Kaja Foglio", "artist_ids": ["e8b85539-756a-4eac-ac66-a2258d7cf547"], "illustration_id": "1a8482be-3a6b-4967-9d6d-21cabb695ddf", "border_color": "black", "frame": "1993", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 262, "prices": {"usd": "3.59", "usd_foil": null, "usd_etched": null, "eur": "3.01", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=2649", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Pyroblast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Pyroblast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Pyroblast"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/4848?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Pyroblast&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Pyroblast&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "93c460dc-cef2-4345-b9b8-a774307ba2d6", "oracle_id": "ecc435e2-deb1-420a-a79f-01dd08747314", "multiverse_ids": [], "tcgplayer_id": 215320, "cardmarket_id": 465669, "name": "Pyroblast", "lang": "en", "released_at": "2020-06-26", "uri": "https://api.scryfall.com/cards/93c460dc-cef2-4345-b9b8-a774307ba2d6", "scryfall_uri": "https://scryfall.com/card/ss3/5/pyroblast?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/9/3/93c460dc-cef2-4345-b9b8-a774307ba2d6.jpg?1593559584", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/3/93c460dc-cef2-4345-b9b8-a774307ba2d6.jpg?1593559584", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/9/3/93c460dc-cef2-4345-b9b8-a774307ba2d6.jpg?1593559584", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/9/3/93c460dc-cef2-4345-b9b8-a774307ba2d6.png?1593559584", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/3/93c460dc-cef2-4345-b9b8-a774307ba2d6.jpg?1593559584", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/9/3/93c460dc-cef2-4345-b9b8-a774307ba2d6.jpg?1593559584"}, "mana_cost": "{R}", "cmc": 1.0, "type_line": "Instant", "oracle_text": "Choose one \u2014\n\u2022 Counter target spell if it's blue.\n\u2022 Destroy target permanent if it's blue.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "4887d21f-71e7-4d7a-a079-e9521fd7e6d7", "set": "ss3", "set_name": "Signature Spellbook: Chandra", "set_type": "spellbook", "set_uri": "https://api.scryfall.com/sets/4887d21f-71e7-4d7a-a079-e9521fd7e6d7", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ass3&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ss3?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/93c460dc-cef2-4345-b9b8-a774307ba2d6/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aecc435e2-deb1-420a-a79f-01dd08747314&unique=prints", "collector_number": "5", "digital": false, "rarity": "rare", "flavor_text": "\"Told you it would melt.\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Yongjae Choi", "artist_ids": ["5ab91c3b-a6da-4751-a56e-81d0f61a67ab"], "illustration_id": "f6beb5b1-2dc5-406f-8a60-796d496a663d", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "edhrec_rank": 262, "prices": {"usd": "4.36", "usd_foil": "13.88", "usd_etched": null, "eur": "3.84", "eur_foil": "8.25", "tix": null}, "related_uris": {"tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Pyroblast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Pyroblast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Pyroblast"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/215320?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Pyroblast&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Pyroblast&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "33afbf78-7a50-48e0-bec8-656f571759e2", "oracle_id": "ecc435e2-deb1-420a-a79f-01dd08747314", "multiverse_ids": [], "mtgo_id": 69981, "name": "Pyroblast", "lang": "en", "released_at": "2018-09-28", "uri": "https://api.scryfall.com/cards/33afbf78-7a50-48e0-bec8-656f571759e2", "scryfall_uri": "https://scryfall.com/card/prm/69981/pyroblast?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/3/3/33afbf78-7a50-48e0-bec8-656f571759e2.jpg?1562543945", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/3/33afbf78-7a50-48e0-bec8-656f571759e2.jpg?1562543945", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/3/3/33afbf78-7a50-48e0-bec8-656f571759e2.jpg?1562543945", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/3/3/33afbf78-7a50-48e0-bec8-656f571759e2.png?1562543945", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/3/33afbf78-7a50-48e0-bec8-656f571759e2.jpg?1562543945", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/3/3/33afbf78-7a50-48e0-bec8-656f571759e2.jpg?1562543945"}, "mana_cost": "{R}", "cmc": 1.0, "type_line": "Instant", "oracle_text": "Choose one \u2014\n\u2022 Counter target spell if it's blue.\n\u2022 Destroy target permanent if it's blue.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": true, "reprint": true, "variation": false, "set_id": "638940fb-6be9-4be3-b83f-68d3902fbbe5", "set": "prm", "set_name": "Magic Online Promos", "set_type": "promo", "set_uri": "https://api.scryfall.com/sets/638940fb-6be9-4be3-b83f-68d3902fbbe5", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aprm&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/prm?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/33afbf78-7a50-48e0-bec8-656f571759e2/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aecc435e2-deb1-420a-a79f-01dd08747314&unique=prints", "collector_number": "69981", "digital": true, "rarity": "common", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Joseph Meehan", "artist_ids": ["6befd6d5-7f8d-4b7c-87e3-5511391a3359"], "illustration_id": "b9ea5472-bf5c-473b-ac2c-8057d9870609", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "edhrec_rank": 262, "prices": {"usd": null, "usd_foil": null, "usd_etched": null, "eur": null, "eur_foil": null, "tix": "9.83"}, "related_uris": {"tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Pyroblast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Pyroblast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Pyroblast"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/search/magic/product?productLineName=magic&q=Pyroblast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall&view=grid", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Pyroblast&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/69981?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "021b62d8-d160-47f5-bc51-0474f160d13f", "oracle_id": "9c0f7cdc-9095-40ae-bf83-75a5ffda72b9", "multiverse_ids": [513709], "mtgo_id": 88941, "arena_id": 76625, "tcgplayer_id": 233274, "cardmarket_id": 540491, "name": "Quandrix Command", "lang": "en", "released_at": "2021-04-23", "uri": "https://api.scryfall.com/cards/021b62d8-d160-47f5-bc51-0474f160d13f", "scryfall_uri": "https://scryfall.com/card/stx/217/quandrix-command?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/0/2/021b62d8-d160-47f5-bc51-0474f160d13f.jpg?1624739521", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/2/021b62d8-d160-47f5-bc51-0474f160d13f.jpg?1624739521", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/0/2/021b62d8-d160-47f5-bc51-0474f160d13f.jpg?1624739521", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/0/2/021b62d8-d160-47f5-bc51-0474f160d13f.png?1624739521", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/2/021b62d8-d160-47f5-bc51-0474f160d13f.jpg?1624739521", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/0/2/021b62d8-d160-47f5-bc51-0474f160d13f.jpg?1624739521"}, "mana_cost": "{1}{G}{U}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Choose two \u2014\n\u2022 Return target creature or planeswalker to its owner's hand.\n\u2022 Counter target artifact or enchantment spell.\n\u2022 Put two +1/+1 counters on target creature.\n\u2022 Target player shuffles up to three target cards from their graveyard into their library.", "colors": ["G", "U"], "color_identity": ["G", "U"], "keywords": [], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "541c3c28-8747-40e5-a231-8e8f33234859", "set": "stx", "set_name": "Strixhaven: School of Mages", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/541c3c28-8747-40e5-a231-8e8f33234859", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Astx&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/stx?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/021b62d8-d160-47f5-bc51-0474f160d13f/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A9c0f7cdc-9095-40ae-bf83-75a5ffda72b9&unique=prints", "collector_number": "217", "digital": false, "rarity": "rare", "watermark": "quandrix", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Viktor Titov", "artist_ids": ["2270c0b0-afb4-42b0-bcb6-25fe4ad6eef2"], "illustration_id": "633fbfc2-a514-4df2-bc2f-cf09dc68e715", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 3991, "prices": {"usd": "0.32", "usd_foil": "0.40", "usd_etched": null, "eur": "0.40", "eur_foil": "0.74", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=513709", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Quandrix+Command&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Quandrix+Command&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Quandrix+Command"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/233274?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Quandrix+Command&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/88941?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "48ca8c31-a9ea-4388-b257-951c1c68b86d", "oracle_id": "255131a2-616c-4c8d-a36a-14e5b5ab345e", "multiverse_ids": [74500], "mtgo_id": 21757, "mtgo_foil_id": 21758, "tcgplayer_id": 12334, "cardmarket_id": 12892, "name": "Quash", "lang": "en", "released_at": "2005-02-04", "uri": "https://api.scryfall.com/cards/48ca8c31-a9ea-4388-b257-951c1c68b86d", "scryfall_uri": "https://scryfall.com/card/bok/47/quash?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/4/8/48ca8c31-a9ea-4388-b257-951c1c68b86d.jpg?1562876834", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/8/48ca8c31-a9ea-4388-b257-951c1c68b86d.jpg?1562876834", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/4/8/48ca8c31-a9ea-4388-b257-951c1c68b86d.jpg?1562876834", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/4/8/48ca8c31-a9ea-4388-b257-951c1c68b86d.png?1562876834", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/8/48ca8c31-a9ea-4388-b257-951c1c68b86d.jpg?1562876834", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/4/8/48ca8c31-a9ea-4388-b257-951c1c68b86d.jpg?1562876834"}, "mana_cost": "{2}{U}{U}", "cmc": 4.0, "type_line": "Instant", "oracle_text": "Counter target instant or sorcery spell. Search its controller's graveyard, hand, and library for all cards with the same name as that spell and exile them. Then that player shuffles.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "d4b88587-a1f5-4b47-9e24-78ec9e57bd0e", "set": "bok", "set_name": "Betrayers of Kamigawa", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/d4b88587-a1f5-4b47-9e24-78ec9e57bd0e", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Abok&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/bok?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/48ca8c31-a9ea-4388-b257-951c1c68b86d/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A255131a2-616c-4c8d-a36a-14e5b5ab345e&unique=prints", "collector_number": "47", "digital": false, "rarity": "uncommon", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Shishizaru", "artist_ids": ["f993a598-f922-49c8-bb03-6beb3b780b0d"], "illustration_id": "1bf20a8b-d602-467c-9d84-82262af6acdc", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 22392, "penny_rank": 9788, "prices": {"usd": "0.10", "usd_foil": "0.24", "usd_etched": null, "eur": "0.15", "eur_foil": "0.40", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=74500", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Quash&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Quash&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Quash"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/12334?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Quash&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/21757?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "62019ac4-a5a1-4a8c-bfb4-96e818949bbe", "oracle_id": "255131a2-616c-4c8d-a36a-14e5b5ab345e", "multiverse_ids": [15160], "mtgo_id": 12817, "mtgo_foil_id": 12818, "tcgplayer_id": 6225, "cardmarket_id": 10742, "name": "Quash", "lang": "en", "released_at": "1999-06-07", "uri": "https://api.scryfall.com/cards/62019ac4-a5a1-4a8c-bfb4-96e818949bbe", "scryfall_uri": "https://scryfall.com/card/uds/42/quash?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/6/2/62019ac4-a5a1-4a8c-bfb4-96e818949bbe.jpg?1562444219", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/2/62019ac4-a5a1-4a8c-bfb4-96e818949bbe.jpg?1562444219", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/6/2/62019ac4-a5a1-4a8c-bfb4-96e818949bbe.jpg?1562444219", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/6/2/62019ac4-a5a1-4a8c-bfb4-96e818949bbe.png?1562444219", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/2/62019ac4-a5a1-4a8c-bfb4-96e818949bbe.jpg?1562444219", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/6/2/62019ac4-a5a1-4a8c-bfb4-96e818949bbe.jpg?1562444219"}, "mana_cost": "{2}{U}{U}", "cmc": 4.0, "type_line": "Instant", "oracle_text": "Counter target instant or sorcery spell. Search its controller's graveyard, hand, and library for all cards with the same name as that spell and exile them. Then that player shuffles.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "44f17b37-dcf8-4239-baab-1efc00cd3480", "set": "uds", "set_name": "Urza's Destiny", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/44f17b37-dcf8-4239-baab-1efc00cd3480", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Auds&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/uds?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/62019ac4-a5a1-4a8c-bfb4-96e818949bbe/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A255131a2-616c-4c8d-a36a-14e5b5ab345e&unique=prints", "collector_number": "42", "digital": false, "rarity": "uncommon", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Don Hazeltine", "artist_ids": ["b4117364-73af-47e5-8cf0-901eeea09e01"], "illustration_id": "8972c348-6194-403b-b63b-5e8804e3ff53", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 22392, "penny_rank": 9788, "prices": {"usd": "0.10", "usd_foil": "3.06", "usd_etched": null, "eur": "0.49", "eur_foil": "3.99", "tix": "0.06"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=15160", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Quash&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Quash&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Quash"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/6225?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Quash&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/12817?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "ee0ba01b-de96-4f8f-9405-ff3ad288afac", "oracle_id": "fa1b722a-109e-4a43-bd7b-818292728cb3", "multiverse_ids": [457192], "mtgo_id": 71096, "arena_id": 69176, "tcgplayer_id": 183081, "cardmarket_id": 368163, "name": "Quench", "lang": "en", "released_at": "2019-01-25", "uri": "https://api.scryfall.com/cards/ee0ba01b-de96-4f8f-9405-ff3ad288afac", "scryfall_uri": "https://scryfall.com/card/rna/48/quench?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/e/e/ee0ba01b-de96-4f8f-9405-ff3ad288afac.jpg?1589832153", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/e/ee0ba01b-de96-4f8f-9405-ff3ad288afac.jpg?1589832153", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/e/e/ee0ba01b-de96-4f8f-9405-ff3ad288afac.jpg?1589832153", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/e/e/ee0ba01b-de96-4f8f-9405-ff3ad288afac.png?1589832153", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/e/ee0ba01b-de96-4f8f-9405-ff3ad288afac.jpg?1589832153", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/e/e/ee0ba01b-de96-4f8f-9405-ff3ad288afac.jpg?1589832153"}, "mana_cost": "{1}{U}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Counter target spell unless its controller pays {2}.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "97a7fd84-8d89-45a3-b48b-c951f6a3f9f1", "set": "rna", "set_name": "Ravnica Allegiance", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/97a7fd84-8d89-45a3-b48b-c951f6a3f9f1", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Arna&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/rna?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/ee0ba01b-de96-4f8f-9405-ff3ad288afac/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Afa1b722a-109e-4a43-bd7b-818292728cb3&unique=prints", "collector_number": "48", "digital": false, "rarity": "common", "flavor_text": "\"When properly invoked, the plasma globule encloses the offensive spell with a satisfying slurp.\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Jason Rainville", "artist_ids": ["6ed7e669-579b-443d-b223-e5cbcb2a7483"], "illustration_id": "20db5f6f-d83f-4051-b035-1d3ed701cfe9", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 9614, "penny_rank": 2514, "preview": {"source": "Nerdist", "source_uri": "https://nerdist.com/new-magic-cards-the-art-of-magic-the-gathering-ravnica-exclusive/", "previewed_at": "2019-01-04"}, "prices": {"usd": "0.03", "usd_foil": "0.19", "usd_etched": null, "eur": "0.01", "eur_foil": "0.81", "tix": "0.04"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=457192", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Quench&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Quench&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Quench"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/183081?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Quench&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/71096?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "bd9e8a25-2e71-431b-897f-8b62520a3ce9", "oracle_id": "a8fe6204-9f55-45e5-99b3-43f2761ce8a3", "multiverse_ids": [391900], "mtgo_id": 55334, "mtgo_foil_id": 55335, "tcgplayer_id": 95395, "cardmarket_id": 271659, "name": "Rakshasa's Disdain", "lang": "en", "released_at": "2015-01-23", "uri": "https://api.scryfall.com/cards/bd9e8a25-2e71-431b-897f-8b62520a3ce9", "scryfall_uri": "https://scryfall.com/card/frf/45/rakshasas-disdain?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/b/d/bd9e8a25-2e71-431b-897f-8b62520a3ce9.jpg?1562829343", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/d/bd9e8a25-2e71-431b-897f-8b62520a3ce9.jpg?1562829343", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/b/d/bd9e8a25-2e71-431b-897f-8b62520a3ce9.jpg?1562829343", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/b/d/bd9e8a25-2e71-431b-897f-8b62520a3ce9.png?1562829343", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/d/bd9e8a25-2e71-431b-897f-8b62520a3ce9.jpg?1562829343", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/b/d/bd9e8a25-2e71-431b-897f-8b62520a3ce9.jpg?1562829343"}, "mana_cost": "{2}{U}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Counter target spell unless its controller pays {1} for each card in your graveyard.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "7bb5cb2b-081a-4c8c-b7e1-494046e6baa1", "set": "frf", "set_name": "Fate Reforged", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/7bb5cb2b-081a-4c8c-b7e1-494046e6baa1", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Afrf&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/frf?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/bd9e8a25-2e71-431b-897f-8b62520a3ce9/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aa8fe6204-9f55-45e5-99b3-43f2761ce8a3&unique=prints", "collector_number": "45", "digital": false, "rarity": "common", "flavor_text": "\"Every failure, every death only makes my strength greater.\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Seb McKinnon", "artist_ids": ["ad4caca0-8d89-44ce-a1a6-d5ca905bd6fb"], "illustration_id": "5baba28a-e8d3-4df2-a65f-1f3f5ffb643a", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 13299, "penny_rank": 13968, "prices": {"usd": "0.08", "usd_foil": "0.26", "usd_etched": null, "eur": "0.12", "eur_foil": "0.24", "tix": "0.05"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=391900", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Rakshasa%27s+Disdain&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Rakshasa%27s+Disdain&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Rakshasa%27s+Disdain"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/95395?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Rakshasa%27s+Disdain&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/55334?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "fa47fcce-d4c4-40a2-8853-6d7569d50926", "oracle_id": "f5822e53-ddec-4c77-bcf4-091e35c1e731", "multiverse_ids": [122287], "mtgo_id": 26229, "mtgo_foil_id": 26230, "tcgplayer_id": 14788, "cardmarket_id": 14191, "name": "Rebuff the Wicked", "lang": "en", "released_at": "2007-02-02", "uri": "https://api.scryfall.com/cards/fa47fcce-d4c4-40a2-8853-6d7569d50926", "scryfall_uri": "https://scryfall.com/card/plc/12/rebuff-the-wicked?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/f/a/fa47fcce-d4c4-40a2-8853-6d7569d50926.jpg?1562586538", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/a/fa47fcce-d4c4-40a2-8853-6d7569d50926.jpg?1562586538", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/f/a/fa47fcce-d4c4-40a2-8853-6d7569d50926.jpg?1562586538", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/f/a/fa47fcce-d4c4-40a2-8853-6d7569d50926.png?1562586538", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/a/fa47fcce-d4c4-40a2-8853-6d7569d50926.jpg?1562586538", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/f/a/fa47fcce-d4c4-40a2-8853-6d7569d50926.jpg?1562586538"}, "mana_cost": "{W}", "cmc": 1.0, "type_line": "Instant", "oracle_text": "Counter target spell that targets a permanent you control.", "colors": ["W"], "color_identity": ["W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "5a1b571c-73e9-4c14-b9d4-a62507d85789", "set": "plc", "set_name": "Planar Chaos", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/5a1b571c-73e9-4c14-b9d4-a62507d85789", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aplc&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/plc?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/fa47fcce-d4c4-40a2-8853-6d7569d50926/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Af5822e53-ddec-4c77-bcf4-091e35c1e731&unique=prints", "collector_number": "12", "digital": false, "rarity": "uncommon", "flavor_text": "\"I cannot teach you their brand of magic, but I can teach you how to defend against it.\"\n\u2014Tavalus, priest of Korlis", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Stephen Tappin", "artist_ids": ["bb596c13-9c39-4b11-8a7b-c88944826e70"], "illustration_id": "c5f84b3f-03af-4f8c-92a7-f9281285396f", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 1983, "penny_rank": 3178, "prices": {"usd": "2.32", "usd_foil": "20.98", "usd_etched": null, "eur": "0.50", "eur_foil": "5.98", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=122287", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Rebuff+the+Wicked&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Rebuff+the+Wicked&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Rebuff+the+Wicked"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/14788?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Rebuff+the+Wicked&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/26229?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "70a45e9b-699e-425a-9f3d-267274830d3e", "oracle_id": "bb329a5c-b9f9-4973-a53f-090024146325", "multiverse_ids": [442136], "mtgo_id": 67208, "mtgo_foil_id": 67209, "tcgplayer_id": 161430, "cardmarket_id": 318987, "name": "Red Elemental Blast", "lang": "en", "released_at": "2018-03-16", "uri": "https://api.scryfall.com/cards/70a45e9b-699e-425a-9f3d-267274830d3e", "scryfall_uri": "https://scryfall.com/card/a25/147/red-elemental-blast?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/7/0/70a45e9b-699e-425a-9f3d-267274830d3e.jpg?1562436618", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/0/70a45e9b-699e-425a-9f3d-267274830d3e.jpg?1562436618", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/7/0/70a45e9b-699e-425a-9f3d-267274830d3e.jpg?1562436618", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/7/0/70a45e9b-699e-425a-9f3d-267274830d3e.png?1562436618", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/0/70a45e9b-699e-425a-9f3d-267274830d3e.jpg?1562436618", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/7/0/70a45e9b-699e-425a-9f3d-267274830d3e.jpg?1562436618"}, "mana_cost": "{R}", "cmc": 1.0, "type_line": "Instant", "oracle_text": "Choose one \u2014\n\u2022 Counter target blue spell.\n\u2022 Destroy target blue permanent.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "41ee6e2f-69b3-4c53-8a8e-960f5e974cfc", "set": "a25", "set_name": "Masters 25", "set_type": "masters", "set_uri": "https://api.scryfall.com/sets/41ee6e2f-69b3-4c53-8a8e-960f5e974cfc", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aa25&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/a25?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/70a45e9b-699e-425a-9f3d-267274830d3e/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Abb329a5c-b9f9-4973-a53f-090024146325&unique=prints", "collector_number": "147", "digital": false, "rarity": "uncommon", "watermark": "set", "flavor_text": "Nothing restrains a burning passion.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Izzy", "artist_ids": ["2c3d2473-ff5d-4309-8194-e0b2def2ab65"], "illustration_id": "3d05f0d7-36d0-4a66-93bf-782ad56d0814", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 250, "prices": {"usd": "4.55", "usd_foil": "34.81", "usd_etched": null, "eur": "5.13", "eur_foil": "19.00", "tix": "5.83"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=442136", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Red+Elemental+Blast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Red+Elemental+Blast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Red+Elemental+Blast"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/161430?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Red+Elemental+Blast&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/67208?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "776ad9be-3309-4f1d-9f27-6219d9477662", "oracle_id": "bb329a5c-b9f9-4973-a53f-090024146325", "multiverse_ids": [217], "tcgplayer_id": 1232, "cardmarket_id": 5403, "name": "Red Elemental Blast", "lang": "en", "released_at": "1993-08-05", "uri": "https://api.scryfall.com/cards/776ad9be-3309-4f1d-9f27-6219d9477662", "scryfall_uri": "https://scryfall.com/card/lea/169/red-elemental-blast?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/7/7/776ad9be-3309-4f1d-9f27-6219d9477662.jpg?1559591383", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/7/776ad9be-3309-4f1d-9f27-6219d9477662.jpg?1559591383", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/7/7/776ad9be-3309-4f1d-9f27-6219d9477662.jpg?1559591383", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/7/7/776ad9be-3309-4f1d-9f27-6219d9477662.png?1559591383", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/7/776ad9be-3309-4f1d-9f27-6219d9477662.jpg?1559591383", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/7/7/776ad9be-3309-4f1d-9f27-6219d9477662.jpg?1559591383"}, "mana_cost": "{R}", "cmc": 1.0, "type_line": "Instant", "oracle_text": "Choose one \u2014\n\u2022 Counter target blue spell.\n\u2022 Destroy target blue permanent.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "legal", "premodern": "legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "288bd996-960e-448b-a187-9504c1930c2c", "set": "lea", "set_name": "Limited Edition Alpha", "set_type": "core", "set_uri": "https://api.scryfall.com/sets/288bd996-960e-448b-a187-9504c1930c2c", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Alea&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/lea?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/776ad9be-3309-4f1d-9f27-6219d9477662/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Abb329a5c-b9f9-4973-a53f-090024146325&unique=prints", "collector_number": "169", "digital": false, "rarity": "common", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Richard Thomas", "artist_ids": ["596b3aac-b331-4e1e-ae41-9ec2d3b653e1"], "illustration_id": "fad27ec0-5788-496a-a7c3-e50e1ea6ed4b", "border_color": "black", "frame": "1993", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 250, "prices": {"usd": "205.99", "usd_foil": null, "usd_etched": null, "eur": "94.90", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=217", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Red+Elemental+Blast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Red+Elemental+Blast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Red+Elemental+Blast"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/1232?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Red+Elemental+Blast&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Red+Elemental+Blast&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "6cdd2a7c-001d-4891-8513-4b6d96968b35", "oracle_id": "bb329a5c-b9f9-4973-a53f-090024146325", "multiverse_ids": [], "mtgo_id": 43610, "name": "Red Elemental Blast", "lang": "en", "released_at": "2014-10-17", "uri": "https://api.scryfall.com/cards/6cdd2a7c-001d-4891-8513-4b6d96968b35", "scryfall_uri": "https://scryfall.com/card/prm/43610/red-elemental-blast?utm_source=api", "layout": "normal", "highres_image": false, "image_status": "lowres", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/6/c/6cdd2a7c-001d-4891-8513-4b6d96968b35.jpg?1562545467", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/c/6cdd2a7c-001d-4891-8513-4b6d96968b35.jpg?1562545467", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/6/c/6cdd2a7c-001d-4891-8513-4b6d96968b35.jpg?1562545467", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/6/c/6cdd2a7c-001d-4891-8513-4b6d96968b35.png?1562545467", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/c/6cdd2a7c-001d-4891-8513-4b6d96968b35.jpg?1562545467", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/6/c/6cdd2a7c-001d-4891-8513-4b6d96968b35.jpg?1562545467"}, "mana_cost": "{R}", "cmc": 1.0, "type_line": "Instant", "oracle_text": "Choose one \u2014\n\u2022 Counter target blue spell.\n\u2022 Destroy target blue permanent.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["mtgo"], "reserved": false, "foil": true, "nonfoil": false, "finishes": ["foil"], "oversized": false, "promo": true, "reprint": true, "variation": false, "set_id": "638940fb-6be9-4be3-b83f-68d3902fbbe5", "set": "prm", "set_name": "Magic Online Promos", "set_type": "promo", "set_uri": "https://api.scryfall.com/sets/638940fb-6be9-4be3-b83f-68d3902fbbe5", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aprm&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/prm?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/6cdd2a7c-001d-4891-8513-4b6d96968b35/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Abb329a5c-b9f9-4973-a53f-090024146325&unique=prints", "collector_number": "43610", "digital": true, "rarity": "uncommon", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Christopher Moeller", "artist_ids": ["21e10012-06ae-44f2-b38d-3824dd2e73d4"], "illustration_id": "37d34f47-e8ea-4cc2-919c-666536001c45", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "edhrec_rank": 250, "prices": {"usd": null, "usd_foil": null, "usd_etched": null, "eur": null, "eur_foil": null, "tix": "5.71"}, "related_uris": {"tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Red+Elemental+Blast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Red+Elemental+Blast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Red+Elemental+Blast"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/search/magic/product?productLineName=magic&q=Red+Elemental+Blast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall&view=grid", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Red+Elemental+Blast&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/43610?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "765e64ae-699c-46bd-a8cc-c8c1075d644f", "oracle_id": "e197104f-5382-4cb2-8afe-5ca0594629c2", "multiverse_ids": [518469], "mtgo_id": 89889, "tcgplayer_id": 236374, "cardmarket_id": 558764, "name": "Reinterpret", "lang": "en", "released_at": "2021-04-23", "uri": "https://api.scryfall.com/cards/765e64ae-699c-46bd-a8cc-c8c1075d644f", "scryfall_uri": "https://scryfall.com/card/c21/73/reinterpret?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/7/6/765e64ae-699c-46bd-a8cc-c8c1075d644f.jpg?1625192562", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/6/765e64ae-699c-46bd-a8cc-c8c1075d644f.jpg?1625192562", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/7/6/765e64ae-699c-46bd-a8cc-c8c1075d644f.jpg?1625192562", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/7/6/765e64ae-699c-46bd-a8cc-c8c1075d644f.png?1625192562", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/6/765e64ae-699c-46bd-a8cc-c8c1075d644f.jpg?1625192562", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/7/6/765e64ae-699c-46bd-a8cc-c8c1075d644f.jpg?1625192562"}, "mana_cost": "{2}{U}{R}", "cmc": 4.0, "type_line": "Instant", "oracle_text": "Counter target spell. You may cast a spell with an equal or lesser mana value from your hand without paying its mana cost.", "colors": ["R", "U"], "color_identity": ["R", "U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "27bf6dbd-a9e1-4904-afa7-d28fc7745c4f", "set": "c21", "set_name": "Commander 2021", "set_type": "commander", "set_uri": "https://api.scryfall.com/sets/27bf6dbd-a9e1-4904-afa7-d28fc7745c4f", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ac21&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/c21?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/765e64ae-699c-46bd-a8cc-c8c1075d644f/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ae197104f-5382-4cb2-8afe-5ca0594629c2&unique=prints", "collector_number": "73", "digital": false, "rarity": "rare", "watermark": "prismari", "flavor_text": "\"With just a little added flair, your work could be truly spectacular. Let me show you.\"\n\u2014Nassari, Prismari dean", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Olena Richards", "artist_ids": ["fad4282c-49d1-4b5b-be1d-713369fc8bc8"], "illustration_id": "a863cc17-6e81-4499-8312-3243fb10b7a2", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "edhrec_rank": 3814, "prices": {"usd": "0.23", "usd_foil": null, "usd_etched": null, "eur": "0.85", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=518469", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Reinterpret&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Reinterpret&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Reinterpret"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/236374?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Reinterpret&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/89889?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "d77f0731-fb40-4dc2-8530-afcb5ce1f27f", "oracle_id": "198fed4c-297e-41c0-a172-e471c7401fbb", "multiverse_ids": [513527], "mtgo_id": 88577, "arena_id": 76443, "tcgplayer_id": 235945, "cardmarket_id": 558072, "name": "Reject", "lang": "en", "released_at": "2021-04-23", "uri": "https://api.scryfall.com/cards/d77f0731-fb40-4dc2-8530-afcb5ce1f27f", "scryfall_uri": "https://scryfall.com/card/stx/50/reject?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/d/7/d77f0731-fb40-4dc2-8530-afcb5ce1f27f.jpg?1624661968", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/7/d77f0731-fb40-4dc2-8530-afcb5ce1f27f.jpg?1624661968", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/d/7/d77f0731-fb40-4dc2-8530-afcb5ce1f27f.jpg?1624661968", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/d/7/d77f0731-fb40-4dc2-8530-afcb5ce1f27f.png?1624661968", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/7/d77f0731-fb40-4dc2-8530-afcb5ce1f27f.jpg?1624661968", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/d/7/d77f0731-fb40-4dc2-8530-afcb5ce1f27f.jpg?1624661968"}, "mana_cost": "{1}{U}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Counter target creature or planeswalker spell unless its controller pays {3}. If that spell is countered this way, exile it instead of putting it into its owner's graveyard.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "541c3c28-8747-40e5-a231-8e8f33234859", "set": "stx", "set_name": "Strixhaven: School of Mages", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/541c3c28-8747-40e5-a231-8e8f33234859", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Astx&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/stx?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/d77f0731-fb40-4dc2-8530-afcb5ce1f27f/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A198fed4c-297e-41c0-a172-e471c7401fbb&unique=prints", "collector_number": "50", "digital": false, "rarity": "common", "flavor_text": "\"Grux, for the last time, you have to do more than simply shout 'Apply!' at the administrators.\"\n\u2014Pavil, admissions officer", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Zoltan Boros", "artist_ids": ["1885e6cb-c827-4896-994e-3d0a027d602f"], "illustration_id": "9ddefd5c-1291-44cd-8cb6-4c9974bdb625", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 10102, "penny_rank": 12590, "preview": {"source": "Jim Davis", "source_uri": "https://www.youtube.com/watch?v=ntG-uWkUJAk", "previewed_at": "2021-04-03"}, "prices": {"usd": "0.03", "usd_foil": "0.15", "usd_etched": null, "eur": "0.02", "eur_foil": "0.10", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=513527", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Reject&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Reject&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Reject"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/235945?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Reject&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/88577?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "0027e5ca-8046-40a0-bd73-79be55f28bff", "oracle_id": "d71cd08e-3e84-41ff-b9db-9e343c0af6b4", "multiverse_ids": [380255], "mtgo_id": 52505, "mtgo_foil_id": 52506, "tcgplayer_id": 79991, "cardmarket_id": 266383, "name": "Remand", "lang": "en", "released_at": "2014-03-14", "uri": "https://api.scryfall.com/cards/0027e5ca-8046-40a0-bd73-79be55f28bff", "scryfall_uri": "https://scryfall.com/card/ddm/26/remand?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/0/0/0027e5ca-8046-40a0-bd73-79be55f28bff.jpg?1592754515", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/0/0027e5ca-8046-40a0-bd73-79be55f28bff.jpg?1592754515", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/0/0/0027e5ca-8046-40a0-bd73-79be55f28bff.jpg?1592754515", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/0/0/0027e5ca-8046-40a0-bd73-79be55f28bff.png?1592754515", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/0/0027e5ca-8046-40a0-bd73-79be55f28bff.jpg?1592754515", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/0/0/0027e5ca-8046-40a0-bd73-79be55f28bff.jpg?1592754515"}, "mana_cost": "{1}{U}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Counter target spell. If that spell is countered this way, put it into its owner's hand instead of into that player's graveyard.\nDraw a card.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "a80b4ba1-7485-4c16-b745-eeea904863c3", "set": "ddm", "set_name": "Duel Decks: Jace vs. Vraska", "set_type": "duel_deck", "set_uri": "https://api.scryfall.com/sets/a80b4ba1-7485-4c16-b745-eeea904863c3", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Addm&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ddm?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/0027e5ca-8046-40a0-bd73-79be55f28bff/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ad71cd08e-3e84-41ff-b9db-9e343c0af6b4&unique=prints", "collector_number": "26", "digital": false, "rarity": "uncommon", "flavor_text": "For the Azorius, the law can be a physical shield against chaos and anarchy.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Zoltan Boros", "artist_ids": ["1885e6cb-c827-4896-994e-3d0a027d602f"], "illustration_id": "85795d09-a7f2-4c9a-9e85-e1ec07ffb5e8", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "edhrec_rank": 3112, "prices": {"usd": "1.77", "usd_foil": null, "usd_etched": null, "eur": "1.50", "eur_foil": null, "tix": "1.35"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=380255", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Remand&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Remand&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Remand"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/79991?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Remand&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/52505?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "581f3780-c480-48c6-b15c-1618f2feccb9", "oracle_id": "d71cd08e-3e84-41ff-b9db-9e343c0af6b4", "multiverse_ids": [87919], "mtgo_id": 23174, "mtgo_foil_id": 23175, "tcgplayer_id": 13390, "cardmarket_id": 13505, "name": "Remand", "lang": "en", "released_at": "2005-10-07", "uri": "https://api.scryfall.com/cards/581f3780-c480-48c6-b15c-1618f2feccb9", "scryfall_uri": "https://scryfall.com/card/rav/63/remand?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/5/8/581f3780-c480-48c6-b15c-1618f2feccb9.jpg?1598914434", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/8/581f3780-c480-48c6-b15c-1618f2feccb9.jpg?1598914434", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/5/8/581f3780-c480-48c6-b15c-1618f2feccb9.jpg?1598914434", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/5/8/581f3780-c480-48c6-b15c-1618f2feccb9.png?1598914434", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/8/581f3780-c480-48c6-b15c-1618f2feccb9.jpg?1598914434", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/5/8/581f3780-c480-48c6-b15c-1618f2feccb9.jpg?1598914434"}, "mana_cost": "{1}{U}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Counter target spell. If that spell is countered this way, put it into its owner's hand instead of into that player's graveyard.\nDraw a card.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "15fccbe8-2825-41ca-9d0a-67aebdf91c4a", "set": "rav", "set_name": "Ravnica: City of Guilds", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/15fccbe8-2825-41ca-9d0a-67aebdf91c4a", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Arav&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/rav?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/581f3780-c480-48c6-b15c-1618f2feccb9/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ad71cd08e-3e84-41ff-b9db-9e343c0af6b4&unique=prints", "collector_number": "63", "digital": false, "rarity": "uncommon", "flavor_text": "\"Well, at least all of that arm-waving and arcane babbling you did was impressive.\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Mark A. Nelson", "artist_ids": ["a10f59a4-36fd-4ef3-966b-5570ca118062"], "illustration_id": "b591d00a-634a-4041-baba-8fca11beecbd", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 3112, "prices": {"usd": "1.78", "usd_foil": "17.29", "usd_etched": null, "eur": "1.48", "eur_foil": "7.00", "tix": "0.06"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=87919", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Remand&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Remand&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Remand"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/13390?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Remand&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/23174?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "d41e8cc0-4e05-412b-8ea3-d5b5c45da601", "oracle_id": "d71cd08e-3e84-41ff-b9db-9e343c0af6b4", "multiverse_ids": [], "tcgplayer_id": 38145, "cardmarket_id": 18829, "name": "Remand", "lang": "en", "released_at": "2008-01-01", "uri": "https://api.scryfall.com/cards/d41e8cc0-4e05-412b-8ea3-d5b5c45da601", "scryfall_uri": "https://scryfall.com/card/f08/1/remand?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/d/4/d41e8cc0-4e05-412b-8ea3-d5b5c45da601.jpg?1562164467", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/4/d41e8cc0-4e05-412b-8ea3-d5b5c45da601.jpg?1562164467", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/d/4/d41e8cc0-4e05-412b-8ea3-d5b5c45da601.jpg?1562164467", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/d/4/d41e8cc0-4e05-412b-8ea3-d5b5c45da601.png?1562164467", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/4/d41e8cc0-4e05-412b-8ea3-d5b5c45da601.jpg?1562164467", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/d/4/d41e8cc0-4e05-412b-8ea3-d5b5c45da601.jpg?1562164467"}, "mana_cost": "{1}{U}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Counter target spell. If that spell is countered this way, put it into its owner's hand instead of into that player's graveyard.\nDraw a card.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": true, "nonfoil": false, "finishes": ["foil"], "oversized": false, "promo": true, "reprint": true, "variation": false, "set_id": "1d9c28af-5035-4b6d-9944-62b51cfd688d", "set": "f08", "set_name": "Friday Night Magic 2008", "set_type": "promo", "set_uri": "https://api.scryfall.com/sets/1d9c28af-5035-4b6d-9944-62b51cfd688d", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Af08&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/f08?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/d41e8cc0-4e05-412b-8ea3-d5b5c45da601/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ad71cd08e-3e84-41ff-b9db-9e343c0af6b4&unique=prints", "collector_number": "1", "digital": false, "rarity": "rare", "watermark": "fnm", "flavor_text": "Well, at least all of that arm-waving and arcane babbling you did was impressive.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Hideaki Takamura", "artist_ids": ["49b6270b-1b28-4e03-b503-522f97dc3a78"], "illustration_id": "6d32ca6e-902c-4721-a88b-9b34e780bc23", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "promo_types": ["tourney", "fnm"], "edhrec_rank": 3112, "prices": {"usd": null, "usd_foil": "15.34", "usd_etched": null, "eur": null, "eur_foil": "8.99", "tix": null}, "related_uris": {"tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Remand&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Remand&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Remand"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/38145?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Remand&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Remand&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "f25f4f0e-bbf4-46b1-97fd-e796ff9e138f", "oracle_id": "b13c0f76-fbda-4911-9442-c3d7e97f1aac", "multiverse_ids": [11470], "mtgo_id": 15792, "mtgo_foil_id": 15793, "tcgplayer_id": 3050, "cardmarket_id": 2857, "name": "Remove Soul", "lang": "en", "released_at": "2001-04-11", "uri": "https://api.scryfall.com/cards/f25f4f0e-bbf4-46b1-97fd-e796ff9e138f", "scryfall_uri": "https://scryfall.com/card/7ed/95/remove-soul?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/f/2/f25f4f0e-bbf4-46b1-97fd-e796ff9e138f.jpg?1562251278", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/2/f25f4f0e-bbf4-46b1-97fd-e796ff9e138f.jpg?1562251278", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/f/2/f25f4f0e-bbf4-46b1-97fd-e796ff9e138f.jpg?1562251278", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/f/2/f25f4f0e-bbf4-46b1-97fd-e796ff9e138f.png?1562251278", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/2/f25f4f0e-bbf4-46b1-97fd-e796ff9e138f.jpg?1562251278", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/f/2/f25f4f0e-bbf4-46b1-97fd-e796ff9e138f.jpg?1562251278"}, "mana_cost": "{1}{U}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Counter target creature spell.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "230f38aa-9511-4db8-a3aa-aeddbc3f7bb9", "set": "7ed", "set_name": "Seventh Edition", "set_type": "core", "set_uri": "https://api.scryfall.com/sets/230f38aa-9511-4db8-a3aa-aeddbc3f7bb9", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3A7ed&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/7ed?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/f25f4f0e-bbf4-46b1-97fd-e796ff9e138f/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ab13c0f76-fbda-4911-9442-c3d7e97f1aac&unique=prints", "collector_number": "95", "digital": false, "rarity": "common", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Adam Rex", "artist_ids": ["445bd2fb-4a70-4599-87a4-83cf5979fc56"], "illustration_id": "e1922dfa-3d34-41e2-9350-14b704c9739d", "border_color": "white", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 9876, "penny_rank": 1355, "prices": {"usd": "0.13", "usd_foil": "14.49", "usd_etched": null, "eur": "0.14", "eur_foil": "11.25", "tix": "0.11"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=11470", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Remove+Soul&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Remove+Soul&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Remove+Soul"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/3050?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Remove+Soul&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/15792?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "fd6bbb81-b830-4b22-be9a-852d9edbda21", "oracle_id": "b13c0f76-fbda-4911-9442-c3d7e97f1aac", "multiverse_ids": [3938], "tcgplayer_id": 2342, "cardmarket_id": 9488, "name": "Remove Soul", "lang": "en", "released_at": "1997-03-24", "uri": "https://api.scryfall.com/cards/fd6bbb81-b830-4b22-be9a-852d9edbda21", "scryfall_uri": "https://scryfall.com/card/5ed/117/remove-soul?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/f/d/fd6bbb81-b830-4b22-be9a-852d9edbda21.jpg?1562595434", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/d/fd6bbb81-b830-4b22-be9a-852d9edbda21.jpg?1562595434", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/f/d/fd6bbb81-b830-4b22-be9a-852d9edbda21.jpg?1562595434", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/f/d/fd6bbb81-b830-4b22-be9a-852d9edbda21.png?1562595434", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/d/fd6bbb81-b830-4b22-be9a-852d9edbda21.jpg?1562595434", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/f/d/fd6bbb81-b830-4b22-be9a-852d9edbda21.jpg?1562595434"}, "mana_cost": "{1}{U}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Counter target creature spell.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "5afd2f4b-8309-4f45-a2b2-3785018474cb", "set": "5ed", "set_name": "Fifth Edition", "set_type": "core", "set_uri": "https://api.scryfall.com/sets/5afd2f4b-8309-4f45-a2b2-3785018474cb", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3A5ed&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/5ed?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/fd6bbb81-b830-4b22-be9a-852d9edbda21/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ab13c0f76-fbda-4911-9442-c3d7e97f1aac&unique=prints", "collector_number": "117", "digital": false, "rarity": "common", "flavor_text": "Nethya stiffened suddenly, head cocked as if straining to hear some distant sound, then fell lifeless to the ground.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Mike Dringenberg", "artist_ids": ["a1407afa-0f54-43f8-938b-88b268074f91"], "illustration_id": "4ac95030-473b-47bf-8d17-fbdf214ddffd", "border_color": "white", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 9876, "penny_rank": 1355, "prices": {"usd": "0.09", "usd_foil": null, "usd_etched": null, "eur": "0.09", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=3938", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Remove+Soul&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Remove+Soul&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Remove+Soul"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/2342?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Remove+Soul&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Remove+Soul&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "63de147c-2e62-41b9-8ada-93406387f08b", "oracle_id": "b13c0f76-fbda-4911-9442-c3d7e97f1aac", "multiverse_ids": [1498], "tcgplayer_id": 4001, "cardmarket_id": 7043, "name": "Remove Soul", "lang": "en", "released_at": "1994-06-01", "uri": "https://api.scryfall.com/cards/63de147c-2e62-41b9-8ada-93406387f08b", "scryfall_uri": "https://scryfall.com/card/leg/72/remove-soul?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/6/3/63de147c-2e62-41b9-8ada-93406387f08b.jpg?1562859196", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/3/63de147c-2e62-41b9-8ada-93406387f08b.jpg?1562859196", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/6/3/63de147c-2e62-41b9-8ada-93406387f08b.jpg?1562859196", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/6/3/63de147c-2e62-41b9-8ada-93406387f08b.png?1562859196", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/3/63de147c-2e62-41b9-8ada-93406387f08b.jpg?1562859196", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/6/3/63de147c-2e62-41b9-8ada-93406387f08b.jpg?1562859196"}, "mana_cost": "{1}{U}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Counter target creature spell.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "legal", "premodern": "legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "78c50b4b-b220-455b-a2d5-cee458fa56f3", "set": "leg", "set_name": "Legends", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/78c50b4b-b220-455b-a2d5-cee458fa56f3", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aleg&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/leg?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/63de147c-2e62-41b9-8ada-93406387f08b/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ab13c0f76-fbda-4911-9442-c3d7e97f1aac&unique=prints", "collector_number": "72", "digital": false, "rarity": "common", "flavor_text": "Nethya stiffened suddenly, head cocked as if straining to hear some distant sound, then fell lifeless to the ground.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Brian Sn\u00f5ddy", "artist_ids": ["770b4e16-de76-49ed-949f-84e6d2e06d25"], "illustration_id": "8bada49d-dd1a-4bca-a562-126cddf25630", "border_color": "black", "frame": "1993", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 9876, "penny_rank": 1355, "prices": {"usd": "0.62", "usd_foil": null, "usd_etched": null, "eur": "0.73", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=1498", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Remove+Soul&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Remove+Soul&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Remove+Soul"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/4001?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Remove+Soul&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Remove+Soul&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "675440ff-9701-4310-a4ad-8502b9cb73ae", "oracle_id": "b13c0f76-fbda-4911-9442-c3d7e97f1aac", "multiverse_ids": [], "tcgplayer_id": 38336, "cardmarket_id": 20802, "name": "Remove Soul", "lang": "en", "released_at": "2009-01-01", "uri": "https://api.scryfall.com/cards/675440ff-9701-4310-a4ad-8502b9cb73ae", "scryfall_uri": "https://scryfall.com/card/p09/5/remove-soul?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/6/7/675440ff-9701-4310-a4ad-8502b9cb73ae.jpg?1561757323", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/7/675440ff-9701-4310-a4ad-8502b9cb73ae.jpg?1561757323", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/6/7/675440ff-9701-4310-a4ad-8502b9cb73ae.jpg?1561757323", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/6/7/675440ff-9701-4310-a4ad-8502b9cb73ae.png?1561757323", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/7/675440ff-9701-4310-a4ad-8502b9cb73ae.jpg?1561757323", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/6/7/675440ff-9701-4310-a4ad-8502b9cb73ae.jpg?1561757323"}, "mana_cost": "{1}{U}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Counter target creature spell.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": true, "reprint": true, "variation": false, "set_id": "824eec08-e609-41db-8de4-4e58d8aeb37d", "set": "p09", "set_name": "Magic Player Rewards 2009", "set_type": "promo", "set_uri": "https://api.scryfall.com/sets/824eec08-e609-41db-8de4-4e58d8aeb37d", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ap09&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/p09?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/675440ff-9701-4310-a4ad-8502b9cb73ae/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ab13c0f76-fbda-4911-9442-c3d7e97f1aac&unique=prints", "collector_number": "5", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Mike Dringenberg", "artist_ids": ["a1407afa-0f54-43f8-938b-88b268074f91"], "illustration_id": "74005471-9685-4868-8ddf-5343e2f69b50", "border_color": "black", "frame": "2003", "full_art": true, "textless": true, "booster": false, "story_spotlight": false, "promo_types": ["playerrewards"], "edhrec_rank": 9876, "penny_rank": 1355, "prices": {"usd": "1.07", "usd_foil": null, "usd_etched": null, "eur": "0.50", "eur_foil": null, "tix": null}, "related_uris": {"tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Remove+Soul&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Remove+Soul&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Remove+Soul"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/38336?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Remove+Soul&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Remove+Soul&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "e3f3d6e4-0abe-4042-a7f6-0395683e8582", "oracle_id": "3966bd03-a98e-43b6-a0c0-10d4d81c173c", "multiverse_ids": [369022], "mtgo_id": 48202, "mtgo_foil_id": 48203, "tcgplayer_id": 67883, "cardmarket_id": 261218, "name": "Render Silent", "lang": "en", "released_at": "2013-05-03", "uri": "https://api.scryfall.com/cards/e3f3d6e4-0abe-4042-a7f6-0395683e8582", "scryfall_uri": "https://scryfall.com/card/dgm/96/render-silent?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/e/3/e3f3d6e4-0abe-4042-a7f6-0395683e8582.jpg?1562937631", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/3/e3f3d6e4-0abe-4042-a7f6-0395683e8582.jpg?1562937631", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/e/3/e3f3d6e4-0abe-4042-a7f6-0395683e8582.jpg?1562937631", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/e/3/e3f3d6e4-0abe-4042-a7f6-0395683e8582.png?1562937631", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/3/e3f3d6e4-0abe-4042-a7f6-0395683e8582.jpg?1562937631", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/e/3/e3f3d6e4-0abe-4042-a7f6-0395683e8582.jpg?1562937631"}, "mana_cost": "{W}{U}{U}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Counter target spell. Its controller can't cast spells this turn.", "colors": ["U", "W"], "color_identity": ["U", "W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "c8bd8520-cd98-45cd-b533-8d40c2087426", "set": "dgm", "set_name": "Dragon's Maze", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/c8bd8520-cd98-45cd-b533-8d40c2087426", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Adgm&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/dgm?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/e3f3d6e4-0abe-4042-a7f6-0395683e8582/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A3966bd03-a98e-43b6-a0c0-10d4d81c173c&unique=prints", "collector_number": "96", "digital": false, "rarity": "rare", "watermark": "azorius", "flavor_text": "\"We have confiscated your spells as evidence. Once we conclude our investigation, you may petition to have them returned.\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Matt Stewart", "artist_ids": ["20871267-2d8a-41d5-b03a-be3d557c5734"], "illustration_id": "52b54662-84b3-41b7-af65-c647d24124b0", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 1731, "penny_rank": 3279, "prices": {"usd": "2.00", "usd_foil": "2.68", "usd_etched": null, "eur": "0.65", "eur_foil": "1.40", "tix": "0.01"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=369022", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Render+Silent&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Render+Silent&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Render+Silent"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/67883?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Render+Silent&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/48202?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "4514a13f-5eee-49a8-876c-6b4befff4592", "oracle_id": "3966bd03-a98e-43b6-a0c0-10d4d81c173c", "multiverse_ids": [], "tcgplayer_id": 68025, "cardmarket_id": 261720, "name": "Render Silent", "lang": "en", "released_at": "2013-04-27", "uri": "https://api.scryfall.com/cards/4514a13f-5eee-49a8-876c-6b4befff4592", "scryfall_uri": "https://scryfall.com/card/pdgm/*96/render-silent?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/4/5/4514a13f-5eee-49a8-876c-6b4befff4592.jpg?1561757030", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/5/4514a13f-5eee-49a8-876c-6b4befff4592.jpg?1561757030", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/4/5/4514a13f-5eee-49a8-876c-6b4befff4592.jpg?1561757030", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/4/5/4514a13f-5eee-49a8-876c-6b4befff4592.png?1561757030", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/5/4514a13f-5eee-49a8-876c-6b4befff4592.jpg?1561757030", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/4/5/4514a13f-5eee-49a8-876c-6b4befff4592.jpg?1561757030"}, "mana_cost": "{W}{U}{U}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Counter target spell. Its controller can't cast spells this turn.", "colors": ["U", "W"], "color_identity": ["U", "W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": true, "nonfoil": false, "finishes": ["foil"], "oversized": false, "promo": true, "reprint": true, "variation": false, "set_id": "d29698eb-32e4-448f-977f-aa9b31c408b5", "set": "pdgm", "set_name": "Dragon's Maze Promos", "set_type": "promo", "set_uri": "https://api.scryfall.com/sets/d29698eb-32e4-448f-977f-aa9b31c408b5", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Apdgm&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/pdgm?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/4514a13f-5eee-49a8-876c-6b4befff4592/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A3966bd03-a98e-43b6-a0c0-10d4d81c173c&unique=prints", "collector_number": "*96", "digital": false, "rarity": "rare", "watermark": "azorius", "flavor_text": "\"We have confiscated your spells as evidence. Once we conclude our investigation, you may petition to have them returned.\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Kev Walker", "artist_ids": ["f366a0ee-a0cd-466d-ba6a-90058c7a31a6"], "illustration_id": "b4c869cd-a6a6-4922-aa8f-f8c7542b5e1b", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "promo_types": ["setpromo", "buyabox"], "edhrec_rank": 1731, "penny_rank": 3279, "prices": {"usd": null, "usd_foil": "3.53", "usd_etched": null, "eur": null, "eur_foil": "2.13", "tix": null}, "related_uris": {"tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Render+Silent&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Render+Silent&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Render+Silent"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/68025?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Render+Silent&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Render+Silent&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "38e64b09-1a58-4669-b7f2-baa3ccc85f2d", "oracle_id": "94a241bf-5709-4890-8f06-017833869d62", "multiverse_ids": [158761], "mtgo_id": 29825, "mtgo_foil_id": 29826, "tcgplayer_id": 18761, "cardmarket_id": 19161, "name": "Repel Intruders", "lang": "en", "released_at": "2008-05-02", "uri": "https://api.scryfall.com/cards/38e64b09-1a58-4669-b7f2-baa3ccc85f2d", "scryfall_uri": "https://scryfall.com/card/shm/147/repel-intruders?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/3/8/38e64b09-1a58-4669-b7f2-baa3ccc85f2d.jpg?1568911006", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/8/38e64b09-1a58-4669-b7f2-baa3ccc85f2d.jpg?1568911006", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/3/8/38e64b09-1a58-4669-b7f2-baa3ccc85f2d.jpg?1568911006", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/3/8/38e64b09-1a58-4669-b7f2-baa3ccc85f2d.png?1568911006", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/8/38e64b09-1a58-4669-b7f2-baa3ccc85f2d.jpg?1568911006", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/3/8/38e64b09-1a58-4669-b7f2-baa3ccc85f2d.jpg?1568911006"}, "mana_cost": "{3}{W/U}", "cmc": 4.0, "type_line": "Instant", "oracle_text": "Create two 1/1 white Kithkin Soldier creature tokens if {W} was spent to cast this spell. Counter up to one target creature spell if {U} was spent to cast this spell. (Do both if {W}{U} was spent.)", "colors": ["U", "W"], "color_identity": ["U", "W"], "keywords": [], "all_parts": [{"object": "related_card", "id": "38e64b09-1a58-4669-b7f2-baa3ccc85f2d", "component": "combo_piece", "name": "Repel Intruders", "type_line": "Instant", "uri": "https://api.scryfall.com/cards/38e64b09-1a58-4669-b7f2-baa3ccc85f2d"}, {"object": "related_card", "id": "061cb705-695a-4f65-adbf-869ebb4eb946", "component": "token", "name": "Kithkin Soldier", "type_line": "Token Creature \u2014 Kithkin Soldier", "uri": "https://api.scryfall.com/cards/061cb705-695a-4f65-adbf-869ebb4eb946"}], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "c18c0ba1-2081-4808-9b2e-549bc3a666f3", "set": "shm", "set_name": "Shadowmoor", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/c18c0ba1-2081-4808-9b2e-549bc3a666f3", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ashm&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/shm?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/38e64b09-1a58-4669-b7f2-baa3ccc85f2d/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A94a241bf-5709-4890-8f06-017833869d62&unique=prints", "collector_number": "147", "digital": false, "rarity": "uncommon", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Trevor Hairsine", "artist_ids": ["7c1d7b59-dbf1-4ca8-9975-8e01c593da6e"], "illustration_id": "cb1498d9-a409-43bb-9b63-bd52fcde0f49", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 17714, "penny_rank": 6123, "prices": {"usd": "0.19", "usd_foil": "0.37", "usd_etched": null, "eur": "0.24", "eur_foil": "0.20", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=158761", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Repel+Intruders&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Repel+Intruders&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Repel+Intruders"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/18761?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Repel+Intruders&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/29825?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "915ae03f-22f3-4ecc-a875-5226d8dec384", "oracle_id": "ede61683-fa78-4103-8248-e0e64162ed49", "multiverse_ids": [24588], "mtgo_id": 14161, "mtgo_foil_id": 14162, "tcgplayer_id": 7349, "cardmarket_id": 3936, "name": "Rethink", "lang": "en", "released_at": "2000-06-05", "uri": "https://api.scryfall.com/cards/915ae03f-22f3-4ecc-a875-5226d8dec384", "scryfall_uri": "https://scryfall.com/card/pcy/42/rethink?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/9/1/915ae03f-22f3-4ecc-a875-5226d8dec384.jpg?1562921984", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/1/915ae03f-22f3-4ecc-a875-5226d8dec384.jpg?1562921984", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/9/1/915ae03f-22f3-4ecc-a875-5226d8dec384.jpg?1562921984", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/9/1/915ae03f-22f3-4ecc-a875-5226d8dec384.png?1562921984", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/1/915ae03f-22f3-4ecc-a875-5226d8dec384.jpg?1562921984", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/9/1/915ae03f-22f3-4ecc-a875-5226d8dec384.jpg?1562921984"}, "mana_cost": "{2}{U}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Counter target spell unless its controller pays {X}, where X is its mana value.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "c233bd36-57c0-4aa2-ae6c-7aeabfb4e3ce", "set": "pcy", "set_name": "Prophecy", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/c233bd36-57c0-4aa2-ae6c-7aeabfb4e3ce", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Apcy&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/pcy?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/915ae03f-22f3-4ecc-a875-5226d8dec384/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aede61683-fa78-4103-8248-e0e64162ed49&unique=prints", "collector_number": "42", "digital": false, "rarity": "common", "flavor_text": "\"Are you *sure* you want to do that?\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Matt Cavotta", "artist_ids": ["2e6a0611-9411-4ba4-98e3-c0e18cbf9f83"], "illustration_id": "e1d3d985-377f-4d4c-9a38-21516aee67f9", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 15210, "penny_rank": 9615, "prices": {"usd": "0.13", "usd_foil": "1.86", "usd_etched": null, "eur": "0.02", "eur_foil": "1.13", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=24588", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Rethink&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Rethink&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Rethink"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/7349?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Rethink&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/14161?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "6ea63dad-6afe-464e-ab19-fabd9709c6f9", "oracle_id": "879c8663-5058-4998-9a59-f2e9ea8914dc", "multiverse_ids": [417634], "mtgo_id": 62089, "mtgo_foil_id": 62090, "tcgplayer_id": 123159, "cardmarket_id": 292814, "name": "Revolutionary Rebuff", "lang": "en", "released_at": "2016-09-30", "uri": "https://api.scryfall.com/cards/6ea63dad-6afe-464e-ab19-fabd9709c6f9", "scryfall_uri": "https://scryfall.com/card/kld/61/revolutionary-rebuff?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/6/e/6ea63dad-6afe-464e-ab19-fabd9709c6f9.jpg?1576381387", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/e/6ea63dad-6afe-464e-ab19-fabd9709c6f9.jpg?1576381387", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/6/e/6ea63dad-6afe-464e-ab19-fabd9709c6f9.jpg?1576381387", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/6/e/6ea63dad-6afe-464e-ab19-fabd9709c6f9.png?1576381387", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/e/6ea63dad-6afe-464e-ab19-fabd9709c6f9.jpg?1576381387", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/6/e/6ea63dad-6afe-464e-ab19-fabd9709c6f9.jpg?1576381387"}, "mana_cost": "{1}{U}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Counter target nonartifact spell unless its controller pays {2}.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "d667e468-be8f-411f-a030-473d148deb74", "set": "kld", "set_name": "Kaladesh", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/d667e468-be8f-411f-a030-473d148deb74", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Akld&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/kld?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/6ea63dad-6afe-464e-ab19-fabd9709c6f9/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A879c8663-5058-4998-9a59-f2e9ea8914dc&unique=prints", "collector_number": "61", "digital": false, "rarity": "common", "flavor_text": "By the time a Consulate sanction becomes official, the renegade quicksmiths have already found a way to circumvent it.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Zack Stella", "artist_ids": ["17bc7f55-958b-43f4-bb40-09746d05b3f9"], "illustration_id": "f1e77c32-dbef-44f2-ad88-3176c4c444ea", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 14864, "penny_rank": 1101, "prices": {"usd": "0.03", "usd_foil": "0.07", "usd_etched": null, "eur": "0.01", "eur_foil": "0.09", "tix": "0.04"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=417634", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Revolutionary+Rebuff&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Revolutionary+Rebuff&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Revolutionary+Rebuff"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/123159?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Revolutionary+Rebuff&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/62089?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "9e51c4fb-fb29-4b1c-b78e-1fadf94fc9a5", "oracle_id": "bb27bfdf-fe8d-45bd-ad62-8118dce06eda", "multiverse_ids": [5670], "mtgo_id": 12247, "mtgo_foil_id": 12248, "tcgplayer_id": 7007, "cardmarket_id": 10300, "name": "Rewind", "lang": "en", "released_at": "1998-10-12", "uri": "https://api.scryfall.com/cards/9e51c4fb-fb29-4b1c-b78e-1fadf94fc9a5", "scryfall_uri": "https://scryfall.com/card/usg/93/rewind?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/9/e/9e51c4fb-fb29-4b1c-b78e-1fadf94fc9a5.jpg?1562928379", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/e/9e51c4fb-fb29-4b1c-b78e-1fadf94fc9a5.jpg?1562928379", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/9/e/9e51c4fb-fb29-4b1c-b78e-1fadf94fc9a5.jpg?1562928379", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/9/e/9e51c4fb-fb29-4b1c-b78e-1fadf94fc9a5.png?1562928379", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/e/9e51c4fb-fb29-4b1c-b78e-1fadf94fc9a5.jpg?1562928379", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/9/e/9e51c4fb-fb29-4b1c-b78e-1fadf94fc9a5.jpg?1562928379"}, "mana_cost": "{2}{U}{U}", "cmc": 4.0, "type_line": "Instant", "oracle_text": "Counter target spell. Untap up to four lands.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "c330df40-51db-4caf-bde6-48df6c181001", "set": "usg", "set_name": "Urza's Saga", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/c330df40-51db-4caf-bde6-48df6c181001", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ausg&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/usg?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/9e51c4fb-fb29-4b1c-b78e-1fadf94fc9a5/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Abb27bfdf-fe8d-45bd-ad62-8118dce06eda&unique=prints", "collector_number": "93", "digital": false, "rarity": "common", "flavor_text": "\"Time flows like a river. In Tolaria we practice the art of building dams.\"\n\u2014Barrin, master wizard", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Dermot Power", "artist_ids": ["4162c8c0-8ded-497c-b29e-131e43dfae5e"], "illustration_id": "b56d4c59-f996-4749-8663-85036614ecb4", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 702, "penny_rank": 1398, "prices": {"usd": "0.25", "usd_foil": null, "usd_etched": null, "eur": "0.20", "eur_foil": null, "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=5670", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Rewind&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Rewind&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Rewind"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/7007?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Rewind&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/12247?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "fa88f595-1b6f-4af0-bc50-bd07c8be431f", "oracle_id": "f88e7647-49dc-4d55-99f6-2f153854e5c0", "multiverse_ids": [29722], "mtgo_id": 16921, "mtgo_foil_id": 16922, "tcgplayer_id": 9374, "cardmarket_id": 2511, "name": "Rites of Refusal", "lang": "en", "released_at": "2001-10-01", "uri": "https://api.scryfall.com/cards/fa88f595-1b6f-4af0-bc50-bd07c8be431f", "scryfall_uri": "https://scryfall.com/card/ody/99/rites-of-refusal?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/f/a/fa88f595-1b6f-4af0-bc50-bd07c8be431f.jpg?1562942139", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/a/fa88f595-1b6f-4af0-bc50-bd07c8be431f.jpg?1562942139", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/f/a/fa88f595-1b6f-4af0-bc50-bd07c8be431f.jpg?1562942139", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/f/a/fa88f595-1b6f-4af0-bc50-bd07c8be431f.png?1562942139", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/a/fa88f595-1b6f-4af0-bc50-bd07c8be431f.jpg?1562942139", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/f/a/fa88f595-1b6f-4af0-bc50-bd07c8be431f.jpg?1562942139"}, "mana_cost": "{1}{U}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Discard any number of cards. Counter target spell unless its controller pays {3} for each card discarded this way.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "b0d90d2d-494a-4224-bfa0-36ce5ee281b1", "set": "ody", "set_name": "Odyssey", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/b0d90d2d-494a-4224-bfa0-36ce5ee281b1", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aody&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ody?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/fa88f595-1b6f-4af0-bc50-bd07c8be431f/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Af88e7647-49dc-4d55-99f6-2f153854e5c0&unique=prints", "collector_number": "99", "digital": false, "rarity": "common", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Bradley Williams", "artist_ids": ["24d81dfa-3745-4386-93f8-7e67dddb3c8a"], "illustration_id": "d2ad3c2e-1251-4b4b-9f01-739560420fc5", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 9848, "penny_rank": 2387, "prices": {"usd": "0.18", "usd_foil": "3.91", "usd_etched": null, "eur": "0.11", "eur_foil": "0.20", "tix": "0.06"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=29722", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Rites+of+Refusal&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Rites+of+Refusal&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Rites+of+Refusal"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/9374?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Rites+of+Refusal&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/16921?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "37b2fb23-f8b5-4f83-9b29-b18507acaa1a", "oracle_id": "22000392-99e9-4927-a488-1bcb576f6275", "multiverse_ids": [96916], "mtgo_id": 23731, "mtgo_foil_id": 23732, "tcgplayer_id": 13762, "cardmarket_id": 13244, "name": "Runeboggle", "lang": "en", "released_at": "2006-02-03", "uri": "https://api.scryfall.com/cards/37b2fb23-f8b5-4f83-9b29-b18507acaa1a", "scryfall_uri": "https://scryfall.com/card/gpt/33/runeboggle?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/3/7/37b2fb23-f8b5-4f83-9b29-b18507acaa1a.jpg?1593272065", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/7/37b2fb23-f8b5-4f83-9b29-b18507acaa1a.jpg?1593272065", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/3/7/37b2fb23-f8b5-4f83-9b29-b18507acaa1a.jpg?1593272065", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/3/7/37b2fb23-f8b5-4f83-9b29-b18507acaa1a.png?1593272065", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/7/37b2fb23-f8b5-4f83-9b29-b18507acaa1a.jpg?1593272065", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/3/7/37b2fb23-f8b5-4f83-9b29-b18507acaa1a.jpg?1593272065"}, "mana_cost": "{2}{U}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Counter target spell unless its controller pays {1}.\nDraw a card.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "594b4d09-8ce1-494d-bdb2-842c124bd087", "set": "gpt", "set_name": "Guildpact", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/594b4d09-8ce1-494d-bdb2-842c124bd087", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Agpt&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/gpt?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/37b2fb23-f8b5-4f83-9b29-b18507acaa1a/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A22000392-99e9-4927-a488-1bcb576f6275&unique=prints", "collector_number": "33", "digital": false, "rarity": "common", "flavor_text": "\"Ever try to count hyperactive schoolchildren while someone shouts random numbers in your ear? It's like that.\"\n\u2014Geetra, frustrated mage", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Ron Spencer", "artist_ids": ["dab52c11-0564-4207-a4a1-c1735c946a65"], "illustration_id": "85aad778-4a92-4114-8e88-02afa9e69a34", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 19465, "penny_rank": 11585, "prices": {"usd": "0.04", "usd_foil": "0.34", "usd_etched": null, "eur": "0.02", "eur_foil": "0.09", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=96916", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Runeboggle&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Runeboggle&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Runeboggle"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/13762?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Runeboggle&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/23731?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "45b6cadf-1974-47c8-98d8-ba413486c3b5", "oracle_id": "49bf3805-cc9e-4550-8a01-171282aa49c9", "multiverse_ids": [121247], "mtgo_id": 24721, "mtgo_foil_id": 24722, "tcgplayer_id": 14107, "cardmarket_id": 13714, "name": "Rune Snag", "lang": "en", "released_at": "2006-07-21", "uri": "https://api.scryfall.com/cards/45b6cadf-1974-47c8-98d8-ba413486c3b5", "scryfall_uri": "https://scryfall.com/card/csp/46/rune-snag?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/4/5/45b6cadf-1974-47c8-98d8-ba413486c3b5.jpg?1593275010", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/5/45b6cadf-1974-47c8-98d8-ba413486c3b5.jpg?1593275010", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/4/5/45b6cadf-1974-47c8-98d8-ba413486c3b5.jpg?1593275010", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/4/5/45b6cadf-1974-47c8-98d8-ba413486c3b5.png?1593275010", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/5/45b6cadf-1974-47c8-98d8-ba413486c3b5.jpg?1593275010", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/4/5/45b6cadf-1974-47c8-98d8-ba413486c3b5.jpg?1593275010"}, "mana_cost": "{1}{U}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Counter target spell unless its controller pays {2} plus an additional {2} for each card named Rune Snag in each graveyard.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "1f4f105f-73e4-4f03-849e-82a204807847", "set": "csp", "set_name": "Coldsnap", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/1f4f105f-73e4-4f03-849e-82a204807847", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Acsp&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/csp?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/45b6cadf-1974-47c8-98d8-ba413486c3b5/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A49bf3805-cc9e-4550-8a01-171282aa49c9&unique=prints", "collector_number": "46", "digital": false, "rarity": "common", "flavor_text": "\"Concentration is key. Without it, a mage conjures nothing but a splitting headache.\"\n\u2014Zur the Enchanter", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Dave Dorman", "artist_ids": ["9235458b-ce92-45bd-a430-a72ecd8e6176"], "illustration_id": "9988aa22-39f8-4516-9e6f-96cc950b7697", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 18009, "penny_rank": 516, "prices": {"usd": "0.15", "usd_foil": "1.18", "usd_etched": null, "eur": "0.02", "eur_foil": "0.55", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=121247", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Rune+Snag&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Rune+Snag&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Rune+Snag"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/14107?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Rune+Snag&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/24721?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}]} \ No newline at end of file +{"has_more": true, "data": [{"name": "Foil", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/7/870fb793-3107-4cb2-ba78-34fbf5c9da2f.jpg?1562920018", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/7/870fb793-3107-4cb2-ba78-34fbf5c9da2f.jpg?1562920018"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Fold into Aether", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/1/615157d6-0160-417b-b06c-0e253b306c37.jpg?1562877336", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/1/615157d6-0160-417b-b06c-0e253b306c37.jpg?1562877336"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Forbid", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/9/29df5ef7-d679-4543-bdb7-3984155c87e0.jpg?1562087370", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/9/29df5ef7-d679-4543-bdb7-3984155c87e0.jpg?1562087370"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Forbid", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/4/14a9cc52-a45b-4cde-8aff-d672b35c3118.jpg?1562899128", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/4/14a9cc52-a45b-4cde-8aff-d672b35c3118.jpg?1562899128"}, "reprint": true, "digital": false, "set_type": "masterpiece"}, {"name": "Forceful Denial", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/7/27c75157-2670-4804-8853-a6867c83c40a.jpg?1608909212", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/7/27c75157-2670-4804-8853-a6867c83c40a.jpg?1608909212"}, "reprint": false, "digital": false, "set_type": "draft_innovation"}, {"name": "Force of Negation", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/9/e9be371c-c688-44ad-ab71-bd4c9f242d58.jpg?1562201382", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/9/e9be371c-c688-44ad-ab71-bd4c9f242d58.jpg?1562201382"}, "reprint": false, "digital": false, "set_type": "draft_innovation"}, {"name": "Force of Negation", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/3/5396b405-6fa0-43d7-a8f6-f64154e95e98.jpg?1655823932", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/3/5396b405-6fa0-43d7-a8f6-f64154e95e98.jpg?1655823932"}, "reprint": true, "frame_effects": ["inverted"], "digital": false, "set_type": "masters"}, {"name": "Force of Will", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/b/ebc01ab4-d89a-4d25-bf54-6aed33772f4b.jpg?1580013954", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/b/ebc01ab4-d89a-4d25-bf54-6aed33772f4b.jpg?1580013954"}, "reprint": true, "digital": false, "set_type": "masters"}, {"name": "Force of Will", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/a/9a879b60-4381-447d-8a5a-8e0b6a1d49ca.jpg?1562769672", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/a/9a879b60-4381-447d-8a5a-8e0b6a1d49ca.jpg?1562769672"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Force of Will", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/c/ec136ce7-bad4-4ebb-ab00-b86de3d209a7.jpg?1599710933", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/c/ec136ce7-bad4-4ebb-ab00-b86de3d209a7.jpg?1599710933"}, "reprint": true, "digital": false, "set_type": "masters"}, {"name": "Force of Will", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/2/026983a4-03ca-4812-b129-5ea523596942.jpg?1562895460", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/2/026983a4-03ca-4812-b129-5ea523596942.jpg?1562895460"}, "reprint": true, "digital": false, "set_type": "masterpiece"}, {"name": "Force of Will", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/3/53ed5673-728f-4da3-ad18-3bd72032e815.jpg?1562258455", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/3/53ed5673-728f-4da3-ad18-3bd72032e815.jpg?1562258455"}, "reprint": true, "digital": false, "set_type": "promo"}, {"name": "Force Spike", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/d/1d03d73f-0530-4125-8689-1c43e502e331.jpg?1562233829", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/d/1d03d73f-0530-4125-8689-1c43e502e331.jpg?1562233829"}, "reprint": true, "digital": false, "set_type": "core"}, {"name": "Force Spike", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/a/ba23d540-8c2d-4a42-b4c0-86f0988bd1ce.jpg?1562593757", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/a/ba23d540-8c2d-4a42-b4c0-86f0988bd1ce.jpg?1562593757"}, "reprint": true, "digital": false, "set_type": "core"}, {"name": "Force Spike", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/0/70e64028-ae96-4950-aa6c-9d347409fad3.jpg?1562859654", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/0/70e64028-ae96-4950-aa6c-9d347409fad3.jpg?1562859654"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Force Void", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/2/226555ba-22af-45f1-a3f4-d265f8685dd5.jpg?1587911634", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/2/226555ba-22af-45f1-a3f4-d265f8685dd5.jpg?1587911634"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Frazzle", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/8/68b7f705-4d64-4551-8d76-826d91324e9e.jpg?1593271993", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/8/68b7f705-4d64-4551-8d76-826d91324e9e.jpg?1593271993"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Frightful Delusion", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/8/38c9ba98-90b4-4c28-9eef-a4fe0913b921.jpg?1562828708", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/8/38c9ba98-90b4-4c28-9eef-a4fe0913b921.jpg?1562828708"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Fuel for the Cause", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/1/4126e0e5-9b23-496f-8a09-7a35499f9a09.jpg?1562610827", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/1/4126e0e5-9b23-496f-8a09-7a35499f9a09.jpg?1562610827"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Gainsay", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/6/e658939a-fa5a-4497-b35c-b6fbfa3f6882.jpg?1562835545", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/6/e658939a-fa5a-4497-b35c-b6fbfa3f6882.jpg?1562835545"}, "reprint": true, "digital": false, "set_type": "expansion"}, {"name": "Gainsay", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/7/a70a2092-5048-49c0-9351-a3f882c2f56e.jpg?1562930170", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/7/a70a2092-5048-49c0-9351-a3f882c2f56e.jpg?1562930170"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Gale's Redirection", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/f/1f5ddcf8-c87b-4a26-b226-8593f517a74a.jpg?1653353395", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/f/1f5ddcf8-c87b-4a26-b226-8593f517a74a.jpg?1653353395"}, "reprint": false, "digital": false, "set_type": "draft_innovation"}, {"name": "Geistlight Snare", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/3/7302b5da-cac5-4ce7-ad38-2ff4e410891b.jpg?1643587841", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/3/7302b5da-cac5-4ce7-ad38-2ff4e410891b.jpg?1643587841"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Geist Snatch", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/6/b6dac5db-ef96-4bd5-aabc-e5ae2b95c8c3.jpg?1592708554", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/6/b6dac5db-ef96-4bd5-aabc-e5ae2b95c8c3.jpg?1592708554"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Glorious End", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/9/2922b976-7beb-4c68-b39e-1b66d5c6f65e.jpg?1543675588", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/9/2922b976-7beb-4c68-b39e-1b66d5c6f65e.jpg?1543675588"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Grip of Amnesia", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/3/43dc7e2a-5b9b-4f0f-8b2e-a7c7f847e1f1.jpg?1562629609", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/3/43dc7e2a-5b9b-4f0f-8b2e-a7c7f847e1f1.jpg?1562629609"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Guttural Response", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/1/9121e55e-5070-48cc-b706-92c67ad89254.jpg?1592761849", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/1/9121e55e-5070-48cc-b706-92c67ad89254.jpg?1592761849"}, "reprint": true, "digital": false, "set_type": "duel_deck"}, {"name": "Guttural Response", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/0/e0662ab6-b475-4b8d-ae77-a9b654e611da.jpg?1562837134", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/0/e0662ab6-b475-4b8d-ae77-a9b654e611da.jpg?1562837134"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Halt Order", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/f/7fed18af-7301-4d03-ba7c-e94f07f078b3.jpg?1562819574", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/f/7fed18af-7301-4d03-ba7c-e94f07f078b3.jpg?1562819574"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Hinder", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/c/dc7befed-805b-4a02-a87d-7df3a95db8a0.jpg?1562765119", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/c/dc7befed-805b-4a02-a87d-7df3a95db8a0.jpg?1562765119"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Hinder", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/7/679d6226-7ec1-44f3-ac90-30b123501aa0.jpg?1561757329", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/7/679d6226-7ec1-44f3-ac90-30b123501aa0.jpg?1561757329"}, "reprint": true, "digital": false, "set_type": "promo"}, {"name": "Hindering Light", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/8/98e43870-4bed-4d76-a633-a6326c736d22.jpg?1562706936", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/8/98e43870-4bed-4d76-a633-a6326c736d22.jpg?1562706936"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Hindering Touch", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/b/db9735d9-4aac-4175-8ec8-fc9bfd8f2c5c.jpg?1562535667", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/b/db9735d9-4aac-4175-8ec8-fc9bfd8f2c5c.jpg?1562535667"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Hisoka's Defiance", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/9/09fd4d01-1204-46a3-b237-45c37985acac.jpg?1562757466", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/9/09fd4d01-1204-46a3-b237-45c37985acac.jpg?1562757466"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Hornswoggle", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/1/b10b8f15-b323-44d8-85a7-ed662a40889d.jpg?1555039907", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/1/b10b8f15-b323-44d8-85a7-ed662a40889d.jpg?1555039907"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Horribly Awry", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/c/4cd05532-686e-40dc-858b-8a77a3628c99.jpg?1562912968", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/c/4cd05532-686e-40dc-858b-8a77a3628c99.jpg?1562912968"}, "reprint": false, "frame_effects": ["devoid"], "digital": false, "set_type": "expansion"}, {"name": "Hydroblast", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/c/4c9c9b16-5567-4473-95e6-622292f77336.jpg?1580013995", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/c/4c9c9b16-5567-4473-95e6-622292f77336.jpg?1580013995"}, "reprint": true, "digital": false, "set_type": "masters"}, {"name": "Hydroblast", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/6/f62716f0-fde2-49ef-b8a4-c1b03f451194.jpg?1562941220", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/6/f62716f0-fde2-49ef-b8a4-c1b03f451194.jpg?1562941220"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Hydroblast", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/2/222db3a6-c2b1-48fc-9b0c-018ac6ed517b.jpg?1562543501", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/2/222db3a6-c2b1-48fc-9b0c-018ac6ed517b.jpg?1562543501"}, "reprint": true, "digital": true, "set_type": "promo"}, {"name": "Illumination", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/b/eb28f6e5-c9ef-416e-b315-967d857e7600.jpg?1562722393", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/b/eb28f6e5-c9ef-416e-b315-967d857e7600.jpg?1562722393"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Induce Paranoia", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/c/bc462b75-8b08-47a3-be22-d7b5c062ec5b.jpg?1598914307", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/c/bc462b75-8b08-47a3-be22-d7b5c062ec5b.jpg?1598914307"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Insidious Will", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/e/8eafb2bb-58bf-4c6b-ae8f-91bcea12c7d2.jpg?1576381260", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/e/8eafb2bb-58bf-4c6b-ae8f-91bcea12c7d2.jpg?1576381260"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Interdict", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/4/3442c919-73b9-4d29-a014-87293f456325.jpg?1562053290", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/4/3442c919-73b9-4d29-a014-87293f456325.jpg?1562053290"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Intervene", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/b/4b0e3894-5dfe-4d03-9996-eebf96c58168.jpg?1562862808", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/b/4b0e3894-5dfe-4d03-9996-eebf96c58168.jpg?1562862808"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Invasive Surgery", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/e/6e644e38-39bf-40bd-9be1-5eb80f472e81.jpg?1576384110", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/e/6e644e38-39bf-40bd-9be1-5eb80f472e81.jpg?1576384110"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Ionize", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/1/f161f7d2-eaa1-4931-93f9-befa8b5df821.jpg?1572893679", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/1/f161f7d2-eaa1-4931-93f9-befa8b5df821.jpg?1572893679"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Ixidor's Will", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/b/1b713448-853a-41ee-a302-963e9c1c1c65.jpg?1562901464", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/b/1b713448-853a-41ee-a302-963e9c1c1c65.jpg?1562901464"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Izzet Charm", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/1/61289196-a56b-4d24-b340-9cf067c77f45.jpg?1592713417", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/1/61289196-a56b-4d24-b340-9cf067c77f45.jpg?1592713417"}, "reprint": true, "digital": false, "set_type": "duel_deck"}, {"name": "Izzet Charm", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/8/e8e84a97-8e40-42fa-a114-df90e820ede6.jpg?1562497263", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/8/e8e84a97-8e40-42fa-a114-df90e820ede6.jpg?1562497263"}, "reprint": true, "digital": false, "set_type": "promo"}, {"name": "Jace's Defeat", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/6/c6b103c1-9b25-4bfe-9081-570977e9fdad.jpg?1562814148", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/6/c6b103c1-9b25-4bfe-9081-570977e9fdad.jpg?1562814148"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Jaded Response", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/a/6a9ab1f0-4e75-4165-85bc-6f838c221d6a.jpg?1562920093", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/a/6a9ab1f0-4e75-4165-85bc-6f838c221d6a.jpg?1562920093"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Keep Safe", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/e/febfa682-76ae-4979-a40c-c1eae1121f3c.jpg?1591226372", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/e/febfa682-76ae-4979-a40c-c1eae1121f3c.jpg?1591226372"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Kindred Denial", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/f/4fbdeac6-f61b-4669-934c-9216d669500f.jpg?1645417342", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/f/4fbdeac6-f61b-4669-934c-9216d669500f.jpg?1645417342"}, "reprint": false, "digital": true, "set_type": "alchemy"}, {"name": "Lapse of Certainty", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/c/ec609036-dfbf-47de-9a3a-762aea4196d4.jpg?1562804498", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/c/ec609036-dfbf-47de-9a3a-762aea4196d4.jpg?1562804498"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Laquatus's Disdain", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/2/e2ea5448-2d72-42eb-814c-197153d8e06a.jpg?1562632366", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/2/e2ea5448-2d72-42eb-814c-197153d8e06a.jpg?1562632366"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Last Word", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/3/139d2ece-f656-4cac-8d77-b0f083f76c70.jpg?1562635496", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/3/139d2ece-f656-4cac-8d77-b0f083f76c70.jpg?1562635496"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Lay Bare", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/4/0454c2a8-b17d-4cdf-8562-9a28bc6cf0be.jpg?1562700738", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/4/0454c2a8-b17d-4cdf-8562-9a28bc6cf0be.jpg?1562700738"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Liquify", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/2/12fadf25-0995-440d-a3e6-7964ed86cff6.jpg?1562628664", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/2/12fadf25-0995-440d-a3e6-7964ed86cff6.jpg?1562628664"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Lofty Denial", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/4/64832674-beb1-446e-b2f7-8a5e271139a5.jpg?1616182218", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/4/64832674-beb1-446e-b2f7-8a5e271139a5.jpg?1616182218"}, "reprint": false, "digital": false, "set_type": "core"}, {"name": "Logic Knot", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/2/624feb0e-f683-4eb6-a63b-7872d0e28f1f.jpg?1619394325", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/2/624feb0e-f683-4eb6-a63b-7872d0e28f1f.jpg?1619394325"}, "reprint": true, "digital": false, "set_type": "masters"}, {"name": "Logic Knot", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/e/4e946be1-4ed6-4e2c-9782-3f630f8a8e1f.jpg?1562910897", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/e/4e946be1-4ed6-4e2c-9782-3f630f8a8e1f.jpg?1562910897"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Lookout's Dispersal", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/5/f5751a3c-7695-4c47-9cbd-92fd5b1b7ec9.jpg?1562566719", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/5/f5751a3c-7695-4c47-9cbd-92fd5b1b7ec9.jpg?1562566719"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Lose Focus", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/8/985bdb0c-ce6c-4506-8163-76f3b2fdf5fb.jpg?1626094565", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/8/985bdb0c-ce6c-4506-8163-76f3b2fdf5fb.jpg?1626094565"}, "reprint": false, "digital": false, "set_type": "draft_innovation"}, {"name": "Lost in the Mist", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/e/1e5fc39d-590a-436b-ab90-a1741d2ae3da.jpg?1562827161", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/e/1e5fc39d-590a-436b-ab90-a1741d2ae3da.jpg?1562827161"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Mages' Contest", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/5/c516861c-68d9-4d02-a343-689dba0526c6.jpg?1562934507", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/5/c516861c-68d9-4d02-a343-689dba0526c6.jpg?1562934507"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Make Disappear", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/f/3f2d6a21-ea77-484b-9e3a-1bd49806f907.jpg?1649471769", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/f/3f2d6a21-ea77-484b-9e3a-1bd49806f907.jpg?1649471769"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Mana Drain", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/1/416d2d51-8f29-4e95-b037-e8c32b081e6c.jpg?1562848002", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/1/416d2d51-8f29-4e95-b037-e8c32b081e6c.jpg?1562848002"}, "reprint": true, "digital": false, "set_type": "masters"}, {"name": "Mana Drain", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/c/cc9a04dc-afee-4194-80f5-fb1d9c906de7.jpg?1562936126", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/c/cc9a04dc-afee-4194-80f5-fb1d9c906de7.jpg?1562936126"}, "reprint": true, "digital": true, "set_type": "masters"}, {"name": "Mana Drain", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/6/e691adef-3027-4e6a-889f-9f4e2df36a7c.jpg?1562861377", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/6/e691adef-3027-4e6a-889f-9f4e2df36a7c.jpg?1562861377"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Mana Drain", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/5/456a2f03-8304-4512-804c-76653e30f436.jpg?1655827521", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/5/456a2f03-8304-4512-804c-76653e30f436.jpg?1655827521"}, "reprint": true, "frame_effects": ["inverted"], "digital": false, "set_type": "masters"}, {"name": "Mana Leak", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/7/a7c7757d-8036-4b33-a1cb-07795d392588.jpg?1562470857", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/7/a7c7757d-8036-4b33-a1cb-07795d392588.jpg?1562470857"}, "reprint": true, "digital": false, "set_type": "core"}, {"name": "Mana Leak", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/b/abcaf16d-aa02-43e2-aa38-bb1835d47a05.jpg?1562597349", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/b/abcaf16d-aa02-43e2-aa38-bb1835d47a05.jpg?1562597349"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Mana Leak", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/e/dea41eb7-5828-4735-bca1-0dbb0fda04e3.jpg?1561758236", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/e/dea41eb7-5828-4735-bca1-0dbb0fda04e3.jpg?1561758236"}, "reprint": true, "digital": false, "set_type": "promo"}, {"name": "Mana Tithe", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/d/7d48d622-f397-4f31-b1a5-0c23f60aa71c.jpg?1562575298", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/d/7d48d622-f397-4f31-b1a5-0c23f60aa71c.jpg?1562575298"}, "reprint": false, "frame_effects": ["colorshifted"], "digital": false, "set_type": "expansion"}, {"name": "Mana Tithe", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/7/e7f32354-893d-4f0b-b555-e0757fb5443b.jpg?1623592291", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/7/e7f32354-893d-4f0b-b555-e0757fb5443b.jpg?1623592291"}, "reprint": true, "digital": false, "set_type": "masterpiece"}, {"name": "Mana Tithe", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/5/652b0ce3-293d-4599-8a04-9df01b9bc678.jpg?1561757305", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/5/652b0ce3-293d-4599-8a04-9df01b9bc678.jpg?1561757305"}, "reprint": true, "digital": false, "set_type": "promo"}, {"name": "Memory Drain", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/a/aadc1809-d6bb-455c-b6ce-dd11521808b6.jpg?1581479403", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/a/aadc1809-d6bb-455c-b6ce-dd11521808b6.jpg?1581479403"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Memory Lapse", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/0/30202613-d05f-4f47-af97-d0b75ccac293.jpg?1634131658", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/0/30202613-d05f-4f47-af97-d0b75ccac293.jpg?1634131658"}, "reprint": true, "digital": false, "set_type": "masters"}, {"name": "Memory Lapse", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/d/2d85cc30-ccae-4af8-834a-f7870dace679.jpg?1562235009", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/d/2d85cc30-ccae-4af8-834a-f7870dace679.jpg?1562235009"}, "reprint": true, "digital": false, "set_type": "core"}, {"name": "Memory Lapse", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/3/63453ed9-5cf1-4cad-b173-a067f22a4405.jpg?1562719747", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/3/63453ed9-5cf1-4cad-b173-a067f22a4405.jpg?1562719747"}, "reprint": true, "digital": false, "set_type": "expansion"}, {"name": "Memory Lapse", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/d/3d2cc591-3a81-468a-91a4-3c3aac83a21a.jpg?1562587259", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/d/3d2cc591-3a81-468a-91a4-3c3aac83a21a.jpg?1562587259"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Memory Lapse", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/c/6c8b5df3-6153-470e-be9c-f38d3cf66081.jpg?1562587296", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/c/6c8b5df3-6153-470e-be9c-f38d3cf66081.jpg?1562587296"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Memory Lapse", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/8/98c1b465-b6d9-491b-bfc2-c034cc825d27.jpg?1623592117", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/8/98c1b465-b6d9-491b-bfc2-c034cc825d27.jpg?1623592117"}, "reprint": true, "digital": false, "set_type": "masterpiece"}, {"name": "Mental Misstep", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/1/61e9c6df-1c84-4eab-9076-a4feb6347c10.jpg?1566819829", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/1/61e9c6df-1c84-4eab-9076-a4feb6347c10.jpg?1566819829"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Metallic Rebuke", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/7/f712ac26-dca4-459b-84c1-010597007f60.jpg?1576381519", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/7/f712ac26-dca4-459b-84c1-010597007f60.jpg?1576381519"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Minamo's Meddling", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/0/502c4aca-98f8-4c7d-89fd-ee42c938fac7.jpg?1562876978", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/0/502c4aca-98f8-4c7d-89fd-ee42c938fac7.jpg?1562876978"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Mindbreak Trap", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/f/4f51140b-6254-431a-8810-94307bfdfbbe.jpg?1562612097", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/f/4f51140b-6254-431a-8810-94307bfdfbbe.jpg?1562612097"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Mindstatic", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/5/55d3fad5-a12a-4b41-9c7b-c1af5e0b5ca8.jpg?1562910742", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/5/55d3fad5-a12a-4b41-9c7b-c1af5e0b5ca8.jpg?1562910742"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Mindswipe", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/5/557e8303-a021-4257-b41a-7d25f04618c8.jpg?1562786781", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/5/557e8303-a021-4257-b41a-7d25f04618c8.jpg?1562786781"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Miscalculation", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/b/4b4956a2-9a39-4152-9c98-70e4b2acfa26.jpg?1562862809", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/b/4b4956a2-9a39-4152-9c98-70e4b2acfa26.jpg?1562862809"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Miscast", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/3/033afbd5-9937-4957-98ba-48e469a490bb.jpg?1594735579", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/3/033afbd5-9937-4957-98ba-48e469a490bb.jpg?1594735579"}, "reprint": false, "digital": false, "set_type": "core"}, {"name": "Molten Influence", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/c/4c2b326b-d177-4a03-a0a3-fe2c2d4af272.jpg?1562908953", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/c/4c2b326b-d177-4a03-a0a3-fe2c2d4af272.jpg?1562908953"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Muddle the Mixture", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/c/4cc785b0-0a77-4b02-b0b4-2bda2fc621cc.jpg?1598914378", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/c/4cc785b0-0a77-4b02-b0b4-2bda2fc621cc.jpg?1598914378"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Mystical Dispute", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/b/fbe04cb8-a8b9-4241-baae-b398a2509a3a.jpg?1572489956", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/b/fbe04cb8-a8b9-4241-baae-b398a2509a3a.jpg?1572489956"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Mystic Confluence", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/1/81bbffc2-6f58-4baa-8f95-168eab106b15.jpg?1562706477", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/1/81bbffc2-6f58-4baa-8f95-168eab106b15.jpg?1562706477"}, "reprint": false, "digital": false, "set_type": "commander"}, {"name": "Mystic Denial", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/2/1296ddc4-300d-44f6-95d8-1b392613d379.jpg?1562255840", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/2/1296ddc4-300d-44f6-95d8-1b392613d379.jpg?1562255840"}, "reprint": true, "digital": false, "set_type": "starter"}, {"name": "Mystic Denial", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/0/30bb424f-f3d6-4616-a368-df12af3ad024.jpg?1562906405", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/0/30bb424f-f3d6-4616-a368-df12af3ad024.jpg?1562906405"}, "reprint": true, "digital": false, "set_type": "starter"}, {"name": "Mystic Denial", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/2/52d60f29-6da0-4ce6-9c92-96f313007271.jpg?1562446637", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/2/52d60f29-6da0-4ce6-9c92-96f313007271.jpg?1562446637"}, "reprint": false, "digital": false, "set_type": "starter"}, {"name": "Mystic Genesis", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/e/ae1dd1ac-1a1e-485d-a11f-d1323a69f95e.jpg?1561841867", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/e/ae1dd1ac-1a1e-485d-a11f-d1323a69f95e.jpg?1561841867"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Narset's Reversal", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/3/63754036-d51e-47bb-925b-564d9dc922ff.jpg?1557576279", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/3/63754036-d51e-47bb-925b-564d9dc922ff.jpg?1557576279"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Negate", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/9/e92c7477-d453-4fa4-acf4-3835ab9eb55a.jpg?1604194548", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/9/e92c7477-d453-4fa4-acf4-3835ab9eb55a.jpg?1604194548"}, "reprint": true, "digital": false, "set_type": "expansion"}, {"name": "Negate", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/1/31534f45-43e6-4103-bf58-ad8fa688e4b0.jpg?1555039942", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/1/31534f45-43e6-4103-bf58-ad8fa688e4b0.jpg?1555039942"}, "reprint": true, "digital": false, "set_type": "expansion"}, {"name": "Negate", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/b/cb142515-0856-441d-84d4-9c9d450a86e9.jpg?1576381530", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/b/cb142515-0856-441d-84d4-9c9d450a86e9.jpg?1576381530"}, "reprint": true, "digital": false, "set_type": "expansion"}, {"name": "Negate", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/2/026c499d-3d5b-4f65-a824-f78f146b82ef.jpg?1562895467", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/2/026c499d-3d5b-4f65-a824-f78f146b82ef.jpg?1562895467"}, "reprint": true, "digital": false, "set_type": "expansion"}, {"name": "Negate", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/0/60380ed0-fed1-4d68-9763-56a9ff8ac5e6.jpg?1562787156", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/0/60380ed0-fed1-4d68-9763-56a9ff8ac5e6.jpg?1562787156"}, "reprint": true, "digital": false, "set_type": "expansion"}, {"name": "Negate", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/a/5a501252-e722-4ebf-bcf7-f53a42745fa7.jpg?1562878670", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/a/5a501252-e722-4ebf-bcf7-f53a42745fa7.jpg?1562878670"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Negate", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/b/5bfe3a17-3349-4fcc-a9b5-418faa55cc43.jpg?1623592516", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/b/5bfe3a17-3349-4fcc-a9b5-418faa55cc43.jpg?1623592516"}, "reprint": true, "digital": false, "set_type": "masterpiece"}, {"name": "Negate", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/8/9850fbe9-68d2-4952-b48d-4737cef34f4a.jpg?1561757632", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/8/9850fbe9-68d2-4952-b48d-4737cef34f4a.jpg?1561757632"}, "reprint": true, "digital": false, "set_type": "spellbook"}, {"name": "Negate", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/2/226e5187-d285-4547-869d-761fdbee6f1b.jpg?1561756781", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/2/226e5187-d285-4547-869d-761fdbee6f1b.jpg?1561756781"}, "reprint": true, "digital": false, "set_type": "promo"}, {"name": "Neutralize", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/4/0430da3c-9460-4b62-ae28-2e7e6f4d06a4.jpg?1591226400", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/4/0430da3c-9460-4b62-ae28-2e7e6f4d06a4.jpg?1591226400"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Neutralizing Blast", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/5/e549a8fc-6001-43db-88b1-ce8ed42a3443.jpg?1562830917", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/5/e549a8fc-6001-43db-88b1-ce8ed42a3443.jpg?1562830917"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Nix", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/d/3dab4f64-2a91-409a-b83b-45b22afd22ff.jpg?1562907421", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/d/3dab4f64-2a91-409a-b83b-45b22afd22ff.jpg?1562907421"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "No Escape", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/c/bc9888a1-6f35-4802-b8fb-902017736d4a.jpg?1557576285", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/c/bc9888a1-6f35-4802-b8fb-902017736d4a.jpg?1557576285"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Not of This World", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/6/569e2c39-7a49-4a3b-afe5-1862a7da8026.jpg?1562704022", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/6/569e2c39-7a49-4a3b-afe5-1862a7da8026.jpg?1562704022"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Nullify", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/9/a940d859-3fb1-4946-8277-b7c503605b1e.jpg?1593091715", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/9/a940d859-3fb1-4946-8277-b7c503605b1e.jpg?1593091715"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Obscura Charm", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/9/9961562d-cad9-40e5-afae-3ebce77a2260.jpg?1648583418", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/9/9961562d-cad9-40e5-afae-3ebce77a2260.jpg?1648583418"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Obscura Charm", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/a/4a02b758-65b6-4c25-83b9-de63a1a92b51.jpg?1648583494", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/a/4a02b758-65b6-4c25-83b9-de63a1a92b51.jpg?1648583494"}, "reprint": false, "frame_effects": ["showcase"], "digital": false, "set_type": "expansion"}, {"name": "Offering to Asha", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/6/260fe443-ca03-42b1-bcee-86e5173c1aaf.jpg?1562640177", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/6/260fe443-ca03-42b1-bcee-86e5173c1aaf.jpg?1562640177"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Ojutai's Command", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/7/c7a7f500-594d-4c7b-80e8-54ae1ada2444.jpg?1562792959", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/7/c7a7f500-594d-4c7b-80e8-54ae1ada2444.jpg?1562792959"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Ojutai's Command", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/3/939778a2-a10d-4dd4-8f78-0c366b76bf81.jpg?1562876267", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/3/939778a2-a10d-4dd4-8f78-0c366b76bf81.jpg?1562876267"}, "reprint": true, "digital": false, "set_type": "promo"}, {"name": "Oppressive Will", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/b/abcb5e75-c7a1-41de-a952-05aefb115270.jpg?1562495576", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/b/abcb5e75-c7a1-41de-a952-05aefb115270.jpg?1562495576"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Out of Bounds", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/b/8b457672-902b-42c0-9d53-a3c21be2f500.jpg?1562923137", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/b/8b457672-902b-42c0-9d53-a3c21be2f500.jpg?1562923137"}, "reprint": false, "digital": false, "set_type": "draft_innovation"}, {"name": "Outwit", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/2/429f7cf0-579a-4003-b5cf-4baf5d420796.jpg?1592708662", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/2/429f7cf0-579a-4003-b5cf-4baf5d420796.jpg?1592708662"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Override", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/5/35964fa6-800d-41d6-9f82-fb9c87deee56.jpg?1562140248", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/5/35964fa6-800d-41d6-9f82-fb9c87deee56.jpg?1562140248"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Overrule", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/2/22b83a31-f974-4a49-b9ee-92f7767f11e0.jpg?1593273676", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/2/22b83a31-f974-4a49-b9ee-92f7767f11e0.jpg?1593273676"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Overwhelming Denial", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/3/33ff1000-1a4e-43f6-aa02-1dbe9fac6901.jpg?1562905471", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/3/33ff1000-1a4e-43f6-aa02-1dbe9fac6901.jpg?1562905471"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Overwhelming Intellect", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/b/cbeea686-7efc-48f5-b90b-bf1befc76a30.jpg?1562496066", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/b/cbeea686-7efc-48f5-b90b-bf1befc76a30.jpg?1562496066"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Pact of Negation", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/c/cca467a2-a2b3-4bdf-9d60-62979f675347.jpg?1562936138", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/c/cca467a2-a2b3-4bdf-9d60-62979f675347.jpg?1562936138"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Pact of Negation", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/a/3ab90299-547a-4538-a31c-f55afab10c50.jpg?1562906886", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/a/3ab90299-547a-4538-a31c-f55afab10c50.jpg?1562906886"}, "reprint": true, "digital": false, "set_type": "masterpiece"}, {"name": "Perplex", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/d/0db57459-29f0-4ef6-b256-56955036c0ef.jpg?1598917204", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/d/0db57459-29f0-4ef6-b256-56955036c0ef.jpg?1598917204"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Plasm Capture", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/f/0ffe8485-d5fb-47cc-af53-6e0fd062b7a2.jpg?1562898119", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/f/0ffe8485-d5fb-47cc-af53-6e0fd062b7a2.jpg?1562898119"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Power Sink", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/6/662cf693-18c4-4169-bcce-09862778f60c.jpg?1562916378", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/6/662cf693-18c4-4169-bcce-09862778f60c.jpg?1562916378"}, "reprint": true, "digital": false, "set_type": "expansion"}, {"name": "Power Sink", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/b/abc58c34-c3de-47f8-a42f-3a974dcb9c47.jpg?1562055922", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/b/abc58c34-c3de-47f8-a42f-3a974dcb9c47.jpg?1562055922"}, "reprint": true, "digital": false, "set_type": "expansion"}, {"name": "Power Sink", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/9/49717583-e0bb-47d6-92d0-8959af13391f.jpg?1562718814", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/9/49717583-e0bb-47d6-92d0-8959af13391f.jpg?1562718814"}, "reprint": true, "digital": false, "set_type": "expansion"}, {"name": "Power Sink", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/5/85cbec45-81b4-40cc-b356-d6713a6a9b2b.jpg?1562919825", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/5/85cbec45-81b4-40cc-b356-d6713a6a9b2b.jpg?1562919825"}, "reprint": true, "digital": false, "set_type": "expansion"}, {"name": "Power Sink", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/b/1b342dd3-09b9-4108-bf12-a65d4cef4eb9.jpg?1559591331", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/b/1b342dd3-09b9-4108-bf12-a65d4cef4eb9.jpg?1559591331"}, "reprint": false, "digital": false, "set_type": "core"}, {"name": "Preemptive Strike", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/2/c2314bf1-b22d-48c2-860f-e1081f56296b.jpg?1562257530", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/2/c2314bf1-b22d-48c2-860f-e1081f56296b.jpg?1562257530"}, "reprint": false, "digital": false, "set_type": "starter"}, {"name": "Prohibit", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/d/0daa5458-2a97-40d0-b18d-2381a7a68ee1.jpg?1562897807", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/d/0daa5458-2a97-40d0-b18d-2381a7a68ee1.jpg?1562897807"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Psychic Barrier", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/c/1cba7d67-5c6c-4738-8907-7cce503e3180.jpg?1562875859", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/c/1cba7d67-5c6c-4738-8907-7cce503e3180.jpg?1562875859"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Psychic Rebuttal", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/7/67a105f8-0c01-4c09-a3bf-8c912b6dc741.jpg?1562023585", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/7/67a105f8-0c01-4c09-a3bf-8c912b6dc741.jpg?1562023585"}, "reprint": false, "digital": false, "set_type": "core"}, {"name": "Psychic Strike", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/d/0d87927c-80a6-4146-92a5-58c510ce7958.jpg?1561815780", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/d/0d87927c-80a6-4146-92a5-58c510ce7958.jpg?1561815780"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Psychic Trance", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/5/d5e55695-16cc-4373-8078-959f1ded4c6d.jpg?1562945989", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/5/d5e55695-16cc-4373-8078-959f1ded4c6d.jpg?1562945989"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Punish Ignorance", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/b/9bc37d01-ffe5-4dfe-b59e-204df82d1d36.jpg?1562707043", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/b/9bc37d01-ffe5-4dfe-b59e-204df82d1d36.jpg?1562707043"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Put Away", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/1/c17dff9e-23f7-4b12-95e7-aa1c00ab3d18.jpg?1562835533", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/1/c17dff9e-23f7-4b12-95e7-aa1c00ab3d18.jpg?1562835533"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Pyroblast", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/0/b029eb9a-dd7a-40c2-96c4-0063d9cc002c.jpg?1580014621", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/0/b029eb9a-dd7a-40c2-96c4-0063d9cc002c.jpg?1580014621"}, "reprint": true, "digital": false, "set_type": "masters"}, {"name": "Pyroblast", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/3/c342cac5-08ae-4428-9c2c-f6c5904e54d2.jpg?1562931528", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/3/c342cac5-08ae-4428-9c2c-f6c5904e54d2.jpg?1562931528"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Pyroblast", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/3/93c460dc-cef2-4345-b9b8-a774307ba2d6.jpg?1593559584", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/3/93c460dc-cef2-4345-b9b8-a774307ba2d6.jpg?1593559584"}, "reprint": true, "digital": false, "set_type": "spellbook"}, {"name": "Pyroblast", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/3/33afbf78-7a50-48e0-bec8-656f571759e2.jpg?1562543945", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/3/33afbf78-7a50-48e0-bec8-656f571759e2.jpg?1562543945"}, "reprint": true, "digital": true, "set_type": "promo"}, {"name": "Quandrix Command", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/2/021b62d8-d160-47f5-bc51-0474f160d13f.jpg?1624739521", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/2/021b62d8-d160-47f5-bc51-0474f160d13f.jpg?1624739521"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Quash", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/8/48ca8c31-a9ea-4388-b257-951c1c68b86d.jpg?1562876834", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/8/48ca8c31-a9ea-4388-b257-951c1c68b86d.jpg?1562876834"}, "reprint": true, "digital": false, "set_type": "expansion"}, {"name": "Quash", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/2/62019ac4-a5a1-4a8c-bfb4-96e818949bbe.jpg?1562444219", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/2/62019ac4-a5a1-4a8c-bfb4-96e818949bbe.jpg?1562444219"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Quench", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/e/ee0ba01b-de96-4f8f-9405-ff3ad288afac.jpg?1589832153", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/e/ee0ba01b-de96-4f8f-9405-ff3ad288afac.jpg?1589832153"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Rakshasa's Disdain", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/d/bd9e8a25-2e71-431b-897f-8b62520a3ce9.jpg?1562829343", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/d/bd9e8a25-2e71-431b-897f-8b62520a3ce9.jpg?1562829343"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Rebuff the Wicked", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/a/fa47fcce-d4c4-40a2-8853-6d7569d50926.jpg?1562586538", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/a/fa47fcce-d4c4-40a2-8853-6d7569d50926.jpg?1562586538"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Red Elemental Blast", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/0/70a45e9b-699e-425a-9f3d-267274830d3e.jpg?1562436618", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/0/70a45e9b-699e-425a-9f3d-267274830d3e.jpg?1562436618"}, "reprint": true, "digital": false, "set_type": "masters"}, {"name": "Red Elemental Blast", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/7/776ad9be-3309-4f1d-9f27-6219d9477662.jpg?1559591383", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/7/776ad9be-3309-4f1d-9f27-6219d9477662.jpg?1559591383"}, "reprint": false, "digital": false, "set_type": "core"}, {"name": "Red Elemental Blast", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/c/6cdd2a7c-001d-4891-8513-4b6d96968b35.jpg?1562545467", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/c/6cdd2a7c-001d-4891-8513-4b6d96968b35.jpg?1562545467"}, "reprint": true, "digital": true, "set_type": "promo"}, {"name": "Reinterpret", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/6/765e64ae-699c-46bd-a8cc-c8c1075d644f.jpg?1625192562", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/6/765e64ae-699c-46bd-a8cc-c8c1075d644f.jpg?1625192562"}, "reprint": false, "digital": false, "set_type": "commander"}, {"name": "Reject", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/7/d77f0731-fb40-4dc2-8530-afcb5ce1f27f.jpg?1624661968", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/7/d77f0731-fb40-4dc2-8530-afcb5ce1f27f.jpg?1624661968"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Remand", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/0/0027e5ca-8046-40a0-bd73-79be55f28bff.jpg?1592754515", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/0/0027e5ca-8046-40a0-bd73-79be55f28bff.jpg?1592754515"}, "reprint": true, "digital": false, "set_type": "duel_deck"}, {"name": "Remand", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/8/581f3780-c480-48c6-b15c-1618f2feccb9.jpg?1598914434", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/8/581f3780-c480-48c6-b15c-1618f2feccb9.jpg?1598914434"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Remand", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/4/d41e8cc0-4e05-412b-8ea3-d5b5c45da601.jpg?1562164467", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/4/d41e8cc0-4e05-412b-8ea3-d5b5c45da601.jpg?1562164467"}, "reprint": true, "digital": false, "set_type": "promo"}, {"name": "Remove Soul", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/2/f25f4f0e-bbf4-46b1-97fd-e796ff9e138f.jpg?1562251278", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/2/f25f4f0e-bbf4-46b1-97fd-e796ff9e138f.jpg?1562251278"}, "reprint": true, "digital": false, "set_type": "core"}, {"name": "Remove Soul", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/d/fd6bbb81-b830-4b22-be9a-852d9edbda21.jpg?1562595434", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/d/fd6bbb81-b830-4b22-be9a-852d9edbda21.jpg?1562595434"}, "reprint": true, "digital": false, "set_type": "core"}, {"name": "Remove Soul", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/3/63de147c-2e62-41b9-8ada-93406387f08b.jpg?1562859196", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/3/63de147c-2e62-41b9-8ada-93406387f08b.jpg?1562859196"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Remove Soul", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/7/675440ff-9701-4310-a4ad-8502b9cb73ae.jpg?1561757323", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/7/675440ff-9701-4310-a4ad-8502b9cb73ae.jpg?1561757323"}, "reprint": true, "digital": false, "set_type": "promo"}, {"name": "Render Silent", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/3/e3f3d6e4-0abe-4042-a7f6-0395683e8582.jpg?1562937631", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/3/e3f3d6e4-0abe-4042-a7f6-0395683e8582.jpg?1562937631"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Render Silent", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/5/4514a13f-5eee-49a8-876c-6b4befff4592.jpg?1561757030", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/5/4514a13f-5eee-49a8-876c-6b4befff4592.jpg?1561757030"}, "reprint": true, "digital": false, "set_type": "promo"}, {"name": "Repel Intruders", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/8/38e64b09-1a58-4669-b7f2-baa3ccc85f2d.jpg?1568911006", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/8/38e64b09-1a58-4669-b7f2-baa3ccc85f2d.jpg?1568911006"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Rethink", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/1/915ae03f-22f3-4ecc-a875-5226d8dec384.jpg?1562921984", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/1/915ae03f-22f3-4ecc-a875-5226d8dec384.jpg?1562921984"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Revolutionary Rebuff", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/e/6ea63dad-6afe-464e-ab19-fabd9709c6f9.jpg?1576381387", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/e/6ea63dad-6afe-464e-ab19-fabd9709c6f9.jpg?1576381387"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Rewind", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/e/9e51c4fb-fb29-4b1c-b78e-1fadf94fc9a5.jpg?1562928379", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/e/9e51c4fb-fb29-4b1c-b78e-1fadf94fc9a5.jpg?1562928379"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Rites of Refusal", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/a/fa88f595-1b6f-4af0-bc50-bd07c8be431f.jpg?1562942139", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/a/fa88f595-1b6f-4af0-bc50-bd07c8be431f.jpg?1562942139"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Runeboggle", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/7/37b2fb23-f8b5-4f83-9b29-b18507acaa1a.jpg?1593272065", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/7/37b2fb23-f8b5-4f83-9b29-b18507acaa1a.jpg?1593272065"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Rune Snag", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/5/45b6cadf-1974-47c8-98d8-ba413486c3b5.jpg?1593275010", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/5/45b6cadf-1974-47c8-98d8-ba413486c3b5.jpg?1593275010"}, "reprint": false, "digital": false, "set_type": "expansion"}]} \ No newline at end of file diff --git a/web/public/mtg/jsons/counterspell3.json b/web/public/mtg/jsons/counterspell3.json index 337024aa..97aeadc5 100644 --- a/web/public/mtg/jsons/counterspell3.json +++ b/web/public/mtg/jsons/counterspell3.json @@ -1 +1 @@ -{"object": "list", "total_cards": 447, "has_more": false, "data": [{"object": "card", "id": "ad4974c8-34c5-4290-b325-7586a67f6d56", "oracle_id": "597ca66c-6bb1-4661-8ed9-8236f546e536", "multiverse_ids": [1543], "tcgplayer_id": 4010, "cardmarket_id": 7088, "name": "Rust", "lang": "en", "released_at": "1994-06-01", "uri": "https://api.scryfall.com/cards/ad4974c8-34c5-4290-b325-7586a67f6d56", "scryfall_uri": "https://scryfall.com/card/leg/203/rust?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/a/d/ad4974c8-34c5-4290-b325-7586a67f6d56.jpg?1592364545", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/d/ad4974c8-34c5-4290-b325-7586a67f6d56.jpg?1592364545", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/a/d/ad4974c8-34c5-4290-b325-7586a67f6d56.jpg?1592364545", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/a/d/ad4974c8-34c5-4290-b325-7586a67f6d56.png?1592364545", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/d/ad4974c8-34c5-4290-b325-7586a67f6d56.jpg?1592364545", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/a/d/ad4974c8-34c5-4290-b325-7586a67f6d56.jpg?1592364545"}, "mana_cost": "{G}", "cmc": 1.0, "type_line": "Instant", "oracle_text": "Counter target activated ability from an artifact source. (Mana abilities can't be targeted.)", "colors": ["G"], "color_identity": ["G"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "78c50b4b-b220-455b-a2d5-cee458fa56f3", "set": "leg", "set_name": "Legends", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/78c50b4b-b220-455b-a2d5-cee458fa56f3", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aleg&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/leg?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/ad4974c8-34c5-4290-b325-7586a67f6d56/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A597ca66c-6bb1-4661-8ed9-8236f546e536&unique=prints", "collector_number": "203", "digital": false, "rarity": "common", "flavor_text": "\"How dull it is to pause, to make an end,/ To rust unburnished, not to shine in use,/ As though to breathe were life!\"\n\u2014Alfred, Lord Tennyson, \"Ulysses\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Liz Danforth", "artist_ids": ["5a5ee217-9d28-419a-b92a-a2376c7d18b3"], "illustration_id": "27a36b0f-cdfe-4aab-ba0a-b14062834862", "border_color": "black", "frame": "1993", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 21356, "prices": {"usd": "0.43", "usd_foil": null, "usd_etched": null, "eur": "0.75", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=1543", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Rust&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Rust&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Rust"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/4010?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Rust&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Rust&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "75ccd5f6-b363-433f-9e98-f65e10b10bc9", "oracle_id": "374f550a-a761-4994-a4aa-b05a2ec415de", "multiverse_ids": [152988], "mtgo_id": 29148, "mtgo_foil_id": 29149, "tcgplayer_id": 18054, "cardmarket_id": 18877, "name": "Sage's Dousing", "lang": "en", "released_at": "2008-02-01", "uri": "https://api.scryfall.com/cards/75ccd5f6-b363-433f-9e98-f65e10b10bc9", "scryfall_uri": "https://scryfall.com/card/mor/48/sages-dousing?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/7/5/75ccd5f6-b363-433f-9e98-f65e10b10bc9.jpg?1562879335", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/5/75ccd5f6-b363-433f-9e98-f65e10b10bc9.jpg?1562879335", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/7/5/75ccd5f6-b363-433f-9e98-f65e10b10bc9.jpg?1562879335", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/7/5/75ccd5f6-b363-433f-9e98-f65e10b10bc9.png?1562879335", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/5/75ccd5f6-b363-433f-9e98-f65e10b10bc9.jpg?1562879335", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/7/5/75ccd5f6-b363-433f-9e98-f65e10b10bc9.jpg?1562879335"}, "mana_cost": "{2}{U}", "cmc": 3.0, "type_line": "Tribal Instant \u2014 Wizard", "oracle_text": "Counter target spell unless its controller pays {3}. If you control a Wizard, draw a card.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "c41550df-7b41-41a3-85ab-8612eb2f168f", "set": "mor", "set_name": "Morningtide", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/c41550df-7b41-41a3-85ab-8612eb2f168f", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Amor&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/mor?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/75ccd5f6-b363-433f-9e98-f65e10b10bc9/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A374f550a-a761-4994-a4aa-b05a2ec415de&unique=prints", "collector_number": "48", "digital": false, "rarity": "uncommon", "flavor_text": "\"Curse these merrows and their meddling! Since coming near the river, I can't so much as sneeze without being soaked.\"\n\u2014Ashling the Pilgrim", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Richard Sardinha", "artist_ids": ["a3cce4f0-fbf5-4883-aac7-fb28b993b132"], "illustration_id": "e4726732-1e69-4fbf-911a-d22e2100704a", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 11596, "penny_rank": 7818, "prices": {"usd": "0.22", "usd_foil": "1.55", "usd_etched": null, "eur": "0.19", "eur_foil": "1.71", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=152988", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Sage%27s+Dousing&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Sage%27s+Dousing&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Sage%27s+Dousing"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/18054?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Sage%27s+Dousing&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/29148?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "877a1bb9-5eae-453a-bec0-a9de20ea6815", "oracle_id": "90edaf33-d0ab-47e0-8f6a-6fba38286e6e", "multiverse_ids": [503684], "mtgo_id": 87479, "arena_id": 75115, "tcgplayer_id": 230170, "cardmarket_id": 530357, "name": "Saw It Coming", "lang": "en", "released_at": "2021-02-05", "uri": "https://api.scryfall.com/cards/877a1bb9-5eae-453a-bec0-a9de20ea6815", "scryfall_uri": "https://scryfall.com/card/khm/76/saw-it-coming?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/8/7/877a1bb9-5eae-453a-bec0-a9de20ea6815.jpg?1631047574", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/7/877a1bb9-5eae-453a-bec0-a9de20ea6815.jpg?1631047574", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/8/7/877a1bb9-5eae-453a-bec0-a9de20ea6815.jpg?1631047574", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/8/7/877a1bb9-5eae-453a-bec0-a9de20ea6815.png?1631047574", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/7/877a1bb9-5eae-453a-bec0-a9de20ea6815.jpg?1631047574", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/8/7/877a1bb9-5eae-453a-bec0-a9de20ea6815.jpg?1631047574"}, "mana_cost": "{1}{U}{U}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Counter target spell.\nForetell {1}{U} (During your turn, you may pay {2} and exile this card from your hand face down. Cast it on a later turn for its foretell cost.)", "colors": ["U"], "color_identity": ["U"], "keywords": ["Foretell"], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "43057fad-b1c1-437f-bc48-0045bce6d8c9", "set": "khm", "set_name": "Kaldheim", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/43057fad-b1c1-437f-bc48-0045bce6d8c9", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Akhm&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/khm?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/877a1bb9-5eae-453a-bec0-a9de20ea6815/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A90edaf33-d0ab-47e0-8f6a-6fba38286e6e&unique=prints", "collector_number": "76", "digital": false, "rarity": "uncommon", "watermark": "foretell", "flavor_text": "\"How predictable.\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Randy Vargas", "artist_ids": ["d20672ca-0555-4238-a984-fd171d36b247"], "illustration_id": "66a56933-080c-4f10-9f1f-640bb6b4d85a", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 1175, "penny_rank": 1234, "preview": {"source": "Becca Scott", "source_uri": "https://twitter.com/thebeccascott/status/1347727962544566277", "previewed_at": "2021-01-09"}, "prices": {"usd": "0.16", "usd_foil": "1.09", "usd_etched": null, "eur": "0.22", "eur_foil": "1.37", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=503684", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Saw+It+Coming&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Saw+It+Coming&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Saw+It+Coming"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/230170?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Saw+It+Coming&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/87479?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "32ed969f-2c8e-4421-9448-dc5a2afdc81d", "oracle_id": "424683a5-d239-400d-af2b-9c00d1d32d7f", "multiverse_ids": [366241], "mtgo_id": 47463, "mtgo_foil_id": 47464, "tcgplayer_id": 67531, "cardmarket_id": 260006, "name": "Scatter Arc", "lang": "en", "released_at": "2013-02-01", "uri": "https://api.scryfall.com/cards/32ed969f-2c8e-4421-9448-dc5a2afdc81d", "scryfall_uri": "https://scryfall.com/card/gtc/48/scatter-arc?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/3/2/32ed969f-2c8e-4421-9448-dc5a2afdc81d.jpg?1561821983", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/2/32ed969f-2c8e-4421-9448-dc5a2afdc81d.jpg?1561821983", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/3/2/32ed969f-2c8e-4421-9448-dc5a2afdc81d.jpg?1561821983", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/3/2/32ed969f-2c8e-4421-9448-dc5a2afdc81d.png?1561821983", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/2/32ed969f-2c8e-4421-9448-dc5a2afdc81d.jpg?1561821983", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/3/2/32ed969f-2c8e-4421-9448-dc5a2afdc81d.jpg?1561821983"}, "mana_cost": "{3}{U}", "cmc": 4.0, "type_line": "Instant", "oracle_text": "Counter target noncreature spell.\nDraw a card.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "035a05f7-e020-4f50-a141-ed16ba704bd2", "set": "gtc", "set_name": "Gatecrash", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/035a05f7-e020-4f50-a141-ed16ba704bd2", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Agtc&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/gtc?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/32ed969f-2c8e-4421-9448-dc5a2afdc81d/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A424683a5-d239-400d-af2b-9c00d1d32d7f&unique=prints", "collector_number": "48", "digital": false, "rarity": "common", "flavor_text": "\"Should your chosen emissary be able to fluctuate triharmonic pentodes, however unlikely, I shall shunt excess negavolt radicals.\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Peter Mohrbacher", "artist_ids": ["c8f27311-46a5-4eaf-9b2e-d660ed1db649"], "illustration_id": "0c483c72-34ef-4f3f-a96c-44f6353049e7", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 15118, "penny_rank": 3465, "prices": {"usd": "0.05", "usd_foil": "0.23", "usd_etched": null, "eur": "0.02", "eur_foil": "0.25", "tix": "0.04"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=366241", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Scatter+Arc&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Scatter+Arc&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Scatter+Arc"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/67531?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Scatter+Arc&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/47463?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "c536c1ce-a012-4d77-ab29-8574be164731", "oracle_id": "314a9604-34ec-4529-bd14-7b63be28669f", "multiverse_ids": [139668], "mtgo_id": 28357, "mtgo_foil_id": 28358, "tcgplayer_id": 15615, "cardmarket_id": 17823, "name": "Scattering Stroke", "lang": "en", "released_at": "2007-10-12", "uri": "https://api.scryfall.com/cards/c536c1ce-a012-4d77-ab29-8574be164731", "scryfall_uri": "https://scryfall.com/card/lrw/82/scattering-stroke?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/c/5/c536c1ce-a012-4d77-ab29-8574be164731.jpg?1562367009", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/5/c536c1ce-a012-4d77-ab29-8574be164731.jpg?1562367009", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/c/5/c536c1ce-a012-4d77-ab29-8574be164731.jpg?1562367009", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/c/5/c536c1ce-a012-4d77-ab29-8574be164731.png?1562367009", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/5/c536c1ce-a012-4d77-ab29-8574be164731.jpg?1562367009", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/c/5/c536c1ce-a012-4d77-ab29-8574be164731.jpg?1562367009"}, "mana_cost": "{2}{U}{U}", "cmc": 4.0, "type_line": "Instant", "oracle_text": "Counter target spell. Clash with an opponent. If you win, at the beginning of your next main phase, you may add an amount of {C} equal to that spell's mana value. (Each clashing player reveals the top card of their library, then puts that card on the top or bottom. A player wins if their card had a higher mana value.)", "colors": ["U"], "color_identity": ["U"], "keywords": ["Clash"], "produced_mana": ["C"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "30ec97cb-dca9-4bf4-a98b-310f9d8ceaff", "set": "lrw", "set_name": "Lorwyn", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/30ec97cb-dca9-4bf4-a98b-310f9d8ceaff", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Alrw&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/lrw?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/c536c1ce-a012-4d77-ab29-8574be164731/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A314a9604-34ec-4529-bd14-7b63be28669f&unique=prints", "collector_number": "82", "digital": false, "rarity": "uncommon", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Franz Vohwinkel", "artist_ids": ["3a243c17-3baa-4b53-9599-645311cd7d3d"], "illustration_id": "08254dcc-1180-4535-b5bb-a35924a9e2b3", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 15523, "penny_rank": 8159, "prices": {"usd": "0.16", "usd_foil": "1.60", "usd_etched": null, "eur": "0.14", "eur_foil": "0.15", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=139668", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Scattering+Stroke&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Scattering+Stroke&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Scattering+Stroke"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/15615?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Scattering+Stroke&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/28357?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "d73ad49f-fe15-4fe5-9731-fd71d31c1e7f", "oracle_id": "13d600e6-86b4-4813-8f34-75f23717f433", "multiverse_ids": [402024], "mtgo_id": 58625, "mtgo_foil_id": 58626, "tcgplayer_id": 105547, "cardmarket_id": 284787, "name": "Scatter to the Winds", "lang": "en", "released_at": "2015-10-02", "uri": "https://api.scryfall.com/cards/d73ad49f-fe15-4fe5-9731-fd71d31c1e7f", "scryfall_uri": "https://scryfall.com/card/bfz/85/scatter-to-the-winds?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/d/7/d73ad49f-fe15-4fe5-9731-fd71d31c1e7f.jpg?1562946348", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/7/d73ad49f-fe15-4fe5-9731-fd71d31c1e7f.jpg?1562946348", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/d/7/d73ad49f-fe15-4fe5-9731-fd71d31c1e7f.jpg?1562946348", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/d/7/d73ad49f-fe15-4fe5-9731-fd71d31c1e7f.png?1562946348", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/7/d73ad49f-fe15-4fe5-9731-fd71d31c1e7f.jpg?1562946348", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/d/7/d73ad49f-fe15-4fe5-9731-fd71d31c1e7f.jpg?1562946348"}, "mana_cost": "{1}{U}{U}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Counter target spell.\nAwaken 3\u2014{4}{U}{U} (If you cast this spell for {4}{U}{U}, also put three +1/+1 counters on target land you control and it becomes a 0/0 Elemental creature with haste. It's still a land.)", "colors": ["U"], "color_identity": ["U"], "keywords": ["Awaken"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "91719374-7ac5-4afa-ada8-5da964dcf1d4", "set": "bfz", "set_name": "Battle for Zendikar", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/91719374-7ac5-4afa-ada8-5da964dcf1d4", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Abfz&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/bfz?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/d73ad49f-fe15-4fe5-9731-fd71d31c1e7f/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A13d600e6-86b4-4813-8f34-75f23717f433&unique=prints", "collector_number": "85", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Raymond Swanland", "artist_ids": ["e956bacc-077d-4c12-b6bc-ba798b718af9"], "illustration_id": "bcc4a438-cb8c-4c2c-b9a5-a3e029dad504", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 9563, "penny_rank": 1854, "prices": {"usd": "0.12", "usd_foil": "0.30", "usd_etched": null, "eur": "0.02", "eur_foil": "0.25", "tix": "0.01"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=402024", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Scatter+to+the+Winds&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Scatter+to+the+Winds&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Scatter+to+the+Winds"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/105547?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Scatter+to+the+Winds&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/58625?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "d117bf8d-23ec-4f9d-99d0-3a990c5f7075", "oracle_id": "c22b5968-adea-4f74-877d-8ac2ee452769", "multiverse_ids": [15266], "mtgo_id": 12951, "mtgo_foil_id": 12952, "tcgplayer_id": 6237, "cardmarket_id": 10745, "name": "Scent of Brine", "lang": "en", "released_at": "1999-06-07", "uri": "https://api.scryfall.com/cards/d117bf8d-23ec-4f9d-99d0-3a990c5f7075", "scryfall_uri": "https://scryfall.com/card/uds/45/scent-of-brine?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/d/1/d117bf8d-23ec-4f9d-99d0-3a990c5f7075.jpg?1562445215", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/1/d117bf8d-23ec-4f9d-99d0-3a990c5f7075.jpg?1562445215", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/d/1/d117bf8d-23ec-4f9d-99d0-3a990c5f7075.jpg?1562445215", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/d/1/d117bf8d-23ec-4f9d-99d0-3a990c5f7075.png?1562445215", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/1/d117bf8d-23ec-4f9d-99d0-3a990c5f7075.jpg?1562445215", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/d/1/d117bf8d-23ec-4f9d-99d0-3a990c5f7075.jpg?1562445215"}, "mana_cost": "{1}{U}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Reveal any number of blue cards in your hand. Counter target spell unless its controller pays {1} for each card revealed this way.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "44f17b37-dcf8-4239-baab-1efc00cd3480", "set": "uds", "set_name": "Urza's Destiny", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/44f17b37-dcf8-4239-baab-1efc00cd3480", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Auds&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/uds?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/d117bf8d-23ec-4f9d-99d0-3a990c5f7075/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ac22b5968-adea-4f74-877d-8ac2ee452769&unique=prints", "collector_number": "45", "digital": false, "rarity": "common", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Greg Staples", "artist_ids": ["93d65564-bf00-447b-8406-e2031f03b6b1"], "illustration_id": "b24e2f7b-7f52-4f92-84f7-df274a1960b2", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 18681, "penny_rank": 2583, "prices": {"usd": "0.11", "usd_foil": "5.99", "usd_etched": null, "eur": "0.02", "eur_foil": "1.99", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=15266", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Scent+of+Brine&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Scent+of+Brine&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Scent+of+Brine"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/6237?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Scent+of+Brine&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/12951?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "0d22d093-8e89-4d54-ac04-14c8759de3ea", "oracle_id": "b036eac6-60db-48ca-b6e1-b42afac959bd", "multiverse_ids": [240063], "mtgo_id": 43971, "mtgo_foil_id": 43972, "tcgplayer_id": 58895, "cardmarket_id": 254640, "name": "Second Guess", "lang": "en", "released_at": "2012-05-04", "uri": "https://api.scryfall.com/cards/0d22d093-8e89-4d54-ac04-14c8759de3ea", "scryfall_uri": "https://scryfall.com/card/avr/74/second-guess?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/0/d/0d22d093-8e89-4d54-ac04-14c8759de3ea.jpg?1592708686", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/d/0d22d093-8e89-4d54-ac04-14c8759de3ea.jpg?1592708686", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/0/d/0d22d093-8e89-4d54-ac04-14c8759de3ea.jpg?1592708686", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/0/d/0d22d093-8e89-4d54-ac04-14c8759de3ea.png?1592708686", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/d/0d22d093-8e89-4d54-ac04-14c8759de3ea.jpg?1592708686", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/0/d/0d22d093-8e89-4d54-ac04-14c8759de3ea.jpg?1592708686"}, "mana_cost": "{1}{U}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Counter target spell that's the second spell cast this turn.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "039810a9-92d7-4f2d-b2d0-ca661ac586c0", "set": "avr", "set_name": "Avacyn Restored", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/039810a9-92d7-4f2d-b2d0-ca661ac586c0", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aavr&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/avr?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/0d22d093-8e89-4d54-ac04-14c8759de3ea/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ab036eac6-60db-48ca-b6e1-b42afac959bd&unique=prints", "collector_number": "74", "digital": false, "rarity": "uncommon", "flavor_text": "\"I see where you're going with that. I don't like it.\"\n\u2014Dierk, geistmage", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Karl Kopinski", "artist_ids": ["0fad2c48-a56e-4a0b-b512-224f6f238f20"], "illustration_id": "3ce8ebdc-30fe-4aae-aa2d-bd25be2ae589", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 18750, "penny_rank": 9852, "prices": {"usd": "0.07", "usd_foil": "0.19", "usd_etched": null, "eur": "0.05", "eur_foil": "0.20", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=240063", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Second+Guess&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Second+Guess&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Second+Guess"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/58895?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Second+Guess&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/43971?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "ba26dbbc-d4a2-44a1-8e6b-affe61f43a34", "oracle_id": "7052fbd6-94df-41a9-a382-641701086804", "multiverse_ids": [394705], "mtgo_id": 56134, "mtgo_foil_id": 56135, "tcgplayer_id": 96491, "cardmarket_id": 273138, "name": "Silumgar's Command", "lang": "en", "released_at": "2015-03-27", "uri": "https://api.scryfall.com/cards/ba26dbbc-d4a2-44a1-8e6b-affe61f43a34", "scryfall_uri": "https://scryfall.com/card/dtk/232/silumgars-command?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/b/a/ba26dbbc-d4a2-44a1-8e6b-affe61f43a34.jpg?1562792137", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/a/ba26dbbc-d4a2-44a1-8e6b-affe61f43a34.jpg?1562792137", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/b/a/ba26dbbc-d4a2-44a1-8e6b-affe61f43a34.jpg?1562792137", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/b/a/ba26dbbc-d4a2-44a1-8e6b-affe61f43a34.png?1562792137", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/a/ba26dbbc-d4a2-44a1-8e6b-affe61f43a34.jpg?1562792137", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/b/a/ba26dbbc-d4a2-44a1-8e6b-affe61f43a34.jpg?1562792137"}, "mana_cost": "{3}{U}{B}", "cmc": 5.0, "type_line": "Instant", "oracle_text": "Choose two \u2014\n\u2022 Counter target noncreature spell.\n\u2022 Return target permanent to its owner's hand.\n\u2022 Target creature gets -3/-3 until end of turn.\n\u2022 Destroy target planeswalker.", "colors": ["B", "U"], "color_identity": ["B", "U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "7e72625f-f320-4552-a719-d11e2f1853bd", "set": "dtk", "set_name": "Dragons of Tarkir", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/7e72625f-f320-4552-a719-d11e2f1853bd", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Adtk&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/dtk?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/ba26dbbc-d4a2-44a1-8e6b-affe61f43a34/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A7052fbd6-94df-41a9-a382-641701086804&unique=prints", "collector_number": "232", "digital": false, "rarity": "rare", "watermark": "silumgar", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Nils Hamm", "artist_ids": ["c540d1fc-1500-457f-93cf-d6069ee66546"], "illustration_id": "4f8f5aa8-c6f3-41d7-96e6-aa9be5d2e0f2", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 4660, "penny_rank": 3437, "prices": {"usd": "0.21", "usd_foil": "1.17", "usd_etched": null, "eur": "0.74", "eur_foil": "0.80", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=394705", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Silumgar%27s+Command&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Silumgar%27s+Command&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Silumgar%27s+Command"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/96491?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Silumgar%27s+Command&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/56134?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "077bee72-62f6-4d90-8557-ff9cac42ec9a", "oracle_id": "1fb3b5a3-ca4b-4cbf-ab58-71c960f3efd0", "multiverse_ids": [394706], "mtgo_id": 56032, "mtgo_foil_id": 56033, "tcgplayer_id": 96523, "cardmarket_id": 273200, "name": "Silumgar's Scorn", "lang": "en", "released_at": "2015-03-27", "uri": "https://api.scryfall.com/cards/077bee72-62f6-4d90-8557-ff9cac42ec9a", "scryfall_uri": "https://scryfall.com/card/dtk/78/silumgars-scorn?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/0/7/077bee72-62f6-4d90-8557-ff9cac42ec9a.jpg?1562782102", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/7/077bee72-62f6-4d90-8557-ff9cac42ec9a.jpg?1562782102", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/0/7/077bee72-62f6-4d90-8557-ff9cac42ec9a.jpg?1562782102", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/0/7/077bee72-62f6-4d90-8557-ff9cac42ec9a.png?1562782102", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/7/077bee72-62f6-4d90-8557-ff9cac42ec9a.jpg?1562782102", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/0/7/077bee72-62f6-4d90-8557-ff9cac42ec9a.jpg?1562782102"}, "mana_cost": "{U}{U}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "As an additional cost to cast this spell, you may reveal a Dragon card from your hand.\nCounter target spell unless its controller pays {1}. If you revealed a Dragon card or controlled a Dragon as you cast this spell, counter that spell instead.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "7e72625f-f320-4552-a719-d11e2f1853bd", "set": "dtk", "set_name": "Dragons of Tarkir", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/7e72625f-f320-4552-a719-d11e2f1853bd", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Adtk&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/dtk?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/077bee72-62f6-4d90-8557-ff9cac42ec9a/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A1fb3b5a3-ca4b-4cbf-ab58-71c960f3efd0&unique=prints", "collector_number": "78", "digital": false, "rarity": "uncommon", "watermark": "silumgar", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Ryan Yee", "artist_ids": ["8955dca7-3e37-42b4-83a9-167c78a2178f"], "illustration_id": "31edb306-ab2e-45e9-a396-8cb81800e542", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 10529, "penny_rank": 2249, "prices": {"usd": "0.22", "usd_foil": "3.24", "usd_etched": null, "eur": "0.16", "eur_foil": "1.00", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=394706", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Silumgar%27s+Scorn&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Silumgar%27s+Scorn&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Silumgar%27s+Scorn"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/96523?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Silumgar%27s+Scorn&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/56032?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "6cbef36d-7170-424f-8fb1-8e7e112b7f0b", "oracle_id": "973fd4d4-9255-4825-85b7-503606c4e932", "multiverse_ids": [452804], "mtgo_id": 69481, "arena_id": 68515, "tcgplayer_id": 175177, "cardmarket_id": 363559, "name": "Sinister Sabotage", "lang": "en", "released_at": "2018-10-05", "uri": "https://api.scryfall.com/cards/6cbef36d-7170-424f-8fb1-8e7e112b7f0b", "scryfall_uri": "https://scryfall.com/card/grn/54/sinister-sabotage?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/6/c/6cbef36d-7170-424f-8fb1-8e7e112b7f0b.jpg?1572892841", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/c/6cbef36d-7170-424f-8fb1-8e7e112b7f0b.jpg?1572892841", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/6/c/6cbef36d-7170-424f-8fb1-8e7e112b7f0b.jpg?1572892841", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/6/c/6cbef36d-7170-424f-8fb1-8e7e112b7f0b.png?1572892841", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/c/6cbef36d-7170-424f-8fb1-8e7e112b7f0b.jpg?1572892841", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/6/c/6cbef36d-7170-424f-8fb1-8e7e112b7f0b.jpg?1572892841"}, "mana_cost": "{1}{U}{U}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Counter target spell.\nSurveil 1. (Look at the top card of your library. You may put that card into your graveyard.)", "colors": ["U"], "color_identity": ["U"], "keywords": ["Surveil"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "597c6d4a-8212-4903-a6af-12c4ae9e13f0", "set": "grn", "set_name": "Guilds of Ravnica", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/597c6d4a-8212-4903-a6af-12c4ae9e13f0", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Agrn&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/grn?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/6cbef36d-7170-424f-8fb1-8e7e112b7f0b/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A973fd4d4-9255-4825-85b7-503606c4e932&unique=prints", "collector_number": "54", "digital": false, "rarity": "uncommon", "watermark": "dimir", "flavor_text": "\"We have intel that some guilds have fallen under an invader's influence. Until we're sure, no venture succeeds.\"\n\u2014Lazav", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Mathias Kollros", "artist_ids": ["2ae0dd12-047c-4efb-80d7-bccc3bac5fba"], "illustration_id": "f9e4920a-b71c-441c-b476-c8d1ac13bc74", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 4017, "penny_rank": 576, "prices": {"usd": "0.08", "usd_foil": "0.43", "usd_etched": null, "eur": "0.06", "eur_foil": "0.75", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=452804", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Sinister+Sabotage&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Sinister+Sabotage&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Sinister+Sabotage"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/175177?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Sinister+Sabotage&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/69481?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "bcd3cb05-c6f9-435a-a0e7-1f85da4a36eb", "oracle_id": "419c2ae1-fec7-4c27-a7a0-99f777abb4de", "multiverse_ids": [183008], "mtgo_id": 32412, "mtgo_foil_id": 32413, "tcgplayer_id": 31808, "cardmarket_id": 20908, "name": "Soul Manipulation", "lang": "en", "released_at": "2009-04-30", "uri": "https://api.scryfall.com/cards/bcd3cb05-c6f9-435a-a0e7-1f85da4a36eb", "scryfall_uri": "https://scryfall.com/card/arb/29/soul-manipulation?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/b/c/bcd3cb05-c6f9-435a-a0e7-1f85da4a36eb.jpg?1562643969", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/c/bcd3cb05-c6f9-435a-a0e7-1f85da4a36eb.jpg?1562643969", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/b/c/bcd3cb05-c6f9-435a-a0e7-1f85da4a36eb.jpg?1562643969", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/b/c/bcd3cb05-c6f9-435a-a0e7-1f85da4a36eb.png?1562643969", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/c/bcd3cb05-c6f9-435a-a0e7-1f85da4a36eb.jpg?1562643969", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/b/c/bcd3cb05-c6f9-435a-a0e7-1f85da4a36eb.jpg?1562643969"}, "mana_cost": "{1}{U}{B}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Choose one or both \u2014\n\u2022 Counter target creature spell.\n\u2022 Return target creature card from your graveyard to your hand.", "colors": ["B", "U"], "color_identity": ["B", "U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "db486ec5-141d-4781-9ee5-5456926934c1", "set": "arb", "set_name": "Alara Reborn", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/db486ec5-141d-4781-9ee5-5456926934c1", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aarb&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/arb?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/bcd3cb05-c6f9-435a-a0e7-1f85da4a36eb/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A419c2ae1-fec7-4c27-a7a0-99f777abb4de&unique=prints", "collector_number": "29", "digital": false, "rarity": "common", "flavor_text": "\"Birth and death are both reversible.\"\n\u2014Nicol Bolas", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Carl Critchlow", "artist_ids": ["17948f16-611a-44b8-8d10-9895a0bdfff1"], "illustration_id": "c39a06eb-7d0a-4e4f-90f0-998341decec5", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 3201, "penny_rank": 4004, "prices": {"usd": "0.18", "usd_foil": "1.09", "usd_etched": null, "eur": "0.14", "eur_foil": "0.40", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=183008", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Soul+Manipulation&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Soul+Manipulation&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Soul+Manipulation"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/31808?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Soul+Manipulation&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/32412?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "42d7af6a-bfd1-4e89-965a-68336507a9ee", "oracle_id": "04477339-7ed5-4770-9e5c-6e481ffcc858", "multiverse_ids": [370645], "mtgo_id": 49549, "mtgo_foil_id": 49550, "tcgplayer_id": 69966, "cardmarket_id": 262946, "name": "Spell Blast", "lang": "en", "released_at": "2013-07-19", "uri": "https://api.scryfall.com/cards/42d7af6a-bfd1-4e89-965a-68336507a9ee", "scryfall_uri": "https://scryfall.com/card/m14/72/spell-blast?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/4/2/42d7af6a-bfd1-4e89-965a-68336507a9ee.jpg?1562828463", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/2/42d7af6a-bfd1-4e89-965a-68336507a9ee.jpg?1562828463", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/4/2/42d7af6a-bfd1-4e89-965a-68336507a9ee.jpg?1562828463", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/4/2/42d7af6a-bfd1-4e89-965a-68336507a9ee.png?1562828463", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/2/42d7af6a-bfd1-4e89-965a-68336507a9ee.jpg?1562828463", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/4/2/42d7af6a-bfd1-4e89-965a-68336507a9ee.jpg?1562828463"}, "mana_cost": "{X}{U}", "cmc": 1.0, "type_line": "Instant", "oracle_text": "Counter target spell with mana value X. (For example, if that spell's mana cost is {3}{U}{U}, X is 5.)", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "e03ee1c0-ecd2-4fcc-ac3c-e8fdb103a847", "set": "m14", "set_name": "Magic 2014", "set_type": "core", "set_uri": "https://api.scryfall.com/sets/e03ee1c0-ecd2-4fcc-ac3c-e8fdb103a847", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Am14&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/m14?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/42d7af6a-bfd1-4e89-965a-68336507a9ee/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A04477339-7ed5-4770-9e5c-6e481ffcc858&unique=prints", "collector_number": "72", "digital": false, "rarity": "uncommon", "flavor_text": "\"Perhaps you could try throwing a rock? That might be better suited to your intellect.\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Jaime Jones", "artist_ids": ["92f6c2c1-fa57-4b52-99c4-0fd866c13dc9"], "illustration_id": "15284904-1d3a-40ad-af5c-004603772429", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 13659, "penny_rank": 6864, "prices": {"usd": "0.16", "usd_foil": "0.69", "usd_etched": null, "eur": "0.05", "eur_foil": "0.25", "tix": "0.05"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=370645", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Spell+Blast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Spell+Blast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Spell+Blast"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/69966?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Spell+Blast&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/49549?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "5fe58a24-f6a6-4858-82a5-0ca1d524efe1", "oracle_id": "04477339-7ed5-4770-9e5c-6e481ffcc858", "multiverse_ids": [4728], "mtgo_id": 9633, "mtgo_foil_id": 9634, "tcgplayer_id": 5743, "cardmarket_id": 8824, "name": "Spell Blast", "lang": "en", "released_at": "1997-10-14", "uri": "https://api.scryfall.com/cards/5fe58a24-f6a6-4858-82a5-0ca1d524efe1", "scryfall_uri": "https://scryfall.com/card/tmp/89/spell-blast?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/5/f/5fe58a24-f6a6-4858-82a5-0ca1d524efe1.jpg?1562054243", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/f/5fe58a24-f6a6-4858-82a5-0ca1d524efe1.jpg?1562054243", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/5/f/5fe58a24-f6a6-4858-82a5-0ca1d524efe1.jpg?1562054243", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/5/f/5fe58a24-f6a6-4858-82a5-0ca1d524efe1.png?1562054243", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/f/5fe58a24-f6a6-4858-82a5-0ca1d524efe1.jpg?1562054243", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/5/f/5fe58a24-f6a6-4858-82a5-0ca1d524efe1.jpg?1562054243"}, "mana_cost": "{X}{U}", "cmc": 1.0, "type_line": "Instant", "oracle_text": "Counter target spell with mana value X. (For example, if that spell's mana cost is {3}{U}{U}, X is 5.)", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "10df3a67-178e-4363-8668-34f0e6edf2a7", "set": "tmp", "set_name": "Tempest", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/10df3a67-178e-4363-8668-34f0e6edf2a7", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Atmp&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/tmp?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/5fe58a24-f6a6-4858-82a5-0ca1d524efe1/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A04477339-7ed5-4770-9e5c-6e481ffcc858&unique=prints", "collector_number": "89", "digital": false, "rarity": "common", "flavor_text": "Call it the thinking mage's version of brute force.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Steve Luke", "artist_ids": ["e2b0133e-a28d-45d1-8843-26285b41d61d"], "illustration_id": "346899c8-f7c3-487c-8d28-4440a5aec7bd", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 13659, "penny_rank": 6864, "prices": {"usd": "0.10", "usd_foil": null, "usd_etched": null, "eur": "0.05", "eur_foil": null, "tix": "0.05"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=4728", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Spell+Blast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Spell+Blast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Spell+Blast"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/5743?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Spell+Blast&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/9633?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "70e4584f-6e44-4ff8-8313-c8791e0156af", "oracle_id": "04477339-7ed5-4770-9e5c-6e481ffcc858", "multiverse_ids": [3947], "tcgplayer_id": 2381, "cardmarket_id": 9497, "name": "Spell Blast", "lang": "en", "released_at": "1997-03-24", "uri": "https://api.scryfall.com/cards/70e4584f-6e44-4ff8-8313-c8791e0156af", "scryfall_uri": "https://scryfall.com/card/5ed/126/spell-blast?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/7/0/70e4584f-6e44-4ff8-8313-c8791e0156af.jpg?1562591827", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/0/70e4584f-6e44-4ff8-8313-c8791e0156af.jpg?1562591827", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/7/0/70e4584f-6e44-4ff8-8313-c8791e0156af.jpg?1562591827", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/7/0/70e4584f-6e44-4ff8-8313-c8791e0156af.png?1562591827", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/0/70e4584f-6e44-4ff8-8313-c8791e0156af.jpg?1562591827", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/7/0/70e4584f-6e44-4ff8-8313-c8791e0156af.jpg?1562591827"}, "mana_cost": "{X}{U}", "cmc": 1.0, "type_line": "Instant", "oracle_text": "Counter target spell with mana value X. (For example, if that spell's mana cost is {3}{U}{U}, X is 5.)", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "5afd2f4b-8309-4f45-a2b2-3785018474cb", "set": "5ed", "set_name": "Fifth Edition", "set_type": "core", "set_uri": "https://api.scryfall.com/sets/5afd2f4b-8309-4f45-a2b2-3785018474cb", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3A5ed&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/5ed?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/70e4584f-6e44-4ff8-8313-c8791e0156af/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A04477339-7ed5-4770-9e5c-6e481ffcc858&unique=prints", "collector_number": "126", "digital": false, "rarity": "common", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Greg Simanson", "artist_ids": ["13f79e83-d576-4017-93b5-54c47313ed88"], "illustration_id": "1e81e7e3-d6d5-4457-aee7-ab7ea2f6772d", "border_color": "white", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 13659, "penny_rank": 6864, "prices": {"usd": "0.05", "usd_foil": null, "usd_etched": null, "eur": "0.02", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=3947", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Spell+Blast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Spell+Blast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Spell+Blast"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/2381?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Spell+Blast&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Spell+Blast&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "845734da-ab03-4dbc-bb5f-96481d3b8e88", "oracle_id": "04477339-7ed5-4770-9e5c-6e481ffcc858", "multiverse_ids": [127], "tcgplayer_id": 1265, "cardmarket_id": 5313, "name": "Spell Blast", "lang": "en", "released_at": "1993-08-05", "uri": "https://api.scryfall.com/cards/845734da-ab03-4dbc-bb5f-96481d3b8e88", "scryfall_uri": "https://scryfall.com/card/lea/79/spell-blast?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/8/4/845734da-ab03-4dbc-bb5f-96481d3b8e88.jpg?1559591342", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/4/845734da-ab03-4dbc-bb5f-96481d3b8e88.jpg?1559591342", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/8/4/845734da-ab03-4dbc-bb5f-96481d3b8e88.jpg?1559591342", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/8/4/845734da-ab03-4dbc-bb5f-96481d3b8e88.png?1559591342", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/4/845734da-ab03-4dbc-bb5f-96481d3b8e88.jpg?1559591342", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/8/4/845734da-ab03-4dbc-bb5f-96481d3b8e88.jpg?1559591342"}, "mana_cost": "{X}{U}", "cmc": 1.0, "type_line": "Instant", "oracle_text": "Counter target spell with mana value X. (For example, if that spell's mana cost is {3}{U}{U}, X is 5.)", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "legal", "premodern": "legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "288bd996-960e-448b-a187-9504c1930c2c", "set": "lea", "set_name": "Limited Edition Alpha", "set_type": "core", "set_uri": "https://api.scryfall.com/sets/288bd996-960e-448b-a187-9504c1930c2c", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Alea&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/lea?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/845734da-ab03-4dbc-bb5f-96481d3b8e88/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A04477339-7ed5-4770-9e5c-6e481ffcc858&unique=prints", "collector_number": "79", "digital": false, "rarity": "common", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Brian Sn\u00f5ddy", "artist_ids": ["770b4e16-de76-49ed-949f-84e6d2e06d25"], "illustration_id": "a68db794-6477-4f91-b241-96e66cc7b931", "border_color": "black", "frame": "1993", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 13659, "penny_rank": 6864, "prices": {"usd": "74.99", "usd_foil": null, "usd_etched": null, "eur": "75.00", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=127", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Spell+Blast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Spell+Blast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Spell+Blast"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/1265?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Spell+Blast&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Spell+Blast&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "8169929c-641f-41c8-a48e-1a7d0c57726b", "oracle_id": "141d9b88-5326-4e3d-8f16-5293246fab88", "multiverse_ids": [509453], "mtgo_id": 86539, "tcgplayer_id": 233898, "cardmarket_id": 542876, "name": "Spell Burst", "lang": "en", "released_at": "2021-03-19", "uri": "https://api.scryfall.com/cards/8169929c-641f-41c8-a48e-1a7d0c57726b", "scryfall_uri": "https://scryfall.com/card/tsr/88/spell-burst?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/8/1/8169929c-641f-41c8-a48e-1a7d0c57726b.jpg?1619394723", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/1/8169929c-641f-41c8-a48e-1a7d0c57726b.jpg?1619394723", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/8/1/8169929c-641f-41c8-a48e-1a7d0c57726b.jpg?1619394723", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/8/1/8169929c-641f-41c8-a48e-1a7d0c57726b.png?1619394723", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/1/8169929c-641f-41c8-a48e-1a7d0c57726b.jpg?1619394723", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/8/1/8169929c-641f-41c8-a48e-1a7d0c57726b.jpg?1619394723"}, "mana_cost": "{X}{U}", "cmc": 1.0, "type_line": "Instant", "oracle_text": "Buyback {3} (You may pay an additional {3} as you cast this spell. If you do, put this card into your hand as it resolves.)\nCounter target spell with mana value X.", "colors": ["U"], "color_identity": ["U"], "keywords": ["Buyback"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "11e90d1b-0502-43e6-b056-e24836523c13", "set": "tsr", "set_name": "Time Spiral Remastered", "set_type": "masters", "set_uri": "https://api.scryfall.com/sets/11e90d1b-0502-43e6-b056-e24836523c13", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Atsr&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/tsr?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/8169929c-641f-41c8-a48e-1a7d0c57726b/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A141d9b88-5326-4e3d-8f16-5293246fab88&unique=prints", "collector_number": "88", "digital": false, "rarity": "uncommon", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Bryan Sola", "artist_ids": ["e6879299-a28b-48bc-8db1-9cafcf36de09"], "illustration_id": "068d9dc2-7ff4-40c8-92fe-72893b7ddcc5", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 6719, "penny_rank": 1152, "prices": {"usd": "0.16", "usd_foil": "0.68", "usd_etched": null, "eur": "0.22", "eur_foil": "0.49", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=509453", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Spell+Burst&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Spell+Burst&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Spell+Burst"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/233898?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Spell+Burst&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/86539?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "f95c8015-fd7d-4329-ab23-aec37a824083", "oracle_id": "141d9b88-5326-4e3d-8f16-5293246fab88", "multiverse_ids": [109707], "mtgo_id": 25511, "mtgo_foil_id": 25512, "tcgplayer_id": 14364, "cardmarket_id": 13983, "name": "Spell Burst", "lang": "en", "released_at": "2006-10-06", "uri": "https://api.scryfall.com/cards/f95c8015-fd7d-4329-ab23-aec37a824083", "scryfall_uri": "https://scryfall.com/card/tsp/79/spell-burst?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/f/9/f95c8015-fd7d-4329-ab23-aec37a824083.jpg?1562947751", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/9/f95c8015-fd7d-4329-ab23-aec37a824083.jpg?1562947751", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/f/9/f95c8015-fd7d-4329-ab23-aec37a824083.jpg?1562947751", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/f/9/f95c8015-fd7d-4329-ab23-aec37a824083.png?1562947751", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/9/f95c8015-fd7d-4329-ab23-aec37a824083.jpg?1562947751", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/f/9/f95c8015-fd7d-4329-ab23-aec37a824083.jpg?1562947751"}, "mana_cost": "{X}{U}", "cmc": 1.0, "type_line": "Instant", "oracle_text": "Buyback {3} (You may pay an additional {3} as you cast this spell. If you do, put this card into your hand as it resolves.)\nCounter target spell with mana value X.", "colors": ["U"], "color_identity": ["U"], "keywords": ["Buyback"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "c1d109bc-ffd8-428f-8d7d-3f8d7e648046", "set": "tsp", "set_name": "Time Spiral", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/c1d109bc-ffd8-428f-8d7d-3f8d7e648046", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Atsp&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/tsp?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/f95c8015-fd7d-4329-ab23-aec37a824083/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A141d9b88-5326-4e3d-8f16-5293246fab88&unique=prints", "collector_number": "79", "digital": false, "rarity": "uncommon", "flavor_text": "The brutish mage's version of thinking.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Terese Nielsen", "artist_ids": ["eb55171c-2342-45f4-a503-2d5a75baf752"], "illustration_id": "5ab16331-462a-4868-b6ed-e7adae46a11f", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 6719, "penny_rank": 1152, "prices": {"usd": "0.37", "usd_foil": "1.30", "usd_etched": null, "eur": "0.47", "eur_foil": "0.69", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=109707", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Spell+Burst&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Spell+Burst&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Spell+Burst"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/14364?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Spell+Burst&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/25511?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "4b748d8b-898f-4b55-bc33-f5bbbc823c45", "oracle_id": "01003192-8927-4e55-8dd9-e9e088a3fbe4", "multiverse_ids": [194714], "mtgo_id": 35635, "mtgo_foil_id": 35636, "tcgplayer_id": 34441, "cardmarket_id": 22164, "name": "Spell Contortion", "lang": "en", "released_at": "2010-02-05", "uri": "https://api.scryfall.com/cards/4b748d8b-898f-4b55-bc33-f5bbbc823c45", "scryfall_uri": "https://scryfall.com/card/wwk/38/spell-contortion?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/4/b/4b748d8b-898f-4b55-bc33-f5bbbc823c45.jpg?1562286779", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/b/4b748d8b-898f-4b55-bc33-f5bbbc823c45.jpg?1562286779", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/4/b/4b748d8b-898f-4b55-bc33-f5bbbc823c45.jpg?1562286779", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/4/b/4b748d8b-898f-4b55-bc33-f5bbbc823c45.png?1562286779", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/b/4b748d8b-898f-4b55-bc33-f5bbbc823c45.jpg?1562286779", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/4/b/4b748d8b-898f-4b55-bc33-f5bbbc823c45.jpg?1562286779"}, "mana_cost": "{2}{U}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Multikicker {1}{U} (You may pay an additional {1}{U} any number of times as you cast this spell.)\nCounter target spell unless its controller pays {2}. Draw a card for each time Spell Contortion was kicked.", "colors": ["U"], "color_identity": ["U"], "keywords": ["Multikicker"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "2f248ce6-c2a5-4c6f-a2be-0c593fbe173c", "set": "wwk", "set_name": "Worldwake", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/2f248ce6-c2a5-4c6f-a2be-0c593fbe173c", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Awwk&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/wwk?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/4b748d8b-898f-4b55-bc33-f5bbbc823c45/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A01003192-8927-4e55-8dd9-e9e088a3fbe4&unique=prints", "collector_number": "38", "digital": false, "rarity": "uncommon", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Wayne Reynolds", "artist_ids": ["afc47cec-3ccc-404e-a8c6-4d83dd504271"], "illustration_id": "d235a6f4-1407-43e8-b4a2-44160c01358a", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 13244, "penny_rank": 11956, "prices": {"usd": "0.13", "usd_foil": "0.33", "usd_etched": null, "eur": "0.03", "eur_foil": "0.25", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=194714", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Spell+Contortion&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Spell+Contortion&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Spell+Contortion"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/34441?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Spell+Contortion&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/35635?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "e3d323f0-334f-49d1-b338-24c4b854a112", "oracle_id": "7846f566-5fab-4f4e-b424-a23cc9a51538", "multiverse_ids": [74339], "tcgplayer_id": 37928, "cardmarket_id": 14809, "name": "Spell Counter", "lang": "en", "released_at": "2004-11-19", "uri": "https://api.scryfall.com/cards/e3d323f0-334f-49d1-b338-24c4b854a112", "scryfall_uri": "https://scryfall.com/card/unh/46/spell-counter?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/e/3/e3d323f0-334f-49d1-b338-24c4b854a112.jpg?1562489832", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/3/e3d323f0-334f-49d1-b338-24c4b854a112.jpg?1562489832", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/e/3/e3d323f0-334f-49d1-b338-24c4b854a112.jpg?1562489832", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/e/3/e3d323f0-334f-49d1-b338-24c4b854a112.png?1562489832", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/3/e3d323f0-334f-49d1-b338-24c4b854a112.jpg?1562489832", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/e/3/e3d323f0-334f-49d1-b338-24c4b854a112.jpg?1562489832"}, "mana_cost": "{2}{U}{U}", "cmc": 4.0, "type_line": "Instant", "oracle_text": "Counter target spell.\nGotcha \u2014 If an opponent says \"spell\" or \"counter,\" you may say \"Gotcha!\" When you do, return Spell Counter from your graveyard to your hand.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "not_legal", "pauper": "not_legal", "vintage": "not_legal", "penny": "not_legal", "commander": "not_legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "not_legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "4c8bc76a-05a5-43db-aaf0-34deb347b871", "set": "unh", "set_name": "Unhinged", "set_type": "funny", "set_uri": "https://api.scryfall.com/sets/4c8bc76a-05a5-43db-aaf0-34deb347b871", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aunh&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/unh?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/e3d323f0-334f-49d1-b338-24c4b854a112/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A7846f566-5fab-4f4e-b424-a23cc9a51538&unique=prints", "collector_number": "46", "digital": false, "rarity": "uncommon", "flavor_text": "Playing *Unhinged*, . . .", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Doug Chaffee", "artist_ids": ["dd587b27-dca3-4219-aa55-b285a7a77030"], "illustration_id": "05ebf74b-0dba-4fff-8965-c845c7c83035", "border_color": "silver", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "prices": {"usd": "1.59", "usd_foil": "10.74", "usd_etched": null, "eur": "0.03", "eur_foil": "4.99", "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=74339", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Spell+Counter&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Spell+Counter&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Spell+Counter"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/37928?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Spell+Counter&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Spell+Counter&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "2247df4a-c5d8-4b34-b3a6-3c958eb65f94", "oracle_id": "d4ab7848-5c37-4c6b-be29-0bb703333e5b", "multiverse_ids": [237005], "mtgo_id": 40657, "mtgo_foil_id": 40977, "tcgplayer_id": 47524, "cardmarket_id": 247055, "name": "Spell Crumple", "lang": "en", "released_at": "2011-06-17", "uri": "https://api.scryfall.com/cards/2247df4a-c5d8-4b34-b3a6-3c958eb65f94", "scryfall_uri": "https://scryfall.com/card/cmd/63/spell-crumple?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/2/2/2247df4a-c5d8-4b34-b3a6-3c958eb65f94.jpg?1592713127", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/2/2247df4a-c5d8-4b34-b3a6-3c958eb65f94.jpg?1592713127", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/2/2/2247df4a-c5d8-4b34-b3a6-3c958eb65f94.jpg?1592713127", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/2/2/2247df4a-c5d8-4b34-b3a6-3c958eb65f94.png?1592713127", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/2/2247df4a-c5d8-4b34-b3a6-3c958eb65f94.jpg?1592713127", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/2/2/2247df4a-c5d8-4b34-b3a6-3c958eb65f94.jpg?1592713127"}, "mana_cost": "{1}{U}{U}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Counter target spell. If that spell is countered this way, put it on the bottom of its owner's library instead of into that player's graveyard. Put Spell Crumple on the bottom of its owner's library.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "84ff1a64-4e69-4ed2-8c08-26206e3b97a0", "set": "cmd", "set_name": "Commander 2011", "set_type": "commander", "set_uri": "https://api.scryfall.com/sets/84ff1a64-4e69-4ed2-8c08-26206e3b97a0", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Acmd&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/cmd?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/2247df4a-c5d8-4b34-b3a6-3c958eb65f94/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ad4ab7848-5c37-4c6b-be29-0bb703333e5b&unique=prints", "collector_number": "63", "digital": false, "rarity": "uncommon", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Dan Scott", "artist_ids": ["f852fa13-137e-40f2-bbc1-0f01df09c0e0"], "illustration_id": "4c20af50-336a-4e27-8568-1b1465672975", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "edhrec_rank": 8324, "prices": {"usd": "0.32", "usd_foil": null, "usd_etched": null, "eur": "0.19", "eur_foil": null, "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=237005", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Spell+Crumple&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Spell+Crumple&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Spell+Crumple"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/47524?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Spell+Crumple&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/40657?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "3eda8c7b-ce35-482a-bece-52a30cc78a9a", "oracle_id": "7687b2a7-816d-4416-979b-675e35e235fc", "multiverse_ids": [35169], "mtgo_id": 17476, "mtgo_foil_id": 17477, "tcgplayer_id": 10211, "cardmarket_id": 2177, "name": "Spelljack", "lang": "en", "released_at": "2002-05-27", "uri": "https://api.scryfall.com/cards/3eda8c7b-ce35-482a-bece-52a30cc78a9a", "scryfall_uri": "https://scryfall.com/card/jud/51/spelljack?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/3/e/3eda8c7b-ce35-482a-bece-52a30cc78a9a.jpg?1562629500", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/e/3eda8c7b-ce35-482a-bece-52a30cc78a9a.jpg?1562629500", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/3/e/3eda8c7b-ce35-482a-bece-52a30cc78a9a.jpg?1562629500", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/3/e/3eda8c7b-ce35-482a-bece-52a30cc78a9a.png?1562629500", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/e/3eda8c7b-ce35-482a-bece-52a30cc78a9a.jpg?1562629500", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/3/e/3eda8c7b-ce35-482a-bece-52a30cc78a9a.jpg?1562629500"}, "mana_cost": "{3}{U}{U}{U}", "cmc": 6.0, "type_line": "Instant", "oracle_text": "Counter target spell. If that spell is countered this way, exile it instead of putting it into its owner's graveyard. You may play it without paying its mana cost for as long as it remains exiled. (If it has X in its mana cost, X is 0.)", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "cd82de1a-36fd-4618-bfe8-b45532a582d9", "set": "jud", "set_name": "Judgment", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/cd82de1a-36fd-4618-bfe8-b45532a582d9", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ajud&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/jud?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/3eda8c7b-ce35-482a-bece-52a30cc78a9a/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A7687b2a7-816d-4416-979b-675e35e235fc&unique=prints", "collector_number": "51", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Pete Venters", "artist_ids": ["d54c4a1a-c0c5-4834-84db-125d341f3ad8"], "illustration_id": "82fffc9c-876a-4327-aa66-debc56d20f34", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 9094, "prices": {"usd": "3.54", "usd_foil": "17.81", "usd_etched": null, "eur": "0.50", "eur_foil": "9.99", "tix": "0.16"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=35169", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Spelljack&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Spelljack&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Spelljack"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/10211?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Spelljack&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/17476?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "beb42273-935b-4bda-849e-c163606cf89e", "oracle_id": "d64b0848-0193-4025-ba62-63ecd8fb9f50", "multiverse_ids": [548378], "mtgo_id": 97080, "arena_id": 79505, "tcgplayer_id": 262466, "cardmarket_id": 607577, "name": "Spell Pierce", "lang": "en", "released_at": "2022-02-18", "uri": "https://api.scryfall.com/cards/beb42273-935b-4bda-849e-c163606cf89e", "scryfall_uri": "https://scryfall.com/card/neo/80/spell-pierce?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/b/e/beb42273-935b-4bda-849e-c163606cf89e.jpg?1654566963", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/e/beb42273-935b-4bda-849e-c163606cf89e.jpg?1654566963", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/b/e/beb42273-935b-4bda-849e-c163606cf89e.jpg?1654566963", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/b/e/beb42273-935b-4bda-849e-c163606cf89e.png?1654566963", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/e/beb42273-935b-4bda-849e-c163606cf89e.jpg?1654566963", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/b/e/beb42273-935b-4bda-849e-c163606cf89e.jpg?1654566963"}, "mana_cost": "{U}", "cmc": 1.0, "type_line": "Instant", "oracle_text": "Counter target noncreature spell unless its controller pays {2}.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo", "arena"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "59a2059f-5482-433f-8761-eb2e17859b71", "set": "neo", "set_name": "Kamigawa: Neon Dynasty", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/59a2059f-5482-433f-8761-eb2e17859b71", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aneo&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/neo?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/beb42273-935b-4bda-849e-c163606cf89e/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ad64b0848-0193-4025-ba62-63ecd8fb9f50&unique=prints", "collector_number": "80", "digital": false, "rarity": "common", "flavor_text": "For all their planning, Tamiyo and Kaito were unprepared to face the full power of a Phyrexian praetor.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Lie Setiawan", "artist_ids": ["6f771d3f-310e-4aa4-841f-5ba4ba9f025a"], "illustration_id": "256ef058-820e-4c42-b528-838ead599126", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": true, "edhrec_rank": 709, "penny_rank": 66, "preview": {"source": "CovertGoBlue", "source_uri": "https://twitter.com/covertgoblue/status/1488587082008309763", "previewed_at": "2022-02-01"}, "prices": {"usd": "0.16", "usd_foil": "1.85", "usd_etched": null, "eur": "0.15", "eur_foil": "0.51", "tix": "0.01"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=548378", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Spell+Pierce&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Spell+Pierce&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Spell+Pierce"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/262466?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Spell+Pierce&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/97080?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "6bf4dfc0-c58b-4535-b660-54ceaa6e0217", "oracle_id": "d64b0848-0193-4025-ba62-63ecd8fb9f50", "multiverse_ids": [435234], "mtgo_id": 65176, "mtgo_foil_id": 65177, "arena_id": 66125, "tcgplayer_id": 145258, "cardmarket_id": 301386, "name": "Spell Pierce", "lang": "en", "released_at": "2017-09-29", "uri": "https://api.scryfall.com/cards/6bf4dfc0-c58b-4535-b660-54ceaa6e0217", "scryfall_uri": "https://scryfall.com/card/xln/81/spell-pierce?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/6/b/6bf4dfc0-c58b-4535-b660-54ceaa6e0217.jpg?1562557054", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/b/6bf4dfc0-c58b-4535-b660-54ceaa6e0217.jpg?1562557054", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/6/b/6bf4dfc0-c58b-4535-b660-54ceaa6e0217.jpg?1562557054", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/6/b/6bf4dfc0-c58b-4535-b660-54ceaa6e0217.png?1562557054", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/b/6bf4dfc0-c58b-4535-b660-54ceaa6e0217.jpg?1562557054", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/6/b/6bf4dfc0-c58b-4535-b660-54ceaa6e0217.jpg?1562557054"}, "mana_cost": "{U}", "cmc": 1.0, "type_line": "Instant", "oracle_text": "Counter target noncreature spell unless its controller pays {2}.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "fe0dad85-54bc-4151-9200-d68da84dd0f2", "set": "xln", "set_name": "Ixalan", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/fe0dad85-54bc-4151-9200-d68da84dd0f2", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Axln&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/xln?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/6bf4dfc0-c58b-4535-b660-54ceaa6e0217/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ad64b0848-0193-4025-ba62-63ecd8fb9f50&unique=prints", "collector_number": "81", "digital": false, "rarity": "common", "flavor_text": "\"A fool's fire is quickly quenched.\"\n\u2014Shaper Kumena", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Deruchenko Alexander", "artist_ids": ["806f6ff9-6ed4-4e93-998a-a562c0b792e6"], "illustration_id": "4c0010c4-749e-4d42-a4e7-e04d4510b510", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 709, "penny_rank": 66, "prices": {"usd": "0.10", "usd_foil": "4.26", "usd_etched": null, "eur": "0.32", "eur_foil": "3.50", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=435234", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Spell+Pierce&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Spell+Pierce&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Spell+Pierce"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/145258?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Spell+Pierce&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/65176?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "cb3d3901-e4a6-45ab-a7b5-c65d91e1875e", "oracle_id": "d64b0848-0193-4025-ba62-63ecd8fb9f50", "multiverse_ids": [178144], "mtgo_id": 34442, "mtgo_foil_id": 34443, "tcgplayer_id": 33433, "cardmarket_id": 21885, "name": "Spell Pierce", "lang": "en", "released_at": "2009-10-02", "uri": "https://api.scryfall.com/cards/cb3d3901-e4a6-45ab-a7b5-c65d91e1875e", "scryfall_uri": "https://scryfall.com/card/zen/67/spell-pierce?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/c/b/cb3d3901-e4a6-45ab-a7b5-c65d91e1875e.jpg?1562616640", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/b/cb3d3901-e4a6-45ab-a7b5-c65d91e1875e.jpg?1562616640", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/c/b/cb3d3901-e4a6-45ab-a7b5-c65d91e1875e.jpg?1562616640", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/c/b/cb3d3901-e4a6-45ab-a7b5-c65d91e1875e.png?1562616640", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/b/cb3d3901-e4a6-45ab-a7b5-c65d91e1875e.jpg?1562616640", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/c/b/cb3d3901-e4a6-45ab-a7b5-c65d91e1875e.jpg?1562616640"}, "mana_cost": "{U}", "cmc": 1.0, "type_line": "Instant", "oracle_text": "Counter target noncreature spell unless its controller pays {2}.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "eb16a2bd-a218-4e4e-8339-4aa1afc0c8d2", "set": "zen", "set_name": "Zendikar", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/eb16a2bd-a218-4e4e-8339-4aa1afc0c8d2", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Azen&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/zen?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/cb3d3901-e4a6-45ab-a7b5-c65d91e1875e/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ad64b0848-0193-4025-ba62-63ecd8fb9f50&unique=prints", "collector_number": "67", "digital": false, "rarity": "common", "flavor_text": "\"There's a hole in your plan.\"\n\u2014Noyan Dar, Tazeem lullmage", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Vance Kovacs", "artist_ids": ["b5516011-4722-4fc8-8542-102cecc52b71"], "illustration_id": "4bdf8068-d062-4205-882c-d4fcd0878c1f", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 709, "penny_rank": 66, "prices": {"usd": "0.31", "usd_foil": "14.45", "usd_etched": null, "eur": "0.39", "eur_foil": "6.95", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=178144", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Spell+Pierce&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Spell+Pierce&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Spell+Pierce"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/33433?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Spell+Pierce&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/34442?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "d3c8f1c8-2b57-41a3-abeb-77ac7de62fa1", "oracle_id": "d64b0848-0193-4025-ba62-63ecd8fb9f50", "multiverse_ids": [573012], "tcgplayer_id": 277164, "cardmarket_id": 665811, "name": "Spell Pierce", "lang": "en", "released_at": "2022-07-08", "uri": "https://api.scryfall.com/cards/d3c8f1c8-2b57-41a3-abeb-77ac7de62fa1", "scryfall_uri": "https://scryfall.com/card/2x2/350/spell-pierce?utm_source=api", "layout": "normal", "highres_image": false, "image_status": "lowres", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/d/3/d3c8f1c8-2b57-41a3-abeb-77ac7de62fa1.jpg?1656006437", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/3/d3c8f1c8-2b57-41a3-abeb-77ac7de62fa1.jpg?1656006437", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/d/3/d3c8f1c8-2b57-41a3-abeb-77ac7de62fa1.jpg?1656006437", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/d/3/d3c8f1c8-2b57-41a3-abeb-77ac7de62fa1.png?1656006437", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/3/d3c8f1c8-2b57-41a3-abeb-77ac7de62fa1.jpg?1656006437", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/d/3/d3c8f1c8-2b57-41a3-abeb-77ac7de62fa1.jpg?1656006437"}, "mana_cost": "{U}", "cmc": 1.0, "type_line": "Instant", "oracle_text": "Counter target noncreature spell unless its controller pays {2}.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "5a645837-b050-449f-ac90-1e7ccbf45031", "set": "2x2", "set_name": "Double Masters 2022", "set_type": "masters", "set_uri": "https://api.scryfall.com/sets/5a645837-b050-449f-ac90-1e7ccbf45031", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3A2x2&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/2x2?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/d3c8f1c8-2b57-41a3-abeb-77ac7de62fa1/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ad64b0848-0193-4025-ba62-63ecd8fb9f50&unique=prints", "collector_number": "350", "digital": false, "rarity": "common", "flavor_text": "\"If you make me spill my drink, you're buying me a new one.\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Dermot Power", "artist_ids": ["4162c8c0-8ded-497c-b29e-131e43dfae5e"], "illustration_id": "615a0409-ef5a-4776-982d-a71c47599813", "border_color": "borderless", "frame": "2015", "frame_effects": ["inverted"], "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "promo_types": ["boosterfun"], "edhrec_rank": 709, "penny_rank": 66, "preview": {"source": "Wizards of the Coast", "source_uri": "https://www.twitch.tv/videos/1512208234", "previewed_at": "2022-06-23"}, "prices": {"usd": "0.58", "usd_foil": "1.37", "usd_etched": null, "eur": "0.57", "eur_foil": "1.52", "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=573012", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Spell+Pierce&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Spell+Pierce&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Spell+Pierce"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/277164?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Spell+Pierce&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Spell+Pierce&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "a4f8b11a-6b21-4532-96c9-bdb2cad603e8", "oracle_id": "d64b0848-0193-4025-ba62-63ecd8fb9f50", "multiverse_ids": [485319], "tcgplayer_id": 214890, "cardmarket_id": 464534, "name": "Spell Pierce", "lang": "en", "released_at": "2020-06-01", "uri": "https://api.scryfall.com/cards/a4f8b11a-6b21-4532-96c9-bdb2cad603e8", "scryfall_uri": "https://scryfall.com/card/sld/41/spell-pierce?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/a/4/a4f8b11a-6b21-4532-96c9-bdb2cad603e8.jpg?1599332212", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/4/a4f8b11a-6b21-4532-96c9-bdb2cad603e8.jpg?1599332212", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/a/4/a4f8b11a-6b21-4532-96c9-bdb2cad603e8.jpg?1599332212", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/a/4/a4f8b11a-6b21-4532-96c9-bdb2cad603e8.png?1599332212", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/4/a4f8b11a-6b21-4532-96c9-bdb2cad603e8.jpg?1599332212", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/a/4/a4f8b11a-6b21-4532-96c9-bdb2cad603e8.jpg?1599332212"}, "mana_cost": "{U}", "cmc": 1.0, "type_line": "Instant", "oracle_text": "Counter target noncreature spell unless its controller pays {2}.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "4d92a8a7-ccb0-437d-abdc-9d70fc5ed672", "set": "sld", "set_name": "Secret Lair Drop", "set_type": "box", "set_uri": "https://api.scryfall.com/sets/4d92a8a7-ccb0-437d-abdc-9d70fc5ed672", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Asld&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/sld?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/a4f8b11a-6b21-4532-96c9-bdb2cad603e8/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ad64b0848-0193-4025-ba62-63ecd8fb9f50&unique=prints", "collector_number": "41", "digital": false, "rarity": "rare", "flavor_text": "A great wizard always has a few surprises up their sleeve.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Joshua Howard", "artist_ids": ["74a07b08-7106-4c07-be68-087aa767f298"], "illustration_id": "b80b5f79-f1fa-489f-985b-3f7619af201c", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "edhrec_rank": 709, "penny_rank": 66, "preview": {"source": "Bleeding Cool", "source_uri": "https://bleedingcool.com/games/magic-the-gathering-announces-full-sleeves-secret-lair-drop/", "previewed_at": "2020-05-25"}, "prices": {"usd": "7.75", "usd_foil": null, "usd_etched": null, "eur": "7.40", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=485319", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Spell+Pierce&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Spell+Pierce&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Spell+Pierce"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/214890?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Spell+Pierce&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Spell+Pierce&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "eef1f68a-b27c-4e81-9a3c-dccb86771bec", "oracle_id": "d64b0848-0193-4025-ba62-63ecd8fb9f50", "multiverse_ids": [429876], "mtgo_id": 64388, "mtgo_foil_id": 64389, "tcgplayer_id": 129565, "cardmarket_id": 296609, "name": "Spell Pierce", "lang": "en", "released_at": "2017-04-28", "uri": "https://api.scryfall.com/cards/eef1f68a-b27c-4e81-9a3c-dccb86771bec", "scryfall_uri": "https://scryfall.com/card/mp2/17/spell-pierce?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/e/e/eef1f68a-b27c-4e81-9a3c-dccb86771bec.jpg?1562942998", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/e/eef1f68a-b27c-4e81-9a3c-dccb86771bec.jpg?1562942998", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/e/e/eef1f68a-b27c-4e81-9a3c-dccb86771bec.jpg?1562942998", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/e/e/eef1f68a-b27c-4e81-9a3c-dccb86771bec.png?1562942998", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/e/eef1f68a-b27c-4e81-9a3c-dccb86771bec.jpg?1562942998", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/e/e/eef1f68a-b27c-4e81-9a3c-dccb86771bec.jpg?1562942998"}, "mana_cost": "{U}", "cmc": 1.0, "type_line": "Instant", "oracle_text": "Counter target noncreature spell unless its controller pays {2}.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": false, "finishes": ["foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "c26402e7-838e-48db-a4b2-7abfc305998a", "set": "mp2", "set_name": "Amonkhet Invocations", "set_type": "masterpiece", "set_uri": "https://api.scryfall.com/sets/c26402e7-838e-48db-a4b2-7abfc305998a", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Amp2&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/mp2?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/eef1f68a-b27c-4e81-9a3c-dccb86771bec/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ad64b0848-0193-4025-ba62-63ecd8fb9f50&unique=prints", "collector_number": "17", "digital": false, "rarity": "mythic", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Joseph Meehan", "artist_ids": ["6befd6d5-7f8d-4b7c-87e3-5511391a3359"], "illustration_id": "05bdd6d4-45a6-44ec-b340-dd5f500a8f30", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 709, "penny_rank": 66, "prices": {"usd": null, "usd_foil": "85.07", "usd_etched": null, "eur": null, "eur_foil": "88.76", "tix": "2.61"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=429876", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Spell+Pierce&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Spell+Pierce&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Spell+Pierce"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/129565?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Spell+Pierce&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/64388?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "7267fcec-0879-4743-a45f-35057ccb2596", "oracle_id": "934c50aa-7d2e-4c9e-b91b-1e8c4055e1c6", "multiverse_ids": [366372], "mtgo_id": 47567, "mtgo_foil_id": 47568, "tcgplayer_id": 67466, "cardmarket_id": 260008, "name": "Spell Rupture", "lang": "en", "released_at": "2013-02-01", "uri": "https://api.scryfall.com/cards/7267fcec-0879-4743-a45f-35057ccb2596", "scryfall_uri": "https://scryfall.com/card/gtc/52/spell-rupture?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/7/2/7267fcec-0879-4743-a45f-35057ccb2596.jpg?1561831328", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/2/7267fcec-0879-4743-a45f-35057ccb2596.jpg?1561831328", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/7/2/7267fcec-0879-4743-a45f-35057ccb2596.jpg?1561831328", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/7/2/7267fcec-0879-4743-a45f-35057ccb2596.png?1561831328", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/2/7267fcec-0879-4743-a45f-35057ccb2596.jpg?1561831328", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/7/2/7267fcec-0879-4743-a45f-35057ccb2596.jpg?1561831328"}, "mana_cost": "{1}{U}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Counter target spell unless its controller pays {X}, where X is the greatest power among creatures you control.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "035a05f7-e020-4f50-a141-ed16ba704bd2", "set": "gtc", "set_name": "Gatecrash", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/035a05f7-e020-4f50-a141-ed16ba704bd2", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Agtc&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/gtc?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/7267fcec-0879-4743-a45f-35057ccb2596/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A934c50aa-7d2e-4c9e-b91b-1e8c4055e1c6&unique=prints", "collector_number": "52", "digital": false, "rarity": "common", "flavor_text": "\"Like water, mana will drain from an inferior vessel.\"\n\u2014Jalan Tosk, Simic forcemage", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Kev Walker", "artist_ids": ["f366a0ee-a0cd-466d-ba6a-90058c7a31a6"], "illustration_id": "376ea49c-931a-4546-aaf8-4d235c68c5a9", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 11141, "penny_rank": 3518, "prices": {"usd": "0.08", "usd_foil": "0.27", "usd_etched": null, "eur": "0.36", "eur_foil": "0.35", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=366372", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Spell+Rupture&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Spell+Rupture&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Spell+Rupture"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/67466?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Spell+Rupture&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/47567?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "f5c897a6-5835-42ac-8cc7-e8d9fc1e7c77", "oracle_id": "640fc475-5708-4ee6-a1a9-8f0722e22b48", "multiverse_ids": [122459], "mtgo_id": 26303, "mtgo_foil_id": 26304, "tcgplayer_id": 14813, "cardmarket_id": 14226, "name": "Spellshift", "lang": "en", "released_at": "2007-02-02", "uri": "https://api.scryfall.com/cards/f5c897a6-5835-42ac-8cc7-e8d9fc1e7c77", "scryfall_uri": "https://scryfall.com/card/plc/47/spellshift?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/f/5/f5c897a6-5835-42ac-8cc7-e8d9fc1e7c77.jpg?1562586074", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/5/f5c897a6-5835-42ac-8cc7-e8d9fc1e7c77.jpg?1562586074", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/f/5/f5c897a6-5835-42ac-8cc7-e8d9fc1e7c77.jpg?1562586074", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/f/5/f5c897a6-5835-42ac-8cc7-e8d9fc1e7c77.png?1562586074", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/5/f5c897a6-5835-42ac-8cc7-e8d9fc1e7c77.jpg?1562586074", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/f/5/f5c897a6-5835-42ac-8cc7-e8d9fc1e7c77.jpg?1562586074"}, "mana_cost": "{3}{U}", "cmc": 4.0, "type_line": "Instant", "oracle_text": "Counter target instant or sorcery spell. Its controller reveals cards from the top of their library until they reveal an instant or sorcery card. That player may cast that card without paying its mana cost. Then the player shuffles.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "5a1b571c-73e9-4c14-b9d4-a62507d85789", "set": "plc", "set_name": "Planar Chaos", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/5a1b571c-73e9-4c14-b9d4-a62507d85789", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aplc&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/plc?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/f5c897a6-5835-42ac-8cc7-e8d9fc1e7c77/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A640fc475-5708-4ee6-a1a9-8f0722e22b48&unique=prints", "collector_number": "47", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Stephen Tappin", "artist_ids": ["bb596c13-9c39-4b11-8a7b-c88944826e70"], "illustration_id": "130821ca-d485-428b-8044-7c37de6e670b", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 18914, "penny_rank": 13974, "prices": {"usd": "0.27", "usd_foil": "0.46", "usd_etched": null, "eur": "0.02", "eur_foil": "0.50", "tix": "0.01"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=122459", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Spellshift&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Spellshift&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Spellshift"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/14813?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Spellshift&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/26303?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "efa110cb-f091-48f0-bc62-80f5f18568e8", "oracle_id": "bfaf376f-90f9-45d9-bfbe-dd84a2a4688b", "multiverse_ids": [402047], "mtgo_id": 58505, "mtgo_foil_id": 58506, "tcgplayer_id": 105683, "cardmarket_id": 284837, "name": "Spell Shrivel", "lang": "en", "released_at": "2015-10-02", "uri": "https://api.scryfall.com/cards/efa110cb-f091-48f0-bc62-80f5f18568e8", "scryfall_uri": "https://scryfall.com/card/bfz/66/spell-shrivel?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/e/f/efa110cb-f091-48f0-bc62-80f5f18568e8.jpg?1562951938", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/f/efa110cb-f091-48f0-bc62-80f5f18568e8.jpg?1562951938", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/e/f/efa110cb-f091-48f0-bc62-80f5f18568e8.jpg?1562951938", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/e/f/efa110cb-f091-48f0-bc62-80f5f18568e8.png?1562951938", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/f/efa110cb-f091-48f0-bc62-80f5f18568e8.jpg?1562951938", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/e/f/efa110cb-f091-48f0-bc62-80f5f18568e8.jpg?1562951938"}, "mana_cost": "{2}{U}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Devoid (This card has no color.)\nCounter target spell unless its controller pays {4}. If that spell is countered this way, exile it instead of putting it into its owner's graveyard.", "colors": [], "color_identity": ["U"], "keywords": ["Devoid"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "91719374-7ac5-4afa-ada8-5da964dcf1d4", "set": "bfz", "set_name": "Battle for Zendikar", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/91719374-7ac5-4afa-ada8-5da964dcf1d4", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Abfz&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/bfz?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/efa110cb-f091-48f0-bc62-80f5f18568e8/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Abfaf376f-90f9-45d9-bfbe-dd84a2a4688b&unique=prints", "collector_number": "66", "digital": false, "rarity": "common", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Jack Wang", "artist_ids": ["331942ac-401c-4af3-9d70-85f67717496c"], "illustration_id": "52cb03e2-60d4-4bce-b438-2e6aec5a035c", "border_color": "black", "frame": "2015", "frame_effects": ["devoid"], "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 9727, "penny_rank": 2005, "prices": {"usd": "0.06", "usd_foil": "0.34", "usd_etched": null, "eur": "0.15", "eur_foil": "0.12", "tix": "0.04"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=402047", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Spell+Shrivel&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Spell+Shrivel&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Spell+Shrivel"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/105683?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Spell+Shrivel&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/58505?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "35554fdf-c70a-4baa-a35a-414caa9978be", "oracle_id": "38877c68-b69b-4ee1-8e8f-5137a184a8f7", "multiverse_ids": [107281], "mtgo_id": 24113, "mtgo_foil_id": 24114, "tcgplayer_id": 13956, "cardmarket_id": 13092, "name": "Spell Snare", "lang": "en", "released_at": "2006-05-05", "uri": "https://api.scryfall.com/cards/35554fdf-c70a-4baa-a35a-414caa9978be", "scryfall_uri": "https://scryfall.com/card/dis/33/spell-snare?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/3/5/35554fdf-c70a-4baa-a35a-414caa9978be.jpg?1593272766", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/5/35554fdf-c70a-4baa-a35a-414caa9978be.jpg?1593272766", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/3/5/35554fdf-c70a-4baa-a35a-414caa9978be.jpg?1593272766", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/3/5/35554fdf-c70a-4baa-a35a-414caa9978be.png?1593272766", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/5/35554fdf-c70a-4baa-a35a-414caa9978be.jpg?1593272766", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/3/5/35554fdf-c70a-4baa-a35a-414caa9978be.jpg?1593272766"}, "mana_cost": "{U}", "cmc": 1.0, "type_line": "Instant", "oracle_text": "Counter target spell with mana value 2.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "fdebeda1-b95f-4343-8a94-d125821e6b5c", "set": "dis", "set_name": "Dissension", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/fdebeda1-b95f-4343-8a94-d125821e6b5c", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Adis&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/dis?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/35554fdf-c70a-4baa-a35a-414caa9978be/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A38877c68-b69b-4ee1-8e8f-5137a184a8f7&unique=prints", "collector_number": "33", "digital": false, "rarity": "uncommon", "flavor_text": "Every culture has its unlucky numbers. In a city where you're either alone, in a crowd, or being stabbed in the back, two is the worst number of all.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Hideaki Takamura", "artist_ids": ["49b6270b-1b28-4e03-b503-522f97dc3a78"], "illustration_id": "23b20839-b09e-4f8a-88e5-a0891f8a24c3", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 5653, "prices": {"usd": "0.62", "usd_foil": "39.00", "usd_etched": null, "eur": "0.52", "eur_foil": "6.00", "tix": "0.15"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=107281", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Spell+Snare&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Spell+Snare&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Spell+Snare"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/13956?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Spell+Snare&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/24113?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "d6870203-ece9-4fe0-912b-2dcf685f3eb0", "oracle_id": "cfdae813-7241-4f6c-99f0-c772af34af91", "multiverse_ids": [175038], "mtgo_id": 31105, "mtgo_foil_id": 31106, "tcgplayer_id": 27810, "cardmarket_id": 19826, "name": "Spell Snip", "lang": "en", "released_at": "2008-10-03", "uri": "https://api.scryfall.com/cards/d6870203-ece9-4fe0-912b-2dcf685f3eb0", "scryfall_uri": "https://scryfall.com/card/ala/57/spell-snip?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/d/6/d6870203-ece9-4fe0-912b-2dcf685f3eb0.jpg?1562709543", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/6/d6870203-ece9-4fe0-912b-2dcf685f3eb0.jpg?1562709543", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/d/6/d6870203-ece9-4fe0-912b-2dcf685f3eb0.jpg?1562709543", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/d/6/d6870203-ece9-4fe0-912b-2dcf685f3eb0.png?1562709543", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/6/d6870203-ece9-4fe0-912b-2dcf685f3eb0.jpg?1562709543", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/d/6/d6870203-ece9-4fe0-912b-2dcf685f3eb0.jpg?1562709543"}, "mana_cost": "{2}{U}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Counter target spell unless its controller pays {1}.\nCycling {2} ({2}, Discard this card: Draw a card.)", "colors": ["U"], "color_identity": ["U"], "keywords": ["Cycling"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "d667aaec-09b7-4406-b6fa-60795132dc11", "set": "ala", "set_name": "Shards of Alara", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/d667aaec-09b7-4406-b6fa-60795132dc11", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aala&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ala?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/d6870203-ece9-4fe0-912b-2dcf685f3eb0/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Acfdae813-7241-4f6c-99f0-c772af34af91&unique=prints", "collector_number": "57", "digital": false, "rarity": "common", "flavor_text": "\"Magic cast through a hand of flesh is just as weak as the flesh itself.\"\n\u2014Lodus of the Ethersworn", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Michael Sutfin", "artist_ids": ["5ce7b3bd-53d2-49e6-b504-37191e8e9b17"], "illustration_id": "d30afcdb-59bc-4df8-9374-4fec6e8aec2d", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 18138, "penny_rank": 6968, "prices": {"usd": "0.06", "usd_foil": "0.20", "usd_etched": null, "eur": "0.02", "eur_foil": "0.10", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=175038", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Spell+Snip&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Spell+Snip&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Spell+Snip"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/27810?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Spell+Snip&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/31105?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "efadce19-07f4-47af-abc0-a436bafcdd65", "oracle_id": "19f3ec61-f334-4708-ad93-04ebe15c1798", "multiverse_ids": [464019], "mtgo_id": 72512, "tcgplayer_id": 191065, "cardmarket_id": 375087, "name": "Spell Snuff", "lang": "en", "released_at": "2019-06-14", "uri": "https://api.scryfall.com/cards/efadce19-07f4-47af-abc0-a436bafcdd65", "scryfall_uri": "https://scryfall.com/card/mh1/70/spell-snuff?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/e/f/efadce19-07f4-47af-abc0-a436bafcdd65.jpg?1562201508", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/f/efadce19-07f4-47af-abc0-a436bafcdd65.jpg?1562201508", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/e/f/efadce19-07f4-47af-abc0-a436bafcdd65.jpg?1562201508", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/e/f/efadce19-07f4-47af-abc0-a436bafcdd65.png?1562201508", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/f/efadce19-07f4-47af-abc0-a436bafcdd65.jpg?1562201508", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/e/f/efadce19-07f4-47af-abc0-a436bafcdd65.jpg?1562201508"}, "mana_cost": "{1}{U}{U}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Counter target spell.\nFateful hour \u2014 If you have 5 or less life, draw a card.", "colors": ["U"], "color_identity": ["U"], "keywords": ["Fateful hour"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "d7efccd6-55bc-4fb8-9138-e72577510a99", "set": "mh1", "set_name": "Modern Horizons", "set_type": "draft_innovation", "set_uri": "https://api.scryfall.com/sets/d7efccd6-55bc-4fb8-9138-e72577510a99", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Amh1&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/mh1?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/efadce19-07f4-47af-abc0-a436bafcdd65/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A19f3ec61-f334-4708-ad93-04ebe15c1798&unique=prints", "collector_number": "70", "digital": false, "rarity": "common", "flavor_text": "\"Good night.\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Nic Klein", "artist_ids": ["b948d330-3fbd-44cc-b140-02bcc5d46f79"], "illustration_id": "bba06e4f-efb9-4c56-b59d-284ff1ea61d1", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 10643, "penny_rank": 12848, "preview": {"source": "PureMTGO", "source_uri": "https://puremtgo.com/articles/pure-presents-modern-horizons-preview-roundtable", "previewed_at": "2019-05-27"}, "prices": {"usd": "0.02", "usd_foil": "0.07", "usd_etched": null, "eur": "0.02", "eur_foil": "0.21", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=464019", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Spell+Snuff&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Spell+Snuff&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Spell+Snuff"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/191065?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Spell+Snuff&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/72512?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "f631bd92-2046-468d-8b10-d583a318ed24", "oracle_id": "89e0fea2-2777-4533-85d8-6a88a1db2512", "multiverse_ids": [439434], "tcgplayer_id": 153142, "cardmarket_id": 313977, "name": "Spell Suck", "lang": "en", "released_at": "2017-12-08", "uri": "https://api.scryfall.com/cards/f631bd92-2046-468d-8b10-d583a318ed24", "scryfall_uri": "https://scryfall.com/card/ust/45/spell-suck?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/f/6/f631bd92-2046-468d-8b10-d583a318ed24.jpg?1562946926", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/6/f631bd92-2046-468d-8b10-d583a318ed24.jpg?1562946926", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/f/6/f631bd92-2046-468d-8b10-d583a318ed24.jpg?1562946926", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/f/6/f631bd92-2046-468d-8b10-d583a318ed24.png?1562946926", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/6/f631bd92-2046-468d-8b10-d583a318ed24.jpg?1562946926", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/f/6/f631bd92-2046-468d-8b10-d583a318ed24.jpg?1562946926"}, "mana_cost": "{2}{U}{U}", "cmc": 4.0, "type_line": "Instant", "oracle_text": "Counter target spell, then assemble a Contraption. (Put the top card of your Contraption deck face up onto one of your sprockets.)", "colors": ["U"], "color_identity": ["U"], "keywords": ["Assemble"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "not_legal", "pauper": "not_legal", "vintage": "not_legal", "penny": "not_legal", "commander": "not_legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "not_legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "83491685-880d-41dd-a4af-47d2b3b17c10", "set": "ust", "set_name": "Unstable", "set_type": "funny", "set_uri": "https://api.scryfall.com/sets/83491685-880d-41dd-a4af-47d2b3b17c10", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aust&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ust?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/f631bd92-2046-468d-8b10-d583a318ed24/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A89e0fea2-2777-4533-85d8-6a88a1db2512&unique=prints", "collector_number": "45", "digital": false, "rarity": "common", "watermark": "agentsofsneak", "flavor_text": "S-U-C-K", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Michael Phillippi", "artist_ids": ["3bda7dbe-1d9f-47c6-95ce-d283859ffab1"], "illustration_id": "66abcbba-c402-42f0-8047-85c495bcc3c4", "border_color": "silver", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "prices": {"usd": "0.09", "usd_foil": "0.25", "usd_etched": null, "eur": "0.02", "eur_foil": "0.22", "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=439434", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Spell+Suck&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Spell+Suck&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Spell+Suck"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/153142?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Spell+Suck&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Spell+Suck&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "6e619ada-e9ce-4758-afd8-8def853877eb", "oracle_id": "81fa8e6a-5fb8-43de-802f-df5b985c6a7d", "multiverse_ids": [435235], "mtgo_id": 65178, "mtgo_foil_id": 65179, "arena_id": 66127, "tcgplayer_id": 145766, "cardmarket_id": 301547, "name": "Spell Swindle", "lang": "en", "released_at": "2017-09-29", "uri": "https://api.scryfall.com/cards/6e619ada-e9ce-4758-afd8-8def853877eb", "scryfall_uri": "https://scryfall.com/card/xln/82/spell-swindle?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/6/e/6e619ada-e9ce-4758-afd8-8def853877eb.jpg?1562557238", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/e/6e619ada-e9ce-4758-afd8-8def853877eb.jpg?1562557238", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/6/e/6e619ada-e9ce-4758-afd8-8def853877eb.jpg?1562557238", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/6/e/6e619ada-e9ce-4758-afd8-8def853877eb.png?1562557238", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/e/6e619ada-e9ce-4758-afd8-8def853877eb.jpg?1562557238", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/6/e/6e619ada-e9ce-4758-afd8-8def853877eb.jpg?1562557238"}, "mana_cost": "{3}{U}{U}", "cmc": 5.0, "type_line": "Instant", "oracle_text": "Counter target spell. Create X Treasure tokens, where X is that spell's mana value. (They're artifacts with \"{T}, Sacrifice this artifact: Add one mana of any color.\")", "colors": ["U"], "color_identity": ["U"], "keywords": [], "produced_mana": ["B", "G", "R", "U", "W"], "all_parts": [{"object": "related_card", "id": "6e619ada-e9ce-4758-afd8-8def853877eb", "component": "combo_piece", "name": "Spell Swindle", "type_line": "Instant", "uri": "https://api.scryfall.com/cards/6e619ada-e9ce-4758-afd8-8def853877eb"}, {"object": "related_card", "id": "720f3e68-84c0-462e-a0d1-90236ccc494a", "component": "token", "name": "Treasure", "type_line": "Token Artifact \u2014 Treasure", "uri": "https://api.scryfall.com/cards/720f3e68-84c0-462e-a0d1-90236ccc494a"}], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "fe0dad85-54bc-4151-9200-d68da84dd0f2", "set": "xln", "set_name": "Ixalan", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/fe0dad85-54bc-4151-9200-d68da84dd0f2", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Axln&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/xln?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/6e619ada-e9ce-4758-afd8-8def853877eb/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A81fa8e6a-5fb8-43de-802f-df5b985c6a7d&unique=prints", "collector_number": "82", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Victor Adame Minguez", "artist_ids": ["bd8f7368-5b10-4554-b6b8-d052c6aca89f"], "illustration_id": "f686a818-9981-4e03-9348-5899324dbc44", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 1297, "penny_rank": 8068, "prices": {"usd": "1.98", "usd_foil": "5.58", "usd_etched": null, "eur": "1.17", "eur_foil": "2.00", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=435235", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Spell+Swindle&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Spell+Swindle&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Spell+Swindle"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/145766?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Spell+Swindle&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/65178?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "b883113c-e52b-4633-b4a4-016093327b6a", "oracle_id": "f30e9371-2c12-496a-80e1-40c3408defed", "multiverse_ids": [153999], "mtgo_id": 29679, "mtgo_foil_id": 29680, "tcgplayer_id": 18799, "cardmarket_id": 19066, "name": "Spell Syphon", "lang": "en", "released_at": "2008-05-02", "uri": "https://api.scryfall.com/cards/b883113c-e52b-4633-b4a4-016093327b6a", "scryfall_uri": "https://scryfall.com/card/shm/52/spell-syphon?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/b/8/b883113c-e52b-4633-b4a4-016093327b6a.jpg?1562835117", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/8/b883113c-e52b-4633-b4a4-016093327b6a.jpg?1562835117", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/b/8/b883113c-e52b-4633-b4a4-016093327b6a.jpg?1562835117", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/b/8/b883113c-e52b-4633-b4a4-016093327b6a.png?1562835117", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/8/b883113c-e52b-4633-b4a4-016093327b6a.jpg?1562835117", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/b/8/b883113c-e52b-4633-b4a4-016093327b6a.jpg?1562835117"}, "mana_cost": "{1}{U}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Counter target spell unless its controller pays {1} for each blue permanent you control.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "c18c0ba1-2081-4808-9b2e-549bc3a666f3", "set": "shm", "set_name": "Shadowmoor", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/c18c0ba1-2081-4808-9b2e-549bc3a666f3", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ashm&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/shm?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/b883113c-e52b-4633-b4a4-016093327b6a/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Af30e9371-2c12-496a-80e1-40c3408defed&unique=prints", "collector_number": "52", "digital": false, "rarity": "common", "flavor_text": "Warrik Brutehexer felt betrayed that his aura favored the depths of the Wanderbrine River over its rightful place, hovering around him.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "John Avon", "artist_ids": ["798f3932-30e0-4420-aa3f-db4d613f89ca"], "illustration_id": "d8bf32da-4a90-4c56-9adb-845facd26c85", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 12891, "penny_rank": 7324, "prices": {"usd": "0.18", "usd_foil": "0.76", "usd_etched": null, "eur": "0.05", "eur_foil": "0.66", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=153999", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Spell+Syphon&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Spell+Syphon&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Spell+Syphon"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/18799?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Spell+Syphon&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/29679?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "83ed7ebe-48be-4e6e-a293-b81484f85142", "oracle_id": "5f725d51-e133-488c-9ca9-1c7b0523b5bd", "multiverse_ids": [382371], "tcgplayer_id": 83274, "cardmarket_id": 267063, "name": "Split Decision", "lang": "en", "released_at": "2014-06-06", "uri": "https://api.scryfall.com/cards/83ed7ebe-48be-4e6e-a293-b81484f85142", "scryfall_uri": "https://scryfall.com/card/cns/25/split-decision?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/8/3/83ed7ebe-48be-4e6e-a293-b81484f85142.jpg?1562865914", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/3/83ed7ebe-48be-4e6e-a293-b81484f85142.jpg?1562865914", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/8/3/83ed7ebe-48be-4e6e-a293-b81484f85142.jpg?1562865914", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/8/3/83ed7ebe-48be-4e6e-a293-b81484f85142.png?1562865914", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/3/83ed7ebe-48be-4e6e-a293-b81484f85142.jpg?1562865914", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/8/3/83ed7ebe-48be-4e6e-a293-b81484f85142.jpg?1562865914"}, "mana_cost": "{1}{U}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Will of the council \u2014 Choose target instant or sorcery spell. Starting with you, each player votes for denial or duplication. If denial gets more votes, counter the spell. If duplication gets more votes or the vote is tied, copy the spell. You may choose new targets for the copy.", "colors": ["U"], "color_identity": ["U"], "keywords": ["Will of the council"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "7d4ebb59-a50b-45b8-8fff-ab70767819a5", "set": "cns", "set_name": "Conspiracy", "set_type": "draft_innovation", "set_uri": "https://api.scryfall.com/sets/7d4ebb59-a50b-45b8-8fff-ab70767819a5", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Acns&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/cns?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/83ed7ebe-48be-4e6e-a293-b81484f85142/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A5f725d51-e133-488c-9ca9-1c7b0523b5bd&unique=prints", "collector_number": "25", "digital": false, "rarity": "uncommon", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Robbie Trevino", "artist_ids": ["34f236c4-d646-4e48-9723-9df5f507754d"], "illustration_id": "72c25d67-620c-43c5-b656-a10839e325de", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 5380, "prices": {"usd": "2.89", "usd_foil": "8.51", "usd_etched": null, "eur": "0.60", "eur_foil": "3.00", "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=382371", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Split+Decision&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Split+Decision&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Split+Decision"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/83274?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Split+Decision&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Split+Decision&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "29421dd2-70a7-4623-afe0-ca4cb415ec87", "oracle_id": "b8fe20ee-d52d-4494-acf4-202808a2a22d", "multiverse_ids": [80290], "mtgo_id": 21541, "mtgo_foil_id": 21542, "tcgplayer_id": 12184, "cardmarket_id": 12203, "name": "Squelch", "lang": "en", "released_at": "2004-10-01", "uri": "https://api.scryfall.com/cards/29421dd2-70a7-4623-afe0-ca4cb415ec87", "scryfall_uri": "https://scryfall.com/card/chk/92/squelch?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/2/9/29421dd2-70a7-4623-afe0-ca4cb415ec87.jpg?1562758853", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/9/29421dd2-70a7-4623-afe0-ca4cb415ec87.jpg?1562758853", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/2/9/29421dd2-70a7-4623-afe0-ca4cb415ec87.jpg?1562758853", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/2/9/29421dd2-70a7-4623-afe0-ca4cb415ec87.png?1562758853", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/9/29421dd2-70a7-4623-afe0-ca4cb415ec87.jpg?1562758853", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/2/9/29421dd2-70a7-4623-afe0-ca4cb415ec87.jpg?1562758853"}, "mana_cost": "{1}{U}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Counter target activated ability. (Mana abilities can't be targeted.)\nDraw a card.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "6183d21f-a0af-4118-ba58-aca1d8719c01", "set": "chk", "set_name": "Champions of Kamigawa", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/6183d21f-a0af-4118-ba58-aca1d8719c01", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Achk&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/chk?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/29421dd2-70a7-4623-afe0-ca4cb415ec87/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ab8fe20ee-d52d-4494-acf4-202808a2a22d&unique=prints", "collector_number": "92", "digital": false, "rarity": "uncommon", "flavor_text": "Oku-Doku had gone through all the motions: the same akki cursewords, the same ingredients with their horrid stink, the same rude gestures. Yet not a person died.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Matt Cavotta", "artist_ids": ["2e6a0611-9411-4ba4-98e3-c0e18cbf9f83"], "illustration_id": "ffd98a3f-52f6-422f-bdc7-773152655057", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 13948, "penny_rank": 12593, "prices": {"usd": "0.20", "usd_foil": "2.32", "usd_etched": null, "eur": "0.19", "eur_foil": "0.49", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=80290", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Squelch&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Squelch&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Squelch"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/12184?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Squelch&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/21541?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "af13770d-dddb-4b78-9cd3-4a0dc50472f4", "oracle_id": "03e04cee-4727-44fe-96f3-42cbd08beb76", "multiverse_ids": [383403], "mtgo_id": 53518, "mtgo_foil_id": 53519, "tcgplayer_id": 91298, "cardmarket_id": 267857, "name": "Statute of Denial", "lang": "en", "released_at": "2014-07-18", "uri": "https://api.scryfall.com/cards/af13770d-dddb-4b78-9cd3-4a0dc50472f4", "scryfall_uri": "https://scryfall.com/card/m15/79/statute-of-denial?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/a/f/af13770d-dddb-4b78-9cd3-4a0dc50472f4.jpg?1562792750", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/f/af13770d-dddb-4b78-9cd3-4a0dc50472f4.jpg?1562792750", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/a/f/af13770d-dddb-4b78-9cd3-4a0dc50472f4.jpg?1562792750", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/a/f/af13770d-dddb-4b78-9cd3-4a0dc50472f4.png?1562792750", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/f/af13770d-dddb-4b78-9cd3-4a0dc50472f4.jpg?1562792750", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/a/f/af13770d-dddb-4b78-9cd3-4a0dc50472f4.jpg?1562792750"}, "mana_cost": "{2}{U}{U}", "cmc": 4.0, "type_line": "Instant", "oracle_text": "Counter target spell. If you control a blue creature, draw a card, then discard a card.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "6ce49890-3b37-42a5-8932-dbeef1d7b62c", "set": "m15", "set_name": "Magic 2015", "set_type": "core", "set_uri": "https://api.scryfall.com/sets/6ce49890-3b37-42a5-8932-dbeef1d7b62c", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Am15&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/m15?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/af13770d-dddb-4b78-9cd3-4a0dc50472f4/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A03e04cee-4727-44fe-96f3-42cbd08beb76&unique=prints", "collector_number": "79", "digital": false, "rarity": "common", "flavor_text": "\"Pyrotechnic activity of any sort is strictly prohibited. It is irrelevant that today is a holiday.\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Zoltan Boros", "artist_ids": ["1885e6cb-c827-4896-994e-3d0a027d602f"], "illustration_id": "933391f4-8f41-4ff2-89a2-9ee9bef58aed", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 17258, "prices": {"usd": "0.05", "usd_foil": "0.24", "usd_etched": null, "eur": "0.02", "eur_foil": "0.20", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=383403", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Statute+of+Denial&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Statute+of+Denial&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Statute+of+Denial"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/91298?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Statute+of+Denial&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/53518?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "bb40de7c-1905-4615-844b-4abc231fb01e", "oracle_id": "0e71fc56-0332-4e5e-8658-9257cc0d8a1d", "multiverse_ids": [213726], "mtgo_id": 39323, "mtgo_foil_id": 39324, "tcgplayer_id": 39060, "cardmarket_id": 245331, "name": "Steel Sabotage", "lang": "en", "released_at": "2011-02-04", "uri": "https://api.scryfall.com/cards/bb40de7c-1905-4615-844b-4abc231fb01e", "scryfall_uri": "https://scryfall.com/card/mbs/33/steel-sabotage?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/b/b/bb40de7c-1905-4615-844b-4abc231fb01e.jpg?1562614249", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/b/bb40de7c-1905-4615-844b-4abc231fb01e.jpg?1562614249", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/b/b/bb40de7c-1905-4615-844b-4abc231fb01e.jpg?1562614249", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/b/b/bb40de7c-1905-4615-844b-4abc231fb01e.png?1562614249", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/b/bb40de7c-1905-4615-844b-4abc231fb01e.jpg?1562614249", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/b/b/bb40de7c-1905-4615-844b-4abc231fb01e.jpg?1562614249"}, "mana_cost": "{U}", "cmc": 1.0, "type_line": "Instant", "oracle_text": "Choose one \u2014\n\u2022 Counter target artifact spell.\n\u2022 Return target artifact to its owner's hand.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "f46c57e3-9301-4006-a6ca-06f3f65961fb", "set": "mbs", "set_name": "Mirrodin Besieged", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/f46c57e3-9301-4006-a6ca-06f3f65961fb", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ambs&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/mbs?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/bb40de7c-1905-4615-844b-4abc231fb01e/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A0e71fc56-0332-4e5e-8658-9257cc0d8a1d&unique=prints", "collector_number": "33", "digital": false, "rarity": "common", "watermark": "phyrexian", "flavor_text": "\"You are hopelessly obsolete, my brothers. Come and join the Great Work.\"\n\u2014Rhmir, Hand of the Augur", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Daarken", "artist_ids": ["e607a0d4-fc12-4c01-9e3f-501f5269b9cb"], "illustration_id": "69cb7e70-58a9-4be5-8de0-a4081a10d5d1", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 12583, "penny_rank": 12816, "prices": {"usd": "0.07", "usd_foil": "0.33", "usd_etched": null, "eur": "0.10", "eur_foil": "0.15", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=213726", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Steel+Sabotage&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Steel+Sabotage&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Steel+Sabotage"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/39060?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Steel+Sabotage&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/39323?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "2d7643c0-b2db-478f-944e-b27b77bad3eb", "oracle_id": "b3b00911-ece7-4484-bc36-f211ce72b6cc", "multiverse_ids": [46558], "mtgo_id": 18902, "mtgo_foil_id": 18903, "tcgplayer_id": 10878, "cardmarket_id": 1045, "name": "Stifle", "lang": "en", "released_at": "2003-05-26", "uri": "https://api.scryfall.com/cards/2d7643c0-b2db-478f-944e-b27b77bad3eb", "scryfall_uri": "https://scryfall.com/card/scg/52/stifle?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/2/d/2d7643c0-b2db-478f-944e-b27b77bad3eb.jpg?1562527068", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/d/2d7643c0-b2db-478f-944e-b27b77bad3eb.jpg?1562527068", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/2/d/2d7643c0-b2db-478f-944e-b27b77bad3eb.jpg?1562527068", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/2/d/2d7643c0-b2db-478f-944e-b27b77bad3eb.png?1562527068", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/d/2d7643c0-b2db-478f-944e-b27b77bad3eb.jpg?1562527068", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/2/d/2d7643c0-b2db-478f-944e-b27b77bad3eb.jpg?1562527068"}, "mana_cost": "{U}", "cmc": 1.0, "type_line": "Instant", "oracle_text": "Counter target activated or triggered ability. (Mana abilities can't be targeted.)", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "5133c3a1-1412-4ce6-a1f0-73b695966ded", "set": "scg", "set_name": "Scourge", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/5133c3a1-1412-4ce6-a1f0-73b695966ded", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ascg&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/scg?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/2d7643c0-b2db-478f-944e-b27b77bad3eb/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ab3b00911-ece7-4484-bc36-f211ce72b6cc&unique=prints", "collector_number": "52", "digital": false, "rarity": "rare", "flavor_text": "\"If I wanted your opinion, I'd have told you what it was.\"\n\u2014Pemmin, Riptide survivor", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Dany Orizio", "artist_ids": ["fcd5ea36-64e0-4af0-992a-3c68a34a400f"], "illustration_id": "b3adbbdc-9747-4745-95f1-fda5617529f2", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 3621, "prices": {"usd": "13.30", "usd_foil": "232.68", "usd_etched": null, "eur": "8.00", "eur_foil": "104.95", "tix": "2.38"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=46558", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Stifle&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Stifle&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Stifle"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/10878?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Stifle&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/18902?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "ea24228f-da16-46eb-9dcf-a377286b6168", "oracle_id": "b3b00911-ece7-4484-bc36-f211ce72b6cc", "multiverse_ids": [429877], "mtgo_id": 64390, "mtgo_foil_id": 64391, "tcgplayer_id": 129566, "cardmarket_id": 296610, "name": "Stifle", "lang": "en", "released_at": "2017-04-28", "uri": "https://api.scryfall.com/cards/ea24228f-da16-46eb-9dcf-a377286b6168", "scryfall_uri": "https://scryfall.com/card/mp2/18/stifle?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/e/a/ea24228f-da16-46eb-9dcf-a377286b6168.jpg?1562942013", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/a/ea24228f-da16-46eb-9dcf-a377286b6168.jpg?1562942013", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/e/a/ea24228f-da16-46eb-9dcf-a377286b6168.jpg?1562942013", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/e/a/ea24228f-da16-46eb-9dcf-a377286b6168.png?1562942013", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/a/ea24228f-da16-46eb-9dcf-a377286b6168.jpg?1562942013", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/e/a/ea24228f-da16-46eb-9dcf-a377286b6168.jpg?1562942013"}, "mana_cost": "{U}", "cmc": 1.0, "type_line": "Instant", "oracle_text": "Counter target activated or triggered ability. (Mana abilities can't be targeted.)", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": false, "finishes": ["foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "c26402e7-838e-48db-a4b2-7abfc305998a", "set": "mp2", "set_name": "Amonkhet Invocations", "set_type": "masterpiece", "set_uri": "https://api.scryfall.com/sets/c26402e7-838e-48db-a4b2-7abfc305998a", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Amp2&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/mp2?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/ea24228f-da16-46eb-9dcf-a377286b6168/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ab3b00911-ece7-4484-bc36-f211ce72b6cc&unique=prints", "collector_number": "18", "digital": false, "rarity": "mythic", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Cliff Childs", "artist_ids": ["ed6f7e03-20ba-4c73-bdda-4a4928480721"], "illustration_id": "dcda9ca2-bbb9-478a-8f2f-f084a1017699", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 3621, "prices": {"usd": null, "usd_foil": "55.16", "usd_etched": null, "eur": null, "eur_foil": "39.95", "tix": "2.37"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=429877", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Stifle&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Stifle&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Stifle"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/129566?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Stifle&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/64390?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "c6228e16-72d4-4771-9e3f-a83ec856d315", "oracle_id": "b3b00911-ece7-4484-bc36-f211ce72b6cc", "multiverse_ids": [], "tcgplayer_id": 38271, "cardmarket_id": 21037, "name": "Stifle", "lang": "en", "released_at": "2009-01-01", "uri": "https://api.scryfall.com/cards/c6228e16-72d4-4771-9e3f-a83ec856d315", "scryfall_uri": "https://scryfall.com/card/g09/3/stifle?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/c/6/c6228e16-72d4-4771-9e3f-a83ec856d315.jpg?1562636845", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/6/c6228e16-72d4-4771-9e3f-a83ec856d315.jpg?1562636845", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/c/6/c6228e16-72d4-4771-9e3f-a83ec856d315.jpg?1562636845", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/c/6/c6228e16-72d4-4771-9e3f-a83ec856d315.png?1562636845", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/6/c6228e16-72d4-4771-9e3f-a83ec856d315.jpg?1562636845", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/c/6/c6228e16-72d4-4771-9e3f-a83ec856d315.jpg?1562636845"}, "mana_cost": "{U}", "cmc": 1.0, "type_line": "Instant", "oracle_text": "Counter target activated or triggered ability. (Mana abilities can't be targeted.)", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper"], "reserved": false, "foil": true, "nonfoil": false, "finishes": ["foil"], "oversized": false, "promo": true, "reprint": true, "variation": false, "set_id": "cf3a6c7e-f8e1-4c3f-95da-8b4ad094f489", "set": "g09", "set_name": "Judge Gift Cards 2009", "set_type": "promo", "set_uri": "https://api.scryfall.com/sets/cf3a6c7e-f8e1-4c3f-95da-8b4ad094f489", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ag09&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/g09?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/c6228e16-72d4-4771-9e3f-a83ec856d315/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ab3b00911-ece7-4484-bc36-f211ce72b6cc&unique=prints", "collector_number": "3", "digital": false, "rarity": "rare", "watermark": "dci", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Eric Fortune", "artist_ids": ["c5562592-3387-495a-96fb-618a6a424a45"], "illustration_id": "642fc1b5-2de3-4d3e-8bb5-4fb0bc9282f9", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "promo_types": ["judgegift"], "edhrec_rank": 3621, "prices": {"usd": null, "usd_foil": "55.52", "usd_etched": null, "eur": null, "eur_foil": "28.00", "tix": null}, "related_uris": {"tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Stifle&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Stifle&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Stifle"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/38271?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Stifle&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Stifle&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "f2805239-f30a-4eca-a10b-41673daaa287", "oracle_id": "6dd5782d-2d1a-4d6b-8381-e15d0d5be24f", "multiverse_ids": [212703], "mtgo_id": 38353, "mtgo_foil_id": 38354, "tcgplayer_id": 36358, "cardmarket_id": 242607, "name": "Stoic Rebuttal", "lang": "en", "released_at": "2010-10-01", "uri": "https://api.scryfall.com/cards/f2805239-f30a-4eca-a10b-41673daaa287", "scryfall_uri": "https://scryfall.com/card/som/46/stoic-rebuttal?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/f/2/f2805239-f30a-4eca-a10b-41673daaa287.jpg?1562825062", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/2/f2805239-f30a-4eca-a10b-41673daaa287.jpg?1562825062", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/f/2/f2805239-f30a-4eca-a10b-41673daaa287.jpg?1562825062", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/f/2/f2805239-f30a-4eca-a10b-41673daaa287.png?1562825062", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/2/f2805239-f30a-4eca-a10b-41673daaa287.jpg?1562825062", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/f/2/f2805239-f30a-4eca-a10b-41673daaa287.jpg?1562825062"}, "mana_cost": "{1}{U}{U}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Metalcraft \u2014 This spell costs {1} less to cast if you control three or more artifacts.\nCounter target spell.", "colors": ["U"], "color_identity": ["U"], "keywords": ["Metalcraft"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "8f403072-9b22-4e69-8d59-22dc4c97fd8d", "set": "som", "set_name": "Scars of Mirrodin", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/8f403072-9b22-4e69-8d59-22dc4c97fd8d", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Asom&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/som?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/f2805239-f30a-4eca-a10b-41673daaa287/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A6dd5782d-2d1a-4d6b-8381-e15d0d5be24f&unique=prints", "collector_number": "46", "digital": false, "rarity": "common", "watermark": "mirran", "flavor_text": "Obsessed with the pursuit of knowledge above all else, vedalken can appear to be cold and emotionless.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Chris Rahn", "artist_ids": ["7742047e-0f80-4c0f-a530-d07460165e86"], "illustration_id": "568c5dc2-c28b-4278-887e-04188ca122d0", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 4119, "penny_rank": 3653, "prices": {"usd": "0.15", "usd_foil": "0.58", "usd_etched": null, "eur": "0.05", "eur_foil": "0.45", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=212703", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Stoic+Rebuttal&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Stoic+Rebuttal&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Stoic+Rebuttal"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/36358?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Stoic+Rebuttal&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/38353?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "6f8626c4-306f-4e9d-8840-2bb73fe87e87", "oracle_id": "3adc3af3-5086-4d61-b38c-c1dddeaeebe6", "multiverse_ids": [386673], "mtgo_id": 54308, "mtgo_foil_id": 54309, "tcgplayer_id": 93033, "cardmarket_id": 269326, "name": "Stubborn Denial", "lang": "en", "released_at": "2014-09-26", "uri": "https://api.scryfall.com/cards/6f8626c4-306f-4e9d-8840-2bb73fe87e87", "scryfall_uri": "https://scryfall.com/card/ktk/56/stubborn-denial?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/6/f/6f8626c4-306f-4e9d-8840-2bb73fe87e87.jpg?1562788344", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/f/6f8626c4-306f-4e9d-8840-2bb73fe87e87.jpg?1562788344", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/6/f/6f8626c4-306f-4e9d-8840-2bb73fe87e87.jpg?1562788344", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/6/f/6f8626c4-306f-4e9d-8840-2bb73fe87e87.png?1562788344", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/f/6f8626c4-306f-4e9d-8840-2bb73fe87e87.jpg?1562788344", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/6/f/6f8626c4-306f-4e9d-8840-2bb73fe87e87.jpg?1562788344"}, "mana_cost": "{U}", "cmc": 1.0, "type_line": "Instant", "oracle_text": "Counter target noncreature spell unless its controller pays {1}.\nFerocious \u2014 If you control a creature with power 4 or greater, counter that spell instead.", "colors": ["U"], "color_identity": ["U"], "keywords": ["Ferocious"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "6c7a715c-ded9-449e-89b0-c665773e9c3c", "set": "ktk", "set_name": "Khans of Tarkir", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/6c7a715c-ded9-449e-89b0-c665773e9c3c", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aktk&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ktk?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/6f8626c4-306f-4e9d-8840-2bb73fe87e87/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A3adc3af3-5086-4d61-b38c-c1dddeaeebe6&unique=prints", "collector_number": "56", "digital": false, "rarity": "uncommon", "watermark": "temur", "flavor_text": "The Temur have no patience for subtlety.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "James Ryman", "artist_ids": ["3852bbc9-11c0-4fe3-8722-a06ad7e2bcc5"], "illustration_id": "5f5a8aa7-be7d-4b69-b569-f671350cbbf7", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 1804, "penny_rank": 446, "prices": {"usd": "1.01", "usd_foil": "9.48", "usd_etched": null, "eur": "0.96", "eur_foil": "7.50", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=386673", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Stubborn+Denial&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Stubborn+Denial&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Stubborn+Denial"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/93033?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Stubborn+Denial&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/54308?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "5702b757-5be5-4a48-bc73-a87ec4f3193b", "oracle_id": "b081726f-0ed6-4ab0-833e-f510ac6fbeaa", "multiverse_ids": [373721], "mtgo_id": 50556, "mtgo_foil_id": 50557, "tcgplayer_id": 71328, "cardmarket_id": 264217, "name": "Stymied Hopes", "lang": "en", "released_at": "2013-09-27", "uri": "https://api.scryfall.com/cards/5702b757-5be5-4a48-bc73-a87ec4f3193b", "scryfall_uri": "https://scryfall.com/card/ths/64/stymied-hopes?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/5/7/5702b757-5be5-4a48-bc73-a87ec4f3193b.jpg?1562818334", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/7/5702b757-5be5-4a48-bc73-a87ec4f3193b.jpg?1562818334", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/5/7/5702b757-5be5-4a48-bc73-a87ec4f3193b.jpg?1562818334", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/5/7/5702b757-5be5-4a48-bc73-a87ec4f3193b.png?1562818334", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/7/5702b757-5be5-4a48-bc73-a87ec4f3193b.jpg?1562818334", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/5/7/5702b757-5be5-4a48-bc73-a87ec4f3193b.jpg?1562818334"}, "mana_cost": "{1}{U}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Counter target spell unless its controller pays {1}. Scry 1. (Look at the top card of your library. You may put that card on the bottom of your library.)", "colors": ["U"], "color_identity": ["U"], "keywords": ["Scry"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "69093d6f-e25a-41a4-8cf5-688d7f11c0fb", "set": "ths", "set_name": "Theros", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/69093d6f-e25a-41a4-8cf5-688d7f11c0fb", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aths&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ths?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/5702b757-5be5-4a48-bc73-a87ec4f3193b/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ab081726f-0ed6-4ab0-833e-f510ac6fbeaa&unique=prints", "collector_number": "64", "digital": false, "rarity": "common", "flavor_text": "When a god's will is against you, the day never ends well.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Peter Mohrbacher", "artist_ids": ["c8f27311-46a5-4eaf-9b2e-d660ed1db649"], "illustration_id": "a4109f50-2bfa-46d7-8f69-3bafe9d72d0a", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 16522, "penny_rank": 7926, "prices": {"usd": "0.02", "usd_foil": "0.19", "usd_etched": null, "eur": "0.02", "eur_foil": "0.10", "tix": "0.04"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=373721", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Stymied+Hopes&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Stymied+Hopes&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Stymied+Hopes"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/71328?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Stymied+Hopes&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/50556?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "ad1bcb44-a562-4f66-b862-6d0ef3546ab4", "oracle_id": "56148ae7-a9df-4771-8d53-d9ffb815c884", "multiverse_ids": [485397], "mtgo_id": 81375, "arena_id": 71856, "tcgplayer_id": 215698, "cardmarket_id": 470954, "name": "Sublime Epiphany", "lang": "en", "released_at": "2020-07-03", "uri": "https://api.scryfall.com/cards/ad1bcb44-a562-4f66-b862-6d0ef3546ab4", "scryfall_uri": "https://scryfall.com/card/m21/74/sublime-epiphany?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/a/d/ad1bcb44-a562-4f66-b862-6d0ef3546ab4.jpg?1594735795", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/d/ad1bcb44-a562-4f66-b862-6d0ef3546ab4.jpg?1594735795", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/a/d/ad1bcb44-a562-4f66-b862-6d0ef3546ab4.jpg?1594735795", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/a/d/ad1bcb44-a562-4f66-b862-6d0ef3546ab4.png?1594735795", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/d/ad1bcb44-a562-4f66-b862-6d0ef3546ab4.jpg?1594735795", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/a/d/ad1bcb44-a562-4f66-b862-6d0ef3546ab4.jpg?1594735795"}, "mana_cost": "{4}{U}{U}", "cmc": 6.0, "type_line": "Instant", "oracle_text": "Choose one or more \u2014\n\u2022 Counter target spell.\n\u2022 Counter target activated or triggered ability.\n\u2022 Return target nonland permanent to its owner's hand.\n\u2022 Create a token that's a copy of target creature you control.\n\u2022 Target player draws a card.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "all_parts": [{"object": "related_card", "id": "ad1bcb44-a562-4f66-b862-6d0ef3546ab4", "component": "combo_piece", "name": "Sublime Epiphany", "type_line": "Instant", "uri": "https://api.scryfall.com/cards/ad1bcb44-a562-4f66-b862-6d0ef3546ab4"}, {"object": "related_card", "id": "1e6ce56c-ca2e-48e8-a4d9-671cb4de8a9d", "component": "token", "name": "Copy", "type_line": "Token", "uri": "https://api.scryfall.com/cards/1e6ce56c-ca2e-48e8-a4d9-671cb4de8a9d"}], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "bc94aba1-7376-4e02-a12d-3a2efb66ab0f", "set": "m21", "set_name": "Core Set 2021", "set_type": "core", "set_uri": "https://api.scryfall.com/sets/bc94aba1-7376-4e02-a12d-3a2efb66ab0f", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Am21&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/m21?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/ad1bcb44-a562-4f66-b862-6d0ef3546ab4/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A56148ae7-a9df-4771-8d53-d9ffb815c884&unique=prints", "collector_number": "74", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Lindsey Look", "artist_ids": ["95bc132d-37aa-4063-8ed8-04d489e826cd"], "illustration_id": "a1b72b6a-21a1-4e17-a9b9-0f8451775d98", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 755, "penny_rank": 2403, "preview": {"source": "Kai Budde", "source_uri": "https://twitter.com/kaibudde/status/1272154557448159234", "previewed_at": "2020-06-14"}, "prices": {"usd": "3.67", "usd_foil": "4.18", "usd_etched": null, "eur": "2.41", "eur_foil": "3.45", "tix": "0.14"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=485397", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Sublime+Epiphany&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Sublime+Epiphany&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Sublime+Epiphany"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/215698?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Sublime+Epiphany&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/81375?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "c2a70297-2a7b-4a0c-ace5-cd61bfe6dafd", "oracle_id": "2a9d9433-7b0f-45a3-88aa-9fd7e410c224", "multiverse_ids": [27583], "mtgo_id": 16266, "mtgo_foil_id": 16267, "tcgplayer_id": 8034, "cardmarket_id": 3236, "name": "Suffocating Blast", "lang": "en", "released_at": "2001-06-04", "uri": "https://api.scryfall.com/cards/c2a70297-2a7b-4a0c-ace5-cd61bfe6dafd", "scryfall_uri": "https://scryfall.com/card/apc/124/suffocating-blast?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/c/2/c2a70297-2a7b-4a0c-ace5-cd61bfe6dafd.jpg?1562940975", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/2/c2a70297-2a7b-4a0c-ace5-cd61bfe6dafd.jpg?1562940975", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/c/2/c2a70297-2a7b-4a0c-ace5-cd61bfe6dafd.jpg?1562940975", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/c/2/c2a70297-2a7b-4a0c-ace5-cd61bfe6dafd.png?1562940975", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/2/c2a70297-2a7b-4a0c-ace5-cd61bfe6dafd.jpg?1562940975", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/c/2/c2a70297-2a7b-4a0c-ace5-cd61bfe6dafd.jpg?1562940975"}, "mana_cost": "{1}{U}{U}{R}", "cmc": 4.0, "type_line": "Instant", "oracle_text": "Counter target spell and Suffocating Blast deals 3 damage to target creature.", "colors": ["R", "U"], "color_identity": ["R", "U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "e4e00913-d08d-4899-86ea-5cf631e09ce0", "set": "apc", "set_name": "Apocalypse", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/e4e00913-d08d-4899-86ea-5cf631e09ce0", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aapc&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/apc?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/c2a70297-2a7b-4a0c-ace5-cd61bfe6dafd/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A2a9d9433-7b0f-45a3-88aa-9fd7e410c224&unique=prints", "collector_number": "124", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Christopher Moeller", "artist_ids": ["21e10012-06ae-44f2-b38d-3824dd2e73d4"], "illustration_id": "1ec7549a-d1be-41b7-aaaa-cc3620e29627", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 14041, "penny_rank": 7344, "prices": {"usd": "0.29", "usd_foil": "10.12", "usd_etched": null, "eur": "0.29", "eur_foil": "5.00", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=27583", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Suffocating+Blast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Suffocating+Blast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Suffocating+Blast"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/8034?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Suffocating+Blast&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/16266?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "0b75794d-3334-4b4d-9446-0a251dd3bd15", "oracle_id": "f69d65e0-4d8a-4e27-b4dd-dd8c50acb8eb", "multiverse_ids": [414370], "mtgo_id": 61324, "mtgo_foil_id": 61325, "tcgplayer_id": 120234, "cardmarket_id": 291006, "name": "Summary Dismissal", "lang": "en", "released_at": "2016-07-22", "uri": "https://api.scryfall.com/cards/0b75794d-3334-4b4d-9446-0a251dd3bd15", "scryfall_uri": "https://scryfall.com/card/emn/75/summary-dismissal?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/0/b/0b75794d-3334-4b4d-9446-0a251dd3bd15.jpg?1576384222", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/b/0b75794d-3334-4b4d-9446-0a251dd3bd15.jpg?1576384222", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/0/b/0b75794d-3334-4b4d-9446-0a251dd3bd15.jpg?1576384222", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/0/b/0b75794d-3334-4b4d-9446-0a251dd3bd15.png?1576384222", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/b/0b75794d-3334-4b4d-9446-0a251dd3bd15.jpg?1576384222", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/0/b/0b75794d-3334-4b4d-9446-0a251dd3bd15.jpg?1576384222"}, "mana_cost": "{2}{U}{U}", "cmc": 4.0, "type_line": "Instant", "oracle_text": "Exile all other spells and counter all abilities.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "5f0e4093-334f-4439-bbb5-a0affafd0ffc", "set": "emn", "set_name": "Eldritch Moon", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/5f0e4093-334f-4439-bbb5-a0affafd0ffc", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aemn&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/emn?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/0b75794d-3334-4b4d-9446-0a251dd3bd15/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Af69d65e0-4d8a-4e27-b4dd-dd8c50acb8eb&unique=prints", "collector_number": "75", "digital": false, "rarity": "rare", "flavor_text": "\"Let's start fresh, shall we?\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Igor Kieryluk", "artist_ids": ["9c3e9d17-509f-485c-9360-46d897ce716b"], "illustration_id": "1393ae03-a572-480a-8a6c-a2c936762746", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 6471, "penny_rank": 2189, "prices": {"usd": "0.46", "usd_foil": "6.10", "usd_etched": null, "eur": "0.37", "eur_foil": "1.10", "tix": "0.01"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=414370", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Summary+Dismissal&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Summary+Dismissal&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Summary+Dismissal"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/120234?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Summary+Dismissal&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/61324?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "ed82afba-df51-4bd9-853c-d3ef323095a6", "oracle_id": "b9b0c209-e346-45ee-a272-0b53589c21df", "multiverse_ids": [191360], "mtgo_id": 34638, "mtgo_foil_id": 34639, "tcgplayer_id": 33441, "cardmarket_id": 21888, "name": "Summoner's Bane", "lang": "en", "released_at": "2009-10-02", "uri": "https://api.scryfall.com/cards/ed82afba-df51-4bd9-853c-d3ef323095a6", "scryfall_uri": "https://scryfall.com/card/zen/71/summoners-bane?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/e/d/ed82afba-df51-4bd9-853c-d3ef323095a6.jpg?1562618060", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/d/ed82afba-df51-4bd9-853c-d3ef323095a6.jpg?1562618060", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/e/d/ed82afba-df51-4bd9-853c-d3ef323095a6.jpg?1562618060", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/e/d/ed82afba-df51-4bd9-853c-d3ef323095a6.png?1562618060", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/d/ed82afba-df51-4bd9-853c-d3ef323095a6.jpg?1562618060", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/e/d/ed82afba-df51-4bd9-853c-d3ef323095a6.jpg?1562618060"}, "mana_cost": "{2}{U}{U}", "cmc": 4.0, "type_line": "Instant", "oracle_text": "Counter target creature spell. Create a 2/2 blue Illusion creature token.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "all_parts": [{"object": "related_card", "id": "ed82afba-df51-4bd9-853c-d3ef323095a6", "component": "combo_piece", "name": "Summoner's Bane", "type_line": "Instant", "uri": "https://api.scryfall.com/cards/ed82afba-df51-4bd9-853c-d3ef323095a6"}, {"object": "related_card", "id": "5dcbf662-7263-414a-b64b-ccf9aab20faa", "component": "token", "name": "Illusion", "type_line": "Token Creature \u2014 Illusion", "uri": "https://api.scryfall.com/cards/5dcbf662-7263-414a-b64b-ccf9aab20faa"}], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "eb16a2bd-a218-4e4e-8339-4aa1afc0c8d2", "set": "zen", "set_name": "Zendikar", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/eb16a2bd-a218-4e4e-8339-4aa1afc0c8d2", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Azen&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/zen?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/ed82afba-df51-4bd9-853c-d3ef323095a6/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ab9b0c209-e346-45ee-a272-0b53589c21df&unique=prints", "collector_number": "71", "digital": false, "rarity": "uncommon", "flavor_text": "\"I don't need to have the perfect plan. My foe just has to have an imperfect one.\"\n\u2014Jace Beleren", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Cyril Van Der Haegen", "artist_ids": ["90edbd2e-9462-4394-b0b4-02885b4e56b3"], "illustration_id": "6b02e0b1-a26e-4203-8b84-a206c7250463", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 12524, "penny_rank": 7413, "prices": {"usd": "0.08", "usd_foil": "0.43", "usd_etched": null, "eur": "0.10", "eur_foil": "0.47", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=191360", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Summoner%27s+Bane&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Summoner%27s+Bane&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Summoner%27s+Bane"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/33441?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Summoner%27s+Bane&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/34638?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "b677e7cb-7b5d-4993-8f13-881493c498ce", "oracle_id": "75325029-e6f1-44af-88b2-53cc2b7233c0", "multiverse_ids": [430738], "mtgo_id": 64582, "mtgo_foil_id": 64583, "tcgplayer_id": 134891, "cardmarket_id": 298565, "name": "Supreme Will", "lang": "en", "released_at": "2017-07-14", "uri": "https://api.scryfall.com/cards/b677e7cb-7b5d-4993-8f13-881493c498ce", "scryfall_uri": "https://scryfall.com/card/hou/49/supreme-will?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/b/6/b677e7cb-7b5d-4993-8f13-881493c498ce.jpg?1562811958", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/6/b677e7cb-7b5d-4993-8f13-881493c498ce.jpg?1562811958", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/b/6/b677e7cb-7b5d-4993-8f13-881493c498ce.jpg?1562811958", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/b/6/b677e7cb-7b5d-4993-8f13-881493c498ce.png?1562811958", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/6/b677e7cb-7b5d-4993-8f13-881493c498ce.jpg?1562811958", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/b/6/b677e7cb-7b5d-4993-8f13-881493c498ce.jpg?1562811958"}, "mana_cost": "{2}{U}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Choose one \u2014\n\u2022 Counter target spell unless its controller pays {3}.\n\u2022 Look at the top four cards of your library. Put one of them into your hand and the rest on the bottom of your library in any order.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "65ff168b-bb94-47a5-a8f9-4ec6c213e768", "set": "hou", "set_name": "Hour of Devastation", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/65ff168b-bb94-47a5-a8f9-4ec6c213e768", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ahou&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/hou?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/b677e7cb-7b5d-4993-8f13-881493c498ce/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A75325029-e6f1-44af-88b2-53cc2b7233c0&unique=prints", "collector_number": "49", "digital": false, "rarity": "uncommon", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Alayna Danner", "artist_ids": ["bb677b1a-ce51-4888-83d6-5a94de461ff9"], "illustration_id": "41581033-e5f5-4766-84c2-e63243f94905", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 3600, "penny_rank": 484, "prices": {"usd": "0.10", "usd_foil": "0.56", "usd_etched": null, "eur": "0.14", "eur_foil": "0.29", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=430738", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Supreme+Will&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Supreme+Will&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Supreme+Will"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/134891?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Supreme+Will&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/64582?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "efd26041-059b-4a1e-9ce8-c3cfd69a3721", "oracle_id": "8ddfc283-c9b4-41a5-af88-cf0068e986cc", "multiverse_ids": [373701], "mtgo_id": 50440, "mtgo_foil_id": 50441, "tcgplayer_id": 71202, "cardmarket_id": 264159, "name": "Swan Song", "lang": "en", "released_at": "2013-09-27", "uri": "https://api.scryfall.com/cards/efd26041-059b-4a1e-9ce8-c3cfd69a3721", "scryfall_uri": "https://scryfall.com/card/ths/65/swan-song?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/e/f/efd26041-059b-4a1e-9ce8-c3cfd69a3721.jpg?1562837218", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/f/efd26041-059b-4a1e-9ce8-c3cfd69a3721.jpg?1562837218", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/e/f/efd26041-059b-4a1e-9ce8-c3cfd69a3721.jpg?1562837218", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/e/f/efd26041-059b-4a1e-9ce8-c3cfd69a3721.png?1562837218", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/f/efd26041-059b-4a1e-9ce8-c3cfd69a3721.jpg?1562837218", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/e/f/efd26041-059b-4a1e-9ce8-c3cfd69a3721.jpg?1562837218"}, "mana_cost": "{U}", "cmc": 1.0, "type_line": "Instant", "oracle_text": "Counter target enchantment, instant, or sorcery spell. Its controller creates a 2/2 blue Bird creature token with flying.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "all_parts": [{"object": "related_card", "id": "efd26041-059b-4a1e-9ce8-c3cfd69a3721", "component": "combo_piece", "name": "Swan Song", "type_line": "Instant", "uri": "https://api.scryfall.com/cards/efd26041-059b-4a1e-9ce8-c3cfd69a3721"}, {"object": "related_card", "id": "ca72703f-d45b-4c80-98a8-55fad1fcf431", "component": "token", "name": "Bird", "type_line": "Token Creature \u2014 Bird", "uri": "https://api.scryfall.com/cards/ca72703f-d45b-4c80-98a8-55fad1fcf431"}], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "69093d6f-e25a-41a4-8cf5-688d7f11c0fb", "set": "ths", "set_name": "Theros", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/69093d6f-e25a-41a4-8cf5-688d7f11c0fb", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aths&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ths?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/efd26041-059b-4a1e-9ce8-c3cfd69a3721/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A8ddfc283-c9b4-41a5-af88-cf0068e986cc&unique=prints", "collector_number": "65", "digital": false, "rarity": "rare", "flavor_text": "\"The most enlightened mages create beauty from violence.\"\n\u2014Medomai the Ageless", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Peter Mohrbacher", "artist_ids": ["c8f27311-46a5-4eaf-9b2e-d660ed1db649"], "illustration_id": "598ccd90-c47e-4c83-8750-64060c013310", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 73, "penny_rank": 1546, "prices": {"usd": "12.30", "usd_foil": "51.92", "usd_etched": null, "eur": "10.18", "eur_foil": "17.00", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=373701", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Swan+Song&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Swan+Song&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Swan+Song"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/71202?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Swan+Song&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/50440?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "40fc6412-df1c-4bfa-842b-8c3a6f14e19d", "oracle_id": "8ddfc283-c9b4-41a5-af88-cf0068e986cc", "multiverse_ids": [485306], "tcgplayer_id": 214903, "cardmarket_id": 464494, "name": "Swan Song", "lang": "en", "released_at": "2020-06-05", "uri": "https://api.scryfall.com/cards/40fc6412-df1c-4bfa-842b-8c3a6f14e19d", "scryfall_uri": "https://scryfall.com/card/sld/91/swan-song?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/4/0/40fc6412-df1c-4bfa-842b-8c3a6f14e19d.jpg?1599358784", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/0/40fc6412-df1c-4bfa-842b-8c3a6f14e19d.jpg?1599358784", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/4/0/40fc6412-df1c-4bfa-842b-8c3a6f14e19d.jpg?1599358784", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/4/0/40fc6412-df1c-4bfa-842b-8c3a6f14e19d.png?1599358784", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/0/40fc6412-df1c-4bfa-842b-8c3a6f14e19d.jpg?1599358784", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/4/0/40fc6412-df1c-4bfa-842b-8c3a6f14e19d.jpg?1599358784"}, "mana_cost": "{U}", "cmc": 1.0, "type_line": "Instant", "oracle_text": "Counter target enchantment, instant, or sorcery spell. Its controller creates a 2/2 blue Bird creature token with flying.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "all_parts": [{"object": "related_card", "id": "40fc6412-df1c-4bfa-842b-8c3a6f14e19d", "component": "combo_piece", "name": "Swan Song", "type_line": "Instant", "uri": "https://api.scryfall.com/cards/40fc6412-df1c-4bfa-842b-8c3a6f14e19d"}, {"object": "related_card", "id": "ca72703f-d45b-4c80-98a8-55fad1fcf431", "component": "token", "name": "Bird", "type_line": "Token Creature \u2014 Bird", "uri": "https://api.scryfall.com/cards/ca72703f-d45b-4c80-98a8-55fad1fcf431"}], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "4d92a8a7-ccb0-437d-abdc-9d70fc5ed672", "set": "sld", "set_name": "Secret Lair Drop", "set_type": "box", "set_uri": "https://api.scryfall.com/sets/4d92a8a7-ccb0-437d-abdc-9d70fc5ed672", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Asld&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/sld?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/40fc6412-df1c-4bfa-842b-8c3a6f14e19d/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A8ddfc283-c9b4-41a5-af88-cf0068e986cc&unique=prints", "collector_number": "91", "digital": false, "rarity": "rare", "flavor_text": "The gracefulness of their flight makes one wonder whether Nature or, indeed, a rare sort of Magic lifts their wings.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Allen Douglas", "artist_ids": ["e17f248e-6a47-4889-b048-a646739923b0"], "illustration_id": "50b1550c-57a2-4c55-9dac-30f76c9b507b", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "edhrec_rank": 73, "penny_rank": 1546, "preview": {"source": "Nissa Cosplay", "source_uri": "https://twitter.com/NissaCosplay/status/1264937165366140936", "previewed_at": "2020-05-25"}, "prices": {"usd": "17.31", "usd_foil": null, "usd_etched": null, "eur": "19.00", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=485306", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Swan+Song&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Swan+Song&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Swan+Song"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/214903?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Swan+Song&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Swan+Song&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "a1c5f733-e126-4c22-b528-18bdb90b509b", "oracle_id": "ec45caf7-2051-463d-bf70-3dda671d6ce2", "multiverse_ids": [107284], "mtgo_id": 24115, "mtgo_foil_id": 24116, "tcgplayer_id": 13967, "cardmarket_id": 13103, "name": "Swift Silence", "lang": "en", "released_at": "2006-05-05", "uri": "https://api.scryfall.com/cards/a1c5f733-e126-4c22-b528-18bdb90b509b", "scryfall_uri": "https://scryfall.com/card/dis/132/swift-silence?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/a/1/a1c5f733-e126-4c22-b528-18bdb90b509b.jpg?1593273784", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/1/a1c5f733-e126-4c22-b528-18bdb90b509b.jpg?1593273784", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/a/1/a1c5f733-e126-4c22-b528-18bdb90b509b.jpg?1593273784", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/a/1/a1c5f733-e126-4c22-b528-18bdb90b509b.png?1593273784", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/1/a1c5f733-e126-4c22-b528-18bdb90b509b.jpg?1593273784", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/a/1/a1c5f733-e126-4c22-b528-18bdb90b509b.jpg?1593273784"}, "mana_cost": "{2}{W}{U}{U}", "cmc": 5.0, "type_line": "Instant", "oracle_text": "Counter all other spells. Draw a card for each spell countered this way.", "colors": ["U", "W"], "color_identity": ["U", "W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "fdebeda1-b95f-4343-8a94-d125821e6b5c", "set": "dis", "set_name": "Dissension", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/fdebeda1-b95f-4343-8a94-d125821e6b5c", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Adis&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/dis?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/a1c5f733-e126-4c22-b528-18bdb90b509b/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aec45caf7-2051-463d-bf70-3dda671d6ce2&unique=prints", "collector_number": "132", "digital": false, "rarity": "rare", "watermark": "azorius", "flavor_text": "\"This world may not know peace, but in my presence you *will* know quiet.\"\n\u2014Augustin IV", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Greg Staples", "artist_ids": ["93d65564-bf00-447b-8406-e2031f03b6b1"], "illustration_id": "7f2e870e-258f-41b7-9d12-a67b75eb2073", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 15952, "penny_rank": 9932, "prices": {"usd": "0.35", "usd_foil": "1.81", "usd_etched": null, "eur": "0.18", "eur_foil": "1.25", "tix": "0.01"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=107284", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Swift+Silence&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Swift+Silence&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Swift+Silence"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/13967?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Swift+Silence&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/24115?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "08375017-4432-4296-9799-966db145ed7c", "oracle_id": "318f7f70-e374-40ef-8afb-3389c10461d8", "multiverse_ids": [540927], "mtgo_id": 94482, "arena_id": 78875, "tcgplayer_id": 253448, "cardmarket_id": 582225, "name": "Syncopate", "lang": "en", "released_at": "2021-11-19", "uri": "https://api.scryfall.com/cards/08375017-4432-4296-9799-966db145ed7c", "scryfall_uri": "https://scryfall.com/card/vow/83/syncopate?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/0/8/08375017-4432-4296-9799-966db145ed7c.jpg?1643588741", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/8/08375017-4432-4296-9799-966db145ed7c.jpg?1643588741", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/0/8/08375017-4432-4296-9799-966db145ed7c.jpg?1643588741", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/0/8/08375017-4432-4296-9799-966db145ed7c.png?1643588741", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/8/08375017-4432-4296-9799-966db145ed7c.jpg?1643588741", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/0/8/08375017-4432-4296-9799-966db145ed7c.jpg?1643588741"}, "mana_cost": "{X}{U}", "cmc": 1.0, "type_line": "Instant", "oracle_text": "Counter target spell unless its controller pays {X}. If that spell is countered this way, exile it instead of putting it into its owner's graveyard.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "8144b676-569f-4716-8005-bc8f0778f3fa", "set": "vow", "set_name": "Innistrad: Crimson Vow", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/8144b676-569f-4716-8005-bc8f0778f3fa", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Avow&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/vow?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/08375017-4432-4296-9799-966db145ed7c/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A318f7f70-e374-40ef-8afb-3389c10461d8&unique=prints", "collector_number": "83", "digital": false, "rarity": "common", "flavor_text": "\"Fool! Can't you see the tide has turned against you?\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Marta Nael", "artist_ids": ["266ab861-ed64-4ba5-865c-f18758421cc3"], "illustration_id": "46449d1f-b024-4f91-967a-2633eee6f94e", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 4219, "penny_rank": 825, "preview": {"source": "Wizards of the Coast", "source_uri": "https://weibo.com/2643025570/KFqfbdkJn", "previewed_at": "2021-11-01"}, "prices": {"usd": "0.03", "usd_foil": "0.13", "usd_etched": null, "eur": "0.09", "eur_foil": "0.05", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=540927", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Syncopate&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Syncopate&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Syncopate"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/253448?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Syncopate&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/94482?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "f81739a5-35a7-4812-a7af-e1951bf5579c", "oracle_id": "318f7f70-e374-40ef-8afb-3389c10461d8", "multiverse_ids": [442955], "mtgo_id": 67599, "mtgo_foil_id": 67600, "arena_id": 67238, "tcgplayer_id": 164358, "cardmarket_id": 327252, "name": "Syncopate", "lang": "en", "released_at": "2018-04-27", "uri": "https://api.scryfall.com/cards/f81739a5-35a7-4812-a7af-e1951bf5579c", "scryfall_uri": "https://scryfall.com/card/dom/67/syncopate?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/f/8/f81739a5-35a7-4812-a7af-e1951bf5579c.jpg?1617884773", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/8/f81739a5-35a7-4812-a7af-e1951bf5579c.jpg?1617884773", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/f/8/f81739a5-35a7-4812-a7af-e1951bf5579c.jpg?1617884773", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/f/8/f81739a5-35a7-4812-a7af-e1951bf5579c.png?1617884773", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/8/f81739a5-35a7-4812-a7af-e1951bf5579c.jpg?1617884773", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/f/8/f81739a5-35a7-4812-a7af-e1951bf5579c.jpg?1617884773"}, "mana_cost": "{X}{U}", "cmc": 1.0, "type_line": "Instant", "oracle_text": "Counter target spell unless its controller pays {X}. If that spell is countered this way, exile it instead of putting it into its owner's graveyard.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "be1daba3-51c9-4e7e-9212-36e68addc26c", "set": "dom", "set_name": "Dominaria", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/be1daba3-51c9-4e7e-9212-36e68addc26c", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Adom&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/dom?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/f81739a5-35a7-4812-a7af-e1951bf5579c/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A318f7f70-e374-40ef-8afb-3389c10461d8&unique=prints", "collector_number": "67", "digital": false, "rarity": "common", "flavor_text": "The fire spell stuttered and broke. Its pieces reached Teferi out of rhythm, meaningless.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Tommy Arnold", "artist_ids": ["1130bcd0-c8b1-48be-85d7-3ddb2abc6b1a"], "illustration_id": "80d85845-ebdc-45b5-af56-3ad4518807ef", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 4219, "penny_rank": 825, "prices": {"usd": "0.06", "usd_foil": "0.14", "usd_etched": null, "eur": "0.09", "eur_foil": "0.05", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=442955", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Syncopate&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Syncopate&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Syncopate"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/164358?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Syncopate&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/67599?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "ba6f218f-83b0-4b68-a00f-0327cd79f32a", "oracle_id": "318f7f70-e374-40ef-8afb-3389c10461d8", "multiverse_ids": [270369], "mtgo_id": 46391, "mtgo_foil_id": 46392, "tcgplayer_id": 66463, "cardmarket_id": 258309, "name": "Syncopate", "lang": "en", "released_at": "2012-10-05", "uri": "https://api.scryfall.com/cards/ba6f218f-83b0-4b68-a00f-0327cd79f32a", "scryfall_uri": "https://scryfall.com/card/rtr/54/syncopate?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/b/a/ba6f218f-83b0-4b68-a00f-0327cd79f32a.jpg?1562792232", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/a/ba6f218f-83b0-4b68-a00f-0327cd79f32a.jpg?1562792232", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/b/a/ba6f218f-83b0-4b68-a00f-0327cd79f32a.jpg?1562792232", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/b/a/ba6f218f-83b0-4b68-a00f-0327cd79f32a.png?1562792232", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/a/ba6f218f-83b0-4b68-a00f-0327cd79f32a.jpg?1562792232", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/b/a/ba6f218f-83b0-4b68-a00f-0327cd79f32a.jpg?1562792232"}, "mana_cost": "{X}{U}", "cmc": 1.0, "type_line": "Instant", "oracle_text": "Counter target spell unless its controller pays {X}. If that spell is countered this way, exile it instead of putting it into its owner's graveyard.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "80b2374d-c5f1-403e-9772-f6c806fd275e", "set": "rtr", "set_name": "Return to Ravnica", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/80b2374d-c5f1-403e-9772-f6c806fd275e", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Artr&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/rtr?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/ba6f218f-83b0-4b68-a00f-0327cd79f32a/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A318f7f70-e374-40ef-8afb-3389c10461d8&unique=prints", "collector_number": "54", "digital": false, "rarity": "uncommon", "flavor_text": "\"Patience, mage. Killing you now would be too easy.\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Clint Cearley", "artist_ids": ["03b75350-d5a0-4e3a-b3b4-8d4a5554385b"], "illustration_id": "36ae67ff-65d0-4d4a-a027-bc085495f589", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 4219, "penny_rank": 825, "prices": {"usd": "0.10", "usd_foil": "1.25", "usd_etched": null, "eur": "0.05", "eur_foil": "0.45", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=270369", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Syncopate&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Syncopate&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Syncopate"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/66463?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Syncopate&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/46391?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "b7850794-4c85-4844-a461-650cd4eaec93", "oracle_id": "318f7f70-e374-40ef-8afb-3389c10461d8", "multiverse_ids": [29832], "mtgo_id": 16917, "mtgo_foil_id": 16918, "tcgplayer_id": 9378, "cardmarket_id": 2515, "name": "Syncopate", "lang": "en", "released_at": "2001-10-01", "uri": "https://api.scryfall.com/cards/b7850794-4c85-4844-a461-650cd4eaec93", "scryfall_uri": "https://scryfall.com/card/ody/103/syncopate?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/b/7/b7850794-4c85-4844-a461-650cd4eaec93.jpg?1562929140", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/7/b7850794-4c85-4844-a461-650cd4eaec93.jpg?1562929140", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/b/7/b7850794-4c85-4844-a461-650cd4eaec93.jpg?1562929140", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/b/7/b7850794-4c85-4844-a461-650cd4eaec93.png?1562929140", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/7/b7850794-4c85-4844-a461-650cd4eaec93.jpg?1562929140", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/b/7/b7850794-4c85-4844-a461-650cd4eaec93.jpg?1562929140"}, "mana_cost": "{X}{U}", "cmc": 1.0, "type_line": "Instant", "oracle_text": "Counter target spell unless its controller pays {X}. If that spell is countered this way, exile it instead of putting it into its owner's graveyard.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "b0d90d2d-494a-4224-bfa0-36ce5ee281b1", "set": "ody", "set_name": "Odyssey", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/b0d90d2d-494a-4224-bfa0-36ce5ee281b1", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aody&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ody?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/b7850794-4c85-4844-a461-650cd4eaec93/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A318f7f70-e374-40ef-8afb-3389c10461d8&unique=prints", "collector_number": "103", "digital": false, "rarity": "common", "flavor_text": "\"Memories can't simply be washed away. The mind must be scrubbed clean.\"\n\u2014Ambassador Laquatus", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Pete Venters", "artist_ids": ["d54c4a1a-c0c5-4834-84db-125d341f3ad8"], "illustration_id": "0bfc652e-c4ca-4ee4-a5b2-bb8330762eef", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 4219, "penny_rank": 825, "prices": {"usd": "0.14", "usd_foil": "4.37", "usd_etched": null, "eur": "0.05", "eur_foil": "3.50", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=29832", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Syncopate&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Syncopate&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Syncopate"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/9378?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Syncopate&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/16917?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "435a2d31-ac2c-45aa-8369-6c2d6fbba4e4", "oracle_id": "e6e7b5ba-ea10-4f53-8afc-045aa1906c6b", "multiverse_ids": [540928], "mtgo_id": 94484, "arena_id": 78876, "tcgplayer_id": 253734, "cardmarket_id": 583546, "name": "Syphon Essence", "lang": "en", "released_at": "2021-11-19", "uri": "https://api.scryfall.com/cards/435a2d31-ac2c-45aa-8369-6c2d6fbba4e4", "scryfall_uri": "https://scryfall.com/card/vow/84/syphon-essence?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/4/3/435a2d31-ac2c-45aa-8369-6c2d6fbba4e4.jpg?1643588767", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/3/435a2d31-ac2c-45aa-8369-6c2d6fbba4e4.jpg?1643588767", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/4/3/435a2d31-ac2c-45aa-8369-6c2d6fbba4e4.jpg?1643588767", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/4/3/435a2d31-ac2c-45aa-8369-6c2d6fbba4e4.png?1643588767", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/3/435a2d31-ac2c-45aa-8369-6c2d6fbba4e4.jpg?1643588767", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/4/3/435a2d31-ac2c-45aa-8369-6c2d6fbba4e4.jpg?1643588767"}, "mana_cost": "{2}{U}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Counter target creature or planeswalker spell. Create a Blood token. (It's an artifact with \"{1}, {T}, Discard a card, Sacrifice this artifact: Draw a card.\")", "colors": ["U"], "color_identity": ["U"], "keywords": [], "all_parts": [{"object": "related_card", "id": "435a2d31-ac2c-45aa-8369-6c2d6fbba4e4", "component": "combo_piece", "name": "Syphon Essence", "type_line": "Instant", "uri": "https://api.scryfall.com/cards/435a2d31-ac2c-45aa-8369-6c2d6fbba4e4"}, {"object": "related_card", "id": "a6f374bc-cd29-469f-808a-6a6c004ee8aa", "component": "token", "name": "Blood", "type_line": "Token Artifact \u2014 Blood", "uri": "https://api.scryfall.com/cards/a6f374bc-cd29-469f-808a-6a6c004ee8aa"}], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "8144b676-569f-4716-8005-bc8f0778f3fa", "set": "vow", "set_name": "Innistrad: Crimson Vow", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/8144b676-569f-4716-8005-bc8f0778f3fa", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Avow&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/vow?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/435a2d31-ac2c-45aa-8369-6c2d6fbba4e4/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ae6e7b5ba-ea10-4f53-8afc-045aa1906c6b&unique=prints", "collector_number": "84", "digital": false, "rarity": "common", "flavor_text": "The third step in creating a skaab requires draining the body of blood and replacing it with *viscus vitae*, a mixture of angel's blood and lamp oil.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Sean Murray", "artist_ids": ["aa53c0ff-b486-4291-bef3-656343547811"], "illustration_id": "5d49baf8-c403-4449-bc36-e2bca899f6e0", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 15165, "penny_rank": 10329, "preview": {"source": "Wizards of the Coast", "source_uri": "https://magic.wizards.com/en/articles/archive/card-image-gallery/innistrad-crimson-vow", "previewed_at": "2021-11-05"}, "prices": {"usd": "0.01", "usd_foil": "0.04", "usd_etched": null, "eur": "0.02", "eur_foil": "0.05", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=540928", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Syphon+Essence&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Syphon+Essence&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Syphon+Essence"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/253734?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Syphon+Essence&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/94484?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "1421115b-9a98-4ab2-bcb2-7d8899ce12db", "oracle_id": "8ebb6fe0-3ed1-4cc9-bcb1-5317de199efc", "multiverse_ids": [466831], "mtgo_id": 73053, "arena_id": 69862, "tcgplayer_id": 192791, "cardmarket_id": 379272, "name": "Tale's End", "lang": "en", "released_at": "2019-07-12", "uri": "https://api.scryfall.com/cards/1421115b-9a98-4ab2-bcb2-7d8899ce12db", "scryfall_uri": "https://scryfall.com/card/m20/77/tales-end?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/1/4/1421115b-9a98-4ab2-bcb2-7d8899ce12db.jpg?1592516519", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/4/1421115b-9a98-4ab2-bcb2-7d8899ce12db.jpg?1592516519", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/1/4/1421115b-9a98-4ab2-bcb2-7d8899ce12db.jpg?1592516519", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/1/4/1421115b-9a98-4ab2-bcb2-7d8899ce12db.png?1592516519", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/4/1421115b-9a98-4ab2-bcb2-7d8899ce12db.jpg?1592516519", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/1/4/1421115b-9a98-4ab2-bcb2-7d8899ce12db.jpg?1592516519"}, "mana_cost": "{1}{U}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Counter target activated ability, triggered ability, or legendary spell.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "4a787360-9767-4f44-80b1-2405dc5e39c7", "set": "m20", "set_name": "Core Set 2020", "set_type": "core", "set_uri": "https://api.scryfall.com/sets/4a787360-9767-4f44-80b1-2405dc5e39c7", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Am20&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/m20?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/1421115b-9a98-4ab2-bcb2-7d8899ce12db/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A8ebb6fe0-3ed1-4cc9-bcb1-5317de199efc&unique=prints", "collector_number": "77", "digital": false, "rarity": "rare", "flavor_text": "\"When you are gone, will anyone remember your story?\"\n\u2014Unknown", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Randy Vargas", "artist_ids": ["d20672ca-0555-4238-a984-fd171d36b247"], "illustration_id": "2f8152a0-186c-4dcd-b0a7-519dcdca7c2d", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 1781, "preview": {"source": "Jumbo Commander", "source_uri": "https://twitter.com/jumbocommander/status/1143210364638642176", "previewed_at": "2019-06-24"}, "prices": {"usd": "2.13", "usd_foil": "3.93", "usd_etched": null, "eur": "1.87", "eur_foil": "6.50", "tix": "0.06"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=466831", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Tale%27s+End&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Tale%27s+End&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Tale%27s+End"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/192791?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Tale%27s+End&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/73053?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "f3bb2df8-c559-4a34-83b0-d48fbc694cc8", "oracle_id": "b2faa8b6-e433-4171-9774-9170484530c4", "multiverse_ids": [23015], "mtgo_id": 14627, "mtgo_foil_id": 14628, "tcgplayer_id": 7696, "cardmarket_id": 3688, "name": "Teferi's Response", "lang": "en", "released_at": "2000-10-02", "uri": "https://api.scryfall.com/cards/f3bb2df8-c559-4a34-83b0-d48fbc694cc8", "scryfall_uri": "https://scryfall.com/card/inv/78/teferis-response?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/f/3/f3bb2df8-c559-4a34-83b0-d48fbc694cc8.jpg?1562944007", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/3/f3bb2df8-c559-4a34-83b0-d48fbc694cc8.jpg?1562944007", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/f/3/f3bb2df8-c559-4a34-83b0-d48fbc694cc8.jpg?1562944007", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/f/3/f3bb2df8-c559-4a34-83b0-d48fbc694cc8.png?1562944007", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/3/f3bb2df8-c559-4a34-83b0-d48fbc694cc8.jpg?1562944007", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/f/3/f3bb2df8-c559-4a34-83b0-d48fbc694cc8.jpg?1562944007"}, "mana_cost": "{1}{U}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Counter target spell or ability an opponent controls that targets a land you control. If a permanent's ability is countered this way, destroy that permanent.\nDraw two cards.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "b9ae5e02-7726-47ca-b5e4-5ec402b41cd1", "set": "inv", "set_name": "Invasion", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/b9ae5e02-7726-47ca-b5e4-5ec402b41cd1", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ainv&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/inv?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/f3bb2df8-c559-4a34-83b0-d48fbc694cc8/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ab2faa8b6-e433-4171-9774-9170484530c4&unique=prints", "collector_number": "78", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Scott Bailey", "artist_ids": ["0ebb52bf-cf87-4c03-b975-2d9df7095334"], "illustration_id": "5aaaa318-2f03-46fe-8a52-9a7e8a919b11", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 11842, "prices": {"usd": "1.65", "usd_foil": "30.48", "usd_etched": null, "eur": "0.89", "eur_foil": "35.49", "tix": "0.52"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=23015", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Teferi%27s+Response&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Teferi%27s+Response&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Teferi%27s+Response"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/7696?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Teferi%27s+Response&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/14627?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "e2ee3e36-a849-42b0-b84b-027a08427c35", "oracle_id": "418bc6c8-972b-4f07-aac0-8d003b9c1b17", "multiverse_ids": [386695], "mtgo_id": 54132, "mtgo_foil_id": 54133, "tcgplayer_id": 92970, "cardmarket_id": 269343, "name": "Temur Charm", "lang": "en", "released_at": "2014-09-26", "uri": "https://api.scryfall.com/cards/e2ee3e36-a849-42b0-b84b-027a08427c35", "scryfall_uri": "https://scryfall.com/card/ktk/208/temur-charm?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/e/2/e2ee3e36-a849-42b0-b84b-027a08427c35.jpg?1562794960", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/2/e2ee3e36-a849-42b0-b84b-027a08427c35.jpg?1562794960", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/e/2/e2ee3e36-a849-42b0-b84b-027a08427c35.jpg?1562794960", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/e/2/e2ee3e36-a849-42b0-b84b-027a08427c35.png?1562794960", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/2/e2ee3e36-a849-42b0-b84b-027a08427c35.jpg?1562794960", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/e/2/e2ee3e36-a849-42b0-b84b-027a08427c35.jpg?1562794960"}, "mana_cost": "{G}{U}{R}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Choose one \u2014\n\u2022 Target creature you control gets +1/+1 until end of turn. It fights target creature you don't control.\n\u2022 Counter target spell unless its controller pays {3}.\n\u2022 Creatures with power 3 or less can't block this turn.", "colors": ["G", "R", "U"], "color_identity": ["G", "R", "U"], "keywords": ["Fight"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "6c7a715c-ded9-449e-89b0-c665773e9c3c", "set": "ktk", "set_name": "Khans of Tarkir", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/6c7a715c-ded9-449e-89b0-c665773e9c3c", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aktk&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ktk?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/e2ee3e36-a849-42b0-b84b-027a08427c35/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A418bc6c8-972b-4f07-aac0-8d003b9c1b17&unique=prints", "collector_number": "208", "digital": false, "rarity": "uncommon", "watermark": "temur", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Mathias Kollros", "artist_ids": ["2ae0dd12-047c-4efb-80d7-bccc3bac5fba"], "illustration_id": "fafd8ece-5ff2-46a4-a87d-2aa08c8e72e2", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 5336, "penny_rank": 4874, "prices": {"usd": "0.08", "usd_foil": "0.57", "usd_etched": null, "eur": "0.10", "eur_foil": "0.40", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=386695", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Temur+Charm&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Temur+Charm&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Temur+Charm"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/92970?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Temur+Charm&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/54132?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "6e2b6236-b40c-430c-98b0-7940b942657a", "oracle_id": "d808262d-43ca-46f8-ab8b-b584773f9c58", "multiverse_ids": [513536], "mtgo_id": 88595, "arena_id": 76452, "tcgplayer_id": 235929, "cardmarket_id": 558019, "name": "Test of Talents", "lang": "en", "released_at": "2021-04-23", "uri": "https://api.scryfall.com/cards/6e2b6236-b40c-430c-98b0-7940b942657a", "scryfall_uri": "https://scryfall.com/card/stx/59/test-of-talents?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/6/e/6e2b6236-b40c-430c-98b0-7940b942657a.jpg?1624590572", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/e/6e2b6236-b40c-430c-98b0-7940b942657a.jpg?1624590572", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/6/e/6e2b6236-b40c-430c-98b0-7940b942657a.jpg?1624590572", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/6/e/6e2b6236-b40c-430c-98b0-7940b942657a.png?1624590572", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/e/6e2b6236-b40c-430c-98b0-7940b942657a.jpg?1624590572", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/6/e/6e2b6236-b40c-430c-98b0-7940b942657a.jpg?1624590572"}, "mana_cost": "{1}{U}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Counter target instant or sorcery spell. Search its controller's graveyard, hand, and library for any number of cards with the same name as that spell and exile them. That player shuffles, then draws a card for each card exiled from their hand this way.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "541c3c28-8747-40e5-a231-8e8f33234859", "set": "stx", "set_name": "Strixhaven: School of Mages", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/541c3c28-8747-40e5-a231-8e8f33234859", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Astx&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/stx?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/6e2b6236-b40c-430c-98b0-7940b942657a/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ad808262d-43ca-46f8-ab8b-b584773f9c58&unique=prints", "collector_number": "59", "digital": false, "rarity": "uncommon", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Lie Setiawan", "artist_ids": ["6f771d3f-310e-4aa4-841f-5ba4ba9f025a"], "illustration_id": "2fbde711-2306-4587-8fed-667a7b8e9e56", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 11304, "penny_rank": 944, "prices": {"usd": "0.33", "usd_foil": "0.83", "usd_etched": null, "eur": "0.33", "eur_foil": "0.99", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=513536", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Test+of+Talents&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Test+of+Talents&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Test+of+Talents"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/235929?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Test+of+Talents&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/88595?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "2c1241d0-20d4-4eab-970d-74e476f023b4", "oracle_id": "f7c89d03-606e-4284-90dd-64b1fbebfb4d", "multiverse_ids": [476323], "mtgo_id": 79268, "arena_id": 70583, "tcgplayer_id": 206962, "cardmarket_id": 431409, "name": "Thassa's Intervention", "lang": "en", "released_at": "2020-01-24", "uri": "https://api.scryfall.com/cards/2c1241d0-20d4-4eab-970d-74e476f023b4", "scryfall_uri": "https://scryfall.com/card/thb/72/thassas-intervention?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/2/c/2c1241d0-20d4-4eab-970d-74e476f023b4.jpg?1584279765", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/c/2c1241d0-20d4-4eab-970d-74e476f023b4.jpg?1584279765", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/2/c/2c1241d0-20d4-4eab-970d-74e476f023b4.jpg?1584279765", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/2/c/2c1241d0-20d4-4eab-970d-74e476f023b4.png?1584279765", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/c/2c1241d0-20d4-4eab-970d-74e476f023b4.jpg?1584279765", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/2/c/2c1241d0-20d4-4eab-970d-74e476f023b4.jpg?1584279765"}, "mana_cost": "{X}{U}{U}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Choose one \u2014\n\u2022 Look at the top X cards of your library. Put up to two of them into your hand and the rest on the bottom of your library in a random order.\n\u2022 Counter target spell unless its controller pays twice {X}.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "5f23a78d-cda1-462a-8be3-a62b40c34913", "set": "thb", "set_name": "Theros Beyond Death", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/5f23a78d-cda1-462a-8be3-a62b40c34913", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Athb&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/thb?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/2c1241d0-20d4-4eab-970d-74e476f023b4/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Af7c89d03-606e-4284-90dd-64b1fbebfb4d&unique=prints", "collector_number": "72", "digital": false, "rarity": "rare", "flavor_text": "\"I bring a flood that nothing can withstand.\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Zack Stella", "artist_ids": ["17bc7f55-958b-43f4-bb40-09746d05b3f9"], "illustration_id": "cc8de088-6e93-42b4-b768-01a6d8dac630", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 2719, "penny_rank": 564, "preview": {"source": "Matias Leveratto", "source_uri": "https://twitter.com/levunga/status/1214924197773893632", "previewed_at": "2020-01-09"}, "prices": {"usd": "0.19", "usd_foil": "0.23", "usd_etched": null, "eur": "0.10", "eur_foil": "0.35", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=476323", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Thassa%27s+Intervention&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Thassa%27s+Intervention&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Thassa%27s+Intervention"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/206962?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Thassa%27s+Intervention&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/79268?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "816a6ff7-cede-4346-b3e6-aee33aefac3a", "oracle_id": "bc5d9899-1a1c-4779-b9f0-b00f2c233699", "multiverse_ids": [378426], "mtgo_id": 51671, "mtgo_foil_id": 51672, "tcgplayer_id": 78842, "cardmarket_id": 265608, "name": "Thassa's Rebuff", "lang": "en", "released_at": "2014-02-07", "uri": "https://api.scryfall.com/cards/816a6ff7-cede-4346-b3e6-aee33aefac3a", "scryfall_uri": "https://scryfall.com/card/bng/54/thassas-rebuff?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/8/1/816a6ff7-cede-4346-b3e6-aee33aefac3a.jpg?1593091807", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/1/816a6ff7-cede-4346-b3e6-aee33aefac3a.jpg?1593091807", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/8/1/816a6ff7-cede-4346-b3e6-aee33aefac3a.jpg?1593091807", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/8/1/816a6ff7-cede-4346-b3e6-aee33aefac3a.png?1593091807", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/1/816a6ff7-cede-4346-b3e6-aee33aefac3a.jpg?1593091807", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/8/1/816a6ff7-cede-4346-b3e6-aee33aefac3a.jpg?1593091807"}, "mana_cost": "{1}{U}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Counter target spell unless its controller pays {X}, where X is your devotion to blue. (Each {U} in the mana costs of permanents you control counts toward your devotion to blue.)", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "50a80fe4-a757-408f-ad23-52c5cc5f45cc", "set": "bng", "set_name": "Born of the Gods", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/50a80fe4-a757-408f-ad23-52c5cc5f45cc", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Abng&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/bng?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/816a6ff7-cede-4346-b3e6-aee33aefac3a/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Abc5d9899-1a1c-4779-b9f0-b00f2c233699&unique=prints", "collector_number": "54", "digital": false, "rarity": "uncommon", "flavor_text": "To resist Thassa is to deny the rising tide.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Lucas Graciano", "artist_ids": ["ce98f39c-7cdd-47e6-a520-6c50443bb4c2"], "illustration_id": "355ea466-1af8-4f17-a9ae-4a4aa50488c1", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 9840, "penny_rank": 3746, "prices": {"usd": "0.14", "usd_foil": "0.51", "usd_etched": null, "eur": "0.20", "eur_foil": "0.60", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=378426", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Thassa%27s+Rebuff&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Thassa%27s+Rebuff&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Thassa%27s+Rebuff"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/78842?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Thassa%27s+Rebuff&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/51671?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "7919cf41-67bb-4dc4-90de-cf3fa2096c2e", "oracle_id": "f31bb2b4-061c-4ba6-9f91-374f40fe6b05", "multiverse_ids": [50433], "mtgo_id": 20969, "mtgo_foil_id": 20970, "tcgplayer_id": 12200, "cardmarket_id": 12219, "name": "Thoughtbind", "lang": "en", "released_at": "2004-10-01", "uri": "https://api.scryfall.com/cards/7919cf41-67bb-4dc4-90de-cf3fa2096c2e", "scryfall_uri": "https://scryfall.com/card/chk/96/thoughtbind?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/7/9/7919cf41-67bb-4dc4-90de-cf3fa2096c2e.jpg?1593860622", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/9/7919cf41-67bb-4dc4-90de-cf3fa2096c2e.jpg?1593860622", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/7/9/7919cf41-67bb-4dc4-90de-cf3fa2096c2e.jpg?1593860622", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/7/9/7919cf41-67bb-4dc4-90de-cf3fa2096c2e.png?1593860622", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/9/7919cf41-67bb-4dc4-90de-cf3fa2096c2e.jpg?1593860622", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/7/9/7919cf41-67bb-4dc4-90de-cf3fa2096c2e.jpg?1593860622"}, "mana_cost": "{2}{U}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Counter target spell with mana value 4 or less.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "6183d21f-a0af-4118-ba58-aca1d8719c01", "set": "chk", "set_name": "Champions of Kamigawa", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/6183d21f-a0af-4118-ba58-aca1d8719c01", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Achk&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/chk?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/7919cf41-67bb-4dc4-90de-cf3fa2096c2e/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Af31bb2b4-061c-4ba6-9f91-374f40fe6b05&unique=prints", "collector_number": "96", "digital": false, "rarity": "common", "flavor_text": "\"As the rest of the mortal world waged war, Lady Azami and her students invaded tomes of knowledge. Their search yielded spells critical in the fight.\"\n\u2014*Observations of the Kami War*", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Rob Alexander", "artist_ids": ["35906871-6c78-4ab2-9ed1-e6792c8efb74"], "illustration_id": "16778d3a-c63f-4737-8aec-810987367f54", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 20877, "penny_rank": 2135, "prices": {"usd": "0.07", "usd_foil": "0.14", "usd_etched": null, "eur": "0.05", "eur_foil": "0.10", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=50433", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Thoughtbind&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Thoughtbind&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Thoughtbind"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/12200?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Thoughtbind&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/20969?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "948b569b-6341-418b-99b5-f79dfb3fe8dd", "oracle_id": "6a265af8-448d-402b-b728-b7ed64521842", "multiverse_ids": [457201], "mtgo_id": 71114, "arena_id": 69185, "tcgplayer_id": 183407, "cardmarket_id": 368561, "name": "Thought Collapse", "lang": "en", "released_at": "2019-01-25", "uri": "https://api.scryfall.com/cards/948b569b-6341-418b-99b5-f79dfb3fe8dd", "scryfall_uri": "https://scryfall.com/card/rna/57/thought-collapse?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/9/4/948b569b-6341-418b-99b5-f79dfb3fe8dd.jpg?1584830401", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/4/948b569b-6341-418b-99b5-f79dfb3fe8dd.jpg?1584830401", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/9/4/948b569b-6341-418b-99b5-f79dfb3fe8dd.jpg?1584830401", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/9/4/948b569b-6341-418b-99b5-f79dfb3fe8dd.png?1584830401", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/4/948b569b-6341-418b-99b5-f79dfb3fe8dd.jpg?1584830401", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/9/4/948b569b-6341-418b-99b5-f79dfb3fe8dd.jpg?1584830401"}, "mana_cost": "{1}{U}{U}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Counter target spell. Its controller mills three cards.", "colors": ["U"], "color_identity": ["U"], "keywords": ["Mill"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "97a7fd84-8d89-45a3-b48b-c951f6a3f9f1", "set": "rna", "set_name": "Ravnica Allegiance", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/97a7fd84-8d89-45a3-b48b-c951f6a3f9f1", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Arna&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/rna?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/948b569b-6341-418b-99b5-f79dfb3fe8dd/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A6a265af8-448d-402b-b728-b7ed64521842&unique=prints", "collector_number": "57", "digital": false, "rarity": "common", "flavor_text": "\"I can think of no greater punishment than answering your question in full.\"\n\u2014Lazav", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Sara Winters", "artist_ids": ["56be33dc-a2da-40e9-a4f7-94077dcea31e"], "illustration_id": "c07004ab-df45-4bb0-a140-e0c56193e660", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 3425, "penny_rank": 8143, "prices": {"usd": "0.16", "usd_foil": "1.26", "usd_etched": null, "eur": "0.12", "eur_foil": "0.10", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=457201", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Thought+Collapse&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Thought+Collapse&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Thought+Collapse"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/183407?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Thought+Collapse&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/71114?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "c12a0717-e9ea-4be3-a29f-179671ed4489", "oracle_id": "615a149a-2869-4b18-bbbe-9ec1825049d7", "multiverse_ids": [19811], "mtgo_id": 13435, "mtgo_foil_id": 13436, "tcgplayer_id": 6735, "cardmarket_id": 11481, "name": "Thwart", "lang": "en", "released_at": "1999-10-04", "uri": "https://api.scryfall.com/cards/c12a0717-e9ea-4be3-a29f-179671ed4489", "scryfall_uri": "https://scryfall.com/card/mmq/108/thwart?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/c/1/c12a0717-e9ea-4be3-a29f-179671ed4489.jpg?1562383015", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/1/c12a0717-e9ea-4be3-a29f-179671ed4489.jpg?1562383015", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/c/1/c12a0717-e9ea-4be3-a29f-179671ed4489.jpg?1562383015", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/c/1/c12a0717-e9ea-4be3-a29f-179671ed4489.png?1562383015", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/1/c12a0717-e9ea-4be3-a29f-179671ed4489.jpg?1562383015", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/c/1/c12a0717-e9ea-4be3-a29f-179671ed4489.jpg?1562383015"}, "mana_cost": "{2}{U}{U}", "cmc": 4.0, "type_line": "Instant", "oracle_text": "You may return three Islands you control to their owner's hand rather than pay this spell's mana cost.\nCounter target spell.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "385e11a4-492b-4d07-b4a6-a1409ef829b8", "set": "mmq", "set_name": "Mercadian Masques", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/385e11a4-492b-4d07-b4a6-a1409ef829b8", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ammq&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/mmq?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/c12a0717-e9ea-4be3-a29f-179671ed4489/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A615a149a-2869-4b18-bbbe-9ec1825049d7&unique=prints", "collector_number": "108", "digital": false, "rarity": "uncommon", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Christopher Moeller", "artist_ids": ["21e10012-06ae-44f2-b38d-3824dd2e73d4"], "illustration_id": "627592ba-6a14-4606-8937-4f1aa96901fa", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 9829, "prices": {"usd": "1.31", "usd_foil": "34.17", "usd_etched": null, "eur": "1.45", "eur_foil": "8.00", "tix": "1.06"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=19811", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Thwart&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Thwart&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Thwart"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/6735?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Thwart&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/13435?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "dd921e27-3e08-438c-bec2-723226d35175", "oracle_id": "6623cb85-fb1e-4561-8b21-0977c25096c2", "multiverse_ids": [503765], "mtgo_id": 87641, "arena_id": 75196, "tcgplayer_id": 230206, "cardmarket_id": 530552, "name": "Tibalt's Trickery", "lang": "en", "released_at": "2021-02-05", "uri": "https://api.scryfall.com/cards/dd921e27-3e08-438c-bec2-723226d35175", "scryfall_uri": "https://scryfall.com/card/khm/153/tibalts-trickery?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/d/d/dd921e27-3e08-438c-bec2-723226d35175.jpg?1652278784", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/d/dd921e27-3e08-438c-bec2-723226d35175.jpg?1652278784", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/d/d/dd921e27-3e08-438c-bec2-723226d35175.jpg?1652278784", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/d/d/dd921e27-3e08-438c-bec2-723226d35175.png?1652278784", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/d/dd921e27-3e08-438c-bec2-723226d35175.jpg?1652278784", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/d/d/dd921e27-3e08-438c-bec2-723226d35175.jpg?1652278784"}, "mana_cost": "{1}{R}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Counter target spell. Choose 1, 2, or 3 at random. Its controller mills that many cards, then exiles cards from the top of their library until they exile a nonland card with a different name than that spell. They may cast that card without paying its mana cost. Then they put the exiled cards on the bottom of their library in a random order.", "colors": ["R"], "color_identity": ["R"], "keywords": ["Mill"], "legalities": {"standard": "legal", "future": "legal", "historic": "banned", "gladiator": "legal", "pioneer": "legal", "explorer": "banned", "modern": "banned", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "43057fad-b1c1-437f-bc48-0045bce6d8c9", "set": "khm", "set_name": "Kaldheim", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/43057fad-b1c1-437f-bc48-0045bce6d8c9", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Akhm&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/khm?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/dd921e27-3e08-438c-bec2-723226d35175/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A6623cb85-fb1e-4561-8b21-0977c25096c2&unique=prints", "collector_number": "153", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Anna Podedworna", "artist_ids": ["1874cb2c-f690-475f-a217-c14f11166758"], "illustration_id": "4e127c34-5626-4489-922f-405ec9502498", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 460, "penny_rank": 1672, "preview": {"source": "Wizards of the Coast", "source_uri": "https://magic.wizards.com/en/articles/archive/card-image-gallery/kaldheim", "previewed_at": "2021-01-11"}, "prices": {"usd": "2.65", "usd_foil": "2.69", "usd_etched": null, "eur": "1.27", "eur_foil": "2.69", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=503765", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Tibalt%27s+Trickery&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Tibalt%27s+Trickery&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Tibalt%27s+Trickery"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/230206?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Tibalt%27s+Trickery&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/87641?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "f968c5e9-12a8-4542-90b4-84e0238fa375", "oracle_id": "55bc6a7e-2356-48f0-a93a-8bf19044ee4b", "multiverse_ids": [78184], "mtgo_id": 21191, "mtgo_foil_id": 21192, "tcgplayer_id": 12205, "cardmarket_id": 12224, "name": "Time Stop", "lang": "en", "released_at": "2004-10-01", "uri": "https://api.scryfall.com/cards/f968c5e9-12a8-4542-90b4-84e0238fa375", "scryfall_uri": "https://scryfall.com/card/chk/97/time-stop?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/f/9/f968c5e9-12a8-4542-90b4-84e0238fa375.jpg?1562766084", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/9/f968c5e9-12a8-4542-90b4-84e0238fa375.jpg?1562766084", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/f/9/f968c5e9-12a8-4542-90b4-84e0238fa375.jpg?1562766084", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/f/9/f968c5e9-12a8-4542-90b4-84e0238fa375.png?1562766084", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/9/f968c5e9-12a8-4542-90b4-84e0238fa375.jpg?1562766084", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/f/9/f968c5e9-12a8-4542-90b4-84e0238fa375.jpg?1562766084"}, "mana_cost": "{4}{U}{U}", "cmc": 6.0, "type_line": "Instant", "oracle_text": "End the turn. (Exile all spells and abilities from the stack, including this card. The player whose turn it is discards down to their maximum hand size. Damage wears off, and \"this turn\" and \"until end of turn\" effects end.)", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "6183d21f-a0af-4118-ba58-aca1d8719c01", "set": "chk", "set_name": "Champions of Kamigawa", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/6183d21f-a0af-4118-ba58-aca1d8719c01", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Achk&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/chk?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/f968c5e9-12a8-4542-90b4-84e0238fa375/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A55bc6a7e-2356-48f0-a93a-8bf19044ee4b&unique=prints", "collector_number": "97", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Scott M. Fischer", "artist_ids": ["23b0cf43-3e43-44c6-8329-96446eca5bce"], "illustration_id": "4e7bb8df-ec20-4829-8b1a-b24f51aa6c91", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 7723, "penny_rank": 8708, "prices": {"usd": "4.53", "usd_foil": "19.98", "usd_etched": null, "eur": "1.25", "eur_foil": "9.00", "tix": "0.01"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=78184", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Time+Stop&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Time+Stop&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Time+Stop"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/12205?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Time+Stop&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/21191?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "c063b2b8-5243-43a8-8cb0-927116003bda", "oracle_id": "d64adb26-62c4-44aa-bc2e-d05bd1cf657b", "multiverse_ids": [], "tcgplayer_id": 93373, "cardmarket_id": 269708, "name": "Trap Essence", "lang": "en", "released_at": "2014-09-26", "uri": "https://api.scryfall.com/cards/c063b2b8-5243-43a8-8cb0-927116003bda", "scryfall_uri": "https://scryfall.com/card/pktk/209s/trap-essence?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/c/0/c063b2b8-5243-43a8-8cb0-927116003bda.jpg?1562701652", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/0/c063b2b8-5243-43a8-8cb0-927116003bda.jpg?1562701652", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/c/0/c063b2b8-5243-43a8-8cb0-927116003bda.jpg?1562701652", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/c/0/c063b2b8-5243-43a8-8cb0-927116003bda.png?1562701652", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/0/c063b2b8-5243-43a8-8cb0-927116003bda.jpg?1562701652", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/c/0/c063b2b8-5243-43a8-8cb0-927116003bda.jpg?1562701652"}, "mana_cost": "{G}{U}{R}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Counter target creature spell. Put two +1/+1 counters on up to one target creature.", "colors": ["G", "R", "U"], "color_identity": ["G", "R", "U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": true, "nonfoil": false, "finishes": ["foil"], "oversized": false, "promo": true, "reprint": true, "variation": false, "set_id": "95318a25-1983-40ae-b315-140160078e3c", "set": "pktk", "set_name": "Khans of Tarkir Promos", "set_type": "promo", "set_uri": "https://api.scryfall.com/sets/95318a25-1983-40ae-b315-140160078e3c", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Apktk&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/pktk?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/c063b2b8-5243-43a8-8cb0-927116003bda/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ad64adb26-62c4-44aa-bc2e-d05bd1cf657b&unique=prints", "collector_number": "209s", "digital": false, "rarity": "rare", "watermark": "temur", "flavor_text": "\"Meat sustains the body. The spirit requires different sustenance.\"\n\u2014Arel the Whisperer", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Raymond Swanland", "artist_ids": ["e956bacc-077d-4c12-b6bc-ba798b718af9"], "illustration_id": "def21259-93b9-4bc8-a804-66325f1ed7f6", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "promo_types": ["setpromo", "datestamped", "prerelease"], "edhrec_rank": 9673, "penny_rank": 4257, "prices": {"usd": null, "usd_foil": "0.50", "usd_etched": null, "eur": null, "eur_foil": "1.00", "tix": null}, "related_uris": {"tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Trap+Essence&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Trap+Essence&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Trap+Essence"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/93373?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Trap+Essence&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Trap+Essence&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "f1e8b03d-9265-4699-b626-5efa73292d43", "oracle_id": "a30724f0-d174-408e-8baf-4bba3cbc45b5", "multiverse_ids": [179508], "mtgo_id": 31669, "mtgo_foil_id": 31670, "tcgplayer_id": 28617, "cardmarket_id": 20679, "name": "Traumatic Visions", "lang": "en", "released_at": "2009-02-06", "uri": "https://api.scryfall.com/cards/f1e8b03d-9265-4699-b626-5efa73292d43", "scryfall_uri": "https://scryfall.com/card/con/36/traumatic-visions?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/f/1/f1e8b03d-9265-4699-b626-5efa73292d43.jpg?1562804612", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/1/f1e8b03d-9265-4699-b626-5efa73292d43.jpg?1562804612", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/f/1/f1e8b03d-9265-4699-b626-5efa73292d43.jpg?1562804612", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/f/1/f1e8b03d-9265-4699-b626-5efa73292d43.png?1562804612", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/1/f1e8b03d-9265-4699-b626-5efa73292d43.jpg?1562804612", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/f/1/f1e8b03d-9265-4699-b626-5efa73292d43.jpg?1562804612"}, "mana_cost": "{3}{U}{U}", "cmc": 5.0, "type_line": "Instant", "oracle_text": "Counter target spell.\nBasic landcycling {1}{U} ({1}{U}, Discard this card: Search your library for a basic land card, reveal it, put it into your hand, then shuffle.)", "colors": ["U"], "color_identity": ["U"], "keywords": ["Landcycling", "Basic landcycling", "Typecycling"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "76b2db58-904c-4e49-8580-9f62f7b3cca4", "set": "con", "set_name": "Conflux", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/76b2db58-904c-4e49-8580-9f62f7b3cca4", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Acon&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/con?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/f1e8b03d-9265-4699-b626-5efa73292d43/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aa30724f0-d174-408e-8baf-4bba3cbc45b5&unique=prints", "collector_number": "36", "digital": false, "rarity": "common", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Cyril Van Der Haegen", "artist_ids": ["90edbd2e-9462-4394-b0b4-02885b4e56b3"], "illustration_id": "bf1a41ea-020f-4128-b96a-fe527e397949", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 10771, "penny_rank": 5807, "prices": {"usd": "0.10", "usd_foil": "0.30", "usd_etched": null, "eur": "0.02", "eur_foil": "0.10", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=179508", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Traumatic+Visions&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Traumatic+Visions&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Traumatic+Visions"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/28617?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Traumatic+Visions&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/31669?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "f2e58ff2-dea3-42b3-8c22-3e6202a7d433", "oracle_id": "0c2abd2a-ca98-45d2-8dd1-984d2c0c266a", "multiverse_ids": [110499], "mtgo_id": 25553, "mtgo_foil_id": 25554, "tcgplayer_id": 14406, "cardmarket_id": 14028, "name": "Trickbind", "lang": "en", "released_at": "2006-10-06", "uri": "https://api.scryfall.com/cards/f2e58ff2-dea3-42b3-8c22-3e6202a7d433", "scryfall_uri": "https://scryfall.com/card/tsp/88/trickbind?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/f/2/f2e58ff2-dea3-42b3-8c22-3e6202a7d433.jpg?1562946300", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/2/f2e58ff2-dea3-42b3-8c22-3e6202a7d433.jpg?1562946300", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/f/2/f2e58ff2-dea3-42b3-8c22-3e6202a7d433.jpg?1562946300", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/f/2/f2e58ff2-dea3-42b3-8c22-3e6202a7d433.png?1562946300", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/2/f2e58ff2-dea3-42b3-8c22-3e6202a7d433.jpg?1562946300", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/f/2/f2e58ff2-dea3-42b3-8c22-3e6202a7d433.jpg?1562946300"}, "mana_cost": "{1}{U}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Split second (As long as this spell is on the stack, players can't cast spells or activate abilities that aren't mana abilities.)\nCounter target activated or triggered ability. If a permanent's ability is countered this way, activated abilities of that permanent can't be activated this turn. (Mana abilities can't be targeted.)", "colors": ["U"], "color_identity": ["U"], "keywords": ["Split second"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "c1d109bc-ffd8-428f-8d7d-3f8d7e648046", "set": "tsp", "set_name": "Time Spiral", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/c1d109bc-ffd8-428f-8d7d-3f8d7e648046", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Atsp&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/tsp?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/f2e58ff2-dea3-42b3-8c22-3e6202a7d433/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A0c2abd2a-ca98-45d2-8dd1-984d2c0c266a&unique=prints", "collector_number": "88", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "John Zeleznik", "artist_ids": ["7d96bd59-7779-4740-8658-953f518ff805"], "illustration_id": "71e624a7-c04a-47a9-b578-e51be1197d6b", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 4914, "penny_rank": 1430, "prices": {"usd": "8.30", "usd_foil": "36.86", "usd_etched": null, "eur": "1.32", "eur_foil": "16.95", "tix": "0.13"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=110499", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Trickbind&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Trickbind&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Trickbind"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/14406?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Trickbind&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/25553?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "3b7573c2-484c-4b4e-9c26-0f005bd1daee", "oracle_id": "4325ae73-af43-4a7d-a552-9909f0dc77db", "multiverse_ids": [414373], "mtgo_id": 61356, "mtgo_foil_id": 61357, "tcgplayer_id": 120278, "cardmarket_id": 291064, "name": "Turn Aside", "lang": "en", "released_at": "2016-07-22", "uri": "https://api.scryfall.com/cards/3b7573c2-484c-4b4e-9c26-0f005bd1daee", "scryfall_uri": "https://scryfall.com/card/emn/78/turn-aside?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/3/b/3b7573c2-484c-4b4e-9c26-0f005bd1daee.jpg?1576384240", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/b/3b7573c2-484c-4b4e-9c26-0f005bd1daee.jpg?1576384240", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/3/b/3b7573c2-484c-4b4e-9c26-0f005bd1daee.jpg?1576384240", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/3/b/3b7573c2-484c-4b4e-9c26-0f005bd1daee.png?1576384240", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/b/3b7573c2-484c-4b4e-9c26-0f005bd1daee.jpg?1576384240", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/3/b/3b7573c2-484c-4b4e-9c26-0f005bd1daee.jpg?1576384240"}, "mana_cost": "{U}", "cmc": 1.0, "type_line": "Instant", "oracle_text": "Counter target spell that targets a permanent you control.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "5f0e4093-334f-4439-bbb5-a0affafd0ffc", "set": "emn", "set_name": "Eldritch Moon", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/5f0e4093-334f-4439-bbb5-a0affafd0ffc", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aemn&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/emn?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/3b7573c2-484c-4b4e-9c26-0f005bd1daee/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A4325ae73-af43-4a7d-a552-9909f0dc77db&unique=prints", "collector_number": "78", "digital": false, "rarity": "common", "flavor_text": "\"There are tides beyond those in the sea that are driven by Innistrad's silver moon. If you learn their patterns, you can channel them in fascinating ways.\"\n\u2014Tamiyo", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Jaime Jones", "artist_ids": ["92f6c2c1-fa57-4b52-99c4-0fd866c13dc9"], "illustration_id": "f3e7eb5e-f63c-4e0e-9b5d-01778d0c07bd", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 4068, "penny_rank": 3447, "prices": {"usd": "0.14", "usd_foil": "1.26", "usd_etched": null, "eur": "0.02", "eur_foil": "0.99", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=414373", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Turn+Aside&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Turn+Aside&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Turn+Aside"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/120278?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Turn+Aside&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/61356?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "56226f57-6ff0-430e-aba6-6b3dd51f8d3c", "oracle_id": "4325ae73-af43-4a7d-a552-9909f0dc77db", "multiverse_ids": [194303], "mtgo_id": 38063, "mtgo_foil_id": 38064, "tcgplayer_id": 36450, "cardmarket_id": 242770, "name": "Turn Aside", "lang": "en", "released_at": "2010-10-01", "uri": "https://api.scryfall.com/cards/56226f57-6ff0-430e-aba6-6b3dd51f8d3c", "scryfall_uri": "https://scryfall.com/card/som/49/turn-aside?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/5/6/56226f57-6ff0-430e-aba6-6b3dd51f8d3c.jpg?1562817712", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/6/56226f57-6ff0-430e-aba6-6b3dd51f8d3c.jpg?1562817712", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/5/6/56226f57-6ff0-430e-aba6-6b3dd51f8d3c.jpg?1562817712", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/5/6/56226f57-6ff0-430e-aba6-6b3dd51f8d3c.png?1562817712", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/6/56226f57-6ff0-430e-aba6-6b3dd51f8d3c.jpg?1562817712", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/5/6/56226f57-6ff0-430e-aba6-6b3dd51f8d3c.jpg?1562817712"}, "mana_cost": "{U}", "cmc": 1.0, "type_line": "Instant", "oracle_text": "Counter target spell that targets a permanent you control.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "8f403072-9b22-4e69-8d59-22dc4c97fd8d", "set": "som", "set_name": "Scars of Mirrodin", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/8f403072-9b22-4e69-8d59-22dc4c97fd8d", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Asom&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/som?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/56226f57-6ff0-430e-aba6-6b3dd51f8d3c/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A4325ae73-af43-4a7d-a552-9909f0dc77db&unique=prints", "collector_number": "49", "digital": false, "rarity": "common", "watermark": "mirran", "flavor_text": "\"It's not my job to ask our leaders about their experiments at the Knowledge Pool. It's my job to make sure they can continue performing them.\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Shelly Wan", "artist_ids": ["bc1722f2-95d4-462d-948b-35be540ef4c2"], "illustration_id": "db701043-f0f8-4cbf-bdde-ec1a056a8ad9", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 4068, "penny_rank": 3447, "prices": {"usd": "0.14", "usd_foil": "2.79", "usd_etched": null, "eur": "0.09", "eur_foil": "0.35", "tix": "0.05"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=194303", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Turn+Aside&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Turn+Aside&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Turn+Aside"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/36450?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Turn+Aside&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/38063?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "2334bc71-5f85-47ff-b393-601a1e746a4e", "oracle_id": "6bcfe240-c165-49f2-a90a-be05c05498a1", "multiverse_ids": [23190], "mtgo_id": 14841, "mtgo_foil_id": 14842, "tcgplayer_id": 7723, "cardmarket_id": 3715, "name": "Undermine", "lang": "en", "released_at": "2000-10-02", "uri": "https://api.scryfall.com/cards/2334bc71-5f85-47ff-b393-601a1e746a4e", "scryfall_uri": "https://scryfall.com/card/inv/282/undermine?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/2/3/2334bc71-5f85-47ff-b393-601a1e746a4e.jpg?1562902053", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/3/2334bc71-5f85-47ff-b393-601a1e746a4e.jpg?1562902053", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/2/3/2334bc71-5f85-47ff-b393-601a1e746a4e.jpg?1562902053", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/2/3/2334bc71-5f85-47ff-b393-601a1e746a4e.png?1562902053", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/3/2334bc71-5f85-47ff-b393-601a1e746a4e.jpg?1562902053", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/2/3/2334bc71-5f85-47ff-b393-601a1e746a4e.jpg?1562902053"}, "mana_cost": "{U}{U}{B}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Counter target spell. Its controller loses 3 life.", "colors": ["B", "U"], "color_identity": ["B", "U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "b9ae5e02-7726-47ca-b5e4-5ec402b41cd1", "set": "inv", "set_name": "Invasion", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/b9ae5e02-7726-47ca-b5e4-5ec402b41cd1", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ainv&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/inv?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/2334bc71-5f85-47ff-b393-601a1e746a4e/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A6bcfe240-c165-49f2-a90a-be05c05498a1&unique=prints", "collector_number": "282", "digital": false, "rarity": "rare", "flavor_text": "\"Which would you like first, the insult or the injury?\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Massimilano Frezzato", "artist_ids": ["930f9f76-0ee1-4974-b6b5-754c9a5f8f4d"], "illustration_id": "c3888ed9-2e95-43af-a4ad-13baaf882c49", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 8844, "prices": {"usd": "3.33", "usd_foil": "74.41", "usd_etched": null, "eur": "0.99", "eur_foil": "69.98", "tix": "0.27"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=23190", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Undermine&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Undermine&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Undermine"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/7723?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Undermine&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/14841?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "3eaebdc1-7a20-45db-9d45-0238fc917496", "oracle_id": "82ed1bd6-b56d-48e9-932e-78b29c030d63", "multiverse_ids": [], "arena_id": 81251, "name": "Undersimplify", "lang": "en", "released_at": "2022-07-07", "uri": "https://api.scryfall.com/cards/3eaebdc1-7a20-45db-9d45-0238fc917496", "scryfall_uri": "https://scryfall.com/card/hbg/40/undersimplify?utm_source=api", "layout": "normal", "highres_image": false, "image_status": "lowres", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/3/e/3eaebdc1-7a20-45db-9d45-0238fc917496.jpg?1656479084", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/e/3eaebdc1-7a20-45db-9d45-0238fc917496.jpg?1656479084", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/3/e/3eaebdc1-7a20-45db-9d45-0238fc917496.jpg?1656479084", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/3/e/3eaebdc1-7a20-45db-9d45-0238fc917496.png?1656479084", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/e/3eaebdc1-7a20-45db-9d45-0238fc917496.jpg?1656479084", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/3/e/3eaebdc1-7a20-45db-9d45-0238fc917496.jpg?1656479084"}, "mana_cost": "{1}{U}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Choose target spell. If it's a creature spell, it perpetually gets -2/-0. Counter that spell unless its controller pays {2}.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "not_legal", "pauper": "not_legal", "vintage": "not_legal", "penny": "not_legal", "commander": "not_legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "not_legal", "duel": "not_legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "35528ede-7870-4598-a2ee-7f3d6464a74b", "set": "hbg", "set_name": "Alchemy Horizons: Baldur's Gate", "set_type": "alchemy", "set_uri": "https://api.scryfall.com/sets/35528ede-7870-4598-a2ee-7f3d6464a74b", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ahbg&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/hbg?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/3eaebdc1-7a20-45db-9d45-0238fc917496/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A82ed1bd6-b56d-48e9-932e-78b29c030d63&unique=prints", "collector_number": "40", "digital": true, "rarity": "common", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Brent Hollowell", "artist_ids": ["19d4900c-f5a1-4c08-b5e0-b8d7ba733ec2"], "illustration_id": "e776fcf3-7872-48e8-9df8-c2ed130239ff", "border_color": "black", "frame": "2015", "security_stamp": "arena", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "prices": {"usd": null, "usd_foil": null, "usd_etched": null, "eur": null, "eur_foil": null, "tix": null}, "related_uris": {"tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Undersimplify&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Undersimplify&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Undersimplify"}}, {"object": "card", "id": "6cb50db7-f1d4-4f9d-ac60-564398af79ea", "oracle_id": "f90cc072-750c-4a87-bf6c-37192d15e691", "multiverse_ids": [193456], "mtgo_id": 36404, "mtgo_foil_id": 36405, "tcgplayer_id": 34786, "cardmarket_id": 22544, "name": "Unified Will", "lang": "en", "released_at": "2010-04-23", "uri": "https://api.scryfall.com/cards/6cb50db7-f1d4-4f9d-ac60-564398af79ea", "scryfall_uri": "https://scryfall.com/card/roe/92/unified-will?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/6/c/6cb50db7-f1d4-4f9d-ac60-564398af79ea.jpg?1562704807", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/c/6cb50db7-f1d4-4f9d-ac60-564398af79ea.jpg?1562704807", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/6/c/6cb50db7-f1d4-4f9d-ac60-564398af79ea.jpg?1562704807", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/6/c/6cb50db7-f1d4-4f9d-ac60-564398af79ea.png?1562704807", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/c/6cb50db7-f1d4-4f9d-ac60-564398af79ea.jpg?1562704807", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/6/c/6cb50db7-f1d4-4f9d-ac60-564398af79ea.jpg?1562704807"}, "mana_cost": "{1}{U}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Counter target spell if you control more creatures than that spell's controller.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "eadb8a82-ec56-4623-b50e-42e7e60cb535", "set": "roe", "set_name": "Rise of the Eldrazi", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/eadb8a82-ec56-4623-b50e-42e7e60cb535", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aroe&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/roe?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/6cb50db7-f1d4-4f9d-ac60-564398af79ea/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Af90cc072-750c-4a87-bf6c-37192d15e691&unique=prints", "collector_number": "92", "digital": false, "rarity": "uncommon", "flavor_text": "\"We're glad to be of service\u2014to be an audience to your failure.\"\n\u2014Maizah Shere, Tazeem lullmage", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Matt Cavotta", "artist_ids": ["2e6a0611-9411-4ba4-98e3-c0e18cbf9f83"], "illustration_id": "cedd332d-49ea-42a5-8d42-55e5e567ce52", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 9851, "penny_rank": 9214, "prices": {"usd": "0.25", "usd_foil": "1.86", "usd_etched": null, "eur": "0.38", "eur_foil": "3.20", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=193456", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Unified+Will&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Unified+Will&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Unified+Will"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/34786?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Unified+Will&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/36404?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "ba5dac3d-4b49-44c4-a7b2-0a99485252c9", "oracle_id": "c387f46f-ad91-4964-8dc6-acefe537fe3c", "multiverse_ids": [414374], "mtgo_id": 61136, "mtgo_foil_id": 61137, "tcgplayer_id": 119748, "cardmarket_id": 290928, "name": "Unsubstantiate", "lang": "en", "released_at": "2016-07-22", "uri": "https://api.scryfall.com/cards/ba5dac3d-4b49-44c4-a7b2-0a99485252c9", "scryfall_uri": "https://scryfall.com/card/emn/79/unsubstantiate?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/b/a/ba5dac3d-4b49-44c4-a7b2-0a99485252c9.jpg?1576384246", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/a/ba5dac3d-4b49-44c4-a7b2-0a99485252c9.jpg?1576384246", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/b/a/ba5dac3d-4b49-44c4-a7b2-0a99485252c9.jpg?1576384246", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/b/a/ba5dac3d-4b49-44c4-a7b2-0a99485252c9.png?1576384246", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/a/ba5dac3d-4b49-44c4-a7b2-0a99485252c9.jpg?1576384246", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/b/a/ba5dac3d-4b49-44c4-a7b2-0a99485252c9.jpg?1576384246"}, "mana_cost": "{1}{U}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Return target spell or creature to its owner's hand.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "5f0e4093-334f-4439-bbb5-a0affafd0ffc", "set": "emn", "set_name": "Eldritch Moon", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/5f0e4093-334f-4439-bbb5-a0affafd0ffc", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aemn&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/emn?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/ba5dac3d-4b49-44c4-a7b2-0a99485252c9/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ac387f46f-ad91-4964-8dc6-acefe537fe3c&unique=prints", "collector_number": "79", "digital": false, "rarity": "uncommon", "flavor_text": "\"Nicely done, Jace. You always were good at disappearing acts.\"\n\u2014Liliana Vess", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Victor Adame Minguez", "artist_ids": ["bd8f7368-5b10-4554-b6b8-d052c6aca89f"], "illustration_id": "0a54f72d-dcbd-48f5-aa76-1649d90b8662", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 1862, "penny_rank": 1679, "prices": {"usd": "0.21", "usd_foil": "1.26", "usd_etched": null, "eur": "0.02", "eur_foil": "0.70", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=414374", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Unsubstantiate&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Unsubstantiate&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Unsubstantiate"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/119748?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Unsubstantiate&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/61136?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "8b184d7e-46ae-450e-9228-eb605ac3ad41", "oracle_id": "c387f46f-ad91-4964-8dc6-acefe537fe3c", "multiverse_ids": [], "tcgplayer_id": 120451, "cardmarket_id": 291079, "name": "Unsubstantiate", "lang": "en", "released_at": "2016-07-22", "uri": "https://api.scryfall.com/cards/8b184d7e-46ae-450e-9228-eb605ac3ad41", "scryfall_uri": "https://scryfall.com/card/pemn/79/unsubstantiate?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/8/b/8b184d7e-46ae-450e-9228-eb605ac3ad41.jpg?1562924384", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/b/8b184d7e-46ae-450e-9228-eb605ac3ad41.jpg?1562924384", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/8/b/8b184d7e-46ae-450e-9228-eb605ac3ad41.jpg?1562924384", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/8/b/8b184d7e-46ae-450e-9228-eb605ac3ad41.png?1562924384", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/b/8b184d7e-46ae-450e-9228-eb605ac3ad41.jpg?1562924384", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/8/b/8b184d7e-46ae-450e-9228-eb605ac3ad41.jpg?1562924384"}, "mana_cost": "{1}{U}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Return target spell or creature to its owner's hand.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": true, "reprint": true, "variation": false, "set_id": "a173a21c-7d0f-4bdd-97df-72ce0b661d62", "set": "pemn", "set_name": "Eldritch Moon Promos", "set_type": "promo", "set_uri": "https://api.scryfall.com/sets/a173a21c-7d0f-4bdd-97df-72ce0b661d62", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Apemn&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/pemn?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/8b184d7e-46ae-450e-9228-eb605ac3ad41/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ac387f46f-ad91-4964-8dc6-acefe537fe3c&unique=prints", "collector_number": "79", "digital": false, "rarity": "uncommon", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Svetlin Velinov", "artist_ids": ["ffd063ae-c097-4f26-b2e6-b1e2137708bc"], "illustration_id": "25dde14f-9ef7-4db2-bb0f-b58f47d7475b", "border_color": "black", "frame": "2015", "full_art": true, "textless": false, "booster": false, "story_spotlight": false, "promo_types": ["setpromo", "gameday"], "edhrec_rank": 1862, "penny_rank": 1679, "prices": {"usd": "0.48", "usd_foil": null, "usd_etched": null, "eur": "0.25", "eur_foil": null, "tix": null}, "related_uris": {"tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Unsubstantiate&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Unsubstantiate&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Unsubstantiate"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/120451?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Unsubstantiate&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Unsubstantiate&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "97da6607-9131-4f8b-8af3-63439a59b78b", "oracle_id": "e38b8ecb-e7ae-474d-b6a4-29cc1aa8ccd9", "multiverse_ids": [442960], "mtgo_id": 67609, "arena_id": 67248, "tcgplayer_id": 164359, "cardmarket_id": 327253, "name": "Unwind", "lang": "en", "released_at": "2018-04-27", "uri": "https://api.scryfall.com/cards/97da6607-9131-4f8b-8af3-63439a59b78b", "scryfall_uri": "https://scryfall.com/card/dom/72/unwind?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/9/7/97da6607-9131-4f8b-8af3-63439a59b78b.jpg?1562739909", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/7/97da6607-9131-4f8b-8af3-63439a59b78b.jpg?1562739909", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/9/7/97da6607-9131-4f8b-8af3-63439a59b78b.jpg?1562739909", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/9/7/97da6607-9131-4f8b-8af3-63439a59b78b.png?1562739909", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/7/97da6607-9131-4f8b-8af3-63439a59b78b.jpg?1562739909", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/9/7/97da6607-9131-4f8b-8af3-63439a59b78b.jpg?1562739909"}, "mana_cost": "{2}{U}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Counter target noncreature spell. Untap up to three lands.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "be1daba3-51c9-4e7e-9212-36e68addc26c", "set": "dom", "set_name": "Dominaria", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/be1daba3-51c9-4e7e-9212-36e68addc26c", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Adom&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/dom?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/97da6607-9131-4f8b-8af3-63439a59b78b/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ae38b8ecb-e7ae-474d-b6a4-29cc1aa8ccd9&unique=prints", "collector_number": "72", "digital": false, "rarity": "common", "flavor_text": "\"A problem is only a problem if you don't have the tools to correct it.\"\n\u2014Jhoira", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Anna Steinbauer", "artist_ids": ["3516496c-c279-4b56-8239-720683d03ae0"], "illustration_id": "0fc36806-854c-4230-aa22-2297a9e2b448", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 779, "penny_rank": 2950, "prices": {"usd": "0.22", "usd_foil": "2.95", "usd_etched": null, "eur": "0.18", "eur_foil": "1.56", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=442960", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Unwind&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Unwind&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Unwind"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/164359?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Unwind&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/67609?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "83031ea8-a6c9-4318-af16-bba701dd76bb", "oracle_id": "5a5d426b-e5eb-44f0-b5fe-c258bec6d59e", "multiverse_ids": [522258], "mtgo_id": 90741, "tcgplayer_id": 239824, "cardmarket_id": 566441, "name": "Verdant Command", "lang": "en", "released_at": "2021-06-18", "uri": "https://api.scryfall.com/cards/83031ea8-a6c9-4318-af16-bba701dd76bb", "scryfall_uri": "https://scryfall.com/card/mh2/182/verdant-command?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/8/3/83031ea8-a6c9-4318-af16-bba701dd76bb.jpg?1626097990", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/3/83031ea8-a6c9-4318-af16-bba701dd76bb.jpg?1626097990", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/8/3/83031ea8-a6c9-4318-af16-bba701dd76bb.jpg?1626097990", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/8/3/83031ea8-a6c9-4318-af16-bba701dd76bb.png?1626097990", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/3/83031ea8-a6c9-4318-af16-bba701dd76bb.jpg?1626097990", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/8/3/83031ea8-a6c9-4318-af16-bba701dd76bb.jpg?1626097990"}, "mana_cost": "{1}{G}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Choose two \u2014\n\u2022 Target player creates two tapped 1/1 green Squirrel creature tokens.\n\u2022 Counter target loyalty ability of a planeswalker.\n\u2022 Exile target card from a graveyard.\n\u2022 Target player gains 3 life.", "colors": ["G"], "color_identity": ["G"], "keywords": [], "all_parts": [{"object": "related_card", "id": "83031ea8-a6c9-4318-af16-bba701dd76bb", "component": "combo_piece", "name": "Verdant Command", "type_line": "Instant", "uri": "https://api.scryfall.com/cards/83031ea8-a6c9-4318-af16-bba701dd76bb"}, {"object": "related_card", "id": "977ddd05-1aae-46fc-95ce-866710d1c5c6", "component": "token", "name": "Squirrel", "type_line": "Token Creature \u2014 Squirrel", "uri": "https://api.scryfall.com/cards/977ddd05-1aae-46fc-95ce-866710d1c5c6"}], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "c1c7eb8c-f205-40ab-a609-767cb296544e", "set": "mh2", "set_name": "Modern Horizons 2", "set_type": "draft_innovation", "set_uri": "https://api.scryfall.com/sets/c1c7eb8c-f205-40ab-a609-767cb296544e", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Amh2&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/mh2?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/83031ea8-a6c9-4318-af16-bba701dd76bb/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A5a5d426b-e5eb-44f0-b5fe-c258bec6d59e&unique=prints", "collector_number": "182", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Mark Poole", "artist_ids": ["bfdeaf09-f915-4058-8e8b-bcac3bc43c33"], "illustration_id": "fe6e2a9c-34ac-42ea-a9bd-1c36226b6d7a", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 3755, "penny_rank": 2556, "preview": {"source": "Wizards of the Coast", "source_uri": "", "previewed_at": "2021-05-26"}, "prices": {"usd": "0.29", "usd_foil": "0.39", "usd_etched": null, "eur": "0.24", "eur_foil": "0.40", "tix": "0.01"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=522258", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Verdant+Command&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Verdant+Command&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Verdant+Command"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/239824?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Verdant+Command&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/90741?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "070a3f30-0839-4678-a37c-475ee189811e", "oracle_id": "5a5d426b-e5eb-44f0-b5fe-c258bec6d59e", "multiverse_ids": [526727], "tcgplayer_id": 239825, "cardmarket_id": 566458, "name": "Verdant Command", "lang": "en", "released_at": "2021-06-18", "uri": "https://api.scryfall.com/cards/070a3f30-0839-4678-a37c-475ee189811e", "scryfall_uri": "https://scryfall.com/card/mh2/359/verdant-command?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/0/7/070a3f30-0839-4678-a37c-475ee189811e.jpg?1626101883", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/7/070a3f30-0839-4678-a37c-475ee189811e.jpg?1626101883", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/0/7/070a3f30-0839-4678-a37c-475ee189811e.jpg?1626101883", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/0/7/070a3f30-0839-4678-a37c-475ee189811e.png?1626101883", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/7/070a3f30-0839-4678-a37c-475ee189811e.jpg?1626101883", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/0/7/070a3f30-0839-4678-a37c-475ee189811e.jpg?1626101883"}, "mana_cost": "{1}{G}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Choose two \u2014\n\u2022 Target player creates two tapped 1/1 green Squirrel creature tokens.\n\u2022 Counter target loyalty ability of a planeswalker.\n\u2022 Exile target card from a graveyard.\n\u2022 Target player gains 3 life.", "colors": ["G"], "color_identity": ["G"], "keywords": [], "all_parts": [{"object": "related_card", "id": "83031ea8-a6c9-4318-af16-bba701dd76bb", "component": "combo_piece", "name": "Verdant Command", "type_line": "Instant", "uri": "https://api.scryfall.com/cards/83031ea8-a6c9-4318-af16-bba701dd76bb"}, {"object": "related_card", "id": "977ddd05-1aae-46fc-95ce-866710d1c5c6", "component": "token", "name": "Squirrel", "type_line": "Token Creature \u2014 Squirrel", "uri": "https://api.scryfall.com/cards/977ddd05-1aae-46fc-95ce-866710d1c5c6"}], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "c1c7eb8c-f205-40ab-a609-767cb296544e", "set": "mh2", "set_name": "Modern Horizons 2", "set_type": "draft_innovation", "set_uri": "https://api.scryfall.com/sets/c1c7eb8c-f205-40ab-a609-767cb296544e", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Amh2&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/mh2?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/070a3f30-0839-4678-a37c-475ee189811e/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A5a5d426b-e5eb-44f0-b5fe-c258bec6d59e&unique=prints", "collector_number": "359", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Mark Poole", "artist_ids": ["bfdeaf09-f915-4058-8e8b-bcac3bc43c33"], "illustration_id": "2d9c45b4-18bf-437d-ada4-c122701b9965", "border_color": "black", "frame": "2015", "frame_effects": ["showcase"], "security_stamp": "oval", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "promo_types": ["boosterfun"], "edhrec_rank": 3755, "penny_rank": 2556, "preview": {"source": "Wizards of the Coast", "source_uri": "", "previewed_at": "2021-05-26"}, "prices": {"usd": "0.20", "usd_foil": "0.30", "usd_etched": null, "eur": "0.34", "eur_foil": "0.40", "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=526727", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Verdant+Command&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Verdant+Command&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Verdant+Command"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/239825?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Verdant+Command&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Verdant+Command&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "d8e84dd2-01f9-4fad-8a24-cc86424d09a2", "oracle_id": "a84f0b11-5c59-4bab-81ef-a84470fb2ade", "multiverse_ids": [439648], "tcgplayer_id": 154422, "cardmarket_id": 314672, "name": "Very Cryptic Command", "lang": "en", "released_at": "2017-12-08", "uri": "https://api.scryfall.com/cards/d8e84dd2-01f9-4fad-8a24-cc86424d09a2", "scryfall_uri": "https://scryfall.com/card/ust/49e/very-cryptic-command?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/d/8/d8e84dd2-01f9-4fad-8a24-cc86424d09a2.jpg?1562940811", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/8/d8e84dd2-01f9-4fad-8a24-cc86424d09a2.jpg?1562940811", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/d/8/d8e84dd2-01f9-4fad-8a24-cc86424d09a2.jpg?1562940811", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/d/8/d8e84dd2-01f9-4fad-8a24-cc86424d09a2.png?1562940811", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/8/d8e84dd2-01f9-4fad-8a24-cc86424d09a2.jpg?1562940811", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/d/8/d8e84dd2-01f9-4fad-8a24-cc86424d09a2.jpg?1562940811"}, "mana_cost": "{1}{U}{U}{U}", "cmc": 4.0, "type_line": "Instant", "oracle_text": "Choose two \u2014\n\u2022 Counter target black-bordered spell.\n\u2022 Return target creature to its owner's hand.\n\u2022 Untap each permanent you control with a watermark.\n\u2022 Roll two six-sided dice. Target player mills X cards, where X is the total of those results.", "colors": ["U"], "color_identity": ["U"], "keywords": ["Mill"], "all_parts": [{"object": "related_card", "id": "d8e84dd2-01f9-4fad-8a24-cc86424d09a2", "component": "combo_piece", "name": "Very Cryptic Command", "type_line": "Instant", "uri": "https://api.scryfall.com/cards/d8e84dd2-01f9-4fad-8a24-cc86424d09a2"}, {"object": "related_card", "id": "2dfc9416-06d6-40af-8b3d-62371b3da7c5", "component": "combo_piece", "name": "Very Cryptic Command", "type_line": "Instant", "uri": "https://api.scryfall.com/cards/2dfc9416-06d6-40af-8b3d-62371b3da7c5"}, {"object": "related_card", "id": "12272ce6-ab1f-4576-9e50-21d324263c44", "component": "combo_piece", "name": "Very Cryptic Command", "type_line": "Instant", "uri": "https://api.scryfall.com/cards/12272ce6-ab1f-4576-9e50-21d324263c44"}, {"object": "related_card", "id": "d41e6c51-d96a-436f-94c5-5d1e19c5e0d5", "component": "combo_piece", "name": "Very Cryptic Command", "type_line": "Instant", "uri": "https://api.scryfall.com/cards/d41e6c51-d96a-436f-94c5-5d1e19c5e0d5"}, {"object": "related_card", "id": "9a650610-20e2-4f16-b59c-2ea7779f6e47", "component": "combo_piece", "name": "Very Cryptic Command", "type_line": "Instant", "uri": "https://api.scryfall.com/cards/9a650610-20e2-4f16-b59c-2ea7779f6e47"}, {"object": "related_card", "id": "2a90b2b6-d96e-4c13-83be-849d2ec1d845", "component": "combo_piece", "name": "Very Cryptic Command", "type_line": "Instant", "uri": "https://api.scryfall.com/cards/2a90b2b6-d96e-4c13-83be-849d2ec1d845"}], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "not_legal", "pauper": "not_legal", "vintage": "not_legal", "penny": "not_legal", "commander": "not_legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "not_legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "83491685-880d-41dd-a4af-47d2b3b17c10", "set": "ust", "set_name": "Unstable", "set_type": "funny", "set_uri": "https://api.scryfall.com/sets/83491685-880d-41dd-a4af-47d2b3b17c10", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aust&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ust?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/d8e84dd2-01f9-4fad-8a24-cc86424d09a2/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aa84f0b11-5c59-4bab-81ef-a84470fb2ade&unique=prints", "collector_number": "49e", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Zoltan Boros", "artist_ids": ["1885e6cb-c827-4896-994e-3d0a027d602f"], "illustration_id": "2345d8b0-e090-4b12-8a0a-40d98970f6ba", "border_color": "silver", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "prices": {"usd": "3.52", "usd_foil": "9.35", "usd_etched": null, "eur": "2.31", "eur_foil": "9.26", "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=439648", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Very+Cryptic+Command&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Very+Cryptic+Command&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Very+Cryptic+Command"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/154422?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Very+Cryptic+Command&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Very+Cryptic+Command&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "e28a9f15-5469-4dc2-8a73-646f854fec7e", "oracle_id": "fd6ba826-e7b1-4375-8aaf-c3cd3dc7ba07", "multiverse_ids": [49085], "mtgo_id": 20439, "mtgo_foil_id": 20440, "tcgplayer_id": 11737, "cardmarket_id": 453, "name": "Vex", "lang": "en", "released_at": "2004-02-06", "uri": "https://api.scryfall.com/cards/e28a9f15-5469-4dc2-8a73-646f854fec7e", "scryfall_uri": "https://scryfall.com/card/dst/36/vex?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/e/2/e28a9f15-5469-4dc2-8a73-646f854fec7e.jpg?1562640140", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/2/e28a9f15-5469-4dc2-8a73-646f854fec7e.jpg?1562640140", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/e/2/e28a9f15-5469-4dc2-8a73-646f854fec7e.jpg?1562640140", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/e/2/e28a9f15-5469-4dc2-8a73-646f854fec7e.png?1562640140", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/2/e28a9f15-5469-4dc2-8a73-646f854fec7e.jpg?1562640140", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/e/2/e28a9f15-5469-4dc2-8a73-646f854fec7e.jpg?1562640140"}, "mana_cost": "{2}{U}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Counter target spell. That spell's controller may draw a card.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "e29cb2dd-1345-4032-abfe-e52e8c8ce074", "set": "dst", "set_name": "Darksteel", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/e29cb2dd-1345-4032-abfe-e52e8c8ce074", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Adst&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/dst?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/e28a9f15-5469-4dc2-8a73-646f854fec7e/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Afd6ba826-e7b1-4375-8aaf-c3cd3dc7ba07&unique=prints", "collector_number": "36", "digital": false, "rarity": "common", "flavor_text": "\"The druids would be better off if they spent more time in the lab and less time watching trees grow.\"\n\u2014Pontifex, elder researcher", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Brian Sn\u00f5ddy", "artist_ids": ["770b4e16-de76-49ed-949f-84e6d2e06d25"], "illustration_id": "e94dbeac-8783-43d7-a0bb-f724020adfab", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 16787, "penny_rank": 9161, "prices": {"usd": "0.07", "usd_foil": "0.19", "usd_etched": null, "eur": "0.03", "eur_foil": "0.05", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=49085", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Vex&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Vex&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Vex"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/11737?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Vex&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/20439?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "4bf13c5e-3968-48ad-ba08-99ba58873223", "oracle_id": "3d9f854e-1ee5-4aa1-a33b-d3ae08f15dd0", "multiverse_ids": [407559], "mtgo_id": 59497, "mtgo_foil_id": 59498, "tcgplayer_id": 111092, "cardmarket_id": 287347, "name": "Void Shatter", "lang": "en", "released_at": "2016-01-22", "uri": "https://api.scryfall.com/cards/4bf13c5e-3968-48ad-ba08-99ba58873223", "scryfall_uri": "https://scryfall.com/card/ogw/49/void-shatter?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/4/b/4bf13c5e-3968-48ad-ba08-99ba58873223.jpg?1562910363", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/b/4bf13c5e-3968-48ad-ba08-99ba58873223.jpg?1562910363", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/4/b/4bf13c5e-3968-48ad-ba08-99ba58873223.jpg?1562910363", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/4/b/4bf13c5e-3968-48ad-ba08-99ba58873223.png?1562910363", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/b/4bf13c5e-3968-48ad-ba08-99ba58873223.jpg?1562910363", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/4/b/4bf13c5e-3968-48ad-ba08-99ba58873223.jpg?1562910363"}, "mana_cost": "{1}{U}{U}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Devoid (This card has no color.)\nCounter target spell. If that spell is countered this way, exile it instead of putting it into its owner's graveyard.", "colors": [], "color_identity": ["U"], "keywords": ["Devoid"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "cd51d245-8f95-45b0-ab5f-e2b3a3eb5dfe", "set": "ogw", "set_name": "Oath of the Gatewatch", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/cd51d245-8f95-45b0-ab5f-e2b3a3eb5dfe", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aogw&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ogw?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/4bf13c5e-3968-48ad-ba08-99ba58873223/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A3d9f854e-1ee5-4aa1-a33b-d3ae08f15dd0&unique=prints", "collector_number": "49", "digital": false, "rarity": "uncommon", "flavor_text": "Eldrazi break concentration like glass.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Jason Felix", "artist_ids": ["af42a44c-8ec3-47a7-9047-5d29ddad186d"], "illustration_id": "ce1e20dd-8bd9-4b17-bbbe-08dc4ad8c7fb", "border_color": "black", "frame": "2015", "frame_effects": ["devoid"], "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 5061, "penny_rank": 1133, "prices": {"usd": "0.24", "usd_foil": "2.35", "usd_etched": null, "eur": "0.21", "eur_foil": "0.50", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=407559", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Void+Shatter&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Void+Shatter&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Void+Shatter"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/111092?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Void+Shatter&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/59497?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "e640664f-5cc7-4970-b966-6e6e5ae09c5a", "oracle_id": "c4851768-e210-4aaf-935e-715942e198f9", "multiverse_ids": [497500], "tcgplayer_id": 221013, "cardmarket_id": 490544, "name": "Voidslime", "lang": "en", "released_at": "2020-08-19", "uri": "https://api.scryfall.com/cards/e640664f-5cc7-4970-b966-6e6e5ae09c5a", "scryfall_uri": "https://scryfall.com/card/sld/137/voidslime?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/e/6/e640664f-5cc7-4970-b966-6e6e5ae09c5a.jpg?1640462194", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/6/e640664f-5cc7-4970-b966-6e6e5ae09c5a.jpg?1640462194", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/e/6/e640664f-5cc7-4970-b966-6e6e5ae09c5a.jpg?1640462194", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/e/6/e640664f-5cc7-4970-b966-6e6e5ae09c5a.png?1640462194", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/6/e640664f-5cc7-4970-b966-6e6e5ae09c5a.jpg?1640462194", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/e/6/e640664f-5cc7-4970-b966-6e6e5ae09c5a.jpg?1640462194"}, "mana_cost": "{G}{U}{U}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Counter target spell, activated ability, or triggered ability. (Mana abilities can't be targeted.)", "colors": ["G", "U"], "color_identity": ["G", "U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "4d92a8a7-ccb0-437d-abdc-9d70fc5ed672", "set": "sld", "set_name": "Secret Lair Drop", "set_type": "box", "set_uri": "https://api.scryfall.com/sets/4d92a8a7-ccb0-437d-abdc-9d70fc5ed672", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Asld&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/sld?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/e640664f-5cc7-4970-b966-6e6e5ae09c5a/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ac4851768-e210-4aaf-935e-715942e198f9&unique=prints", "collector_number": "137", "digital": false, "rarity": "rare", "flavor_text": "\"Cyclonic Ri\u2014fplfmplfmlfblthpfmnsnffl!\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Wizard of Barge", "artist_ids": ["b1b7118a-fce9-4f28-9617-5cea5146e33c"], "illustration_id": "6dc0f160-0a1c-4b4b-a972-335af1cd16f0", "border_color": "borderless", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "edhrec_rank": 3115, "penny_rank": 3970, "preview": {"source": "Wizards of the Coast", "source_uri": "https://twitter.com/MTGSecretLair/status/1295389637016350720", "previewed_at": "2020-08-17"}, "prices": {"usd": "7.01", "usd_foil": null, "usd_etched": null, "eur": "6.99", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=497500", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Voidslime&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Voidslime&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Voidslime"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/221013?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Voidslime&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Voidslime&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "265c269e-1b5e-4e5f-873f-7733bd4142aa", "oracle_id": "c4851768-e210-4aaf-935e-715942e198f9", "multiverse_ids": [], "tcgplayer_id": 38057, "cardmarket_id": 18998, "name": "Voidslime", "lang": "en", "released_at": "2006-06-24", "uri": "https://api.scryfall.com/cards/265c269e-1b5e-4e5f-873f-7733bd4142aa", "scryfall_uri": "https://scryfall.com/card/pcmp/4/voidslime?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/2/6/265c269e-1b5e-4e5f-873f-7733bd4142aa.jpg?1562384947", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/6/265c269e-1b5e-4e5f-873f-7733bd4142aa.jpg?1562384947", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/2/6/265c269e-1b5e-4e5f-873f-7733bd4142aa.jpg?1562384947", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/2/6/265c269e-1b5e-4e5f-873f-7733bd4142aa.png?1562384947", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/6/265c269e-1b5e-4e5f-873f-7733bd4142aa.jpg?1562384947", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/2/6/265c269e-1b5e-4e5f-873f-7733bd4142aa.jpg?1562384947"}, "mana_cost": "{G}{U}{U}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Counter target spell, activated ability, or triggered ability. (Mana abilities can't be targeted.)", "colors": ["G", "U"], "color_identity": ["G", "U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": true, "nonfoil": false, "finishes": ["foil"], "oversized": false, "promo": true, "reprint": true, "variation": false, "set_id": "3bbd8312-611e-4479-9658-ac96482b97ae", "set": "pcmp", "set_name": "Champs and States", "set_type": "promo", "set_uri": "https://api.scryfall.com/sets/3bbd8312-611e-4479-9658-ac96482b97ae", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Apcmp&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/pcmp?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/265c269e-1b5e-4e5f-873f-7733bd4142aa/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ac4851768-e210-4aaf-935e-715942e198f9&unique=prints", "collector_number": "4", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Jim Murray", "artist_ids": ["1c906f9b-5bbe-4643-8f5c-90eb1c7f0c43"], "illustration_id": "a741f45d-315b-41f1-9fa5-145f44f31f3b", "border_color": "black", "frame": "2003", "full_art": true, "textless": false, "booster": false, "story_spotlight": false, "promo_types": ["tourney"], "edhrec_rank": 3115, "penny_rank": 3970, "prices": {"usd": null, "usd_foil": "55.10", "usd_etched": null, "eur": null, "eur_foil": "27.00", "tix": null}, "related_uris": {"tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Voidslime&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Voidslime&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Voidslime"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/38057?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Voidslime&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Voidslime&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "f2ef4db8-b51c-4f52-84f1-6fee31c4a14c", "oracle_id": "c8b9fa02-0a0c-4a87-9a00-3c1c7e2f4bfd", "multiverse_ids": [407522], "mtgo_id": 59607, "mtgo_foil_id": 59608, "tcgplayer_id": 110995, "cardmarket_id": 287317, "name": "Warping Wail", "lang": "en", "released_at": "2016-01-22", "uri": "https://api.scryfall.com/cards/f2ef4db8-b51c-4f52-84f1-6fee31c4a14c", "scryfall_uri": "https://scryfall.com/card/ogw/12/warping-wail?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/f/2/f2ef4db8-b51c-4f52-84f1-6fee31c4a14c.jpg?1562943843", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/2/f2ef4db8-b51c-4f52-84f1-6fee31c4a14c.jpg?1562943843", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/f/2/f2ef4db8-b51c-4f52-84f1-6fee31c4a14c.jpg?1562943843", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/f/2/f2ef4db8-b51c-4f52-84f1-6fee31c4a14c.png?1562943843", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/2/f2ef4db8-b51c-4f52-84f1-6fee31c4a14c.jpg?1562943843", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/f/2/f2ef4db8-b51c-4f52-84f1-6fee31c4a14c.jpg?1562943843"}, "mana_cost": "{1}{C}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "({C} represents colorless mana.)\nChoose one \u2014\n\u2022 Exile target creature with power or toughness 1 or less.\n\u2022 Counter target sorcery spell.\n\u2022 Create a 1/1 colorless Eldrazi Scion creature token. It has \"Sacrifice this creature: Add {C}.\"", "colors": [], "color_identity": [], "keywords": [], "produced_mana": ["C"], "all_parts": [{"object": "related_card", "id": "f2ef4db8-b51c-4f52-84f1-6fee31c4a14c", "component": "combo_piece", "name": "Warping Wail", "type_line": "Instant", "uri": "https://api.scryfall.com/cards/f2ef4db8-b51c-4f52-84f1-6fee31c4a14c"}, {"object": "related_card", "id": "a03edf14-3495-4f61-ad73-f16e9456472c", "component": "token", "name": "Eldrazi Scion", "type_line": "Token Creature \u2014 Eldrazi Scion", "uri": "https://api.scryfall.com/cards/a03edf14-3495-4f61-ad73-f16e9456472c"}], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "cd51d245-8f95-45b0-ab5f-e2b3a3eb5dfe", "set": "ogw", "set_name": "Oath of the Gatewatch", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/cd51d245-8f95-45b0-ab5f-e2b3a3eb5dfe", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aogw&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ogw?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/f2ef4db8-b51c-4f52-84f1-6fee31c4a14c/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ac8b9fa02-0a0c-4a87-9a00-3c1c7e2f4bfd&unique=prints", "collector_number": "12", "digital": false, "rarity": "uncommon", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Jason Felix", "artist_ids": ["af42a44c-8ec3-47a7-9047-5d29ddad186d"], "illustration_id": "8178a226-f72b-447e-851e-924ba11f1149", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 3363, "penny_rank": 2634, "prices": {"usd": "1.13", "usd_foil": "14.77", "usd_etched": null, "eur": "0.76", "eur_foil": "7.00", "tix": "0.14"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=407522", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Warping+Wail&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Warping+Wail&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Warping+Wail"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/110995?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Warping+Wail&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/59607?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "43411ade-be80-4535-8baa-7055e78496df", "oracle_id": "a4630da0-fe9b-4ead-9621-eac4b7825c35", "multiverse_ids": [540931], "mtgo_id": 94490, "arena_id": 78879, "tcgplayer_id": 253534, "cardmarket_id": 582688, "name": "Wash Away", "lang": "en", "released_at": "2021-11-19", "uri": "https://api.scryfall.com/cards/43411ade-be80-4535-8baa-7055e78496df", "scryfall_uri": "https://scryfall.com/card/vow/87/wash-away?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/4/3/43411ade-be80-4535-8baa-7055e78496df.jpg?1643588844", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/3/43411ade-be80-4535-8baa-7055e78496df.jpg?1643588844", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/4/3/43411ade-be80-4535-8baa-7055e78496df.jpg?1643588844", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/4/3/43411ade-be80-4535-8baa-7055e78496df.png?1643588844", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/3/43411ade-be80-4535-8baa-7055e78496df.jpg?1643588844", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/4/3/43411ade-be80-4535-8baa-7055e78496df.jpg?1643588844"}, "mana_cost": "{U}", "cmc": 1.0, "type_line": "Instant", "oracle_text": "Cleave {1}{U}{U} (You may cast this spell for its cleave cost. If you do, remove the words in square brackets.)\nCounter target spell [that wasn't cast from its owner's hand].", "colors": ["U"], "color_identity": ["U"], "keywords": ["Cleave"], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "8144b676-569f-4716-8005-bc8f0778f3fa", "set": "vow", "set_name": "Innistrad: Crimson Vow", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/8144b676-569f-4716-8005-bc8f0778f3fa", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Avow&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/vow?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/43411ade-be80-4535-8baa-7055e78496df/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aa4630da0-fe9b-4ead-9621-eac4b7825c35&unique=prints", "collector_number": "87", "digital": false, "rarity": "uncommon", "flavor_text": "\"May the ocean take it\"\n\u2014Nephalia expression meaning\n\"good riddance\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Brian Valeza", "artist_ids": ["bb2a9339-bbe4-445f-9736-3c43379ee076"], "illustration_id": "dc7a8a77-b9e1-489a-a669-e2563c353508", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 1850, "penny_rank": 6930, "preview": {"source": "Wizards of the Coast", "source_uri": "https://magic.wizards.com/en/articles/archive/card-image-gallery/innistrad-crimson-vow", "previewed_at": "2021-11-04"}, "prices": {"usd": "0.33", "usd_foil": "0.79", "usd_etched": null, "eur": "0.86", "eur_foil": "1.65", "tix": "0.04"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=540931", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Wash+Away&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Wash+Away&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Wash+Away"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/253534?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Wash+Away&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/94490?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "9e127856-bedd-40a9-9e8e-d1f9fbefe07d", "oracle_id": "ba9e129d-a3cf-431c-93af-f2e4902d40a0", "multiverse_ids": [476332], "mtgo_id": 79286, "arena_id": 70592, "tcgplayer_id": 206840, "cardmarket_id": 430984, "name": "Whirlwind Denial", "lang": "en", "released_at": "2020-01-24", "uri": "https://api.scryfall.com/cards/9e127856-bedd-40a9-9e8e-d1f9fbefe07d", "scryfall_uri": "https://scryfall.com/card/thb/81/whirlwind-denial?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/9/e/9e127856-bedd-40a9-9e8e-d1f9fbefe07d.jpg?1581479658", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/e/9e127856-bedd-40a9-9e8e-d1f9fbefe07d.jpg?1581479658", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/9/e/9e127856-bedd-40a9-9e8e-d1f9fbefe07d.jpg?1581479658", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/9/e/9e127856-bedd-40a9-9e8e-d1f9fbefe07d.png?1581479658", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/e/9e127856-bedd-40a9-9e8e-d1f9fbefe07d.jpg?1581479658", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/9/e/9e127856-bedd-40a9-9e8e-d1f9fbefe07d.jpg?1581479658"}, "mana_cost": "{2}{U}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "For each spell and ability your opponents control, counter it unless its controller pays {4}.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "5f23a78d-cda1-462a-8be3-a62b40c34913", "set": "thb", "set_name": "Theros Beyond Death", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/5f23a78d-cda1-462a-8be3-a62b40c34913", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Athb&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/thb?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/9e127856-bedd-40a9-9e8e-d1f9fbefe07d/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aba9e129d-a3cf-431c-93af-f2e4902d40a0&unique=prints", "collector_number": "81", "digital": false, "rarity": "uncommon", "flavor_text": "\"No, no, and ... no.\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Lie Setiawan", "artist_ids": ["6f771d3f-310e-4aa4-841f-5ba4ba9f025a"], "illustration_id": "6ad4c601-b0ce-4dc8-9f40-722151852b44", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 3045, "penny_rank": 5397, "preview": {"source": "PC Gamer", "source_uri": "https://www.pcgamer.com/new-magic-the-gathering-card-threatens-to-shut-down-spellcasters/", "previewed_at": "2020-01-06"}, "prices": {"usd": "0.04", "usd_foil": "0.09", "usd_etched": null, "eur": "0.02", "eur_foil": "0.15", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=476332", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Whirlwind+Denial&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Whirlwind+Denial&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Whirlwind+Denial"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/206840?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Whirlwind+Denial&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/79286?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "f7a0c25a-8760-44ea-a418-fcd4a9761632", "oracle_id": "ba9e129d-a3cf-431c-93af-f2e4902d40a0", "multiverse_ids": [517573], "mtgo_id": 89103, "arena_id": 77502, "tcgplayer_id": 235285, "tcgplayer_etched_id": 235286, "cardmarket_id": 556479, "name": "Whirlwind Denial", "lang": "en", "released_at": "2021-04-23", "uri": "https://api.scryfall.com/cards/f7a0c25a-8760-44ea-a418-fcd4a9761632", "scryfall_uri": "https://scryfall.com/card/sta/23/whirlwind-denial?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/f/7/f7a0c25a-8760-44ea-a418-fcd4a9761632.jpg?1623594049", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/7/f7a0c25a-8760-44ea-a418-fcd4a9761632.jpg?1623594049", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/f/7/f7a0c25a-8760-44ea-a418-fcd4a9761632.jpg?1623594049", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/f/7/f7a0c25a-8760-44ea-a418-fcd4a9761632.png?1623594049", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/7/f7a0c25a-8760-44ea-a418-fcd4a9761632.jpg?1623594049", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/f/7/f7a0c25a-8760-44ea-a418-fcd4a9761632.jpg?1623594049"}, "mana_cost": "{2}{U}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "For each spell and ability your opponents control, counter it unless its controller pays {4}.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil", "etched"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "5064a720-907f-4cb6-a425-766dc1dd7374", "set": "sta", "set_name": "Strixhaven Mystical Archive", "set_type": "masterpiece", "set_uri": "https://api.scryfall.com/sets/5064a720-907f-4cb6-a425-766dc1dd7374", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Asta&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/sta?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/f7a0c25a-8760-44ea-a418-fcd4a9761632/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aba9e129d-a3cf-431c-93af-f2e4902d40a0&unique=prints", "collector_number": "23", "digital": false, "rarity": "uncommon", "flavor_text": "\"If they try to storm your palace, you must become the storm.\"\n\u2014*Handbook of Imperial Spellcraft*", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Anato Finnstark", "artist_ids": ["05d233e7-4958-4f79-83e6-f9bf8b6ff78e"], "illustration_id": "2841205f-6db2-40ad-a872-408f78f23426", "border_color": "borderless", "frame": "2015", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "edhrec_rank": 3045, "penny_rank": 5397, "preview": {"source": "Scryfall", "source_uri": "https://scryfall.com/card/sta/23/whirlwind-denial", "previewed_at": "2021-03-25"}, "prices": {"usd": "0.04", "usd_foil": "0.13", "usd_etched": "0.20", "eur": "0.10", "eur_foil": "0.13", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=517573", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Whirlwind+Denial&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Whirlwind+Denial&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Whirlwind+Denial"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/235285?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Whirlwind+Denial&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/89103?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "d76f09bc-b49a-4ad2-be2d-2a191d41b86d", "oracle_id": "8c35fd11-be45-4984-bd83-6e4f3fbc47a9", "multiverse_ids": [146600], "mtgo_id": 28751, "mtgo_foil_id": 28752, "tcgplayer_id": 15680, "cardmarket_id": 17937, "name": "Wild Ricochet", "lang": "en", "released_at": "2007-10-12", "uri": "https://api.scryfall.com/cards/d76f09bc-b49a-4ad2-be2d-2a191d41b86d", "scryfall_uri": "https://scryfall.com/card/lrw/196/wild-ricochet?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/d/7/d76f09bc-b49a-4ad2-be2d-2a191d41b86d.jpg?1562370137", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/7/d76f09bc-b49a-4ad2-be2d-2a191d41b86d.jpg?1562370137", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/d/7/d76f09bc-b49a-4ad2-be2d-2a191d41b86d.jpg?1562370137", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/d/7/d76f09bc-b49a-4ad2-be2d-2a191d41b86d.png?1562370137", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/7/d76f09bc-b49a-4ad2-be2d-2a191d41b86d.jpg?1562370137", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/d/7/d76f09bc-b49a-4ad2-be2d-2a191d41b86d.jpg?1562370137"}, "mana_cost": "{2}{R}{R}", "cmc": 4.0, "type_line": "Instant", "oracle_text": "You may choose new targets for target instant or sorcery spell. Then copy that spell. You may choose new targets for the copy.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "30ec97cb-dca9-4bf4-a98b-310f9d8ceaff", "set": "lrw", "set_name": "Lorwyn", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/30ec97cb-dca9-4bf4-a98b-310f9d8ceaff", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Alrw&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/lrw?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/d76f09bc-b49a-4ad2-be2d-2a191d41b86d/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A8c35fd11-be45-4984-bd83-6e4f3fbc47a9&unique=prints", "collector_number": "196", "digital": false, "rarity": "rare", "flavor_text": "\"I knew that trick long before your great-grandmother's great-grandmother was born.\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Dan Scott", "artist_ids": ["f852fa13-137e-40f2-bbc1-0f01df09c0e0"], "illustration_id": "bbea305c-edb5-44c9-9820-5baf52b6a4cd", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 1969, "penny_rank": 5327, "prices": {"usd": "0.41", "usd_foil": "3.48", "usd_etched": null, "eur": "0.95", "eur_foil": "1.75", "tix": "0.01"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=146600", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Wild+Ricochet&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Wild+Ricochet&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Wild+Ricochet"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/15680?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Wild+Ricochet&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/28751?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "6e6499cb-6073-4c94-8c82-47f489094df5", "oracle_id": "6d87415b-0618-48e1-9510-320c4611ecda", "multiverse_ids": [3321], "mtgo_id": 7443, "mtgo_foil_id": 7444, "tcgplayer_id": 5299, "cardmarket_id": 8101, "name": "Withering Boon", "lang": "en", "released_at": "1996-10-08", "uri": "https://api.scryfall.com/cards/6e6499cb-6073-4c94-8c82-47f489094df5", "scryfall_uri": "https://scryfall.com/card/mir/152/withering-boon?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/6/e/6e6499cb-6073-4c94-8c82-47f489094df5.jpg?1562719780", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/e/6e6499cb-6073-4c94-8c82-47f489094df5.jpg?1562719780", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/6/e/6e6499cb-6073-4c94-8c82-47f489094df5.jpg?1562719780", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/6/e/6e6499cb-6073-4c94-8c82-47f489094df5.png?1562719780", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/e/6e6499cb-6073-4c94-8c82-47f489094df5.jpg?1562719780", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/6/e/6e6499cb-6073-4c94-8c82-47f489094df5.jpg?1562719780"}, "mana_cost": "{1}{B}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "As an additional cost to cast this spell, pay 3 life.\nCounter target creature spell.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "5f06acf3-8123-4a78-b2e7-089b0b775a4a", "set": "mir", "set_name": "Mirage", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/5f06acf3-8123-4a78-b2e7-089b0b775a4a", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Amir&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/mir?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/6e6499cb-6073-4c94-8c82-47f489094df5/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A6d87415b-0618-48e1-9510-320c4611ecda&unique=prints", "collector_number": "152", "digital": false, "rarity": "uncommon", "flavor_text": "\"Life for life: this is the immutable law.\"\n\u2014Panya, Granger Guildmage", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Robert Bliss", "artist_ids": ["df700ada-8491-4072-a261-e12b3225986d"], "illustration_id": "0ee336a4-2105-419a-a1b0-2415335e8042", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 4456, "prices": {"usd": "3.68", "usd_foil": null, "usd_etched": null, "eur": "1.85", "eur_foil": null, "tix": "0.09"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=3321", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Withering+Boon&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Withering+Boon&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Withering+Boon"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/5299?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Withering+Boon&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/7443?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "bae30b7d-9306-46ef-adea-c4057f59c9c1", "oracle_id": "b828251c-86a9-454f-9852-d0876d0f5153", "multiverse_ids": [442963], "mtgo_id": 67615, "arena_id": 67254, "tcgplayer_id": 162243, "cardmarket_id": 319888, "name": "Wizard's Retort", "lang": "en", "released_at": "2018-04-27", "uri": "https://api.scryfall.com/cards/bae30b7d-9306-46ef-adea-c4057f59c9c1", "scryfall_uri": "https://scryfall.com/card/dom/75/wizards-retort?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/b/a/bae30b7d-9306-46ef-adea-c4057f59c9c1.jpg?1562741944", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/a/bae30b7d-9306-46ef-adea-c4057f59c9c1.jpg?1562741944", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/b/a/bae30b7d-9306-46ef-adea-c4057f59c9c1.jpg?1562741944", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/b/a/bae30b7d-9306-46ef-adea-c4057f59c9c1.png?1562741944", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/a/bae30b7d-9306-46ef-adea-c4057f59c9c1.jpg?1562741944", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/b/a/bae30b7d-9306-46ef-adea-c4057f59c9c1.jpg?1562741944"}, "mana_cost": "{1}{U}{U}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "This spell costs {1} less to cast if you control a Wizard.\nCounter target spell.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "be1daba3-51c9-4e7e-9212-36e68addc26c", "set": "dom", "set_name": "Dominaria", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/be1daba3-51c9-4e7e-9212-36e68addc26c", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Adom&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/dom?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/bae30b7d-9306-46ef-adea-c4057f59c9c1/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ab828251c-86a9-454f-9852-d0876d0f5153&unique=prints", "collector_number": "75", "digital": false, "rarity": "uncommon", "flavor_text": "\"The second mage learned to dissipate blasts of lightning. Threat and response: thus did the study of magic progress.\"\n\u2014Naban, dean of iteration", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Grzegorz Rutkowski", "artist_ids": ["b5f49d0d-8056-48e3-b614-090e656b4f9c"], "illustration_id": "d4fd1dff-401c-43ed-81ec-91b51a04dfef", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 2555, "penny_rank": 2993, "prices": {"usd": "0.23", "usd_foil": "1.71", "usd_etched": null, "eur": "0.13", "eur_foil": "0.20", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=442963", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Wizard%27s+Retort&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Wizard%27s+Retort&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Wizard%27s+Retort"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/162243?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Wizard%27s+Retort&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/67615?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "c6704458-6e9e-4795-a56d-25b68fbf9672", "oracle_id": "41cdeb52-e90f-44f8-94d2-23aa032c4870", "multiverse_ids": [527371], "mtgo_id": 91670, "arena_id": 77189, "tcgplayer_id": 243104, "cardmarket_id": 571093, "name": "You Find the Villains' Lair", "lang": "en", "released_at": "2021-07-23", "uri": "https://api.scryfall.com/cards/c6704458-6e9e-4795-a56d-25b68fbf9672", "scryfall_uri": "https://scryfall.com/card/afr/84/you-find-the-villains-lair?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/c/6/c6704458-6e9e-4795-a56d-25b68fbf9672.jpg?1627704159", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/6/c6704458-6e9e-4795-a56d-25b68fbf9672.jpg?1627704159", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/c/6/c6704458-6e9e-4795-a56d-25b68fbf9672.jpg?1627704159", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/c/6/c6704458-6e9e-4795-a56d-25b68fbf9672.png?1627704159", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/6/c6704458-6e9e-4795-a56d-25b68fbf9672.jpg?1627704159", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/c/6/c6704458-6e9e-4795-a56d-25b68fbf9672.jpg?1627704159"}, "mana_cost": "{1}{U}{U}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Choose one \u2014\n\u2022 Foil Their Scheme \u2014 Counter target spell.\n\u2022 Learn Their Secrets \u2014 Draw two cards, then discard two cards.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "e1ef87ba-ba92-4573-817f-543b996d2851", "set": "afr", "set_name": "Adventures in the Forgotten Realms", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/e1ef87ba-ba92-4573-817f-543b996d2851", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aafr&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/afr?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/c6704458-6e9e-4795-a56d-25b68fbf9672/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A41cdeb52-e90f-44f8-94d2-23aa032c4870&unique=prints", "collector_number": "84", "digital": false, "rarity": "common", "flavor_text": "\"Give me just a moment! I almost have it.\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Gabor Szikszai", "artist_ids": ["44c3877f-8771-43dc-9e40-f4c765f59d2e"], "illustration_id": "a82db12e-a9ac-4d14-a1d2-821d387acf4e", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 3170, "penny_rank": 5233, "preview": {"source": "Wizards of the Coast", "source_uri": "", "previewed_at": "2021-06-29"}, "prices": {"usd": "0.08", "usd_foil": "0.16", "usd_etched": null, "eur": "0.06", "eur_foil": "0.04", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=527371", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=You+Find+the+Villains%27+Lair&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=You+Find+the+Villains%27+Lair&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=You+Find+the+Villains%27+Lair"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/243104?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=You+Find+the+Villains%27+Lair&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/91670?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}]} \ No newline at end of file +{"has_more": false, "data": [{"name": "Rust", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/d/ad4974c8-34c5-4290-b325-7586a67f6d56.jpg?1592364545", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/d/ad4974c8-34c5-4290-b325-7586a67f6d56.jpg?1592364545"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Sage's Dousing", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/5/75ccd5f6-b363-433f-9e98-f65e10b10bc9.jpg?1562879335", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/5/75ccd5f6-b363-433f-9e98-f65e10b10bc9.jpg?1562879335"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Saw It Coming", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/7/877a1bb9-5eae-453a-bec0-a9de20ea6815.jpg?1631047574", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/7/877a1bb9-5eae-453a-bec0-a9de20ea6815.jpg?1631047574"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Scatter Arc", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/2/32ed969f-2c8e-4421-9448-dc5a2afdc81d.jpg?1561821983", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/2/32ed969f-2c8e-4421-9448-dc5a2afdc81d.jpg?1561821983"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Scattering Stroke", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/5/c536c1ce-a012-4d77-ab29-8574be164731.jpg?1562367009", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/5/c536c1ce-a012-4d77-ab29-8574be164731.jpg?1562367009"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Scatter to the Winds", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/7/d73ad49f-fe15-4fe5-9731-fd71d31c1e7f.jpg?1562946348", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/7/d73ad49f-fe15-4fe5-9731-fd71d31c1e7f.jpg?1562946348"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Scent of Brine", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/1/d117bf8d-23ec-4f9d-99d0-3a990c5f7075.jpg?1562445215", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/1/d117bf8d-23ec-4f9d-99d0-3a990c5f7075.jpg?1562445215"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Second Guess", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/d/0d22d093-8e89-4d54-ac04-14c8759de3ea.jpg?1592708686", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/d/0d22d093-8e89-4d54-ac04-14c8759de3ea.jpg?1592708686"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Silumgar's Command", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/a/ba26dbbc-d4a2-44a1-8e6b-affe61f43a34.jpg?1562792137", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/a/ba26dbbc-d4a2-44a1-8e6b-affe61f43a34.jpg?1562792137"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Silumgar's Scorn", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/7/077bee72-62f6-4d90-8557-ff9cac42ec9a.jpg?1562782102", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/7/077bee72-62f6-4d90-8557-ff9cac42ec9a.jpg?1562782102"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Sinister Sabotage", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/c/6cbef36d-7170-424f-8fb1-8e7e112b7f0b.jpg?1572892841", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/c/6cbef36d-7170-424f-8fb1-8e7e112b7f0b.jpg?1572892841"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Soul Manipulation", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/c/bcd3cb05-c6f9-435a-a0e7-1f85da4a36eb.jpg?1562643969", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/c/bcd3cb05-c6f9-435a-a0e7-1f85da4a36eb.jpg?1562643969"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Spell Blast", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/2/42d7af6a-bfd1-4e89-965a-68336507a9ee.jpg?1562828463", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/2/42d7af6a-bfd1-4e89-965a-68336507a9ee.jpg?1562828463"}, "reprint": true, "digital": false, "set_type": "core"}, {"name": "Spell Blast", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/f/5fe58a24-f6a6-4858-82a5-0ca1d524efe1.jpg?1562054243", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/f/5fe58a24-f6a6-4858-82a5-0ca1d524efe1.jpg?1562054243"}, "reprint": true, "digital": false, "set_type": "expansion"}, {"name": "Spell Blast", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/0/70e4584f-6e44-4ff8-8313-c8791e0156af.jpg?1562591827", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/0/70e4584f-6e44-4ff8-8313-c8791e0156af.jpg?1562591827"}, "reprint": true, "digital": false, "set_type": "core"}, {"name": "Spell Blast", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/4/845734da-ab03-4dbc-bb5f-96481d3b8e88.jpg?1559591342", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/4/845734da-ab03-4dbc-bb5f-96481d3b8e88.jpg?1559591342"}, "reprint": false, "digital": false, "set_type": "core"}, {"name": "Spell Burst", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/1/8169929c-641f-41c8-a48e-1a7d0c57726b.jpg?1619394723", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/1/8169929c-641f-41c8-a48e-1a7d0c57726b.jpg?1619394723"}, "reprint": true, "digital": false, "set_type": "masters"}, {"name": "Spell Burst", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/9/f95c8015-fd7d-4329-ab23-aec37a824083.jpg?1562947751", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/9/f95c8015-fd7d-4329-ab23-aec37a824083.jpg?1562947751"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Spell Contortion", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/b/4b748d8b-898f-4b55-bc33-f5bbbc823c45.jpg?1562286779", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/b/4b748d8b-898f-4b55-bc33-f5bbbc823c45.jpg?1562286779"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Spell Counter", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/3/e3d323f0-334f-49d1-b338-24c4b854a112.jpg?1562489832", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/3/e3d323f0-334f-49d1-b338-24c4b854a112.jpg?1562489832"}, "reprint": false, "digital": false, "set_type": "funny"}, {"name": "Spell Crumple", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/2/2247df4a-c5d8-4b34-b3a6-3c958eb65f94.jpg?1592713127", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/2/2247df4a-c5d8-4b34-b3a6-3c958eb65f94.jpg?1592713127"}, "reprint": false, "digital": false, "set_type": "commander"}, {"name": "Spelljack", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/e/3eda8c7b-ce35-482a-bece-52a30cc78a9a.jpg?1562629500", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/e/3eda8c7b-ce35-482a-bece-52a30cc78a9a.jpg?1562629500"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Spell Pierce", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/e/beb42273-935b-4bda-849e-c163606cf89e.jpg?1654566963", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/e/beb42273-935b-4bda-849e-c163606cf89e.jpg?1654566963"}, "reprint": true, "digital": false, "set_type": "expansion"}, {"name": "Spell Pierce", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/b/6bf4dfc0-c58b-4535-b660-54ceaa6e0217.jpg?1562557054", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/b/6bf4dfc0-c58b-4535-b660-54ceaa6e0217.jpg?1562557054"}, "reprint": true, "digital": false, "set_type": "expansion"}, {"name": "Spell Pierce", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/b/cb3d3901-e4a6-45ab-a7b5-c65d91e1875e.jpg?1562616640", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/b/cb3d3901-e4a6-45ab-a7b5-c65d91e1875e.jpg?1562616640"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Spell Pierce", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/3/d3c8f1c8-2b57-41a3-abeb-77ac7de62fa1.jpg?1656006437", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/3/d3c8f1c8-2b57-41a3-abeb-77ac7de62fa1.jpg?1656006437"}, "reprint": true, "frame_effects": ["inverted"], "digital": false, "set_type": "masters"}, {"name": "Spell Pierce", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/4/a4f8b11a-6b21-4532-96c9-bdb2cad603e8.jpg?1599332212", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/4/a4f8b11a-6b21-4532-96c9-bdb2cad603e8.jpg?1599332212"}, "reprint": true, "digital": false, "set_type": "box"}, {"name": "Spell Pierce", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/e/eef1f68a-b27c-4e81-9a3c-dccb86771bec.jpg?1562942998", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/e/eef1f68a-b27c-4e81-9a3c-dccb86771bec.jpg?1562942998"}, "reprint": true, "digital": false, "set_type": "masterpiece"}, {"name": "Spell Rupture", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/2/7267fcec-0879-4743-a45f-35057ccb2596.jpg?1561831328", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/2/7267fcec-0879-4743-a45f-35057ccb2596.jpg?1561831328"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Spellshift", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/5/f5c897a6-5835-42ac-8cc7-e8d9fc1e7c77.jpg?1562586074", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/5/f5c897a6-5835-42ac-8cc7-e8d9fc1e7c77.jpg?1562586074"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Spell Shrivel", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/f/efa110cb-f091-48f0-bc62-80f5f18568e8.jpg?1562951938", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/f/efa110cb-f091-48f0-bc62-80f5f18568e8.jpg?1562951938"}, "reprint": false, "frame_effects": ["devoid"], "digital": false, "set_type": "expansion"}, {"name": "Spell Snare", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/5/35554fdf-c70a-4baa-a35a-414caa9978be.jpg?1593272766", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/5/35554fdf-c70a-4baa-a35a-414caa9978be.jpg?1593272766"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Spell Snip", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/6/d6870203-ece9-4fe0-912b-2dcf685f3eb0.jpg?1562709543", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/6/d6870203-ece9-4fe0-912b-2dcf685f3eb0.jpg?1562709543"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Spell Snuff", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/f/efadce19-07f4-47af-abc0-a436bafcdd65.jpg?1562201508", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/f/efadce19-07f4-47af-abc0-a436bafcdd65.jpg?1562201508"}, "reprint": false, "digital": false, "set_type": "draft_innovation"}, {"name": "Spell Suck", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/6/f631bd92-2046-468d-8b10-d583a318ed24.jpg?1562946926", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/6/f631bd92-2046-468d-8b10-d583a318ed24.jpg?1562946926"}, "reprint": false, "digital": false, "set_type": "funny"}, {"name": "Spell Swindle", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/e/6e619ada-e9ce-4758-afd8-8def853877eb.jpg?1562557238", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/e/6e619ada-e9ce-4758-afd8-8def853877eb.jpg?1562557238"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Spell Syphon", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/8/b883113c-e52b-4633-b4a4-016093327b6a.jpg?1562835117", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/8/b883113c-e52b-4633-b4a4-016093327b6a.jpg?1562835117"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Split Decision", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/3/83ed7ebe-48be-4e6e-a293-b81484f85142.jpg?1562865914", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/3/83ed7ebe-48be-4e6e-a293-b81484f85142.jpg?1562865914"}, "reprint": false, "digital": false, "set_type": "draft_innovation"}, {"name": "Squelch", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/9/29421dd2-70a7-4623-afe0-ca4cb415ec87.jpg?1562758853", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/9/29421dd2-70a7-4623-afe0-ca4cb415ec87.jpg?1562758853"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Statute of Denial", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/f/af13770d-dddb-4b78-9cd3-4a0dc50472f4.jpg?1562792750", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/f/af13770d-dddb-4b78-9cd3-4a0dc50472f4.jpg?1562792750"}, "reprint": false, "digital": false, "set_type": "core"}, {"name": "Steel Sabotage", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/b/bb40de7c-1905-4615-844b-4abc231fb01e.jpg?1562614249", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/b/bb40de7c-1905-4615-844b-4abc231fb01e.jpg?1562614249"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Stifle", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/d/2d7643c0-b2db-478f-944e-b27b77bad3eb.jpg?1562527068", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/d/2d7643c0-b2db-478f-944e-b27b77bad3eb.jpg?1562527068"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Stifle", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/a/ea24228f-da16-46eb-9dcf-a377286b6168.jpg?1562942013", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/a/ea24228f-da16-46eb-9dcf-a377286b6168.jpg?1562942013"}, "reprint": true, "digital": false, "set_type": "masterpiece"}, {"name": "Stifle", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/6/c6228e16-72d4-4771-9e3f-a83ec856d315.jpg?1562636845", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/6/c6228e16-72d4-4771-9e3f-a83ec856d315.jpg?1562636845"}, "reprint": true, "digital": false, "set_type": "promo"}, {"name": "Stoic Rebuttal", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/2/f2805239-f30a-4eca-a10b-41673daaa287.jpg?1562825062", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/2/f2805239-f30a-4eca-a10b-41673daaa287.jpg?1562825062"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Stubborn Denial", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/f/6f8626c4-306f-4e9d-8840-2bb73fe87e87.jpg?1562788344", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/f/6f8626c4-306f-4e9d-8840-2bb73fe87e87.jpg?1562788344"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Stymied Hopes", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/7/5702b757-5be5-4a48-bc73-a87ec4f3193b.jpg?1562818334", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/7/5702b757-5be5-4a48-bc73-a87ec4f3193b.jpg?1562818334"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Sublime Epiphany", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/d/ad1bcb44-a562-4f66-b862-6d0ef3546ab4.jpg?1594735795", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/d/ad1bcb44-a562-4f66-b862-6d0ef3546ab4.jpg?1594735795"}, "reprint": false, "digital": false, "set_type": "core"}, {"name": "Suffocating Blast", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/2/c2a70297-2a7b-4a0c-ace5-cd61bfe6dafd.jpg?1562940975", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/2/c2a70297-2a7b-4a0c-ace5-cd61bfe6dafd.jpg?1562940975"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Summary Dismissal", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/b/0b75794d-3334-4b4d-9446-0a251dd3bd15.jpg?1576384222", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/b/0b75794d-3334-4b4d-9446-0a251dd3bd15.jpg?1576384222"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Summoner's Bane", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/d/ed82afba-df51-4bd9-853c-d3ef323095a6.jpg?1562618060", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/d/ed82afba-df51-4bd9-853c-d3ef323095a6.jpg?1562618060"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Supreme Will", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/6/b677e7cb-7b5d-4993-8f13-881493c498ce.jpg?1562811958", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/6/b677e7cb-7b5d-4993-8f13-881493c498ce.jpg?1562811958"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Swan Song", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/f/efd26041-059b-4a1e-9ce8-c3cfd69a3721.jpg?1562837218", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/f/efd26041-059b-4a1e-9ce8-c3cfd69a3721.jpg?1562837218"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Swan Song", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/0/40fc6412-df1c-4bfa-842b-8c3a6f14e19d.jpg?1599358784", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/0/40fc6412-df1c-4bfa-842b-8c3a6f14e19d.jpg?1599358784"}, "reprint": true, "digital": false, "set_type": "box"}, {"name": "Swift Silence", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/1/a1c5f733-e126-4c22-b528-18bdb90b509b.jpg?1593273784", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/1/a1c5f733-e126-4c22-b528-18bdb90b509b.jpg?1593273784"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Syncopate", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/8/08375017-4432-4296-9799-966db145ed7c.jpg?1643588741", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/8/08375017-4432-4296-9799-966db145ed7c.jpg?1643588741"}, "reprint": true, "digital": false, "set_type": "expansion"}, {"name": "Syncopate", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/8/f81739a5-35a7-4812-a7af-e1951bf5579c.jpg?1617884773", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/8/f81739a5-35a7-4812-a7af-e1951bf5579c.jpg?1617884773"}, "reprint": true, "digital": false, "set_type": "expansion"}, {"name": "Syncopate", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/a/ba6f218f-83b0-4b68-a00f-0327cd79f32a.jpg?1562792232", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/a/ba6f218f-83b0-4b68-a00f-0327cd79f32a.jpg?1562792232"}, "reprint": true, "digital": false, "set_type": "expansion"}, {"name": "Syncopate", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/7/b7850794-4c85-4844-a461-650cd4eaec93.jpg?1562929140", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/7/b7850794-4c85-4844-a461-650cd4eaec93.jpg?1562929140"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Syphon Essence", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/3/435a2d31-ac2c-45aa-8369-6c2d6fbba4e4.jpg?1643588767", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/3/435a2d31-ac2c-45aa-8369-6c2d6fbba4e4.jpg?1643588767"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Tale's End", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/4/1421115b-9a98-4ab2-bcb2-7d8899ce12db.jpg?1592516519", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/4/1421115b-9a98-4ab2-bcb2-7d8899ce12db.jpg?1592516519"}, "reprint": false, "digital": false, "set_type": "core"}, {"name": "Teferi's Response", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/3/f3bb2df8-c559-4a34-83b0-d48fbc694cc8.jpg?1562944007", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/3/f3bb2df8-c559-4a34-83b0-d48fbc694cc8.jpg?1562944007"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Temur Charm", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/2/e2ee3e36-a849-42b0-b84b-027a08427c35.jpg?1562794960", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/2/e2ee3e36-a849-42b0-b84b-027a08427c35.jpg?1562794960"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Test of Talents", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/e/6e2b6236-b40c-430c-98b0-7940b942657a.jpg?1624590572", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/e/6e2b6236-b40c-430c-98b0-7940b942657a.jpg?1624590572"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Thassa's Intervention", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/c/2c1241d0-20d4-4eab-970d-74e476f023b4.jpg?1584279765", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/c/2c1241d0-20d4-4eab-970d-74e476f023b4.jpg?1584279765"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Thassa's Rebuff", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/1/816a6ff7-cede-4346-b3e6-aee33aefac3a.jpg?1593091807", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/1/816a6ff7-cede-4346-b3e6-aee33aefac3a.jpg?1593091807"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Thoughtbind", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/9/7919cf41-67bb-4dc4-90de-cf3fa2096c2e.jpg?1593860622", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/9/7919cf41-67bb-4dc4-90de-cf3fa2096c2e.jpg?1593860622"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Thought Collapse", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/4/948b569b-6341-418b-99b5-f79dfb3fe8dd.jpg?1584830401", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/4/948b569b-6341-418b-99b5-f79dfb3fe8dd.jpg?1584830401"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Thwart", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/1/c12a0717-e9ea-4be3-a29f-179671ed4489.jpg?1562383015", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/1/c12a0717-e9ea-4be3-a29f-179671ed4489.jpg?1562383015"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Tibalt's Trickery", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/d/dd921e27-3e08-438c-bec2-723226d35175.jpg?1652278784", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/d/dd921e27-3e08-438c-bec2-723226d35175.jpg?1652278784"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Time Stop", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/9/f968c5e9-12a8-4542-90b4-84e0238fa375.jpg?1562766084", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/9/f968c5e9-12a8-4542-90b4-84e0238fa375.jpg?1562766084"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Trap Essence", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/0/c063b2b8-5243-43a8-8cb0-927116003bda.jpg?1562701652", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/0/c063b2b8-5243-43a8-8cb0-927116003bda.jpg?1562701652"}, "reprint": true, "digital": false, "set_type": "promo"}, {"name": "Traumatic Visions", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/1/f1e8b03d-9265-4699-b626-5efa73292d43.jpg?1562804612", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/1/f1e8b03d-9265-4699-b626-5efa73292d43.jpg?1562804612"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Trickbind", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/2/f2e58ff2-dea3-42b3-8c22-3e6202a7d433.jpg?1562946300", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/2/f2e58ff2-dea3-42b3-8c22-3e6202a7d433.jpg?1562946300"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Turn Aside", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/b/3b7573c2-484c-4b4e-9c26-0f005bd1daee.jpg?1576384240", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/b/3b7573c2-484c-4b4e-9c26-0f005bd1daee.jpg?1576384240"}, "reprint": true, "digital": false, "set_type": "expansion"}, {"name": "Turn Aside", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/6/56226f57-6ff0-430e-aba6-6b3dd51f8d3c.jpg?1562817712", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/6/56226f57-6ff0-430e-aba6-6b3dd51f8d3c.jpg?1562817712"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Undermine", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/3/2334bc71-5f85-47ff-b393-601a1e746a4e.jpg?1562902053", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/3/2334bc71-5f85-47ff-b393-601a1e746a4e.jpg?1562902053"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Undersimplify", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/e/3eaebdc1-7a20-45db-9d45-0238fc917496.jpg?1656479084", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/e/3eaebdc1-7a20-45db-9d45-0238fc917496.jpg?1656479084"}, "reprint": false, "digital": true, "set_type": "alchemy"}, {"name": "Unified Will", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/c/6cb50db7-f1d4-4f9d-ac60-564398af79ea.jpg?1562704807", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/c/6cb50db7-f1d4-4f9d-ac60-564398af79ea.jpg?1562704807"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Unsubstantiate", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/a/ba5dac3d-4b49-44c4-a7b2-0a99485252c9.jpg?1576384246", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/a/ba5dac3d-4b49-44c4-a7b2-0a99485252c9.jpg?1576384246"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Unsubstantiate", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/b/8b184d7e-46ae-450e-9228-eb605ac3ad41.jpg?1562924384", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/b/8b184d7e-46ae-450e-9228-eb605ac3ad41.jpg?1562924384"}, "reprint": true, "digital": false, "set_type": "promo"}, {"name": "Unwind", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/7/97da6607-9131-4f8b-8af3-63439a59b78b.jpg?1562739909", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/7/97da6607-9131-4f8b-8af3-63439a59b78b.jpg?1562739909"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Verdant Command", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/3/83031ea8-a6c9-4318-af16-bba701dd76bb.jpg?1626097990", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/3/83031ea8-a6c9-4318-af16-bba701dd76bb.jpg?1626097990"}, "reprint": false, "digital": false, "set_type": "draft_innovation"}, {"name": "Verdant Command", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/7/070a3f30-0839-4678-a37c-475ee189811e.jpg?1626101883", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/7/070a3f30-0839-4678-a37c-475ee189811e.jpg?1626101883"}, "reprint": false, "frame_effects": ["showcase"], "digital": false, "set_type": "draft_innovation"}, {"name": "Very Cryptic Command", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/8/d8e84dd2-01f9-4fad-8a24-cc86424d09a2.jpg?1562940811", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/8/d8e84dd2-01f9-4fad-8a24-cc86424d09a2.jpg?1562940811"}, "reprint": false, "digital": false, "set_type": "funny"}, {"name": "Vex", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/2/e28a9f15-5469-4dc2-8a73-646f854fec7e.jpg?1562640140", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/2/e28a9f15-5469-4dc2-8a73-646f854fec7e.jpg?1562640140"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Void Shatter", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/b/4bf13c5e-3968-48ad-ba08-99ba58873223.jpg?1562910363", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/b/4bf13c5e-3968-48ad-ba08-99ba58873223.jpg?1562910363"}, "reprint": false, "frame_effects": ["devoid"], "digital": false, "set_type": "expansion"}, {"name": "Voidslime", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/6/e640664f-5cc7-4970-b966-6e6e5ae09c5a.jpg?1640462194", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/6/e640664f-5cc7-4970-b966-6e6e5ae09c5a.jpg?1640462194"}, "reprint": true, "digital": false, "set_type": "box"}, {"name": "Voidslime", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/6/265c269e-1b5e-4e5f-873f-7733bd4142aa.jpg?1562384947", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/6/265c269e-1b5e-4e5f-873f-7733bd4142aa.jpg?1562384947"}, "reprint": true, "digital": false, "set_type": "promo"}, {"name": "Warping Wail", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/2/f2ef4db8-b51c-4f52-84f1-6fee31c4a14c.jpg?1562943843", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/2/f2ef4db8-b51c-4f52-84f1-6fee31c4a14c.jpg?1562943843"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Wash Away", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/3/43411ade-be80-4535-8baa-7055e78496df.jpg?1643588844", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/3/43411ade-be80-4535-8baa-7055e78496df.jpg?1643588844"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Whirlwind Denial", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/e/9e127856-bedd-40a9-9e8e-d1f9fbefe07d.jpg?1581479658", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/e/9e127856-bedd-40a9-9e8e-d1f9fbefe07d.jpg?1581479658"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Whirlwind Denial", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/7/f7a0c25a-8760-44ea-a418-fcd4a9761632.jpg?1623594049", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/7/f7a0c25a-8760-44ea-a418-fcd4a9761632.jpg?1623594049"}, "reprint": true, "digital": false, "set_type": "masterpiece"}, {"name": "Wild Ricochet", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/7/d76f09bc-b49a-4ad2-be2d-2a191d41b86d.jpg?1562370137", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/7/d76f09bc-b49a-4ad2-be2d-2a191d41b86d.jpg?1562370137"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Withering Boon", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/e/6e6499cb-6073-4c94-8c82-47f489094df5.jpg?1562719780", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/e/6e6499cb-6073-4c94-8c82-47f489094df5.jpg?1562719780"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Wizard's Retort", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/a/bae30b7d-9306-46ef-adea-c4057f59c9c1.jpg?1562741944", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/a/bae30b7d-9306-46ef-adea-c4057f59c9c1.jpg?1562741944"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "You Find the Villains' Lair", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/6/c6704458-6e9e-4795-a56d-25b68fbf9672.jpg?1627704159", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/6/c6704458-6e9e-4795-a56d-25b68fbf9672.jpg?1627704159"}, "reprint": false, "digital": false, "set_type": "expansion"}]} \ No newline at end of file diff --git a/web/public/mtg/jsons/terror1.json b/web/public/mtg/jsons/terror1.json index 022a6610..4bbb9a03 100644 --- a/web/public/mtg/jsons/terror1.json +++ b/web/public/mtg/jsons/terror1.json @@ -1 +1 @@ -{"object": "list", "total_cards": 369, "has_more": true, "next_page": "https://api.scryfall.com/cards/search?format=json&include_extras=true&include_multilingual=false&order=name&page=2&q=otag%3Acreature-removal+o%3A%2Fdestroy+target.%2A+%28creature%7Cpermanent%29%2F+%28t%3Ainstant+or+t%3Asorcery%29+o%3Atarget+not%3Aadventure+-%28set%3Asld+%28%28cn%3E%3D231+cn%3C%3D233%29+or+%28cn%3E%3D321+cn%3C%3D324%29+or+%28cn%3E%3D185+cn%3C%3D189%29+or+%28cn%3E%3D138+cn%3C%3D142%29+or+%28cn%3E%3D364+cn%3C%3D368%29+or+cn%3A669+or+cn%3A670%29%29+-name%3A%2F%5Ea-%2F+not%3Adfc+not%3Asplit+-set%3Acmb2+-set%3Acmb1+-set%3Aplist+-set%3Adbl+-frame%3Aextendedart+language%3Aenglish&unique=art", "data": [{"object": "card", "id": "3b1e92b4-6e53-4dba-a572-c67e01965ac5", "oracle_id": "1c747fe2-289e-492a-a846-aa77707e2dc3", "multiverse_ids": [253561], "mtgo_id": 46497, "mtgo_foil_id": 46498, "tcgplayer_id": 66457, "cardmarket_id": 258288, "name": "Abrupt Decay", "lang": "en", "released_at": "2012-10-05", "uri": "https://api.scryfall.com/cards/3b1e92b4-6e53-4dba-a572-c67e01965ac5", "scryfall_uri": "https://scryfall.com/card/rtr/141/abrupt-decay?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/3/b/3b1e92b4-6e53-4dba-a572-c67e01965ac5.jpg?1562785076", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/b/3b1e92b4-6e53-4dba-a572-c67e01965ac5.jpg?1562785076", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/3/b/3b1e92b4-6e53-4dba-a572-c67e01965ac5.jpg?1562785076", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/3/b/3b1e92b4-6e53-4dba-a572-c67e01965ac5.png?1562785076", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/b/3b1e92b4-6e53-4dba-a572-c67e01965ac5.jpg?1562785076", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/3/b/3b1e92b4-6e53-4dba-a572-c67e01965ac5.jpg?1562785076"}, "mana_cost": "{B}{G}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "This spell can't be countered.\nDestroy target nonland permanent with mana value 3 or less.", "colors": ["B", "G"], "color_identity": ["B", "G"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "80b2374d-c5f1-403e-9772-f6c806fd275e", "set": "rtr", "set_name": "Return to Ravnica", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/80b2374d-c5f1-403e-9772-f6c806fd275e", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Artr&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/rtr?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/3b1e92b4-6e53-4dba-a572-c67e01965ac5/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A1c747fe2-289e-492a-a846-aa77707e2dc3&unique=prints", "collector_number": "141", "digital": false, "rarity": "rare", "watermark": "golgari", "flavor_text": "The Izzet quickly suspended their policy of lifetime guarantees.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Svetlin Velinov", "artist_ids": ["ffd063ae-c097-4f26-b2e6-b1e2137708bc"], "illustration_id": "740f1a76-af24-416e-bd7a-1521a6b175d2", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 407, "prices": {"usd": "3.18", "usd_foil": "12.37", "usd_etched": null, "eur": "3.50", "eur_foil": "14.30", "tix": "1.30"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=253561", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Abrupt+Decay&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Abrupt+Decay&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Abrupt+Decay"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/66457?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Abrupt+Decay&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/46497?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "0b10ef54-368c-4841-ab5d-f2e8e1265c83", "oracle_id": "1c747fe2-289e-492a-a846-aa77707e2dc3", "multiverse_ids": [], "tcgplayer_id": 121730, "cardmarket_id": 289535, "name": "Abrupt Decay", "lang": "en", "released_at": "2016-06-18", "uri": "https://api.scryfall.com/cards/0b10ef54-368c-4841-ab5d-f2e8e1265c83", "scryfall_uri": "https://scryfall.com/card/pwcq/2016/abrupt-decay?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/0/b/0b10ef54-368c-4841-ab5d-f2e8e1265c83.jpg?1561756631", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/b/0b10ef54-368c-4841-ab5d-f2e8e1265c83.jpg?1561756631", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/0/b/0b10ef54-368c-4841-ab5d-f2e8e1265c83.jpg?1561756631", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/0/b/0b10ef54-368c-4841-ab5d-f2e8e1265c83.png?1561756631", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/b/0b10ef54-368c-4841-ab5d-f2e8e1265c83.jpg?1561756631", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/0/b/0b10ef54-368c-4841-ab5d-f2e8e1265c83.jpg?1561756631"}, "mana_cost": "{B}{G}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "This spell can't be countered.\nDestroy target nonland permanent with mana value 3 or less.", "colors": ["B", "G"], "color_identity": ["B", "G"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": true, "nonfoil": false, "finishes": ["foil"], "oversized": false, "promo": true, "reprint": true, "variation": false, "set_id": "b3bbcbc0-769d-42df-80f3-924385ac4f67", "set": "pwcq", "set_name": "World Magic Cup Qualifiers", "set_type": "promo", "set_uri": "https://api.scryfall.com/sets/b3bbcbc0-769d-42df-80f3-924385ac4f67", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Apwcq&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/pwcq?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/0b10ef54-368c-4841-ab5d-f2e8e1265c83/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A1c747fe2-289e-492a-a846-aa77707e2dc3&unique=prints", "collector_number": "2016", "digital": false, "rarity": "rare", "watermark": "wotc", "flavor_text": "The worst part isn't the pain, or the smell, or even the fear of death. It's hearing the clatter of bone on stone and knowing the bones are yours.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Seb McKinnon", "artist_ids": ["ad4caca0-8d89-44ce-a1a6-d5ca905bd6fb"], "illustration_id": "d7bc54ca-db6a-4f06-8b56-908f7eff0daf", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "promo_types": ["tourney"], "edhrec_rank": 407, "prices": {"usd": null, "usd_foil": "37.35", "usd_etched": null, "eur": null, "eur_foil": "17.98", "tix": null}, "related_uris": {"tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Abrupt+Decay&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Abrupt+Decay&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Abrupt+Decay"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/121730?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Abrupt+Decay&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Abrupt+Decay&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "ad402e65-6fac-4005-a2d4-592983df0c30", "oracle_id": "205ffa76-ff8e-4405-b21a-42358a9883c2", "multiverse_ids": [1556], "tcgplayer_id": 3785, "cardmarket_id": 7102, "name": "Active Volcano", "lang": "en", "released_at": "1994-06-01", "uri": "https://api.scryfall.com/cards/ad402e65-6fac-4005-a2d4-592983df0c30", "scryfall_uri": "https://scryfall.com/card/leg/130/active-volcano?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/a/d/ad402e65-6fac-4005-a2d4-592983df0c30.jpg?1584237356", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/d/ad402e65-6fac-4005-a2d4-592983df0c30.jpg?1584237356", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/a/d/ad402e65-6fac-4005-a2d4-592983df0c30.jpg?1584237356", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/a/d/ad402e65-6fac-4005-a2d4-592983df0c30.png?1584237356", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/d/ad402e65-6fac-4005-a2d4-592983df0c30.jpg?1584237356", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/a/d/ad402e65-6fac-4005-a2d4-592983df0c30.jpg?1584237356"}, "mana_cost": "{R}", "cmc": 1.0, "type_line": "Instant", "oracle_text": "Choose one \u2014\n\u2022 Destroy target blue permanent.\n\u2022 Return target Island to its owner's hand.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "legal", "premodern": "legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "78c50b4b-b220-455b-a2d5-cee458fa56f3", "set": "leg", "set_name": "Legends", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/78c50b4b-b220-455b-a2d5-cee458fa56f3", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aleg&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/leg?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/ad402e65-6fac-4005-a2d4-592983df0c30/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A205ffa76-ff8e-4405-b21a-42358a9883c2&unique=prints", "collector_number": "130", "digital": false, "rarity": "common", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Justin Hampton", "artist_ids": ["9af01712-e56b-4865-80d8-c77a69750077"], "illustration_id": "7b483552-1b3d-4728-a55c-b149aad57da5", "border_color": "black", "frame": "1993", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 13828, "penny_rank": 12782, "prices": {"usd": "0.65", "usd_foil": null, "usd_etched": null, "eur": "1.93", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=1556", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Active+Volcano&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Active+Volcano&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Active+Volcano"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/3785?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Active+Volcano&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Active+Volcano&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "64d9c182-cbb3-4791-90dd-0e533ddeebda", "oracle_id": "a4eb06ca-16d8-41c2-8fc6-22e73872b5b0", "multiverse_ids": [466755], "mtgo_id": 72901, "arena_id": 69786, "tcgplayer_id": 192645, "cardmarket_id": 378822, "name": "Aerial Assault", "lang": "en", "released_at": "2019-07-12", "uri": "https://api.scryfall.com/cards/64d9c182-cbb3-4791-90dd-0e533ddeebda", "scryfall_uri": "https://scryfall.com/card/m20/1/aerial-assault?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/6/4/64d9c182-cbb3-4791-90dd-0e533ddeebda.jpg?1592515927", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/4/64d9c182-cbb3-4791-90dd-0e533ddeebda.jpg?1592515927", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/6/4/64d9c182-cbb3-4791-90dd-0e533ddeebda.jpg?1592515927", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/6/4/64d9c182-cbb3-4791-90dd-0e533ddeebda.png?1592515927", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/4/64d9c182-cbb3-4791-90dd-0e533ddeebda.jpg?1592515927", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/6/4/64d9c182-cbb3-4791-90dd-0e533ddeebda.jpg?1592515927"}, "mana_cost": "{2}{W}", "cmc": 3.0, "type_line": "Sorcery", "oracle_text": "Destroy target tapped creature. You gain 1 life for each creature you control with flying.", "colors": ["W"], "color_identity": ["W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "4a787360-9767-4f44-80b1-2405dc5e39c7", "set": "m20", "set_name": "Core Set 2020", "set_type": "core", "set_uri": "https://api.scryfall.com/sets/4a787360-9767-4f44-80b1-2405dc5e39c7", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Am20&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/m20?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/64d9c182-cbb3-4791-90dd-0e533ddeebda/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aa4eb06ca-16d8-41c2-8fc6-22e73872b5b0&unique=prints", "collector_number": "1", "digital": false, "rarity": "common", "flavor_text": "\"Oh, you must be mistaken. Hawks are solitary hunters, you see.\"\n\u2014Bunder Diedreck, ornithologist", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Dan Scott", "artist_ids": ["f852fa13-137e-40f2-bbc1-0f01df09c0e0"], "illustration_id": "2ea1dd48-2d97-4fb5-b47e-04e93565c7c3", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 10376, "preview": {"source": "Limited Resources", "source_uri": "https://www.patreon.com/posts/exclusive-lr-for-27789966", "previewed_at": "2019-06-21"}, "prices": {"usd": "0.05", "usd_foil": "0.23", "usd_etched": null, "eur": "0.09", "eur_foil": "0.15", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=466755", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Aerial+Assault&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Aerial+Assault&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Aerial+Assault"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/192645?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Aerial+Assault&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/72901?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "ec3c023c-037e-495a-b7df-32be42a75f36", "oracle_id": "6bac1495-16cf-4e1e-9126-482f85322c78", "multiverse_ids": [289227], "mtgo_id": 46355, "mtgo_foil_id": 46356, "tcgplayer_id": 66517, "cardmarket_id": 258465, "name": "Aerial Predation", "lang": "en", "released_at": "2012-10-05", "uri": "https://api.scryfall.com/cards/ec3c023c-037e-495a-b7df-32be42a75f36", "scryfall_uri": "https://scryfall.com/card/rtr/113/aerial-predation?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/e/c/ec3c023c-037e-495a-b7df-32be42a75f36.jpg?1562795050", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/c/ec3c023c-037e-495a-b7df-32be42a75f36.jpg?1562795050", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/e/c/ec3c023c-037e-495a-b7df-32be42a75f36.jpg?1562795050", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/e/c/ec3c023c-037e-495a-b7df-32be42a75f36.png?1562795050", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/c/ec3c023c-037e-495a-b7df-32be42a75f36.jpg?1562795050", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/e/c/ec3c023c-037e-495a-b7df-32be42a75f36.jpg?1562795050"}, "mana_cost": "{2}{G}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Destroy target creature with flying. You gain 2 life.", "colors": ["G"], "color_identity": ["G"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "80b2374d-c5f1-403e-9772-f6c806fd275e", "set": "rtr", "set_name": "Return to Ravnica", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/80b2374d-c5f1-403e-9772-f6c806fd275e", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Artr&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/rtr?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/ec3c023c-037e-495a-b7df-32be42a75f36/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A6bac1495-16cf-4e1e-9126-482f85322c78&unique=prints", "collector_number": "113", "digital": false, "rarity": "common", "flavor_text": "In the towering trees of the Samok Stand and the predators that guard them, the might of the Ravnican wild has returned.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "BD", "artist_ids": ["250546e6-6342-4362-b229-1bed633bd8c6"], "illustration_id": "e9c15284-efe8-4676-8925-31ef50146828", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 15100, "prices": {"usd": "0.06", "usd_foil": "0.10", "usd_etched": null, "eur": "0.05", "eur_foil": "0.15", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=289227", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Aerial+Predation&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Aerial+Predation&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Aerial+Predation"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/66517?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Aerial+Predation&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/46355?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "8fa2ecf9-b53c-4f1d-9028-ca3820d043cb", "oracle_id": "4c13e2b5-961a-4031-84b1-15bd19b94286", "multiverse_ids": [19549], "mtgo_id": 13569, "mtgo_foil_id": 13570, "tcgplayer_id": 6422, "cardmarket_id": 11374, "name": "Afterlife", "lang": "en", "released_at": "1999-10-04", "uri": "https://api.scryfall.com/cards/8fa2ecf9-b53c-4f1d-9028-ca3820d043cb", "scryfall_uri": "https://scryfall.com/card/mmq/1/afterlife?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/8/f/8fa2ecf9-b53c-4f1d-9028-ca3820d043cb.jpg?1562381856", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/f/8fa2ecf9-b53c-4f1d-9028-ca3820d043cb.jpg?1562381856", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/8/f/8fa2ecf9-b53c-4f1d-9028-ca3820d043cb.jpg?1562381856", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/8/f/8fa2ecf9-b53c-4f1d-9028-ca3820d043cb.png?1562381856", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/f/8fa2ecf9-b53c-4f1d-9028-ca3820d043cb.jpg?1562381856", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/8/f/8fa2ecf9-b53c-4f1d-9028-ca3820d043cb.jpg?1562381856"}, "mana_cost": "{2}{W}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Destroy target creature. It can't be regenerated. Its controller creates a 1/1 white Spirit creature token with flying.", "colors": ["W"], "color_identity": ["W"], "keywords": [], "all_parts": [{"object": "related_card", "id": "8fa2ecf9-b53c-4f1d-9028-ca3820d043cb", "component": "combo_piece", "name": "Afterlife", "type_line": "Instant", "uri": "https://api.scryfall.com/cards/8fa2ecf9-b53c-4f1d-9028-ca3820d043cb"}, {"object": "related_card", "id": "595c4665-48e1-492e-9e62-a49ec443e161", "component": "token", "name": "Spirit", "type_line": "Token Creature \u2014 Spirit", "uri": "https://api.scryfall.com/cards/595c4665-48e1-492e-9e62-a49ec443e161"}], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "385e11a4-492b-4d07-b4a6-a1409ef829b8", "set": "mmq", "set_name": "Mercadian Masques", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/385e11a4-492b-4d07-b4a6-a1409ef829b8", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ammq&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/mmq?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/8fa2ecf9-b53c-4f1d-9028-ca3820d043cb/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A4c13e2b5-961a-4031-84b1-15bd19b94286&unique=prints", "collector_number": "1", "digital": false, "rarity": "uncommon", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Brian Sn\u00f5ddy", "artist_ids": ["770b4e16-de76-49ed-949f-84e6d2e06d25"], "illustration_id": "ac01279c-8120-4f92-8938-b9c789e3535c", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 10237, "penny_rank": 6538, "prices": {"usd": "0.24", "usd_foil": "4.70", "usd_etched": null, "eur": "0.05", "eur_foil": "1.99", "tix": "0.09"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=19549", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Afterlife&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Afterlife&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Afterlife"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/6422?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Afterlife&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/13569?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "4644694d-52e6-4d00-8cad-748899eeea84", "oracle_id": "4c13e2b5-961a-4031-84b1-15bd19b94286", "multiverse_ids": [3476], "mtgo_id": 6767, "mtgo_foil_id": 6768, "tcgplayer_id": 4961, "cardmarket_id": 8256, "name": "Afterlife", "lang": "en", "released_at": "1996-10-08", "uri": "https://api.scryfall.com/cards/4644694d-52e6-4d00-8cad-748899eeea84", "scryfall_uri": "https://scryfall.com/card/mir/1/afterlife?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/4/6/4644694d-52e6-4d00-8cad-748899eeea84.jpg?1562718804", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/6/4644694d-52e6-4d00-8cad-748899eeea84.jpg?1562718804", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/4/6/4644694d-52e6-4d00-8cad-748899eeea84.jpg?1562718804", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/4/6/4644694d-52e6-4d00-8cad-748899eeea84.png?1562718804", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/6/4644694d-52e6-4d00-8cad-748899eeea84.jpg?1562718804", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/4/6/4644694d-52e6-4d00-8cad-748899eeea84.jpg?1562718804"}, "mana_cost": "{2}{W}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Destroy target creature. It can't be regenerated. Its controller creates a 1/1 white Spirit creature token with flying.", "colors": ["W"], "color_identity": ["W"], "keywords": [], "all_parts": [{"object": "related_card", "id": "4644694d-52e6-4d00-8cad-748899eeea84", "component": "combo_piece", "name": "Afterlife", "type_line": "Instant", "uri": "https://api.scryfall.com/cards/4644694d-52e6-4d00-8cad-748899eeea84"}, {"object": "related_card", "id": "595c4665-48e1-492e-9e62-a49ec443e161", "component": "token", "name": "Spirit", "type_line": "Token Creature \u2014 Spirit", "uri": "https://api.scryfall.com/cards/595c4665-48e1-492e-9e62-a49ec443e161"}], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "5f06acf3-8123-4a78-b2e7-089b0b775a4a", "set": "mir", "set_name": "Mirage", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/5f06acf3-8123-4a78-b2e7-089b0b775a4a", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Amir&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/mir?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/4644694d-52e6-4d00-8cad-748899eeea84/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A4c13e2b5-961a-4031-84b1-15bd19b94286&unique=prints", "collector_number": "1", "digital": false, "rarity": "uncommon", "flavor_text": "Facets of life, reflections of the soul.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Pete Venters", "artist_ids": ["d54c4a1a-c0c5-4834-84db-125d341f3ad8"], "illustration_id": "3e3e0482-86db-482c-adb5-8fc9791219f2", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 10237, "penny_rank": 6538, "prices": {"usd": "0.22", "usd_foil": null, "usd_etched": null, "eur": "0.24", "eur_foil": null, "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=3476", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Afterlife&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Afterlife&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Afterlife"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/4961?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Afterlife&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/6767?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "c91a26b2-03f8-43f0-a3a4-ff6c5a3690c4", "oracle_id": "e6bef0c4-3dfc-49a8-8fec-22b2570b704b", "multiverse_ids": [4800], "mtgo_id": 9597, "mtgo_foil_id": 9598, "tcgplayer_id": 5453, "cardmarket_id": 8895, "name": "Aftershock", "lang": "en", "released_at": "1997-10-14", "uri": "https://api.scryfall.com/cards/c91a26b2-03f8-43f0-a3a4-ff6c5a3690c4", "scryfall_uri": "https://scryfall.com/card/tmp/160/aftershock?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/c/9/c91a26b2-03f8-43f0-a3a4-ff6c5a3690c4.jpg?1587857346", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/9/c91a26b2-03f8-43f0-a3a4-ff6c5a3690c4.jpg?1587857346", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/c/9/c91a26b2-03f8-43f0-a3a4-ff6c5a3690c4.jpg?1587857346", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/c/9/c91a26b2-03f8-43f0-a3a4-ff6c5a3690c4.png?1587857346", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/9/c91a26b2-03f8-43f0-a3a4-ff6c5a3690c4.jpg?1587857346", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/c/9/c91a26b2-03f8-43f0-a3a4-ff6c5a3690c4.jpg?1587857346"}, "mana_cost": "{2}{R}{R}", "cmc": 4.0, "type_line": "Sorcery", "oracle_text": "Destroy target artifact, creature, or land. Aftershock deals 3 damage to you.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "10df3a67-178e-4363-8668-34f0e6edf2a7", "set": "tmp", "set_name": "Tempest", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/10df3a67-178e-4363-8668-34f0e6edf2a7", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Atmp&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/tmp?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/c91a26b2-03f8-43f0-a3a4-ff6c5a3690c4/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ae6bef0c4-3dfc-49a8-8fec-22b2570b704b&unique=prints", "collector_number": "160", "digital": false, "rarity": "common", "flavor_text": "\"Every act of destruction has a repercussion.\"\n\u2014Karn, silver golem", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Hannibal King", "artist_ids": ["47fa68ed-4d79-4116-a562-fc0c11096e81"], "illustration_id": "2caaf169-6b03-4bea-b074-121c6ef216ce", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 9935, "penny_rank": 9384, "prices": {"usd": "0.22", "usd_foil": null, "usd_etched": null, "eur": "0.15", "eur_foil": null, "tix": "0.09"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=4800", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Aftershock&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Aftershock&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Aftershock"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/5453?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Aftershock&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/9597?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "539ac5e1-4bad-4f70-abac-e70c406bebec", "oracle_id": "41681a1f-0777-4b96-8c7e-d6a5d1b1c8fc", "multiverse_ids": [23034], "mtgo_id": 14387, "mtgo_foil_id": 14388, "tcgplayer_id": 7410, "cardmarket_id": 3406, "name": "Agonizing Demise", "lang": "en", "released_at": "2000-10-02", "uri": "https://api.scryfall.com/cards/539ac5e1-4bad-4f70-abac-e70c406bebec", "scryfall_uri": "https://scryfall.com/card/inv/92/agonizing-demise?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/5/3/539ac5e1-4bad-4f70-abac-e70c406bebec.jpg?1562912008", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/3/539ac5e1-4bad-4f70-abac-e70c406bebec.jpg?1562912008", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/5/3/539ac5e1-4bad-4f70-abac-e70c406bebec.jpg?1562912008", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/5/3/539ac5e1-4bad-4f70-abac-e70c406bebec.png?1562912008", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/3/539ac5e1-4bad-4f70-abac-e70c406bebec.jpg?1562912008", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/5/3/539ac5e1-4bad-4f70-abac-e70c406bebec.jpg?1562912008"}, "mana_cost": "{3}{B}", "cmc": 4.0, "type_line": "Instant", "oracle_text": "Kicker {1}{R} (You may pay an additional {1}{R} as you cast this spell.)\nDestroy target nonblack creature. It can't be regenerated. If this spell was kicked, Agonizing Demise deals damage equal to that creature's power to the creature's controller.", "colors": ["B"], "color_identity": ["B", "R"], "keywords": ["Kicker"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "b9ae5e02-7726-47ca-b5e4-5ec402b41cd1", "set": "inv", "set_name": "Invasion", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/b9ae5e02-7726-47ca-b5e4-5ec402b41cd1", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ainv&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/inv?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/539ac5e1-4bad-4f70-abac-e70c406bebec/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A41681a1f-0777-4b96-8c7e-d6a5d1b1c8fc&unique=prints", "collector_number": "92", "digital": false, "rarity": "common", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Mark Brill", "artist_ids": ["46dc4b5e-e42c-4d65-a4f3-ad75b0f6f6dd"], "illustration_id": "7cf9049f-c675-4c71-9f01-4c843abbbda2", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 17235, "prices": {"usd": "0.11", "usd_foil": "2.41", "usd_etched": null, "eur": "0.05", "eur_foil": "0.50", "tix": "0.11"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=23034", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Agonizing+Demise&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Agonizing+Demise&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Agonizing+Demise"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/7410?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Agonizing+Demise&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/14387?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "708006ba-d494-4093-b108-8249b110831e", "oracle_id": "61f3a549-77b4-4403-afa2-a0f02603f2e6", "multiverse_ids": [441898], "mtgo_id": 66875, "arena_id": 67039, "tcgplayer_id": 154407, "cardmarket_id": 314466, "name": "Angrath's Fury", "lang": "en", "released_at": "2018-01-19", "uri": "https://api.scryfall.com/cards/708006ba-d494-4093-b108-8249b110831e", "scryfall_uri": "https://scryfall.com/card/rix/204/angraths-fury?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/7/0/708006ba-d494-4093-b108-8249b110831e.jpg?1555041214", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/0/708006ba-d494-4093-b108-8249b110831e.jpg?1555041214", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/7/0/708006ba-d494-4093-b108-8249b110831e.jpg?1555041214", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/7/0/708006ba-d494-4093-b108-8249b110831e.png?1555041214", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/0/708006ba-d494-4093-b108-8249b110831e.jpg?1555041214", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/7/0/708006ba-d494-4093-b108-8249b110831e.jpg?1555041214"}, "mana_cost": "{3}{B}{R}", "cmc": 5.0, "type_line": "Sorcery", "oracle_text": "Destroy target creature. Angrath's Fury deals 3 damage to target player or planeswalker. You may search your library and/or graveyard for a card named Angrath, Minotaur Pirate, reveal it, and put it into your hand. If you search your library this way, shuffle.", "colors": ["B", "R"], "color_identity": ["B", "R"], "keywords": [], "all_parts": [{"object": "related_card", "id": "f17103dd-f31b-4f6e-b2ea-4ea91815bdd6", "component": "combo_piece", "name": "Angrath, Minotaur Pirate", "type_line": "Legendary Planeswalker \u2014 Angrath", "uri": "https://api.scryfall.com/cards/f17103dd-f31b-4f6e-b2ea-4ea91815bdd6"}, {"object": "related_card", "id": "708006ba-d494-4093-b108-8249b110831e", "component": "combo_piece", "name": "Angrath's Fury", "type_line": "Sorcery", "uri": "https://api.scryfall.com/cards/708006ba-d494-4093-b108-8249b110831e"}], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "2f7e40fc-772d-4a85-bfdd-01653c41d0fa", "set": "rix", "set_name": "Rivals of Ixalan", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/2f7e40fc-772d-4a85-bfdd-01653c41d0fa", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Arix&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/rix?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/708006ba-d494-4093-b108-8249b110831e/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A61f3a549-77b4-4403-afa2-a0f02603f2e6&unique=prints", "collector_number": "204", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Lake Hurwitz", "artist_ids": ["3677c64b-55e6-4a0d-a952-bdbb05531220"], "illustration_id": "f568e396-1fdb-4f95-b738-2f0dd6d8b49e", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "promo_types": ["planeswalkerdeck"], "edhrec_rank": 14094, "prices": {"usd": "0.22", "usd_foil": null, "usd_etched": null, "eur": "0.22", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=441898", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Angrath%27s+Fury&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Angrath%27s+Fury&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Angrath%27s+Fury"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/154407?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Angrath%27s+Fury&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/66875?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "4a3bf039-ecf6-477e-997c-e32c55323c01", "oracle_id": "28f55673-7aa0-497e-8434-aa70df1b5e04", "multiverse_ids": [23042], "mtgo_id": 14501, "mtgo_foil_id": 14502, "tcgplayer_id": 7418, "cardmarket_id": 3414, "name": "Annihilate", "lang": "en", "released_at": "2000-10-02", "uri": "https://api.scryfall.com/cards/4a3bf039-ecf6-477e-997c-e32c55323c01", "scryfall_uri": "https://scryfall.com/card/inv/94/annihilate?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/4/a/4a3bf039-ecf6-477e-997c-e32c55323c01.jpg?1562909994", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/a/4a3bf039-ecf6-477e-997c-e32c55323c01.jpg?1562909994", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/4/a/4a3bf039-ecf6-477e-997c-e32c55323c01.jpg?1562909994", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/4/a/4a3bf039-ecf6-477e-997c-e32c55323c01.png?1562909994", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/a/4a3bf039-ecf6-477e-997c-e32c55323c01.jpg?1562909994", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/4/a/4a3bf039-ecf6-477e-997c-e32c55323c01.jpg?1562909994"}, "mana_cost": "{3}{B}{B}", "cmc": 5.0, "type_line": "Instant", "oracle_text": "Destroy target nonblack creature. It can't be regenerated.\nDraw a card.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "b9ae5e02-7726-47ca-b5e4-5ec402b41cd1", "set": "inv", "set_name": "Invasion", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/b9ae5e02-7726-47ca-b5e4-5ec402b41cd1", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ainv&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/inv?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/4a3bf039-ecf6-477e-997c-e32c55323c01/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A28f55673-7aa0-497e-8434-aa70df1b5e04&unique=prints", "collector_number": "94", "digital": false, "rarity": "uncommon", "flavor_text": "\"Whatever Yawgmoth marks, dies. There is no escape.\"\n\u2014Tsabo Tavoc, Phyrexian general", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Kev Walker", "artist_ids": ["f366a0ee-a0cd-466d-ba6a-90058c7a31a6"], "illustration_id": "56ac4434-70b4-48f9-98b5-3d67033daf9a", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 13488, "penny_rank": 9318, "prices": {"usd": "0.14", "usd_foil": "2.97", "usd_etched": null, "eur": "0.05", "eur_foil": "3.50", "tix": "0.09"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=23042", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Annihilate&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Annihilate&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Annihilate"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/7418?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Annihilate&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/14501?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "894f3f5f-586d-45e4-9af7-4de80e44dfae", "oracle_id": "1c2ce0d0-8c3e-48e8-b1fd-54658bdb9af9", "multiverse_ids": [378432], "mtgo_id": 51619, "mtgo_foil_id": 51620, "tcgplayer_id": 79150, "cardmarket_id": 266030, "name": "Asphyxiate", "lang": "en", "released_at": "2014-02-07", "uri": "https://api.scryfall.com/cards/894f3f5f-586d-45e4-9af7-4de80e44dfae", "scryfall_uri": "https://scryfall.com/card/bng/60/asphyxiate?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/8/9/894f3f5f-586d-45e4-9af7-4de80e44dfae.jpg?1593091866", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/9/894f3f5f-586d-45e4-9af7-4de80e44dfae.jpg?1593091866", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/8/9/894f3f5f-586d-45e4-9af7-4de80e44dfae.jpg?1593091866", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/8/9/894f3f5f-586d-45e4-9af7-4de80e44dfae.png?1593091866", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/9/894f3f5f-586d-45e4-9af7-4de80e44dfae.jpg?1593091866", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/8/9/894f3f5f-586d-45e4-9af7-4de80e44dfae.jpg?1593091866"}, "mana_cost": "{1}{B}{B}", "cmc": 3.0, "type_line": "Sorcery", "oracle_text": "Destroy target untapped creature.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "50a80fe4-a757-408f-ad23-52c5cc5f45cc", "set": "bng", "set_name": "Born of the Gods", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/50a80fe4-a757-408f-ad23-52c5cc5f45cc", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Abng&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/bng?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/894f3f5f-586d-45e4-9af7-4de80e44dfae/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A1c2ce0d0-8c3e-48e8-b1fd-54658bdb9af9&unique=prints", "collector_number": "60", "digital": false, "rarity": "common", "flavor_text": "\"Some poisons enter through the blood. Some are ingested. Some are inhaled. All ways through which mortals draw strength are paths for poison.\"\n\u2014Agathe, priest of Pharika", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Kev Walker", "artist_ids": ["f366a0ee-a0cd-466d-ba6a-90058c7a31a6"], "illustration_id": "74678721-7ab6-42f1-a07a-64f94f4de0ff", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 14273, "penny_rank": 7242, "prices": {"usd": "0.04", "usd_foil": "0.09", "usd_etched": null, "eur": "0.02", "eur_foil": "0.15", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=378432", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Asphyxiate&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Asphyxiate&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Asphyxiate"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/79150?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Asphyxiate&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/51619?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "40b67839-622d-41c1-b9c7-1a26b021ec78", "oracle_id": "ce979f36-84f2-4419-b400-971263494cc6", "multiverse_ids": [114918], "mtgo_id": 25711, "mtgo_foil_id": 25712, "tcgplayer_id": 14160, "cardmarket_id": 13767, "name": "Assassinate", "lang": "en", "released_at": "2006-10-06", "uri": "https://api.scryfall.com/cards/40b67839-622d-41c1-b9c7-1a26b021ec78", "scryfall_uri": "https://scryfall.com/card/tsp/95/assassinate?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/4/0/40b67839-622d-41c1-b9c7-1a26b021ec78.jpg?1562908402", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/0/40b67839-622d-41c1-b9c7-1a26b021ec78.jpg?1562908402", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/4/0/40b67839-622d-41c1-b9c7-1a26b021ec78.jpg?1562908402", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/4/0/40b67839-622d-41c1-b9c7-1a26b021ec78.png?1562908402", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/0/40b67839-622d-41c1-b9c7-1a26b021ec78.jpg?1562908402", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/4/0/40b67839-622d-41c1-b9c7-1a26b021ec78.jpg?1562908402"}, "mana_cost": "{2}{B}", "cmc": 3.0, "type_line": "Sorcery", "oracle_text": "Destroy target tapped creature.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "c1d109bc-ffd8-428f-8d7d-3f8d7e648046", "set": "tsp", "set_name": "Time Spiral", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/c1d109bc-ffd8-428f-8d7d-3f8d7e648046", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Atsp&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/tsp?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/40b67839-622d-41c1-b9c7-1a26b021ec78/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ace979f36-84f2-4419-b400-971263494cc6&unique=prints", "collector_number": "95", "digital": false, "rarity": "common", "flavor_text": "The rulers of old Dominaria kept assassins on retainer. However, the true loyalty of these master killers was always to their peers. This elite brotherhood survived the fall of the old royal order.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Kev Walker", "artist_ids": ["f366a0ee-a0cd-466d-ba6a-90058c7a31a6"], "illustration_id": "1b16f1d2-2329-4f50-b7c5-4c0a58656ee4", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 11854, "penny_rank": 2792, "prices": {"usd": "0.06", "usd_foil": "0.25", "usd_etched": null, "eur": "0.02", "eur_foil": "0.15", "tix": "0.04"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=114918", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Assassinate&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Assassinate&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Assassinate"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/14160?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Assassinate&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/25711?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "b80e8fe0-eccb-4268-a6ce-1365c68e6b13", "oracle_id": "76da2150-34b9-4483-99df-131e1c5468d5", "multiverse_ids": [4208], "tcgplayer_id": 616, "cardmarket_id": 9987, "name": "Assassin's Blade", "lang": "en", "released_at": "1997-05-01", "uri": "https://api.scryfall.com/cards/b80e8fe0-eccb-4268-a6ce-1365c68e6b13", "scryfall_uri": "https://scryfall.com/card/por/80/assassins-blade?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/b/8/b80e8fe0-eccb-4268-a6ce-1365c68e6b13.jpg?1562447376", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/8/b80e8fe0-eccb-4268-a6ce-1365c68e6b13.jpg?1562447376", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/b/8/b80e8fe0-eccb-4268-a6ce-1365c68e6b13.jpg?1562447376", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/b/8/b80e8fe0-eccb-4268-a6ce-1365c68e6b13.png?1562447376", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/8/b80e8fe0-eccb-4268-a6ce-1365c68e6b13.jpg?1562447376", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/b/8/b80e8fe0-eccb-4268-a6ce-1365c68e6b13.jpg?1562447376"}, "mana_cost": "{1}{B}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Cast this spell only during the declare attackers step and only if you've been attacked this step.\nDestroy target nonblack attacking creature.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "478c47df-5058-4ce6-830e-7e80732b2ca9", "set": "por", "set_name": "Portal", "set_type": "starter", "set_uri": "https://api.scryfall.com/sets/478c47df-5058-4ce6-830e-7e80732b2ca9", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Apor&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/por?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/b80e8fe0-eccb-4268-a6ce-1365c68e6b13/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A76da2150-34b9-4483-99df-131e1c5468d5&unique=prints", "collector_number": "80", "digital": false, "rarity": "uncommon", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "John Matson", "artist_ids": ["a1685587-4b55-446b-b420-c37b202ed3f1"], "illustration_id": "ab3ecc35-81b6-4750-92db-e36356cd6b08", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 16415, "prices": {"usd": "0.26", "usd_foil": null, "usd_etched": null, "eur": "0.23", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=4208", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Assassin%27s+Blade&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Assassin%27s+Blade&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Assassin%27s+Blade"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/616?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Assassin%27s+Blade&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Assassin%27s+Blade&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "5a926c10-029d-4e24-8c3f-1808025e30aa", "oracle_id": "a6d95d26-48d8-4a97-9a42-f492a61300c9", "multiverse_ids": [548385], "mtgo_id": 97094, "arena_id": 79512, "tcgplayer_id": 262238, "cardmarket_id": 607368, "name": "Assassin's Ink", "lang": "en", "released_at": "2022-02-18", "uri": "https://api.scryfall.com/cards/5a926c10-029d-4e24-8c3f-1808025e30aa", "scryfall_uri": "https://scryfall.com/card/neo/87/assassins-ink?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/5/a/5a926c10-029d-4e24-8c3f-1808025e30aa.jpg?1654567050", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/a/5a926c10-029d-4e24-8c3f-1808025e30aa.jpg?1654567050", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/5/a/5a926c10-029d-4e24-8c3f-1808025e30aa.jpg?1654567050", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/5/a/5a926c10-029d-4e24-8c3f-1808025e30aa.png?1654567050", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/a/5a926c10-029d-4e24-8c3f-1808025e30aa.jpg?1654567050", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/5/a/5a926c10-029d-4e24-8c3f-1808025e30aa.jpg?1654567050"}, "mana_cost": "{2}{B}{B}", "cmc": 4.0, "type_line": "Instant", "oracle_text": "This spell costs {1} less to cast if you control an artifact and {1} less to cast if you control an enchantment.\nDestroy target creature or planeswalker.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo", "arena"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "59a2059f-5482-433f-8761-eb2e17859b71", "set": "neo", "set_name": "Kamigawa: Neon Dynasty", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/59a2059f-5482-433f-8761-eb2e17859b71", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aneo&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/neo?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/5a926c10-029d-4e24-8c3f-1808025e30aa/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aa6d95d26-48d8-4a97-9a42-f492a61300c9&unique=prints", "collector_number": "87", "digital": false, "rarity": "uncommon", "flavor_text": "A Reckoner always has another trick up their sleeve\u2014or as their sleeve.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Heonhwa Choe", "artist_ids": ["ce415f9e-8a20-4d64-bcba-2b1b7e94012e"], "illustration_id": "a7eb8950-8fe8-4ae8-b38f-fb16d1a0dbdc", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 10213, "penny_rank": 13225, "preview": {"source": "Wizards of the Coast", "source_uri": "https://twitter.com/MTGArenaJP/status/1487010152746483712", "previewed_at": "2022-01-28"}, "prices": {"usd": "0.06", "usd_foil": "0.08", "usd_etched": null, "eur": "0.02", "eur_foil": "0.05", "tix": "0.01"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=548385", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Assassin%27s+Ink&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Assassin%27s+Ink&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Assassin%27s+Ink"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/262238?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Assassin%27s+Ink&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/97094?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "f796e320-9898-45d4-9d7a-6d35de53c9ab", "oracle_id": "1ad6339d-6206-49bf-bf97-05e6d3bcaab7", "multiverse_ids": [289216], "mtgo_id": 46331, "mtgo_foil_id": 46332, "tcgplayer_id": 66523, "cardmarket_id": 258425, "name": "Assassin's Strike", "lang": "en", "released_at": "2012-10-05", "uri": "https://api.scryfall.com/cards/f796e320-9898-45d4-9d7a-6d35de53c9ab", "scryfall_uri": "https://scryfall.com/card/rtr/57/assassins-strike?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/f/7/f796e320-9898-45d4-9d7a-6d35de53c9ab.jpg?1562795619", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/7/f796e320-9898-45d4-9d7a-6d35de53c9ab.jpg?1562795619", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/f/7/f796e320-9898-45d4-9d7a-6d35de53c9ab.jpg?1562795619", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/f/7/f796e320-9898-45d4-9d7a-6d35de53c9ab.png?1562795619", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/7/f796e320-9898-45d4-9d7a-6d35de53c9ab.jpg?1562795619", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/f/7/f796e320-9898-45d4-9d7a-6d35de53c9ab.jpg?1562795619"}, "mana_cost": "{4}{B}{B}", "cmc": 6.0, "type_line": "Sorcery", "oracle_text": "Destroy target creature. Its controller discards a card.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "80b2374d-c5f1-403e-9772-f6c806fd275e", "set": "rtr", "set_name": "Return to Ravnica", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/80b2374d-c5f1-403e-9772-f6c806fd275e", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Artr&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/rtr?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/f796e320-9898-45d4-9d7a-6d35de53c9ab/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A1ad6339d-6206-49bf-bf97-05e6d3bcaab7&unique=prints", "collector_number": "57", "digital": false, "rarity": "uncommon", "flavor_text": "When Selesnya missionaries moved into the Shanav Quarter, they faced scorn, ridicule, and ultimately martyrdom.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Chase Stone", "artist_ids": ["2d753f61-5f5b-468e-97ea-8e0fdd347340"], "illustration_id": "54efaf79-59b9-40ed-a863-29ac1ac7e1f5", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 15996, "prices": {"usd": "0.07", "usd_foil": "0.18", "usd_etched": null, "eur": "0.02", "eur_foil": "0.40", "tix": "0.04"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=289216", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Assassin%27s+Strike&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Assassin%27s+Strike&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Assassin%27s+Strike"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/66523?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Assassin%27s+Strike&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/46331?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "696678ff-44dc-4fe4-bf17-024e86cd0220", "oracle_id": "6c29add6-8524-4a33-9f2e-f792032dd6cd", "multiverse_ids": [265410], "mtgo_id": 46301, "mtgo_foil_id": 46302, "tcgplayer_id": 66524, "cardmarket_id": 258387, "name": "Avenging Arrow", "lang": "en", "released_at": "2012-10-05", "uri": "https://api.scryfall.com/cards/696678ff-44dc-4fe4-bf17-024e86cd0220", "scryfall_uri": "https://scryfall.com/card/rtr/4/avenging-arrow?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/6/9/696678ff-44dc-4fe4-bf17-024e86cd0220.jpg?1562787572", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/9/696678ff-44dc-4fe4-bf17-024e86cd0220.jpg?1562787572", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/6/9/696678ff-44dc-4fe4-bf17-024e86cd0220.jpg?1562787572", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/6/9/696678ff-44dc-4fe4-bf17-024e86cd0220.png?1562787572", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/9/696678ff-44dc-4fe4-bf17-024e86cd0220.jpg?1562787572", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/6/9/696678ff-44dc-4fe4-bf17-024e86cd0220.jpg?1562787572"}, "mana_cost": "{2}{W}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Destroy target creature that dealt damage this turn.", "colors": ["W"], "color_identity": ["W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "80b2374d-c5f1-403e-9772-f6c806fd275e", "set": "rtr", "set_name": "Return to Ravnica", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/80b2374d-c5f1-403e-9772-f6c806fd275e", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Artr&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/rtr?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/696678ff-44dc-4fe4-bf17-024e86cd0220/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A6c29add6-8524-4a33-9f2e-f792032dd6cd&unique=prints", "collector_number": "4", "digital": false, "rarity": "common", "flavor_text": "\"Forgive the theft. Punish the deception.\"\n\u2014Alcarus, Selesnya archer", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "James Ryman", "artist_ids": ["3852bbc9-11c0-4fe3-8722-a06ad7e2bcc5"], "illustration_id": "af058d47-fd26-400d-8cf2-daf7bfd6117f", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 16396, "prices": {"usd": "0.02", "usd_foil": "0.18", "usd_etched": null, "eur": "0.05", "eur_foil": "0.20", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=265410", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Avenging+Arrow&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Avenging+Arrow&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Avenging+Arrow"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/66524?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Avenging+Arrow&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/46301?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "42a4d090-1bb7-4334-ab22-e2527391e79b", "oracle_id": "1b9ec782-0ba1-41f1-bc39-d3302494ecb3", "multiverse_ids": [473038], "mtgo_id": 78264, "arena_id": 70223, "tcgplayer_id": 198423, "cardmarket_id": 398959, "name": "Bake into a Pie", "lang": "en", "released_at": "2019-10-04", "uri": "https://api.scryfall.com/cards/42a4d090-1bb7-4334-ab22-e2527391e79b", "scryfall_uri": "https://scryfall.com/card/eld/76/bake-into-a-pie?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/4/2/42a4d090-1bb7-4334-ab22-e2527391e79b.jpg?1572490064", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/2/42a4d090-1bb7-4334-ab22-e2527391e79b.jpg?1572490064", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/4/2/42a4d090-1bb7-4334-ab22-e2527391e79b.jpg?1572490064", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/4/2/42a4d090-1bb7-4334-ab22-e2527391e79b.png?1572490064", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/2/42a4d090-1bb7-4334-ab22-e2527391e79b.jpg?1572490064", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/4/2/42a4d090-1bb7-4334-ab22-e2527391e79b.jpg?1572490064"}, "mana_cost": "{2}{B}{B}", "cmc": 4.0, "type_line": "Instant", "oracle_text": "Destroy target creature. Create a Food token. (It's an artifact with \"{2}, {T}, Sacrifice this artifact: You gain 3 life.\")", "colors": ["B"], "color_identity": ["B"], "keywords": [], "all_parts": [{"object": "related_card", "id": "42a4d090-1bb7-4334-ab22-e2527391e79b", "component": "combo_piece", "name": "Bake into a Pie", "type_line": "Instant", "uri": "https://api.scryfall.com/cards/42a4d090-1bb7-4334-ab22-e2527391e79b"}, {"object": "related_card", "id": "bf36408d-ed85-497f-8e68-d3a922c388a0", "component": "token", "name": "Food", "type_line": "Token Artifact \u2014 Food", "uri": "https://api.scryfall.com/cards/bf36408d-ed85-497f-8e68-d3a922c388a0"}], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "a90a7b2f-9dd8-4fc7-9f7d-8ea2797ec782", "set": "eld", "set_name": "Throne of Eldraine", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/a90a7b2f-9dd8-4fc7-9f7d-8ea2797ec782", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aeld&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/eld?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/42a4d090-1bb7-4334-ab22-e2527391e79b/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A1b9ec782-0ba1-41f1-bc39-d3302494ecb3&unique=prints", "collector_number": "76", "digital": false, "rarity": "common", "flavor_text": "\"My secret ingredient? Well, I can't tell you that. But here's a hint. It's not love.\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Zoltan Boros", "artist_ids": ["1885e6cb-c827-4896-994e-3d0a027d602f"], "illustration_id": "c6d7c553-50c8-4ede-90ad-8a4772673017", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 4527, "penny_rank": 12181, "preview": {"source": "Wizards of the Coast", "source_uri": "https://magic.wizards.com/en/articles/archive/feature/throne-eldraine-mechanics-2019-09-04", "previewed_at": "2019-09-04"}, "prices": {"usd": "0.05", "usd_foil": "0.24", "usd_etched": null, "eur": "0.13", "eur_foil": "0.10", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=473038", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Bake+into+a+Pie&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Bake+into+a+Pie&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Bake+into+a+Pie"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/198423?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Bake+into+a+Pie&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/78264?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "76f8a300-44a8-4a70-93d1-64333c13f6f2", "oracle_id": "7735eeba-693b-47e2-bd51-414379cf1016", "multiverse_ids": [373352], "mtgo_id": 49985, "mtgo_foil_id": 49986, "tcgplayer_id": 71074, "cardmarket_id": 263770, "name": "Beast Within", "lang": "en", "released_at": "2013-09-06", "uri": "https://api.scryfall.com/cards/76f8a300-44a8-4a70-93d1-64333c13f6f2", "scryfall_uri": "https://scryfall.com/card/ddl/69/beast-within?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/7/6/76f8a300-44a8-4a70-93d1-64333c13f6f2.jpg?1592752271", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/6/76f8a300-44a8-4a70-93d1-64333c13f6f2.jpg?1592752271", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/7/6/76f8a300-44a8-4a70-93d1-64333c13f6f2.jpg?1592752271", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/7/6/76f8a300-44a8-4a70-93d1-64333c13f6f2.png?1592752271", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/6/76f8a300-44a8-4a70-93d1-64333c13f6f2.jpg?1592752271", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/7/6/76f8a300-44a8-4a70-93d1-64333c13f6f2.jpg?1592752271"}, "mana_cost": "{2}{G}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Destroy target permanent. Its controller creates a 3/3 green Beast creature token.", "colors": ["G"], "color_identity": ["G"], "keywords": [], "all_parts": [{"object": "related_card", "id": "76f8a300-44a8-4a70-93d1-64333c13f6f2", "component": "combo_piece", "name": "Beast Within", "type_line": "Instant", "uri": "https://api.scryfall.com/cards/76f8a300-44a8-4a70-93d1-64333c13f6f2"}, {"object": "related_card", "id": "6b28a5db-d095-4214-ba0c-14b1aeddb1eb", "component": "token", "name": "Beast", "type_line": "Token Creature \u2014 Beast", "uri": "https://api.scryfall.com/cards/6b28a5db-d095-4214-ba0c-14b1aeddb1eb"}], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "7dfc5406-c4cf-479d-b005-11e578752dc9", "set": "ddl", "set_name": "Duel Decks: Heroes vs. Monsters", "set_type": "duel_deck", "set_uri": "https://api.scryfall.com/sets/7dfc5406-c4cf-479d-b005-11e578752dc9", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Addl&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ddl?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/76f8a300-44a8-4a70-93d1-64333c13f6f2/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A7735eeba-693b-47e2-bd51-414379cf1016&unique=prints", "collector_number": "69", "digital": false, "rarity": "uncommon", "flavor_text": "\"Monsters dwell in every heart. We only think civilization tames them.\"\n\u2014Euphemia, Nexus watcher", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Jesper Ejsing", "artist_ids": ["a5f8354a-8b51-4e59-96b2-0e3aeae4fa1d"], "illustration_id": "8ec245f1-fcfe-4a98-9e13-dd69e2483388", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "edhrec_rank": 18, "prices": {"usd": "0.90", "usd_foil": null, "usd_etched": null, "eur": "0.98", "eur_foil": null, "tix": "2.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=373352", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Beast+Within&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Beast+Within&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Beast+Within"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/71074?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Beast+Within&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/49985?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "ce5b6d19-22e3-4f57-8f4d-a17e982286c7", "oracle_id": "7735eeba-693b-47e2-bd51-414379cf1016", "multiverse_ids": [221533], "mtgo_id": 39884, "mtgo_foil_id": 39885, "tcgplayer_id": 39491, "cardmarket_id": 245929, "name": "Beast Within", "lang": "en", "released_at": "2011-05-13", "uri": "https://api.scryfall.com/cards/ce5b6d19-22e3-4f57-8f4d-a17e982286c7", "scryfall_uri": "https://scryfall.com/card/nph/103/beast-within?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/c/e/ce5b6d19-22e3-4f57-8f4d-a17e982286c7.jpg?1562881648", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/e/ce5b6d19-22e3-4f57-8f4d-a17e982286c7.jpg?1562881648", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/c/e/ce5b6d19-22e3-4f57-8f4d-a17e982286c7.jpg?1562881648", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/c/e/ce5b6d19-22e3-4f57-8f4d-a17e982286c7.png?1562881648", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/e/ce5b6d19-22e3-4f57-8f4d-a17e982286c7.jpg?1562881648", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/c/e/ce5b6d19-22e3-4f57-8f4d-a17e982286c7.jpg?1562881648"}, "mana_cost": "{2}{G}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Destroy target permanent. Its controller creates a 3/3 green Beast creature token.", "colors": ["G"], "color_identity": ["G"], "keywords": [], "all_parts": [{"object": "related_card", "id": "ce5b6d19-22e3-4f57-8f4d-a17e982286c7", "component": "combo_piece", "name": "Beast Within", "type_line": "Instant", "uri": "https://api.scryfall.com/cards/ce5b6d19-22e3-4f57-8f4d-a17e982286c7"}, {"object": "related_card", "id": "7b226475-c85c-4b78-9d6a-70cc9545bc31", "component": "token", "name": "Beast", "type_line": "Token Creature \u2014 Beast", "uri": "https://api.scryfall.com/cards/7b226475-c85c-4b78-9d6a-70cc9545bc31"}], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "e8e356d8-6d01-4dab-aa07-d0999dc9359f", "set": "nph", "set_name": "New Phyrexia", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/e8e356d8-6d01-4dab-aa07-d0999dc9359f", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Anph&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/nph?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/ce5b6d19-22e3-4f57-8f4d-a17e982286c7/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A7735eeba-693b-47e2-bd51-414379cf1016&unique=prints", "collector_number": "103", "digital": false, "rarity": "uncommon", "watermark": "phyrexian", "flavor_text": "\"Kill the weak so they can't drag the strong down to their level. This is true compassion.\"\n\u2014Benzir, archdruid of Temple Might", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Dave Allsop", "artist_ids": ["99b8310a-4fd6-4ded-8ab7-3b5185821cbe"], "illustration_id": "be17f80a-6bf5-4e5a-aec0-0a997adcb37e", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 18, "prices": {"usd": "1.64", "usd_foil": "28.25", "usd_etched": null, "eur": "1.05", "eur_foil": "14.00", "tix": "0.81"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=221533", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Beast+Within&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Beast+Within&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Beast+Within"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/39491?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Beast+Within&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/39884?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "81e2b96b-ecf2-4dd9-bc9d-3c46ee8c59e6", "oracle_id": "bceecc64-96f1-4e7b-8904-0aef90377764", "multiverse_ids": [457301], "mtgo_id": 71314, "arena_id": 69285, "tcgplayer_id": 182230, "cardmarket_id": 367846, "name": "Bedevil", "lang": "en", "released_at": "2019-01-25", "uri": "https://api.scryfall.com/cards/81e2b96b-ecf2-4dd9-bc9d-3c46ee8c59e6", "scryfall_uri": "https://scryfall.com/card/rna/157/bedevil?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/8/1/81e2b96b-ecf2-4dd9-bc9d-3c46ee8c59e6.jpg?1584831400", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/1/81e2b96b-ecf2-4dd9-bc9d-3c46ee8c59e6.jpg?1584831400", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/8/1/81e2b96b-ecf2-4dd9-bc9d-3c46ee8c59e6.jpg?1584831400", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/8/1/81e2b96b-ecf2-4dd9-bc9d-3c46ee8c59e6.png?1584831400", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/1/81e2b96b-ecf2-4dd9-bc9d-3c46ee8c59e6.jpg?1584831400", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/8/1/81e2b96b-ecf2-4dd9-bc9d-3c46ee8c59e6.jpg?1584831400"}, "mana_cost": "{B}{B}{R}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Destroy target artifact, creature, or planeswalker.", "colors": ["B", "R"], "color_identity": ["B", "R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "97a7fd84-8d89-45a3-b48b-c951f6a3f9f1", "set": "rna", "set_name": "Ravnica Allegiance", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/97a7fd84-8d89-45a3-b48b-c951f6a3f9f1", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Arna&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/rna?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/81e2b96b-ecf2-4dd9-bc9d-3c46ee8c59e6/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Abceecc64-96f1-4e7b-8904-0aef90377764&unique=prints", "collector_number": "157", "digital": false, "rarity": "rare", "watermark": "rakdos", "flavor_text": "\"It's easy to get taken in by the spectacle, to enjoy a bit of naughty amusement. But make no mistake: the Cult of Rakdos is a danger.\"\n\u2014Tajic", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Seb McKinnon", "artist_ids": ["ad4caca0-8d89-44ce-a1a6-d5ca905bd6fb"], "illustration_id": "13166863-c81c-4c48-90ac-b9a14bbb8599", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 382, "penny_rank": 793, "preview": {"source": "Wizards of the Coast", "source_uri": "https://www.facebook.com/MagicTheGathering.fr/photos/a.188865617840868/2065587653501979/", "previewed_at": "2018-12-19"}, "prices": {"usd": "0.67", "usd_foil": "5.99", "usd_etched": null, "eur": "1.12", "eur_foil": "1.95", "tix": "0.09"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=457301", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Bedevil&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Bedevil&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Bedevil"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/182230?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Bedevil&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/71314?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "2dfff5d3-1433-4a24-83e6-6361a446b974", "oracle_id": "c573c59a-5a79-4fe1-a6d8-5e0153b5c059", "multiverse_ids": [50291], "mtgo_id": 20993, "mtgo_foil_id": 20994, "tcgplayer_id": 11946, "cardmarket_id": 11965, "name": "Befoul", "lang": "en", "released_at": "2004-10-01", "uri": "https://api.scryfall.com/cards/2dfff5d3-1433-4a24-83e6-6361a446b974", "scryfall_uri": "https://scryfall.com/card/chk/102/befoul?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/2/d/2dfff5d3-1433-4a24-83e6-6361a446b974.jpg?1562758881", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/d/2dfff5d3-1433-4a24-83e6-6361a446b974.jpg?1562758881", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/2/d/2dfff5d3-1433-4a24-83e6-6361a446b974.jpg?1562758881", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/2/d/2dfff5d3-1433-4a24-83e6-6361a446b974.png?1562758881", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/d/2dfff5d3-1433-4a24-83e6-6361a446b974.jpg?1562758881", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/2/d/2dfff5d3-1433-4a24-83e6-6361a446b974.jpg?1562758881"}, "mana_cost": "{2}{B}{B}", "cmc": 4.0, "type_line": "Sorcery", "oracle_text": "Destroy target land or nonblack creature. It can't be regenerated.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "6183d21f-a0af-4118-ba58-aca1d8719c01", "set": "chk", "set_name": "Champions of Kamigawa", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/6183d21f-a0af-4118-ba58-aca1d8719c01", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Achk&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/chk?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/2dfff5d3-1433-4a24-83e6-6361a446b974/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ac573c59a-5a79-4fe1-a6d8-5e0153b5c059&unique=prints", "collector_number": "102", "digital": false, "rarity": "common", "flavor_text": "\"When the rampaging kami at Reito had crushed the opposing militia, swarms of minor kami swept over the battlefield to consume all that remained.\"\n\u2014*Great Battles of Kamigawa*", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Luca Zontini", "artist_ids": ["aa57d42a-72c1-4d94-a200-3571233c4b20"], "illustration_id": "65c6fd7d-71b0-41b9-8875-dcefc8919cd3", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 16010, "penny_rank": 5861, "prices": {"usd": "0.10", "usd_foil": "0.25", "usd_etched": null, "eur": "0.02", "eur_foil": "0.25", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=50291", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Befoul&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Befoul&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Befoul"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/11946?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Befoul&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/20993?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "7c5db137-33b9-4cea-9193-4e637d2966f1", "oracle_id": "c573c59a-5a79-4fe1-a6d8-5e0153b5c059", "multiverse_ids": [25632], "mtgo_id": 15370, "mtgo_foil_id": 15371, "tcgplayer_id": 2827, "cardmarket_id": 2880, "name": "Befoul", "lang": "en", "released_at": "2001-04-11", "uri": "https://api.scryfall.com/cards/7c5db137-33b9-4cea-9193-4e637d2966f1", "scryfall_uri": "https://scryfall.com/card/7ed/118/befoul?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/7/c/7c5db137-33b9-4cea-9193-4e637d2966f1.jpg?1562241441", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/c/7c5db137-33b9-4cea-9193-4e637d2966f1.jpg?1562241441", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/7/c/7c5db137-33b9-4cea-9193-4e637d2966f1.jpg?1562241441", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/7/c/7c5db137-33b9-4cea-9193-4e637d2966f1.png?1562241441", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/c/7c5db137-33b9-4cea-9193-4e637d2966f1.jpg?1562241441", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/7/c/7c5db137-33b9-4cea-9193-4e637d2966f1.jpg?1562241441"}, "mana_cost": "{2}{B}{B}", "cmc": 4.0, "type_line": "Sorcery", "oracle_text": "Destroy target land or nonblack creature. It can't be regenerated.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "230f38aa-9511-4db8-a3aa-aeddbc3f7bb9", "set": "7ed", "set_name": "Seventh Edition", "set_type": "core", "set_uri": "https://api.scryfall.com/sets/230f38aa-9511-4db8-a3aa-aeddbc3f7bb9", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3A7ed&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/7ed?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/7c5db137-33b9-4cea-9193-4e637d2966f1/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ac573c59a-5a79-4fe1-a6d8-5e0153b5c059&unique=prints", "collector_number": "118", "digital": false, "rarity": "uncommon", "flavor_text": "The bog's touch means death to all but the darkest of hearts.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Ciruelo", "artist_ids": ["1761c216-72b5-4a9b-afee-ad47a00fe1ad"], "illustration_id": "4dcce596-6d7f-4130-9602-1a7460ca3810", "border_color": "white", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 16010, "penny_rank": 5861, "prices": {"usd": "0.24", "usd_foil": "41.20", "usd_etched": null, "eur": "0.10", "eur_foil": "0.02", "tix": "0.11"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=25632", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Befoul&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Befoul&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Befoul"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/2827?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Befoul&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/15370?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "f92cb48d-315b-4877-b615-ffdf275c4d61", "oracle_id": "c573c59a-5a79-4fe1-a6d8-5e0153b5c059", "multiverse_ids": [5605], "mtgo_id": 12117, "mtgo_foil_id": 12118, "tcgplayer_id": 6795, "cardmarket_id": 10323, "name": "Befoul", "lang": "en", "released_at": "1998-10-12", "uri": "https://api.scryfall.com/cards/f92cb48d-315b-4877-b615-ffdf275c4d61", "scryfall_uri": "https://scryfall.com/card/usg/116/befoul?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/f/9/f92cb48d-315b-4877-b615-ffdf275c4d61.jpg?1562947702", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/9/f92cb48d-315b-4877-b615-ffdf275c4d61.jpg?1562947702", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/f/9/f92cb48d-315b-4877-b615-ffdf275c4d61.jpg?1562947702", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/f/9/f92cb48d-315b-4877-b615-ffdf275c4d61.png?1562947702", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/9/f92cb48d-315b-4877-b615-ffdf275c4d61.jpg?1562947702", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/f/9/f92cb48d-315b-4877-b615-ffdf275c4d61.jpg?1562947702"}, "mana_cost": "{2}{B}{B}", "cmc": 4.0, "type_line": "Sorcery", "oracle_text": "Destroy target land or nonblack creature. It can't be regenerated.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "c330df40-51db-4caf-bde6-48df6c181001", "set": "usg", "set_name": "Urza's Saga", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/c330df40-51db-4caf-bde6-48df6c181001", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ausg&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/usg?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/f92cb48d-315b-4877-b615-ffdf275c4d61/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ac573c59a-5a79-4fe1-a6d8-5e0153b5c059&unique=prints", "collector_number": "116", "digital": false, "rarity": "common", "flavor_text": "\"The land putrefied at its touch, turned into an oily bile in seconds.\"\n\u2014Radiant, archangel", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Pete Venters", "artist_ids": ["d54c4a1a-c0c5-4834-84db-125d341f3ad8"], "illustration_id": "b6789578-32d2-4470-9db4-a8e7d35bfae9", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 16010, "penny_rank": 5861, "prices": {"usd": "0.15", "usd_foil": null, "usd_etched": null, "eur": "0.10", "eur_foil": null, "tix": "0.05"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=5605", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Befoul&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Befoul&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Befoul"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/6795?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Befoul&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/12117?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "a9e2e107-0277-4e5c-81a7-258bb2998f3e", "oracle_id": "43cee9b6-9853-4337-869a-45540c9db10f", "multiverse_ids": [48588], "mtgo_id": 19949, "mtgo_foil_id": 19950, "tcgplayer_id": 11379, "cardmarket_id": 58, "name": "Betrayal of Flesh", "lang": "en", "released_at": "2003-10-02", "uri": "https://api.scryfall.com/cards/a9e2e107-0277-4e5c-81a7-258bb2998f3e", "scryfall_uri": "https://scryfall.com/card/mrd/58/betrayal-of-flesh?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/a/9/a9e2e107-0277-4e5c-81a7-258bb2998f3e.jpg?1562153677", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/9/a9e2e107-0277-4e5c-81a7-258bb2998f3e.jpg?1562153677", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/a/9/a9e2e107-0277-4e5c-81a7-258bb2998f3e.jpg?1562153677", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/a/9/a9e2e107-0277-4e5c-81a7-258bb2998f3e.png?1562153677", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/9/a9e2e107-0277-4e5c-81a7-258bb2998f3e.jpg?1562153677", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/a/9/a9e2e107-0277-4e5c-81a7-258bb2998f3e.jpg?1562153677"}, "mana_cost": "{5}{B}", "cmc": 6.0, "type_line": "Instant", "oracle_text": "Choose one \u2014\n\u2022 Destroy target creature.\n\u2022 Return target creature card from your graveyard to the battlefield.\nEntwine\u2014Sacrifice three lands. (Choose both if you pay the entwine cost.)", "colors": ["B"], "color_identity": ["B"], "keywords": ["Entwine"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "1d4f90ba-8d4a-4ee5-bc2f-e2d6bffe4955", "set": "mrd", "set_name": "Mirrodin", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/1d4f90ba-8d4a-4ee5-bc2f-e2d6bffe4955", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Amrd&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/mrd?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/a9e2e107-0277-4e5c-81a7-258bb2998f3e/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A43cee9b6-9853-4337-869a-45540c9db10f&unique=prints", "collector_number": "58", "digital": false, "rarity": "uncommon", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Wayne England", "artist_ids": ["62dc90c0-4bc2-4d42-ad76-59cad9243566"], "illustration_id": "f72a3659-defb-4631-9e6d-3e8a8ec08e8b", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 16096, "penny_rank": 11116, "prices": {"usd": "0.12", "usd_foil": "0.49", "usd_etched": null, "eur": "0.02", "eur_foil": "0.19", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=48588", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Betrayal+of+Flesh&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Betrayal+of+Flesh&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Betrayal+of+Flesh"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/11379?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Betrayal+of+Flesh&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/19949?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "059e8447-6b1c-4651-a734-a8fea2cbf7b2", "oracle_id": "4236851b-5366-43a1-bde4-f525b4fbcbce", "multiverse_ids": [491729], "mtgo_id": 83151, "arena_id": 73290, "tcgplayer_id": 221776, "cardmarket_id": 494574, "name": "Bloodchief's Thirst", "lang": "en", "released_at": "2020-09-25", "uri": "https://api.scryfall.com/cards/059e8447-6b1c-4651-a734-a8fea2cbf7b2", "scryfall_uri": "https://scryfall.com/card/znr/94/bloodchiefs-thirst?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/0/5/059e8447-6b1c-4651-a734-a8fea2cbf7b2.jpg?1604195360", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/5/059e8447-6b1c-4651-a734-a8fea2cbf7b2.jpg?1604195360", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/0/5/059e8447-6b1c-4651-a734-a8fea2cbf7b2.jpg?1604195360", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/0/5/059e8447-6b1c-4651-a734-a8fea2cbf7b2.png?1604195360", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/5/059e8447-6b1c-4651-a734-a8fea2cbf7b2.jpg?1604195360", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/0/5/059e8447-6b1c-4651-a734-a8fea2cbf7b2.jpg?1604195360"}, "mana_cost": "{B}", "cmc": 1.0, "type_line": "Sorcery", "oracle_text": "Kicker {2}{B} (You may pay an additional {2}{B} as you cast this spell.)\nDestroy target creature or planeswalker with mana value 2 or less. If this spell was kicked, instead destroy target creature or planeswalker.", "colors": ["B"], "color_identity": ["B"], "keywords": ["Kicker"], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "f4e01fa7-b254-42dd-849f-69b58027a8c4", "set": "znr", "set_name": "Zendikar Rising", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/f4e01fa7-b254-42dd-849f-69b58027a8c4", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aznr&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/znr?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/059e8447-6b1c-4651-a734-a8fea2cbf7b2/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A4236851b-5366-43a1-bde4-f525b4fbcbce&unique=prints", "collector_number": "94", "digital": false, "rarity": "uncommon", "flavor_text": "\"We are free. It is our duty to live well.\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Jason Rainville", "artist_ids": ["6ed7e669-579b-443d-b223-e5cbcb2a7483"], "illustration_id": "5da074b4-5f3e-4234-b265-98470dc9136e", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 6114, "penny_rank": 17, "preview": {"source": "Wizards of the Coast", "source_uri": "http://twitch.tv/videos/728086792", "previewed_at": "2020-09-01"}, "prices": {"usd": "0.17", "usd_foil": "0.72", "usd_etched": null, "eur": "0.18", "eur_foil": "0.40", "tix": "0.01"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=491729", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Bloodchief%27s+Thirst&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Bloodchief%27s+Thirst&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Bloodchief%27s+Thirst"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/221776?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Bloodchief%27s+Thirst&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/83151?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "4184c851-1419-476c-ba9c-9f0cb1137114", "oracle_id": "8b50de69-121a-48c4-bd7c-c8858f35f6ed", "multiverse_ids": [479595], "mtgo_id": 80159, "arena_id": 71142, "tcgplayer_id": 212052, "cardmarket_id": 451243, "name": "Blood Curdle", "lang": "en", "released_at": "2020-04-24", "uri": "https://api.scryfall.com/cards/4184c851-1419-476c-ba9c-9f0cb1137114", "scryfall_uri": "https://scryfall.com/card/iko/75/blood-curdle?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/4/1/4184c851-1419-476c-ba9c-9f0cb1137114.jpg?1591226609", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/1/4184c851-1419-476c-ba9c-9f0cb1137114.jpg?1591226609", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/4/1/4184c851-1419-476c-ba9c-9f0cb1137114.jpg?1591226609", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/4/1/4184c851-1419-476c-ba9c-9f0cb1137114.png?1591226609", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/1/4184c851-1419-476c-ba9c-9f0cb1137114.jpg?1591226609", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/4/1/4184c851-1419-476c-ba9c-9f0cb1137114.jpg?1591226609"}, "mana_cost": "{3}{B}", "cmc": 4.0, "type_line": "Instant", "oracle_text": "Destroy target creature. Put a menace counter on a creature you control. (It can't be blocked except by two or more creatures.)", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "19feda43-15ab-427e-a0e4-148a4bf2b03a", "set": "iko", "set_name": "Ikoria: Lair of Behemoths", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/19feda43-15ab-427e-a0e4-148a4bf2b03a", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aiko&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/iko?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/4184c851-1419-476c-ba9c-9f0cb1137114/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A8b50de69-121a-48c4-bd7c-c8858f35f6ed&unique=prints", "collector_number": "75", "digital": false, "rarity": "common", "flavor_text": "Fear pierces the strongest armor.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Antonio Jos\u00e9 Manzanedo", "artist_ids": ["74986d28-0001-4a78-827c-e490b325d0e3"], "illustration_id": "2f729fe0-4d1c-4882-8a76-09784627c22b", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 6245, "preview": {"source": "Limited Resources", "source_uri": "https://twitter.com/Marshall_LR/status/1245984280695562242", "previewed_at": "2020-04-03"}, "prices": {"usd": "0.05", "usd_foil": "0.04", "usd_etched": null, "eur": "0.04", "eur_foil": "0.10", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=479595", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Blood+Curdle&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Blood+Curdle&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Blood+Curdle"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/212052?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Blood+Curdle&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/80159?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "1ee98955-4c47-4d45-9377-608dfa755337", "oracle_id": "6e760cfe-45b9-4a3f-b2e2-4ca6ec2bd13a", "multiverse_ids": [522152], "mtgo_id": 90525, "tcgplayer_id": 239792, "cardmarket_id": 566318, "name": "Bone Shards", "lang": "en", "released_at": "2021-06-18", "uri": "https://api.scryfall.com/cards/1ee98955-4c47-4d45-9377-608dfa755337", "scryfall_uri": "https://scryfall.com/card/mh2/76/bone-shards?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/1/e/1ee98955-4c47-4d45-9377-608dfa755337.jpg?1626095299", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/e/1ee98955-4c47-4d45-9377-608dfa755337.jpg?1626095299", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/1/e/1ee98955-4c47-4d45-9377-608dfa755337.jpg?1626095299", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/1/e/1ee98955-4c47-4d45-9377-608dfa755337.png?1626095299", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/e/1ee98955-4c47-4d45-9377-608dfa755337.jpg?1626095299", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/1/e/1ee98955-4c47-4d45-9377-608dfa755337.jpg?1626095299"}, "mana_cost": "{B}", "cmc": 1.0, "type_line": "Sorcery", "oracle_text": "As an additional cost to cast this spell, sacrifice a creature or discard a card.\nDestroy target creature or planeswalker.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "c1c7eb8c-f205-40ab-a609-767cb296544e", "set": "mh2", "set_name": "Modern Horizons 2", "set_type": "draft_innovation", "set_uri": "https://api.scryfall.com/sets/c1c7eb8c-f205-40ab-a609-767cb296544e", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Amh2&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/mh2?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/1ee98955-4c47-4d45-9377-608dfa755337/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A6e760cfe-45b9-4a3f-b2e2-4ca6ec2bd13a&unique=prints", "collector_number": "76", "digital": false, "rarity": "common", "flavor_text": "In the Kathari dumping grounds known as the Boneheaps, its not hard to improvise an offense.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Tommy Arnold", "artist_ids": ["1130bcd0-c8b1-48be-85d7-3ddb2abc6b1a"], "illustration_id": "8bb25403-1466-4b78-ab31-6cc179283567", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 1998, "penny_rank": 723, "preview": {"source": "CoolStuffInc", "source_uri": "https://www.coolstuffinc.com/a/kendrasmith-05262021-three-new-pauper-powerhouses-from-modern-horizons-2", "previewed_at": "2021-05-26"}, "prices": {"usd": "0.16", "usd_foil": "0.22", "usd_etched": null, "eur": "0.06", "eur_foil": "0.75", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=522152", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Bone+Shards&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Bone+Shards&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Bone+Shards"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/239792?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Bone+Shards&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/90525?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "74780faa-1c64-4d73-8d09-53b47ba02d7a", "oracle_id": "0c936582-d4c0-4da8-bc7e-49da5a433939", "multiverse_ids": [401828], "mtgo_id": 58707, "mtgo_foil_id": 58708, "tcgplayer_id": 105579, "cardmarket_id": 284845, "name": "Bone Splinters", "lang": "en", "released_at": "2015-10-02", "uri": "https://api.scryfall.com/cards/74780faa-1c64-4d73-8d09-53b47ba02d7a", "scryfall_uri": "https://scryfall.com/card/bfz/105/bone-splinters?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/7/4/74780faa-1c64-4d73-8d09-53b47ba02d7a.jpg?1562922512", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/4/74780faa-1c64-4d73-8d09-53b47ba02d7a.jpg?1562922512", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/7/4/74780faa-1c64-4d73-8d09-53b47ba02d7a.jpg?1562922512", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/7/4/74780faa-1c64-4d73-8d09-53b47ba02d7a.png?1562922512", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/4/74780faa-1c64-4d73-8d09-53b47ba02d7a.jpg?1562922512", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/7/4/74780faa-1c64-4d73-8d09-53b47ba02d7a.jpg?1562922512"}, "mana_cost": "{B}", "cmc": 1.0, "type_line": "Sorcery", "oracle_text": "As an additional cost to cast this spell, sacrifice a creature.\nDestroy target creature.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "91719374-7ac5-4afa-ada8-5da964dcf1d4", "set": "bfz", "set_name": "Battle for Zendikar", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/91719374-7ac5-4afa-ada8-5da964dcf1d4", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Abfz&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/bfz?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/74780faa-1c64-4d73-8d09-53b47ba02d7a/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A0c936582-d4c0-4da8-bc7e-49da5a433939&unique=prints", "collector_number": "105", "digital": false, "rarity": "common", "flavor_text": "Vastly outnumbered, the Zendikari found creative ways to even the odds.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Deruchenko Alexander", "artist_ids": ["806f6ff9-6ed4-4e93-998a-a562c0b792e6"], "illustration_id": "662e9abf-27a8-4e34-94db-459557838dd0", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 4395, "penny_rank": 3792, "prices": {"usd": "0.04", "usd_foil": "0.24", "usd_etched": null, "eur": "0.05", "eur_foil": "0.08", "tix": "0.04"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=401828", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Bone+Splinters&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Bone+Splinters&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Bone+Splinters"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/105579?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Bone+Splinters&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/58707?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "387eda28-f35b-48b0-ba59-773d82902327", "oracle_id": "0c936582-d4c0-4da8-bc7e-49da5a433939", "multiverse_ids": [239983], "mtgo_id": 43855, "mtgo_foil_id": 43856, "tcgplayer_id": 58904, "cardmarket_id": 254648, "name": "Bone Splinters", "lang": "en", "released_at": "2012-05-04", "uri": "https://api.scryfall.com/cards/387eda28-f35b-48b0-ba59-773d82902327", "scryfall_uri": "https://scryfall.com/card/avr/88/bone-splinters?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/3/8/387eda28-f35b-48b0-ba59-773d82902327.jpg?1592708776", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/8/387eda28-f35b-48b0-ba59-773d82902327.jpg?1592708776", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/3/8/387eda28-f35b-48b0-ba59-773d82902327.jpg?1592708776", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/3/8/387eda28-f35b-48b0-ba59-773d82902327.png?1592708776", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/8/387eda28-f35b-48b0-ba59-773d82902327.jpg?1592708776", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/3/8/387eda28-f35b-48b0-ba59-773d82902327.jpg?1592708776"}, "mana_cost": "{B}", "cmc": 1.0, "type_line": "Sorcery", "oracle_text": "As an additional cost to cast this spell, sacrifice a creature.\nDestroy target creature.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "039810a9-92d7-4f2d-b2d0-ca661ac586c0", "set": "avr", "set_name": "Avacyn Restored", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/039810a9-92d7-4f2d-b2d0-ca661ac586c0", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aavr&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/avr?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/387eda28-f35b-48b0-ba59-773d82902327/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A0c936582-d4c0-4da8-bc7e-49da5a433939&unique=prints", "collector_number": "88", "digital": false, "rarity": "common", "flavor_text": "\"Which do you deserve, the heft of a femur or the graceful sharpness of a forearm? Decisions, decisions . . .\"\n\u2014Gisa the Mad", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Nils Hamm", "artist_ids": ["c540d1fc-1500-457f-93cf-d6069ee66546"], "illustration_id": "3b9b6720-8e69-4eb9-b594-b378239d4e31", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 4395, "penny_rank": 3792, "prices": {"usd": "0.07", "usd_foil": "0.52", "usd_etched": null, "eur": "0.11", "eur_foil": "0.75", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=239983", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Bone+Splinters&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Bone+Splinters&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Bone+Splinters"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/58904?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Bone+Splinters&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/43855?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "d4a4b3a3-b7ae-4210-8037-098fdf5808d0", "oracle_id": "0c936582-d4c0-4da8-bc7e-49da5a433939", "multiverse_ids": [174967], "mtgo_id": 31331, "mtgo_foil_id": 31332, "tcgplayer_id": 27622, "cardmarket_id": 19834, "name": "Bone Splinters", "lang": "en", "released_at": "2008-10-03", "uri": "https://api.scryfall.com/cards/d4a4b3a3-b7ae-4210-8037-098fdf5808d0", "scryfall_uri": "https://scryfall.com/card/ala/67/bone-splinters?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/d/4/d4a4b3a3-b7ae-4210-8037-098fdf5808d0.jpg?1562709424", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/4/d4a4b3a3-b7ae-4210-8037-098fdf5808d0.jpg?1562709424", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/d/4/d4a4b3a3-b7ae-4210-8037-098fdf5808d0.jpg?1562709424", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/d/4/d4a4b3a3-b7ae-4210-8037-098fdf5808d0.png?1562709424", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/4/d4a4b3a3-b7ae-4210-8037-098fdf5808d0.jpg?1562709424", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/d/4/d4a4b3a3-b7ae-4210-8037-098fdf5808d0.jpg?1562709424"}, "mana_cost": "{B}", "cmc": 1.0, "type_line": "Sorcery", "oracle_text": "As an additional cost to cast this spell, sacrifice a creature.\nDestroy target creature.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "d667aaec-09b7-4406-b6fa-60795132dc11", "set": "ala", "set_name": "Shards of Alara", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/d667aaec-09b7-4406-b6fa-60795132dc11", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aala&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ala?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/d4a4b3a3-b7ae-4210-8037-098fdf5808d0/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A0c936582-d4c0-4da8-bc7e-49da5a433939&unique=prints", "collector_number": "67", "digital": false, "rarity": "common", "flavor_text": "Witches of the Split-Eye Coven speak of a future when Grixis will overflow with life energy. For now, they must harvest vis from the living to fuel their dark magics.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Cole Eastburn", "artist_ids": ["c7c6aa01-40ef-4896-9237-c45decec0564"], "illustration_id": "02d5db34-2f78-4b36-a489-8b4dbc5ee9e2", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 4395, "penny_rank": 3792, "prices": {"usd": "0.09", "usd_foil": "0.20", "usd_etched": null, "eur": "0.09", "eur_foil": "0.49", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=174967", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Bone+Splinters&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Bone+Splinters&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Bone+Splinters"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/27622?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Bone+Splinters&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/31331?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "c34fa44f-274e-4914-bbd5-71193f8d2f96", "oracle_id": "dd464a76-5f96-4e21-b7c6-4a476e7f9ce6", "multiverse_ids": [88965], "mtgo_id": 23452, "mtgo_foil_id": 23453, "tcgplayer_id": 13213, "cardmarket_id": 13316, "name": "Brainspoil", "lang": "en", "released_at": "2005-10-07", "uri": "https://api.scryfall.com/cards/c34fa44f-274e-4914-bbd5-71193f8d2f96", "scryfall_uri": "https://scryfall.com/card/rav/78/brainspoil?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/c/3/c34fa44f-274e-4914-bbd5-71193f8d2f96.jpg?1598914670", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/3/c34fa44f-274e-4914-bbd5-71193f8d2f96.jpg?1598914670", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/c/3/c34fa44f-274e-4914-bbd5-71193f8d2f96.jpg?1598914670", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/c/3/c34fa44f-274e-4914-bbd5-71193f8d2f96.png?1598914670", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/3/c34fa44f-274e-4914-bbd5-71193f8d2f96.jpg?1598914670", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/c/3/c34fa44f-274e-4914-bbd5-71193f8d2f96.jpg?1598914670"}, "mana_cost": "{3}{B}{B}", "cmc": 5.0, "type_line": "Sorcery", "oracle_text": "Destroy target creature that isn't enchanted. It can't be regenerated.\nTransmute {1}{B}{B} ({1}{B}{B}, Discard this card: Search your library for a card with the same mana value as this card, reveal it, put it into your hand, then shuffle. Transmute only as a sorcery.)", "colors": ["B"], "color_identity": ["B"], "keywords": ["Transmute"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "15fccbe8-2825-41ca-9d0a-67aebdf91c4a", "set": "rav", "set_name": "Ravnica: City of Guilds", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/15fccbe8-2825-41ca-9d0a-67aebdf91c4a", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Arav&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/rav?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/c34fa44f-274e-4914-bbd5-71193f8d2f96/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Add464a76-5f96-4e21-b7c6-4a476e7f9ce6&unique=prints", "collector_number": "78", "digital": false, "rarity": "common", "watermark": "dimir", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Tomas Giorello", "artist_ids": ["7ee93edf-ecd7-4f9b-bf8e-a95733625a3e"], "illustration_id": "7a7981c8-f074-4855-bf81-12a603506862", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 7639, "penny_rank": 2183, "prices": {"usd": "0.20", "usd_foil": "2.65", "usd_etched": null, "eur": "0.20", "eur_foil": "0.19", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=88965", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Brainspoil&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Brainspoil&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Brainspoil"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/13213?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Brainspoil&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/23452?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "3340ffb9-9513-4551-ad64-821600596b2e", "oracle_id": "1de2c216-0921-45eb-9613-a68d18fbee77", "multiverse_ids": [435158], "mtgo_id": 65024, "mtgo_foil_id": 65025, "arena_id": 65973, "tcgplayer_id": 145691, "cardmarket_id": 301730, "name": "Bright Reprisal", "lang": "en", "released_at": "2017-09-29", "uri": "https://api.scryfall.com/cards/3340ffb9-9513-4551-ad64-821600596b2e", "scryfall_uri": "https://scryfall.com/card/xln/7/bright-reprisal?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/3/3/3340ffb9-9513-4551-ad64-821600596b2e.jpg?1562553092", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/3/3340ffb9-9513-4551-ad64-821600596b2e.jpg?1562553092", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/3/3/3340ffb9-9513-4551-ad64-821600596b2e.jpg?1562553092", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/3/3/3340ffb9-9513-4551-ad64-821600596b2e.png?1562553092", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/3/3340ffb9-9513-4551-ad64-821600596b2e.jpg?1562553092", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/3/3/3340ffb9-9513-4551-ad64-821600596b2e.jpg?1562553092"}, "mana_cost": "{4}{W}", "cmc": 5.0, "type_line": "Instant", "oracle_text": "Destroy target attacking creature.\nDraw a card.", "colors": ["W"], "color_identity": ["W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "fe0dad85-54bc-4151-9200-d68da84dd0f2", "set": "xln", "set_name": "Ixalan", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/fe0dad85-54bc-4151-9200-d68da84dd0f2", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Axln&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/xln?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/3340ffb9-9513-4551-ad64-821600596b2e/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A1de2c216-0921-45eb-9613-a68d18fbee77&unique=prints", "collector_number": "7", "digital": false, "rarity": "uncommon", "flavor_text": "Vampires know blood and the systems that carry it. And they know exactly where to strike to set it free.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Ryan Alexander Lee", "artist_ids": ["f4d194b4-958a-4830-8d87-1a84e0b9ffbc"], "illustration_id": "d1641d5c-3ca6-4c36-af36-f9f816aca596", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 16641, "penny_rank": 12073, "prices": {"usd": "0.02", "usd_foil": "0.10", "usd_etched": null, "eur": "0.03", "eur_foil": "0.14", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=435158", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Bright+Reprisal&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Bright+Reprisal&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Bright+Reprisal"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/145691?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Bright+Reprisal&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/65024?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "e18146f9-369c-41c8-8a1d-7737edd2c18e", "oracle_id": "05d2b89b-acc4-4289-95a3-a09ebb23a5d6", "multiverse_ids": [445994], "tcgplayer_id": 167833, "cardmarket_id": 358929, "name": "Bring Down", "lang": "en", "released_at": "2018-06-08", "uri": "https://api.scryfall.com/cards/e18146f9-369c-41c8-8a1d-7737edd2c18e", "scryfall_uri": "https://scryfall.com/card/bbd/26/bring-down?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/e/1/e18146f9-369c-41c8-8a1d-7737edd2c18e.jpg?1562940282", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/1/e18146f9-369c-41c8-8a1d-7737edd2c18e.jpg?1562940282", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/e/1/e18146f9-369c-41c8-8a1d-7737edd2c18e.jpg?1562940282", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/e/1/e18146f9-369c-41c8-8a1d-7737edd2c18e.png?1562940282", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/1/e18146f9-369c-41c8-8a1d-7737edd2c18e.jpg?1562940282", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/e/1/e18146f9-369c-41c8-8a1d-7737edd2c18e.jpg?1562940282"}, "mana_cost": "{3}{W}", "cmc": 4.0, "type_line": "Sorcery", "oracle_text": "Assist (Another player can pay up to {3} of this spell's cost.)\nDestroy target creature with power 4 or greater.", "colors": ["W"], "color_identity": ["W"], "keywords": ["Assist"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "95f97fbc-58ef-4645-982e-43e2db6f1124", "set": "bbd", "set_name": "Battlebond", "set_type": "draft_innovation", "set_uri": "https://api.scryfall.com/sets/95f97fbc-58ef-4645-982e-43e2db6f1124", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Abbd&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/bbd?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/e18146f9-369c-41c8-8a1d-7737edd2c18e/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A05d2b89b-acc4-4289-95a3-a09ebb23a5d6&unique=prints", "collector_number": "26", "digital": false, "rarity": "uncommon", "flavor_text": "\"Big, wicked, and not too smart. Poor thing never stood a chance against us, dear.\"\n\u2014Regna, to Krav", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Filip Burburan", "artist_ids": ["66082c3b-a623-4d34-be51-2475214b85d3"], "illustration_id": "adf686c4-4210-448f-bef6-8ed8419d4dd2", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 17456, "prices": {"usd": "0.05", "usd_foil": "0.24", "usd_etched": null, "eur": "0.05", "eur_foil": "0.25", "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=445994", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Bring+Down&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Bring+Down&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Bring+Down"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/167833?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Bring+Down&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Bring+Down&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "824823fb-5ae1-48b1-bc46-e452afa73cd8", "oracle_id": "8e1d750e-44a7-47b1-8e0a-5f8b15d48b41", "multiverse_ids": [3832], "tcgplayer_id": 2061, "cardmarket_id": 9382, "name": "Broken Visage", "lang": "en", "released_at": "1997-03-24", "uri": "https://api.scryfall.com/cards/824823fb-5ae1-48b1-bc46-e452afa73cd8", "scryfall_uri": "https://scryfall.com/card/5ed/149/broken-visage?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/8/2/824823fb-5ae1-48b1-bc46-e452afa73cd8.jpg?1562592294", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/2/824823fb-5ae1-48b1-bc46-e452afa73cd8.jpg?1562592294", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/8/2/824823fb-5ae1-48b1-bc46-e452afa73cd8.jpg?1562592294", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/8/2/824823fb-5ae1-48b1-bc46-e452afa73cd8.png?1562592294", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/2/824823fb-5ae1-48b1-bc46-e452afa73cd8.jpg?1562592294", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/8/2/824823fb-5ae1-48b1-bc46-e452afa73cd8.jpg?1562592294"}, "mana_cost": "{4}{B}", "cmc": 5.0, "type_line": "Instant", "oracle_text": "Destroy target nonartifact attacking creature. It can't be regenerated. Create a black Spirit creature token. Its power is equal to that creature's power and its toughness is equal to that creature's toughness. Sacrifice the token at the beginning of the next end step.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "5afd2f4b-8309-4f45-a2b2-3785018474cb", "set": "5ed", "set_name": "Fifth Edition", "set_type": "core", "set_uri": "https://api.scryfall.com/sets/5afd2f4b-8309-4f45-a2b2-3785018474cb", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3A5ed&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/5ed?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/824823fb-5ae1-48b1-bc46-e452afa73cd8/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A8e1d750e-44a7-47b1-8e0a-5f8b15d48b41&unique=prints", "collector_number": "149", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Margaret Organ-Kean", "artist_ids": ["95951caa-bec8-4720-b836-471f7e7740cb"], "illustration_id": "48dbce36-c1bb-4e2d-b5df-0b08d99eebde", "border_color": "white", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 20892, "prices": {"usd": "0.24", "usd_foil": null, "usd_etched": null, "eur": "0.43", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=3832", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Broken+Visage&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Broken+Visage&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Broken+Visage"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/2061?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Broken+Visage&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Broken+Visage&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "9be199e7-feaa-4f23-b93c-3eab54a02e74", "oracle_id": "8e1d750e-44a7-47b1-8e0a-5f8b15d48b41", "multiverse_ids": [2912], "tcgplayer_id": 4464, "cardmarket_id": 7715, "name": "Broken Visage", "lang": "en", "released_at": "1995-10-01", "uri": "https://api.scryfall.com/cards/9be199e7-feaa-4f23-b93c-3eab54a02e74", "scryfall_uri": "https://scryfall.com/card/hml/43/broken-visage?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/9/b/9be199e7-feaa-4f23-b93c-3eab54a02e74.jpg?1562587775", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/b/9be199e7-feaa-4f23-b93c-3eab54a02e74.jpg?1562587775", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/9/b/9be199e7-feaa-4f23-b93c-3eab54a02e74.jpg?1562587775", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/9/b/9be199e7-feaa-4f23-b93c-3eab54a02e74.png?1562587775", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/b/9be199e7-feaa-4f23-b93c-3eab54a02e74.jpg?1562587775", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/9/b/9be199e7-feaa-4f23-b93c-3eab54a02e74.jpg?1562587775"}, "mana_cost": "{4}{B}", "cmc": 5.0, "type_line": "Instant", "oracle_text": "Destroy target nonartifact attacking creature. It can't be regenerated. Create a black Spirit creature token. Its power is equal to that creature's power and its toughness is equal to that creature's toughness. Sacrifice the token at the beginning of the next end step.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "5ac1f606-e682-46e9-ad0f-122a3783581b", "set": "hml", "set_name": "Homelands", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/5ac1f606-e682-46e9-ad0f-122a3783581b", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ahml&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/hml?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/9be199e7-feaa-4f23-b93c-3eab54a02e74/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A8e1d750e-44a7-47b1-8e0a-5f8b15d48b41&unique=prints", "collector_number": "43", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Mike Kimble", "artist_ids": ["06235390-cfc9-4418-827c-02d890bf54e5"], "illustration_id": "17c32501-6f87-4be1-8ada-c9046ef4d19e", "border_color": "black", "frame": "1993", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 20892, "prices": {"usd": "0.22", "usd_foil": null, "usd_etched": null, "eur": "0.65", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=2912", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Broken+Visage&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Broken+Visage&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Broken+Visage"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/4464?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Broken+Visage&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Broken+Visage&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "9eb94908-4f4a-487e-87ac-8d5bdefe9983", "oracle_id": "5e316864-d55c-496f-8f46-773567896864", "multiverse_ids": [555337], "mtgo_id": 98491, "arena_id": 80287, "tcgplayer_id": 269096, "cardmarket_id": 652192, "name": "Broken Wings", "lang": "en", "released_at": "2022-04-29", "uri": "https://api.scryfall.com/cards/9eb94908-4f4a-487e-87ac-8d5bdefe9983", "scryfall_uri": "https://scryfall.com/card/snc/136/broken-wings?utm_source=api", "layout": "normal", "highres_image": false, "image_status": "lowres", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/9/e/9eb94908-4f4a-487e-87ac-8d5bdefe9983.jpg?1650029788", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/e/9eb94908-4f4a-487e-87ac-8d5bdefe9983.jpg?1650029788", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/9/e/9eb94908-4f4a-487e-87ac-8d5bdefe9983.jpg?1650029788", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/9/e/9eb94908-4f4a-487e-87ac-8d5bdefe9983.png?1650029788", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/e/9eb94908-4f4a-487e-87ac-8d5bdefe9983.jpg?1650029788", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/9/e/9eb94908-4f4a-487e-87ac-8d5bdefe9983.jpg?1650029788"}, "mana_cost": "{2}{G}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Destroy target artifact, enchantment, or creature with flying.", "colors": ["G"], "color_identity": ["G"], "keywords": [], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo", "arena"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "df837242-8c15-42e4-b049-c933a02dc501", "set": "snc", "set_name": "Streets of New Capenna", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/df837242-8c15-42e4-b049-c933a02dc501", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Asnc&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/snc?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/9eb94908-4f4a-487e-87ac-8d5bdefe9983/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A5e316864-d55c-496f-8f46-773567896864&unique=prints", "collector_number": "136", "digital": false, "rarity": "common", "flavor_text": "New Capenna's demonic masters are quick to extinguish any hint of the angels' power reawakening.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Irina Nordsol", "artist_ids": ["1e4cb52d-476e-4c68-ac87-2e620aede6d4"], "illustration_id": "68257875-2d63-46cf-a144-a2e57c468a4a", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 4927, "penny_rank": 11602, "prices": {"usd": "0.02", "usd_foil": "0.04", "usd_etched": null, "eur": "0.05", "eur_foil": "0.04", "tix": "0.01"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=555337", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Broken+Wings&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Broken+Wings&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Broken+Wings"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/269096?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Broken+Wings&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/98491?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "6201f78e-ff45-4c59-ac85-c8447c14a496", "oracle_id": "5e316864-d55c-496f-8f46-773567896864", "multiverse_ids": [503777], "mtgo_id": 87665, "arena_id": 75208, "tcgplayer_id": 230182, "cardmarket_id": 530397, "name": "Broken Wings", "lang": "en", "released_at": "2021-02-05", "uri": "https://api.scryfall.com/cards/6201f78e-ff45-4c59-ac85-c8447c14a496", "scryfall_uri": "https://scryfall.com/card/khm/164/broken-wings?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/6/2/6201f78e-ff45-4c59-ac85-c8447c14a496.jpg?1631050058", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/2/6201f78e-ff45-4c59-ac85-c8447c14a496.jpg?1631050058", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/6/2/6201f78e-ff45-4c59-ac85-c8447c14a496.jpg?1631050058", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/6/2/6201f78e-ff45-4c59-ac85-c8447c14a496.png?1631050058", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/2/6201f78e-ff45-4c59-ac85-c8447c14a496.jpg?1631050058", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/6/2/6201f78e-ff45-4c59-ac85-c8447c14a496.jpg?1631050058"}, "mana_cost": "{2}{G}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Destroy target artifact, enchantment, or creature with flying.", "colors": ["G"], "color_identity": ["G"], "keywords": [], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "43057fad-b1c1-437f-bc48-0045bce6d8c9", "set": "khm", "set_name": "Kaldheim", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/43057fad-b1c1-437f-bc48-0045bce6d8c9", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Akhm&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/khm?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/6201f78e-ff45-4c59-ac85-c8447c14a496/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A5e316864-d55c-496f-8f46-773567896864&unique=prints", "collector_number": "164", "digital": false, "rarity": "common", "flavor_text": "\"Fynn climbed the highest peak and waited, still and silent, until the falling snow had hidden him entirely. When the great eagle flew past, the hunter's aim was true.\"\n\u2014*Saga of the Wisdom Seeker*", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Lars Grant-West", "artist_ids": ["21ed6499-c4d3-4965-ab02-6c7228275bec"], "illustration_id": "969dba6f-c8cf-4ef6-a832-a3db17f06f8a", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 4927, "penny_rank": 11602, "preview": {"source": "TheGamer", "source_uri": "https://www.thegamer.com/exclusive-preview-two-magic-the-gathering-kaldheim-cards/", "previewed_at": "2021-01-09"}, "prices": {"usd": "0.03", "usd_foil": "0.04", "usd_etched": null, "eur": "0.02", "eur_foil": "0.02", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=503777", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Broken+Wings&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Broken+Wings&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Broken+Wings"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/230182?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Broken+Wings&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/87665?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "c0fc2dfd-85b0-4add-be18-b39549235921", "oracle_id": "5e316864-d55c-496f-8f46-773567896864", "multiverse_ids": [491827], "mtgo_id": 83347, "arena_id": 73388, "tcgplayer_id": 221976, "cardmarket_id": 495709, "name": "Broken Wings", "lang": "en", "released_at": "2020-09-25", "uri": "https://api.scryfall.com/cards/c0fc2dfd-85b0-4add-be18-b39549235921", "scryfall_uri": "https://scryfall.com/card/znr/181/broken-wings?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/c/0/c0fc2dfd-85b0-4add-be18-b39549235921.jpg?1604198611", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/0/c0fc2dfd-85b0-4add-be18-b39549235921.jpg?1604198611", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/c/0/c0fc2dfd-85b0-4add-be18-b39549235921.jpg?1604198611", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/c/0/c0fc2dfd-85b0-4add-be18-b39549235921.png?1604198611", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/0/c0fc2dfd-85b0-4add-be18-b39549235921.jpg?1604198611", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/c/0/c0fc2dfd-85b0-4add-be18-b39549235921.jpg?1604198611"}, "mana_cost": "{2}{G}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Destroy target artifact, enchantment, or creature with flying.", "colors": ["G"], "color_identity": ["G"], "keywords": [], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "f4e01fa7-b254-42dd-849f-69b58027a8c4", "set": "znr", "set_name": "Zendikar Rising", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/f4e01fa7-b254-42dd-849f-69b58027a8c4", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aznr&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/znr?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/c0fc2dfd-85b0-4add-be18-b39549235921/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A5e316864-d55c-496f-8f46-773567896864&unique=prints", "collector_number": "181", "digital": false, "rarity": "common", "flavor_text": "Getting airborne with a kitesail is easy. It's everything afterward that takes focus, skill, and luck.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Ekaterina Burmak", "artist_ids": ["2a9f3780-fcc8-4ec5-b403-ee1d1370d3b4"], "illustration_id": "4d8fb5b1-3468-4209-af45-ece46feee068", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 4927, "penny_rank": 11602, "preview": {"source": "deezyMTG", "source_uri": "https://twitter.com/deezyMTG/status/1301568499366666241", "previewed_at": "2020-09-03"}, "prices": {"usd": "0.02", "usd_foil": "0.07", "usd_etched": null, "eur": "0.10", "eur_foil": "0.05", "tix": "0.01"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=491827", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Broken+Wings&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Broken+Wings&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Broken+Wings"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/221976?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Broken+Wings&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/83347?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "aba79021-39af-4e74-beb5-f2f508c865b2", "oracle_id": "cdaab6b0-1a2d-4809-8e6b-56013acd8f78", "multiverse_ids": [563002], "tcgplayer_id": 273128, "cardmarket_id": 660726, "name": "Cast Down", "lang": "en", "released_at": "2022-06-10", "uri": "https://api.scryfall.com/cards/aba79021-39af-4e74-beb5-f2f508c865b2", "scryfall_uri": "https://scryfall.com/card/clb/119/cast-down?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/a/b/aba79021-39af-4e74-beb5-f2f508c865b2.jpg?1653520579", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/b/aba79021-39af-4e74-beb5-f2f508c865b2.jpg?1653520579", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/a/b/aba79021-39af-4e74-beb5-f2f508c865b2.jpg?1653520579", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/a/b/aba79021-39af-4e74-beb5-f2f508c865b2.png?1653520579", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/b/aba79021-39af-4e74-beb5-f2f508c865b2.jpg?1653520579", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/a/b/aba79021-39af-4e74-beb5-f2f508c865b2.jpg?1653520579"}, "mana_cost": "{1}{B}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Destroy target nonlegendary creature.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "5e4c3fe8-fd57-4b20-ad56-c03790a16cea", "set": "clb", "set_name": "Commander Legends: Battle for Baldur's Gate", "set_type": "draft_innovation", "set_uri": "https://api.scryfall.com/sets/5e4c3fe8-fd57-4b20-ad56-c03790a16cea", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aclb&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/clb?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/aba79021-39af-4e74-beb5-f2f508c865b2/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Acdaab6b0-1a2d-4809-8e6b-56013acd8f78&unique=prints", "collector_number": "119", "digital": false, "rarity": "uncommon", "flavor_text": "\"We simply cannot tolerate a petty thief among the servants. I'm afraid I'll have to let you go.\"\n\u2014Rog, steward of House Rillyn", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Tyler Walpole", "artist_ids": ["70c4c8c7-61a8-44e7-8fb1-161b7f943e7e"], "illustration_id": "f9ed6363-9f08-4222-81cf-9ea9bc4d7dc3", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 2942, "preview": {"source": "Wizards of the Coast", "source_uri": "https://twitter.com/mtgjp/status/1529288645676515331", "previewed_at": "2022-05-24"}, "prices": {"usd": "0.12", "usd_foil": "0.18", "usd_etched": null, "eur": "0.25", "eur_foil": "0.65", "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=563002", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Cast+Down&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Cast+Down&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Cast+Down"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/273128?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Cast+Down&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Cast+Down&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "a41150b2-44a6-4e80-8b32-afc6ea744fb3", "oracle_id": "cdaab6b0-1a2d-4809-8e6b-56013acd8f78", "multiverse_ids": [], "tcgplayer_id": 164092, "cardmarket_id": 320856, "name": "Cast Down", "lang": "en", "released_at": "2018-04-27", "uri": "https://api.scryfall.com/cards/a41150b2-44a6-4e80-8b32-afc6ea744fb3", "scryfall_uri": "https://scryfall.com/card/pdom/81/cast-down?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/a/4/a41150b2-44a6-4e80-8b32-afc6ea744fb3.jpg?1591104816", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/4/a41150b2-44a6-4e80-8b32-afc6ea744fb3.jpg?1591104816", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/a/4/a41150b2-44a6-4e80-8b32-afc6ea744fb3.jpg?1591104816", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/a/4/a41150b2-44a6-4e80-8b32-afc6ea744fb3.png?1591104816", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/4/a41150b2-44a6-4e80-8b32-afc6ea744fb3.jpg?1591104816", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/a/4/a41150b2-44a6-4e80-8b32-afc6ea744fb3.jpg?1591104816"}, "mana_cost": "{1}{B}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Destroy target nonlegendary creature.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": true, "nonfoil": false, "finishes": ["foil"], "oversized": false, "promo": true, "reprint": true, "variation": false, "set_id": "e61a976d-a9ce-42bd-ad9e-f51b1c8fc434", "set": "pdom", "set_name": "Dominaria Promos", "set_type": "promo", "set_uri": "https://api.scryfall.com/sets/e61a976d-a9ce-42bd-ad9e-f51b1c8fc434", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Apdom&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/pdom?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/a41150b2-44a6-4e80-8b32-afc6ea744fb3/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Acdaab6b0-1a2d-4809-8e6b-56013acd8f78&unique=prints", "collector_number": "81", "digital": false, "rarity": "uncommon", "watermark": "planeswalker", "flavor_text": "\"Your life is finished, your name lost, and your work forgotten. It is as though Mazeura never existed.\"\n\u2014*Chainer's Torment*", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Bastien L. Deharme", "artist_ids": ["798f63ec-41ad-474e-9708-df08193345c6"], "illustration_id": "f9e7f1e5-2da8-44c7-b39d-c3c9fbac9f58", "border_color": "black", "frame": "2015", "frame_effects": ["inverted"], "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "promo_types": ["setpromo", "fnm"], "edhrec_rank": 2942, "prices": {"usd": null, "usd_foil": "1.12", "usd_etched": null, "eur": null, "eur_foil": "0.05", "tix": null}, "related_uris": {"tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Cast+Down&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Cast+Down&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Cast+Down"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/164092?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Cast+Down&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Cast+Down&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "08fc5e50-c6f7-41ec-815a-5667eefded78", "oracle_id": "5c6c8fe7-3520-423b-a224-1c0af516871a", "multiverse_ids": [461114], "mtgo_id": 71980, "arena_id": 69638, "tcgplayer_id": 188643, "cardmarket_id": 372254, "name": "Casualties of War", "lang": "en", "released_at": "2019-05-03", "uri": "https://api.scryfall.com/cards/08fc5e50-c6f7-41ec-815a-5667eefded78", "scryfall_uri": "https://scryfall.com/card/war/187/casualties-of-war?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/0/8/08fc5e50-c6f7-41ec-815a-5667eefded78.jpg?1557577078", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/8/08fc5e50-c6f7-41ec-815a-5667eefded78.jpg?1557577078", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/0/8/08fc5e50-c6f7-41ec-815a-5667eefded78.jpg?1557577078", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/0/8/08fc5e50-c6f7-41ec-815a-5667eefded78.png?1557577078", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/8/08fc5e50-c6f7-41ec-815a-5667eefded78.jpg?1557577078", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/0/8/08fc5e50-c6f7-41ec-815a-5667eefded78.jpg?1557577078"}, "mana_cost": "{2}{B}{B}{G}{G}", "cmc": 6.0, "type_line": "Sorcery", "oracle_text": "Choose one or more \u2014\n\u2022 Destroy target artifact.\n\u2022 Destroy target creature.\n\u2022 Destroy target enchantment.\n\u2022 Destroy target land.\n\u2022 Destroy target planeswalker.", "colors": ["B", "G"], "color_identity": ["B", "G"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "ee044f0b-e101-4ead-8d0e-aa510aad4277", "set": "war", "set_name": "War of the Spark", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/ee044f0b-e101-4ead-8d0e-aa510aad4277", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Awar&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/war?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/08fc5e50-c6f7-41ec-815a-5667eefded78/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A5c6c8fe7-3520-423b-a224-1c0af516871a&unique=prints", "collector_number": "187", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Tomasz Jedruszek", "artist_ids": ["bba69285-2445-4a4b-a847-59397be972ea"], "illustration_id": "1df7cb5d-4a2b-4a67-812c-0b0664e3b9ad", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 966, "penny_rank": 1853, "preview": {"source": "ChannelFireball", "source_uri": "https://www.channelfireball.com/articles/luis-scott-vargas/war-of-the-spark-preview-card-casualties-of-war/?_ga=2.102992137.82276915.1555401470-2020836281.1551290624", "previewed_at": "2019-04-16"}, "prices": {"usd": "0.83", "usd_foil": "2.81", "usd_etched": null, "eur": "0.86", "eur_foil": "2.25", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=461114", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Casualties+of+War&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Casualties+of+War&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Casualties+of+War"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/188643?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Casualties+of+War&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/71980?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "c67784b3-eb55-452e-b965-f63220b88896", "oracle_id": "1d4b8a31-6500-4e3d-bcaf-f6f184d7743e", "multiverse_ids": [414379], "mtgo_id": 61154, "mtgo_foil_id": 61155, "tcgplayer_id": 120466, "cardmarket_id": 291133, "name": "Certain Death", "lang": "en", "released_at": "2016-07-22", "uri": "https://api.scryfall.com/cards/c67784b3-eb55-452e-b965-f63220b88896", "scryfall_uri": "https://scryfall.com/card/emn/84/certain-death?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/c/6/c67784b3-eb55-452e-b965-f63220b88896.jpg?1576384279", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/6/c67784b3-eb55-452e-b965-f63220b88896.jpg?1576384279", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/c/6/c67784b3-eb55-452e-b965-f63220b88896.jpg?1576384279", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/c/6/c67784b3-eb55-452e-b965-f63220b88896.png?1576384279", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/6/c67784b3-eb55-452e-b965-f63220b88896.jpg?1576384279", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/c/6/c67784b3-eb55-452e-b965-f63220b88896.jpg?1576384279"}, "mana_cost": "{5}{B}", "cmc": 6.0, "type_line": "Sorcery", "oracle_text": "Destroy target creature. Its controller loses 2 life and you gain 2 life.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "5f0e4093-334f-4439-bbb5-a0affafd0ffc", "set": "emn", "set_name": "Eldritch Moon", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/5f0e4093-334f-4439-bbb5-a0affafd0ffc", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aemn&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/emn?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/c67784b3-eb55-452e-b965-f63220b88896/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A1d4b8a31-6500-4e3d-bcaf-f6f184d7743e&unique=prints", "collector_number": "84", "digital": false, "rarity": "common", "flavor_text": "Some spirits cling to one person, feasting on the growing fear until a final moment of all-consuming terror.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Kev Walker", "artist_ids": ["f366a0ee-a0cd-466d-ba6a-90058c7a31a6"], "illustration_id": "f7fd3ac5-1b6f-4926-95ce-0da1e106c8fb", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 17241, "penny_rank": 8008, "prices": {"usd": "0.02", "usd_foil": null, "usd_etched": null, "eur": "0.02", "eur_foil": "0.10", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=414379", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Certain+Death&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Certain+Death&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Certain+Death"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/120466?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Certain+Death&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/61154?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "1169dab7-8f4c-474d-9289-42765a275376", "oracle_id": "b7553f3f-5de1-409c-a184-e12e40f017ab", "multiverse_ids": [34958], "mtgo_id": 17636, "mtgo_foil_id": 17637, "tcgplayer_id": 10312, "cardmarket_id": 2134, "name": "Chastise", "lang": "en", "released_at": "2002-05-27", "uri": "https://api.scryfall.com/cards/1169dab7-8f4c-474d-9289-42765a275376", "scryfall_uri": "https://scryfall.com/card/jud/8/chastise?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/1/1/1169dab7-8f4c-474d-9289-42765a275376.jpg?1562628717", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/1/1169dab7-8f4c-474d-9289-42765a275376.jpg?1562628717", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/1/1/1169dab7-8f4c-474d-9289-42765a275376.jpg?1562628717", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/1/1/1169dab7-8f4c-474d-9289-42765a275376.png?1562628717", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/1/1169dab7-8f4c-474d-9289-42765a275376.jpg?1562628717", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/1/1/1169dab7-8f4c-474d-9289-42765a275376.jpg?1562628717"}, "mana_cost": "{3}{W}", "cmc": 4.0, "type_line": "Instant", "oracle_text": "Destroy target attacking creature. You gain life equal to its power.", "colors": ["W"], "color_identity": ["W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "cd82de1a-36fd-4618-bfe8-b45532a582d9", "set": "jud", "set_name": "Judgment", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/cd82de1a-36fd-4618-bfe8-b45532a582d9", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ajud&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/jud?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/1169dab7-8f4c-474d-9289-42765a275376/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ab7553f3f-5de1-409c-a184-e12e40f017ab&unique=prints", "collector_number": "8", "digital": false, "rarity": "uncommon", "flavor_text": "\"Why do we pray to the Ancestor? Because She listens.\"\n\u2014Mystic elder", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Carl Critchlow", "artist_ids": ["17948f16-611a-44b8-8d10-9895a0bdfff1"], "illustration_id": "80941507-0653-404f-9a6a-3c84f11fa2bc", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 15185, "penny_rank": 11623, "prices": {"usd": "0.17", "usd_foil": "0.57", "usd_etched": null, "eur": "0.74", "eur_foil": "1.00", "tix": "0.04"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=34958", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Chastise&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Chastise&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Chastise"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/10312?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Chastise&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/17636?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "312505d7-362e-43cf-bd23-28c248a8b7e1", "oracle_id": "bcc53728-3f6e-48cf-a042-393a2d8098fc", "multiverse_ids": [121190], "mtgo_id": 24631, "mtgo_foil_id": 24632, "tcgplayer_id": 14014, "cardmarket_id": 13621, "name": "Chill to the Bone", "lang": "en", "released_at": "2006-07-21", "uri": "https://api.scryfall.com/cards/312505d7-362e-43cf-bd23-28c248a8b7e1", "scryfall_uri": "https://scryfall.com/card/csp/52/chill-to-the-bone?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/3/1/312505d7-362e-43cf-bd23-28c248a8b7e1.jpg?1593275049", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/1/312505d7-362e-43cf-bd23-28c248a8b7e1.jpg?1593275049", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/3/1/312505d7-362e-43cf-bd23-28c248a8b7e1.jpg?1593275049", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/3/1/312505d7-362e-43cf-bd23-28c248a8b7e1.png?1593275049", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/1/312505d7-362e-43cf-bd23-28c248a8b7e1.jpg?1593275049", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/3/1/312505d7-362e-43cf-bd23-28c248a8b7e1.jpg?1593275049"}, "mana_cost": "{3}{B}", "cmc": 4.0, "type_line": "Instant", "oracle_text": "Destroy target nonsnow creature.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "1f4f105f-73e4-4f03-849e-82a204807847", "set": "csp", "set_name": "Coldsnap", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/1f4f105f-73e4-4f03-849e-82a204807847", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Acsp&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/csp?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/312505d7-362e-43cf-bd23-28c248a8b7e1/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Abcc53728-3f6e-48cf-a042-393a2d8098fc&unique=prints", "collector_number": "52", "digital": false, "rarity": "common", "flavor_text": "\"Thick hides and layered armor won't help when I freeze you from the inside out.\"\n\u2014Heidar, Rimewind master", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Jim Murray", "artist_ids": ["1c906f9b-5bbe-4643-8f5c-90eb1c7f0c43"], "illustration_id": "f1c396a8-2fd3-4127-a417-93a7e046c48a", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 14286, "penny_rank": 12375, "prices": {"usd": "0.10", "usd_foil": "0.50", "usd_etched": null, "eur": "0.04", "eur_foil": "0.28", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=121190", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Chill+to+the+Bone&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Chill+to+the+Bone&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Chill+to+the+Bone"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/14014?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Chill+to+the+Bone&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/24631?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "f044c470-50ce-4a6c-b8ab-665357c3c11e", "oracle_id": "f64ea1a7-0e10-4549-8056-25ebc2ce0175", "multiverse_ids": [3436], "mtgo_id": 6861, "mtgo_foil_id": 6862, "tcgplayer_id": 5008, "cardmarket_id": 8216, "name": "Cinder Cloud", "lang": "en", "released_at": "1996-10-08", "uri": "https://api.scryfall.com/cards/f044c470-50ce-4a6c-b8ab-665357c3c11e", "scryfall_uri": "https://scryfall.com/card/mir/165/cinder-cloud?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/f/0/f044c470-50ce-4a6c-b8ab-665357c3c11e.jpg?1562722408", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/0/f044c470-50ce-4a6c-b8ab-665357c3c11e.jpg?1562722408", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/f/0/f044c470-50ce-4a6c-b8ab-665357c3c11e.jpg?1562722408", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/f/0/f044c470-50ce-4a6c-b8ab-665357c3c11e.png?1562722408", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/0/f044c470-50ce-4a6c-b8ab-665357c3c11e.jpg?1562722408", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/f/0/f044c470-50ce-4a6c-b8ab-665357c3c11e.jpg?1562722408"}, "mana_cost": "{3}{R}{R}", "cmc": 5.0, "type_line": "Instant", "oracle_text": "Destroy target creature. If a white creature dies this way, Cinder Cloud deals damage to that creature's controller equal to the creature's power.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "5f06acf3-8123-4a78-b2e7-089b0b775a4a", "set": "mir", "set_name": "Mirage", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/5f06acf3-8123-4a78-b2e7-089b0b775a4a", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Amir&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/mir?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/f044c470-50ce-4a6c-b8ab-665357c3c11e/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Af64ea1a7-0e10-4549-8056-25ebc2ce0175&unique=prints", "collector_number": "165", "digital": false, "rarity": "uncommon", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Jock", "artist_ids": ["e0ee5fd3-b2a0-4521-a8af-5418d1e6ff78"], "illustration_id": "6de27e24-c024-497f-8dde-f93e9770693e", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 18768, "penny_rank": 4629, "prices": {"usd": "0.17", "usd_foil": null, "usd_etched": null, "eur": "0.49", "eur_foil": null, "tix": "0.09"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=3436", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Cinder+Cloud&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Cinder+Cloud&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Cinder+Cloud"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/5008?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Cinder+Cloud&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/6861?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "8a8f904b-a9a3-4bae-9284-4e9cbe7592ee", "oracle_id": "05a1575c-8d08-4845-8ae0-85e0aba55637", "multiverse_ids": [369029], "mtgo_id": 48228, "mtgo_foil_id": 48229, "tcgplayer_id": 67977, "cardmarket_id": 261519, "name": "Clear a Path", "lang": "en", "released_at": "2013-05-03", "uri": "https://api.scryfall.com/cards/8a8f904b-a9a3-4bae-9284-4e9cbe7592ee", "scryfall_uri": "https://scryfall.com/card/dgm/32/clear-a-path?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/8/a/8a8f904b-a9a3-4bae-9284-4e9cbe7592ee.jpg?1562920680", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/a/8a8f904b-a9a3-4bae-9284-4e9cbe7592ee.jpg?1562920680", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/8/a/8a8f904b-a9a3-4bae-9284-4e9cbe7592ee.jpg?1562920680", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/8/a/8a8f904b-a9a3-4bae-9284-4e9cbe7592ee.png?1562920680", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/a/8a8f904b-a9a3-4bae-9284-4e9cbe7592ee.jpg?1562920680", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/8/a/8a8f904b-a9a3-4bae-9284-4e9cbe7592ee.jpg?1562920680"}, "mana_cost": "{R}", "cmc": 1.0, "type_line": "Sorcery", "oracle_text": "Destroy target creature with defender.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "c8bd8520-cd98-45cd-b533-8d40c2087426", "set": "dgm", "set_name": "Dragon's Maze", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/c8bd8520-cd98-45cd-b533-8d40c2087426", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Adgm&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/dgm?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/8a8f904b-a9a3-4bae-9284-4e9cbe7592ee/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A05a1575c-8d08-4845-8ae0-85e0aba55637&unique=prints", "collector_number": "32", "digital": false, "rarity": "common", "flavor_text": "\"Why do guards always look surprised when we bash them?\" asked Ruric. \"I think they expect a bribe,\" said Thar.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Karl Kopinski", "artist_ids": ["0fad2c48-a56e-4a0b-b512-224f6f238f20"], "illustration_id": "227583bb-9981-4012-8e1c-7b90a6443db2", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 22357, "penny_rank": 10200, "prices": {"usd": "0.01", "usd_foil": "0.08", "usd_etched": null, "eur": "0.01", "eur_foil": "0.15", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=369029", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Clear+a+Path&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Clear+a+Path&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Clear+a+Path"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/67977?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Clear+a+Path&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/48228?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "785e6d07-fe40-4723-b963-02da0a0987c7", "oracle_id": "79ac7b6a-1c25-45f6-84b4-5c4a78d6fd6e", "multiverse_ids": [513661], "mtgo_id": 88845, "arena_id": 76577, "tcgplayer_id": 235890, "cardmarket_id": 557892, "name": "Closing Statement", "lang": "en", "released_at": "2021-04-23", "uri": "https://api.scryfall.com/cards/785e6d07-fe40-4723-b963-02da0a0987c7", "scryfall_uri": "https://scryfall.com/card/stx/169/closing-statement?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/7/8/785e6d07-fe40-4723-b963-02da0a0987c7.jpg?1627428302", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/8/785e6d07-fe40-4723-b963-02da0a0987c7.jpg?1627428302", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/7/8/785e6d07-fe40-4723-b963-02da0a0987c7.jpg?1627428302", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/7/8/785e6d07-fe40-4723-b963-02da0a0987c7.png?1627428302", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/8/785e6d07-fe40-4723-b963-02da0a0987c7.jpg?1627428302", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/7/8/785e6d07-fe40-4723-b963-02da0a0987c7.jpg?1627428302"}, "mana_cost": "{3}{W}{B}", "cmc": 5.0, "type_line": "Instant", "oracle_text": "This spell costs {2} less to cast during your end step.\nDestroy target creature or planeswalker you don't control. Put a +1/+1 counter on up to one target creature you control.", "colors": ["B", "W"], "color_identity": ["B", "W"], "keywords": [], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "541c3c28-8747-40e5-a231-8e8f33234859", "set": "stx", "set_name": "Strixhaven: School of Mages", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/541c3c28-8747-40e5-a231-8e8f33234859", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Astx&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/stx?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/785e6d07-fe40-4723-b963-02da0a0987c7/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A79ac7b6a-1c25-45f6-84b4-5c4a78d6fd6e&unique=prints", "collector_number": "169", "digital": false, "rarity": "uncommon", "watermark": "silverquill", "flavor_text": "\"In conclusion . . .\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Craig J Spearing", "artist_ids": ["b0f15e74-0dd6-4156-959e-c5e30c5cdc52"], "illustration_id": "3779b0bd-1a33-48b3-92e2-29719fe7296d", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 9194, "penny_rank": 10259, "prices": {"usd": "0.05", "usd_foil": "0.06", "usd_etched": null, "eur": "0.09", "eur_foil": "0.12", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=513661", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Closing+Statement&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Closing+Statement&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Closing+Statement"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/235890?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Closing+Statement&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/88845?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "cdf305b7-d1f7-4770-9201-8f3fb6735cd9", "oracle_id": "adc03c37-33c7-4b92-b9fd-4608e6c372c4", "multiverse_ids": [452755], "mtgo_id": 69383, "arena_id": 68466, "tcgplayer_id": 176863, "cardmarket_id": 364241, "name": "Collar the Culprit", "lang": "en", "released_at": "2018-10-05", "uri": "https://api.scryfall.com/cards/cdf305b7-d1f7-4770-9201-8f3fb6735cd9", "scryfall_uri": "https://scryfall.com/card/grn/5/collar-the-culprit?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/c/d/cdf305b7-d1f7-4770-9201-8f3fb6735cd9.jpg?1572892497", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/d/cdf305b7-d1f7-4770-9201-8f3fb6735cd9.jpg?1572892497", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/c/d/cdf305b7-d1f7-4770-9201-8f3fb6735cd9.jpg?1572892497", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/c/d/cdf305b7-d1f7-4770-9201-8f3fb6735cd9.png?1572892497", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/d/cdf305b7-d1f7-4770-9201-8f3fb6735cd9.jpg?1572892497", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/c/d/cdf305b7-d1f7-4770-9201-8f3fb6735cd9.jpg?1572892497"}, "mana_cost": "{3}{W}", "cmc": 4.0, "type_line": "Instant", "oracle_text": "Destroy target creature with toughness 4 or greater.", "colors": ["W"], "color_identity": ["W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "597c6d4a-8212-4903-a6af-12c4ae9e13f0", "set": "grn", "set_name": "Guilds of Ravnica", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/597c6d4a-8212-4903-a6af-12c4ae9e13f0", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Agrn&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/grn?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/cdf305b7-d1f7-4770-9201-8f3fb6735cd9/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aadc03c37-33c7-4b92-b9fd-4608e6c372c4&unique=prints", "collector_number": "5", "digital": false, "rarity": "common", "flavor_text": "\"Reports of Gruul rioters in four districts. Start with the big ones and work your way up.\"\n\u2014Libuse, Boros sergeant", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Victor Adame Minguez", "artist_ids": ["bd8f7368-5b10-4554-b6b8-d052c6aca89f"], "illustration_id": "5f6ea058-fdca-45a5-9d2a-b9d8eeeefd8c", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 18150, "penny_rank": 11812, "prices": {"usd": "0.01", "usd_foil": "0.09", "usd_etched": null, "eur": "0.02", "eur_foil": "0.15", "tix": "0.04"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=452755", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Collar+the+Culprit&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Collar+the+Culprit&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Collar+the+Culprit"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/176863?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Collar+the+Culprit&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/69383?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "d85a6369-c07f-47d5-8448-72d8ec7e7898", "oracle_id": "a97e760a-99c8-47ea-a875-451aca913ee7", "multiverse_ids": [414307], "mtgo_id": 61094, "mtgo_foil_id": 61095, "tcgplayer_id": 120469, "cardmarket_id": 291097, "name": "Collective Effort", "lang": "en", "released_at": "2016-07-22", "uri": "https://api.scryfall.com/cards/d85a6369-c07f-47d5-8448-72d8ec7e7898", "scryfall_uri": "https://scryfall.com/card/emn/17/collective-effort?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/d/8/d85a6369-c07f-47d5-8448-72d8ec7e7898.jpg?1576383801", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/8/d85a6369-c07f-47d5-8448-72d8ec7e7898.jpg?1576383801", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/d/8/d85a6369-c07f-47d5-8448-72d8ec7e7898.jpg?1576383801", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/d/8/d85a6369-c07f-47d5-8448-72d8ec7e7898.png?1576383801", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/8/d85a6369-c07f-47d5-8448-72d8ec7e7898.jpg?1576383801", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/d/8/d85a6369-c07f-47d5-8448-72d8ec7e7898.jpg?1576383801"}, "mana_cost": "{1}{W}{W}", "cmc": 3.0, "type_line": "Sorcery", "oracle_text": "Escalate\u2014Tap an untapped creature you control. (Pay this cost for each mode chosen beyond the first.)\nChoose one or more \u2014\n\u2022 Destroy target creature with power 4 or greater.\n\u2022 Destroy target enchantment.\n\u2022 Put a +1/+1 counter on each creature target player controls.", "colors": ["W"], "color_identity": ["W"], "keywords": ["Escalate"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "5f0e4093-334f-4439-bbb5-a0affafd0ffc", "set": "emn", "set_name": "Eldritch Moon", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/5f0e4093-334f-4439-bbb5-a0affafd0ffc", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aemn&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/emn?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/d85a6369-c07f-47d5-8448-72d8ec7e7898/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aa97e760a-99c8-47ea-a875-451aca913ee7&unique=prints", "collector_number": "17", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Eric Deschamps", "artist_ids": ["37970e22-9cee-44c1-af44-5ee27cf26b76"], "illustration_id": "57134145-19f1-4810-8bc6-d7a2089ebd9a", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 4374, "penny_rank": 1592, "prices": {"usd": "0.46", "usd_foil": "1.18", "usd_etched": null, "eur": "0.73", "eur_foil": "1.48", "tix": "0.01"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=414307", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Collective+Effort&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Collective+Effort&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Collective+Effort"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/120469?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Collective+Effort&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/61094?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "09991fad-4282-4a17-bfb1-03eaa13502df", "oracle_id": "b0c50079-5376-47ff-82c5-d52dbf49afdf", "multiverse_ids": [457213], "mtgo_id": 71138, "arena_id": 69197, "tcgplayer_id": 183417, "cardmarket_id": 368568, "name": "Consign to the Pit", "lang": "en", "released_at": "2019-01-25", "uri": "https://api.scryfall.com/cards/09991fad-4282-4a17-bfb1-03eaa13502df", "scryfall_uri": "https://scryfall.com/card/rna/69/consign-to-the-pit?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/0/9/09991fad-4282-4a17-bfb1-03eaa13502df.jpg?1584830536", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/9/09991fad-4282-4a17-bfb1-03eaa13502df.jpg?1584830536", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/0/9/09991fad-4282-4a17-bfb1-03eaa13502df.jpg?1584830536", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/0/9/09991fad-4282-4a17-bfb1-03eaa13502df.png?1584830536", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/9/09991fad-4282-4a17-bfb1-03eaa13502df.jpg?1584830536", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/0/9/09991fad-4282-4a17-bfb1-03eaa13502df.jpg?1584830536"}, "mana_cost": "{5}{B}", "cmc": 6.0, "type_line": "Sorcery", "oracle_text": "Destroy target creature. Consign to the Pit deals 2 damage to that creature's controller.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "97a7fd84-8d89-45a3-b48b-c951f6a3f9f1", "set": "rna", "set_name": "Ravnica Allegiance", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/97a7fd84-8d89-45a3-b48b-c951f6a3f9f1", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Arna&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/rna?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/09991fad-4282-4a17-bfb1-03eaa13502df/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ab0c50079-5376-47ff-82c5-d52dbf49afdf&unique=prints", "collector_number": "69", "digital": false, "rarity": "common", "flavor_text": "First your whole life flashes before your eyes. Then you have considerable time to reflect on every regret as you plummet.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Colin Boyer", "artist_ids": ["9c201dbe-db56-429a-87e6-189ea70c2632"], "illustration_id": "b4295e33-f4e0-43af-a27b-0cb220dda198", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 19294, "prices": {"usd": "0.02", "usd_foil": "0.02", "usd_etched": null, "eur": "0.01", "eur_foil": "0.10", "tix": "0.05"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=457213", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Consign+to+the+Pit&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Consign+to+the+Pit&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Consign+to+the+Pit"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/183417?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Consign+to+the+Pit&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/71138?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "d1f20feb-b1ed-4d80-bef9-f3cc44ffb7b0", "oracle_id": "a7a0e473-77c1-4a85-b6d7-b0dfdadb696f", "multiverse_ids": [435249], "mtgo_id": 65206, "mtgo_foil_id": 65207, "arena_id": 66155, "tcgplayer_id": 145779, "cardmarket_id": 301774, "name": "Contract Killing", "lang": "en", "released_at": "2017-09-29", "uri": "https://api.scryfall.com/cards/d1f20feb-b1ed-4d80-bef9-f3cc44ffb7b0", "scryfall_uri": "https://scryfall.com/card/xln/95/contract-killing?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/d/1/d1f20feb-b1ed-4d80-bef9-f3cc44ffb7b0.jpg?1562564388", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/1/d1f20feb-b1ed-4d80-bef9-f3cc44ffb7b0.jpg?1562564388", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/d/1/d1f20feb-b1ed-4d80-bef9-f3cc44ffb7b0.jpg?1562564388", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/d/1/d1f20feb-b1ed-4d80-bef9-f3cc44ffb7b0.png?1562564388", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/1/d1f20feb-b1ed-4d80-bef9-f3cc44ffb7b0.jpg?1562564388", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/d/1/d1f20feb-b1ed-4d80-bef9-f3cc44ffb7b0.jpg?1562564388"}, "mana_cost": "{3}{B}{B}", "cmc": 5.0, "type_line": "Sorcery", "oracle_text": "Destroy target creature. Create two Treasure tokens. (They're artifacts with \"{T}, Sacrifice this artifact: Add one mana of any color.\")", "colors": ["B"], "color_identity": ["B"], "keywords": [], "produced_mana": ["B", "G", "R", "U", "W"], "all_parts": [{"object": "related_card", "id": "d1f20feb-b1ed-4d80-bef9-f3cc44ffb7b0", "component": "combo_piece", "name": "Contract Killing", "type_line": "Sorcery", "uri": "https://api.scryfall.com/cards/d1f20feb-b1ed-4d80-bef9-f3cc44ffb7b0"}, {"object": "related_card", "id": "720f3e68-84c0-462e-a0d1-90236ccc494a", "component": "token", "name": "Treasure", "type_line": "Token Artifact \u2014 Treasure", "uri": "https://api.scryfall.com/cards/720f3e68-84c0-462e-a0d1-90236ccc494a"}], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "fe0dad85-54bc-4151-9200-d68da84dd0f2", "set": "xln", "set_name": "Ixalan", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/fe0dad85-54bc-4151-9200-d68da84dd0f2", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Axln&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/xln?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/d1f20feb-b1ed-4d80-bef9-f3cc44ffb7b0/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aa7a0e473-77c1-4a85-b6d7-b0dfdadb696f&unique=prints", "collector_number": "95", "digital": false, "rarity": "common", "flavor_text": "For a price, the floating city of High and Dry offers all the amenities a pirate could want: rest, recreation, and revenge.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Winona Nelson", "artist_ids": ["e45fe8d3-75d6-42c9-a2df-e945ad81ea27"], "illustration_id": "4335a6df-493c-43ca-813d-a548eb56a999", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 8160, "penny_rank": 9097, "prices": {"usd": "0.10", "usd_foil": "0.29", "usd_etched": null, "eur": "0.05", "eur_foil": "0.22", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=435249", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Contract+Killing&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Contract+Killing&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Contract+Killing"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/145779?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Contract+Killing&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/65206?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "c91c152d-1829-438c-b571-74361e09df62", "oracle_id": "5a6c9376-313b-4420-890e-5aa78fa6382f", "multiverse_ids": [193625], "mtgo_id": 36620, "mtgo_foil_id": 36621, "tcgplayer_id": 34797, "cardmarket_id": 22356, "name": "Corpsehatch", "lang": "en", "released_at": "2010-04-23", "uri": "https://api.scryfall.com/cards/c91c152d-1829-438c-b571-74361e09df62", "scryfall_uri": "https://scryfall.com/card/roe/103/corpsehatch?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/c/9/c91c152d-1829-438c-b571-74361e09df62.jpg?1562708566", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/9/c91c152d-1829-438c-b571-74361e09df62.jpg?1562708566", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/c/9/c91c152d-1829-438c-b571-74361e09df62.jpg?1562708566", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/c/9/c91c152d-1829-438c-b571-74361e09df62.png?1562708566", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/9/c91c152d-1829-438c-b571-74361e09df62.jpg?1562708566", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/c/9/c91c152d-1829-438c-b571-74361e09df62.jpg?1562708566"}, "mana_cost": "{3}{B}{B}", "cmc": 5.0, "type_line": "Sorcery", "oracle_text": "Destroy target nonblack creature. Create two 0/1 colorless Eldrazi Spawn creature tokens. They have \"Sacrifice this creature: Add {C}.\"", "colors": ["B"], "color_identity": ["B"], "keywords": [], "produced_mana": ["C"], "all_parts": [{"object": "related_card", "id": "c91c152d-1829-438c-b571-74361e09df62", "component": "combo_piece", "name": "Corpsehatch", "type_line": "Sorcery", "uri": "https://api.scryfall.com/cards/c91c152d-1829-438c-b571-74361e09df62"}, {"object": "related_card", "id": "e0e3826c-3c85-4910-bd6c-04894ea328d0", "component": "token", "name": "Eldrazi Spawn", "type_line": "Token Creature \u2014 Eldrazi Spawn", "uri": "https://api.scryfall.com/cards/e0e3826c-3c85-4910-bd6c-04894ea328d0"}], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "eadb8a82-ec56-4623-b50e-42e7e60cb535", "set": "roe", "set_name": "Rise of the Eldrazi", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/eadb8a82-ec56-4623-b50e-42e7e60cb535", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aroe&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/roe?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/c91c152d-1829-438c-b571-74361e09df62/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A5a6c9376-313b-4420-890e-5aa78fa6382f&unique=prints", "collector_number": "103", "digital": false, "rarity": "uncommon", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Kekai Kotaki", "artist_ids": ["4b771085-c049-4308-930d-ec9665f803a4"], "illustration_id": "9bcfadba-2862-4675-b909-74c71d082776", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 15069, "penny_rank": 13181, "prices": {"usd": "0.10", "usd_foil": "0.25", "usd_etched": null, "eur": "0.05", "eur_foil": "0.37", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=193625", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Corpsehatch&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Corpsehatch&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Corpsehatch"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/34797?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Corpsehatch&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/36620?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "3ec275cf-bb4e-4de0-9184-4d53dd87dad3", "oracle_id": "a86f9b53-ff44-4b08-a8e9-beef73595de1", "multiverse_ids": [110536], "mtgo_id": 26213, "mtgo_foil_id": 26214, "tcgplayer_id": 14701, "cardmarket_id": 14246, "name": "Cradle to Grave", "lang": "en", "released_at": "2007-02-02", "uri": "https://api.scryfall.com/cards/3ec275cf-bb4e-4de0-9184-4d53dd87dad3", "scryfall_uri": "https://scryfall.com/card/plc/67/cradle-to-grave?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/3/e/3ec275cf-bb4e-4de0-9184-4d53dd87dad3.jpg?1562569856", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/e/3ec275cf-bb4e-4de0-9184-4d53dd87dad3.jpg?1562569856", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/3/e/3ec275cf-bb4e-4de0-9184-4d53dd87dad3.jpg?1562569856", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/3/e/3ec275cf-bb4e-4de0-9184-4d53dd87dad3.png?1562569856", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/e/3ec275cf-bb4e-4de0-9184-4d53dd87dad3.jpg?1562569856", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/3/e/3ec275cf-bb4e-4de0-9184-4d53dd87dad3.jpg?1562569856"}, "mana_cost": "{1}{B}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Destroy target nonblack creature that entered the battlefield this turn.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "5a1b571c-73e9-4c14-b9d4-a62507d85789", "set": "plc", "set_name": "Planar Chaos", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/5a1b571c-73e9-4c14-b9d4-a62507d85789", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aplc&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/plc?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/3ec275cf-bb4e-4de0-9184-4d53dd87dad3/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aa86f9b53-ff44-4b08-a8e9-beef73595de1&unique=prints", "collector_number": "67", "digital": false, "rarity": "common", "flavor_text": "\"As the fell soil's appetite grows, it gulps down passersby upon their first footfall.\"\n\u2014Ezrith, druid of the Dark Hours", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Dave Kendall", "artist_ids": ["8a5540a8-18c9-4fa9-802c-59d6866114d5"], "illustration_id": "41a8b228-d3f5-4874-8947-197425bc3106", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 17907, "penny_rank": 7588, "prices": {"usd": "0.09", "usd_foil": "0.19", "usd_etched": null, "eur": "0.07", "eur_foil": "0.15", "tix": "0.04"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=110536", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Cradle+to+Grave&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Cradle+to+Grave&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Cradle+to+Grave"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/14701?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Cradle+to+Grave&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/26213?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "a586e329-b1e2-4b60-a914-7b9aa2c645c2", "oracle_id": "e59d70a2-40ac-45b0-995d-65b9caa290c8", "multiverse_ids": [376287], "mtgo_id": 51162, "mtgo_foil_id": 51163, "tcgplayer_id": 72075, "cardmarket_id": 264913, "name": "Crosis's Charm", "lang": "en", "released_at": "2013-11-01", "uri": "https://api.scryfall.com/cards/a586e329-b1e2-4b60-a914-7b9aa2c645c2", "scryfall_uri": "https://scryfall.com/card/c13/181/crosiss-charm?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/a/5/a586e329-b1e2-4b60-a914-7b9aa2c645c2.jpg?1562929889", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/5/a586e329-b1e2-4b60-a914-7b9aa2c645c2.jpg?1562929889", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/a/5/a586e329-b1e2-4b60-a914-7b9aa2c645c2.jpg?1562929889", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/a/5/a586e329-b1e2-4b60-a914-7b9aa2c645c2.png?1562929889", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/5/a586e329-b1e2-4b60-a914-7b9aa2c645c2.jpg?1562929889", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/a/5/a586e329-b1e2-4b60-a914-7b9aa2c645c2.jpg?1562929889"}, "mana_cost": "{U}{B}{R}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Choose one \u2014\n\u2022 Return target permanent to its owner's hand.\n\u2022 Destroy target nonblack creature. It can't be regenerated.\n\u2022 Destroy target artifact.", "colors": ["B", "R", "U"], "color_identity": ["B", "R", "U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "c62e6d4f-af8c-4f27-9bc8-361291890146", "set": "c13", "set_name": "Commander 2013", "set_type": "commander", "set_uri": "https://api.scryfall.com/sets/c62e6d4f-af8c-4f27-9bc8-361291890146", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ac13&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/c13?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/a586e329-b1e2-4b60-a914-7b9aa2c645c2/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ae59d70a2-40ac-45b0-995d-65b9caa290c8&unique=prints", "collector_number": "181", "digital": false, "rarity": "uncommon", "flavor_text": "A pretty bauble of persecution.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Marco Nelor", "artist_ids": ["c0f95ec3-c7ca-47d6-be5c-b37dfce37be5"], "illustration_id": "9819bc3d-064a-401a-83a2-da837d76113e", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "edhrec_rank": 3546, "prices": {"usd": "0.33", "usd_foil": null, "usd_etched": null, "eur": "0.26", "eur_foil": null, "tix": "0.04"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=376287", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Crosis%27s+Charm&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Crosis%27s+Charm&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Crosis%27s+Charm"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/72075?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Crosis%27s+Charm&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/51162?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "b59a9e75-9988-4040-a718-b1655fc20d11", "oracle_id": "e59d70a2-40ac-45b0-995d-65b9caa290c8", "multiverse_ids": [25863], "mtgo_id": 15081, "mtgo_foil_id": 15082, "tcgplayer_id": 7775, "cardmarket_id": 3354, "name": "Crosis's Charm", "lang": "en", "released_at": "2001-02-05", "uri": "https://api.scryfall.com/cards/b59a9e75-9988-4040-a718-b1655fc20d11", "scryfall_uri": "https://scryfall.com/card/pls/99/crosiss-charm?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/b/5/b59a9e75-9988-4040-a718-b1655fc20d11.jpg?1562933342", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/5/b59a9e75-9988-4040-a718-b1655fc20d11.jpg?1562933342", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/b/5/b59a9e75-9988-4040-a718-b1655fc20d11.jpg?1562933342", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/b/5/b59a9e75-9988-4040-a718-b1655fc20d11.png?1562933342", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/5/b59a9e75-9988-4040-a718-b1655fc20d11.jpg?1562933342", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/b/5/b59a9e75-9988-4040-a718-b1655fc20d11.jpg?1562933342"}, "mana_cost": "{U}{B}{R}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Choose one \u2014\n\u2022 Return target permanent to its owner's hand.\n\u2022 Destroy target nonblack creature. It can't be regenerated.\n\u2022 Destroy target artifact.", "colors": ["B", "R", "U"], "color_identity": ["B", "R", "U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "82dc193b-bd5f-4883-a93f-a4155b467ee0", "set": "pls", "set_name": "Planeshift", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/82dc193b-bd5f-4883-a93f-a4155b467ee0", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Apls&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/pls?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/b59a9e75-9988-4040-a718-b1655fc20d11/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ae59d70a2-40ac-45b0-995d-65b9caa290c8&unique=prints", "collector_number": "99", "digital": false, "rarity": "uncommon", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "David Martin", "artist_ids": ["996ad764-4ae0-4952-8bb5-5a75c9d68275"], "illustration_id": "b067924c-d557-4e10-b452-ecd53b4d0582", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 3546, "prices": {"usd": "0.35", "usd_foil": "8.15", "usd_etched": null, "eur": "0.20", "eur_foil": "6.00", "tix": "0.05"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=25863", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Crosis%27s+Charm&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Crosis%27s+Charm&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Crosis%27s+Charm"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/7775?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Crosis%27s+Charm&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/15081?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "f99ffe22-4dd8-4787-b6e0-e03dea8ab42a", "oracle_id": "39b7f3cc-e229-4cdf-9d85-db0b17203d7e", "multiverse_ids": [], "arena_id": 69115, "name": "Cruel Cut", "lang": "en", "released_at": "2018-07-14", "uri": "https://api.scryfall.com/cards/f99ffe22-4dd8-4787-b6e0-e03dea8ab42a", "scryfall_uri": "https://scryfall.com/card/xana/26/cruel-cut?utm_source=api", "layout": "normal", "highres_image": false, "image_status": "lowres", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/f/9/f99ffe22-4dd8-4787-b6e0-e03dea8ab42a.jpg?1590010389", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/9/f99ffe22-4dd8-4787-b6e0-e03dea8ab42a.jpg?1590010389", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/f/9/f99ffe22-4dd8-4787-b6e0-e03dea8ab42a.jpg?1590010389", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/f/9/f99ffe22-4dd8-4787-b6e0-e03dea8ab42a.png?1590010389", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/9/f99ffe22-4dd8-4787-b6e0-e03dea8ab42a.jpg?1590010389", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/f/9/f99ffe22-4dd8-4787-b6e0-e03dea8ab42a.jpg?1590010389"}, "mana_cost": "{1}{B}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Destroy target creature with power 2 or less.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "not_legal", "pauper": "not_legal", "vintage": "not_legal", "penny": "not_legal", "commander": "not_legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "not_legal", "duel": "not_legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "9e5d6aa8-3fc1-4175-a851-894e42c0e25a", "set": "xana", "set_name": "Arena New Player Experience Extras", "set_type": "memorabilia", "set_uri": "https://api.scryfall.com/sets/9e5d6aa8-3fc1-4175-a851-894e42c0e25a", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Axana&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/xana?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/f99ffe22-4dd8-4787-b6e0-e03dea8ab42a/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A39b7f3cc-e229-4cdf-9d85-db0b17203d7e&unique=prints", "collector_number": "26", "digital": true, "rarity": "common", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Caio Monteiro", "artist_ids": ["d5053eb6-af72-47a0-b6e8-023cc3b9aefb"], "illustration_id": "751e2fd6-9c75-4758-b9f0-fa169c3fabfb", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "prices": {"usd": null, "usd_foil": null, "usd_etched": null, "eur": null, "eur_foil": null, "tix": null}, "related_uris": {"tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Cruel+Cut&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Cruel+Cut&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Cruel+Cut"}}, {"object": "card", "id": "a863ae27-a99a-4a60-ab07-25c1bacec64d", "oracle_id": "836d074a-8888-42a0-8dce-11ffce00d2f5", "multiverse_ids": [398415], "mtgo_id": 57938, "mtgo_foil_id": 57939, "tcgplayer_id": 99900, "cardmarket_id": 283414, "name": "Cruel Revival", "lang": "en", "released_at": "2015-07-17", "uri": "https://api.scryfall.com/cards/a863ae27-a99a-4a60-ab07-25c1bacec64d", "scryfall_uri": "https://scryfall.com/card/ori/88/cruel-revival?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/a/8/a863ae27-a99a-4a60-ab07-25c1bacec64d.jpg?1562035297", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/8/a863ae27-a99a-4a60-ab07-25c1bacec64d.jpg?1562035297", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/a/8/a863ae27-a99a-4a60-ab07-25c1bacec64d.jpg?1562035297", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/a/8/a863ae27-a99a-4a60-ab07-25c1bacec64d.png?1562035297", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/8/a863ae27-a99a-4a60-ab07-25c1bacec64d.jpg?1562035297", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/a/8/a863ae27-a99a-4a60-ab07-25c1bacec64d.jpg?1562035297"}, "mana_cost": "{4}{B}", "cmc": 5.0, "type_line": "Instant", "oracle_text": "Destroy target non-Zombie creature. It can't be regenerated. Return up to one target Zombie card from your graveyard to your hand.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "0eeb9a9a-20ac-404d-b55f-aeb7a43a7f62", "set": "ori", "set_name": "Magic Origins", "set_type": "core", "set_uri": "https://api.scryfall.com/sets/0eeb9a9a-20ac-404d-b55f-aeb7a43a7f62", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aori&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ori?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/a863ae27-a99a-4a60-ab07-25c1bacec64d/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A836d074a-8888-42a0-8dce-11ffce00d2f5&unique=prints", "collector_number": "88", "digital": false, "rarity": "uncommon", "flavor_text": "On Innistrad, Liliana embraced necromancy, honing her powers by practicing on scores of undead\u2014and sometimes the living.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Miles Johnston", "artist_ids": ["cee61c53-0d1f-4160-b5dc-d554390786ca"], "illustration_id": "851a48fc-0a0f-47af-b777-a248ee987337", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 12529, "penny_rank": 7914, "prices": {"usd": "0.12", "usd_foil": "0.26", "usd_etched": null, "eur": "0.02", "eur_foil": "0.40", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=398415", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Cruel+Revival&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Cruel+Revival&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Cruel+Revival"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/99900?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Cruel+Revival&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/57938?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "245aba23-2abb-4084-b4cb-d06e46de2108", "oracle_id": "836d074a-8888-42a0-8dce-11ffce00d2f5", "multiverse_ids": [10720], "mtgo_id": 17919, "mtgo_foil_id": 17920, "tcgplayer_id": 10343, "cardmarket_id": 1766, "name": "Cruel Revival", "lang": "en", "released_at": "2002-10-07", "uri": "https://api.scryfall.com/cards/245aba23-2abb-4084-b4cb-d06e46de2108", "scryfall_uri": "https://scryfall.com/card/ons/135/cruel-revival?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/2/4/245aba23-2abb-4084-b4cb-d06e46de2108.jpg?1562903595", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/4/245aba23-2abb-4084-b4cb-d06e46de2108.jpg?1562903595", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/2/4/245aba23-2abb-4084-b4cb-d06e46de2108.jpg?1562903595", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/2/4/245aba23-2abb-4084-b4cb-d06e46de2108.png?1562903595", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/4/245aba23-2abb-4084-b4cb-d06e46de2108.jpg?1562903595", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/2/4/245aba23-2abb-4084-b4cb-d06e46de2108.jpg?1562903595"}, "mana_cost": "{4}{B}", "cmc": 5.0, "type_line": "Instant", "oracle_text": "Destroy target non-Zombie creature. It can't be regenerated. Return up to one target Zombie card from your graveyard to your hand.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "914a6c6d-cb3b-45e8-a2db-9978a2339faf", "set": "ons", "set_name": "Onslaught", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/914a6c6d-cb3b-45e8-a2db-9978a2339faf", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aons&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ons?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/245aba23-2abb-4084-b4cb-d06e46de2108/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A836d074a-8888-42a0-8dce-11ffce00d2f5&unique=prints", "collector_number": "135", "digital": false, "rarity": "common", "flavor_text": "Few Cabal fighters fear death. They fear what follows it.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Greg Staples", "artist_ids": ["93d65564-bf00-447b-8406-e2031f03b6b1"], "illustration_id": "12717ac1-ba30-4999-bc52-4285580d7de5", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 12529, "penny_rank": 7914, "prices": {"usd": "0.12", "usd_foil": "0.45", "usd_etched": null, "eur": "0.03", "eur_foil": "0.15", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=10720", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Cruel+Revival&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Cruel+Revival&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Cruel+Revival"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/10343?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Cruel+Revival&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/17919?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "eae67d98-5167-442b-8586-0b2bcb0c56eb", "oracle_id": "618cd1bc-4422-441b-906f-1a209277be93", "multiverse_ids": [541056], "mtgo_id": 94740, "arena_id": 79004, "tcgplayer_id": 253767, "cardmarket_id": 583573, "name": "Crushing Canopy", "lang": "en", "released_at": "2021-11-19", "uri": "https://api.scryfall.com/cards/eae67d98-5167-442b-8586-0b2bcb0c56eb", "scryfall_uri": "https://scryfall.com/card/vow/194/crushing-canopy?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/e/a/eae67d98-5167-442b-8586-0b2bcb0c56eb.jpg?1643592488", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/a/eae67d98-5167-442b-8586-0b2bcb0c56eb.jpg?1643592488", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/e/a/eae67d98-5167-442b-8586-0b2bcb0c56eb.jpg?1643592488", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/e/a/eae67d98-5167-442b-8586-0b2bcb0c56eb.png?1643592488", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/a/eae67d98-5167-442b-8586-0b2bcb0c56eb.jpg?1643592488", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/e/a/eae67d98-5167-442b-8586-0b2bcb0c56eb.jpg?1643592488"}, "mana_cost": "{2}{G}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Choose one \u2014\n\u2022 Destroy target creature with flying.\n\u2022 Destroy target enchantment.", "colors": ["G"], "color_identity": ["G"], "keywords": [], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "8144b676-569f-4716-8005-bc8f0778f3fa", "set": "vow", "set_name": "Innistrad: Crimson Vow", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/8144b676-569f-4716-8005-bc8f0778f3fa", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Avow&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/vow?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/eae67d98-5167-442b-8586-0b2bcb0c56eb/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A618cd1bc-4422-441b-906f-1a209277be93&unique=prints", "collector_number": "194", "digital": false, "rarity": "common", "flavor_text": "\"The forests of this world are unafraid to assert themselves.\"\n\u2014Wrenn", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Svetlin Velinov", "artist_ids": ["ffd063ae-c097-4f26-b2e6-b1e2137708bc"], "illustration_id": "a477afb0-0e42-4a1f-80d4-21e7f6e80160", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 8932, "penny_rank": 8792, "preview": {"source": "Wizards of the Coast", "source_uri": "https://magic.wizards.com/en/articles/archive/card-image-gallery/innistrad-crimson-vow", "previewed_at": "2021-11-05"}, "prices": {"usd": "0.01", "usd_foil": "0.04", "usd_etched": null, "eur": "0.01", "eur_foil": "0.02", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=541056", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Crushing+Canopy&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Crushing+Canopy&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Crushing+Canopy"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/253767?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Crushing+Canopy&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/94740?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "c0c4f213-0ea4-44c0-8429-172a317b77f5", "oracle_id": "618cd1bc-4422-441b-906f-1a209277be93", "multiverse_ids": [452876], "mtgo_id": 69625, "arena_id": 68587, "tcgplayer_id": 176888, "cardmarket_id": 364290, "name": "Crushing Canopy", "lang": "en", "released_at": "2018-10-05", "uri": "https://api.scryfall.com/cards/c0c4f213-0ea4-44c0-8429-172a317b77f5", "scryfall_uri": "https://scryfall.com/card/grn/126/crushing-canopy?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/c/0/c0c4f213-0ea4-44c0-8429-172a317b77f5.jpg?1572893325", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/0/c0c4f213-0ea4-44c0-8429-172a317b77f5.jpg?1572893325", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/c/0/c0c4f213-0ea4-44c0-8429-172a317b77f5.jpg?1572893325", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/c/0/c0c4f213-0ea4-44c0-8429-172a317b77f5.png?1572893325", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/0/c0c4f213-0ea4-44c0-8429-172a317b77f5.jpg?1572893325", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/c/0/c0c4f213-0ea4-44c0-8429-172a317b77f5.jpg?1572893325"}, "mana_cost": "{2}{G}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Choose one \u2014\n\u2022 Destroy target creature with flying.\n\u2022 Destroy target enchantment.", "colors": ["G"], "color_identity": ["G"], "keywords": [], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "597c6d4a-8212-4903-a6af-12c4ae9e13f0", "set": "grn", "set_name": "Guilds of Ravnica", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/597c6d4a-8212-4903-a6af-12c4ae9e13f0", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Agrn&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/grn?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/c0c4f213-0ea4-44c0-8429-172a317b77f5/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A618cd1bc-4422-441b-906f-1a209277be93&unique=prints", "collector_number": "126", "digital": false, "rarity": "common", "flavor_text": "\"The Dimir may look all they want. We never grow tired of swatting their bugs.\"\n\u2014Heruj, Selesnya hierophant", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Simon Dominic", "artist_ids": ["b0e80135-db5a-4b88-a0bc-815a0e94faa1"], "illustration_id": "0c1302ce-81d6-49fb-97f4-f8a1113b7781", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 8932, "penny_rank": 8792, "prices": {"usd": "0.02", "usd_foil": "0.15", "usd_etched": null, "eur": "0.02", "eur_foil": "0.21", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=452876", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Crushing+Canopy&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Crushing+Canopy&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Crushing+Canopy"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/176888?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Crushing+Canopy&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/69625?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "a66b0e45-e585-44f3-8d2b-e887330ba138", "oracle_id": "618cd1bc-4422-441b-906f-1a209277be93", "multiverse_ids": [435338], "mtgo_id": 65384, "mtgo_foil_id": 65385, "arena_id": 66333, "tcgplayer_id": 145734, "cardmarket_id": 301810, "name": "Crushing Canopy", "lang": "en", "released_at": "2017-09-29", "uri": "https://api.scryfall.com/cards/a66b0e45-e585-44f3-8d2b-e887330ba138", "scryfall_uri": "https://scryfall.com/card/xln/183/crushing-canopy?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/a/6/a66b0e45-e585-44f3-8d2b-e887330ba138.jpg?1562561563", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/6/a66b0e45-e585-44f3-8d2b-e887330ba138.jpg?1562561563", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/a/6/a66b0e45-e585-44f3-8d2b-e887330ba138.jpg?1562561563", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/a/6/a66b0e45-e585-44f3-8d2b-e887330ba138.png?1562561563", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/6/a66b0e45-e585-44f3-8d2b-e887330ba138.jpg?1562561563", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/a/6/a66b0e45-e585-44f3-8d2b-e887330ba138.jpg?1562561563"}, "mana_cost": "{2}{G}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Choose one \u2014\n\u2022 Destroy target creature with flying.\n\u2022 Destroy target enchantment.", "colors": ["G"], "color_identity": ["G"], "keywords": [], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "fe0dad85-54bc-4151-9200-d68da84dd0f2", "set": "xln", "set_name": "Ixalan", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/fe0dad85-54bc-4151-9200-d68da84dd0f2", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Axln&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/xln?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/a66b0e45-e585-44f3-8d2b-e887330ba138/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A618cd1bc-4422-441b-906f-1a209277be93&unique=prints", "collector_number": "183", "digital": false, "rarity": "common", "flavor_text": "\"Do not mistake your lofty vantage point for safety.\"\n\u2014Shaper Tuvasa", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Tomasz Jedruszek", "artist_ids": ["bba69285-2445-4a4b-a847-59397be972ea"], "illustration_id": "b1aa1bb6-1004-463c-87cc-cf24f06e7c84", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 8932, "penny_rank": 8792, "prices": {"usd": "0.02", "usd_foil": "0.17", "usd_etched": null, "eur": "0.02", "eur_foil": "0.02", "tix": "0.05"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=435338", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Crushing+Canopy&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Crushing+Canopy&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Crushing+Canopy"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/145734?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Crushing+Canopy&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/65384?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "c59b3653-5a50-48f2-bcf1-ab305ef30902", "oracle_id": "aebe0ba5-70b2-406b-b53b-03b12a95c2c2", "multiverse_ids": [262867], "mtgo_id": 43449, "mtgo_foil_id": 43450, "tcgplayer_id": 57840, "cardmarket_id": 252608, "name": "Crushing Vines", "lang": "en", "released_at": "2012-02-03", "uri": "https://api.scryfall.com/cards/c59b3653-5a50-48f2-bcf1-ab305ef30902", "scryfall_uri": "https://scryfall.com/card/dka/110/crushing-vines?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/c/5/c59b3653-5a50-48f2-bcf1-ab305ef30902.jpg?1562941671", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/5/c59b3653-5a50-48f2-bcf1-ab305ef30902.jpg?1562941671", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/c/5/c59b3653-5a50-48f2-bcf1-ab305ef30902.jpg?1562941671", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/c/5/c59b3653-5a50-48f2-bcf1-ab305ef30902.png?1562941671", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/5/c59b3653-5a50-48f2-bcf1-ab305ef30902.jpg?1562941671", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/c/5/c59b3653-5a50-48f2-bcf1-ab305ef30902.jpg?1562941671"}, "mana_cost": "{2}{G}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Choose one \u2014\n\u2022 Destroy target creature with flying.\n\u2022 Destroy target artifact.", "colors": ["G"], "color_identity": ["G"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "8052750a-aaf2-46fc-b46d-633f14124017", "set": "dka", "set_name": "Dark Ascension", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/8052750a-aaf2-46fc-b46d-633f14124017", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Adka&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/dka?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/c59b3653-5a50-48f2-bcf1-ab305ef30902/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aaebe0ba5-70b2-406b-b53b-03b12a95c2c2&unique=prints", "collector_number": "110", "digital": false, "rarity": "common", "flavor_text": "\"Your veil's curse won't stop me, deathmage. I have taken down countless night hunters and this dark plane is not big enough for you to hide.\"\n\u2014Garruk Wildspeaker, to Liliana Vess", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Scott Chou", "artist_ids": ["9e048547-f9c3-4958-9c2c-91e45df7c6ae"], "illustration_id": "ed927456-fa94-48a3-80ce-f6a220156ffb", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 9712, "penny_rank": 4695, "prices": {"usd": "0.02", "usd_foil": "0.12", "usd_etched": null, "eur": "0.02", "eur_foil": "0.29", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=262867", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Crushing+Vines&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Crushing+Vines&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Crushing+Vines"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/57840?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Crushing+Vines&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/43449?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "efeae088-9ac5-4d2f-a15c-d8675a471ac5", "oracle_id": "b01d61cc-9844-4191-86a0-f2db6d42d6e5", "multiverse_ids": [522156], "mtgo_id": 90533, "tcgplayer_id": 240108, "cardmarket_id": 566613, "name": "Damn", "lang": "en", "released_at": "2021-06-18", "uri": "https://api.scryfall.com/cards/efeae088-9ac5-4d2f-a15c-d8675a471ac5", "scryfall_uri": "https://scryfall.com/card/mh2/80/damn?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/e/f/efeae088-9ac5-4d2f-a15c-d8675a471ac5.jpg?1626095400", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/f/efeae088-9ac5-4d2f-a15c-d8675a471ac5.jpg?1626095400", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/e/f/efeae088-9ac5-4d2f-a15c-d8675a471ac5.jpg?1626095400", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/e/f/efeae088-9ac5-4d2f-a15c-d8675a471ac5.png?1626095400", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/f/efeae088-9ac5-4d2f-a15c-d8675a471ac5.jpg?1626095400", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/e/f/efeae088-9ac5-4d2f-a15c-d8675a471ac5.jpg?1626095400"}, "mana_cost": "{B}{B}", "cmc": 2.0, "type_line": "Sorcery", "oracle_text": "Destroy target creature. A creature destroyed this way can't be regenerated.\nOverload {2}{W}{W} (You may cast this spell for its overload cost. If you do, change its text by replacing all instances of \"target\" with \"each.\")", "colors": ["B"], "color_identity": ["B", "W"], "keywords": ["Overload"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "c1c7eb8c-f205-40ab-a609-767cb296544e", "set": "mh2", "set_name": "Modern Horizons 2", "set_type": "draft_innovation", "set_uri": "https://api.scryfall.com/sets/c1c7eb8c-f205-40ab-a609-767cb296544e", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Amh2&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/mh2?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/efeae088-9ac5-4d2f-a15c-d8675a471ac5/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ab01d61cc-9844-4191-86a0-f2db6d42d6e5&unique=prints", "collector_number": "80", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Lucas Graciano", "artist_ids": ["ce98f39c-7cdd-47e6-a520-6c50443bb4c2"], "illustration_id": "eb65010c-dbce-481b-ad00-54111425b654", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 361, "preview": {"source": "Wizards of the Coast", "source_uri": "https://magic.wizards.com/en/articles/archive/card-preview/damn-2021-05-28", "previewed_at": "2021-05-28"}, "prices": {"usd": "2.59", "usd_foil": "3.12", "usd_etched": null, "eur": "2.23", "eur_foil": "2.81", "tix": "0.13"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=522156", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Damn&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Damn&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Damn"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/240108?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Damn&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/90533?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "a6378898-50b7-47c9-8c25-dc660606be9f", "oracle_id": "8c8a3962-42a5-4070-8719-00d7483c7dbe", "multiverse_ids": [423722], "mtgo_id": 62679, "mtgo_foil_id": 62680, "tcgplayer_id": 126469, "cardmarket_id": 294872, "name": "Daring Demolition", "lang": "en", "released_at": "2017-01-20", "uri": "https://api.scryfall.com/cards/a6378898-50b7-47c9-8c25-dc660606be9f", "scryfall_uri": "https://scryfall.com/card/aer/55/daring-demolition?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/a/6/a6378898-50b7-47c9-8c25-dc660606be9f.jpg?1576381626", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/6/a6378898-50b7-47c9-8c25-dc660606be9f.jpg?1576381626", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/a/6/a6378898-50b7-47c9-8c25-dc660606be9f.jpg?1576381626", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/a/6/a6378898-50b7-47c9-8c25-dc660606be9f.png?1576381626", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/6/a6378898-50b7-47c9-8c25-dc660606be9f.jpg?1576381626", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/a/6/a6378898-50b7-47c9-8c25-dc660606be9f.jpg?1576381626"}, "mana_cost": "{2}{B}{B}", "cmc": 4.0, "type_line": "Sorcery", "oracle_text": "Destroy target creature or Vehicle.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "a4a0db50-8826-4e73-833c-3fd934375f96", "set": "aer", "set_name": "Aether Revolt", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/a4a0db50-8826-4e73-833c-3fd934375f96", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aaer&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/aer?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/a6378898-50b7-47c9-8c25-dc660606be9f/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A8c8a3962-42a5-4070-8719-00d7483c7dbe&unique=prints", "collector_number": "55", "digital": false, "rarity": "common", "flavor_text": "Living so close to death gives the aetherborn an unusual perspective on risk.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Svetlin Velinov", "artist_ids": ["ffd063ae-c097-4f26-b2e6-b1e2137708bc"], "illustration_id": "32b51c24-ff75-41a2-808a-71a589e446f2", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 19011, "penny_rank": 13937, "prices": {"usd": "0.02", "usd_foil": "0.18", "usd_etched": null, "eur": "0.01", "eur_foil": "0.12", "tix": "0.04"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=423722", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Daring+Demolition&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Daring+Demolition&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Daring+Demolition"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/126469?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Daring+Demolition&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/62679?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "9d03720d-b0ca-4892-9ad1-52189f4a30a1", "oracle_id": "0df450be-9bd2-45be-ae59-fa8d19f6a391", "multiverse_ids": [14754], "mtgo_id": 15454, "mtgo_foil_id": 15455, "tcgplayer_id": 2868, "cardmarket_id": 2889, "name": "Dark Banishing", "lang": "en", "released_at": "2001-04-11", "uri": "https://api.scryfall.com/cards/9d03720d-b0ca-4892-9ad1-52189f4a30a1", "scryfall_uri": "https://scryfall.com/card/7ed/127/dark-banishing?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/9/d/9d03720d-b0ca-4892-9ad1-52189f4a30a1.jpg?1562244108", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/d/9d03720d-b0ca-4892-9ad1-52189f4a30a1.jpg?1562244108", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/9/d/9d03720d-b0ca-4892-9ad1-52189f4a30a1.jpg?1562244108", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/9/d/9d03720d-b0ca-4892-9ad1-52189f4a30a1.png?1562244108", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/d/9d03720d-b0ca-4892-9ad1-52189f4a30a1.jpg?1562244108", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/9/d/9d03720d-b0ca-4892-9ad1-52189f4a30a1.jpg?1562244108"}, "mana_cost": "{2}{B}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Destroy target nonblack creature. It can't be regenerated.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "230f38aa-9511-4db8-a3aa-aeddbc3f7bb9", "set": "7ed", "set_name": "Seventh Edition", "set_type": "core", "set_uri": "https://api.scryfall.com/sets/230f38aa-9511-4db8-a3aa-aeddbc3f7bb9", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3A7ed&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/7ed?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/9d03720d-b0ca-4892-9ad1-52189f4a30a1/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A0df450be-9bd2-45be-ae59-fa8d19f6a391&unique=prints", "collector_number": "127", "digital": false, "rarity": "common", "flavor_text": "\"Hence 'banish\u00e8d' is banished from the world, / And the world's exile is death.\"\n\u2014William Shakespeare,\n*Romeo and Juliet*", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Rebecca Guay", "artist_ids": ["f8f662fa-d597-46a3-afb2-91d6e13243e2"], "illustration_id": "790d7d5f-ae1f-4eae-94e3-aa0839f6df62", "border_color": "white", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 13641, "penny_rank": 7755, "prices": {"usd": "0.11", "usd_foil": "22.56", "usd_etched": null, "eur": "1.00", "eur_foil": "14.88", "tix": "0.09"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=14754", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Dark+Banishing&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Dark+Banishing&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Dark+Banishing"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/2868?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Dark+Banishing&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/15454?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "922d6c8b-70ae-4db4-bf26-1904e4906211", "oracle_id": "0df450be-9bd2-45be-ae59-fa8d19f6a391", "multiverse_ids": [4645], "mtgo_id": 9517, "mtgo_foil_id": 9518, "tcgplayer_id": 5507, "cardmarket_id": 8746, "name": "Dark Banishing", "lang": "en", "released_at": "1997-10-14", "uri": "https://api.scryfall.com/cards/922d6c8b-70ae-4db4-bf26-1904e4906211", "scryfall_uri": "https://scryfall.com/card/tmp/117/dark-banishing?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/9/2/922d6c8b-70ae-4db4-bf26-1904e4906211.jpg?1562055426", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/2/922d6c8b-70ae-4db4-bf26-1904e4906211.jpg?1562055426", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/9/2/922d6c8b-70ae-4db4-bf26-1904e4906211.jpg?1562055426", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/9/2/922d6c8b-70ae-4db4-bf26-1904e4906211.png?1562055426", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/2/922d6c8b-70ae-4db4-bf26-1904e4906211.jpg?1562055426", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/9/2/922d6c8b-70ae-4db4-bf26-1904e4906211.jpg?1562055426"}, "mana_cost": "{2}{B}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Destroy target nonblack creature. It can't be regenerated.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "10df3a67-178e-4363-8668-34f0e6edf2a7", "set": "tmp", "set_name": "Tempest", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/10df3a67-178e-4363-8668-34f0e6edf2a7", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Atmp&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/tmp?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/922d6c8b-70ae-4db4-bf26-1904e4906211/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A0df450be-9bd2-45be-ae59-fa8d19f6a391&unique=prints", "collector_number": "117", "digital": false, "rarity": "common", "flavor_text": "\"It is the way of most wizards to begin by exiling themselves and to end by exiling everyone else.\"\n\u2014Hanna, *Weatherlight* navigator", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "John Matson", "artist_ids": ["a1685587-4b55-446b-b420-c37b202ed3f1"], "illustration_id": "fd91d96b-6da1-42f8-9fa0-e20aa078ebe9", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 13641, "penny_rank": 7755, "prices": {"usd": "0.08", "usd_foil": null, "usd_etched": null, "eur": "0.15", "eur_foil": null, "tix": "0.09"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=4645", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Dark+Banishing&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Dark+Banishing&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Dark+Banishing"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/5507?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Dark+Banishing&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/9517?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "5f983dcb-b077-465f-a70b-6bd0e425556c", "oracle_id": "0df450be-9bd2-45be-ae59-fa8d19f6a391", "multiverse_ids": [3284], "mtgo_id": 6891, "mtgo_foil_id": 6892, "tcgplayer_id": 5023, "cardmarket_id": 8064, "name": "Dark Banishing", "lang": "en", "released_at": "1996-10-08", "uri": "https://api.scryfall.com/cards/5f983dcb-b077-465f-a70b-6bd0e425556c", "scryfall_uri": "https://scryfall.com/card/mir/115/dark-banishing?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/5/f/5f983dcb-b077-465f-a70b-6bd0e425556c.jpg?1562719738", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/f/5f983dcb-b077-465f-a70b-6bd0e425556c.jpg?1562719738", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/5/f/5f983dcb-b077-465f-a70b-6bd0e425556c.jpg?1562719738", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/5/f/5f983dcb-b077-465f-a70b-6bd0e425556c.png?1562719738", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/f/5f983dcb-b077-465f-a70b-6bd0e425556c.jpg?1562719738", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/5/f/5f983dcb-b077-465f-a70b-6bd0e425556c.jpg?1562719738"}, "mana_cost": "{2}{B}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Destroy target nonblack creature. It can't be regenerated.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "5f06acf3-8123-4a78-b2e7-089b0b775a4a", "set": "mir", "set_name": "Mirage", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/5f06acf3-8123-4a78-b2e7-089b0b775a4a", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Amir&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/mir?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/5f983dcb-b077-465f-a70b-6bd0e425556c/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A0df450be-9bd2-45be-ae59-fa8d19f6a391&unique=prints", "collector_number": "115", "digital": false, "rarity": "common", "flavor_text": "\"Femeref was guided by the wisdom of the Council of Voices. But in one terrible instant, they were slain, leaving Asmira as the sole voice of leadership.\"\n\u2014Hakim, Loreweaver", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Dermot Power", "artist_ids": ["4162c8c0-8ded-497c-b29e-131e43dfae5e"], "illustration_id": "756353cf-c31f-4d30-a579-e6278a4fb3c1", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 13641, "penny_rank": 7755, "prices": {"usd": "0.08", "usd_foil": null, "usd_etched": null, "eur": "0.04", "eur_foil": null, "tix": "0.09"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=3284", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Dark+Banishing&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Dark+Banishing&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Dark+Banishing"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/5023?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Dark+Banishing&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/6891?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "f7dc2716-ed62-4797-ad2b-227eca5408d0", "oracle_id": "0df450be-9bd2-45be-ae59-fa8d19f6a391", "multiverse_ids": [2443], "mtgo_id": 24403, "tcgplayer_id": 4640, "cardmarket_id": 6219, "name": "Dark Banishing", "lang": "en", "released_at": "1995-06-03", "uri": "https://api.scryfall.com/cards/f7dc2716-ed62-4797-ad2b-227eca5408d0", "scryfall_uri": "https://scryfall.com/card/ice/119/dark-banishing?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/f/7/f7dc2716-ed62-4797-ad2b-227eca5408d0.jpg?1562941556", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/7/f7dc2716-ed62-4797-ad2b-227eca5408d0.jpg?1562941556", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/f/7/f7dc2716-ed62-4797-ad2b-227eca5408d0.jpg?1562941556", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/f/7/f7dc2716-ed62-4797-ad2b-227eca5408d0.png?1562941556", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/7/f7dc2716-ed62-4797-ad2b-227eca5408d0.jpg?1562941556", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/f/7/f7dc2716-ed62-4797-ad2b-227eca5408d0.jpg?1562941556"}, "mana_cost": "{2}{B}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Destroy target nonblack creature. It can't be regenerated.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "b0e08eea-5c01-4406-a6e2-dcd09c5e5b67", "set": "ice", "set_name": "Ice Age", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/b0e08eea-5c01-4406-a6e2-dcd09c5e5b67", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aice&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ice?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/f7dc2716-ed62-4797-ad2b-227eca5408d0/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A0df450be-9bd2-45be-ae59-fa8d19f6a391&unique=prints", "collector_number": "119", "digital": false, "rarity": "common", "flavor_text": "\"Will not the mountains quake and hills melt at the coming of the darkness? Share this vision with your enemies, Lim-D\u00fbl, and they shall wither.\"\n\u2014Leshrac, Walker of Night", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Drew Tucker", "artist_ids": ["22eef389-7b21-4dda-95dc-4c9a0f1bf4dd"], "illustration_id": "8fe351fd-4884-43f0-a7ec-156f8aa69803", "border_color": "black", "frame": "1993", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 13641, "penny_rank": 7755, "prices": {"usd": "0.10", "usd_foil": null, "usd_etched": null, "eur": "0.09", "eur_foil": null, "tix": "0.05"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=2443", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Dark+Banishing&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Dark+Banishing&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Dark+Banishing"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/4640?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Dark+Banishing&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/24403?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "56adf4ea-1b1c-4737-8574-1848ca47d4f3", "oracle_id": "d3ebe9ae-108f-4d23-a236-35d632889cf8", "multiverse_ids": [373504], "mtgo_id": 50622, "mtgo_foil_id": 50623, "tcgplayer_id": 71091, "cardmarket_id": 264079, "name": "Dark Betrayal", "lang": "en", "released_at": "2013-09-27", "uri": "https://api.scryfall.com/cards/56adf4ea-1b1c-4737-8574-1848ca47d4f3", "scryfall_uri": "https://scryfall.com/card/ths/83/dark-betrayal?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/5/6/56adf4ea-1b1c-4737-8574-1848ca47d4f3.jpg?1562818301", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/6/56adf4ea-1b1c-4737-8574-1848ca47d4f3.jpg?1562818301", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/5/6/56adf4ea-1b1c-4737-8574-1848ca47d4f3.jpg?1562818301", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/5/6/56adf4ea-1b1c-4737-8574-1848ca47d4f3.png?1562818301", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/6/56adf4ea-1b1c-4737-8574-1848ca47d4f3.jpg?1562818301", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/5/6/56adf4ea-1b1c-4737-8574-1848ca47d4f3.jpg?1562818301"}, "mana_cost": "{B}", "cmc": 1.0, "type_line": "Instant", "oracle_text": "Destroy target black creature.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "69093d6f-e25a-41a4-8cf5-688d7f11c0fb", "set": "ths", "set_name": "Theros", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/69093d6f-e25a-41a4-8cf5-688d7f11c0fb", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aths&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ths?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/56adf4ea-1b1c-4737-8574-1848ca47d4f3/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ad3ebe9ae-108f-4d23-a236-35d632889cf8&unique=prints", "collector_number": "83", "digital": false, "rarity": "uncommon", "flavor_text": "\"You're just like me: ruthless, cunning, and ambitious. Obviously you're a threat.\"\n\u2014Basarios the Blade", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Nils Hamm", "artist_ids": ["c540d1fc-1500-457f-93cf-d6069ee66546"], "illustration_id": "cdb36595-500c-4891-9cf2-039b0c9039e0", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 16183, "penny_rank": 12007, "prices": {"usd": "0.05", "usd_foil": "0.25", "usd_etched": null, "eur": "0.02", "eur_foil": "0.30", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=373504", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Dark+Betrayal&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Dark+Betrayal&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Dark+Betrayal"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/71091?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Dark+Betrayal&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/50622?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "3ce0cef9-6de4-4a71-b76a-eb0198387294", "oracle_id": "102356a9-0de5-4034-b121-034da5deb4f2", "multiverse_ids": [6569], "tcgplayer_id": 123, "cardmarket_id": 9832, "name": "Dark Offering", "lang": "en", "released_at": "1998-06-24", "uri": "https://api.scryfall.com/cards/3ce0cef9-6de4-4a71-b76a-eb0198387294", "scryfall_uri": "https://scryfall.com/card/p02/72/dark-offering?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/3/c/3ce0cef9-6de4-4a71-b76a-eb0198387294.jpg?1562909319", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/c/3ce0cef9-6de4-4a71-b76a-eb0198387294.jpg?1562909319", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/3/c/3ce0cef9-6de4-4a71-b76a-eb0198387294.jpg?1562909319", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/3/c/3ce0cef9-6de4-4a71-b76a-eb0198387294.png?1562909319", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/c/3ce0cef9-6de4-4a71-b76a-eb0198387294.jpg?1562909319", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/3/c/3ce0cef9-6de4-4a71-b76a-eb0198387294.jpg?1562909319"}, "mana_cost": "{4}{B}{B}", "cmc": 6.0, "type_line": "Sorcery", "oracle_text": "Destroy target nonblack creature. You gain 3 life.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "ac67f18a-4f0e-407e-bab1-a9fe4f659565", "set": "p02", "set_name": "Portal Second Age", "set_type": "starter", "set_uri": "https://api.scryfall.com/sets/ac67f18a-4f0e-407e-bab1-a9fe4f659565", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ap02&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/p02?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/3ce0cef9-6de4-4a71-b76a-eb0198387294/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A102356a9-0de5-4034-b121-034da5deb4f2&unique=prints", "collector_number": "72", "digital": false, "rarity": "uncommon", "flavor_text": "\"Our greatest hope has become our enemy's greatest triumph.\"\n\u2014Restela, Alaborn marshal", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Edward P. Beard, Jr.", "artist_ids": ["b845b8ee-aeea-4822-bcf9-7230625ac95c"], "illustration_id": "ad414dd0-30b5-4c01-a77f-9c20e5238a1f", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 22847, "prices": {"usd": "0.26", "usd_foil": null, "usd_etched": null, "eur": "0.19", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=6569", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Dark+Offering&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Dark+Offering&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Dark+Offering"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/123?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Dark+Offering&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Dark+Offering&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "3da58e0d-5877-43c4-b129-993e154b6087", "oracle_id": "ac2720d2-b010-4fa9-8c94-b13680b75aac", "multiverse_ids": [118892], "mtgo_id": 25811, "mtgo_foil_id": 25812, "tcgplayer_id": 14196, "cardmarket_id": 13803, "name": "Dark Withering", "lang": "en", "released_at": "2006-10-06", "uri": "https://api.scryfall.com/cards/3da58e0d-5877-43c4-b129-993e154b6087", "scryfall_uri": "https://scryfall.com/card/tsp/101/dark-withering?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/3/d/3da58e0d-5877-43c4-b129-993e154b6087.jpg?1562907804", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/d/3da58e0d-5877-43c4-b129-993e154b6087.jpg?1562907804", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/3/d/3da58e0d-5877-43c4-b129-993e154b6087.jpg?1562907804", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/3/d/3da58e0d-5877-43c4-b129-993e154b6087.png?1562907804", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/d/3da58e0d-5877-43c4-b129-993e154b6087.jpg?1562907804", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/3/d/3da58e0d-5877-43c4-b129-993e154b6087.jpg?1562907804"}, "mana_cost": "{4}{B}{B}", "cmc": 6.0, "type_line": "Instant", "oracle_text": "Destroy target nonblack creature.\nMadness {B} (If you discard this card, discard it into exile. When you do, cast it for its madness cost or put it into your graveyard.)", "colors": ["B"], "color_identity": ["B"], "keywords": ["Madness"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "c1d109bc-ffd8-428f-8d7d-3f8d7e648046", "set": "tsp", "set_name": "Time Spiral", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/c1d109bc-ffd8-428f-8d7d-3f8d7e648046", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Atsp&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/tsp?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/3da58e0d-5877-43c4-b129-993e154b6087/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aac2720d2-b010-4fa9-8c94-b13680b75aac&unique=prints", "collector_number": "101", "digital": false, "rarity": "common", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Wayne Reynolds", "artist_ids": ["afc47cec-3ccc-404e-a8c6-4d83dd504271"], "illustration_id": "fc37ca99-851e-457e-90f6-eb53c42e3895", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 4151, "penny_rank": 4297, "prices": {"usd": "0.23", "usd_foil": "5.50", "usd_etched": null, "eur": "0.20", "eur_foil": "0.99", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=118892", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Dark+Withering&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Dark+Withering&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Dark+Withering"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/14196?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Dark+Withering&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/25811?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "007a5c8c-ed0b-4844-9393-a3d25d4ffa1d", "oracle_id": "0d2cdcc6-da65-4f66-ba38-111efad44919", "multiverse_ids": [491731], "mtgo_id": 83155, "arena_id": 73292, "tcgplayer_id": 221909, "cardmarket_id": 495319, "name": "Deadly Alliance", "lang": "en", "released_at": "2020-09-25", "uri": "https://api.scryfall.com/cards/007a5c8c-ed0b-4844-9393-a3d25d4ffa1d", "scryfall_uri": "https://scryfall.com/card/znr/96/deadly-alliance?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/0/0/007a5c8c-ed0b-4844-9393-a3d25d4ffa1d.jpg?1604195436", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/0/007a5c8c-ed0b-4844-9393-a3d25d4ffa1d.jpg?1604195436", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/0/0/007a5c8c-ed0b-4844-9393-a3d25d4ffa1d.jpg?1604195436", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/0/0/007a5c8c-ed0b-4844-9393-a3d25d4ffa1d.png?1604195436", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/0/007a5c8c-ed0b-4844-9393-a3d25d4ffa1d.jpg?1604195436", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/0/0/007a5c8c-ed0b-4844-9393-a3d25d4ffa1d.jpg?1604195436"}, "mana_cost": "{4}{B}", "cmc": 5.0, "type_line": "Instant", "oracle_text": "This spell costs {1} less to cast for each creature in your party. (Your party consists of up to one each of Cleric, Rogue, Warrior, and Wizard.)\nDestroy target creature or planeswalker.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "f4e01fa7-b254-42dd-849f-69b58027a8c4", "set": "znr", "set_name": "Zendikar Rising", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/f4e01fa7-b254-42dd-849f-69b58027a8c4", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aznr&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/znr?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/007a5c8c-ed0b-4844-9393-a3d25d4ffa1d/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A0d2cdcc6-da65-4f66-ba38-111efad44919&unique=prints", "collector_number": "96", "digital": false, "rarity": "common", "flavor_text": "\"He could handle any one of us, but he's no match for all of us!\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Kieran Yanner", "artist_ids": ["aa7e89ed-d294-4633-9057-ce04dacfcfa4"], "illustration_id": "02e044db-e07a-4155-b688-3c2112d161f6", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 8499, "penny_rank": 13797, "preview": {"source": "Mike Sigrist", "source_uri": "https://twitter.com/MSigrist83/status/1301194153888493569?s=19", "previewed_at": "2020-09-02"}, "prices": {"usd": "0.04", "usd_foil": "0.11", "usd_etched": null, "eur": "0.04", "eur_foil": "0.12", "tix": "0.01"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=491731", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Deadly+Alliance&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Deadly+Alliance&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Deadly+Alliance"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/221909?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Deadly+Alliance&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/83155?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "462fe190-5264-42d8-bd27-23c5aa0c641f", "oracle_id": "04a3bb42-0464-4638-a6ac-d5f412c222cc", "multiverse_ids": [452818], "mtgo_id": 69509, "arena_id": 68529, "tcgplayer_id": 175182, "cardmarket_id": 363585, "name": "Deadly Visit", "lang": "en", "released_at": "2018-10-05", "uri": "https://api.scryfall.com/cards/462fe190-5264-42d8-bd27-23c5aa0c641f", "scryfall_uri": "https://scryfall.com/card/grn/68/deadly-visit?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/4/6/462fe190-5264-42d8-bd27-23c5aa0c641f.jpg?1572892937", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/6/462fe190-5264-42d8-bd27-23c5aa0c641f.jpg?1572892937", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/4/6/462fe190-5264-42d8-bd27-23c5aa0c641f.jpg?1572892937", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/4/6/462fe190-5264-42d8-bd27-23c5aa0c641f.png?1572892937", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/6/462fe190-5264-42d8-bd27-23c5aa0c641f.jpg?1572892937", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/4/6/462fe190-5264-42d8-bd27-23c5aa0c641f.jpg?1572892937"}, "mana_cost": "{3}{B}{B}", "cmc": 5.0, "type_line": "Sorcery", "oracle_text": "Destroy target creature.\nSurveil 2. (Look at the top two cards of your library, then put any number of them into your graveyard and the rest on top of your library in any order.)", "colors": ["B"], "color_identity": ["B"], "keywords": ["Surveil"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "597c6d4a-8212-4903-a6af-12c4ae9e13f0", "set": "grn", "set_name": "Guilds of Ravnica", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/597c6d4a-8212-4903-a6af-12c4ae9e13f0", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Agrn&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/grn?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/462fe190-5264-42d8-bd27-23c5aa0c641f/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A04a3bb42-0464-4638-a6ac-d5f412c222cc&unique=prints", "collector_number": "68", "digital": false, "rarity": "common", "watermark": "dimir", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Scott Murphy", "artist_ids": ["07c7ac65-dfa6-4273-9c66-ec9d8f3e2226"], "illustration_id": "766953c5-ba63-45c3-8364-50998f2cbf73", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 13900, "penny_rank": 13292, "prices": {"usd": "0.05", "usd_foil": "0.15", "usd_etched": null, "eur": "0.02", "eur_foil": "0.30", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=452818", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Deadly+Visit&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Deadly+Visit&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Deadly+Visit"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/175182?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Deadly+Visit&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/69509?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "f8a84715-c5dc-4a19-af6a-796c6ee912c2", "oracle_id": "e323d468-def5-4090-af5b-19481289168f", "multiverse_ids": [26782], "mtgo_id": 15207, "mtgo_foil_id": 15208, "tcgplayer_id": 7781, "cardmarket_id": 3296, "name": "Death Bomb", "lang": "en", "released_at": "2001-02-05", "uri": "https://api.scryfall.com/cards/f8a84715-c5dc-4a19-af6a-796c6ee912c2", "scryfall_uri": "https://scryfall.com/card/pls/41/death-bomb?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/f/8/f8a84715-c5dc-4a19-af6a-796c6ee912c2.jpg?1562947604", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/8/f8a84715-c5dc-4a19-af6a-796c6ee912c2.jpg?1562947604", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/f/8/f8a84715-c5dc-4a19-af6a-796c6ee912c2.jpg?1562947604", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/f/8/f8a84715-c5dc-4a19-af6a-796c6ee912c2.png?1562947604", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/8/f8a84715-c5dc-4a19-af6a-796c6ee912c2.jpg?1562947604", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/f/8/f8a84715-c5dc-4a19-af6a-796c6ee912c2.jpg?1562947604"}, "mana_cost": "{3}{B}", "cmc": 4.0, "type_line": "Instant", "oracle_text": "As an additional cost to cast this spell, sacrifice a creature.\nDestroy target nonblack creature. It can't be regenerated. Its controller loses 2 life.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "82dc193b-bd5f-4883-a93f-a4155b467ee0", "set": "pls", "set_name": "Planeshift", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/82dc193b-bd5f-4883-a93f-a4155b467ee0", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Apls&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/pls?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/f8a84715-c5dc-4a19-af6a-796c6ee912c2/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ae323d468-def5-4090-af5b-19481289168f&unique=prints", "collector_number": "41", "digital": false, "rarity": "common", "flavor_text": "There's no higher honor in Phyrexia than dying for Yawgmoth's glorious vision.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Dan Frazier", "artist_ids": ["059bba56-5feb-42e4-8c2e-e2f1e6ba11f9"], "illustration_id": "1693b10f-e564-43f8-9df9-d8f36094c313", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 21640, "prices": {"usd": "0.15", "usd_foil": "0.42", "usd_etched": null, "eur": "0.02", "eur_foil": "0.35", "tix": "0.06"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=26782", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Death+Bomb&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Death+Bomb&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Death+Bomb"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/7781?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Death+Bomb&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/15207?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "61268362-f2ba-469d-8e5a-0b8da96e54a5", "oracle_id": "cf09b0af-3cf1-4486-8f65-8cfd2410314a", "multiverse_ids": [190581], "mtgo_id": 32943, "mtgo_foil_id": 32944, "tcgplayer_id": 32583, "cardmarket_id": 21136, "name": "Deathmark", "lang": "en", "released_at": "2009-07-17", "uri": "https://api.scryfall.com/cards/61268362-f2ba-469d-8e5a-0b8da96e54a5", "scryfall_uri": "https://scryfall.com/card/m10/90/deathmark?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/6/1/61268362-f2ba-469d-8e5a-0b8da96e54a5.jpg?1561982272", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/1/61268362-f2ba-469d-8e5a-0b8da96e54a5.jpg?1561982272", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/6/1/61268362-f2ba-469d-8e5a-0b8da96e54a5.jpg?1561982272", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/6/1/61268362-f2ba-469d-8e5a-0b8da96e54a5.png?1561982272", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/1/61268362-f2ba-469d-8e5a-0b8da96e54a5.jpg?1561982272", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/6/1/61268362-f2ba-469d-8e5a-0b8da96e54a5.jpg?1561982272"}, "mana_cost": "{B}", "cmc": 1.0, "type_line": "Sorcery", "oracle_text": "Destroy target green or white creature.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "0dba38a9-6b9d-4768-9831-4e03e8970a0b", "set": "m10", "set_name": "Magic 2010", "set_type": "core", "set_uri": "https://api.scryfall.com/sets/0dba38a9-6b9d-4768-9831-4e03e8970a0b", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Am10&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/m10?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/61268362-f2ba-469d-8e5a-0b8da96e54a5/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Acf09b0af-3cf1-4486-8f65-8cfd2410314a&unique=prints", "collector_number": "90", "digital": false, "rarity": "uncommon", "flavor_text": "Even the noblest of intentions and strongest of wills inevitably crumble into dust.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Steven Belledin", "artist_ids": ["f07d73b9-52a0-4fe5-858b-61f7b42174a5"], "illustration_id": "b3607eff-3224-4ad2-a862-3029e1b4968c", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 14785, "penny_rank": 12200, "prices": {"usd": "0.06", "usd_foil": "0.46", "usd_etched": null, "eur": "0.05", "eur_foil": "0.35", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=190581", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Deathmark&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Deathmark&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Deathmark"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/32583?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Deathmark&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/32943?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "e72e8728-d0a0-4ee5-87c3-092ca94225e0", "oracle_id": "cf09b0af-3cf1-4486-8f65-8cfd2410314a", "multiverse_ids": [121119], "mtgo_id": 24525, "mtgo_foil_id": 24526, "tcgplayer_id": 14024, "cardmarket_id": 13631, "name": "Deathmark", "lang": "en", "released_at": "2006-07-21", "uri": "https://api.scryfall.com/cards/e72e8728-d0a0-4ee5-87c3-092ca94225e0", "scryfall_uri": "https://scryfall.com/card/csp/54/deathmark?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/e/7/e72e8728-d0a0-4ee5-87c3-092ca94225e0.jpg?1593275062", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/7/e72e8728-d0a0-4ee5-87c3-092ca94225e0.jpg?1593275062", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/e/7/e72e8728-d0a0-4ee5-87c3-092ca94225e0.jpg?1593275062", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/e/7/e72e8728-d0a0-4ee5-87c3-092ca94225e0.png?1593275062", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/7/e72e8728-d0a0-4ee5-87c3-092ca94225e0.jpg?1593275062", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/e/7/e72e8728-d0a0-4ee5-87c3-092ca94225e0.jpg?1593275062"}, "mana_cost": "{B}", "cmc": 1.0, "type_line": "Sorcery", "oracle_text": "Destroy target green or white creature.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "1f4f105f-73e4-4f03-849e-82a204807847", "set": "csp", "set_name": "Coldsnap", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/1f4f105f-73e4-4f03-849e-82a204807847", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Acsp&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/csp?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/e72e8728-d0a0-4ee5-87c3-092ca94225e0/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Acf09b0af-3cf1-4486-8f65-8cfd2410314a&unique=prints", "collector_number": "54", "digital": false, "rarity": "uncommon", "flavor_text": "\"I hope it's true that every snowflake is unique, because I never want to see one like this again. Now clean up that body.\"\n\u2014Thangbrand Gyrdsson, Kjeldoran patrol", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Jeremy Jarvis", "artist_ids": ["b40ac320-89b4-4c51-a85f-4a4b63ae614e"], "illustration_id": "de20da80-e083-4730-94cd-825191d25635", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 14785, "penny_rank": 12200, "prices": {"usd": "0.14", "usd_foil": "1.47", "usd_etched": null, "eur": "0.20", "eur_foil": "0.94", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=121119", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Deathmark&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Deathmark&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Deathmark"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/14024?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Deathmark&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/24525?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "4c643d87-50bc-4380-b1d6-0a465eef5dbf", "oracle_id": "6f705338-b00b-4a6d-924f-443e7c5670b7", "multiverse_ids": [25833], "mtgo_id": 16250, "mtgo_foil_id": 16251, "tcgplayer_id": 7933, "cardmarket_id": 3208, "name": "Death Mutation", "lang": "en", "released_at": "2001-06-04", "uri": "https://api.scryfall.com/cards/4c643d87-50bc-4380-b1d6-0a465eef5dbf", "scryfall_uri": "https://scryfall.com/card/apc/96/death-mutation?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/4/c/4c643d87-50bc-4380-b1d6-0a465eef5dbf.jpg?1562912876", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/c/4c643d87-50bc-4380-b1d6-0a465eef5dbf.jpg?1562912876", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/4/c/4c643d87-50bc-4380-b1d6-0a465eef5dbf.jpg?1562912876", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/4/c/4c643d87-50bc-4380-b1d6-0a465eef5dbf.png?1562912876", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/c/4c643d87-50bc-4380-b1d6-0a465eef5dbf.jpg?1562912876", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/4/c/4c643d87-50bc-4380-b1d6-0a465eef5dbf.jpg?1562912876"}, "mana_cost": "{6}{B}{G}", "cmc": 8.0, "type_line": "Sorcery", "oracle_text": "Destroy target nonblack creature. It can't be regenerated. Create X 1/1 green Saproling creature tokens, where X is that creature's mana value.", "colors": ["B", "G"], "color_identity": ["B", "G"], "keywords": [], "all_parts": [{"object": "related_card", "id": "4c643d87-50bc-4380-b1d6-0a465eef5dbf", "component": "combo_piece", "name": "Death Mutation", "type_line": "Sorcery", "uri": "https://api.scryfall.com/cards/4c643d87-50bc-4380-b1d6-0a465eef5dbf"}, {"object": "related_card", "id": "006c118e-b5c7-4726-acee-59132f23e4fc", "component": "token", "name": "Saproling", "type_line": "Token Creature \u2014 Saproling", "uri": "https://api.scryfall.com/cards/006c118e-b5c7-4726-acee-59132f23e4fc"}], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "e4e00913-d08d-4899-86ea-5cf631e09ce0", "set": "apc", "set_name": "Apocalypse", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/e4e00913-d08d-4899-86ea-5cf631e09ce0", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aapc&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/apc?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/4c643d87-50bc-4380-b1d6-0a465eef5dbf/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A6f705338-b00b-4a6d-924f-443e7c5670b7&unique=prints", "collector_number": "96", "digital": false, "rarity": "uncommon", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Carl Critchlow", "artist_ids": ["17948f16-611a-44b8-8d10-9895a0bdfff1"], "illustration_id": "e729130a-91e5-4714-a1bf-af5756557b30", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 12370, "prices": {"usd": "0.20", "usd_foil": "3.69", "usd_etched": null, "eur": "0.49", "eur_foil": "2.50", "tix": "0.11"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=25833", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Death+Mutation&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Death+Mutation&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Death+Mutation"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/7933?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Death+Mutation&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/16250?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "8cddafc8-57d6-456e-af58-4b7f45e195d5", "oracle_id": "ae327976-1026-4318-8846-f6b0cac373a7", "multiverse_ids": [136043], "mtgo_id": 26814, "mtgo_foil_id": 26815, "tcgplayer_id": 14874, "cardmarket_id": 15074, "name": "Death Rattle", "lang": "en", "released_at": "2007-05-04", "uri": "https://api.scryfall.com/cards/8cddafc8-57d6-456e-af58-4b7f45e195d5", "scryfall_uri": "https://scryfall.com/card/fut/82/death-rattle?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/8/c/8cddafc8-57d6-456e-af58-4b7f45e195d5.jpg?1562923481", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/c/8cddafc8-57d6-456e-af58-4b7f45e195d5.jpg?1562923481", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/8/c/8cddafc8-57d6-456e-af58-4b7f45e195d5.jpg?1562923481", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/8/c/8cddafc8-57d6-456e-af58-4b7f45e195d5.png?1562923481", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/c/8cddafc8-57d6-456e-af58-4b7f45e195d5.jpg?1562923481", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/8/c/8cddafc8-57d6-456e-af58-4b7f45e195d5.jpg?1562923481"}, "mana_cost": "{5}{B}", "cmc": 6.0, "type_line": "Instant", "oracle_text": "Delve (Each card you exile from your graveyard while casting this spell pays for {1}.)\nDestroy target nongreen creature. It can't be regenerated.", "colors": ["B"], "color_identity": ["B"], "keywords": ["Delve"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "bf951ddb-4445-4923-87cb-3fe4ac3c6b9a", "set": "fut", "set_name": "Future Sight", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/bf951ddb-4445-4923-87cb-3fe4ac3c6b9a", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Afut&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/fut?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/8cddafc8-57d6-456e-af58-4b7f45e195d5/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aae327976-1026-4318-8846-f6b0cac373a7&unique=prints", "collector_number": "82", "digital": false, "rarity": "common", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Vance Kovacs", "artist_ids": ["b5516011-4722-4fc8-8542-102cecc52b71"], "illustration_id": "7294805d-1430-4214-b176-60b46a4a8bb2", "border_color": "black", "frame": "future", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 16161, "penny_rank": 4233, "prices": {"usd": "0.09", "usd_foil": "0.24", "usd_etched": null, "eur": "0.10", "eur_foil": "0.10", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=136043", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Death+Rattle&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Death+Rattle&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Death+Rattle"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/14874?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Death+Rattle&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/26814?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "0643fb9a-8284-4dfc-836a-c2c69ef09f32", "oracle_id": "aac711d1-2fa0-42f9-9eda-a1642f3ff016", "multiverse_ids": [262854], "mtgo_id": 43427, "mtgo_foil_id": 43428, "tcgplayer_id": 57809, "cardmarket_id": 252577, "name": "Death's Caress", "lang": "en", "released_at": "2012-02-03", "uri": "https://api.scryfall.com/cards/0643fb9a-8284-4dfc-836a-c2c69ef09f32", "scryfall_uri": "https://scryfall.com/card/dka/59/deaths-caress?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/0/6/0643fb9a-8284-4dfc-836a-c2c69ef09f32.jpg?1562896472", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/6/0643fb9a-8284-4dfc-836a-c2c69ef09f32.jpg?1562896472", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/0/6/0643fb9a-8284-4dfc-836a-c2c69ef09f32.jpg?1562896472", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/0/6/0643fb9a-8284-4dfc-836a-c2c69ef09f32.png?1562896472", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/6/0643fb9a-8284-4dfc-836a-c2c69ef09f32.jpg?1562896472", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/0/6/0643fb9a-8284-4dfc-836a-c2c69ef09f32.jpg?1562896472"}, "mana_cost": "{3}{B}{B}", "cmc": 5.0, "type_line": "Sorcery", "oracle_text": "Destroy target creature. If that creature was a Human, you gain life equal to its toughness.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "8052750a-aaf2-46fc-b46d-633f14124017", "set": "dka", "set_name": "Dark Ascension", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/8052750a-aaf2-46fc-b46d-633f14124017", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Adka&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/dka?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/0643fb9a-8284-4dfc-836a-c2c69ef09f32/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aaac711d1-2fa0-42f9-9eda-a1642f3ff016&unique=prints", "collector_number": "59", "digital": false, "rarity": "common", "flavor_text": "The faint smell of cloves, the rustling of the wind, and a paralyzing descent into an airless, fathomless tomb.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "James Ryman", "artist_ids": ["3852bbc9-11c0-4fe3-8722-a06ad7e2bcc5"], "illustration_id": "db52ab22-2aa8-49b9-b2c8-72a5d4a44bd8", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 21180, "prices": {"usd": "0.03", "usd_foil": "0.24", "usd_etched": null, "eur": "0.20", "eur_foil": "0.10", "tix": "0.05"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=262854", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Death%27s+Caress&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Death%27s+Caress&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Death%27s+Caress"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/57809?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Death%27s+Caress&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/43427?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "6d615557-aea8-4057-9fbd-d62dd98edc13", "oracle_id": "793b0c73-601c-41dc-b49a-45fee4970d52", "multiverse_ids": [461116], "mtgo_id": 71984, "arena_id": 69640, "tcgplayer_id": 187725, "cardmarket_id": 371917, "name": "Deathsprout", "lang": "en", "released_at": "2019-05-03", "uri": "https://api.scryfall.com/cards/6d615557-aea8-4057-9fbd-d62dd98edc13", "scryfall_uri": "https://scryfall.com/card/war/189/deathsprout?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/6/d/6d615557-aea8-4057-9fbd-d62dd98edc13.jpg?1557577090", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/d/6d615557-aea8-4057-9fbd-d62dd98edc13.jpg?1557577090", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/6/d/6d615557-aea8-4057-9fbd-d62dd98edc13.jpg?1557577090", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/6/d/6d615557-aea8-4057-9fbd-d62dd98edc13.png?1557577090", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/d/6d615557-aea8-4057-9fbd-d62dd98edc13.jpg?1557577090", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/6/d/6d615557-aea8-4057-9fbd-d62dd98edc13.jpg?1557577090"}, "mana_cost": "{1}{B}{B}{G}", "cmc": 4.0, "type_line": "Instant", "oracle_text": "Destroy target creature. Search your library for a basic land card, put it onto the battlefield tapped, then shuffle.", "colors": ["B", "G"], "color_identity": ["B", "G"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "ee044f0b-e101-4ead-8d0e-aa510aad4277", "set": "war", "set_name": "War of the Spark", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/ee044f0b-e101-4ead-8d0e-aa510aad4277", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Awar&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/war?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/6d615557-aea8-4057-9fbd-d62dd98edc13/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A793b0c73-601c-41dc-b49a-45fee4970d52&unique=prints", "collector_number": "189", "digital": false, "rarity": "uncommon", "flavor_text": "\"They say nothing lasts forever. I say everything lasts forever, just not in the form you may be accustomed to.\"\n\u2014Vraska", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Seb McKinnon", "artist_ids": ["ad4caca0-8d89-44ce-a1a6-d5ca905bd6fb"], "illustration_id": "402f461b-4857-4339-b5bd-bac18a935789", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 938, "penny_rank": 3489, "preview": {"source": "Reid Duke", "source_uri": "https://www.twitch.tv/videos/405523854", "previewed_at": "2019-04-03"}, "prices": {"usd": "0.34", "usd_foil": "3.70", "usd_etched": null, "eur": "0.14", "eur_foil": "2.99", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=461116", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Deathsprout&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Deathsprout&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Deathsprout"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/187725?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Deathsprout&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/71984?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "7478a471-3bd2-4038-a4eb-70c38a43afa9", "oracle_id": "3ebaa91f-5cbf-4a82-9759-9bd4d93a3e87", "multiverse_ids": [5137], "mtgo_id": 10231, "mtgo_foil_id": 10232, "tcgplayer_id": 5332, "cardmarket_id": 9092, "name": "Death Stroke", "lang": "en", "released_at": "1998-03-02", "uri": "https://api.scryfall.com/cards/7478a471-3bd2-4038-a4eb-70c38a43afa9", "scryfall_uri": "https://scryfall.com/card/sth/57/death-stroke?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/7/4/7478a471-3bd2-4038-a4eb-70c38a43afa9.jpg?1562596864", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/4/7478a471-3bd2-4038-a4eb-70c38a43afa9.jpg?1562596864", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/7/4/7478a471-3bd2-4038-a4eb-70c38a43afa9.jpg?1562596864", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/7/4/7478a471-3bd2-4038-a4eb-70c38a43afa9.png?1562596864", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/4/7478a471-3bd2-4038-a4eb-70c38a43afa9.jpg?1562596864", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/7/4/7478a471-3bd2-4038-a4eb-70c38a43afa9.jpg?1562596864"}, "mana_cost": "{B}{B}", "cmc": 2.0, "type_line": "Sorcery", "oracle_text": "Destroy target tapped creature.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "5c83396a-d386-4367-926b-571a75b086a3", "set": "sth", "set_name": "Stronghold", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/5c83396a-d386-4367-926b-571a75b086a3", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Asth&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/sth?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/7478a471-3bd2-4038-a4eb-70c38a43afa9/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A3ebaa91f-5cbf-4a82-9759-9bd4d93a3e87&unique=prints", "collector_number": "57", "digital": false, "rarity": "common", "flavor_text": "For a sharp second, Selenia froze, and Crovax's blade found home. As the angel shattered like glass, Crovax felt his mind collapse\u2014the curse had been fulfilled.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Colin MacNeil", "artist_ids": ["d756eb39-8c2f-4f12-b200-ec0d365479f3"], "illustration_id": "65fcd4ca-164c-4a2f-8c52-74ea80a47030", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 16602, "penny_rank": 7912, "prices": {"usd": "0.05", "usd_foil": null, "usd_etched": null, "eur": "0.02", "eur_foil": null, "tix": "0.06"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=5137", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Death+Stroke&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Death+Stroke&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Death+Stroke"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/5332?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Death+Stroke&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/10231?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "358bbaf9-8d48-448b-b87f-211344e36e29", "oracle_id": "a4e5693f-12a0-451e-818d-d6efc7b4ed25", "multiverse_ids": [382250], "tcgplayer_id": 82885, "cardmarket_id": 267113, "name": "Decimate", "lang": "en", "released_at": "2014-06-06", "uri": "https://api.scryfall.com/cards/358bbaf9-8d48-448b-b87f-211344e36e29", "scryfall_uri": "https://scryfall.com/card/cns/185/decimate?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/3/5/358bbaf9-8d48-448b-b87f-211344e36e29.jpg?1562864952", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/5/358bbaf9-8d48-448b-b87f-211344e36e29.jpg?1562864952", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/3/5/358bbaf9-8d48-448b-b87f-211344e36e29.jpg?1562864952", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/3/5/358bbaf9-8d48-448b-b87f-211344e36e29.png?1562864952", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/5/358bbaf9-8d48-448b-b87f-211344e36e29.jpg?1562864952", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/3/5/358bbaf9-8d48-448b-b87f-211344e36e29.jpg?1562864952"}, "mana_cost": "{2}{R}{G}", "cmc": 4.0, "type_line": "Sorcery", "oracle_text": "Destroy target artifact, target creature, target enchantment, and target land.", "colors": ["G", "R"], "color_identity": ["G", "R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "7d4ebb59-a50b-45b8-8fff-ab70767819a5", "set": "cns", "set_name": "Conspiracy", "set_type": "draft_innovation", "set_uri": "https://api.scryfall.com/sets/7d4ebb59-a50b-45b8-8fff-ab70767819a5", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Acns&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/cns?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/358bbaf9-8d48-448b-b87f-211344e36e29/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aa4e5693f-12a0-451e-818d-d6efc7b4ed25&unique=prints", "collector_number": "185", "digital": false, "rarity": "rare", "flavor_text": "Anarchy comes in many forms: social, individual, Gruul . . .", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Zoltan Boros", "artist_ids": ["1885e6cb-c827-4896-994e-3d0a027d602f"], "illustration_id": "3f9309bc-61c0-4e5a-a488-98b437f6eb09", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 913, "prices": {"usd": "1.87", "usd_foil": "9.55", "usd_etched": null, "eur": "1.30", "eur_foil": "5.62", "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=382250", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Decimate&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Decimate&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Decimate"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/82885?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Decimate&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Decimate&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "912c398a-e49a-4399-ac41-7b1d4328a59d", "oracle_id": "a4e5693f-12a0-451e-818d-d6efc7b4ed25", "multiverse_ids": [31798], "mtgo_id": 16503, "mtgo_foil_id": 16504, "tcgplayer_id": 9562, "cardmarket_id": 2699, "name": "Decimate", "lang": "en", "released_at": "2001-10-01", "uri": "https://api.scryfall.com/cards/912c398a-e49a-4399-ac41-7b1d4328a59d", "scryfall_uri": "https://scryfall.com/card/ody/287/decimate?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/9/1/912c398a-e49a-4399-ac41-7b1d4328a59d.jpg?1562921956", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/1/912c398a-e49a-4399-ac41-7b1d4328a59d.jpg?1562921956", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/9/1/912c398a-e49a-4399-ac41-7b1d4328a59d.jpg?1562921956", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/9/1/912c398a-e49a-4399-ac41-7b1d4328a59d.png?1562921956", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/1/912c398a-e49a-4399-ac41-7b1d4328a59d.jpg?1562921956", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/9/1/912c398a-e49a-4399-ac41-7b1d4328a59d.jpg?1562921956"}, "mana_cost": "{2}{R}{G}", "cmc": 4.0, "type_line": "Sorcery", "oracle_text": "Destroy target artifact, target creature, target enchantment, and target land.", "colors": ["G", "R"], "color_identity": ["G", "R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "b0d90d2d-494a-4224-bfa0-36ce5ee281b1", "set": "ody", "set_name": "Odyssey", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/b0d90d2d-494a-4224-bfa0-36ce5ee281b1", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aody&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ody?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/912c398a-e49a-4399-ac41-7b1d4328a59d/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aa4e5693f-12a0-451e-818d-d6efc7b4ed25&unique=prints", "collector_number": "287", "digital": false, "rarity": "rare", "flavor_text": "\"Anyone can admire creation. Only a barbarian sees the beauty in demolition.\"\n\u2014Kamahl, pit fighter", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Alex Horley-Orlandelli", "artist_ids": ["1631a2ad-bf03-4ab9-b86c-60da982d58a1"], "illustration_id": "3fbb33a4-0e7e-406c-8740-a065129ec912", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 913, "prices": {"usd": "4.92", "usd_foil": "36.98", "usd_etched": null, "eur": "2.99", "eur_foil": "27.71", "tix": "0.49"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=31798", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Decimate&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Decimate&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Decimate"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/9562?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Decimate&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/16503?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "43df9f41-944e-4cf3-ac80-524eadac221d", "oracle_id": "390290b3-77cc-4180-8e6c-9cb808f6ac7a", "multiverse_ids": [457242], "mtgo_id": 71196, "arena_id": 69226, "tcgplayer_id": 183386, "cardmarket_id": 368585, "name": "Deface", "lang": "en", "released_at": "2019-01-25", "uri": "https://api.scryfall.com/cards/43df9f41-944e-4cf3-ac80-524eadac221d", "scryfall_uri": "https://scryfall.com/card/rna/98/deface?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/4/3/43df9f41-944e-4cf3-ac80-524eadac221d.jpg?1584830848", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/3/43df9f41-944e-4cf3-ac80-524eadac221d.jpg?1584830848", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/4/3/43df9f41-944e-4cf3-ac80-524eadac221d.jpg?1584830848", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/4/3/43df9f41-944e-4cf3-ac80-524eadac221d.png?1584830848", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/3/43df9f41-944e-4cf3-ac80-524eadac221d.jpg?1584830848", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/4/3/43df9f41-944e-4cf3-ac80-524eadac221d.jpg?1584830848"}, "mana_cost": "{R}", "cmc": 1.0, "type_line": "Sorcery", "oracle_text": "Choose one \u2014\n\u2022 Destroy target artifact.\n\u2022 Destroy target creature with defender.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "97a7fd84-8d89-45a3-b48b-c951f6a3f9f1", "set": "rna", "set_name": "Ravnica Allegiance", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/97a7fd84-8d89-45a3-b48b-c951f6a3f9f1", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Arna&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/rna?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/43df9f41-944e-4cf3-ac80-524eadac221d/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A390290b3-77cc-4180-8e6c-9cb808f6ac7a&unique=prints", "collector_number": "98", "digital": false, "rarity": "common", "flavor_text": "\"Leave no stone unturned.\"\n\u2014Ruric Thar", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Sidharth Chaturvedi", "artist_ids": ["55e6d846-2f73-4fba-9b88-441686bb8dcb"], "illustration_id": "32ba7399-4bb6-4b58-9f00-cd1c5f0a9624", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 13793, "prices": {"usd": "0.02", "usd_foil": "0.09", "usd_etched": null, "eur": "0.02", "eur_foil": "0.15", "tix": "0.04"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=457242", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Deface&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Deface&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Deface"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/183386?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Deface&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/71196?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "60473300-0bdc-4e89-87d9-28c8d7b4d83d", "oracle_id": "21645448-ecbd-4036-b9ed-47cd903079e4", "multiverse_ids": [394534], "mtgo_id": 56020, "mtgo_foil_id": 56021, "tcgplayer_id": 96670, "cardmarket_id": 273338, "name": "Defeat", "lang": "en", "released_at": "2015-03-27", "uri": "https://api.scryfall.com/cards/60473300-0bdc-4e89-87d9-28c8d7b4d83d", "scryfall_uri": "https://scryfall.com/card/dtk/97/defeat?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/6/0/60473300-0bdc-4e89-87d9-28c8d7b4d83d.jpg?1562787158", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/0/60473300-0bdc-4e89-87d9-28c8d7b4d83d.jpg?1562787158", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/6/0/60473300-0bdc-4e89-87d9-28c8d7b4d83d.jpg?1562787158", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/6/0/60473300-0bdc-4e89-87d9-28c8d7b4d83d.png?1562787158", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/0/60473300-0bdc-4e89-87d9-28c8d7b4d83d.jpg?1562787158", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/6/0/60473300-0bdc-4e89-87d9-28c8d7b4d83d.jpg?1562787158"}, "mana_cost": "{1}{B}", "cmc": 2.0, "type_line": "Sorcery", "oracle_text": "Destroy target creature with power 2 or less.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "7e72625f-f320-4552-a719-d11e2f1853bd", "set": "dtk", "set_name": "Dragons of Tarkir", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/7e72625f-f320-4552-a719-d11e2f1853bd", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Adtk&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/dtk?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/60473300-0bdc-4e89-87d9-28c8d7b4d83d/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A21645448-ecbd-4036-b9ed-47cd903079e4&unique=prints", "collector_number": "97", "digital": false, "rarity": "common", "flavor_text": "\"Wars are decided one life at a time.\"\n\u2014Gvar Barzeel, Kolaghan warrior", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Dave Kendall", "artist_ids": ["8a5540a8-18c9-4fa9-802c-59d6866114d5"], "illustration_id": "652bf25b-dc73-4c3b-86b2-b29a0c4e1654", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 19847, "prices": {"usd": "0.02", "usd_foil": "0.26", "usd_etched": null, "eur": "0.05", "eur_foil": "0.05", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=394534", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Defeat&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Defeat&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Defeat"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/96670?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Defeat&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/56020?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "85e4e1b5-77d6-4af4-b22e-6f6b4d129f5d", "oracle_id": "274c2781-f40a-49b4-a039-669739beaab6", "multiverse_ids": [513489], "mtgo_id": 88501, "arena_id": 76405, "tcgplayer_id": 235668, "cardmarket_id": 557483, "name": "Defend the Campus", "lang": "en", "released_at": "2021-04-23", "uri": "https://api.scryfall.com/cards/85e4e1b5-77d6-4af4-b22e-6f6b4d129f5d", "scryfall_uri": "https://scryfall.com/card/stx/12/defend-the-campus?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/8/5/85e4e1b5-77d6-4af4-b22e-6f6b4d129f5d.jpg?1624589309", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/5/85e4e1b5-77d6-4af4-b22e-6f6b4d129f5d.jpg?1624589309", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/8/5/85e4e1b5-77d6-4af4-b22e-6f6b4d129f5d.jpg?1624589309", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/8/5/85e4e1b5-77d6-4af4-b22e-6f6b4d129f5d.png?1624589309", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/5/85e4e1b5-77d6-4af4-b22e-6f6b4d129f5d.jpg?1624589309", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/8/5/85e4e1b5-77d6-4af4-b22e-6f6b4d129f5d.jpg?1624589309"}, "mana_cost": "{3}{W}", "cmc": 4.0, "type_line": "Instant", "oracle_text": "Choose one \u2014\n\u2022 Creatures you control get +1/+1 until end of turn.\n\u2022 Destroy target creature with power 4 or greater.", "colors": ["W"], "color_identity": ["W"], "keywords": [], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "541c3c28-8747-40e5-a231-8e8f33234859", "set": "stx", "set_name": "Strixhaven: School of Mages", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/541c3c28-8747-40e5-a231-8e8f33234859", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Astx&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/stx?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/85e4e1b5-77d6-4af4-b22e-6f6b4d129f5d/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A274c2781-f40a-49b4-a039-669739beaab6&unique=prints", "collector_number": "12", "digital": false, "rarity": "common", "flavor_text": "Professors scrambled to push the mage hunters back, leaving the heart of Strixhaven undefended.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Izzy", "artist_ids": ["2c3d2473-ff5d-4309-8194-e0b2def2ab65"], "illustration_id": "9244a3c7-47c6-43d9-b3a1-66c6d8f296bf", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": true, "edhrec_rank": 15103, "penny_rank": 11329, "preview": {"source": "LordTupperware", "source_uri": "https://twitter.com/lordtupperware/status/1376931035833892866", "previewed_at": "2021-03-30"}, "prices": {"usd": "0.01", "usd_foil": "0.02", "usd_etched": null, "eur": "0.02", "eur_foil": "0.10", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=513489", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Defend+the+Campus&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Defend+the+Campus&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Defend+the+Campus"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/235668?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Defend+the+Campus&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/88501?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "df3abdcc-83a8-45c3-9bfd-23f929705018", "oracle_id": "caf840e8-c1d3-4570-8542-432a765c09ff", "multiverse_ids": [534865], "mtgo_id": 93144, "arena_id": 78436, "tcgplayer_id": 247861, "cardmarket_id": 574750, "name": "Defenestrate", "lang": "en", "released_at": "2021-09-24", "uri": "https://api.scryfall.com/cards/df3abdcc-83a8-45c3-9bfd-23f929705018", "scryfall_uri": "https://scryfall.com/card/mid/95/defenestrate?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/d/f/df3abdcc-83a8-45c3-9bfd-23f929705018.jpg?1634349688", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/f/df3abdcc-83a8-45c3-9bfd-23f929705018.jpg?1634349688", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/d/f/df3abdcc-83a8-45c3-9bfd-23f929705018.jpg?1634349688", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/d/f/df3abdcc-83a8-45c3-9bfd-23f929705018.png?1634349688", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/f/df3abdcc-83a8-45c3-9bfd-23f929705018.jpg?1634349688", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/d/f/df3abdcc-83a8-45c3-9bfd-23f929705018.jpg?1634349688"}, "mana_cost": "{2}{B}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Destroy target creature without flying.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "44b8eb8f-fa23-401a-98b5-1fbb9871128e", "set": "mid", "set_name": "Innistrad: Midnight Hunt", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/44b8eb8f-fa23-401a-98b5-1fbb9871128e", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Amid&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/mid?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/df3abdcc-83a8-45c3-9bfd-23f929705018/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Acaf840e8-c1d3-4570-8542-432a765c09ff&unique=prints", "collector_number": "95", "digital": false, "rarity": "common", "flavor_text": "The chaplain would perhaps have found some small comfort had he known that the replacement window would be named in his honor.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Darek Zabrocki", "artist_ids": ["904ed2e7-9850-4472-802f-2657c53dd4d8"], "illustration_id": "a611b9ac-d839-41d9-bba6-7ab15318428c", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 10932, "preview": {"source": "Wizards of the Coast", "source_uri": "", "previewed_at": "2021-09-02"}, "prices": {"usd": "0.01", "usd_foil": "0.02", "usd_etched": null, "eur": "0.02", "eur_foil": "0.02", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=534865", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Defenestrate&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Defenestrate&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Defenestrate"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/247861?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Defenestrate&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/93144?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "98c80584-b7b5-4dcd-8a00-812b9dd9b1b9", "oracle_id": "9086d8ff-e375-4149-996d-2a88a7596c1c", "multiverse_ids": [50210], "mtgo_id": 20748, "mtgo_foil_id": 20749, "tcgplayer_id": 11840, "cardmarket_id": 542, "name": "Devour in Shadow", "lang": "en", "released_at": "2004-06-04", "uri": "https://api.scryfall.com/cards/98c80584-b7b5-4dcd-8a00-812b9dd9b1b9", "scryfall_uri": "https://scryfall.com/card/5dn/46/devour-in-shadow?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/9/8/98c80584-b7b5-4dcd-8a00-812b9dd9b1b9.jpg?1562878693", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/8/98c80584-b7b5-4dcd-8a00-812b9dd9b1b9.jpg?1562878693", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/9/8/98c80584-b7b5-4dcd-8a00-812b9dd9b1b9.jpg?1562878693", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/9/8/98c80584-b7b5-4dcd-8a00-812b9dd9b1b9.png?1562878693", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/8/98c80584-b7b5-4dcd-8a00-812b9dd9b1b9.jpg?1562878693", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/9/8/98c80584-b7b5-4dcd-8a00-812b9dd9b1b9.jpg?1562878693"}, "mana_cost": "{B}{B}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Destroy target creature. It can't be regenerated. You lose life equal to that creature's toughness.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "e4bc1b87-5476-463c-8640-4c414ecf1763", "set": "5dn", "set_name": "Fifth Dawn", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/e4bc1b87-5476-463c-8640-4c414ecf1763", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3A5dn&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/5dn?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/98c80584-b7b5-4dcd-8a00-812b9dd9b1b9/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A9086d8ff-e375-4149-996d-2a88a7596c1c&unique=prints", "collector_number": "46", "digital": false, "rarity": "uncommon", "flavor_text": "\"Feel the burn of the mists. Master them. They will devour your enemies.\"\n\u2014Geth, keeper of the Vault", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Thomas M. Baxa", "artist_ids": ["ff346569-557d-4043-ae44-97c2c7cabd7d"], "illustration_id": "66b134a8-5f2b-4dcd-b3e0-24635bf28fad", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 9224, "penny_rank": 5401, "prices": {"usd": "0.24", "usd_foil": "4.72", "usd_etched": null, "eur": "0.01", "eur_foil": "0.15", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=50210", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Devour+in+Shadow&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Devour+in+Shadow&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Devour+in+Shadow"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/11840?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Devour+in+Shadow&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/20748?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "f3f4cfa7-8ee4-4a85-9e6a-65a7541f62c1", "oracle_id": "4d99e786-585d-4026-9253-19741fb357de", "multiverse_ids": [366473], "mtgo_id": 47479, "mtgo_foil_id": 47480, "tcgplayer_id": 67393, "cardmarket_id": 259866, "name": "Dimir Charm", "lang": "en", "released_at": "2013-02-01", "uri": "https://api.scryfall.com/cards/f3f4cfa7-8ee4-4a85-9e6a-65a7541f62c1", "scryfall_uri": "https://scryfall.com/card/gtc/154/dimir-charm?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/f/3/f3f4cfa7-8ee4-4a85-9e6a-65a7541f62c1.jpg?1561852231", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/3/f3f4cfa7-8ee4-4a85-9e6a-65a7541f62c1.jpg?1561852231", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/f/3/f3f4cfa7-8ee4-4a85-9e6a-65a7541f62c1.jpg?1561852231", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/f/3/f3f4cfa7-8ee4-4a85-9e6a-65a7541f62c1.png?1561852231", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/3/f3f4cfa7-8ee4-4a85-9e6a-65a7541f62c1.jpg?1561852231", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/f/3/f3f4cfa7-8ee4-4a85-9e6a-65a7541f62c1.jpg?1561852231"}, "mana_cost": "{U}{B}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Choose one \u2014\n\u2022 Counter target sorcery spell.\n\u2022 Destroy target creature with power 2 or less.\n\u2022 Look at the top three cards of target player's library. Put one back and the rest into that player's graveyard.", "colors": ["B", "U"], "color_identity": ["B", "U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "035a05f7-e020-4f50-a141-ed16ba704bd2", "set": "gtc", "set_name": "Gatecrash", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/035a05f7-e020-4f50-a141-ed16ba704bd2", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Agtc&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/gtc?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/f3f4cfa7-8ee4-4a85-9e6a-65a7541f62c1/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A4d99e786-585d-4026-9253-19741fb357de&unique=prints", "collector_number": "154", "digital": false, "rarity": "uncommon", "watermark": "dimir", "flavor_text": "\"Dangerous to recognize. Deadly not to.\"\n\u2014Lazav", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Zoltan Boros", "artist_ids": ["1885e6cb-c827-4896-994e-3d0a027d602f"], "illustration_id": "264faf85-f1a8-4988-b21a-2d5003644315", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 4984, "penny_rank": 681, "prices": {"usd": "0.18", "usd_foil": "0.84", "usd_etched": null, "eur": "0.18", "eur_foil": "2.22", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=366473", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Dimir+Charm&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Dimir+Charm&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Dimir+Charm"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/67393?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Dimir+Charm&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/47479?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "9f6bc1da-3969-4f19-b072-4ed79f906fef", "oracle_id": "4d99e786-585d-4026-9253-19741fb357de", "multiverse_ids": [], "tcgplayer_id": 70918, "cardmarket_id": 263501, "name": "Dimir Charm", "lang": "en", "released_at": "2013-01-01", "uri": "https://api.scryfall.com/cards/9f6bc1da-3969-4f19-b072-4ed79f906fef", "scryfall_uri": "https://scryfall.com/card/f13/8/dimir-charm?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/9/f/9f6bc1da-3969-4f19-b072-4ed79f906fef.jpg?1562497257", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/f/9f6bc1da-3969-4f19-b072-4ed79f906fef.jpg?1562497257", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/9/f/9f6bc1da-3969-4f19-b072-4ed79f906fef.jpg?1562497257", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/9/f/9f6bc1da-3969-4f19-b072-4ed79f906fef.png?1562497257", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/f/9f6bc1da-3969-4f19-b072-4ed79f906fef.jpg?1562497257", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/9/f/9f6bc1da-3969-4f19-b072-4ed79f906fef.jpg?1562497257"}, "mana_cost": "{U}{B}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Choose one \u2014\n\u2022 Counter target sorcery spell.\n\u2022 Destroy target creature with power 2 or less.\n\u2022 Look at the top three cards of target player's library. Put one back and the rest into that player's graveyard.", "colors": ["B", "U"], "color_identity": ["B", "U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": true, "nonfoil": false, "finishes": ["foil"], "oversized": false, "promo": true, "reprint": true, "variation": false, "set_id": "4f0f5416-2f39-4339-8b9a-5454d94a4ca6", "set": "f13", "set_name": "Friday Night Magic 2013", "set_type": "promo", "set_uri": "https://api.scryfall.com/sets/4f0f5416-2f39-4339-8b9a-5454d94a4ca6", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Af13&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/f13?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/9f6bc1da-3969-4f19-b072-4ed79f906fef/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A4d99e786-585d-4026-9253-19741fb357de&unique=prints", "collector_number": "8", "digital": false, "rarity": "rare", "watermark": "dimir", "flavor_text": "\"Dangerous to recognize. Deadly not to.\"\n\u2014Lazav", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Zoltan Boros", "artist_ids": ["1885e6cb-c827-4896-994e-3d0a027d602f"], "illustration_id": "75ecc8d5-1a36-4ace-93f5-a8c3d4cddf5e", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "promo_types": ["tourney", "fnm"], "edhrec_rank": 4984, "penny_rank": 681, "prices": {"usd": null, "usd_foil": "0.50", "usd_etched": null, "eur": null, "eur_foil": "0.22", "tix": null}, "related_uris": {"tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Dimir+Charm&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Dimir+Charm&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Dimir+Charm"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/70918?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Dimir+Charm&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Dimir+Charm&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "c1edb79d-0031-4dc6-8881-f6d1fe4acba2", "oracle_id": "6fa90258-3c9f-4723-880f-31871c0772e0", "multiverse_ids": [87917], "mtgo_id": 22988, "mtgo_foil_id": 22989, "tcgplayer_id": 13257, "cardmarket_id": 13360, "name": "Disembowel", "lang": "en", "released_at": "2005-10-07", "uri": "https://api.scryfall.com/cards/c1edb79d-0031-4dc6-8881-f6d1fe4acba2", "scryfall_uri": "https://scryfall.com/card/rav/85/disembowel?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/c/1/c1edb79d-0031-4dc6-8881-f6d1fe4acba2.jpg?1619741469", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/1/c1edb79d-0031-4dc6-8881-f6d1fe4acba2.jpg?1619741469", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/c/1/c1edb79d-0031-4dc6-8881-f6d1fe4acba2.jpg?1619741469", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/c/1/c1edb79d-0031-4dc6-8881-f6d1fe4acba2.png?1619741469", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/1/c1edb79d-0031-4dc6-8881-f6d1fe4acba2.jpg?1619741469", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/c/1/c1edb79d-0031-4dc6-8881-f6d1fe4acba2.jpg?1619741469"}, "mana_cost": "{X}{B}", "cmc": 1.0, "type_line": "Instant", "oracle_text": "Destroy target creature with mana value X.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "15fccbe8-2825-41ca-9d0a-67aebdf91c4a", "set": "rav", "set_name": "Ravnica: City of Guilds", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/15fccbe8-2825-41ca-9d0a-67aebdf91c4a", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Arav&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/rav?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/c1edb79d-0031-4dc6-8881-f6d1fe4acba2/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A6fa90258-3c9f-4723-880f-31871c0772e0&unique=prints", "collector_number": "85", "digital": false, "rarity": "common", "flavor_text": "\"We thought we found the victim's clothes lumped in the street. As it turned out, it *was* the victim, insides sucked out\u2014just a sack of skin and robes.\"\n\u2014Agrus Kos", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Chengo McFlingers", "artist_ids": ["df700ada-8491-4072-a261-e12b3225986d"], "illustration_id": "db1bd103-c8ac-40ac-b497-ed9328b59876", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 15256, "penny_rank": 13010, "prices": {"usd": "0.13", "usd_foil": "0.25", "usd_etched": null, "eur": "0.15", "eur_foil": "0.42", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=87917", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Disembowel&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Disembowel&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Disembowel"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/13257?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Disembowel&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/22988?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "ed07b708-7232-4b87-b5d9-edaa20a69293", "oracle_id": "3070f997-24f2-471d-af96-a2f3b588198e", "multiverse_ids": [439662], "mtgo_id": 66463, "arena_id": 66627, "tcgplayer_id": 155805, "cardmarket_id": 315359, "name": "Divine Verdict", "lang": "en", "released_at": "2018-01-19", "uri": "https://api.scryfall.com/cards/ed07b708-7232-4b87-b5d9-edaa20a69293", "scryfall_uri": "https://scryfall.com/card/rix/5/divine-verdict?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/e/d/ed07b708-7232-4b87-b5d9-edaa20a69293.jpg?1555039673", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/d/ed07b708-7232-4b87-b5d9-edaa20a69293.jpg?1555039673", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/e/d/ed07b708-7232-4b87-b5d9-edaa20a69293.jpg?1555039673", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/e/d/ed07b708-7232-4b87-b5d9-edaa20a69293.png?1555039673", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/d/ed07b708-7232-4b87-b5d9-edaa20a69293.jpg?1555039673", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/e/d/ed07b708-7232-4b87-b5d9-edaa20a69293.jpg?1555039673"}, "mana_cost": "{3}{W}", "cmc": 4.0, "type_line": "Instant", "oracle_text": "Destroy target attacking or blocking creature.", "colors": ["W"], "color_identity": ["W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "2f7e40fc-772d-4a85-bfdd-01653c41d0fa", "set": "rix", "set_name": "Rivals of Ixalan", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/2f7e40fc-772d-4a85-bfdd-01653c41d0fa", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Arix&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/rix?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/ed07b708-7232-4b87-b5d9-edaa20a69293/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A3070f997-24f2-471d-af96-a2f3b588198e&unique=prints", "collector_number": "5", "digital": false, "rarity": "common", "flavor_text": "Cunning warriors and dim-witted beasts alike fall under the church's harsh judgment.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Slawomir Maniak", "artist_ids": ["d887bc66-2779-416c-a1ff-d8720242063e"], "illustration_id": "a1c4b7e4-94d4-4dc7-b86b-ce27ba0d0d29", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 13805, "penny_rank": 11749, "prices": {"usd": "0.02", "usd_foil": "0.10", "usd_etched": null, "eur": "0.09", "eur_foil": "0.15", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=439662", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Divine+Verdict&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Divine+Verdict&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Divine+Verdict"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/155805?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Divine+Verdict&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/66463?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "79f46ac0-9e2f-4f9f-beee-0a7914475ac1", "oracle_id": "3070f997-24f2-471d-af96-a2f3b588198e", "multiverse_ids": [373648], "mtgo_id": 50148, "mtgo_foil_id": 50149, "tcgplayer_id": 71299, "cardmarket_id": 264190, "name": "Divine Verdict", "lang": "en", "released_at": "2013-09-27", "uri": "https://api.scryfall.com/cards/79f46ac0-9e2f-4f9f-beee-0a7914475ac1", "scryfall_uri": "https://scryfall.com/card/ths/8/divine-verdict?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/7/9/79f46ac0-9e2f-4f9f-beee-0a7914475ac1.jpg?1562820257", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/9/79f46ac0-9e2f-4f9f-beee-0a7914475ac1.jpg?1562820257", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/7/9/79f46ac0-9e2f-4f9f-beee-0a7914475ac1.jpg?1562820257", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/7/9/79f46ac0-9e2f-4f9f-beee-0a7914475ac1.png?1562820257", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/9/79f46ac0-9e2f-4f9f-beee-0a7914475ac1.jpg?1562820257", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/7/9/79f46ac0-9e2f-4f9f-beee-0a7914475ac1.jpg?1562820257"}, "mana_cost": "{3}{W}", "cmc": 4.0, "type_line": "Instant", "oracle_text": "Destroy target attacking or blocking creature.", "colors": ["W"], "color_identity": ["W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "69093d6f-e25a-41a4-8cf5-688d7f11c0fb", "set": "ths", "set_name": "Theros", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/69093d6f-e25a-41a4-8cf5-688d7f11c0fb", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aths&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ths?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/79f46ac0-9e2f-4f9f-beee-0a7914475ac1/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A3070f997-24f2-471d-af96-a2f3b588198e&unique=prints", "collector_number": "8", "digital": false, "rarity": "common", "flavor_text": "The last thing to go through the cyclops's mind was a twelve-ton block of marble.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Raymond Swanland", "artist_ids": ["e956bacc-077d-4c12-b6bc-ba798b718af9"], "illustration_id": "fbe5aca6-112b-4f99-9dc1-a94276d8c95b", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 13805, "penny_rank": 11749, "prices": {"usd": "0.02", "usd_foil": "0.15", "usd_etched": null, "eur": "0.02", "eur_foil": "0.03", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=373648", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Divine+Verdict&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Divine+Verdict&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Divine+Verdict"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/71299?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Divine+Verdict&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/50148?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "48444e14-c73b-47d1-9c55-0ff4dc3c6034", "oracle_id": "3070f997-24f2-471d-af96-a2f3b588198e", "multiverse_ids": [189912], "mtgo_id": 32643, "mtgo_foil_id": 32644, "tcgplayer_id": 32589, "cardmarket_id": 21054, "name": "Divine Verdict", "lang": "en", "released_at": "2009-07-17", "uri": "https://api.scryfall.com/cards/48444e14-c73b-47d1-9c55-0ff4dc3c6034", "scryfall_uri": "https://scryfall.com/card/m10/8/divine-verdict?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/4/8/48444e14-c73b-47d1-9c55-0ff4dc3c6034.jpg?1561978713", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/8/48444e14-c73b-47d1-9c55-0ff4dc3c6034.jpg?1561978713", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/4/8/48444e14-c73b-47d1-9c55-0ff4dc3c6034.jpg?1561978713", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/4/8/48444e14-c73b-47d1-9c55-0ff4dc3c6034.png?1561978713", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/8/48444e14-c73b-47d1-9c55-0ff4dc3c6034.jpg?1561978713", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/4/8/48444e14-c73b-47d1-9c55-0ff4dc3c6034.jpg?1561978713"}, "mana_cost": "{3}{W}", "cmc": 4.0, "type_line": "Instant", "oracle_text": "Destroy target attacking or blocking creature.", "colors": ["W"], "color_identity": ["W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "0dba38a9-6b9d-4768-9831-4e03e8970a0b", "set": "m10", "set_name": "Magic 2010", "set_type": "core", "set_uri": "https://api.scryfall.com/sets/0dba38a9-6b9d-4768-9831-4e03e8970a0b", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Am10&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/m10?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/48444e14-c73b-47d1-9c55-0ff4dc3c6034/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A3070f997-24f2-471d-af96-a2f3b588198e&unique=prints", "collector_number": "8", "digital": false, "rarity": "common", "flavor_text": "Giants and pit spawn attempted to topple the cathedral's pillars. The fine grit of their remains still swirls in the breeze outside.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Kev Walker", "artist_ids": ["f366a0ee-a0cd-466d-ba6a-90058c7a31a6"], "illustration_id": "ca8495dd-5d23-482d-a75c-3008d67cec35", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 13805, "penny_rank": 11749, "prices": {"usd": "0.06", "usd_foil": "0.22", "usd_etched": null, "eur": "0.02", "eur_foil": "0.25", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=189912", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Divine+Verdict&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Divine+Verdict&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Divine+Verdict"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/32589?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Divine+Verdict&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/32643?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "176cdb4b-6ad4-4991-8456-28579640063d", "oracle_id": "59e7f2ae-4535-4191-98be-3e65b6b2befa", "multiverse_ids": [417470], "tcgplayer_id": 122226, "cardmarket_id": 292422, "name": "Doom Blade", "lang": "en", "released_at": "2016-09-02", "uri": "https://api.scryfall.com/cards/176cdb4b-6ad4-4991-8456-28579640063d", "scryfall_uri": "https://scryfall.com/card/ddr/47/doom-blade?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/1/7/176cdb4b-6ad4-4991-8456-28579640063d.jpg?1562229273", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/7/176cdb4b-6ad4-4991-8456-28579640063d.jpg?1562229273", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/1/7/176cdb4b-6ad4-4991-8456-28579640063d.jpg?1562229273", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/1/7/176cdb4b-6ad4-4991-8456-28579640063d.png?1562229273", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/7/176cdb4b-6ad4-4991-8456-28579640063d.jpg?1562229273", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/1/7/176cdb4b-6ad4-4991-8456-28579640063d.jpg?1562229273"}, "mana_cost": "{1}{B}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Destroy target nonblack creature.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "20e10d8d-c2b0-4d3f-942d-28ae9e137c6e", "set": "ddr", "set_name": "Duel Decks: Nissa vs. Ob Nixilis", "set_type": "duel_deck", "set_uri": "https://api.scryfall.com/sets/20e10d8d-c2b0-4d3f-942d-28ae9e137c6e", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Addr&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ddr?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/176cdb4b-6ad4-4991-8456-28579640063d/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A59e7f2ae-4535-4191-98be-3e65b6b2befa&unique=prints", "collector_number": "47", "digital": false, "rarity": "uncommon", "flavor_text": "\"One little word was all it took. The world shook as I said it. The doom of Zendikar was here at last.\"\n\u2014Ob Nixilis", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Raymond Swanland", "artist_ids": ["e956bacc-077d-4c12-b6bc-ba798b718af9"], "illustration_id": "398fefac-cc20-4347-98e8-b0985624b604", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "edhrec_rank": 1102, "penny_rank": 1130, "prices": {"usd": "0.32", "usd_foil": null, "usd_etched": null, "eur": "0.53", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=417470", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Doom+Blade&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Doom+Blade&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Doom+Blade"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/122226?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Doom+Blade&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Doom+Blade&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "6e19acff-f3dd-417a-a9ab-ea3e36c1ba61", "oracle_id": "59e7f2ae-4535-4191-98be-3e65b6b2befa", "multiverse_ids": [190535], "mtgo_id": 32793, "mtgo_foil_id": 32794, "tcgplayer_id": 32591, "cardmarket_id": 21139, "name": "Doom Blade", "lang": "en", "released_at": "2009-07-17", "uri": "https://api.scryfall.com/cards/6e19acff-f3dd-417a-a9ab-ea3e36c1ba61", "scryfall_uri": "https://scryfall.com/card/m10/93/doom-blade?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/6/e/6e19acff-f3dd-417a-a9ab-ea3e36c1ba61.jpg?1561983934", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/e/6e19acff-f3dd-417a-a9ab-ea3e36c1ba61.jpg?1561983934", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/6/e/6e19acff-f3dd-417a-a9ab-ea3e36c1ba61.jpg?1561983934", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/6/e/6e19acff-f3dd-417a-a9ab-ea3e36c1ba61.png?1561983934", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/e/6e19acff-f3dd-417a-a9ab-ea3e36c1ba61.jpg?1561983934", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/6/e/6e19acff-f3dd-417a-a9ab-ea3e36c1ba61.jpg?1561983934"}, "mana_cost": "{1}{B}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Destroy target nonblack creature.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "0dba38a9-6b9d-4768-9831-4e03e8970a0b", "set": "m10", "set_name": "Magic 2010", "set_type": "core", "set_uri": "https://api.scryfall.com/sets/0dba38a9-6b9d-4768-9831-4e03e8970a0b", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Am10&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/m10?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/6e19acff-f3dd-417a-a9ab-ea3e36c1ba61/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A59e7f2ae-4535-4191-98be-3e65b6b2befa&unique=prints", "collector_number": "93", "digital": false, "rarity": "common", "flavor_text": "The void is without substance but cuts like steel.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Chippy", "artist_ids": ["a36f01a0-e51a-48b2-a556-b9b3bc73f969"], "illustration_id": "4900e1df-a2f0-4a0a-82bc-96243dc7a924", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 1102, "penny_rank": 1130, "prices": {"usd": "0.20", "usd_foil": "1.94", "usd_etched": null, "eur": "0.12", "eur_foil": "1.60", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=190535", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Doom+Blade&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Doom+Blade&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Doom+Blade"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/32591?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Doom+Blade&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/32793?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "7e6c0fe2-a82b-42cb-8629-b9f00b7f08e9", "oracle_id": "59e7f2ae-4535-4191-98be-3e65b6b2befa", "multiverse_ids": [517578], "mtgo_id": 89113, "arena_id": 77507, "tcgplayer_id": 235308, "tcgplayer_etched_id": 235305, "cardmarket_id": 556520, "name": "Doom Blade", "lang": "en", "released_at": "2021-04-23", "uri": "https://api.scryfall.com/cards/7e6c0fe2-a82b-42cb-8629-b9f00b7f08e9", "scryfall_uri": "https://scryfall.com/card/sta/28/doom-blade?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/7/e/7e6c0fe2-a82b-42cb-8629-b9f00b7f08e9.jpg?1623780045", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/e/7e6c0fe2-a82b-42cb-8629-b9f00b7f08e9.jpg?1623780045", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/7/e/7e6c0fe2-a82b-42cb-8629-b9f00b7f08e9.jpg?1623780045", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/7/e/7e6c0fe2-a82b-42cb-8629-b9f00b7f08e9.png?1623780045", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/e/7e6c0fe2-a82b-42cb-8629-b9f00b7f08e9.jpg?1623780045", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/7/e/7e6c0fe2-a82b-42cb-8629-b9f00b7f08e9.jpg?1623780045"}, "mana_cost": "{1}{B}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Destroy target nonblack creature.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil", "etched"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "5064a720-907f-4cb6-a425-766dc1dd7374", "set": "sta", "set_name": "Strixhaven Mystical Archive", "set_type": "masterpiece", "set_uri": "https://api.scryfall.com/sets/5064a720-907f-4cb6-a425-766dc1dd7374", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Asta&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/sta?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/7e6c0fe2-a82b-42cb-8629-b9f00b7f08e9/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A59e7f2ae-4535-4191-98be-3e65b6b2befa&unique=prints", "collector_number": "28", "digital": false, "rarity": "rare", "flavor_text": "\"An angel can shine like the sun, inspire the weak, and even threaten victory over darkness. But in the end it matters not, for it still dies like any other pest.\"\n\u2014Ob Nixilis", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Matthew G. Lewis", "artist_ids": ["0b468a19-5726-4635-a918-e4418a67f02a"], "illustration_id": "b15b8108-ecf7-4868-9c3b-a701f88de57c", "border_color": "borderless", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "edhrec_rank": 1102, "penny_rank": 1130, "prices": {"usd": "0.23", "usd_foil": "0.64", "usd_etched": "0.81", "eur": "0.35", "eur_foil": "0.76", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=517578", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Doom+Blade&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Doom+Blade&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Doom+Blade"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/235308?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Doom+Blade&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/89113?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "37468ade-27b1-4128-9a62-1293ec2aab41", "oracle_id": "59e7f2ae-4535-4191-98be-3e65b6b2befa", "multiverse_ids": [], "tcgplayer_id": 38307, "cardmarket_id": 242594, "name": "Doom Blade", "lang": "en", "released_at": "2011-01-01", "uri": "https://api.scryfall.com/cards/37468ade-27b1-4128-9a62-1293ec2aab41", "scryfall_uri": "https://scryfall.com/card/p11/3/doom-blade?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/3/7/37468ade-27b1-4128-9a62-1293ec2aab41.jpg?1561756922", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/7/37468ade-27b1-4128-9a62-1293ec2aab41.jpg?1561756922", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/3/7/37468ade-27b1-4128-9a62-1293ec2aab41.jpg?1561756922", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/3/7/37468ade-27b1-4128-9a62-1293ec2aab41.png?1561756922", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/7/37468ade-27b1-4128-9a62-1293ec2aab41.jpg?1561756922", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/3/7/37468ade-27b1-4128-9a62-1293ec2aab41.jpg?1561756922"}, "mana_cost": "{1}{B}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Destroy target nonblack creature.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": true, "reprint": true, "variation": false, "set_id": "ba0f80c9-7a21-425b-8a02-cb17c2a50e36", "set": "p11", "set_name": "Magic Player Rewards 2011", "set_type": "promo", "set_uri": "https://api.scryfall.com/sets/ba0f80c9-7a21-425b-8a02-cb17c2a50e36", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ap11&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/p11?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/37468ade-27b1-4128-9a62-1293ec2aab41/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A59e7f2ae-4535-4191-98be-3e65b6b2befa&unique=prints", "collector_number": "3", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Carl Critchlow", "artist_ids": ["17948f16-611a-44b8-8d10-9895a0bdfff1"], "illustration_id": "43ac36d0-46c0-4fa5-8c5e-51dc8f7099e0", "border_color": "black", "frame": "2003", "full_art": true, "textless": true, "booster": false, "story_spotlight": false, "promo_types": ["playerrewards"], "edhrec_rank": 1102, "penny_rank": 1130, "prices": {"usd": "2.59", "usd_foil": null, "usd_etched": null, "eur": "0.99", "eur_foil": null, "tix": null}, "related_uris": {"tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Doom+Blade&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Doom+Blade&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Doom+Blade"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/38307?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Doom+Blade&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Doom+Blade&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "91852444-9361-4588-a44f-fb90ba1b30e5", "oracle_id": "746dc1d8-f245-47be-abd5-50ca6ac0d1af", "multiverse_ids": [476340], "mtgo_id": 79302, "arena_id": 70600, "tcgplayer_id": 206697, "cardmarket_id": 430464, "name": "Drag to the Underworld", "lang": "en", "released_at": "2020-01-24", "uri": "https://api.scryfall.com/cards/91852444-9361-4588-a44f-fb90ba1b30e5", "scryfall_uri": "https://scryfall.com/card/thb/89/drag-to-the-underworld?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/9/1/91852444-9361-4588-a44f-fb90ba1b30e5.jpg?1581479732", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/1/91852444-9361-4588-a44f-fb90ba1b30e5.jpg?1581479732", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/9/1/91852444-9361-4588-a44f-fb90ba1b30e5.jpg?1581479732", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/9/1/91852444-9361-4588-a44f-fb90ba1b30e5.png?1581479732", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/1/91852444-9361-4588-a44f-fb90ba1b30e5.jpg?1581479732", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/9/1/91852444-9361-4588-a44f-fb90ba1b30e5.jpg?1581479732"}, "mana_cost": "{2}{B}{B}", "cmc": 4.0, "type_line": "Instant", "oracle_text": "This spell costs {X} less to cast, where X is your devotion to black. (Each {B} in the mana costs of permanents you control counts toward your devotion to black.)\nDestroy target creature.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "5f23a78d-cda1-462a-8be3-a62b40c34913", "set": "thb", "set_name": "Theros Beyond Death", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/5f23a78d-cda1-462a-8be3-a62b40c34913", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Athb&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/thb?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/91852444-9361-4588-a44f-fb90ba1b30e5/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A746dc1d8-f245-47be-abd5-50ca6ac0d1af&unique=prints", "collector_number": "89", "digital": false, "rarity": "uncommon", "flavor_text": "The more you struggle against death, the tighter its grip becomes.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Victor Adame Minguez", "artist_ids": ["bd8f7368-5b10-4554-b6b8-d052c6aca89f"], "illustration_id": "50cf06fa-3f65-403f-88ba-91a411a392fc", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 3740, "penny_rank": 1778, "preview": {"source": "Card Kingdom", "source_uri": "https://twitter.com/Card_Kingdom/status/1212818362381881344", "previewed_at": "2020-01-02"}, "prices": {"usd": "0.14", "usd_foil": "0.19", "usd_etched": null, "eur": "0.10", "eur_foil": "0.10", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=476340", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Drag+to+the+Underworld&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Drag+to+the+Underworld&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Drag+to+the+Underworld"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/206697?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Drag+to+the+Underworld&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/79302?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "a83945c6-4dc6-4d9a-9bc2-2d4a264e5422", "oracle_id": "d685799f-cc1a-40d6-9df6-d05b8b1f5b13", "multiverse_ids": [270354], "mtgo_id": 46443, "mtgo_foil_id": 46444, "tcgplayer_id": 66396, "cardmarket_id": 258207, "name": "Dreadbore", "lang": "en", "released_at": "2012-10-05", "uri": "https://api.scryfall.com/cards/a83945c6-4dc6-4d9a-9bc2-2d4a264e5422", "scryfall_uri": "https://scryfall.com/card/rtr/157/dreadbore?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/a/8/a83945c6-4dc6-4d9a-9bc2-2d4a264e5422.jpg?1562791208", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/8/a83945c6-4dc6-4d9a-9bc2-2d4a264e5422.jpg?1562791208", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/a/8/a83945c6-4dc6-4d9a-9bc2-2d4a264e5422.jpg?1562791208", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/a/8/a83945c6-4dc6-4d9a-9bc2-2d4a264e5422.png?1562791208", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/8/a83945c6-4dc6-4d9a-9bc2-2d4a264e5422.jpg?1562791208", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/a/8/a83945c6-4dc6-4d9a-9bc2-2d4a264e5422.jpg?1562791208"}, "mana_cost": "{B}{R}", "cmc": 2.0, "type_line": "Sorcery", "oracle_text": "Destroy target creature or planeswalker.", "colors": ["B", "R"], "color_identity": ["B", "R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "80b2374d-c5f1-403e-9772-f6c806fd275e", "set": "rtr", "set_name": "Return to Ravnica", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/80b2374d-c5f1-403e-9772-f6c806fd275e", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Artr&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/rtr?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/a83945c6-4dc6-4d9a-9bc2-2d4a264e5422/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ad685799f-cc1a-40d6-9df6-d05b8b1f5b13&unique=prints", "collector_number": "157", "digital": false, "rarity": "rare", "watermark": "rakdos", "flavor_text": "In Rakdos-controlled neighborhoods, everyone is part of the show.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Wayne Reynolds", "artist_ids": ["afc47cec-3ccc-404e-a8c6-4d83dd504271"], "illustration_id": "7dbc5e1f-3f14-4176-b35f-b49d2aa1047b", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 1727, "penny_rank": 361, "prices": {"usd": "6.10", "usd_foil": "9.09", "usd_etched": null, "eur": "3.88", "eur_foil": "7.94", "tix": "0.23"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=270354", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Dreadbore&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Dreadbore&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Dreadbore"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/66396?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Dreadbore&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/46443?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "8bf5df5b-164d-4ec2-a5e6-bbaea152e271", "oracle_id": "0f264e5b-264e-4e97-9a8d-8ae1d6a286ce", "multiverse_ids": [473150], "mtgo_id": 78520, "arena_id": 70335, "tcgplayer_id": 199207, "cardmarket_id": 401119, "name": "Drown in the Loch", "lang": "en", "released_at": "2019-10-04", "uri": "https://api.scryfall.com/cards/8bf5df5b-164d-4ec2-a5e6-bbaea152e271", "scryfall_uri": "https://scryfall.com/card/eld/188/drown-in-the-loch?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/8/b/8bf5df5b-164d-4ec2-a5e6-bbaea152e271.jpg?1572490739", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/b/8bf5df5b-164d-4ec2-a5e6-bbaea152e271.jpg?1572490739", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/8/b/8bf5df5b-164d-4ec2-a5e6-bbaea152e271.jpg?1572490739", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/8/b/8bf5df5b-164d-4ec2-a5e6-bbaea152e271.png?1572490739", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/b/8bf5df5b-164d-4ec2-a5e6-bbaea152e271.jpg?1572490739", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/8/b/8bf5df5b-164d-4ec2-a5e6-bbaea152e271.jpg?1572490739"}, "mana_cost": "{U}{B}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Choose one \u2014\n\u2022 Counter target spell with mana value less than or equal to the number of cards in its controller's graveyard.\n\u2022 Destroy target creature with mana value less than or equal to the number of cards in its controller's graveyard.", "colors": ["B", "U"], "color_identity": ["B", "U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "a90a7b2f-9dd8-4fc7-9f7d-8ea2797ec782", "set": "eld", "set_name": "Throne of Eldraine", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/a90a7b2f-9dd8-4fc7-9f7d-8ea2797ec782", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aeld&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/eld?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/8bf5df5b-164d-4ec2-a5e6-bbaea152e271/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A0f264e5b-264e-4e97-9a8d-8ae1d6a286ce&unique=prints", "collector_number": "188", "digital": false, "rarity": "uncommon", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "John Stanko", "artist_ids": ["b0f038a0-73b5-4806-918e-9cd11b5f92e1"], "illustration_id": "71af5c85-3c42-41eb-abf6-441003d73ecf", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 670, "penny_rank": 84, "preview": {"source": "Carlos Rom\u00e3o", "source_uri": "https://twitter.com/Jabsmtg/status/1173564674920656896", "previewed_at": "2019-09-16"}, "prices": {"usd": "1.71", "usd_foil": "5.09", "usd_etched": null, "eur": "1.38", "eur_foil": "7.00", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=473150", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Drown+in+the+Loch&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Drown+in+the+Loch&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Drown+in+the+Loch"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/199207?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Drown+in+the+Loch&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/78520?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "01acd1c1-86b2-4423-9ba7-5b9725c0514f", "oracle_id": "0f264e5b-264e-4e97-9a8d-8ae1d6a286ce", "multiverse_ids": [], "mtgo_id": 89911, "tcgplayer_id": 237603, "cardmarket_id": 575337, "name": "Drown in the Loch", "lang": "en", "released_at": "2021-04-26", "uri": "https://api.scryfall.com/cards/01acd1c1-86b2-4423-9ba7-5b9725c0514f", "scryfall_uri": "https://scryfall.com/card/sld/270/drown-in-the-loch?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/0/1/01acd1c1-86b2-4423-9ba7-5b9725c0514f.jpg?1640249448", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/1/01acd1c1-86b2-4423-9ba7-5b9725c0514f.jpg?1640249448", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/0/1/01acd1c1-86b2-4423-9ba7-5b9725c0514f.jpg?1640249448", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/0/1/01acd1c1-86b2-4423-9ba7-5b9725c0514f.png?1640249448", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/1/01acd1c1-86b2-4423-9ba7-5b9725c0514f.jpg?1640249448", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/0/1/01acd1c1-86b2-4423-9ba7-5b9725c0514f.jpg?1640249448"}, "mana_cost": "{U}{B}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Choose one \u2014\n\u2022 Counter target spell with mana value less than or equal to the number of cards in its controller's graveyard.\n\u2022 Destroy target creature with mana value less than or equal to the number of cards in its controller's graveyard.", "colors": ["B", "U"], "color_identity": ["B", "U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "4d92a8a7-ccb0-437d-abdc-9d70fc5ed672", "set": "sld", "set_name": "Secret Lair Drop", "set_type": "box", "set_uri": "https://api.scryfall.com/sets/4d92a8a7-ccb0-437d-abdc-9d70fc5ed672", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Asld&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/sld?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/01acd1c1-86b2-4423-9ba7-5b9725c0514f/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A0f264e5b-264e-4e97-9a8d-8ae1d6a286ce&unique=prints", "collector_number": "270", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Anato Finnstark", "artist_ids": ["05d233e7-4958-4f79-83e6-f9bf8b6ff78e"], "illustration_id": "b42d6b40-0752-4804-8a66-68d980179698", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "edhrec_rank": 670, "penny_rank": 84, "prices": {"usd": "25.33", "usd_foil": "27.32", "usd_etched": null, "eur": "24.99", "eur_foil": "34.00", "tix": "1.48"}, "related_uris": {"tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Drown+in+the+Loch&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Drown+in+the+Loch&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Drown+in+the+Loch"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/237603?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Drown+in+the+Loch&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/89911?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "fa5b9b30-4950-4c9c-9ce8-6d271bb7aa01", "oracle_id": "609db174-fdd9-40ee-af72-d75c10b23fc6", "multiverse_ids": [73943], "tcgplayer_id": 37846, "cardmarket_id": 14815, "name": "Duh", "lang": "en", "released_at": "2004-11-19", "uri": "https://api.scryfall.com/cards/fa5b9b30-4950-4c9c-9ce8-6d271bb7aa01", "scryfall_uri": "https://scryfall.com/card/unh/52/duh?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/f/a/fa5b9b30-4950-4c9c-9ce8-6d271bb7aa01.jpg?1562489857", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/a/fa5b9b30-4950-4c9c-9ce8-6d271bb7aa01.jpg?1562489857", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/f/a/fa5b9b30-4950-4c9c-9ce8-6d271bb7aa01.jpg?1562489857", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/f/a/fa5b9b30-4950-4c9c-9ce8-6d271bb7aa01.png?1562489857", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/a/fa5b9b30-4950-4c9c-9ce8-6d271bb7aa01.jpg?1562489857", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/f/a/fa5b9b30-4950-4c9c-9ce8-6d271bb7aa01.jpg?1562489857"}, "mana_cost": "{B}", "cmc": 1.0, "type_line": "Instant", "oracle_text": "Destroy target creature with reminder text. (Reminder text is any italicized text in parentheses that explains rules you already know.)", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "not_legal", "pauper": "not_legal", "vintage": "not_legal", "penny": "not_legal", "commander": "not_legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "not_legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "4c8bc76a-05a5-43db-aaf0-34deb347b871", "set": "unh", "set_name": "Unhinged", "set_type": "funny", "set_uri": "https://api.scryfall.com/sets/4c8bc76a-05a5-43db-aaf0-34deb347b871", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aunh&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/unh?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/fa5b9b30-4950-4c9c-9ce8-6d271bb7aa01/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A609db174-fdd9-40ee-af72-d75c10b23fc6&unique=prints", "collector_number": "52", "digital": false, "rarity": "common", "flavor_text": "Will players understand that the creature is being crushed by two parentheses? Not a chance.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Dave Dorman", "artist_ids": ["9235458b-ce92-45bd-a430-a72ecd8e6176"], "illustration_id": "52198d03-bef0-43e3-96e3-aef0f39fe8a2", "border_color": "silver", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "prices": {"usd": "0.17", "usd_foil": "3.15", "usd_etched": null, "eur": "0.50", "eur_foil": "1.44", "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=73943", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Duh&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Duh&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Duh"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/37846?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Duh&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Duh&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "312fb6e4-1eb1-4fbb-b7a4-125829a6e96a", "oracle_id": "b783246a-e00b-4cdf-9111-fe0afb896a8e", "multiverse_ids": [479607], "mtgo_id": 80183, "arena_id": 71154, "tcgplayer_id": 212684, "cardmarket_id": 454973, "name": "Easy Prey", "lang": "en", "released_at": "2020-04-24", "uri": "https://api.scryfall.com/cards/312fb6e4-1eb1-4fbb-b7a4-125829a6e96a", "scryfall_uri": "https://scryfall.com/card/iko/87/easy-prey?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/3/1/312fb6e4-1eb1-4fbb-b7a4-125829a6e96a.jpg?1591226769", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/1/312fb6e4-1eb1-4fbb-b7a4-125829a6e96a.jpg?1591226769", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/3/1/312fb6e4-1eb1-4fbb-b7a4-125829a6e96a.jpg?1591226769", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/3/1/312fb6e4-1eb1-4fbb-b7a4-125829a6e96a.png?1591226769", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/1/312fb6e4-1eb1-4fbb-b7a4-125829a6e96a.jpg?1591226769", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/3/1/312fb6e4-1eb1-4fbb-b7a4-125829a6e96a.jpg?1591226769"}, "mana_cost": "{1}{B}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Destroy target creature with mana value 2 or less.\nCycling {2} ({2}, Discard this card: Draw a card.)", "colors": ["B"], "color_identity": ["B"], "keywords": ["Cycling"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "19feda43-15ab-427e-a0e4-148a4bf2b03a", "set": "iko", "set_name": "Ikoria: Lair of Behemoths", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/19feda43-15ab-427e-a0e4-148a4bf2b03a", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aiko&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/iko?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/312fb6e4-1eb1-4fbb-b7a4-125829a6e96a/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ab783246a-e00b-4cdf-9111-fe0afb896a8e&unique=prints", "collector_number": "87", "digital": false, "rarity": "uncommon", "flavor_text": "The definition of \"bite-sized treat\" depends on who you ask.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Ekaterina Burmak", "artist_ids": ["2a9f3780-fcc8-4ec5-b403-ee1d1370d3b4"], "illustration_id": "1372545c-665d-4c0e-9080-b08bf36cb533", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 13492, "penny_rank": 786, "preview": {"source": "Ladee Danger", "source_uri": "https://twitter.com/Brttnymchlle/status/1248348074042257408", "previewed_at": "2020-04-09"}, "prices": {"usd": "0.03", "usd_foil": "0.09", "usd_etched": null, "eur": "0.03", "eur_foil": "0.15", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=479607", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Easy+Prey&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Easy+Prey&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Easy+Prey"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/212684?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Easy+Prey&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/80183?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "0efea1b1-f212-4b97-98dd-922f85ab191f", "oracle_id": "d4c04cec-3a0d-4e86-95ed-8d367fe7220d", "multiverse_ids": [270987], "mtgo_id": 44177, "mtgo_foil_id": 44178, "tcgplayer_id": 58965, "cardmarket_id": 254726, "name": "Eaten by Spiders", "lang": "en", "released_at": "2012-05-04", "uri": "https://api.scryfall.com/cards/0efea1b1-f212-4b97-98dd-922f85ab191f", "scryfall_uri": "https://scryfall.com/card/avr/177/eaten-by-spiders?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/0/e/0efea1b1-f212-4b97-98dd-922f85ab191f.jpg?1592709344", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/e/0efea1b1-f212-4b97-98dd-922f85ab191f.jpg?1592709344", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/0/e/0efea1b1-f212-4b97-98dd-922f85ab191f.jpg?1592709344", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/0/e/0efea1b1-f212-4b97-98dd-922f85ab191f.png?1592709344", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/e/0efea1b1-f212-4b97-98dd-922f85ab191f.jpg?1592709344", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/0/e/0efea1b1-f212-4b97-98dd-922f85ab191f.jpg?1592709344"}, "mana_cost": "{2}{G}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Destroy target creature with flying and all Equipment attached to that creature.", "colors": ["G"], "color_identity": ["G"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "039810a9-92d7-4f2d-b2d0-ca661ac586c0", "set": "avr", "set_name": "Avacyn Restored", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/039810a9-92d7-4f2d-b2d0-ca661ac586c0", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aavr&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/avr?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/0efea1b1-f212-4b97-98dd-922f85ab191f/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ad4c04cec-3a0d-4e86-95ed-8d367fe7220d&unique=prints", "collector_number": "177", "digital": false, "rarity": "uncommon", "flavor_text": "After sampling many victims, the spider developed a preference for the undead and their accoutrements.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Slawomir Maniak", "artist_ids": ["d887bc66-2779-416c-a1ff-d8720242063e"], "illustration_id": "ecfed3f7-99ad-45c5-a907-54d5696fe819", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 14464, "prices": {"usd": "0.14", "usd_foil": "0.24", "usd_etched": null, "eur": "0.10", "eur_foil": "0.20", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=270987", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Eaten+by+Spiders&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Eaten+by+Spiders&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Eaten+by+Spiders"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/58965?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Eaten+by+Spiders&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/44177?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "cc8c377a-82c4-46ee-94c2-b970160a3205", "oracle_id": "9097457c-ceb3-4944-8f01-c28ddefbb270", "multiverse_ids": [10553], "tcgplayer_id": 452, "cardmarket_id": 11195, "name": "Eightfold Maze", "lang": "en", "released_at": "1999-07-06", "uri": "https://api.scryfall.com/cards/cc8c377a-82c4-46ee-94c2-b970160a3205", "scryfall_uri": "https://scryfall.com/card/ptk/2/eightfold-maze?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/c/c/cc8c377a-82c4-46ee-94c2-b970160a3205.jpg?1562257975", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/c/cc8c377a-82c4-46ee-94c2-b970160a3205.jpg?1562257975", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/c/c/cc8c377a-82c4-46ee-94c2-b970160a3205.jpg?1562257975", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/c/c/cc8c377a-82c4-46ee-94c2-b970160a3205.png?1562257975", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/c/cc8c377a-82c4-46ee-94c2-b970160a3205.jpg?1562257975", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/c/c/cc8c377a-82c4-46ee-94c2-b970160a3205.jpg?1562257975"}, "mana_cost": "{2}{W}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Cast this spell only during the declare attackers step and only if you've been attacked this step.\nDestroy target attacking creature.", "colors": ["W"], "color_identity": ["W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "2676ff2e-9d86-4b5b-b935-e84e41b0755e", "set": "ptk", "set_name": "Portal Three Kingdoms", "set_type": "starter", "set_uri": "https://api.scryfall.com/sets/2676ff2e-9d86-4b5b-b935-e84e41b0755e", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aptk&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ptk?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/cc8c377a-82c4-46ee-94c2-b970160a3205/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A9097457c-ceb3-4944-8f01-c28ddefbb270&unique=prints", "collector_number": "2", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Shang Huitong", "artist_ids": ["a3a377b1-0ffa-4fb8-b4b6-27bac42c29a1"], "illustration_id": "0d276fc2-3c34-4f16-ac3f-8b20d29d17c6", "border_color": "white", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 22782, "prices": {"usd": null, "usd_foil": null, "usd_etched": null, "eur": "10.09", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=10553", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Eightfold+Maze&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Eightfold+Maze&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Eightfold+Maze"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/452?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Eightfold+Maze&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Eightfold+Maze&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "f8eb4087-3a4c-4de8-8e29-f4cd71acb180", "oracle_id": "cf307f81-488c-4df5-8b08-ba46e3e7f3d9", "multiverse_ids": [485420], "mtgo_id": 81421, "arena_id": 71879, "tcgplayer_id": 215516, "cardmarket_id": 467784, "name": "Eliminate", "lang": "en", "released_at": "2020-07-03", "uri": "https://api.scryfall.com/cards/f8eb4087-3a4c-4de8-8e29-f4cd71acb180", "scryfall_uri": "https://scryfall.com/card/m21/97/eliminate?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/f/8/f8eb4087-3a4c-4de8-8e29-f4cd71acb180.jpg?1594736106", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/8/f8eb4087-3a4c-4de8-8e29-f4cd71acb180.jpg?1594736106", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/f/8/f8eb4087-3a4c-4de8-8e29-f4cd71acb180.jpg?1594736106", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/f/8/f8eb4087-3a4c-4de8-8e29-f4cd71acb180.png?1594736106", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/8/f8eb4087-3a4c-4de8-8e29-f4cd71acb180.jpg?1594736106", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/f/8/f8eb4087-3a4c-4de8-8e29-f4cd71acb180.jpg?1594736106"}, "mana_cost": "{1}{B}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Destroy target creature or planeswalker with mana value 3 or less.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "bc94aba1-7376-4e02-a12d-3a2efb66ab0f", "set": "m21", "set_name": "Core Set 2021", "set_type": "core", "set_uri": "https://api.scryfall.com/sets/bc94aba1-7376-4e02-a12d-3a2efb66ab0f", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Am21&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/m21?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/f8eb4087-3a4c-4de8-8e29-f4cd71acb180/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Acf307f81-488c-4df5-8b08-ba46e3e7f3d9&unique=prints", "collector_number": "97", "digital": false, "rarity": "uncommon", "flavor_text": "\"Cruelty? No. This is necessity.\"\n\u2014Kaervek", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Chris Cold", "artist_ids": ["2622d22b-3fd8-4831-9b2b-adc5fac01b85"], "illustration_id": "02bc450d-701d-459a-8117-6d6cdff04952", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 5293, "penny_rank": 1351, "preview": {"source": "LigaMagic", "source_uri": "https://twitter.com/ligamagicbr/status/1268936338662973449", "previewed_at": "2020-06-05"}, "prices": {"usd": "0.04", "usd_foil": "0.17", "usd_etched": null, "eur": "0.09", "eur_foil": "0.09", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=485420", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Eliminate&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Eliminate&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Eliminate"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/215516?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Eliminate&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/81421?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "c55b2b50-ac83-4a78-8f84-580193d1ca0f", "oracle_id": "cf307f81-488c-4df5-8b08-ba46e3e7f3d9", "multiverse_ids": [517580], "mtgo_id": 89117, "arena_id": 77509, "tcgplayer_id": 235640, "tcgplayer_etched_id": 235641, "cardmarket_id": 556954, "name": "Eliminate", "lang": "en", "released_at": "2021-04-23", "uri": "https://api.scryfall.com/cards/c55b2b50-ac83-4a78-8f84-580193d1ca0f", "scryfall_uri": "https://scryfall.com/card/sta/30/eliminate?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/c/5/c55b2b50-ac83-4a78-8f84-580193d1ca0f.jpg?1623780234", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/5/c55b2b50-ac83-4a78-8f84-580193d1ca0f.jpg?1623780234", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/c/5/c55b2b50-ac83-4a78-8f84-580193d1ca0f.jpg?1623780234", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/c/5/c55b2b50-ac83-4a78-8f84-580193d1ca0f.png?1623780234", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/5/c55b2b50-ac83-4a78-8f84-580193d1ca0f.jpg?1623780234", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/c/5/c55b2b50-ac83-4a78-8f84-580193d1ca0f.jpg?1623780234"}, "mana_cost": "{1}{B}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Destroy target creature or planeswalker with mana value 3 or less.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil", "etched"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "5064a720-907f-4cb6-a425-766dc1dd7374", "set": "sta", "set_name": "Strixhaven Mystical Archive", "set_type": "masterpiece", "set_uri": "https://api.scryfall.com/sets/5064a720-907f-4cb6-a425-766dc1dd7374", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Asta&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/sta?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/c55b2b50-ac83-4a78-8f84-580193d1ca0f/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Acf307f81-488c-4df5-8b08-ba46e3e7f3d9&unique=prints", "collector_number": "30", "digital": false, "rarity": "uncommon", "flavor_text": "\"It takes so little energy to erase a person. It's almost like the universe doesn't care that they existed at all.\"\n\u2014Extus Narr", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Rovina Cai", "artist_ids": ["b64d0979-4028-4409-8285-eec2fa282dd4"], "illustration_id": "e0dfc8de-0d3e-4ffa-8b77-9ad65147046b", "border_color": "borderless", "frame": "2015", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "promo_types": ["boosterfun"], "edhrec_rank": 5293, "penny_rank": 1351, "preview": {"source": "Wizards of the Coast", "source_uri": "https://www.facebook.com/MagicTheGathering.ct/photos/a.1580720992154464/3218168898409657/", "previewed_at": "2021-03-28"}, "prices": {"usd": "0.05", "usd_foil": "0.16", "usd_etched": "0.23", "eur": "0.10", "eur_foil": "0.45", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=517580", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Eliminate&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Eliminate&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Eliminate"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/235640?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Eliminate&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/89117?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "54fef763-7ee2-4341-9c67-546e4b6710b7", "oracle_id": "955ff3bf-4323-452e-a8b1-b7662034473d", "multiverse_ids": [394566], "mtgo_id": 56148, "mtgo_foil_id": 56149, "tcgplayer_id": 96617, "cardmarket_id": 273284, "name": "Enduring Victory", "lang": "en", "released_at": "2015-03-27", "uri": "https://api.scryfall.com/cards/54fef763-7ee2-4341-9c67-546e4b6710b7", "scryfall_uri": "https://scryfall.com/card/dtk/16/enduring-victory?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/5/4/54fef763-7ee2-4341-9c67-546e4b6710b7.jpg?1562786446", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/4/54fef763-7ee2-4341-9c67-546e4b6710b7.jpg?1562786446", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/5/4/54fef763-7ee2-4341-9c67-546e4b6710b7.jpg?1562786446", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/5/4/54fef763-7ee2-4341-9c67-546e4b6710b7.png?1562786446", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/4/54fef763-7ee2-4341-9c67-546e4b6710b7.jpg?1562786446", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/5/4/54fef763-7ee2-4341-9c67-546e4b6710b7.jpg?1562786446"}, "mana_cost": "{4}{W}", "cmc": 5.0, "type_line": "Instant", "oracle_text": "Destroy target attacking or blocking creature. Bolster 1. (Choose a creature with the least toughness among creatures you control and put a +1/+1 counter on it.)", "colors": ["W"], "color_identity": ["W"], "keywords": ["Bolster"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "7e72625f-f320-4552-a719-d11e2f1853bd", "set": "dtk", "set_name": "Dragons of Tarkir", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/7e72625f-f320-4552-a719-d11e2f1853bd", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Adtk&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/dtk?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/54fef763-7ee2-4341-9c67-546e4b6710b7/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A955ff3bf-4323-452e-a8b1-b7662034473d&unique=prints", "collector_number": "16", "digital": false, "rarity": "common", "watermark": "dromoka", "flavor_text": "\"My dragonlord is immortal. Most dragons are not.\"\n\u2014Kadri, Dromoka warrior", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Mike Sass", "artist_ids": ["155bc2cb-038d-4b1f-9990-6178db1d1a21"], "illustration_id": "c4f76c00-2f32-4981-b13b-422139c138db", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 19666, "penny_rank": 13110, "prices": {"usd": "0.01", "usd_foil": "0.11", "usd_etched": null, "eur": "0.03", "eur_foil": "0.14", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=394566", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Enduring+Victory&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Enduring+Victory&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Enduring+Victory"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/96617?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Enduring+Victory&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/56148?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "fe07e496-5070-4116-a91a-a3bbe19c12af", "oracle_id": "ea38a211-a7b0-49fe-b5dc-7eca7610cccb", "multiverse_ids": [2723], "tcgplayer_id": 4667, "cardmarket_id": 6577, "name": "Essence Vortex", "lang": "en", "released_at": "1995-06-03", "uri": "https://api.scryfall.com/cards/fe07e496-5070-4116-a91a-a3bbe19c12af", "scryfall_uri": "https://scryfall.com/card/ice/287/essence-vortex?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/f/e/fe07e496-5070-4116-a91a-a3bbe19c12af.jpg?1562942896", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/e/fe07e496-5070-4116-a91a-a3bbe19c12af.jpg?1562942896", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/f/e/fe07e496-5070-4116-a91a-a3bbe19c12af.jpg?1562942896", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/f/e/fe07e496-5070-4116-a91a-a3bbe19c12af.png?1562942896", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/e/fe07e496-5070-4116-a91a-a3bbe19c12af.jpg?1562942896", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/f/e/fe07e496-5070-4116-a91a-a3bbe19c12af.jpg?1562942896"}, "mana_cost": "{1}{U}{B}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Destroy target creature unless its controller pays life equal to its toughness. A creature destroyed this way can't be regenerated.", "colors": ["B", "U"], "color_identity": ["B", "U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "b0e08eea-5c01-4406-a6e2-dcd09c5e5b67", "set": "ice", "set_name": "Ice Age", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/b0e08eea-5c01-4406-a6e2-dcd09c5e5b67", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aice&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ice?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/fe07e496-5070-4116-a91a-a3bbe19c12af/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aea38a211-a7b0-49fe-b5dc-7eca7610cccb&unique=prints", "collector_number": "287", "digital": false, "rarity": "uncommon", "flavor_text": "Masters who sacrifice for servants will receive the gift of loyalty.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Margaret Organ-Kean", "artist_ids": ["95951caa-bec8-4720-b836-471f7e7740cb"], "illustration_id": "68e6670a-4503-4420-b4f8-55f1aa3cc4da", "border_color": "black", "frame": "1993", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 19301, "prices": {"usd": "0.23", "usd_foil": null, "usd_etched": null, "eur": "0.05", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=2723", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Essence+Vortex&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Essence+Vortex&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Essence+Vortex"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/4667?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Essence+Vortex&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Essence+Vortex&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "62ba90b8-3a30-4058-b8d3-72900b1f4fe0", "oracle_id": "c3a89c67-1931-4d42-98c8-94a40cfd046e", "multiverse_ids": [442979], "mtgo_id": 67647, "arena_id": 67286, "tcgplayer_id": 164731, "cardmarket_id": 355412, "name": "Eviscerate", "lang": "en", "released_at": "2018-04-27", "uri": "https://api.scryfall.com/cards/62ba90b8-3a30-4058-b8d3-72900b1f4fe0", "scryfall_uri": "https://scryfall.com/card/dom/91/eviscerate?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/6/2/62ba90b8-3a30-4058-b8d3-72900b1f4fe0.jpg?1562736723", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/2/62ba90b8-3a30-4058-b8d3-72900b1f4fe0.jpg?1562736723", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/6/2/62ba90b8-3a30-4058-b8d3-72900b1f4fe0.jpg?1562736723", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/6/2/62ba90b8-3a30-4058-b8d3-72900b1f4fe0.png?1562736723", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/2/62ba90b8-3a30-4058-b8d3-72900b1f4fe0.jpg?1562736723", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/6/2/62ba90b8-3a30-4058-b8d3-72900b1f4fe0.jpg?1562736723"}, "mana_cost": "{3}{B}", "cmc": 4.0, "type_line": "Sorcery", "oracle_text": "Destroy target creature.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "be1daba3-51c9-4e7e-9212-36e68addc26c", "set": "dom", "set_name": "Dominaria", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/be1daba3-51c9-4e7e-9212-36e68addc26c", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Adom&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/dom?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/62ba90b8-3a30-4058-b8d3-72900b1f4fe0/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ac3a89c67-1931-4d42-98c8-94a40cfd046e&unique=prints", "collector_number": "91", "digital": false, "rarity": "common", "flavor_text": "\"Fear the dark if you must, but don't mistake sunlight for safety.\"\n\u2014Josu Vess", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Min Yum", "artist_ids": ["9cb65d6f-8851-4d56-9add-9eefa274bd1b"], "illustration_id": "443ccc01-45cd-4e09-a04d-6c89f7ae2dfe", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 15072, "penny_rank": 13432, "prices": {"usd": "0.02", "usd_foil": "0.16", "usd_etched": null, "eur": "0.01", "eur_foil": "0.13", "tix": "0.04"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=442979", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Eviscerate&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Eviscerate&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Eviscerate"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/164731?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Eviscerate&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/67647?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "333123bc-fb66-4b5a-bf55-045d2906c8c3", "oracle_id": "24d2cbf6-6268-4da3-8413-6c76679576fe", "multiverse_ids": [30558], "mtgo_id": 16779, "mtgo_foil_id": 16780, "tcgplayer_id": 9408, "cardmarket_id": 2545, "name": "Execute", "lang": "en", "released_at": "2001-10-01", "uri": "https://api.scryfall.com/cards/333123bc-fb66-4b5a-bf55-045d2906c8c3", "scryfall_uri": "https://scryfall.com/card/ody/133/execute?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/3/3/333123bc-fb66-4b5a-bf55-045d2906c8c3.jpg?1562904481", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/3/333123bc-fb66-4b5a-bf55-045d2906c8c3.jpg?1562904481", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/3/3/333123bc-fb66-4b5a-bf55-045d2906c8c3.jpg?1562904481", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/3/3/333123bc-fb66-4b5a-bf55-045d2906c8c3.png?1562904481", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/3/333123bc-fb66-4b5a-bf55-045d2906c8c3.jpg?1562904481", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/3/3/333123bc-fb66-4b5a-bf55-045d2906c8c3.jpg?1562904481"}, "mana_cost": "{2}{B}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Destroy target white creature. It can't be regenerated.\nDraw a card.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "b0d90d2d-494a-4224-bfa0-36ce5ee281b1", "set": "ody", "set_name": "Odyssey", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/b0d90d2d-494a-4224-bfa0-36ce5ee281b1", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aody&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ody?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/333123bc-fb66-4b5a-bf55-045d2906c8c3/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A24d2cbf6-6268-4da3-8413-6c76679576fe&unique=prints", "collector_number": "133", "digital": false, "rarity": "uncommon", "flavor_text": "\"Any fool who would die for honor is better off dead.\"\n\u2014Cabal Patriarch", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Gary Ruddell", "artist_ids": ["086111c7-93f0-4bab-b339-6fe1c00d693c"], "illustration_id": "4f4a9ae3-ece7-4cd2-b7ce-cde6fa3c44e3", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 20260, "penny_rank": 11932, "prices": {"usd": "0.15", "usd_foil": "0.49", "usd_etched": null, "eur": "0.06", "eur_foil": "1.00", "tix": "0.06"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=30558", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Execute&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Execute&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Execute"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/9408?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Execute&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/16779?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "0576ffe8-a7b9-479b-8ea0-418b430b1aa1", "oracle_id": "4b1fee86-360d-41d8-9238-eff216376732", "multiverse_ids": [5819], "mtgo_id": 12191, "mtgo_foil_id": 12192, "tcgplayer_id": 6866, "cardmarket_id": 10342, "name": "Expunge", "lang": "en", "released_at": "1998-10-12", "uri": "https://api.scryfall.com/cards/0576ffe8-a7b9-479b-8ea0-418b430b1aa1", "scryfall_uri": "https://scryfall.com/card/usg/135/expunge?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/0/5/0576ffe8-a7b9-479b-8ea0-418b430b1aa1.jpg?1562896134", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/5/0576ffe8-a7b9-479b-8ea0-418b430b1aa1.jpg?1562896134", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/0/5/0576ffe8-a7b9-479b-8ea0-418b430b1aa1.jpg?1562896134", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/0/5/0576ffe8-a7b9-479b-8ea0-418b430b1aa1.png?1562896134", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/5/0576ffe8-a7b9-479b-8ea0-418b430b1aa1.jpg?1562896134", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/0/5/0576ffe8-a7b9-479b-8ea0-418b430b1aa1.jpg?1562896134"}, "mana_cost": "{2}{B}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Destroy target nonartifact, nonblack creature. It can't be regenerated.\nCycling {2} ({2}, Discard this card: Draw a card.)", "colors": ["B"], "color_identity": ["B"], "keywords": ["Cycling"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "c330df40-51db-4caf-bde6-48df6c181001", "set": "usg", "set_name": "Urza's Saga", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/c330df40-51db-4caf-bde6-48df6c181001", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ausg&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/usg?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/0576ffe8-a7b9-479b-8ea0-418b430b1aa1/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A4b1fee86-360d-41d8-9238-eff216376732&unique=prints", "collector_number": "135", "digital": false, "rarity": "common", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Christopher Moeller", "artist_ids": ["21e10012-06ae-44f2-b38d-3824dd2e73d4"], "illustration_id": "e0959d84-ae19-4ef9-9a87-a681de0a3f98", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 11534, "penny_rank": 3570, "prices": {"usd": "0.21", "usd_foil": null, "usd_etched": null, "eur": "0.12", "eur_foil": null, "tix": "0.11"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=5819", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Expunge&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Expunge&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Expunge"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/6866?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Expunge&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/12191?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "e0c08701-7038-4d6b-bbf8-056fd8ffb226", "oracle_id": "9f3e1eef-31db-4e1a-b5a9-ac835f6a3eab", "multiverse_ids": [139449], "mtgo_id": 28261, "mtgo_foil_id": 28262, "tcgplayer_id": 15476, "cardmarket_id": 17851, "name": "Eyeblight's Ending", "lang": "en", "released_at": "2007-10-12", "uri": "https://api.scryfall.com/cards/e0c08701-7038-4d6b-bbf8-056fd8ffb226", "scryfall_uri": "https://scryfall.com/card/lrw/110/eyeblights-ending?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/e/0/e0c08701-7038-4d6b-bbf8-056fd8ffb226.jpg?1562371343", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/0/e0c08701-7038-4d6b-bbf8-056fd8ffb226.jpg?1562371343", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/e/0/e0c08701-7038-4d6b-bbf8-056fd8ffb226.jpg?1562371343", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/e/0/e0c08701-7038-4d6b-bbf8-056fd8ffb226.png?1562371343", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/0/e0c08701-7038-4d6b-bbf8-056fd8ffb226.jpg?1562371343", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/e/0/e0c08701-7038-4d6b-bbf8-056fd8ffb226.jpg?1562371343"}, "mana_cost": "{2}{B}", "cmc": 3.0, "type_line": "Tribal Instant \u2014 Elf", "oracle_text": "Destroy target non-Elf creature.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "30ec97cb-dca9-4bf4-a98b-310f9d8ceaff", "set": "lrw", "set_name": "Lorwyn", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/30ec97cb-dca9-4bf4-a98b-310f9d8ceaff", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Alrw&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/lrw?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/e0c08701-7038-4d6b-bbf8-056fd8ffb226/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A9f3e1eef-31db-4e1a-b5a9-ac835f6a3eab&unique=prints", "collector_number": "110", "digital": false, "rarity": "common", "flavor_text": "\"Those without beauty are Lorwyn's greatest tumor. The winnowers have an unpleasant duty, but a necessary one.\"\n\u2014Eidren, perfect of Lys Alana", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Ron Spears", "artist_ids": ["fce9030b-86bd-4439-b06a-920a1eeb184c"], "illustration_id": "c89d7fa7-b400-44d3-972d-55f0e56c9f73", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 8859, "penny_rank": 2194, "prices": {"usd": "0.12", "usd_foil": "0.84", "usd_etched": null, "eur": "0.14", "eur_foil": "0.62", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=139449", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Eyeblight%27s+Ending&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Eyeblight%27s+Ending&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Eyeblight%27s+Ending"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/15476?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Eyeblight%27s+Ending&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/28261?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "044dc7c2-6198-4526-b79a-f3d8ee7a157a", "oracle_id": "16774611-c004-4383-b4e1-4a43a9b1f4aa", "multiverse_ids": [4455], "mtgo_id": 9149, "mtgo_foil_id": 9150, "tcgplayer_id": 6023, "cardmarket_id": 8577, "name": "Fatal Blow", "lang": "en", "released_at": "1997-06-09", "uri": "https://api.scryfall.com/cards/044dc7c2-6198-4526-b79a-f3d8ee7a157a", "scryfall_uri": "https://scryfall.com/card/wth/67/fatal-blow?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/0/4/044dc7c2-6198-4526-b79a-f3d8ee7a157a.jpg?1562799109", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/4/044dc7c2-6198-4526-b79a-f3d8ee7a157a.jpg?1562799109", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/0/4/044dc7c2-6198-4526-b79a-f3d8ee7a157a.jpg?1562799109", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/0/4/044dc7c2-6198-4526-b79a-f3d8ee7a157a.png?1562799109", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/4/044dc7c2-6198-4526-b79a-f3d8ee7a157a.jpg?1562799109", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/0/4/044dc7c2-6198-4526-b79a-f3d8ee7a157a.jpg?1562799109"}, "mana_cost": "{B}", "cmc": 1.0, "type_line": "Instant", "oracle_text": "Destroy target creature that was dealt damage this turn. It can't be regenerated.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "700997ac-add2-4ce2-992e-5efa0fdfc0e9", "set": "wth", "set_name": "Weatherlight", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/700997ac-add2-4ce2-992e-5efa0fdfc0e9", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Awth&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/wth?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/044dc7c2-6198-4526-b79a-f3d8ee7a157a/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A16774611-c004-4383-b4e1-4a43a9b1f4aa&unique=prints", "collector_number": "67", "digital": false, "rarity": "common", "flavor_text": "\"What is crueler? To let a wound of the heart fester, or to simply cut it out?\"\n\u2014Crovax", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "George Pratt", "artist_ids": ["c245c0ec-545f-48b9-908d-33903c52ec59"], "illustration_id": "4b645997-6f78-4c9a-bebe-c0b29ca8f5ea", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 16557, "prices": {"usd": "0.11", "usd_foil": null, "usd_etched": null, "eur": "0.08", "eur_foil": null, "tix": "0.06"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=4455", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Fatal+Blow&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Fatal+Blow&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Fatal+Blow"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/6023?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Fatal+Blow&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/9149?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "b5e81649-9954-424c-89d1-f87d73b66047", "oracle_id": "16437a83-be52-44cd-a768-a767c9347eb2", "multiverse_ids": [423724], "mtgo_id": 62689, "mtgo_foil_id": 62690, "tcgplayer_id": 126331, "cardmarket_id": 294758, "name": "Fatal Push", "lang": "en", "released_at": "2017-01-20", "uri": "https://api.scryfall.com/cards/b5e81649-9954-424c-89d1-f87d73b66047", "scryfall_uri": "https://scryfall.com/card/aer/57/fatal-push?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/b/5/b5e81649-9954-424c-89d1-f87d73b66047.jpg?1595869185", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/5/b5e81649-9954-424c-89d1-f87d73b66047.jpg?1595869185", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/b/5/b5e81649-9954-424c-89d1-f87d73b66047.jpg?1595869185", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/b/5/b5e81649-9954-424c-89d1-f87d73b66047.png?1595869185", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/5/b5e81649-9954-424c-89d1-f87d73b66047.jpg?1595869185", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/b/5/b5e81649-9954-424c-89d1-f87d73b66047.jpg?1595869185"}, "mana_cost": "{B}", "cmc": 1.0, "type_line": "Instant", "oracle_text": "Destroy target creature if it has mana value 2 or less.\nRevolt \u2014 Destroy that creature if it has mana value 4 or less instead if a permanent you controlled left the battlefield this turn.", "colors": ["B"], "color_identity": ["B"], "keywords": ["Revolt"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "a4a0db50-8826-4e73-833c-3fd934375f96", "set": "aer", "set_name": "Aether Revolt", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/a4a0db50-8826-4e73-833c-3fd934375f96", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aaer&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/aer?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/b5e81649-9954-424c-89d1-f87d73b66047/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A16437a83-be52-44cd-a768-a767c9347eb2&unique=prints", "collector_number": "57", "digital": false, "rarity": "uncommon", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Eric Deschamps", "artist_ids": ["37970e22-9cee-44c1-af44-5ee27cf26b76"], "illustration_id": "4d42c61d-833c-46cd-aae2-765c2fd90dbb", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 3264, "prices": {"usd": "3.13", "usd_foil": "4.37", "usd_etched": null, "eur": "2.73", "eur_foil": "3.48", "tix": "0.21"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=423724", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Fatal+Push&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Fatal+Push&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Fatal+Push"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/126331?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Fatal+Push&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/62689?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "5427d8a6-ac9e-4e50-bd39-81713b2ade25", "oracle_id": "16437a83-be52-44cd-a768-a767c9347eb2", "multiverse_ids": [497493], "tcgplayer_id": 221988, "cardmarket_id": 495534, "name": "Fatal Push", "lang": "en", "released_at": "2020-09-03", "uri": "https://api.scryfall.com/cards/5427d8a6-ac9e-4e50-bd39-81713b2ade25", "scryfall_uri": "https://scryfall.com/card/sld/112/fatal-push?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/5/4/5427d8a6-ac9e-4e50-bd39-81713b2ade25.jpg?1607041515", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/4/5427d8a6-ac9e-4e50-bd39-81713b2ade25.jpg?1607041515", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/5/4/5427d8a6-ac9e-4e50-bd39-81713b2ade25.jpg?1607041515", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/5/4/5427d8a6-ac9e-4e50-bd39-81713b2ade25.png?1607041515", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/4/5427d8a6-ac9e-4e50-bd39-81713b2ade25.jpg?1607041515", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/5/4/5427d8a6-ac9e-4e50-bd39-81713b2ade25.jpg?1607041515"}, "mana_cost": "{B}", "cmc": 1.0, "type_line": "Instant", "oracle_text": "Destroy target creature if it has mana value 2 or less.\nRevolt \u2014 Destroy that creature if it has mana value 4 or less instead if a permanent you controlled left the battlefield this turn.", "colors": ["B"], "color_identity": ["B"], "keywords": ["Revolt"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "4d92a8a7-ccb0-437d-abdc-9d70fc5ed672", "set": "sld", "set_name": "Secret Lair Drop", "set_type": "box", "set_uri": "https://api.scryfall.com/sets/4d92a8a7-ccb0-437d-abdc-9d70fc5ed672", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Asld&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/sld?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/5427d8a6-ac9e-4e50-bd39-81713b2ade25/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A16437a83-be52-44cd-a768-a767c9347eb2&unique=prints", "collector_number": "112", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Matt Dixon", "artist_ids": ["02e3a0df-c0ac-4eb4-a902-b3bee822f025"], "illustration_id": "ce339a5f-0d55-4e7d-a28e-114cc3a5b96a", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "edhrec_rank": 3264, "prices": {"usd": "25.17", "usd_foil": "16.68", "usd_etched": null, "eur": "24.00", "eur_foil": "17.00", "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=497493", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Fatal+Push&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Fatal+Push&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Fatal+Push"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/221988?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Fatal+Push&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Fatal+Push&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "b9a50516-a20f-4e6e-b4f2-0049b673f942", "oracle_id": "16437a83-be52-44cd-a768-a767c9347eb2", "multiverse_ids": [491352], "tcgplayer_id": 218831, "cardmarket_id": 486914, "name": "Fatal Push", "lang": "en", "released_at": "2020-08-07", "uri": "https://api.scryfall.com/cards/b9a50516-a20f-4e6e-b4f2-0049b673f942", "scryfall_uri": "https://scryfall.com/card/2xm/343/fatal-push?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/b/9/b9a50516-a20f-4e6e-b4f2-0049b673f942.jpg?1599711004", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/9/b9a50516-a20f-4e6e-b4f2-0049b673f942.jpg?1599711004", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/b/9/b9a50516-a20f-4e6e-b4f2-0049b673f942.jpg?1599711004", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/b/9/b9a50516-a20f-4e6e-b4f2-0049b673f942.png?1599711004", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/9/b9a50516-a20f-4e6e-b4f2-0049b673f942.jpg?1599711004", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/b/9/b9a50516-a20f-4e6e-b4f2-0049b673f942.jpg?1599711004"}, "mana_cost": "{B}", "cmc": 1.0, "type_line": "Instant", "oracle_text": "Destroy target creature if it has mana value 2 or less.\nRevolt \u2014 Destroy that creature if it has mana value 4 or less instead if a permanent you controlled left the battlefield this turn.", "colors": ["B"], "color_identity": ["B"], "keywords": ["Revolt"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": true, "reprint": true, "variation": false, "set_id": "372dafe8-b5d1-4b81-998f-3ae96b59498a", "set": "2xm", "set_name": "Double Masters", "set_type": "masters", "set_uri": "https://api.scryfall.com/sets/372dafe8-b5d1-4b81-998f-3ae96b59498a", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3A2xm&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/2xm?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/b9a50516-a20f-4e6e-b4f2-0049b673f942/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A16437a83-be52-44cd-a768-a767c9347eb2&unique=prints", "collector_number": "343", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Eric Velhagen", "artist_ids": ["9f85c6c1-5cf4-4092-bb65-006eaca188d4"], "illustration_id": "aef58513-9a6f-4fc9-9ec3-1478395fcada", "border_color": "borderless", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "promo_types": ["boxtopper", "boosterfun"], "edhrec_rank": 3264, "preview": {"source": "Wizards of the Coast", "source_uri": "https://www.twitch.tv/videos/691373211?t=01h38m35s", "previewed_at": "2020-07-26"}, "prices": {"usd": "13.74", "usd_foil": "13.44", "usd_etched": null, "eur": "11.28", "eur_foil": "12.45", "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=491352", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Fatal+Push&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Fatal+Push&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Fatal+Push"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/218831?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Fatal+Push&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Fatal+Push&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "86d1119d-7585-4699-8649-e3743c02d7a9", "oracle_id": "16437a83-be52-44cd-a768-a767c9347eb2", "multiverse_ids": [], "tcgplayer_id": 144780, "cardmarket_id": 297910, "name": "Fatal Push", "lang": "en", "released_at": "2017-01-01", "uri": "https://api.scryfall.com/cards/86d1119d-7585-4699-8649-e3743c02d7a9", "scryfall_uri": "https://scryfall.com/card/f17/8/fatal-push?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/8/6/86d1119d-7585-4699-8649-e3743c02d7a9.jpg?1562636837", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/6/86d1119d-7585-4699-8649-e3743c02d7a9.jpg?1562636837", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/8/6/86d1119d-7585-4699-8649-e3743c02d7a9.jpg?1562636837", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/8/6/86d1119d-7585-4699-8649-e3743c02d7a9.png?1562636837", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/6/86d1119d-7585-4699-8649-e3743c02d7a9.jpg?1562636837", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/8/6/86d1119d-7585-4699-8649-e3743c02d7a9.jpg?1562636837"}, "mana_cost": "{B}", "cmc": 1.0, "type_line": "Instant", "oracle_text": "Destroy target creature if it has mana value 2 or less.\nRevolt \u2014 Destroy that creature if it has mana value 4 or less instead if a permanent you controlled left the battlefield this turn.", "colors": ["B"], "color_identity": ["B"], "keywords": ["Revolt"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": true, "nonfoil": false, "finishes": ["foil"], "oversized": false, "promo": true, "reprint": true, "variation": false, "set_id": "690dae5c-2de4-4071-b77c-19883791f987", "set": "f17", "set_name": "Friday Night Magic 2017", "set_type": "promo", "set_uri": "https://api.scryfall.com/sets/690dae5c-2de4-4071-b77c-19883791f987", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Af17&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/f17?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/86d1119d-7585-4699-8649-e3743c02d7a9/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A16437a83-be52-44cd-a768-a767c9347eb2&unique=prints", "collector_number": "8", "digital": false, "rarity": "rare", "watermark": "wotc", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Alex Konstad", "artist_ids": ["58b2a57c-50ca-4047-b4e7-efb28cb22851"], "illustration_id": "64d9393f-2942-414e-9378-0f3cfd1703d1", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "promo_types": ["tourney", "fnm"], "edhrec_rank": 3264, "prices": {"usd": null, "usd_foil": "3.49", "usd_etched": null, "eur": null, "eur_foil": "1.70", "tix": null}, "related_uris": {"tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Fatal+Push&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Fatal+Push&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Fatal+Push"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/144780?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Fatal+Push&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Fatal+Push&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "eca8d6f8-c6f1-437c-99e2-4281eae14a6f", "oracle_id": "35bba442-1aec-4d33-b502-4c580d61644b", "multiverse_ids": [534774], "mtgo_id": 92962, "arena_id": 78345, "tcgplayer_id": 248225, "cardmarket_id": 575008, "name": "Fateful Absence", "lang": "en", "released_at": "2021-09-24", "uri": "https://api.scryfall.com/cards/eca8d6f8-c6f1-437c-99e2-4281eae14a6f", "scryfall_uri": "https://scryfall.com/card/mid/18/fateful-absence?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/e/c/eca8d6f8-c6f1-437c-99e2-4281eae14a6f.jpg?1634346819", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/c/eca8d6f8-c6f1-437c-99e2-4281eae14a6f.jpg?1634346819", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/e/c/eca8d6f8-c6f1-437c-99e2-4281eae14a6f.jpg?1634346819", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/e/c/eca8d6f8-c6f1-437c-99e2-4281eae14a6f.png?1634346819", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/c/eca8d6f8-c6f1-437c-99e2-4281eae14a6f.jpg?1634346819", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/e/c/eca8d6f8-c6f1-437c-99e2-4281eae14a6f.jpg?1634346819"}, "mana_cost": "{1}{W}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Destroy target creature or planeswalker. Its controller investigates. (Create a Clue token. It's an artifact with \"{2}, Sacrifice this artifact: Draw a card.\")", "colors": ["W"], "color_identity": ["W"], "keywords": ["Investigate"], "all_parts": [{"object": "related_card", "id": "eca8d6f8-c6f1-437c-99e2-4281eae14a6f", "component": "combo_piece", "name": "Fateful Absence", "type_line": "Instant", "uri": "https://api.scryfall.com/cards/eca8d6f8-c6f1-437c-99e2-4281eae14a6f"}, {"object": "related_card", "id": "d45eca06-2ef2-47ef-a0ab-6766bbd3ab8b", "component": "token", "name": "Clue", "type_line": "Token Artifact \u2014 Clue", "uri": "https://api.scryfall.com/cards/d45eca06-2ef2-47ef-a0ab-6766bbd3ab8b"}], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "44b8eb8f-fa23-401a-98b5-1fbb9871128e", "set": "mid", "set_name": "Innistrad: Midnight Hunt", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/44b8eb8f-fa23-401a-98b5-1fbb9871128e", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Amid&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/mid?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/eca8d6f8-c6f1-437c-99e2-4281eae14a6f/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A35bba442-1aec-4d33-b502-4c580d61644b&unique=prints", "collector_number": "18", "digital": false, "rarity": "rare", "flavor_text": "Sensing a plot, Sorin raced to his grandfather's resting-crypt. But someone else had gotten there first.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Eric Deschamps", "artist_ids": ["37970e22-9cee-44c1-af44-5ee27cf26b76"], "illustration_id": "e77ed948-359a-4e16-a8ee-f934e80ac80c", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": true, "story_spotlight": true, "edhrec_rank": 2841, "preview": {"source": "ChannelFireball", "source_uri": "https://strategy.channelfireball.com/all-strategy/home/exclusive-innistrad-midnight-hunt-preview-card-fateful-absence/", "previewed_at": "2021-09-09"}, "prices": {"usd": "1.33", "usd_foil": "1.61", "usd_etched": null, "eur": "1.51", "eur_foil": "2.42", "tix": "3.53"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=534774", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Fateful+Absence&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Fateful+Absence&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Fateful+Absence"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/248225?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Fateful+Absence&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/92962?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "1a7dd5e2-b2a5-46ab-a67c-499451706505", "oracle_id": "fed05740-01b2-4c7a-8b97-55e64837c07f", "multiverse_ids": [189629], "mtgo_id": 34412, "mtgo_foil_id": 34413, "tcgplayer_id": 33296, "cardmarket_id": 21900, "name": "Feast of Blood", "lang": "en", "released_at": "2009-10-02", "uri": "https://api.scryfall.com/cards/1a7dd5e2-b2a5-46ab-a67c-499451706505", "scryfall_uri": "https://scryfall.com/card/zen/88/feast-of-blood?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/1/a/1a7dd5e2-b2a5-46ab-a67c-499451706505.jpg?1562610240", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/a/1a7dd5e2-b2a5-46ab-a67c-499451706505.jpg?1562610240", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/1/a/1a7dd5e2-b2a5-46ab-a67c-499451706505.jpg?1562610240", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/1/a/1a7dd5e2-b2a5-46ab-a67c-499451706505.png?1562610240", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/a/1a7dd5e2-b2a5-46ab-a67c-499451706505.jpg?1562610240", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/1/a/1a7dd5e2-b2a5-46ab-a67c-499451706505.jpg?1562610240"}, "mana_cost": "{1}{B}", "cmc": 2.0, "type_line": "Sorcery", "oracle_text": "Cast this spell only if you control two or more Vampires.\nDestroy target creature. You gain 4 life.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "eb16a2bd-a218-4e4e-8339-4aa1afc0c8d2", "set": "zen", "set_name": "Zendikar", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/eb16a2bd-a218-4e4e-8339-4aa1afc0c8d2", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Azen&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/zen?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/1a7dd5e2-b2a5-46ab-a67c-499451706505/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Afed05740-01b2-4c7a-8b97-55e64837c07f&unique=prints", "collector_number": "88", "digital": false, "rarity": "uncommon", "flavor_text": "\"The vampires of this world don't know the pleasures of hunger. They gorge themselves without savoring the kill.\"\n\u2014Sorin Markov", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Jason Felix", "artist_ids": ["af42a44c-8ec3-47a7-9047-5d29ddad186d"], "illustration_id": "3ea7bb4f-9333-4cc4-84e8-16eeb7b07aa0", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 8945, "penny_rank": 5710, "prices": {"usd": "0.27", "usd_foil": "2.25", "usd_etched": null, "eur": "0.20", "eur_foil": "1.33", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=189629", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Feast+of+Blood&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Feast+of+Blood&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Feast+of+Blood"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/33296?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Feast+of+Blood&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/34412?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "658bf8b7-fbc4-4046-9300-249cdeb87924", "oracle_id": "fed05740-01b2-4c7a-8b97-55e64837c07f", "multiverse_ids": [], "tcgplayer_id": 82194, "cardmarket_id": 253188, "name": "Feast of Blood", "lang": "en", "released_at": "2012-01-01", "uri": "https://api.scryfall.com/cards/658bf8b7-fbc4-4046-9300-249cdeb87924", "scryfall_uri": "https://scryfall.com/card/pidw/4/feast-of-blood?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/6/5/658bf8b7-fbc4-4046-9300-249cdeb87924.jpg?1561757312", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/5/658bf8b7-fbc4-4046-9300-249cdeb87924.jpg?1561757312", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/6/5/658bf8b7-fbc4-4046-9300-249cdeb87924.jpg?1561757312", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/6/5/658bf8b7-fbc4-4046-9300-249cdeb87924.png?1561757312", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/5/658bf8b7-fbc4-4046-9300-249cdeb87924.jpg?1561757312", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/6/5/658bf8b7-fbc4-4046-9300-249cdeb87924.jpg?1561757312"}, "mana_cost": "{1}{B}", "cmc": 2.0, "type_line": "Sorcery", "oracle_text": "Cast this spell only if you control two or more Vampires.\nDestroy target creature. You gain 4 life.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": true, "reprint": true, "variation": false, "set_id": "33438cf7-6acb-48f0-8581-215d1e4995e5", "set": "pidw", "set_name": "IDW Comics 2012", "set_type": "promo", "set_uri": "https://api.scryfall.com/sets/33438cf7-6acb-48f0-8581-215d1e4995e5", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Apidw&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/pidw?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/658bf8b7-fbc4-4046-9300-249cdeb87924/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Afed05740-01b2-4c7a-8b97-55e64837c07f&unique=prints", "collector_number": "4", "digital": false, "rarity": "rare", "flavor_text": "Imbued in the Ancient Fang were spells far darker than any Dack Fayden would cast.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Christopher Moeller", "artist_ids": ["21e10012-06ae-44f2-b38d-3824dd2e73d4"], "illustration_id": "6e462bea-0e34-461d-b983-83ce84f4fd1d", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "promo_types": ["mediainsert"], "edhrec_rank": 8945, "penny_rank": 5710, "prices": {"usd": "4.24", "usd_foil": null, "usd_etched": null, "eur": "3.00", "eur_foil": null, "tix": null}, "related_uris": {"tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Feast+of+Blood&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Feast+of+Blood&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Feast+of+Blood"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/82194?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Feast+of+Blood&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Feast+of+Blood&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "de07e21e-c12a-47a6-ad2c-ef6fed343407", "oracle_id": "e86870b1-4028-4111-9717-7005f86afe85", "multiverse_ids": [380412], "mtgo_id": 52174, "mtgo_foil_id": 52175, "tcgplayer_id": 82366, "cardmarket_id": 266705, "name": "Feast of Dreams", "lang": "en", "released_at": "2014-05-02", "uri": "https://api.scryfall.com/cards/de07e21e-c12a-47a6-ad2c-ef6fed343407", "scryfall_uri": "https://scryfall.com/card/jou/69/feast-of-dreams?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/d/e/de07e21e-c12a-47a6-ad2c-ef6fed343407.jpg?1593095705", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/e/de07e21e-c12a-47a6-ad2c-ef6fed343407.jpg?1593095705", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/d/e/de07e21e-c12a-47a6-ad2c-ef6fed343407.jpg?1593095705", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/d/e/de07e21e-c12a-47a6-ad2c-ef6fed343407.png?1593095705", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/e/de07e21e-c12a-47a6-ad2c-ef6fed343407.jpg?1593095705", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/d/e/de07e21e-c12a-47a6-ad2c-ef6fed343407.jpg?1593095705"}, "mana_cost": "{1}{B}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Destroy target enchanted creature or enchantment creature.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "204d2dca-1887-4721-9558-164aa7bbeb4f", "set": "jou", "set_name": "Journey into Nyx", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/204d2dca-1887-4721-9558-164aa7bbeb4f", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ajou&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/jou?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/de07e21e-c12a-47a6-ad2c-ef6fed343407/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ae86870b1-4028-4111-9717-7005f86afe85&unique=prints", "collector_number": "69", "digital": false, "rarity": "common", "flavor_text": "\"We gave the gods the power to war against us. It is time we took that power back.\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Clint Cearley", "artist_ids": ["03b75350-d5a0-4e3a-b3b4-8d4a5554385b"], "illustration_id": "992c58a1-b1ab-4a1d-b440-697445777e6f", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 17383, "prices": {"usd": "0.03", "usd_foil": "0.10", "usd_etched": null, "eur": "0.02", "eur_foil": "0.27", "tix": "0.04"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=380412", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Feast+of+Dreams&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Feast+of+Dreams&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Feast+of+Dreams"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/82366?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Feast+of+Dreams&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/52174?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "92105bc6-b64a-4bdc-99fe-7a2ccdbd4486", "oracle_id": "485f710d-5bc2-4c8f-b7e9-eed6caa261a6", "multiverse_ids": [338405], "mtgo_id": 46109, "mtgo_foil_id": 46110, "tcgplayer_id": 66365, "cardmarket_id": 258167, "name": "Feast or Famine", "lang": "en", "released_at": "2012-09-07", "uri": "https://api.scryfall.com/cards/92105bc6-b64a-4bdc-99fe-7a2ccdbd4486", "scryfall_uri": "https://scryfall.com/card/ddj/72/feast-or-famine?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/9/2/92105bc6-b64a-4bdc-99fe-7a2ccdbd4486.jpg?1592713797", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/2/92105bc6-b64a-4bdc-99fe-7a2ccdbd4486.jpg?1592713797", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/9/2/92105bc6-b64a-4bdc-99fe-7a2ccdbd4486.jpg?1592713797", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/9/2/92105bc6-b64a-4bdc-99fe-7a2ccdbd4486.png?1592713797", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/2/92105bc6-b64a-4bdc-99fe-7a2ccdbd4486.jpg?1592713797", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/9/2/92105bc6-b64a-4bdc-99fe-7a2ccdbd4486.jpg?1592713797"}, "mana_cost": "{3}{B}", "cmc": 4.0, "type_line": "Instant", "oracle_text": "Choose one \u2014\n\u2022 Create a 2/2 black Zombie creature token.\n\u2022 Destroy target nonartifact, nonblack creature. It can't be regenerated.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "all_parts": [{"object": "related_card", "id": "92105bc6-b64a-4bdc-99fe-7a2ccdbd4486", "component": "combo_piece", "name": "Feast or Famine", "type_line": "Instant", "uri": "https://api.scryfall.com/cards/92105bc6-b64a-4bdc-99fe-7a2ccdbd4486"}, {"object": "related_card", "id": "46769d11-a7ae-43ac-8c00-e1681955949b", "component": "token", "name": "Zombie", "type_line": "Token Creature \u2014 Zombie", "uri": "https://api.scryfall.com/cards/46769d11-a7ae-43ac-8c00-e1681955949b"}], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "2dfea68b-b0c4-4f63-ba6c-36c9a6e3030f", "set": "ddj", "set_name": "Duel Decks: Izzet vs. Golgari", "set_type": "duel_deck", "set_uri": "https://api.scryfall.com/sets/2dfea68b-b0c4-4f63-ba6c-36c9a6e3030f", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Addj&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ddj?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/92105bc6-b64a-4bdc-99fe-7a2ccdbd4486/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A485f710d-5bc2-4c8f-b7e9-eed6caa261a6&unique=prints", "collector_number": "72", "digital": false, "rarity": "common", "flavor_text": "\"The living cannot understand the benefits of death.\"\n\u2014Chaeska, Keeper of Tresserhorn", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Chase Stone", "artist_ids": ["2d753f61-5f5b-468e-97ea-8e0fdd347340"], "illustration_id": "7e4807ad-3ee2-41c6-b429-9ef03f655da5", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "edhrec_rank": 17628, "penny_rank": 11448, "prices": {"usd": "0.20", "usd_foil": null, "usd_etched": null, "eur": "0.12", "eur_foil": null, "tix": "0.46"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=338405", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Feast+or+Famine&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Feast+or+Famine&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Feast+or+Famine"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/66365?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Feast+or+Famine&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/46109?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "302ec21d-bb10-4651-80da-11852768165d", "oracle_id": "485f710d-5bc2-4c8f-b7e9-eed6caa261a6", "multiverse_ids": [159739], "mtgo_id": 28109, "mtgo_foil_id": 28110, "name": "Feast or Famine", "lang": "en", "released_at": "2007-09-10", "uri": "https://api.scryfall.com/cards/302ec21d-bb10-4651-80da-11852768165d", "scryfall_uri": "https://scryfall.com/card/me1/70/feast-or-famine?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/3/0/302ec21d-bb10-4651-80da-11852768165d.jpg?1559592569", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/0/302ec21d-bb10-4651-80da-11852768165d.jpg?1559592569", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/3/0/302ec21d-bb10-4651-80da-11852768165d.jpg?1559592569", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/3/0/302ec21d-bb10-4651-80da-11852768165d.png?1559592569", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/0/302ec21d-bb10-4651-80da-11852768165d.jpg?1559592569", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/3/0/302ec21d-bb10-4651-80da-11852768165d.jpg?1559592569"}, "mana_cost": "{3}{B}", "cmc": 4.0, "type_line": "Instant", "oracle_text": "Choose one \u2014\n\u2022 Create a 2/2 black Zombie creature token.\n\u2022 Destroy target nonartifact, nonblack creature. It can't be regenerated.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "all_parts": [{"object": "related_card", "id": "302ec21d-bb10-4651-80da-11852768165d", "component": "combo_piece", "name": "Feast or Famine", "type_line": "Instant", "uri": "https://api.scryfall.com/cards/302ec21d-bb10-4651-80da-11852768165d"}, {"object": "related_card", "id": "46769d11-a7ae-43ac-8c00-e1681955949b", "component": "token", "name": "Zombie", "type_line": "Token Creature \u2014 Zombie", "uri": "https://api.scryfall.com/cards/46769d11-a7ae-43ac-8c00-e1681955949b"}], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "407d388d-1abf-4c1d-b0c6-f56280898a1a", "set": "me1", "set_name": "Masters Edition", "set_type": "masters", "set_uri": "https://api.scryfall.com/sets/407d388d-1abf-4c1d-b0c6-f56280898a1a", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ame1&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/me1?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/302ec21d-bb10-4651-80da-11852768165d/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A485f710d-5bc2-4c8f-b7e9-eed6caa261a6&unique=prints", "collector_number": "70", "digital": true, "rarity": "common", "flavor_text": "\"We are not yet free of Lim-D\u00fbl's terrors.\"\n\u2014Halvor Arensson, Kjeldoran priest", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Pete Venters", "artist_ids": ["d54c4a1a-c0c5-4834-84db-125d341f3ad8"], "illustration_id": "ff4f3431-8ee9-4a0b-854d-426621c04d10", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 17628, "penny_rank": 11448, "prices": {"usd": null, "usd_foil": null, "usd_etched": null, "eur": null, "eur_foil": null, "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=159739", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Feast+or+Famine&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Feast+or+Famine&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Feast+or+Famine"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/search/magic/product?productLineName=magic&q=Feast+or+Famine&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall&view=grid", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Feast+or+Famine&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/28109?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "7c185b4d-8da5-4b8a-85f0-5f0622c7bade", "oracle_id": "485f710d-5bc2-4c8f-b7e9-eed6caa261a6", "multiverse_ids": [3074], "tcgplayer_id": 81819, "cardmarket_id": 7861, "name": "Feast or Famine", "lang": "en", "released_at": "1996-06-10", "uri": "https://api.scryfall.com/cards/7c185b4d-8da5-4b8a-85f0-5f0622c7bade", "scryfall_uri": "https://scryfall.com/card/all/49a/feast-or-famine?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/7/c/7c185b4d-8da5-4b8a-85f0-5f0622c7bade.jpg?1562769209", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/c/7c185b4d-8da5-4b8a-85f0-5f0622c7bade.jpg?1562769209", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/7/c/7c185b4d-8da5-4b8a-85f0-5f0622c7bade.jpg?1562769209", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/7/c/7c185b4d-8da5-4b8a-85f0-5f0622c7bade.png?1562769209", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/c/7c185b4d-8da5-4b8a-85f0-5f0622c7bade.jpg?1562769209", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/7/c/7c185b4d-8da5-4b8a-85f0-5f0622c7bade.jpg?1562769209"}, "mana_cost": "{3}{B}", "cmc": 4.0, "type_line": "Instant", "oracle_text": "Choose one \u2014\n\u2022 Create a 2/2 black Zombie creature token.\n\u2022 Destroy target nonartifact, nonblack creature. It can't be regenerated.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "all_parts": [{"object": "related_card", "id": "7c185b4d-8da5-4b8a-85f0-5f0622c7bade", "component": "combo_piece", "name": "Feast or Famine", "type_line": "Instant", "uri": "https://api.scryfall.com/cards/7c185b4d-8da5-4b8a-85f0-5f0622c7bade"}, {"object": "related_card", "id": "46769d11-a7ae-43ac-8c00-e1681955949b", "component": "token", "name": "Zombie", "type_line": "Token Creature \u2014 Zombie", "uri": "https://api.scryfall.com/cards/46769d11-a7ae-43ac-8c00-e1681955949b"}], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "64987b06-4a5c-443d-b560-ff5691744582", "set": "all", "set_name": "Alliances", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/64987b06-4a5c-443d-b560-ff5691744582", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aall&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/all?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/7c185b4d-8da5-4b8a-85f0-5f0622c7bade/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A485f710d-5bc2-4c8f-b7e9-eed6caa261a6&unique=prints", "collector_number": "49a", "digital": false, "rarity": "common", "flavor_text": "\"We are not yet free of Lim-D\u00fbl's terrors.\"\n\u2014Halvor Arensson, Kjeldoran Priest", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Pete Venters", "artist_ids": ["d54c4a1a-c0c5-4834-84db-125d341f3ad8"], "illustration_id": "2de285cd-3b67-4ffd-b780-313bff03b194", "border_color": "black", "frame": "1993", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 17628, "penny_rank": 11448, "prices": {"usd": "0.09", "usd_foil": null, "usd_etched": null, "eur": "0.10", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=3074", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Feast+or+Famine&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Feast+or+Famine&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Feast+or+Famine"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/81819?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Feast+or+Famine&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Feast+or+Famine&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "f6b2eba7-862a-4efd-9f65-065fb2070855", "oracle_id": "5825997b-10d7-4a36-972c-a80ddd90b8ed", "multiverse_ids": [491737], "mtgo_id": 83167, "arena_id": 73298, "tcgplayer_id": 221953, "cardmarket_id": 495504, "name": "Feed the Swarm", "lang": "en", "released_at": "2020-09-25", "uri": "https://api.scryfall.com/cards/f6b2eba7-862a-4efd-9f65-065fb2070855", "scryfall_uri": "https://scryfall.com/card/znr/102/feed-the-swarm?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/f/6/f6b2eba7-862a-4efd-9f65-065fb2070855.jpg?1604195649", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/6/f6b2eba7-862a-4efd-9f65-065fb2070855.jpg?1604195649", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/f/6/f6b2eba7-862a-4efd-9f65-065fb2070855.jpg?1604195649", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/f/6/f6b2eba7-862a-4efd-9f65-065fb2070855.png?1604195649", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/6/f6b2eba7-862a-4efd-9f65-065fb2070855.jpg?1604195649", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/f/6/f6b2eba7-862a-4efd-9f65-065fb2070855.jpg?1604195649"}, "mana_cost": "{1}{B}", "cmc": 2.0, "type_line": "Sorcery", "oracle_text": "Destroy target creature or enchantment an opponent controls. You lose life equal to that permanent's mana value.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "f4e01fa7-b254-42dd-849f-69b58027a8c4", "set": "znr", "set_name": "Zendikar Rising", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/f4e01fa7-b254-42dd-849f-69b58027a8c4", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aznr&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/znr?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/f6b2eba7-862a-4efd-9f65-065fb2070855/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A5825997b-10d7-4a36-972c-a80ddd90b8ed&unique=prints", "collector_number": "102", "digital": false, "rarity": "common", "flavor_text": "\"On vile wings and bloody wind, the swarm will rise.\"\n\u2014Skyclave inscription", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Andrey Kuzinskiy", "artist_ids": ["c04ff0b2-67a1-4238-82f7-6c67de734b56"], "illustration_id": "73e671d6-e2bc-4c02-b99a-18e5cb9ed048", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 107, "penny_rank": 320, "preview": {"source": "Deathsie", "source_uri": "https://twitter.com/Deathsie/status/1301451988454928390", "previewed_at": "2020-09-03"}, "prices": {"usd": "0.29", "usd_foil": "0.66", "usd_etched": null, "eur": "0.23", "eur_foil": "0.45", "tix": "0.01"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=491737", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Feed+the+Swarm&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Feed+the+Swarm&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Feed+the+Swarm"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/221953?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Feed+the+Swarm&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/83167?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "9597b163-5c6b-4f64-b1f1-5f1fa2e23e5d", "oracle_id": "83094dd2-b8e9-4753-a8a0-657b446def60", "multiverse_ids": [540843], "mtgo_id": 94314, "arena_id": 78791, "tcgplayer_id": 253745, "cardmarket_id": 583516, "name": "Fierce Retribution", "lang": "en", "released_at": "2021-11-19", "uri": "https://api.scryfall.com/cards/9597b163-5c6b-4f64-b1f1-5f1fa2e23e5d", "scryfall_uri": "https://scryfall.com/card/vow/13/fierce-retribution?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/9/5/9597b163-5c6b-4f64-b1f1-5f1fa2e23e5d.jpg?1643586258", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/5/9597b163-5c6b-4f64-b1f1-5f1fa2e23e5d.jpg?1643586258", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/9/5/9597b163-5c6b-4f64-b1f1-5f1fa2e23e5d.jpg?1643586258", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/9/5/9597b163-5c6b-4f64-b1f1-5f1fa2e23e5d.png?1643586258", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/5/9597b163-5c6b-4f64-b1f1-5f1fa2e23e5d.jpg?1643586258", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/9/5/9597b163-5c6b-4f64-b1f1-5f1fa2e23e5d.jpg?1643586258"}, "mana_cost": "{1}{W}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Cleave {5}{W} (You may cast this spell for its cleave cost. If you do, remove the words in square brackets.)\nDestroy target [attacking] creature.", "colors": ["W"], "color_identity": ["W"], "keywords": ["Cleave"], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "8144b676-569f-4716-8005-bc8f0778f3fa", "set": "vow", "set_name": "Innistrad: Crimson Vow", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/8144b676-569f-4716-8005-bc8f0778f3fa", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Avow&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/vow?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/9597b163-5c6b-4f64-b1f1-5f1fa2e23e5d/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A83094dd2-b8e9-4753-a8a0-657b446def60&unique=prints", "collector_number": "13", "digital": false, "rarity": "common", "flavor_text": "\"It won't bring them back, but it will bring me peace.\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Sidharth Chaturvedi", "artist_ids": ["55e6d846-2f73-4fba-9b88-441686bb8dcb"], "illustration_id": "b751706d-5d77-4f22-a416-5cf9dbcd0f6a", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 13394, "preview": {"source": "Wizards of the Coast", "source_uri": "https://magic.wizards.com/en/articles/archive/card-image-gallery/innistrad-crimson-vow", "previewed_at": "2021-11-05"}, "prices": {"usd": "0.01", "usd_foil": "0.05", "usd_etched": null, "eur": "0.02", "eur_foil": "0.05", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=540843", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Fierce+Retribution&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Fierce+Retribution&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Fierce+Retribution"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/253745?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Fierce+Retribution&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/94314?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "49a21a8f-9c7b-4ae8-8635-f2ee2151c8de", "oracle_id": "e47d57dc-2e69-4939-8aec-077595f2ae05", "multiverse_ids": [457315], "mtgo_id": 71342, "arena_id": 69299, "tcgplayer_id": 183355, "cardmarket_id": 368617, "name": "Final Payment", "lang": "en", "released_at": "2019-01-25", "uri": "https://api.scryfall.com/cards/49a21a8f-9c7b-4ae8-8635-f2ee2151c8de", "scryfall_uri": "https://scryfall.com/card/rna/171/final-payment?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/4/9/49a21a8f-9c7b-4ae8-8635-f2ee2151c8de.jpg?1584831505", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/9/49a21a8f-9c7b-4ae8-8635-f2ee2151c8de.jpg?1584831505", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/4/9/49a21a8f-9c7b-4ae8-8635-f2ee2151c8de.jpg?1584831505", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/4/9/49a21a8f-9c7b-4ae8-8635-f2ee2151c8de.png?1584831505", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/9/49a21a8f-9c7b-4ae8-8635-f2ee2151c8de.jpg?1584831505", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/4/9/49a21a8f-9c7b-4ae8-8635-f2ee2151c8de.jpg?1584831505"}, "mana_cost": "{W}{B}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "As an additional cost to cast this spell, pay 5 life or sacrifice a creature or enchantment.\nDestroy target creature.", "colors": ["B", "W"], "color_identity": ["B", "W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "97a7fd84-8d89-45a3-b48b-c951f6a3f9f1", "set": "rna", "set_name": "Ravnica Allegiance", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/97a7fd84-8d89-45a3-b48b-c951f6a3f9f1", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Arna&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/rna?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/49a21a8f-9c7b-4ae8-8635-f2ee2151c8de/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ae47d57dc-2e69-4939-8aec-077595f2ae05&unique=prints", "collector_number": "171", "digital": false, "rarity": "common", "watermark": "orzhov", "flavor_text": "There's nothing quite like the feeling of paying off a large debt.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Victor Adame Minguez", "artist_ids": ["bd8f7368-5b10-4554-b6b8-d052c6aca89f"], "illustration_id": "20c9c953-175b-4942-897b-178852d362fd", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 7266, "penny_rank": 7211, "prices": {"usd": "0.06", "usd_foil": "0.35", "usd_etched": null, "eur": "0.10", "eur_foil": "0.20", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=457315", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Final+Payment&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Final+Payment&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Final+Payment"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/183355?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Final+Payment&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/71342?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "5f4b7148-e98f-40a4-95e3-ffdd2daa324b", "oracle_id": "b78c9f83-5f13-473f-9639-ddb4fd8fe926", "multiverse_ids": [439444], "tcgplayer_id": 151983, "cardmarket_id": 313529, "name": "Finders, Keepers", "lang": "en", "released_at": "2017-12-08", "uri": "https://api.scryfall.com/cards/5f4b7148-e98f-40a4-95e3-ffdd2daa324b", "scryfall_uri": "https://scryfall.com/card/ust/55/finders-keepers?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/5/f/5f4b7148-e98f-40a4-95e3-ffdd2daa324b.jpg?1562914921", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/f/5f4b7148-e98f-40a4-95e3-ffdd2daa324b.jpg?1562914921", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/5/f/5f4b7148-e98f-40a4-95e3-ffdd2daa324b.jpg?1562914921", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/5/f/5f4b7148-e98f-40a4-95e3-ffdd2daa324b.png?1562914921", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/f/5f4b7148-e98f-40a4-95e3-ffdd2daa324b.jpg?1562914921", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/5/f/5f4b7148-e98f-40a4-95e3-ffdd2daa324b.jpg?1562914921"}, "mana_cost": "{5}{B}", "cmc": 6.0, "type_line": "Sorcery", "oracle_text": "Destroy target creature, then assemble a Contraption. (Put the top card of your Contraption deck face up onto one of your sprockets.)", "colors": ["B"], "color_identity": ["B"], "keywords": ["Assemble"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "not_legal", "pauper": "not_legal", "vintage": "not_legal", "penny": "not_legal", "commander": "not_legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "not_legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "83491685-880d-41dd-a4af-47d2b3b17c10", "set": "ust", "set_name": "Unstable", "set_type": "funny", "set_uri": "https://api.scryfall.com/sets/83491685-880d-41dd-a4af-47d2b3b17c10", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aust&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ust?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/5f4b7148-e98f-40a4-95e3-ffdd2daa324b/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ab78c9f83-5f13-473f-9639-ddb4fd8fe926&unique=prints", "collector_number": "55", "digital": false, "rarity": "common", "watermark": "agentsofsneak", "flavor_text": "The S.N.E.A.K. Code clearly permits looting corpses for parts. That just meant Agent 47.3 had to make sure her target was dead first.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Mark Behm", "artist_ids": ["ccf77963-723f-4137-b364-7417079e8ab9"], "illustration_id": "9f588559-5eba-4efe-9150-22d515ae829a", "border_color": "silver", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "prices": {"usd": "0.07", "usd_foil": "0.34", "usd_etched": null, "eur": "0.02", "eur_foil": "0.17", "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=439444", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Finders%2C+Keepers&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Finders%2C+Keepers&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Finders%2C+Keepers"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/151983?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Finders%2C+Keepers&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Finders%2C+Keepers&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "2b85a552-2119-4d9c-b7c1-c09c2d9f2f38", "oracle_id": "3c8a6c58-f4af-4809-af86-a931313fa71e", "multiverse_ids": [485422], "mtgo_id": 81425, "arena_id": 71881, "tcgplayer_id": 215675, "cardmarket_id": 470864, "name": "Finishing Blow", "lang": "en", "released_at": "2020-07-03", "uri": "https://api.scryfall.com/cards/2b85a552-2119-4d9c-b7c1-c09c2d9f2f38", "scryfall_uri": "https://scryfall.com/card/m21/99/finishing-blow?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/2/b/2b85a552-2119-4d9c-b7c1-c09c2d9f2f38.jpg?1594736130", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/b/2b85a552-2119-4d9c-b7c1-c09c2d9f2f38.jpg?1594736130", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/2/b/2b85a552-2119-4d9c-b7c1-c09c2d9f2f38.jpg?1594736130", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/2/b/2b85a552-2119-4d9c-b7c1-c09c2d9f2f38.png?1594736130", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/b/2b85a552-2119-4d9c-b7c1-c09c2d9f2f38.jpg?1594736130", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/2/b/2b85a552-2119-4d9c-b7c1-c09c2d9f2f38.jpg?1594736130"}, "mana_cost": "{4}{B}", "cmc": 5.0, "type_line": "Instant", "oracle_text": "Destroy target creature or planeswalker.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "bc94aba1-7376-4e02-a12d-3a2efb66ab0f", "set": "m21", "set_name": "Core Set 2021", "set_type": "core", "set_uri": "https://api.scryfall.com/sets/bc94aba1-7376-4e02-a12d-3a2efb66ab0f", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Am21&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/m21?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/2b85a552-2119-4d9c-b7c1-c09c2d9f2f38/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A3c8a6c58-f4af-4809-af86-a931313fa71e&unique=prints", "collector_number": "99", "digital": false, "rarity": "common", "flavor_text": "\"In this world, it's kill or be killed. I'd rather not be the latter.\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Wylie Beckert", "artist_ids": ["074daf3d-0849-4c4a-b5a5-c276384e81e5"], "illustration_id": "260ed0cc-b51b-47b9-9574-5b83de7ad1d7", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 12757, "preview": {"source": "GoodGame.ru", "source_uri": "https://goodgame.ru/news/29816/", "previewed_at": "2020-06-12"}, "prices": {"usd": "0.01", "usd_foil": "0.08", "usd_etched": null, "eur": "0.05", "eur_foil": "0.15", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=485422", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Finishing+Blow&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Finishing+Blow&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Finishing+Blow"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/215675?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Finishing+Blow&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/81425?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "aa2d778d-d74b-45ec-a86b-5d52ffad6ba5", "oracle_id": "c8b1e9f3-b014-4e57-b278-6d84a7e88b23", "multiverse_ids": [1789], "tcgplayer_id": 3516, "cardmarket_id": 7343, "name": "Fissure", "lang": "en", "released_at": "1994-08-01", "uri": "https://api.scryfall.com/cards/aa2d778d-d74b-45ec-a86b-5d52ffad6ba5", "scryfall_uri": "https://scryfall.com/card/drk/63/fissure?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/a/a/aa2d778d-d74b-45ec-a86b-5d52ffad6ba5.jpg?1562935207", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/a/aa2d778d-d74b-45ec-a86b-5d52ffad6ba5.jpg?1562935207", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/a/a/aa2d778d-d74b-45ec-a86b-5d52ffad6ba5.jpg?1562935207", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/a/a/aa2d778d-d74b-45ec-a86b-5d52ffad6ba5.png?1562935207", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/a/aa2d778d-d74b-45ec-a86b-5d52ffad6ba5.jpg?1562935207", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/a/a/aa2d778d-d74b-45ec-a86b-5d52ffad6ba5.jpg?1562935207"}, "mana_cost": "{3}{R}{R}", "cmc": 5.0, "type_line": "Instant", "oracle_text": "Destroy target creature or land. It can't be regenerated.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "legal", "premodern": "legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "a21c6836-c435-459a-81e3-22d2da174549", "set": "drk", "set_name": "The Dark", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/a21c6836-c435-459a-81e3-22d2da174549", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Adrk&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/drk?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/aa2d778d-d74b-45ec-a86b-5d52ffad6ba5/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ac8b1e9f3-b014-4e57-b278-6d84a7e88b23&unique=prints", "collector_number": "63", "digital": false, "rarity": "common", "flavor_text": "\"Must not all things at the last be swallowed up in death?\" \u2014Plato", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Douglas Shuler", "artist_ids": ["a9ddb513-51c7-455c-ab8f-5b90aae9f75b"], "illustration_id": "40f02f46-a0a0-476f-80c9-217b476d0106", "border_color": "black", "frame": "1993", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 14142, "penny_rank": 5583, "prices": {"usd": "0.24", "usd_foil": null, "usd_etched": null, "eur": "0.65", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=1789", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Fissure&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Fissure&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Fissure"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/3516?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Fissure&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Fissure&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "5ae88c06-f28c-4fbc-a28c-5eb203a04722", "oracle_id": "c2b5d847-f52a-43e3-a5d2-d53cae3d8936", "multiverse_ids": [1483], "tcgplayer_id": 3869, "cardmarket_id": 7028, "name": "Flash Flood", "lang": "en", "released_at": "1994-06-01", "uri": "https://api.scryfall.com/cards/5ae88c06-f28c-4fbc-a28c-5eb203a04722", "scryfall_uri": "https://scryfall.com/card/leg/57/flash-flood?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/5/a/5ae88c06-f28c-4fbc-a28c-5eb203a04722.jpg?1562859177", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/a/5ae88c06-f28c-4fbc-a28c-5eb203a04722.jpg?1562859177", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/5/a/5ae88c06-f28c-4fbc-a28c-5eb203a04722.jpg?1562859177", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/5/a/5ae88c06-f28c-4fbc-a28c-5eb203a04722.png?1562859177", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/a/5ae88c06-f28c-4fbc-a28c-5eb203a04722.jpg?1562859177", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/5/a/5ae88c06-f28c-4fbc-a28c-5eb203a04722.jpg?1562859177"}, "mana_cost": "{U}", "cmc": 1.0, "type_line": "Instant", "oracle_text": "Choose one \u2014\n\u2022 Destroy target red permanent.\n\u2022 Return target Mountain to its owner's hand.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "legal", "premodern": "legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "78c50b4b-b220-455b-a2d5-cee458fa56f3", "set": "leg", "set_name": "Legends", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/78c50b4b-b220-455b-a2d5-cee458fa56f3", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aleg&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/leg?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/5ae88c06-f28c-4fbc-a28c-5eb203a04722/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ac2b5d847-f52a-43e3-a5d2-d53cae3d8936&unique=prints", "collector_number": "57", "digital": false, "rarity": "common", "flavor_text": "Many people say that no power can bring the mountains low. Many people are fools.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Tom W\u00e4nerstrand", "artist_ids": ["c4e0aa7c-a008-4d71-80ce-d5a1ca0b251b"], "illustration_id": "03d6731d-f897-4004-b360-cdf66ee60a30", "border_color": "black", "frame": "1993", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 14591, "prices": {"usd": "0.36", "usd_foil": null, "usd_etched": null, "eur": "2.30", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=1483", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Flash+Flood&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Flash+Flood&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Flash+Flood"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/3869?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Flash+Flood&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Flash+Flood&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "9c729525-b954-42dd-9877-f4360d99b961", "oracle_id": "bd3ce6a2-9efc-4dab-a357-9f2aa0a4c0c6", "multiverse_ids": [208999], "mtgo_id": 38223, "mtgo_foil_id": 38224, "tcgplayer_id": 36459, "cardmarket_id": 242779, "name": "Flesh Allergy", "lang": "en", "released_at": "2010-10-01", "uri": "https://api.scryfall.com/cards/9c729525-b954-42dd-9877-f4360d99b961", "scryfall_uri": "https://scryfall.com/card/som/62/flesh-allergy?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/9/c/9c729525-b954-42dd-9877-f4360d99b961.jpg?1562820900", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/c/9c729525-b954-42dd-9877-f4360d99b961.jpg?1562820900", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/9/c/9c729525-b954-42dd-9877-f4360d99b961.jpg?1562820900", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/9/c/9c729525-b954-42dd-9877-f4360d99b961.png?1562820900", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/c/9c729525-b954-42dd-9877-f4360d99b961.jpg?1562820900", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/9/c/9c729525-b954-42dd-9877-f4360d99b961.jpg?1562820900"}, "mana_cost": "{2}{B}{B}", "cmc": 4.0, "type_line": "Sorcery", "oracle_text": "As an additional cost to cast this spell, sacrifice a creature.\nDestroy target creature. Its controller loses life equal to the number of creatures that died this turn.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "8f403072-9b22-4e69-8d59-22dc4c97fd8d", "set": "som", "set_name": "Scars of Mirrodin", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/8f403072-9b22-4e69-8d59-22dc4c97fd8d", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Asom&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/som?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/9c729525-b954-42dd-9877-f4360d99b961/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Abd3ce6a2-9efc-4dab-a357-9f2aa0a4c0c6&unique=prints", "collector_number": "62", "digital": false, "rarity": "uncommon", "watermark": "phyrexian", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Vance Kovacs", "artist_ids": ["b5516011-4722-4fc8-8542-102cecc52b71"], "illustration_id": "000e6e6a-1114-4cc9-84a3-964fb555640a", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 18732, "prices": {"usd": "0.09", "usd_foil": "0.23", "usd_etched": null, "eur": "1.00", "eur_foil": "0.40", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=208999", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Flesh+Allergy&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Flesh+Allergy&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Flesh+Allergy"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/36459?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Flesh+Allergy&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/38223?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "16b2e842-6c92-47b0-bed4-e0e64485f168", "oracle_id": "2f05f3ed-e3b7-4225-b3f2-c12eda335237", "multiverse_ids": [383240], "mtgo_id": 53764, "mtgo_foil_id": 53765, "tcgplayer_id": 90849, "cardmarket_id": 267194, "name": "Flesh to Dust", "lang": "en", "released_at": "2014-07-18", "uri": "https://api.scryfall.com/cards/16b2e842-6c92-47b0-bed4-e0e64485f168", "scryfall_uri": "https://scryfall.com/card/m15/98/flesh-to-dust?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/1/6/16b2e842-6c92-47b0-bed4-e0e64485f168.jpg?1562783120", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/6/16b2e842-6c92-47b0-bed4-e0e64485f168.jpg?1562783120", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/1/6/16b2e842-6c92-47b0-bed4-e0e64485f168.jpg?1562783120", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/1/6/16b2e842-6c92-47b0-bed4-e0e64485f168.png?1562783120", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/6/16b2e842-6c92-47b0-bed4-e0e64485f168.jpg?1562783120", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/1/6/16b2e842-6c92-47b0-bed4-e0e64485f168.jpg?1562783120"}, "mana_cost": "{3}{B}{B}", "cmc": 5.0, "type_line": "Instant", "oracle_text": "Destroy target creature. It can't be regenerated.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "6ce49890-3b37-42a5-8932-dbeef1d7b62c", "set": "m15", "set_name": "Magic 2015", "set_type": "core", "set_uri": "https://api.scryfall.com/sets/6ce49890-3b37-42a5-8932-dbeef1d7b62c", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Am15&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/m15?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/16b2e842-6c92-47b0-bed4-e0e64485f168/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A2f05f3ed-e3b7-4225-b3f2-c12eda335237&unique=prints", "collector_number": "98", "digital": false, "rarity": "common", "flavor_text": "\"Pain is temporary. So is life.\"\n\u2014Liliana Vess", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Julie Dillon", "artist_ids": ["ce8605ad-6d5a-45a3-a7b6-84be4f5209cd"], "illustration_id": "098742cc-8508-44be-b820-ad4f4b4d3bcf", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 17867, "penny_rank": 6101, "prices": {"usd": "0.04", "usd_foil": null, "usd_etched": null, "eur": "0.02", "eur_foil": "0.35", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=383240", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Flesh+to+Dust&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Flesh+to+Dust&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Flesh+to+Dust"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/90849?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Flesh+to+Dust&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/53764?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "87e4b75c-e993-4983-8933-977be314bba6", "oracle_id": "773c7a1e-0f59-4606-a2fc-c47bda760ecd", "multiverse_ids": [534872], "mtgo_id": 93158, "arena_id": 78443, "tcgplayer_id": 247868, "cardmarket_id": 574732, "name": "Foul Play", "lang": "en", "released_at": "2021-09-24", "uri": "https://api.scryfall.com/cards/87e4b75c-e993-4983-8933-977be314bba6", "scryfall_uri": "https://scryfall.com/card/mid/101/foul-play?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/8/7/87e4b75c-e993-4983-8933-977be314bba6.jpg?1634349812", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/7/87e4b75c-e993-4983-8933-977be314bba6.jpg?1634349812", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/8/7/87e4b75c-e993-4983-8933-977be314bba6.jpg?1634349812", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/8/7/87e4b75c-e993-4983-8933-977be314bba6.png?1634349812", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/7/87e4b75c-e993-4983-8933-977be314bba6.jpg?1634349812", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/8/7/87e4b75c-e993-4983-8933-977be314bba6.jpg?1634349812"}, "mana_cost": "{1}{B}", "cmc": 2.0, "type_line": "Sorcery", "oracle_text": "Destroy target creature with power 2 or less. Investigate. (Create a Clue token. It's an artifact with \"{2}, Sacrifice this artifact: Draw a card.\")", "colors": ["B"], "color_identity": ["B"], "keywords": ["Investigate"], "all_parts": [{"object": "related_card", "id": "87e4b75c-e993-4983-8933-977be314bba6", "component": "combo_piece", "name": "Foul Play", "type_line": "Sorcery", "uri": "https://api.scryfall.com/cards/87e4b75c-e993-4983-8933-977be314bba6"}, {"object": "related_card", "id": "d45eca06-2ef2-47ef-a0ab-6766bbd3ab8b", "component": "token", "name": "Clue", "type_line": "Token Artifact \u2014 Clue", "uri": "https://api.scryfall.com/cards/d45eca06-2ef2-47ef-a0ab-6766bbd3ab8b"}], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "44b8eb8f-fa23-401a-98b5-1fbb9871128e", "set": "mid", "set_name": "Innistrad: Midnight Hunt", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/44b8eb8f-fa23-401a-98b5-1fbb9871128e", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Amid&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/mid?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/87e4b75c-e993-4983-8933-977be314bba6/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A773c7a1e-0f59-4606-a2fc-c47bda760ecd&unique=prints", "collector_number": "101", "digital": false, "rarity": "uncommon", "flavor_text": "The evidence was overwhelming. Tovolar's howlpack was getting bolder, smarter, and stronger.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Campbell White", "artist_ids": ["d281eab4-463a-4ba8-9039-8943737960a0"], "illustration_id": "85f629e9-e3f0-461b-a26c-4f5fc40d7368", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 12767, "penny_rank": 9671, "preview": {"source": "Good Games", "source_uri": "https://www.instagram.com/p/CTV02EaBwlI/", "previewed_at": "2021-09-02"}, "prices": {"usd": "0.02", "usd_foil": "0.04", "usd_etched": null, "eur": "0.02", "eur_foil": "0.14", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=534872", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Foul+Play&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Foul+Play&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Foul+Play"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/247868?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Foul+Play&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/93158?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "efa53e9a-0d7c-4d17-b2be-56930edfa2c2", "oracle_id": "a9e33138-e1c0-4b69-b868-1ce8493c073d", "multiverse_ids": [2727], "tcgplayer_id": 4689, "cardmarket_id": 6581, "name": "Fumarole", "lang": "en", "released_at": "1995-06-03", "uri": "https://api.scryfall.com/cards/efa53e9a-0d7c-4d17-b2be-56930edfa2c2", "scryfall_uri": "https://scryfall.com/card/ice/291/fumarole?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/e/f/efa53e9a-0d7c-4d17-b2be-56930edfa2c2.jpg?1562940031", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/f/efa53e9a-0d7c-4d17-b2be-56930edfa2c2.jpg?1562940031", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/e/f/efa53e9a-0d7c-4d17-b2be-56930edfa2c2.jpg?1562940031", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/e/f/efa53e9a-0d7c-4d17-b2be-56930edfa2c2.png?1562940031", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/f/efa53e9a-0d7c-4d17-b2be-56930edfa2c2.jpg?1562940031", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/e/f/efa53e9a-0d7c-4d17-b2be-56930edfa2c2.jpg?1562940031"}, "mana_cost": "{3}{B}{R}", "cmc": 5.0, "type_line": "Sorcery", "oracle_text": "As an additional cost to cast this spell, pay 3 life.\nDestroy target creature and target land.", "colors": ["B", "R"], "color_identity": ["B", "R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "b0e08eea-5c01-4406-a6e2-dcd09c5e5b67", "set": "ice", "set_name": "Ice Age", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/b0e08eea-5c01-4406-a6e2-dcd09c5e5b67", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aice&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ice?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/efa53e9a-0d7c-4d17-b2be-56930edfa2c2/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aa9e33138-e1c0-4b69-b868-1ce8493c073d&unique=prints", "collector_number": "291", "digital": false, "rarity": "uncommon", "flavor_text": "\"Too many of us have died in the explosions that wrack these hills.\"\n\u2014Klazina Jansdotter, Leader of the Order of the Sacred Torch", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Drew Tucker", "artist_ids": ["22eef389-7b21-4dda-95dc-4c9a0f1bf4dd"], "illustration_id": "54e2988c-3be2-4706-addd-f1b5c65c005e", "border_color": "black", "frame": "1993", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 20463, "penny_rank": 7651, "prices": {"usd": "0.17", "usd_foil": null, "usd_etched": null, "eur": "0.11", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=2727", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Fumarole&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Fumarole&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Fumarole"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/4689?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Fumarole&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Fumarole&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "10d01449-3e4e-44ef-90aa-9489c86c57df", "oracle_id": "dea311c3-9be3-4059-a206-5fbbdca4d6c9", "multiverse_ids": [446015], "tcgplayer_id": 167812, "cardmarket_id": 358609, "name": "Gang Up", "lang": "en", "released_at": "2018-06-08", "uri": "https://api.scryfall.com/cards/10d01449-3e4e-44ef-90aa-9489c86c57df", "scryfall_uri": "https://scryfall.com/card/bbd/47/gang-up?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/1/0/10d01449-3e4e-44ef-90aa-9489c86c57df.jpg?1595438095", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/0/10d01449-3e4e-44ef-90aa-9489c86c57df.jpg?1595438095", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/1/0/10d01449-3e4e-44ef-90aa-9489c86c57df.jpg?1595438095", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/1/0/10d01449-3e4e-44ef-90aa-9489c86c57df.png?1595438095", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/0/10d01449-3e4e-44ef-90aa-9489c86c57df.jpg?1595438095", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/1/0/10d01449-3e4e-44ef-90aa-9489c86c57df.jpg?1595438095"}, "mana_cost": "{X}{B}", "cmc": 1.0, "type_line": "Instant", "oracle_text": "Assist (Another player can pay up to {X} of this spell's cost. You choose the value of X.)\nDestroy target creature with power X or less.", "colors": ["B"], "color_identity": ["B"], "keywords": ["Assist"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "95f97fbc-58ef-4645-982e-43e2db6f1124", "set": "bbd", "set_name": "Battlebond", "set_type": "draft_innovation", "set_uri": "https://api.scryfall.com/sets/95f97fbc-58ef-4645-982e-43e2db6f1124", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Abbd&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/bbd?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/10d01449-3e4e-44ef-90aa-9489c86c57df/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Adea311c3-9be3-4059-a206-5fbbdca4d6c9&unique=prints", "collector_number": "47", "digital": false, "rarity": "uncommon", "flavor_text": "\"Well, who do we have here, Gorm?\"\n\"No one, Virtus. No one at all.\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Aaron Miller", "artist_ids": ["fc021f3d-773a-4706-bbe7-f602324f511f"], "illustration_id": "8d30daec-f319-4c7c-85eb-604a33d48904", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 11859, "prices": {"usd": "0.12", "usd_foil": "0.47", "usd_etched": null, "eur": "0.05", "eur_foil": "1.05", "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=446015", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Gang+Up&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Gang+Up&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Gang+Up"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/167812?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Gang+Up&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Gang+Up&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "821c4ab5-eb75-445a-bbec-e50af54dba7a", "oracle_id": "57c704bc-8dff-4b90-b4e1-38d12e41b3d1", "multiverse_ids": [457320], "mtgo_id": 71352, "arena_id": 69304, "tcgplayer_id": 183359, "cardmarket_id": 368618, "name": "Get the Point", "lang": "en", "released_at": "2019-01-25", "uri": "https://api.scryfall.com/cards/821c4ab5-eb75-445a-bbec-e50af54dba7a", "scryfall_uri": "https://scryfall.com/card/rna/176/get-the-point?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/8/2/821c4ab5-eb75-445a-bbec-e50af54dba7a.jpg?1584831541", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/2/821c4ab5-eb75-445a-bbec-e50af54dba7a.jpg?1584831541", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/8/2/821c4ab5-eb75-445a-bbec-e50af54dba7a.jpg?1584831541", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/8/2/821c4ab5-eb75-445a-bbec-e50af54dba7a.png?1584831541", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/2/821c4ab5-eb75-445a-bbec-e50af54dba7a.jpg?1584831541", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/8/2/821c4ab5-eb75-445a-bbec-e50af54dba7a.jpg?1584831541"}, "mana_cost": "{3}{B}{R}", "cmc": 5.0, "type_line": "Instant", "oracle_text": "Destroy target creature. Scry 1.", "colors": ["B", "R"], "color_identity": ["B", "R"], "keywords": ["Scry"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "97a7fd84-8d89-45a3-b48b-c951f6a3f9f1", "set": "rna", "set_name": "Ravnica Allegiance", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/97a7fd84-8d89-45a3-b48b-c951f6a3f9f1", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Arna&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/rna?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/821c4ab5-eb75-445a-bbec-e50af54dba7a/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A57c704bc-8dff-4b90-b4e1-38d12e41b3d1&unique=prints", "collector_number": "176", "digital": false, "rarity": "common", "watermark": "rakdos", "flavor_text": "\"Vraska sees the grandeur in death but misses the hilarity.\"\n\u2014Judith", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Steve Argyle", "artist_ids": ["a44ddda4-5331-4f83-aac9-3e00ed36bd7b"], "illustration_id": "8b8e274a-0bb7-4b38-af0f-3f43411feb1c", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 15846, "prices": {"usd": "0.01", "usd_foil": null, "usd_etched": null, "eur": "0.05", "eur_foil": "0.07", "tix": "0.04"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=457320", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Get+the+Point&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Get+the+Point&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Get+the+Point"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/183359?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Get+the+Point&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/71352?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "d9d2bfa3-0499-43ea-a76d-b12fddbc104e", "oracle_id": "e02e7239-304b-4755-b913-bb65bc693e86", "multiverse_ids": [29744], "mtgo_id": 16813, "mtgo_foil_id": 16814, "tcgplayer_id": 9414, "cardmarket_id": 2551, "name": "Ghastly Demise", "lang": "en", "released_at": "2001-10-01", "uri": "https://api.scryfall.com/cards/d9d2bfa3-0499-43ea-a76d-b12fddbc104e", "scryfall_uri": "https://scryfall.com/card/ody/139/ghastly-demise?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/d/9/d9d2bfa3-0499-43ea-a76d-b12fddbc104e.jpg?1562935702", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/9/d9d2bfa3-0499-43ea-a76d-b12fddbc104e.jpg?1562935702", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/d/9/d9d2bfa3-0499-43ea-a76d-b12fddbc104e.jpg?1562935702", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/d/9/d9d2bfa3-0499-43ea-a76d-b12fddbc104e.png?1562935702", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/9/d9d2bfa3-0499-43ea-a76d-b12fddbc104e.jpg?1562935702", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/d/9/d9d2bfa3-0499-43ea-a76d-b12fddbc104e.jpg?1562935702"}, "mana_cost": "{B}", "cmc": 1.0, "type_line": "Instant", "oracle_text": "Destroy target nonblack creature if its toughness is less than or equal to the number of cards in your graveyard.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "b0d90d2d-494a-4224-bfa0-36ce5ee281b1", "set": "ody", "set_name": "Odyssey", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/b0d90d2d-494a-4224-bfa0-36ce5ee281b1", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aody&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ody?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/d9d2bfa3-0499-43ea-a76d-b12fddbc104e/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ae02e7239-304b-4755-b913-bb65bc693e86&unique=prints", "collector_number": "139", "digital": false, "rarity": "common", "flavor_text": "\"Anyone can snap her fingers and yank a soul. I prefer to kill creatively.\"\n\u2014Braids, dementia summoner", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Gary Ruddell", "artist_ids": ["086111c7-93f0-4bab-b339-6fe1c00d693c"], "illustration_id": "6c3cb7af-1721-4304-97b3-255dfe26339d", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 7791, "penny_rank": 2140, "prices": {"usd": "0.30", "usd_foil": "4.05", "usd_etched": null, "eur": "0.10", "eur_foil": "3.50", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=29744", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Ghastly+Demise&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Ghastly+Demise&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Ghastly+Demise"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/9414?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Ghastly+Demise&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/16813?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "06f6938a-229a-4521-b5d5-7999ce5fb372", "oracle_id": "73b6694a-47d4-417a-af9b-470da14b5b0e", "multiverse_ids": [10546], "tcgplayer_id": 468, "cardmarket_id": 11269, "name": "Ghostly Visit", "lang": "en", "released_at": "1999-07-06", "uri": "https://api.scryfall.com/cards/06f6938a-229a-4521-b5d5-7999ce5fb372", "scryfall_uri": "https://scryfall.com/card/ptk/76/ghostly-visit?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/0/6/06f6938a-229a-4521-b5d5-7999ce5fb372.jpg?1562255824", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/6/06f6938a-229a-4521-b5d5-7999ce5fb372.jpg?1562255824", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/0/6/06f6938a-229a-4521-b5d5-7999ce5fb372.jpg?1562255824", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/0/6/06f6938a-229a-4521-b5d5-7999ce5fb372.png?1562255824", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/6/06f6938a-229a-4521-b5d5-7999ce5fb372.jpg?1562255824", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/0/6/06f6938a-229a-4521-b5d5-7999ce5fb372.jpg?1562255824"}, "mana_cost": "{2}{B}", "cmc": 3.0, "type_line": "Sorcery", "oracle_text": "Destroy target nonblack creature.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "2676ff2e-9d86-4b5b-b935-e84e41b0755e", "set": "ptk", "set_name": "Portal Three Kingdoms", "set_type": "starter", "set_uri": "https://api.scryfall.com/sets/2676ff2e-9d86-4b5b-b935-e84e41b0755e", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aptk&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ptk?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/06f6938a-229a-4521-b5d5-7999ce5fb372/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A73b6694a-47d4-417a-af9b-470da14b5b0e&unique=prints", "collector_number": "76", "digital": false, "rarity": "common", "flavor_text": "Cao Cao was haunted to death by the ghosts of the empresses and other high courtiers he had murdered.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Kang Yu", "artist_ids": ["f238555b-3484-4d1a-bccc-ca9466af9c4f"], "illustration_id": "367a8ff3-bb20-493b-9155-a25b25bbe209", "border_color": "white", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 22128, "penny_rank": 9205, "prices": {"usd": "3.47", "usd_foil": null, "usd_etched": null, "eur": "0.36", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=10546", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Ghostly+Visit&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Ghostly+Visit&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Ghostly+Visit"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/468?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Ghostly+Visit&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Ghostly+Visit&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "7b45bfb2-7c48-4da5-a0fd-29d353221814", "oracle_id": "2aa040d2-35a1-4b1d-9542-395e1b8a9fd8", "multiverse_ids": [158757], "mtgo_id": 29817, "mtgo_foil_id": 29818, "tcgplayer_id": 18647, "cardmarket_id": 19081, "name": "Gloomlance", "lang": "en", "released_at": "2008-05-02", "uri": "https://api.scryfall.com/cards/7b45bfb2-7c48-4da5-a0fd-29d353221814", "scryfall_uri": "https://scryfall.com/card/shm/67/gloomlance?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/7/b/7b45bfb2-7c48-4da5-a0fd-29d353221814.jpg?1562832072", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/b/7b45bfb2-7c48-4da5-a0fd-29d353221814.jpg?1562832072", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/7/b/7b45bfb2-7c48-4da5-a0fd-29d353221814.jpg?1562832072", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/7/b/7b45bfb2-7c48-4da5-a0fd-29d353221814.png?1562832072", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/b/7b45bfb2-7c48-4da5-a0fd-29d353221814.jpg?1562832072", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/7/b/7b45bfb2-7c48-4da5-a0fd-29d353221814.jpg?1562832072"}, "mana_cost": "{3}{B}{B}", "cmc": 5.0, "type_line": "Sorcery", "oracle_text": "Destroy target creature. If that creature was green or white, its controller discards a card.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "c18c0ba1-2081-4808-9b2e-549bc3a666f3", "set": "shm", "set_name": "Shadowmoor", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/c18c0ba1-2081-4808-9b2e-549bc3a666f3", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ashm&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/shm?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/7b45bfb2-7c48-4da5-a0fd-29d353221814/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A2aa040d2-35a1-4b1d-9542-395e1b8a9fd8&unique=prints", "collector_number": "67", "digital": false, "rarity": "common", "flavor_text": "Death stings the victim only once, but those left behind feel the pain of loss with every passing memory.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Zoltan Boros & Gabor Szikszai", "artist_ids": ["1885e6cb-c827-4896-994e-3d0a027d602f", "44c3877f-8771-43dc-9e40-f4c765f59d2e"], "illustration_id": "e9c9264e-e1cf-4f55-b1ce-d8a5f2be1b6c", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 22561, "prices": {"usd": "0.05", "usd_foil": "0.29", "usd_etched": null, "eur": "0.02", "eur_foil": "0.20", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=158757", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Gloomlance&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Gloomlance&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Gloomlance"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/18647?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Gloomlance&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/29817?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "59b989b4-692c-4ccb-a290-0ff00abacba9", "oracle_id": "3ceae65e-938d-4e76-b3f6-7be70232549e", "multiverse_ids": [154394], "mtgo_id": 29689, "mtgo_foil_id": 29690, "tcgplayer_id": 18649, "cardmarket_id": 19132, "name": "Gloomwidow's Feast", "lang": "en", "released_at": "2008-05-02", "uri": "https://api.scryfall.com/cards/59b989b4-692c-4ccb-a290-0ff00abacba9", "scryfall_uri": "https://scryfall.com/card/shm/118/gloomwidows-feast?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/5/9/59b989b4-692c-4ccb-a290-0ff00abacba9.jpg?1562830513", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/9/59b989b4-692c-4ccb-a290-0ff00abacba9.jpg?1562830513", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/5/9/59b989b4-692c-4ccb-a290-0ff00abacba9.jpg?1562830513", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/5/9/59b989b4-692c-4ccb-a290-0ff00abacba9.png?1562830513", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/9/59b989b4-692c-4ccb-a290-0ff00abacba9.jpg?1562830513", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/5/9/59b989b4-692c-4ccb-a290-0ff00abacba9.jpg?1562830513"}, "mana_cost": "{3}{G}", "cmc": 4.0, "type_line": "Instant", "oracle_text": "Destroy target creature with flying. If that creature was blue or black, create a 1/2 green Spider creature token with reach. (It can block creatures with flying.)", "colors": ["G"], "color_identity": ["G"], "keywords": [], "all_parts": [{"object": "related_card", "id": "59b989b4-692c-4ccb-a290-0ff00abacba9", "component": "combo_piece", "name": "Gloomwidow's Feast", "type_line": "Instant", "uri": "https://api.scryfall.com/cards/59b989b4-692c-4ccb-a290-0ff00abacba9"}, {"object": "related_card", "id": "7df0de51-8d05-475a-832e-de8a0f60849e", "component": "token", "name": "Spider", "type_line": "Token Creature \u2014 Spider", "uri": "https://api.scryfall.com/cards/7df0de51-8d05-475a-832e-de8a0f60849e"}], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "c18c0ba1-2081-4808-9b2e-549bc3a666f3", "set": "shm", "set_name": "Shadowmoor", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/c18c0ba1-2081-4808-9b2e-549bc3a666f3", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ashm&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/shm?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/59b989b4-692c-4ccb-a290-0ff00abacba9/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A3ceae65e-938d-4e76-b3f6-7be70232549e&unique=prints", "collector_number": "118", "digital": false, "rarity": "common", "flavor_text": "Each night, gloomwidows cull fresh prey for their ravenous hatchlings.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Thomas M. Baxa", "artist_ids": ["ff346569-557d-4043-ae44-97c2c7cabd7d"], "illustration_id": "7f4c68b6-6186-4c10-82d3-7805a9a49acd", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 15847, "prices": {"usd": "0.22", "usd_foil": "0.28", "usd_etched": null, "eur": "0.02", "eur_foil": "0.40", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=154394", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Gloomwidow%27s+Feast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Gloomwidow%27s+Feast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Gloomwidow%27s+Feast"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/18649?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Gloomwidow%27s+Feast&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/29689?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "3c6cb231-41df-409c-923e-100319f27ee3", "oracle_id": "2f092562-9e17-43cd-aeb8-d0567f99363e", "multiverse_ids": [433046], "tcgplayer_id": 139952, "cardmarket_id": 300431, "name": "Go for the Throat", "lang": "en", "released_at": "2017-08-25", "uri": "https://api.scryfall.com/cards/3c6cb231-41df-409c-923e-100319f27ee3", "scryfall_uri": "https://scryfall.com/card/c17/114/go-for-the-throat?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/3/c/3c6cb231-41df-409c-923e-100319f27ee3.jpg?1562605365", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/c/3c6cb231-41df-409c-923e-100319f27ee3.jpg?1562605365", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/3/c/3c6cb231-41df-409c-923e-100319f27ee3.jpg?1562605365", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/3/c/3c6cb231-41df-409c-923e-100319f27ee3.png?1562605365", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/c/3c6cb231-41df-409c-923e-100319f27ee3.jpg?1562605365", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/3/c/3c6cb231-41df-409c-923e-100319f27ee3.jpg?1562605365"}, "mana_cost": "{1}{B}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Destroy target nonartifact creature.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "5caec427-0c78-4c37-b4ec-30f7e0ba9abf", "set": "c17", "set_name": "Commander 2017", "set_type": "commander", "set_uri": "https://api.scryfall.com/sets/5caec427-0c78-4c37-b4ec-30f7e0ba9abf", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ac17&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/c17?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/3c6cb231-41df-409c-923e-100319f27ee3/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A2f092562-9e17-43cd-aeb8-d0567f99363e&unique=prints", "collector_number": "114", "digital": false, "rarity": "uncommon", "flavor_text": "Having flesh is increasingly a liability on Mirrodin.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "David Rapoza", "artist_ids": ["c5a2318d-5d04-499f-b121-57dee5a9dfe6"], "illustration_id": "55636be5-281c-439d-adbe-a4cb3cbaf1b5", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "edhrec_rank": 639, "penny_rank": 172, "prices": {"usd": "0.90", "usd_foil": null, "usd_etched": null, "eur": "0.70", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=433046", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Go+for+the+Throat&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Go+for+the+Throat&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Go+for+the+Throat"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/139952?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Go+for+the+Throat&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Go+for+the+Throat&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "a3109aaa-b1e9-4c68-85f0-7515c8eeadc3", "oracle_id": "2f092562-9e17-43cd-aeb8-d0567f99363e", "multiverse_ids": [], "tcgplayer_id": 57259, "cardmarket_id": 251829, "name": "Go for the Throat", "lang": "en", "released_at": "2011-01-01", "uri": "https://api.scryfall.com/cards/a3109aaa-b1e9-4c68-85f0-7515c8eeadc3", "scryfall_uri": "https://scryfall.com/card/f11/11/go-for-the-throat?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/a/3/a3109aaa-b1e9-4c68-85f0-7515c8eeadc3.jpg?1562636862", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/3/a3109aaa-b1e9-4c68-85f0-7515c8eeadc3.jpg?1562636862", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/a/3/a3109aaa-b1e9-4c68-85f0-7515c8eeadc3.jpg?1562636862", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/a/3/a3109aaa-b1e9-4c68-85f0-7515c8eeadc3.png?1562636862", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/3/a3109aaa-b1e9-4c68-85f0-7515c8eeadc3.jpg?1562636862", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/a/3/a3109aaa-b1e9-4c68-85f0-7515c8eeadc3.jpg?1562636862"}, "mana_cost": "{1}{B}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Destroy target nonartifact creature.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": true, "nonfoil": false, "finishes": ["foil"], "oversized": false, "promo": true, "reprint": true, "variation": false, "set_id": "757ed42f-384b-450d-ab70-217cadca2847", "set": "f11", "set_name": "Friday Night Magic 2011", "set_type": "promo", "set_uri": "https://api.scryfall.com/sets/757ed42f-384b-450d-ab70-217cadca2847", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Af11&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/f11?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/a3109aaa-b1e9-4c68-85f0-7515c8eeadc3/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A2f092562-9e17-43cd-aeb8-d0567f99363e&unique=prints", "collector_number": "11", "digital": false, "rarity": "rare", "watermark": "wotc", "flavor_text": "Having flesh is increasingly a liability on Mirrodin.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "David Rapoza", "artist_ids": ["c5a2318d-5d04-499f-b121-57dee5a9dfe6"], "illustration_id": "be8ebef7-34fd-45ed-8196-e4809cac176c", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "promo_types": ["tourney", "fnm"], "edhrec_rank": 639, "penny_rank": 172, "prices": {"usd": null, "usd_foil": "8.18", "usd_etched": null, "eur": null, "eur_foil": "4.99", "tix": null}, "related_uris": {"tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Go+for+the+Throat&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Go+for+the+Throat&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Go+for+the+Throat"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/57259?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Go+for+the+Throat&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Go+for+the+Throat&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "b98e0ab1-dea8-492b-a712-2057f2b1d020", "oracle_id": "8060dc97-9868-4846-85f4-0ef70da2b021", "multiverse_ids": [527393], "mtgo_id": 91714, "arena_id": 77211, "tcgplayer_id": 243589, "cardmarket_id": 571885, "name": "Grim Bounty", "lang": "en", "released_at": "2021-07-23", "uri": "https://api.scryfall.com/cards/b98e0ab1-dea8-492b-a712-2057f2b1d020", "scryfall_uri": "https://scryfall.com/card/afr/106/grim-bounty?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/b/9/b98e0ab1-dea8-492b-a712-2057f2b1d020.jpg?1627704924", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/9/b98e0ab1-dea8-492b-a712-2057f2b1d020.jpg?1627704924", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/b/9/b98e0ab1-dea8-492b-a712-2057f2b1d020.jpg?1627704924", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/b/9/b98e0ab1-dea8-492b-a712-2057f2b1d020.png?1627704924", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/9/b98e0ab1-dea8-492b-a712-2057f2b1d020.jpg?1627704924", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/b/9/b98e0ab1-dea8-492b-a712-2057f2b1d020.jpg?1627704924"}, "mana_cost": "{2}{B}{B}", "cmc": 4.0, "type_line": "Sorcery", "oracle_text": "Destroy target creature or planeswalker. Create a Treasure token. (It's an artifact with \"{T}, Sacrifice this artifact: Add one mana of any color.\")", "colors": ["B"], "color_identity": ["B"], "keywords": [], "produced_mana": ["B", "G", "R", "U", "W"], "all_parts": [{"object": "related_card", "id": "b98e0ab1-dea8-492b-a712-2057f2b1d020", "component": "combo_piece", "name": "Grim Bounty", "type_line": "Sorcery", "uri": "https://api.scryfall.com/cards/b98e0ab1-dea8-492b-a712-2057f2b1d020"}, {"object": "related_card", "id": "a3a684b7-27e0-4d9e-a064-9e03c6e50c89", "component": "token", "name": "Treasure", "type_line": "Token Artifact \u2014 Treasure", "uri": "https://api.scryfall.com/cards/a3a684b7-27e0-4d9e-a064-9e03c6e50c89"}], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "e1ef87ba-ba92-4573-817f-543b996d2851", "set": "afr", "set_name": "Adventures in the Forgotten Realms", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/e1ef87ba-ba92-4573-817f-543b996d2851", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aafr&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/afr?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/b98e0ab1-dea8-492b-a712-2057f2b1d020/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A8060dc97-9868-4846-85f4-0ef70da2b021&unique=prints", "collector_number": "106", "digital": false, "rarity": "common", "flavor_text": "Freed from the need to pay tribute to the dragon, the villages gladly paid the dragon-slayers instead.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Justine Cruz", "artist_ids": ["4d6acc42-7bac-42cb-ac57-a56355292e89"], "illustration_id": "b316968f-8df8-4a0b-b08d-2b6a814df775", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 7179, "penny_rank": 13572, "prices": {"usd": "0.05", "usd_foil": "0.07", "usd_etched": null, "eur": "0.14", "eur_foil": "0.05", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=527393", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Grim+Bounty&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Grim+Bounty&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Grim+Bounty"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/243589?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Grim+Bounty&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/91714?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "53cdf2ab-3acd-49bd-8273-84c1cfc92883", "oracle_id": "56c78349-e4fa-48ba-ae8e-d2312ae6edc6", "multiverse_ids": [540964], "mtgo_id": 94556, "arena_id": 78912, "tcgplayer_id": 253728, "cardmarket_id": 583554, "name": "Grisly Ritual", "lang": "en", "released_at": "2021-11-19", "uri": "https://api.scryfall.com/cards/53cdf2ab-3acd-49bd-8273-84c1cfc92883", "scryfall_uri": "https://scryfall.com/card/vow/116/grisly-ritual?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/5/3/53cdf2ab-3acd-49bd-8273-84c1cfc92883.jpg?1643589817", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/3/53cdf2ab-3acd-49bd-8273-84c1cfc92883.jpg?1643589817", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/5/3/53cdf2ab-3acd-49bd-8273-84c1cfc92883.jpg?1643589817", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/5/3/53cdf2ab-3acd-49bd-8273-84c1cfc92883.png?1643589817", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/3/53cdf2ab-3acd-49bd-8273-84c1cfc92883.jpg?1643589817", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/5/3/53cdf2ab-3acd-49bd-8273-84c1cfc92883.jpg?1643589817"}, "mana_cost": "{5}{B}", "cmc": 6.0, "type_line": "Sorcery", "oracle_text": "Destroy target creature or planeswalker. Create two Blood tokens. (They're artifacts with \"{1}, {T}, Discard a card, Sacrifice this artifact: Draw a card.\")", "colors": ["B"], "color_identity": ["B"], "keywords": [], "all_parts": [{"object": "related_card", "id": "53cdf2ab-3acd-49bd-8273-84c1cfc92883", "component": "combo_piece", "name": "Grisly Ritual", "type_line": "Sorcery", "uri": "https://api.scryfall.com/cards/53cdf2ab-3acd-49bd-8273-84c1cfc92883"}, {"object": "related_card", "id": "a6f374bc-cd29-469f-808a-6a6c004ee8aa", "component": "token", "name": "Blood", "type_line": "Token Artifact \u2014 Blood", "uri": "https://api.scryfall.com/cards/a6f374bc-cd29-469f-808a-6a6c004ee8aa"}], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "8144b676-569f-4716-8005-bc8f0778f3fa", "set": "vow", "set_name": "Innistrad: Crimson Vow", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/8144b676-569f-4716-8005-bc8f0778f3fa", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Avow&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/vow?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/53cdf2ab-3acd-49bd-8273-84c1cfc92883/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A56c78349-e4fa-48ba-ae8e-d2312ae6edc6&unique=prints", "collector_number": "116", "digital": false, "rarity": "common", "flavor_text": "\"You can always tell who's new from the screaming.\"\n\u2014Tinua, Skirsdag cultist", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Anastasia Ovchinnikova", "artist_ids": ["3605d81f-5c97-4958-9dcc-d44a85e10305"], "illustration_id": "a0c0caad-0e97-4dc9-a591-a582e54ea808", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 13523, "preview": {"source": "Wizards of the Coast", "source_uri": "https://magic.wizards.com/en/articles/archive/card-image-gallery/innistrad-crimson-vow", "previewed_at": "2021-11-05"}, "prices": {"usd": "0.01", "usd_foil": "0.03", "usd_etched": null, "eur": "0.10", "eur_foil": "0.10", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=540964", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Grisly+Ritual&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Grisly+Ritual&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Grisly+Ritual"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/253728?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Grisly+Ritual&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/94556?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "c26d0f6e-e7bd-4206-a0da-1c9c203a73f2", "oracle_id": "8c83d21a-6138-409f-8e00-75dcd14388e2", "multiverse_ids": [366396], "mtgo_id": 47725, "mtgo_foil_id": 47726, "tcgplayer_id": 67578, "cardmarket_id": 260019, "name": "Grisly Spectacle", "lang": "en", "released_at": "2013-02-01", "uri": "https://api.scryfall.com/cards/c26d0f6e-e7bd-4206-a0da-1c9c203a73f2", "scryfall_uri": "https://scryfall.com/card/gtc/66/grisly-spectacle?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/c/2/c26d0f6e-e7bd-4206-a0da-1c9c203a73f2.jpg?1561844583", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/2/c26d0f6e-e7bd-4206-a0da-1c9c203a73f2.jpg?1561844583", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/c/2/c26d0f6e-e7bd-4206-a0da-1c9c203a73f2.jpg?1561844583", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/c/2/c26d0f6e-e7bd-4206-a0da-1c9c203a73f2.png?1561844583", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/2/c26d0f6e-e7bd-4206-a0da-1c9c203a73f2.jpg?1561844583", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/c/2/c26d0f6e-e7bd-4206-a0da-1c9c203a73f2.jpg?1561844583"}, "mana_cost": "{2}{B}{B}", "cmc": 4.0, "type_line": "Instant", "oracle_text": "Destroy target nonartifact creature. Its controller mills cards equal to that creature's power.", "colors": ["B"], "color_identity": ["B"], "keywords": ["Mill"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "035a05f7-e020-4f50-a141-ed16ba704bd2", "set": "gtc", "set_name": "Gatecrash", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/035a05f7-e020-4f50-a141-ed16ba704bd2", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Agtc&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/gtc?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/c26d0f6e-e7bd-4206-a0da-1c9c203a73f2/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A8c83d21a-6138-409f-8e00-75dcd14388e2&unique=prints", "collector_number": "66", "digital": false, "rarity": "common", "flavor_text": "\"Watch people flock to a murder scene. Then tell me we're not all a little sick in the head.\"\n\u2014Juri, proprietor of the Juri Revue", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Zoltan Boros", "artist_ids": ["1885e6cb-c827-4896-994e-3d0a027d602f"], "illustration_id": "2c59b24d-75a3-453f-ae5b-05af8e2ab234", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 5645, "penny_rank": 8679, "prices": {"usd": "0.12", "usd_foil": "0.30", "usd_etched": null, "eur": "0.09", "eur_foil": "0.40", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=366396", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Grisly+Spectacle&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Grisly+Spectacle&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Grisly+Spectacle"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/67578?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Grisly+Spectacle&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/47725?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "cd552f81-1947-47e0-beee-f04e73551055", "oracle_id": "b433cf1f-a7f3-4b68-8bfb-e4196f6e3a12", "multiverse_ids": [562907], "mtgo_id": 100042, "tcgplayer_id": 273316, "cardmarket_id": 660845, "name": "Guiding Bolt", "lang": "en", "released_at": "2022-06-10", "uri": "https://api.scryfall.com/cards/cd552f81-1947-47e0-beee-f04e73551055", "scryfall_uri": "https://scryfall.com/card/clb/24/guiding-bolt?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/c/d/cd552f81-1947-47e0-beee-f04e73551055.jpg?1653690524", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/d/cd552f81-1947-47e0-beee-f04e73551055.jpg?1653690524", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/c/d/cd552f81-1947-47e0-beee-f04e73551055.jpg?1653690524", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/c/d/cd552f81-1947-47e0-beee-f04e73551055.png?1653690524", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/d/cd552f81-1947-47e0-beee-f04e73551055.jpg?1653690524", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/c/d/cd552f81-1947-47e0-beee-f04e73551055.jpg?1653690524"}, "mana_cost": "{2}{W}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Destroy target creature with power 4 or greater.\nScry 2. (Look at the top two cards of your library, then put any number of them on the bottom of your library and the rest on top in any order.)", "colors": ["W"], "color_identity": ["W"], "keywords": ["Scry"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "5e4c3fe8-fd57-4b20-ad56-c03790a16cea", "set": "clb", "set_name": "Commander Legends: Battle for Baldur's Gate", "set_type": "draft_innovation", "set_uri": "https://api.scryfall.com/sets/5e4c3fe8-fd57-4b20-ad56-c03790a16cea", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aclb&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/clb?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/cd552f81-1947-47e0-beee-f04e73551055/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ab433cf1f-a7f3-4b68-8bfb-e4196f6e3a12&unique=prints", "collector_number": "24", "digital": false, "rarity": "common", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Halil Ural", "artist_ids": ["f47dd8b0-b660-47d1-9953-4b4c37b5bd5f"], "illustration_id": "8bb8be06-f4e8-49b2-8866-8ebcf38861ae", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 15277, "prices": {"usd": "0.03", "usd_foil": "0.04", "usd_etched": null, "eur": "0.12", "eur_foil": "0.13", "tix": "0.26"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=562907", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Guiding+Bolt&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Guiding+Bolt&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Guiding+Bolt"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/273316?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Guiding+Bolt&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/100042?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "a9761136-9e1c-4d86-98ce-7abe1d8e6a8d", "oracle_id": "dc45b2e3-272b-479b-8e3b-36eead606a3a", "multiverse_ids": [6563], "tcgplayer_id": 150, "cardmarket_id": 9834, "name": "Hand of Death", "lang": "en", "released_at": "1998-06-24", "uri": "https://api.scryfall.com/cards/a9761136-9e1c-4d86-98ce-7abe1d8e6a8d", "scryfall_uri": "https://scryfall.com/card/p02/74/hand-of-death?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/a/9/a9761136-9e1c-4d86-98ce-7abe1d8e6a8d.jpg?1562935064", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/9/a9761136-9e1c-4d86-98ce-7abe1d8e6a8d.jpg?1562935064", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/a/9/a9761136-9e1c-4d86-98ce-7abe1d8e6a8d.jpg?1562935064", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/a/9/a9761136-9e1c-4d86-98ce-7abe1d8e6a8d.png?1562935064", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/9/a9761136-9e1c-4d86-98ce-7abe1d8e6a8d.jpg?1562935064", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/a/9/a9761136-9e1c-4d86-98ce-7abe1d8e6a8d.jpg?1562935064"}, "mana_cost": "{2}{B}", "cmc": 3.0, "type_line": "Sorcery", "oracle_text": "Destroy target nonblack creature.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "ac67f18a-4f0e-407e-bab1-a9fe4f659565", "set": "p02", "set_name": "Portal Second Age", "set_type": "starter", "set_uri": "https://api.scryfall.com/sets/ac67f18a-4f0e-407e-bab1-a9fe4f659565", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ap02&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/p02?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/a9761136-9e1c-4d86-98ce-7abe1d8e6a8d/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Adc45b2e3-272b-479b-8e3b-36eead606a3a&unique=prints", "collector_number": "74", "digital": false, "rarity": "common", "flavor_text": "The touch of death is never gentle.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Heather Hudson", "artist_ids": ["4441fe52-9e41-40c1-9b74-8510426279ab"], "illustration_id": "9c4b33e1-5dc0-4c7c-8b2a-e7241d5f3107", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 19344, "prices": {"usd": "0.21", "usd_foil": null, "usd_etched": null, "eur": "0.49", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=6563", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Hand+of+Death&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Hand+of+Death&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Hand+of+Death"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/150?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Hand+of+Death&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Hand+of+Death&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "27f136b8-52be-49b9-919b-2b9785254350", "oracle_id": "dc45b2e3-272b-479b-8e3b-36eead606a3a", "multiverse_ids": [4224], "tcgplayer_id": 21587, "cardmarket_id": 10004, "name": "Hand of Death", "lang": "en", "released_at": "1997-05-01", "uri": "https://api.scryfall.com/cards/27f136b8-52be-49b9-919b-2b9785254350", "scryfall_uri": "https://scryfall.com/card/por/96/hand-of-death?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/2/7/27f136b8-52be-49b9-919b-2b9785254350.jpg?1546740328", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/7/27f136b8-52be-49b9-919b-2b9785254350.jpg?1546740328", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/2/7/27f136b8-52be-49b9-919b-2b9785254350.jpg?1546740328", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/2/7/27f136b8-52be-49b9-919b-2b9785254350.png?1546740328", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/7/27f136b8-52be-49b9-919b-2b9785254350.jpg?1546740328", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/2/7/27f136b8-52be-49b9-919b-2b9785254350.jpg?1546740328"}, "mana_cost": "{2}{B}", "cmc": 3.0, "type_line": "Sorcery", "oracle_text": "Destroy target nonblack creature.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "478c47df-5058-4ce6-830e-7e80732b2ca9", "set": "por", "set_name": "Portal", "set_type": "starter", "set_uri": "https://api.scryfall.com/sets/478c47df-5058-4ce6-830e-7e80732b2ca9", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Apor&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/por?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/27f136b8-52be-49b9-919b-2b9785254350/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Adc45b2e3-272b-479b-8e3b-36eead606a3a&unique=prints", "collector_number": "96", "digital": false, "rarity": "common", "flavor_text": "Death claims all but the darkest souls.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "John Coulthart", "artist_ids": ["55e5567a-7673-418e-8ba2-aee7efd6f94b"], "illustration_id": "af34a0c7-8351-4ec3-b7ab-3acfddaa49d8", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 19344, "prices": {"usd": "0.13", "usd_foil": null, "usd_etched": null, "eur": "0.20", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=4224", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Hand+of+Death&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Hand+of+Death&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Hand+of+Death"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/21587?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Hand+of+Death&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Hand+of+Death&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "caa9ac66-51b7-4aec-92dc-0f0656b0f7fe", "oracle_id": "4ce95005-82b3-4921-b1c4-60d775a012a2", "multiverse_ids": [3689], "mtgo_id": 7577, "mtgo_foil_id": 7578, "tcgplayer_id": 5854, "cardmarket_id": 8483, "name": "Hearth Charm", "lang": "en", "released_at": "1997-02-03", "uri": "https://api.scryfall.com/cards/caa9ac66-51b7-4aec-92dc-0f0656b0f7fe", "scryfall_uri": "https://scryfall.com/card/vis/82/hearth-charm?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/c/a/caa9ac66-51b7-4aec-92dc-0f0656b0f7fe.jpg?1562278639", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/a/caa9ac66-51b7-4aec-92dc-0f0656b0f7fe.jpg?1562278639", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/c/a/caa9ac66-51b7-4aec-92dc-0f0656b0f7fe.jpg?1562278639", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/c/a/caa9ac66-51b7-4aec-92dc-0f0656b0f7fe.png?1562278639", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/a/caa9ac66-51b7-4aec-92dc-0f0656b0f7fe.jpg?1562278639", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/c/a/caa9ac66-51b7-4aec-92dc-0f0656b0f7fe.jpg?1562278639"}, "mana_cost": "{R}", "cmc": 1.0, "type_line": "Instant", "oracle_text": "Choose one \u2014\n\u2022 Destroy target artifact creature.\n\u2022 Attacking creatures get +1/+0 until end of turn.\n\u2022 Target creature with power 2 or less can't be blocked this turn.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "2c32f1a9-7921-4826-bea0-80bbac70532c", "set": "vis", "set_name": "Visions", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/2c32f1a9-7921-4826-bea0-80bbac70532c", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Avis&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/vis?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/caa9ac66-51b7-4aec-92dc-0f0656b0f7fe/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A4ce95005-82b3-4921-b1c4-60d775a012a2&unique=prints", "collector_number": "82", "digital": false, "rarity": "common", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Greg Spalenka", "artist_ids": ["938f5fdc-7003-4e2a-85a3-6336a088b764"], "illustration_id": "d70081e8-1ced-4cbf-b4d6-8a7bd3d6e52c", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 15758, "penny_rank": 13827, "prices": {"usd": "0.19", "usd_foil": null, "usd_etched": null, "eur": "0.40", "eur_foil": null, "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=3689", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Hearth+Charm&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Hearth+Charm&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Hearth+Charm"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/5854?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Hearth+Charm&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/7577?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "e4e6794a-feeb-4fc8-a2ee-38c75c18aaae", "oracle_id": "3641d572-8335-4804-88ad-edf4dc67a8e4", "multiverse_ids": [479611], "mtgo_id": 80191, "arena_id": 71158, "tcgplayer_id": 212369, "cardmarket_id": 454693, "name": "Heartless Act", "lang": "en", "released_at": "2020-04-24", "uri": "https://api.scryfall.com/cards/e4e6794a-feeb-4fc8-a2ee-38c75c18aaae", "scryfall_uri": "https://scryfall.com/card/iko/91/heartless-act?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/e/4/e4e6794a-feeb-4fc8-a2ee-38c75c18aaae.jpg?1591226819", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/4/e4e6794a-feeb-4fc8-a2ee-38c75c18aaae.jpg?1591226819", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/e/4/e4e6794a-feeb-4fc8-a2ee-38c75c18aaae.jpg?1591226819", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/e/4/e4e6794a-feeb-4fc8-a2ee-38c75c18aaae.png?1591226819", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/4/e4e6794a-feeb-4fc8-a2ee-38c75c18aaae.jpg?1591226819", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/e/4/e4e6794a-feeb-4fc8-a2ee-38c75c18aaae.jpg?1591226819"}, "mana_cost": "{1}{B}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Choose one \u2014\n\u2022 Destroy target creature with no counters on it.\n\u2022 Remove up to three counters from target creature.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "19feda43-15ab-427e-a0e4-148a4bf2b03a", "set": "iko", "set_name": "Ikoria: Lair of Behemoths", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/19feda43-15ab-427e-a0e4-148a4bf2b03a", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aiko&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/iko?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/e4e6794a-feeb-4fc8-a2ee-38c75c18aaae/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A3641d572-8335-4804-88ad-edf4dc67a8e4&unique=prints", "collector_number": "91", "digital": false, "rarity": "uncommon", "flavor_text": "\"It's them or us.\"\n\u2014General Kudro", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Ryan Pancoast", "artist_ids": ["89cc9475-dda2-4d13-bf88-54b92867a25c"], "illustration_id": "fd58f4b7-ab4c-4cae-883c-6b6697f50757", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": true, "edhrec_rank": 2602, "penny_rank": 50, "preview": {"source": "The Loregoyfs", "source_uri": "https://twitter.com/loregoyfs/status/1247558949299077120", "previewed_at": "2020-04-07"}, "prices": {"usd": "0.23", "usd_foil": "1.11", "usd_etched": null, "eur": "0.48", "eur_foil": "1.25", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=479611", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Heartless+Act&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Heartless+Act&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Heartless+Act"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/212369?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Heartless+Act&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/80191?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "d22dd514-814f-4a62-926d-fef311896c02", "oracle_id": "69ec0b59-a0aa-4878-a3b3-130cea18fee0", "multiverse_ids": [74465], "mtgo_id": 21731, "mtgo_foil_id": 21732, "tcgplayer_id": 12276, "cardmarket_id": 12834, "name": "Hero's Demise", "lang": "en", "released_at": "2005-02-04", "uri": "https://api.scryfall.com/cards/d22dd514-814f-4a62-926d-fef311896c02", "scryfall_uri": "https://scryfall.com/card/bok/68/heros-demise?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/d/2/d22dd514-814f-4a62-926d-fef311896c02.jpg?1562879959", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/2/d22dd514-814f-4a62-926d-fef311896c02.jpg?1562879959", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/d/2/d22dd514-814f-4a62-926d-fef311896c02.jpg?1562879959", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/d/2/d22dd514-814f-4a62-926d-fef311896c02.png?1562879959", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/2/d22dd514-814f-4a62-926d-fef311896c02.jpg?1562879959", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/d/2/d22dd514-814f-4a62-926d-fef311896c02.jpg?1562879959"}, "mana_cost": "{1}{B}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Destroy target legendary creature.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "d4b88587-a1f5-4b47-9e24-78ec9e57bd0e", "set": "bok", "set_name": "Betrayers of Kamigawa", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/d4b88587-a1f5-4b47-9e24-78ec9e57bd0e", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Abok&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/bok?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/d22dd514-814f-4a62-926d-fef311896c02/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A69ec0b59-a0aa-4878-a3b3-130cea18fee0&unique=prints", "collector_number": "68", "digital": false, "rarity": "rare", "flavor_text": "\"What will it say on our graves, Lord Konda? Will it say we led our world to conquer immortal forces or that we were crushed by our own arrogance? At each defeat, I wonder.\"\n\u2014Sensei Hisoka, letter to Lord Konda", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Jim Nelson", "artist_ids": ["aa9f64d1-29e1-4c82-877e-44c18183f40b"], "illustration_id": "e0f50fbd-4a46-4e10-b550-ebaa01b65bfd", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 11605, "penny_rank": 13210, "prices": {"usd": "1.17", "usd_foil": "4.16", "usd_etched": null, "eur": "0.47", "eur_foil": "2.50", "tix": "0.01"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=74465", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Hero%27s+Demise&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Hero%27s+Demise&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Hero%27s+Demise"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/12276?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Hero%27s+Demise&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/21731?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "c1b0751e-3a7e-4568-8c64-7429d6829687", "oracle_id": "03df6a57-37c9-46d3-83b3-4a6240100714", "multiverse_ids": [540969], "mtgo_id": 94566, "arena_id": 78917, "tcgplayer_id": 253536, "cardmarket_id": 582690, "name": "Hero's Downfall", "lang": "en", "released_at": "2021-11-19", "uri": "https://api.scryfall.com/cards/c1b0751e-3a7e-4568-8c64-7429d6829687", "scryfall_uri": "https://scryfall.com/card/vow/120/heros-downfall?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/c/1/c1b0751e-3a7e-4568-8c64-7429d6829687.jpg?1643589948", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/1/c1b0751e-3a7e-4568-8c64-7429d6829687.jpg?1643589948", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/c/1/c1b0751e-3a7e-4568-8c64-7429d6829687.jpg?1643589948", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/c/1/c1b0751e-3a7e-4568-8c64-7429d6829687.png?1643589948", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/1/c1b0751e-3a7e-4568-8c64-7429d6829687.jpg?1643589948", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/c/1/c1b0751e-3a7e-4568-8c64-7429d6829687.jpg?1643589948"}, "mana_cost": "{1}{B}{B}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Destroy target creature or planeswalker.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "8144b676-569f-4716-8005-bc8f0778f3fa", "set": "vow", "set_name": "Innistrad: Crimson Vow", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/8144b676-569f-4716-8005-bc8f0778f3fa", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Avow&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/vow?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/c1b0751e-3a7e-4568-8c64-7429d6829687/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A03df6a57-37c9-46d3-83b3-4a6240100714&unique=prints", "collector_number": "120", "digital": false, "rarity": "uncommon", "flavor_text": "Odric resisted the vampire's curse with all his strength. But after a lifetime of fighting monsters, he was doomed to become one himself.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Chris Rallis", "artist_ids": ["a8e7b854-b15a-421a-b66d-6e68187ae285"], "illustration_id": "7ad81da2-e205-41ff-967e-48480c180bcc", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 1066, "penny_rank": 840, "preview": {"source": "Corocoro", "source_uri": "https://corocoro.jp/310884/", "previewed_at": "2021-11-01"}, "prices": {"usd": "0.18", "usd_foil": "0.56", "usd_etched": null, "eur": "0.34", "eur_foil": "0.60", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=540969", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Hero%27s+Downfall&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Hero%27s+Downfall&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Hero%27s+Downfall"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/253536?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Hero%27s+Downfall&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/94566?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "596822f6-dbd4-4cc8-aa50-9331ff42544e", "oracle_id": "03df6a57-37c9-46d3-83b3-4a6240100714", "multiverse_ids": [373575], "mtgo_id": 50596, "mtgo_foil_id": 50597, "tcgplayer_id": 71183, "cardmarket_id": 264114, "name": "Hero's Downfall", "lang": "en", "released_at": "2013-09-27", "uri": "https://api.scryfall.com/cards/596822f6-dbd4-4cc8-aa50-9331ff42544e", "scryfall_uri": "https://scryfall.com/card/ths/90/heros-downfall?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/5/9/596822f6-dbd4-4cc8-aa50-9331ff42544e.jpg?1562818494", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/9/596822f6-dbd4-4cc8-aa50-9331ff42544e.jpg?1562818494", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/5/9/596822f6-dbd4-4cc8-aa50-9331ff42544e.jpg?1562818494", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/5/9/596822f6-dbd4-4cc8-aa50-9331ff42544e.png?1562818494", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/9/596822f6-dbd4-4cc8-aa50-9331ff42544e.jpg?1562818494", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/5/9/596822f6-dbd4-4cc8-aa50-9331ff42544e.jpg?1562818494"}, "mana_cost": "{1}{B}{B}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Destroy target creature or planeswalker.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "69093d6f-e25a-41a4-8cf5-688d7f11c0fb", "set": "ths", "set_name": "Theros", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/69093d6f-e25a-41a4-8cf5-688d7f11c0fb", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aths&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ths?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/596822f6-dbd4-4cc8-aa50-9331ff42544e/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A03df6a57-37c9-46d3-83b3-4a6240100714&unique=prints", "collector_number": "90", "digital": false, "rarity": "rare", "flavor_text": "Destiny exalts a chosen few, but even heroes break.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Ryan Pancoast", "artist_ids": ["89cc9475-dda2-4d13-bf88-54b92867a25c"], "illustration_id": "794d79d0-8766-4e5b-b6f6-f1ba607d7a39", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 1066, "penny_rank": 840, "prices": {"usd": "0.51", "usd_foil": "2.18", "usd_etched": null, "eur": "0.43", "eur_foil": "1.00", "tix": "0.01"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=373575", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Hero%27s+Downfall&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Hero%27s+Downfall&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Hero%27s+Downfall"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/71183?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Hero%27s+Downfall&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/50596?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "ed96b05d-b2ca-4c8f-969b-cac9b4562fab", "oracle_id": "03df6a57-37c9-46d3-83b3-4a6240100714", "multiverse_ids": [], "tcgplayer_id": 242403, "cardmarket_id": 581193, "name": "Hero's Downfall", "lang": "en", "released_at": "2021-06-21", "uri": "https://api.scryfall.com/cards/ed96b05d-b2ca-4c8f-969b-cac9b4562fab", "scryfall_uri": "https://scryfall.com/card/sld/312/heros-downfall?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/e/d/ed96b05d-b2ca-4c8f-969b-cac9b4562fab.jpg?1636900809", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/d/ed96b05d-b2ca-4c8f-969b-cac9b4562fab.jpg?1636900809", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/e/d/ed96b05d-b2ca-4c8f-969b-cac9b4562fab.jpg?1636900809", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/e/d/ed96b05d-b2ca-4c8f-969b-cac9b4562fab.png?1636900809", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/d/ed96b05d-b2ca-4c8f-969b-cac9b4562fab.jpg?1636900809", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/e/d/ed96b05d-b2ca-4c8f-969b-cac9b4562fab.jpg?1636900809"}, "mana_cost": "{1}{B}{B}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Destroy target creature or planeswalker.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "4d92a8a7-ccb0-437d-abdc-9d70fc5ed672", "set": "sld", "set_name": "Secret Lair Drop", "set_type": "box", "set_uri": "https://api.scryfall.com/sets/4d92a8a7-ccb0-437d-abdc-9d70fc5ed672", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Asld&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/sld?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/ed96b05d-b2ca-4c8f-969b-cac9b4562fab/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A03df6a57-37c9-46d3-83b3-4a6240100714&unique=prints", "collector_number": "312", "digital": false, "rarity": "rare", "flavor_text": "\"This is the end... for all of you!\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Tyler Walpole", "artist_ids": ["70c4c8c7-61a8-44e7-8fb1-161b7f943e7e"], "illustration_id": "b932b10a-e933-4796-871f-65769a370bce", "border_color": "borderless", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "edhrec_rank": 1066, "penny_rank": 840, "prices": {"usd": "3.42", "usd_foil": "3.58", "usd_etched": null, "eur": "3.39", "eur_foil": "3.95", "tix": null}, "related_uris": {"tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Hero%27s+Downfall&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Hero%27s+Downfall&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Hero%27s+Downfall"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/242403?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Hero%27s+Downfall&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Hero%27s+Downfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "64aa5cbd-98e9-46fc-8de4-64eab7afc90f", "oracle_id": "03df6a57-37c9-46d3-83b3-4a6240100714", "multiverse_ids": [], "tcgplayer_id": 95334, "cardmarket_id": 271572, "name": "Hero's Downfall", "lang": "en", "released_at": "2015-01-23", "uri": "https://api.scryfall.com/cards/64aa5cbd-98e9-46fc-8de4-64eab7afc90f", "scryfall_uri": "https://scryfall.com/card/cp2/2/heros-downfall?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/6/4/64aa5cbd-98e9-46fc-8de4-64eab7afc90f.jpg?1561757293", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/4/64aa5cbd-98e9-46fc-8de4-64eab7afc90f.jpg?1561757293", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/6/4/64aa5cbd-98e9-46fc-8de4-64eab7afc90f.jpg?1561757293", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/6/4/64aa5cbd-98e9-46fc-8de4-64eab7afc90f.png?1561757293", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/4/64aa5cbd-98e9-46fc-8de4-64eab7afc90f.jpg?1561757293", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/6/4/64aa5cbd-98e9-46fc-8de4-64eab7afc90f.jpg?1561757293"}, "mana_cost": "{1}{B}{B}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Destroy target creature or planeswalker.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": true, "nonfoil": false, "finishes": ["foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "a1bcdc11-74b2-4c86-880f-ae193857ae54", "set": "cp2", "set_name": "Fate Reforged Clash Pack", "set_type": "starter", "set_uri": "https://api.scryfall.com/sets/a1bcdc11-74b2-4c86-880f-ae193857ae54", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Acp2&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/cp2?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/64aa5cbd-98e9-46fc-8de4-64eab7afc90f/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A03df6a57-37c9-46d3-83b3-4a6240100714&unique=prints", "collector_number": "2", "digital": false, "rarity": "rare", "flavor_text": "Destiny exalts a chosen few, but even heroes break.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Johannes Voss", "artist_ids": ["3593dd7e-c547-4a32-81cd-7da725f60118"], "illustration_id": "6e874ccf-92d2-45b5-9f26-512298e74dc7", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "edhrec_rank": 1066, "penny_rank": 840, "prices": {"usd": null, "usd_foil": "2.43", "usd_etched": null, "eur": null, "eur_foil": "1.94", "tix": null}, "related_uris": {"tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Hero%27s+Downfall&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Hero%27s+Downfall&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Hero%27s+Downfall"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/95334?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Hero%27s+Downfall&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Hero%27s+Downfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "b33e6056-00c9-4731-b364-b0214398848d", "oracle_id": "f1eafb69-e7c0-4a22-9e73-6bc32168a7c5", "multiverse_ids": [205341], "mtgo_id": 44476, "mtgo_foil_id": 44477, "tcgplayer_id": 37379, "cardmarket_id": 21644, "name": "Hideous End", "lang": "en", "released_at": "2009-09-04", "uri": "https://api.scryfall.com/cards/b33e6056-00c9-4731-b364-b0214398848d", "scryfall_uri": "https://scryfall.com/card/hop/31/hideous-end?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/b/3/b33e6056-00c9-4731-b364-b0214398848d.jpg?1562842860", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/3/b33e6056-00c9-4731-b364-b0214398848d.jpg?1562842860", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/b/3/b33e6056-00c9-4731-b364-b0214398848d.jpg?1562842860", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/b/3/b33e6056-00c9-4731-b364-b0214398848d.png?1562842860", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/3/b33e6056-00c9-4731-b364-b0214398848d.jpg?1562842860", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/b/3/b33e6056-00c9-4731-b364-b0214398848d.jpg?1562842860"}, "mana_cost": "{1}{B}{B}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Destroy target nonblack creature. Its controller loses 2 life.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "7137ffeb-eb1d-466c-a0d3-3157f52b1b10", "set": "hop", "set_name": "Planechase", "set_type": "planechase", "set_uri": "https://api.scryfall.com/sets/7137ffeb-eb1d-466c-a0d3-3157f52b1b10", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ahop&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/hop?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/b33e6056-00c9-4731-b364-b0214398848d/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Af1eafb69-e7c0-4a22-9e73-6bc32168a7c5&unique=prints", "collector_number": "31", "digital": false, "rarity": "common", "flavor_text": "\"A little dark magic won't stop me. The worse the curse, the better the prize.\"\n\u2014Radavi, Joraga relic hunter, last words", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Zoltan Boros & Gabor Szikszai", "artist_ids": ["1885e6cb-c827-4896-994e-3d0a027d602f", "44c3877f-8771-43dc-9e40-f4c765f59d2e"], "illustration_id": "ecb37030-fe9f-4a7c-a2d5-aecb64d28c35", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "edhrec_rank": 14833, "penny_rank": 8638, "prices": {"usd": "0.14", "usd_foil": null, "usd_etched": null, "eur": "0.20", "eur_foil": null, "tix": "0.14"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=205341", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Hideous+End&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Hideous+End&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Hideous+End"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/37379?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Hideous+End&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/44476?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "1aad5179-4b73-498e-85c5-1fc363d26223", "oracle_id": "2447f1f4-3569-4afb-a119-2ad9778eaf39", "multiverse_ids": [74590], "mtgo_id": 21831, "mtgo_foil_id": 21832, "tcgplayer_id": 12280, "cardmarket_id": 12838, "name": "Horobi's Whisper", "lang": "en", "released_at": "2005-02-04", "uri": "https://api.scryfall.com/cards/1aad5179-4b73-498e-85c5-1fc363d26223", "scryfall_uri": "https://scryfall.com/card/bok/70/horobis-whisper?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/1/a/1aad5179-4b73-498e-85c5-1fc363d26223.jpg?1562875751", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/a/1aad5179-4b73-498e-85c5-1fc363d26223.jpg?1562875751", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/1/a/1aad5179-4b73-498e-85c5-1fc363d26223.jpg?1562875751", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/1/a/1aad5179-4b73-498e-85c5-1fc363d26223.png?1562875751", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/a/1aad5179-4b73-498e-85c5-1fc363d26223.jpg?1562875751", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/1/a/1aad5179-4b73-498e-85c5-1fc363d26223.jpg?1562875751"}, "mana_cost": "{1}{B}{B}", "cmc": 3.0, "type_line": "Instant \u2014 Arcane", "oracle_text": "If you control a Swamp, destroy target nonblack creature.\nSplice onto Arcane\u2014Exile four cards from your graveyard. (As you cast an Arcane spell, you may reveal this card from your hand and pay its splice cost. If you do, add this card's effects to that spell.)", "colors": ["B"], "color_identity": ["B"], "keywords": ["Splice"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "d4b88587-a1f5-4b47-9e24-78ec9e57bd0e", "set": "bok", "set_name": "Betrayers of Kamigawa", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/d4b88587-a1f5-4b47-9e24-78ec9e57bd0e", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Abok&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/bok?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/1aad5179-4b73-498e-85c5-1fc363d26223/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A2447f1f4-3569-4afb-a119-2ad9778eaf39&unique=prints", "collector_number": "70", "digital": false, "rarity": "common", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Aleksi Briclot", "artist_ids": ["5e470014-31cb-41b0-b054-e23374484449"], "illustration_id": "3bf153f3-7d0e-47b4-b9ce-5aa2f9f79232", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 14447, "penny_rank": 7569, "prices": {"usd": "0.08", "usd_foil": "0.48", "usd_etched": null, "eur": "0.02", "eur_foil": "0.15", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=74590", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Horobi%27s+Whisper&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Horobi%27s+Whisper&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Horobi%27s+Whisper"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/12280?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Horobi%27s+Whisper&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/21831?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "1d1de712-86ac-4c03-be86-2403cd121f66", "oracle_id": "bd95c832-9ae9-404a-a2bc-0760a5b9ff56", "multiverse_ids": [279609], "mtgo_id": 44291, "mtgo_foil_id": 44292, "tcgplayer_id": 58314, "cardmarket_id": 254431, "name": "Human Frailty", "lang": "en", "released_at": "2012-05-04", "uri": "https://api.scryfall.com/cards/1d1de712-86ac-4c03-be86-2403cd121f66", "scryfall_uri": "https://scryfall.com/card/avr/109/human-frailty?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/1/d/1d1de712-86ac-4c03-be86-2403cd121f66.jpg?1592708908", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/d/1d1de712-86ac-4c03-be86-2403cd121f66.jpg?1592708908", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/1/d/1d1de712-86ac-4c03-be86-2403cd121f66.jpg?1592708908", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/1/d/1d1de712-86ac-4c03-be86-2403cd121f66.png?1592708908", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/d/1d1de712-86ac-4c03-be86-2403cd121f66.jpg?1592708908", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/1/d/1d1de712-86ac-4c03-be86-2403cd121f66.jpg?1592708908"}, "mana_cost": "{B}", "cmc": 1.0, "type_line": "Instant", "oracle_text": "Destroy target Human creature.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "039810a9-92d7-4f2d-b2d0-ca661ac586c0", "set": "avr", "set_name": "Avacyn Restored", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/039810a9-92d7-4f2d-b2d0-ca661ac586c0", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aavr&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/avr?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/1d1de712-86ac-4c03-be86-2403cd121f66/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Abd95c832-9ae9-404a-a2bc-0760a5b9ff56&unique=prints", "collector_number": "109", "digital": false, "rarity": "uncommon", "flavor_text": "\"I have seen a hundred mortal families rise and fall. I shall outlast a thousand more.\"\n\u2014Olivia Voldaren", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "David Palumbo", "artist_ids": ["04ce1c75-e30c-4b7a-8cb0-b53e4ecc2f39"], "illustration_id": "e06d1d99-9b84-4d21-a854-09c181779171", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 19306, "penny_rank": 12061, "prices": {"usd": "0.07", "usd_foil": "0.11", "usd_etched": null, "eur": "0.04", "eur_foil": "0.20", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=279609", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Human+Frailty&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Human+Frailty&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Human+Frailty"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/58314?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Human+Frailty&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/44291?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "7c105686-8b45-494a-b9ef-8aa267bb1b5a", "oracle_id": "bea6606c-ea9a-4199-a8cd-b35d7c47fd7b", "multiverse_ids": [409762], "mtgo_id": 59984, "mtgo_foil_id": 59985, "tcgplayer_id": 116225, "cardmarket_id": 289104, "name": "Humble the Brute", "lang": "en", "released_at": "2016-04-08", "uri": "https://api.scryfall.com/cards/7c105686-8b45-494a-b9ef-8aa267bb1b5a", "scryfall_uri": "https://scryfall.com/card/soi/23/humble-the-brute?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/7/c/7c105686-8b45-494a-b9ef-8aa267bb1b5a.jpg?1656286373", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/c/7c105686-8b45-494a-b9ef-8aa267bb1b5a.jpg?1656286373", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/7/c/7c105686-8b45-494a-b9ef-8aa267bb1b5a.jpg?1656286373", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/7/c/7c105686-8b45-494a-b9ef-8aa267bb1b5a.png?1656286373", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/c/7c105686-8b45-494a-b9ef-8aa267bb1b5a.jpg?1656286373", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/7/c/7c105686-8b45-494a-b9ef-8aa267bb1b5a.jpg?1656286373"}, "mana_cost": "{4}{W}", "cmc": 5.0, "type_line": "Instant", "oracle_text": "Destroy target creature with power 4 or greater.\nInvestigate. (Create a Clue token. It's an artifact with \"{2}, Sacrifice this artifact: Draw a card.\")", "colors": ["W"], "color_identity": ["W"], "keywords": ["Investigate"], "all_parts": [{"object": "related_card", "id": "7c105686-8b45-494a-b9ef-8aa267bb1b5a", "component": "combo_piece", "name": "Humble the Brute", "type_line": "Instant", "uri": "https://api.scryfall.com/cards/7c105686-8b45-494a-b9ef-8aa267bb1b5a"}, {"object": "related_card", "id": "f2c859e1-181e-44d1-afbd-bbd6e52cf42a", "component": "token", "name": "Clue", "type_line": "Token Artifact \u2014 Clue", "uri": "https://api.scryfall.com/cards/f2c859e1-181e-44d1-afbd-bbd6e52cf42a"}], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "5e914d7e-c1e9-446c-a33d-d093c02b2743", "set": "soi", "set_name": "Shadows over Innistrad", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/5e914d7e-c1e9-446c-a33d-d093c02b2743", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Asoi&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/soi?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/7c105686-8b45-494a-b9ef-8aa267bb1b5a/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Abea6606c-ea9a-4199-a8cd-b35d7c47fd7b&unique=prints", "collector_number": "23", "digital": false, "rarity": "uncommon", "flavor_text": "\"The element of surprise only works when it's backed up by a bolt between the eyes.\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Daarken", "artist_ids": ["e607a0d4-fc12-4c01-9e3f-501f5269b9cb"], "illustration_id": "813e2e5d-0602-447a-946b-53bf0dfda162", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 16353, "prices": {"usd": "0.04", "usd_foil": "0.18", "usd_etched": null, "eur": "0.02", "eur_foil": "0.24", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=409762", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Humble+the+Brute&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Humble+the+Brute&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Humble+the+Brute"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/116225?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Humble+the+Brute&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/59984?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "2f468338-bb66-4db0-a883-69095566092b", "oracle_id": "046b6989-5b56-4b52-a655-109b1eb26a93", "multiverse_ids": [407530], "mtgo_id": 59471, "mtgo_foil_id": 59472, "tcgplayer_id": 110799, "cardmarket_id": 287208, "name": "Immolating Glare", "lang": "en", "released_at": "2016-01-22", "uri": "https://api.scryfall.com/cards/2f468338-bb66-4db0-a883-69095566092b", "scryfall_uri": "https://scryfall.com/card/ogw/20/immolating-glare?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/2/f/2f468338-bb66-4db0-a883-69095566092b.jpg?1562904646", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/f/2f468338-bb66-4db0-a883-69095566092b.jpg?1562904646", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/2/f/2f468338-bb66-4db0-a883-69095566092b.jpg?1562904646", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/2/f/2f468338-bb66-4db0-a883-69095566092b.png?1562904646", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/f/2f468338-bb66-4db0-a883-69095566092b.jpg?1562904646", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/2/f/2f468338-bb66-4db0-a883-69095566092b.jpg?1562904646"}, "mana_cost": "{1}{W}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Destroy target attacking creature.", "colors": ["W"], "color_identity": ["W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "cd51d245-8f95-45b0-ab5f-e2b3a3eb5dfe", "set": "ogw", "set_name": "Oath of the Gatewatch", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/cd51d245-8f95-45b0-ab5f-e2b3a3eb5dfe", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aogw&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ogw?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/2f468338-bb66-4db0-a883-69095566092b/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A046b6989-5b56-4b52-a655-109b1eb26a93&unique=prints", "collector_number": "20", "digital": false, "rarity": "uncommon", "flavor_text": "\"The sun can warm your skin or blister it, nurture your crops or wither them, light your path or blind you. She is a fickle friend, but a far worse enemy.\"\n\u2014Nazra of the Stone Havens", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Daarken", "artist_ids": ["e607a0d4-fc12-4c01-9e3f-501f5269b9cb"], "illustration_id": "aafc3225-4a66-4e7c-943c-a7dfe2f98191", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 12808, "penny_rank": 970, "prices": {"usd": "0.09", "usd_foil": "0.19", "usd_etched": null, "eur": "0.08", "eur_foil": "0.24", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=407530", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Immolating+Glare&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Immolating+Glare&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Immolating+Glare"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/110799?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Immolating+Glare&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/59471?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "0ddbcd23-e206-4a12-968a-3854693d1e60", "oracle_id": "046b6989-5b56-4b52-a655-109b1eb26a93", "multiverse_ids": [], "tcgplayer_id": 110834, "cardmarket_id": 287196, "name": "Immolating Glare", "lang": "en", "released_at": "2016-01-22", "uri": "https://api.scryfall.com/cards/0ddbcd23-e206-4a12-968a-3854693d1e60", "scryfall_uri": "https://scryfall.com/card/pogw/20/immolating-glare?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/0/d/0ddbcd23-e206-4a12-968a-3854693d1e60.jpg?1562870987", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/d/0ddbcd23-e206-4a12-968a-3854693d1e60.jpg?1562870987", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/0/d/0ddbcd23-e206-4a12-968a-3854693d1e60.jpg?1562870987", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/0/d/0ddbcd23-e206-4a12-968a-3854693d1e60.png?1562870987", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/d/0ddbcd23-e206-4a12-968a-3854693d1e60.jpg?1562870987", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/0/d/0ddbcd23-e206-4a12-968a-3854693d1e60.jpg?1562870987"}, "mana_cost": "{1}{W}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Destroy target attacking creature.", "colors": ["W"], "color_identity": ["W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": true, "reprint": true, "variation": false, "set_id": "7de0b874-7cb5-495b-9b2c-137a92d3d493", "set": "pogw", "set_name": "Oath of the Gatewatch Promos", "set_type": "promo", "set_uri": "https://api.scryfall.com/sets/7de0b874-7cb5-495b-9b2c-137a92d3d493", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Apogw&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/pogw?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/0ddbcd23-e206-4a12-968a-3854693d1e60/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A046b6989-5b56-4b52-a655-109b1eb26a93&unique=prints", "collector_number": "20", "digital": false, "rarity": "uncommon", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Ryan Alexander Lee", "artist_ids": ["f4d194b4-958a-4830-8d87-1a84e0b9ffbc"], "illustration_id": "176713d3-56bb-4690-8733-8b98db1fb61c", "border_color": "black", "frame": "2015", "full_art": true, "textless": false, "booster": false, "story_spotlight": false, "promo_types": ["setpromo", "gameday"], "edhrec_rank": 12808, "penny_rank": 970, "prices": {"usd": "0.22", "usd_foil": null, "usd_etched": null, "eur": "0.23", "eur_foil": null, "tix": null}, "related_uris": {"tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Immolating+Glare&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Immolating+Glare&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Immolating+Glare"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/110834?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Immolating+Glare&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Immolating+Glare&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "dfa0c4f7-3497-467d-9453-104fb4b5a0f3", "oracle_id": "dcdf40a9-5a7e-45b1-aee4-36dda598baaf", "multiverse_ids": [439733], "mtgo_id": 66605, "arena_id": 66769, "tcgplayer_id": 155744, "cardmarket_id": 315404, "name": "Impale", "lang": "en", "released_at": "2018-01-19", "uri": "https://api.scryfall.com/cards/dfa0c4f7-3497-467d-9453-104fb4b5a0f3", "scryfall_uri": "https://scryfall.com/card/rix/76/impale?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/d/f/dfa0c4f7-3497-467d-9453-104fb4b5a0f3.jpg?1555040252", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/f/dfa0c4f7-3497-467d-9453-104fb4b5a0f3.jpg?1555040252", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/d/f/dfa0c4f7-3497-467d-9453-104fb4b5a0f3.jpg?1555040252", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/d/f/dfa0c4f7-3497-467d-9453-104fb4b5a0f3.png?1555040252", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/f/dfa0c4f7-3497-467d-9453-104fb4b5a0f3.jpg?1555040252", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/d/f/dfa0c4f7-3497-467d-9453-104fb4b5a0f3.jpg?1555040252"}, "mana_cost": "{2}{B}{B}", "cmc": 4.0, "type_line": "Sorcery", "oracle_text": "Destroy target creature.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "2f7e40fc-772d-4a85-bfdd-01653c41d0fa", "set": "rix", "set_name": "Rivals of Ixalan", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/2f7e40fc-772d-4a85-bfdd-01653c41d0fa", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Arix&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/rix?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/dfa0c4f7-3497-467d-9453-104fb4b5a0f3/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Adcdf40a9-5a7e-45b1-aee4-36dda598baaf&unique=prints", "collector_number": "76", "digital": false, "rarity": "common", "flavor_text": "Never let the glitter of gold distract you from the gleam of steel in the shadows.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Josh Hass", "artist_ids": ["8fa1fdf0-96d6-46f4-a7ff-b1c0257c3735"], "illustration_id": "c394fc59-b6ee-469a-b476-18a29e39152e", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 15002, "penny_rank": 9147, "prices": {"usd": "0.01", "usd_foil": "0.08", "usd_etched": null, "eur": "0.03", "eur_foil": "0.12", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=439733", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Impale&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Impale&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Impale"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/155744?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Impale&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/66605?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "17824929-f131-4b8d-addb-66c25323155e", "oracle_id": "94f0a572-e91c-4b56-a5d1-6cbbeabd210d", "multiverse_ids": [534880], "mtgo_id": 93174, "arena_id": 78451, "tcgplayer_id": 246014, "cardmarket_id": 573810, "name": "Infernal Grasp", "lang": "en", "released_at": "2021-09-24", "uri": "https://api.scryfall.com/cards/17824929-f131-4b8d-addb-66c25323155e", "scryfall_uri": "https://scryfall.com/card/mid/107/infernal-grasp?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/1/7/17824929-f131-4b8d-addb-66c25323155e.jpg?1634349911", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/7/17824929-f131-4b8d-addb-66c25323155e.jpg?1634349911", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/1/7/17824929-f131-4b8d-addb-66c25323155e.jpg?1634349911", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/1/7/17824929-f131-4b8d-addb-66c25323155e.png?1634349911", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/7/17824929-f131-4b8d-addb-66c25323155e.jpg?1634349911", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/1/7/17824929-f131-4b8d-addb-66c25323155e.jpg?1634349911"}, "mana_cost": "{1}{B}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Destroy target creature. You lose 2 life.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "44b8eb8f-fa23-401a-98b5-1fbb9871128e", "set": "mid", "set_name": "Innistrad: Midnight Hunt", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/44b8eb8f-fa23-401a-98b5-1fbb9871128e", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Amid&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/mid?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/17824929-f131-4b8d-addb-66c25323155e/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A94f0a572-e91c-4b56-a5d1-6cbbeabd210d&unique=prints", "collector_number": "107", "digital": false, "rarity": "uncommon", "flavor_text": "Ancient evils dwell within the burning chasm called the Ashmouth, ever ready to devour those foolish enough to travel alone.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Naomi Baker", "artist_ids": ["6fe0624f-c75c-4f0d-bdb2-514d9b596030"], "illustration_id": "fedddfb1-4b2b-4cbe-80f5-7d4aa52d68e7", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 470, "penny_rank": 291, "prices": {"usd": "0.56", "usd_foil": "4.96", "usd_etched": null, "eur": "0.30", "eur_foil": "0.43", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=534880", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Infernal+Grasp&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Infernal+Grasp&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Infernal+Grasp"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/246014?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Infernal+Grasp&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/93174?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "93612079-0b8d-489d-9ae1-3593414a8cee", "oracle_id": "760e8561-4ec6-4594-ba5d-f79cb9f25fd0", "multiverse_ids": [491744], "mtgo_id": 83181, "arena_id": 73305, "tcgplayer_id": 222016, "cardmarket_id": 495895, "name": "Inscription of Ruin", "lang": "en", "released_at": "2020-09-25", "uri": "https://api.scryfall.com/cards/93612079-0b8d-489d-9ae1-3593414a8cee", "scryfall_uri": "https://scryfall.com/card/znr/108/inscription-of-ruin?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/9/3/93612079-0b8d-489d-9ae1-3593414a8cee.jpg?1604195857", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/3/93612079-0b8d-489d-9ae1-3593414a8cee.jpg?1604195857", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/9/3/93612079-0b8d-489d-9ae1-3593414a8cee.jpg?1604195857", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/9/3/93612079-0b8d-489d-9ae1-3593414a8cee.png?1604195857", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/3/93612079-0b8d-489d-9ae1-3593414a8cee.jpg?1604195857", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/9/3/93612079-0b8d-489d-9ae1-3593414a8cee.jpg?1604195857"}, "mana_cost": "{2}{B}", "cmc": 3.0, "type_line": "Sorcery", "oracle_text": "Kicker {2}{B}{B}\nChoose one. If this spell was kicked, choose any number instead.\n\u2022 Target opponent discards two cards.\n\u2022 Return target creature card with mana value 2 or less from your graveyard to the battlefield.\n\u2022 Destroy target creature with mana value 3 or less.", "colors": ["B"], "color_identity": ["B"], "keywords": ["Kicker"], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "f4e01fa7-b254-42dd-849f-69b58027a8c4", "set": "znr", "set_name": "Zendikar Rising", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/f4e01fa7-b254-42dd-849f-69b58027a8c4", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aznr&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/znr?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/93612079-0b8d-489d-9ae1-3593414a8cee/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A760e8561-4ec6-4594-ba5d-f79cb9f25fd0&unique=prints", "collector_number": "108", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Zoltan Boros", "artist_ids": ["1885e6cb-c827-4896-994e-3d0a027d602f"], "illustration_id": "1a57085b-97a7-4587-b317-e1e2bc0327ae", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 9357, "penny_rank": 897, "preview": {"source": "Maki Michiru", "source_uri": "https://twitter.com/maki_michiru/status/1301868482477219840", "previewed_at": "2020-09-04"}, "prices": {"usd": "0.13", "usd_foil": "0.15", "usd_etched": null, "eur": "0.13", "eur_foil": "0.14", "tix": "0.01"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=491744", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Inscription+of+Ruin&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Inscription+of+Ruin&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Inscription+of+Ruin"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/222016?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Inscription+of+Ruin&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/83181?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "5d188d9b-7a12-4eaf-855b-af4f0204dc5a", "oracle_id": "5f0e8fd5-9db9-4507-a42f-cb99080b89e2", "multiverse_ids": [220035], "mtgo_id": 42278, "mtgo_foil_id": 42279, "tcgplayer_id": 52213, "cardmarket_id": 250581, "name": "Into the Maw of Hell", "lang": "en", "released_at": "2011-09-30", "uri": "https://api.scryfall.com/cards/5d188d9b-7a12-4eaf-855b-af4f0204dc5a", "scryfall_uri": "https://scryfall.com/card/isd/150/into-the-maw-of-hell?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/5/d/5d188d9b-7a12-4eaf-855b-af4f0204dc5a.jpg?1562830878", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/d/5d188d9b-7a12-4eaf-855b-af4f0204dc5a.jpg?1562830878", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/5/d/5d188d9b-7a12-4eaf-855b-af4f0204dc5a.jpg?1562830878", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/5/d/5d188d9b-7a12-4eaf-855b-af4f0204dc5a.png?1562830878", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/d/5d188d9b-7a12-4eaf-855b-af4f0204dc5a.jpg?1562830878", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/5/d/5d188d9b-7a12-4eaf-855b-af4f0204dc5a.jpg?1562830878"}, "mana_cost": "{4}{R}{R}", "cmc": 6.0, "type_line": "Sorcery", "oracle_text": "Destroy target land. Into the Maw of Hell deals 13 damage to target creature.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "d1026945-2969-42b9-be53-f941405a58cb", "set": "isd", "set_name": "Innistrad", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/d1026945-2969-42b9-be53-f941405a58cb", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aisd&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/isd?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/5d188d9b-7a12-4eaf-855b-af4f0204dc5a/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A5f0e8fd5-9db9-4507-a42f-cb99080b89e2&unique=prints", "collector_number": "150", "digital": false, "rarity": "uncommon", "flavor_text": "Few entrances lead to where demons and devils lurk. Unfortunately, they occasionally open new ones.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Raymond Swanland", "artist_ids": ["e956bacc-077d-4c12-b6bc-ba798b718af9"], "illustration_id": "a8a38904-61c7-4972-b5a0-13f7ac674dfa", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 13514, "penny_rank": 9947, "prices": {"usd": "0.12", "usd_foil": "0.34", "usd_etched": null, "eur": "0.08", "eur_foil": "0.10", "tix": "0.04"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=220035", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Into+the+Maw+of+Hell&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Into+the+Maw+of+Hell&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Into+the+Maw+of+Hell"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/52213?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Into+the+Maw+of+Hell&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/42278?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "a6e5e572-030d-4a41-89e6-e720b49bc131", "oracle_id": "2619692a-07a0-4f50-88b0-4cec6dbc8600", "multiverse_ids": [6519], "tcgplayer_id": 159, "cardmarket_id": 9957, "name": "Just Fate", "lang": "en", "released_at": "1998-06-24", "uri": "https://api.scryfall.com/cards/a6e5e572-030d-4a41-89e6-e720b49bc131", "scryfall_uri": "https://scryfall.com/card/p02/17/just-fate?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/a/6/a6e5e572-030d-4a41-89e6-e720b49bc131.jpg?1562934537", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/6/a6e5e572-030d-4a41-89e6-e720b49bc131.jpg?1562934537", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/a/6/a6e5e572-030d-4a41-89e6-e720b49bc131.jpg?1562934537", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/a/6/a6e5e572-030d-4a41-89e6-e720b49bc131.png?1562934537", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/6/a6e5e572-030d-4a41-89e6-e720b49bc131.jpg?1562934537", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/a/6/a6e5e572-030d-4a41-89e6-e720b49bc131.jpg?1562934537"}, "mana_cost": "{2}{W}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Cast this spell only during the declare attackers step and only if you've been attacked this step.\nDestroy target attacking creature.", "colors": ["W"], "color_identity": ["W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "ac67f18a-4f0e-407e-bab1-a9fe4f659565", "set": "p02", "set_name": "Portal Second Age", "set_type": "starter", "set_uri": "https://api.scryfall.com/sets/ac67f18a-4f0e-407e-bab1-a9fe4f659565", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ap02&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/p02?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/a6e5e572-030d-4a41-89e6-e720b49bc131/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A2619692a-07a0-4f50-88b0-4cec6dbc8600&unique=prints", "collector_number": "17", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Bradley Williams", "artist_ids": ["24d81dfa-3745-4386-93f8-7e67dddb3c8a"], "illustration_id": "15b2ad8e-9636-4625-9a53-ac54487d0991", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 23189, "prices": {"usd": "1.22", "usd_foil": null, "usd_etched": null, "eur": "1.25", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=6519", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Just+Fate&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Just+Fate&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Just+Fate"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/159?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Just+Fate&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Just+Fate&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "7a42ef95-92ec-40fe-ab30-a476f012a525", "oracle_id": "daa86c76-aacb-4244-9639-81f758c634b2", "multiverse_ids": [3541], "mtgo_id": 7087, "mtgo_foil_id": 7088, "tcgplayer_id": 5121, "cardmarket_id": 8381, "name": "Kaervek's Purge", "lang": "en", "released_at": "1996-10-08", "uri": "https://api.scryfall.com/cards/7a42ef95-92ec-40fe-ab30-a476f012a525", "scryfall_uri": "https://scryfall.com/card/mir/270/kaerveks-purge?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/7/a/7a42ef95-92ec-40fe-ab30-a476f012a525.jpg?1562720237", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/a/7a42ef95-92ec-40fe-ab30-a476f012a525.jpg?1562720237", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/7/a/7a42ef95-92ec-40fe-ab30-a476f012a525.jpg?1562720237", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/7/a/7a42ef95-92ec-40fe-ab30-a476f012a525.png?1562720237", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/a/7a42ef95-92ec-40fe-ab30-a476f012a525.jpg?1562720237", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/7/a/7a42ef95-92ec-40fe-ab30-a476f012a525.jpg?1562720237"}, "mana_cost": "{X}{B}{R}", "cmc": 2.0, "type_line": "Sorcery", "oracle_text": "Destroy target creature with mana value X. If that creature dies this way, Kaervek's Purge deals damage equal to the creature's power to the creature's controller.", "colors": ["B", "R"], "color_identity": ["B", "R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "5f06acf3-8123-4a78-b2e7-089b0b775a4a", "set": "mir", "set_name": "Mirage", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/5f06acf3-8123-4a78-b2e7-089b0b775a4a", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Amir&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/mir?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/7a42ef95-92ec-40fe-ab30-a476f012a525/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Adaa86c76-aacb-4244-9639-81f758c634b2&unique=prints", "collector_number": "270", "digital": false, "rarity": "uncommon", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Richard Kane Ferguson", "artist_ids": ["191620ed-2361-444e-96a6-1fe7ce32ef3b"], "illustration_id": "fcdfbc78-8f2c-46ff-9095-ca6671720801", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 19310, "prices": {"usd": "0.19", "usd_foil": null, "usd_etched": null, "eur": "0.14", "eur_foil": null, "tix": "0.11"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=3541", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Kaervek%27s+Purge&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Kaervek%27s+Purge&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Kaervek%27s+Purge"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/5121?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Kaervek%27s+Purge&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/7087?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "49dd5a66-101d-4f88-b1ba-e2368203d408", "oracle_id": "893a85f6-e38a-47b3-8b31-6202c2e7929a", "multiverse_ids": [74322], "tcgplayer_id": 37878, "cardmarket_id": 14821, "name": "Kill! Destroy!", "lang": "en", "released_at": "2004-11-19", "uri": "https://api.scryfall.com/cards/49dd5a66-101d-4f88-b1ba-e2368203d408", "scryfall_uri": "https://scryfall.com/card/unh/58/kill!-destroy!?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/4/9/49dd5a66-101d-4f88-b1ba-e2368203d408.jpg?1605097368", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/9/49dd5a66-101d-4f88-b1ba-e2368203d408.jpg?1605097368", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/4/9/49dd5a66-101d-4f88-b1ba-e2368203d408.jpg?1605097368", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/4/9/49dd5a66-101d-4f88-b1ba-e2368203d408.png?1605097368", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/9/49dd5a66-101d-4f88-b1ba-e2368203d408.jpg?1605097368", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/4/9/49dd5a66-101d-4f88-b1ba-e2368203d408.jpg?1605097368"}, "mana_cost": "{1}{B}{B}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Destroy target nonblack creature.\nGotcha \u2014 If an opponent says \"kill\" or \"destroy,\" you may say \"Gotcha!\" When you do, return Kill! Destroy! from your graveyard to your hand.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "not_legal", "pauper": "not_legal", "vintage": "not_legal", "penny": "not_legal", "commander": "not_legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "not_legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "4c8bc76a-05a5-43db-aaf0-34deb347b871", "set": "unh", "set_name": "Unhinged", "set_type": "funny", "set_uri": "https://api.scryfall.com/sets/4c8bc76a-05a5-43db-aaf0-34deb347b871", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aunh&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/unh?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/49dd5a66-101d-4f88-b1ba-e2368203d408/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A893a85f6-e38a-47b3-8b31-6202c2e7929a&unique=prints", "collector_number": "58", "digital": false, "rarity": "uncommon", "flavor_text": "Getting \"Gotcha'ed\" again and again.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Corey D. Macourek", "artist_ids": ["0a35297c-9c69-4132-9173-2ce9b17732a0"], "illustration_id": "2f6c13e7-a206-4aa6-a047-80c71166162b", "border_color": "silver", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "prices": {"usd": "1.09", "usd_foil": "14.00", "usd_etched": null, "eur": "0.49", "eur_foil": "5.90", "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=74322", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Kill%21+Destroy%21&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Kill%21+Destroy%21&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Kill%21+Destroy%21"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/37878?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Kill%21+Destroy%21&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Kill%21+Destroy%21&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "f7a4d87d-b844-4f20-8b14-4fd32c53dea5", "oracle_id": "7b47891f-130a-4d76-b262-53f5e3bb6b95", "multiverse_ids": [366466], "mtgo_id": 47903, "mtgo_foil_id": 47904, "tcgplayer_id": 67494, "cardmarket_id": 260023, "name": "Killing Glare", "lang": "en", "released_at": "2013-02-01", "uri": "https://api.scryfall.com/cards/f7a4d87d-b844-4f20-8b14-4fd32c53dea5", "scryfall_uri": "https://scryfall.com/card/gtc/70/killing-glare?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/f/7/f7a4d87d-b844-4f20-8b14-4fd32c53dea5.jpg?1561852883", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/7/f7a4d87d-b844-4f20-8b14-4fd32c53dea5.jpg?1561852883", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/f/7/f7a4d87d-b844-4f20-8b14-4fd32c53dea5.jpg?1561852883", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/f/7/f7a4d87d-b844-4f20-8b14-4fd32c53dea5.png?1561852883", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/7/f7a4d87d-b844-4f20-8b14-4fd32c53dea5.jpg?1561852883", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/f/7/f7a4d87d-b844-4f20-8b14-4fd32c53dea5.jpg?1561852883"}, "mana_cost": "{X}{B}", "cmc": 1.0, "type_line": "Instant", "oracle_text": "Destroy target creature with power X or less.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "035a05f7-e020-4f50-a141-ed16ba704bd2", "set": "gtc", "set_name": "Gatecrash", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/035a05f7-e020-4f50-a141-ed16ba704bd2", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Agtc&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/gtc?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/f7a4d87d-b844-4f20-8b14-4fd32c53dea5/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A7b47891f-130a-4d76-b262-53f5e3bb6b95&unique=prints", "collector_number": "70", "digital": false, "rarity": "uncommon", "flavor_text": "A casual glance into a dark corner may be your last.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Peter Mohrbacher", "artist_ids": ["c8f27311-46a5-4eaf-9b2e-d660ed1db649"], "illustration_id": "40c7d825-4ccd-4129-ab60-f1a29c43a49c", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 14319, "penny_rank": 10360, "prices": {"usd": "0.11", "usd_foil": "0.25", "usd_etched": null, "eur": "0.50", "eur_foil": "0.02", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=366466", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Killing+Glare&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Killing+Glare&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Killing+Glare"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/67494?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Killing+Glare&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/47903?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "61b0b9a3-8f50-4fba-9978-409f3369afa6", "oracle_id": "e1ce32c7-a882-4d3a-9fd6-e5e2943382fb", "multiverse_ids": [555220], "mtgo_id": 98257, "arena_id": 80170, "tcgplayer_id": 269067, "cardmarket_id": 652158, "name": "Kill Shot", "lang": "en", "released_at": "2022-04-29", "uri": "https://api.scryfall.com/cards/61b0b9a3-8f50-4fba-9978-409f3369afa6", "scryfall_uri": "https://scryfall.com/card/snc/19/kill-shot?utm_source=api", "layout": "normal", "highres_image": false, "image_status": "lowres", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/6/1/61b0b9a3-8f50-4fba-9978-409f3369afa6.jpg?1650026094", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/1/61b0b9a3-8f50-4fba-9978-409f3369afa6.jpg?1650026094", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/6/1/61b0b9a3-8f50-4fba-9978-409f3369afa6.jpg?1650026094", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/6/1/61b0b9a3-8f50-4fba-9978-409f3369afa6.png?1650026094", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/1/61b0b9a3-8f50-4fba-9978-409f3369afa6.jpg?1650026094", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/6/1/61b0b9a3-8f50-4fba-9978-409f3369afa6.jpg?1650026094"}, "mana_cost": "{2}{W}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Destroy target attacking creature.", "colors": ["W"], "color_identity": ["W"], "keywords": [], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo", "arena"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "df837242-8c15-42e4-b049-c933a02dc501", "set": "snc", "set_name": "Streets of New Capenna", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/df837242-8c15-42e4-b049-c933a02dc501", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Asnc&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/snc?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/61b0b9a3-8f50-4fba-9978-409f3369afa6/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ae1ce32c7-a882-4d3a-9fd6-e5e2943382fb&unique=prints", "collector_number": "19", "digital": false, "rarity": "common", "flavor_text": "\"In the assassination trade, no one lives to make more than one mistake.\"\n\u2014Anhelo, the Painter", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Josh Hass", "artist_ids": ["8fa1fdf0-96d6-46f4-a7ff-b1c0257c3735"], "illustration_id": "b6fa8d21-8332-4a62-b798-28a0a0d85773", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 12704, "penny_rank": 9765, "prices": {"usd": "0.01", "usd_foil": "0.02", "usd_etched": null, "eur": "0.02", "eur_foil": "0.04", "tix": "0.01"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=555220", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Kill+Shot&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Kill+Shot&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Kill+Shot"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/269067?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Kill+Shot&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/98257?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "f30d4136-78a3-4760-83af-d365cc97d118", "oracle_id": "e1ce32c7-a882-4d3a-9fd6-e5e2943382fb", "multiverse_ids": [386582], "mtgo_id": 53962, "mtgo_foil_id": 53963, "tcgplayer_id": 93260, "cardmarket_id": 269432, "name": "Kill Shot", "lang": "en", "released_at": "2014-09-26", "uri": "https://api.scryfall.com/cards/f30d4136-78a3-4760-83af-d365cc97d118", "scryfall_uri": "https://scryfall.com/card/ktk/15/kill-shot?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/f/3/f30d4136-78a3-4760-83af-d365cc97d118.jpg?1562795914", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/3/f30d4136-78a3-4760-83af-d365cc97d118.jpg?1562795914", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/f/3/f30d4136-78a3-4760-83af-d365cc97d118.jpg?1562795914", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/f/3/f30d4136-78a3-4760-83af-d365cc97d118.png?1562795914", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/3/f30d4136-78a3-4760-83af-d365cc97d118.jpg?1562795914", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/f/3/f30d4136-78a3-4760-83af-d365cc97d118.jpg?1562795914"}, "mana_cost": "{2}{W}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Destroy target attacking creature.", "colors": ["W"], "color_identity": ["W"], "keywords": [], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "6c7a715c-ded9-449e-89b0-c665773e9c3c", "set": "ktk", "set_name": "Khans of Tarkir", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/6c7a715c-ded9-449e-89b0-c665773e9c3c", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aktk&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ktk?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/f30d4136-78a3-4760-83af-d365cc97d118/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ae1ce32c7-a882-4d3a-9fd6-e5e2943382fb&unique=prints", "collector_number": "15", "digital": false, "rarity": "common", "flavor_text": "Mardu archers are trained in Dakla, the way of the bow. They never miss their target, no matter how small, how fast, or how far away.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Michael C. Hayes", "artist_ids": ["d119119f-9ee1-4cf1-a01f-e90b6a042155"], "illustration_id": "85eb11e9-2859-48dd-9070-dc89775d8594", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 12704, "penny_rank": 9765, "prices": {"usd": "0.05", "usd_foil": "0.19", "usd_etched": null, "eur": "0.03", "eur_foil": "0.05", "tix": "0.04"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=386582", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Kill+Shot&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Kill+Shot&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Kill+Shot"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/93260?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Kill+Shot&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/53962?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}]} \ No newline at end of file +{"has_more": true, "data": [{"name": "Abrupt Decay", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/b/3b1e92b4-6e53-4dba-a572-c67e01965ac5.jpg?1562785076", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/b/3b1e92b4-6e53-4dba-a572-c67e01965ac5.jpg?1562785076"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Abrupt Decay", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/b/0b10ef54-368c-4841-ab5d-f2e8e1265c83.jpg?1561756631", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/b/0b10ef54-368c-4841-ab5d-f2e8e1265c83.jpg?1561756631"}, "reprint": true, "digital": false, "set_type": "promo"}, {"name": "Active Volcano", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/d/ad402e65-6fac-4005-a2d4-592983df0c30.jpg?1584237356", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/d/ad402e65-6fac-4005-a2d4-592983df0c30.jpg?1584237356"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Aerial Assault", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/4/64d9c182-cbb3-4791-90dd-0e533ddeebda.jpg?1592515927", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/4/64d9c182-cbb3-4791-90dd-0e533ddeebda.jpg?1592515927"}, "reprint": false, "digital": false, "set_type": "core"}, {"name": "Aerial Predation", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/c/ec3c023c-037e-495a-b7df-32be42a75f36.jpg?1562795050", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/c/ec3c023c-037e-495a-b7df-32be42a75f36.jpg?1562795050"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Afterlife", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/f/8fa2ecf9-b53c-4f1d-9028-ca3820d043cb.jpg?1562381856", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/f/8fa2ecf9-b53c-4f1d-9028-ca3820d043cb.jpg?1562381856"}, "reprint": true, "digital": false, "set_type": "expansion"}, {"name": "Afterlife", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/6/4644694d-52e6-4d00-8cad-748899eeea84.jpg?1562718804", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/6/4644694d-52e6-4d00-8cad-748899eeea84.jpg?1562718804"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Aftershock", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/9/c91a26b2-03f8-43f0-a3a4-ff6c5a3690c4.jpg?1587857346", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/9/c91a26b2-03f8-43f0-a3a4-ff6c5a3690c4.jpg?1587857346"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Agonizing Demise", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/3/539ac5e1-4bad-4f70-abac-e70c406bebec.jpg?1562912008", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/3/539ac5e1-4bad-4f70-abac-e70c406bebec.jpg?1562912008"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Angrath's Fury", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/0/708006ba-d494-4093-b108-8249b110831e.jpg?1555041214", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/0/708006ba-d494-4093-b108-8249b110831e.jpg?1555041214"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Annihilate", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/a/4a3bf039-ecf6-477e-997c-e32c55323c01.jpg?1562909994", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/a/4a3bf039-ecf6-477e-997c-e32c55323c01.jpg?1562909994"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Asphyxiate", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/9/894f3f5f-586d-45e4-9af7-4de80e44dfae.jpg?1593091866", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/9/894f3f5f-586d-45e4-9af7-4de80e44dfae.jpg?1593091866"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Assassinate", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/0/40b67839-622d-41c1-b9c7-1a26b021ec78.jpg?1562908402", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/0/40b67839-622d-41c1-b9c7-1a26b021ec78.jpg?1562908402"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Assassin's Blade", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/8/b80e8fe0-eccb-4268-a6ce-1365c68e6b13.jpg?1562447376", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/8/b80e8fe0-eccb-4268-a6ce-1365c68e6b13.jpg?1562447376"}, "reprint": false, "digital": false, "set_type": "starter"}, {"name": "Assassin's Ink", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/a/5a926c10-029d-4e24-8c3f-1808025e30aa.jpg?1654567050", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/a/5a926c10-029d-4e24-8c3f-1808025e30aa.jpg?1654567050"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Assassin's Strike", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/7/f796e320-9898-45d4-9d7a-6d35de53c9ab.jpg?1562795619", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/7/f796e320-9898-45d4-9d7a-6d35de53c9ab.jpg?1562795619"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Avenging Arrow", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/9/696678ff-44dc-4fe4-bf17-024e86cd0220.jpg?1562787572", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/9/696678ff-44dc-4fe4-bf17-024e86cd0220.jpg?1562787572"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Bake into a Pie", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/2/42a4d090-1bb7-4334-ab22-e2527391e79b.jpg?1572490064", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/2/42a4d090-1bb7-4334-ab22-e2527391e79b.jpg?1572490064"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Beast Within", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/6/76f8a300-44a8-4a70-93d1-64333c13f6f2.jpg?1592752271", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/6/76f8a300-44a8-4a70-93d1-64333c13f6f2.jpg?1592752271"}, "reprint": true, "digital": false, "set_type": "duel_deck"}, {"name": "Beast Within", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/e/ce5b6d19-22e3-4f57-8f4d-a17e982286c7.jpg?1562881648", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/e/ce5b6d19-22e3-4f57-8f4d-a17e982286c7.jpg?1562881648"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Bedevil", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/1/81e2b96b-ecf2-4dd9-bc9d-3c46ee8c59e6.jpg?1584831400", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/1/81e2b96b-ecf2-4dd9-bc9d-3c46ee8c59e6.jpg?1584831400"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Befoul", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/d/2dfff5d3-1433-4a24-83e6-6361a446b974.jpg?1562758881", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/d/2dfff5d3-1433-4a24-83e6-6361a446b974.jpg?1562758881"}, "reprint": true, "digital": false, "set_type": "expansion"}, {"name": "Befoul", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/c/7c5db137-33b9-4cea-9193-4e637d2966f1.jpg?1562241441", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/c/7c5db137-33b9-4cea-9193-4e637d2966f1.jpg?1562241441"}, "reprint": true, "digital": false, "set_type": "core"}, {"name": "Befoul", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/9/f92cb48d-315b-4877-b615-ffdf275c4d61.jpg?1562947702", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/9/f92cb48d-315b-4877-b615-ffdf275c4d61.jpg?1562947702"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Betrayal of Flesh", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/9/a9e2e107-0277-4e5c-81a7-258bb2998f3e.jpg?1562153677", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/9/a9e2e107-0277-4e5c-81a7-258bb2998f3e.jpg?1562153677"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Bloodchief's Thirst", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/5/059e8447-6b1c-4651-a734-a8fea2cbf7b2.jpg?1604195360", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/5/059e8447-6b1c-4651-a734-a8fea2cbf7b2.jpg?1604195360"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Blood Curdle", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/1/4184c851-1419-476c-ba9c-9f0cb1137114.jpg?1591226609", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/1/4184c851-1419-476c-ba9c-9f0cb1137114.jpg?1591226609"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Bone Shards", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/e/1ee98955-4c47-4d45-9377-608dfa755337.jpg?1626095299", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/e/1ee98955-4c47-4d45-9377-608dfa755337.jpg?1626095299"}, "reprint": false, "digital": false, "set_type": "draft_innovation"}, {"name": "Bone Splinters", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/4/74780faa-1c64-4d73-8d09-53b47ba02d7a.jpg?1562922512", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/4/74780faa-1c64-4d73-8d09-53b47ba02d7a.jpg?1562922512"}, "reprint": true, "digital": false, "set_type": "expansion"}, {"name": "Bone Splinters", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/8/387eda28-f35b-48b0-ba59-773d82902327.jpg?1592708776", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/8/387eda28-f35b-48b0-ba59-773d82902327.jpg?1592708776"}, "reprint": true, "digital": false, "set_type": "expansion"}, {"name": "Bone Splinters", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/4/d4a4b3a3-b7ae-4210-8037-098fdf5808d0.jpg?1562709424", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/4/d4a4b3a3-b7ae-4210-8037-098fdf5808d0.jpg?1562709424"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Brainspoil", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/3/c34fa44f-274e-4914-bbd5-71193f8d2f96.jpg?1598914670", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/3/c34fa44f-274e-4914-bbd5-71193f8d2f96.jpg?1598914670"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Bright Reprisal", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/3/3340ffb9-9513-4551-ad64-821600596b2e.jpg?1562553092", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/3/3340ffb9-9513-4551-ad64-821600596b2e.jpg?1562553092"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Bring Down", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/1/e18146f9-369c-41c8-8a1d-7737edd2c18e.jpg?1562940282", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/1/e18146f9-369c-41c8-8a1d-7737edd2c18e.jpg?1562940282"}, "reprint": false, "digital": false, "set_type": "draft_innovation"}, {"name": "Broken Visage", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/2/824823fb-5ae1-48b1-bc46-e452afa73cd8.jpg?1562592294", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/2/824823fb-5ae1-48b1-bc46-e452afa73cd8.jpg?1562592294"}, "reprint": true, "digital": false, "set_type": "core"}, {"name": "Broken Visage", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/b/9be199e7-feaa-4f23-b93c-3eab54a02e74.jpg?1562587775", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/b/9be199e7-feaa-4f23-b93c-3eab54a02e74.jpg?1562587775"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Broken Wings", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/e/9eb94908-4f4a-487e-87ac-8d5bdefe9983.jpg?1650029788", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/e/9eb94908-4f4a-487e-87ac-8d5bdefe9983.jpg?1650029788"}, "reprint": true, "digital": false, "set_type": "expansion"}, {"name": "Broken Wings", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/2/6201f78e-ff45-4c59-ac85-c8447c14a496.jpg?1631050058", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/2/6201f78e-ff45-4c59-ac85-c8447c14a496.jpg?1631050058"}, "reprint": true, "digital": false, "set_type": "expansion"}, {"name": "Broken Wings", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/0/c0fc2dfd-85b0-4add-be18-b39549235921.jpg?1604198611", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/0/c0fc2dfd-85b0-4add-be18-b39549235921.jpg?1604198611"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Cast Down", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/b/aba79021-39af-4e74-beb5-f2f508c865b2.jpg?1653520579", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/b/aba79021-39af-4e74-beb5-f2f508c865b2.jpg?1653520579"}, "reprint": true, "digital": false, "set_type": "draft_innovation"}, {"name": "Cast Down", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/4/a41150b2-44a6-4e80-8b32-afc6ea744fb3.jpg?1591104816", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/4/a41150b2-44a6-4e80-8b32-afc6ea744fb3.jpg?1591104816"}, "reprint": true, "frame_effects": ["inverted"], "digital": false, "set_type": "promo"}, {"name": "Casualties of War", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/8/08fc5e50-c6f7-41ec-815a-5667eefded78.jpg?1557577078", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/8/08fc5e50-c6f7-41ec-815a-5667eefded78.jpg?1557577078"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Certain Death", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/6/c67784b3-eb55-452e-b965-f63220b88896.jpg?1576384279", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/6/c67784b3-eb55-452e-b965-f63220b88896.jpg?1576384279"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Chastise", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/1/1169dab7-8f4c-474d-9289-42765a275376.jpg?1562628717", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/1/1169dab7-8f4c-474d-9289-42765a275376.jpg?1562628717"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Chill to the Bone", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/1/312505d7-362e-43cf-bd23-28c248a8b7e1.jpg?1593275049", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/1/312505d7-362e-43cf-bd23-28c248a8b7e1.jpg?1593275049"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Cinder Cloud", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/0/f044c470-50ce-4a6c-b8ab-665357c3c11e.jpg?1562722408", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/0/f044c470-50ce-4a6c-b8ab-665357c3c11e.jpg?1562722408"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Clear a Path", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/a/8a8f904b-a9a3-4bae-9284-4e9cbe7592ee.jpg?1562920680", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/a/8a8f904b-a9a3-4bae-9284-4e9cbe7592ee.jpg?1562920680"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Closing Statement", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/8/785e6d07-fe40-4723-b963-02da0a0987c7.jpg?1627428302", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/8/785e6d07-fe40-4723-b963-02da0a0987c7.jpg?1627428302"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Collar the Culprit", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/d/cdf305b7-d1f7-4770-9201-8f3fb6735cd9.jpg?1572892497", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/d/cdf305b7-d1f7-4770-9201-8f3fb6735cd9.jpg?1572892497"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Collective Effort", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/8/d85a6369-c07f-47d5-8448-72d8ec7e7898.jpg?1576383801", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/8/d85a6369-c07f-47d5-8448-72d8ec7e7898.jpg?1576383801"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Consign to the Pit", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/9/09991fad-4282-4a17-bfb1-03eaa13502df.jpg?1584830536", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/9/09991fad-4282-4a17-bfb1-03eaa13502df.jpg?1584830536"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Contract Killing", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/1/d1f20feb-b1ed-4d80-bef9-f3cc44ffb7b0.jpg?1562564388", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/1/d1f20feb-b1ed-4d80-bef9-f3cc44ffb7b0.jpg?1562564388"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Corpsehatch", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/9/c91c152d-1829-438c-b571-74361e09df62.jpg?1562708566", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/9/c91c152d-1829-438c-b571-74361e09df62.jpg?1562708566"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Cradle to Grave", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/e/3ec275cf-bb4e-4de0-9184-4d53dd87dad3.jpg?1562569856", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/e/3ec275cf-bb4e-4de0-9184-4d53dd87dad3.jpg?1562569856"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Crosis's Charm", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/5/a586e329-b1e2-4b60-a914-7b9aa2c645c2.jpg?1562929889", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/5/a586e329-b1e2-4b60-a914-7b9aa2c645c2.jpg?1562929889"}, "reprint": true, "digital": false, "set_type": "commander"}, {"name": "Crosis's Charm", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/5/b59a9e75-9988-4040-a718-b1655fc20d11.jpg?1562933342", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/5/b59a9e75-9988-4040-a718-b1655fc20d11.jpg?1562933342"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Cruel Cut", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/9/f99ffe22-4dd8-4787-b6e0-e03dea8ab42a.jpg?1590010389", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/9/f99ffe22-4dd8-4787-b6e0-e03dea8ab42a.jpg?1590010389"}, "reprint": true, "digital": true, "set_type": "memorabilia"}, {"name": "Cruel Revival", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/8/a863ae27-a99a-4a60-ab07-25c1bacec64d.jpg?1562035297", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/8/a863ae27-a99a-4a60-ab07-25c1bacec64d.jpg?1562035297"}, "reprint": true, "digital": false, "set_type": "core"}, {"name": "Cruel Revival", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/4/245aba23-2abb-4084-b4cb-d06e46de2108.jpg?1562903595", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/4/245aba23-2abb-4084-b4cb-d06e46de2108.jpg?1562903595"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Crushing Canopy", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/a/eae67d98-5167-442b-8586-0b2bcb0c56eb.jpg?1643592488", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/a/eae67d98-5167-442b-8586-0b2bcb0c56eb.jpg?1643592488"}, "reprint": true, "digital": false, "set_type": "expansion"}, {"name": "Crushing Canopy", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/0/c0c4f213-0ea4-44c0-8429-172a317b77f5.jpg?1572893325", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/0/c0c4f213-0ea4-44c0-8429-172a317b77f5.jpg?1572893325"}, "reprint": true, "digital": false, "set_type": "expansion"}, {"name": "Crushing Canopy", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/6/a66b0e45-e585-44f3-8d2b-e887330ba138.jpg?1562561563", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/6/a66b0e45-e585-44f3-8d2b-e887330ba138.jpg?1562561563"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Crushing Vines", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/5/c59b3653-5a50-48f2-bcf1-ab305ef30902.jpg?1562941671", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/5/c59b3653-5a50-48f2-bcf1-ab305ef30902.jpg?1562941671"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Damn", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/f/efeae088-9ac5-4d2f-a15c-d8675a471ac5.jpg?1626095400", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/f/efeae088-9ac5-4d2f-a15c-d8675a471ac5.jpg?1626095400"}, "reprint": false, "digital": false, "set_type": "draft_innovation"}, {"name": "Daring Demolition", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/6/a6378898-50b7-47c9-8c25-dc660606be9f.jpg?1576381626", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/6/a6378898-50b7-47c9-8c25-dc660606be9f.jpg?1576381626"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Dark Banishing", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/d/9d03720d-b0ca-4892-9ad1-52189f4a30a1.jpg?1562244108", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/d/9d03720d-b0ca-4892-9ad1-52189f4a30a1.jpg?1562244108"}, "reprint": true, "digital": false, "set_type": "core"}, {"name": "Dark Banishing", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/2/922d6c8b-70ae-4db4-bf26-1904e4906211.jpg?1562055426", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/2/922d6c8b-70ae-4db4-bf26-1904e4906211.jpg?1562055426"}, "reprint": true, "digital": false, "set_type": "expansion"}, {"name": "Dark Banishing", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/f/5f983dcb-b077-465f-a70b-6bd0e425556c.jpg?1562719738", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/f/5f983dcb-b077-465f-a70b-6bd0e425556c.jpg?1562719738"}, "reprint": true, "digital": false, "set_type": "expansion"}, {"name": "Dark Banishing", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/7/f7dc2716-ed62-4797-ad2b-227eca5408d0.jpg?1562941556", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/7/f7dc2716-ed62-4797-ad2b-227eca5408d0.jpg?1562941556"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Dark Betrayal", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/6/56adf4ea-1b1c-4737-8574-1848ca47d4f3.jpg?1562818301", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/6/56adf4ea-1b1c-4737-8574-1848ca47d4f3.jpg?1562818301"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Dark Offering", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/c/3ce0cef9-6de4-4a71-b76a-eb0198387294.jpg?1562909319", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/c/3ce0cef9-6de4-4a71-b76a-eb0198387294.jpg?1562909319"}, "reprint": false, "digital": false, "set_type": "starter"}, {"name": "Dark Withering", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/d/3da58e0d-5877-43c4-b129-993e154b6087.jpg?1562907804", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/d/3da58e0d-5877-43c4-b129-993e154b6087.jpg?1562907804"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Deadly Alliance", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/0/007a5c8c-ed0b-4844-9393-a3d25d4ffa1d.jpg?1604195436", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/0/007a5c8c-ed0b-4844-9393-a3d25d4ffa1d.jpg?1604195436"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Deadly Visit", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/6/462fe190-5264-42d8-bd27-23c5aa0c641f.jpg?1572892937", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/6/462fe190-5264-42d8-bd27-23c5aa0c641f.jpg?1572892937"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Death Bomb", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/8/f8a84715-c5dc-4a19-af6a-796c6ee912c2.jpg?1562947604", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/8/f8a84715-c5dc-4a19-af6a-796c6ee912c2.jpg?1562947604"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Deathmark", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/1/61268362-f2ba-469d-8e5a-0b8da96e54a5.jpg?1561982272", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/1/61268362-f2ba-469d-8e5a-0b8da96e54a5.jpg?1561982272"}, "reprint": true, "digital": false, "set_type": "core"}, {"name": "Deathmark", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/7/e72e8728-d0a0-4ee5-87c3-092ca94225e0.jpg?1593275062", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/7/e72e8728-d0a0-4ee5-87c3-092ca94225e0.jpg?1593275062"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Death Mutation", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/c/4c643d87-50bc-4380-b1d6-0a465eef5dbf.jpg?1562912876", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/c/4c643d87-50bc-4380-b1d6-0a465eef5dbf.jpg?1562912876"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Death Rattle", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/c/8cddafc8-57d6-456e-af58-4b7f45e195d5.jpg?1562923481", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/c/8cddafc8-57d6-456e-af58-4b7f45e195d5.jpg?1562923481"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Death's Caress", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/6/0643fb9a-8284-4dfc-836a-c2c69ef09f32.jpg?1562896472", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/6/0643fb9a-8284-4dfc-836a-c2c69ef09f32.jpg?1562896472"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Deathsprout", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/d/6d615557-aea8-4057-9fbd-d62dd98edc13.jpg?1557577090", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/d/6d615557-aea8-4057-9fbd-d62dd98edc13.jpg?1557577090"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Death Stroke", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/4/7478a471-3bd2-4038-a4eb-70c38a43afa9.jpg?1562596864", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/4/7478a471-3bd2-4038-a4eb-70c38a43afa9.jpg?1562596864"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Decimate", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/5/358bbaf9-8d48-448b-b87f-211344e36e29.jpg?1562864952", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/5/358bbaf9-8d48-448b-b87f-211344e36e29.jpg?1562864952"}, "reprint": true, "digital": false, "set_type": "draft_innovation"}, {"name": "Decimate", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/1/912c398a-e49a-4399-ac41-7b1d4328a59d.jpg?1562921956", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/1/912c398a-e49a-4399-ac41-7b1d4328a59d.jpg?1562921956"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Deface", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/3/43df9f41-944e-4cf3-ac80-524eadac221d.jpg?1584830848", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/3/43df9f41-944e-4cf3-ac80-524eadac221d.jpg?1584830848"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Defeat", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/0/60473300-0bdc-4e89-87d9-28c8d7b4d83d.jpg?1562787158", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/0/60473300-0bdc-4e89-87d9-28c8d7b4d83d.jpg?1562787158"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Defend the Campus", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/5/85e4e1b5-77d6-4af4-b22e-6f6b4d129f5d.jpg?1624589309", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/5/85e4e1b5-77d6-4af4-b22e-6f6b4d129f5d.jpg?1624589309"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Defenestrate", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/f/df3abdcc-83a8-45c3-9bfd-23f929705018.jpg?1634349688", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/f/df3abdcc-83a8-45c3-9bfd-23f929705018.jpg?1634349688"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Devour in Shadow", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/8/98c80584-b7b5-4dcd-8a00-812b9dd9b1b9.jpg?1562878693", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/8/98c80584-b7b5-4dcd-8a00-812b9dd9b1b9.jpg?1562878693"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Dimir Charm", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/3/f3f4cfa7-8ee4-4a85-9e6a-65a7541f62c1.jpg?1561852231", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/3/f3f4cfa7-8ee4-4a85-9e6a-65a7541f62c1.jpg?1561852231"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Dimir Charm", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/f/9f6bc1da-3969-4f19-b072-4ed79f906fef.jpg?1562497257", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/f/9f6bc1da-3969-4f19-b072-4ed79f906fef.jpg?1562497257"}, "reprint": true, "digital": false, "set_type": "promo"}, {"name": "Disembowel", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/1/c1edb79d-0031-4dc6-8881-f6d1fe4acba2.jpg?1619741469", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/1/c1edb79d-0031-4dc6-8881-f6d1fe4acba2.jpg?1619741469"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Divine Verdict", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/d/ed07b708-7232-4b87-b5d9-edaa20a69293.jpg?1555039673", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/d/ed07b708-7232-4b87-b5d9-edaa20a69293.jpg?1555039673"}, "reprint": true, "digital": false, "set_type": "expansion"}, {"name": "Divine Verdict", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/9/79f46ac0-9e2f-4f9f-beee-0a7914475ac1.jpg?1562820257", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/9/79f46ac0-9e2f-4f9f-beee-0a7914475ac1.jpg?1562820257"}, "reprint": true, "digital": false, "set_type": "expansion"}, {"name": "Divine Verdict", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/8/48444e14-c73b-47d1-9c55-0ff4dc3c6034.jpg?1561978713", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/8/48444e14-c73b-47d1-9c55-0ff4dc3c6034.jpg?1561978713"}, "reprint": false, "digital": false, "set_type": "core"}, {"name": "Doom Blade", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/7/176cdb4b-6ad4-4991-8456-28579640063d.jpg?1562229273", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/7/176cdb4b-6ad4-4991-8456-28579640063d.jpg?1562229273"}, "reprint": true, "digital": false, "set_type": "duel_deck"}, {"name": "Doom Blade", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/e/6e19acff-f3dd-417a-a9ab-ea3e36c1ba61.jpg?1561983934", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/e/6e19acff-f3dd-417a-a9ab-ea3e36c1ba61.jpg?1561983934"}, "reprint": false, "digital": false, "set_type": "core"}, {"name": "Doom Blade", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/e/7e6c0fe2-a82b-42cb-8629-b9f00b7f08e9.jpg?1623780045", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/e/7e6c0fe2-a82b-42cb-8629-b9f00b7f08e9.jpg?1623780045"}, "reprint": true, "digital": false, "set_type": "masterpiece"}, {"name": "Doom Blade", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/7/37468ade-27b1-4128-9a62-1293ec2aab41.jpg?1561756922", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/7/37468ade-27b1-4128-9a62-1293ec2aab41.jpg?1561756922"}, "reprint": true, "digital": false, "set_type": "promo"}, {"name": "Drag to the Underworld", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/1/91852444-9361-4588-a44f-fb90ba1b30e5.jpg?1581479732", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/1/91852444-9361-4588-a44f-fb90ba1b30e5.jpg?1581479732"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Dreadbore", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/8/a83945c6-4dc6-4d9a-9bc2-2d4a264e5422.jpg?1562791208", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/8/a83945c6-4dc6-4d9a-9bc2-2d4a264e5422.jpg?1562791208"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Drown in the Loch", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/b/8bf5df5b-164d-4ec2-a5e6-bbaea152e271.jpg?1572490739", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/b/8bf5df5b-164d-4ec2-a5e6-bbaea152e271.jpg?1572490739"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Drown in the Loch", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/1/01acd1c1-86b2-4423-9ba7-5b9725c0514f.jpg?1640249448", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/1/01acd1c1-86b2-4423-9ba7-5b9725c0514f.jpg?1640249448"}, "reprint": true, "digital": false, "set_type": "box"}, {"name": "Duh", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/a/fa5b9b30-4950-4c9c-9ce8-6d271bb7aa01.jpg?1562489857", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/a/fa5b9b30-4950-4c9c-9ce8-6d271bb7aa01.jpg?1562489857"}, "reprint": false, "digital": false, "set_type": "funny"}, {"name": "Easy Prey", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/1/312fb6e4-1eb1-4fbb-b7a4-125829a6e96a.jpg?1591226769", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/1/312fb6e4-1eb1-4fbb-b7a4-125829a6e96a.jpg?1591226769"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Eaten by Spiders", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/e/0efea1b1-f212-4b97-98dd-922f85ab191f.jpg?1592709344", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/e/0efea1b1-f212-4b97-98dd-922f85ab191f.jpg?1592709344"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Eightfold Maze", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/c/cc8c377a-82c4-46ee-94c2-b970160a3205.jpg?1562257975", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/c/cc8c377a-82c4-46ee-94c2-b970160a3205.jpg?1562257975"}, "reprint": false, "digital": false, "set_type": "starter"}, {"name": "Eliminate", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/8/f8eb4087-3a4c-4de8-8e29-f4cd71acb180.jpg?1594736106", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/8/f8eb4087-3a4c-4de8-8e29-f4cd71acb180.jpg?1594736106"}, "reprint": false, "digital": false, "set_type": "core"}, {"name": "Eliminate", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/5/c55b2b50-ac83-4a78-8f84-580193d1ca0f.jpg?1623780234", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/5/c55b2b50-ac83-4a78-8f84-580193d1ca0f.jpg?1623780234"}, "reprint": true, "digital": false, "set_type": "masterpiece"}, {"name": "Enduring Victory", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/4/54fef763-7ee2-4341-9c67-546e4b6710b7.jpg?1562786446", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/4/54fef763-7ee2-4341-9c67-546e4b6710b7.jpg?1562786446"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Essence Vortex", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/e/fe07e496-5070-4116-a91a-a3bbe19c12af.jpg?1562942896", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/e/fe07e496-5070-4116-a91a-a3bbe19c12af.jpg?1562942896"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Eviscerate", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/2/62ba90b8-3a30-4058-b8d3-72900b1f4fe0.jpg?1562736723", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/2/62ba90b8-3a30-4058-b8d3-72900b1f4fe0.jpg?1562736723"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Execute", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/3/333123bc-fb66-4b5a-bf55-045d2906c8c3.jpg?1562904481", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/3/333123bc-fb66-4b5a-bf55-045d2906c8c3.jpg?1562904481"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Expunge", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/5/0576ffe8-a7b9-479b-8ea0-418b430b1aa1.jpg?1562896134", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/5/0576ffe8-a7b9-479b-8ea0-418b430b1aa1.jpg?1562896134"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Eyeblight's Ending", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/0/e0c08701-7038-4d6b-bbf8-056fd8ffb226.jpg?1562371343", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/0/e0c08701-7038-4d6b-bbf8-056fd8ffb226.jpg?1562371343"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Fatal Blow", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/4/044dc7c2-6198-4526-b79a-f3d8ee7a157a.jpg?1562799109", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/4/044dc7c2-6198-4526-b79a-f3d8ee7a157a.jpg?1562799109"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Fatal Push", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/5/b5e81649-9954-424c-89d1-f87d73b66047.jpg?1595869185", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/5/b5e81649-9954-424c-89d1-f87d73b66047.jpg?1595869185"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Fatal Push", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/4/5427d8a6-ac9e-4e50-bd39-81713b2ade25.jpg?1607041515", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/4/5427d8a6-ac9e-4e50-bd39-81713b2ade25.jpg?1607041515"}, "reprint": true, "digital": false, "set_type": "box"}, {"name": "Fatal Push", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/9/b9a50516-a20f-4e6e-b4f2-0049b673f942.jpg?1599711004", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/9/b9a50516-a20f-4e6e-b4f2-0049b673f942.jpg?1599711004"}, "reprint": true, "digital": false, "set_type": "masters"}, {"name": "Fatal Push", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/6/86d1119d-7585-4699-8649-e3743c02d7a9.jpg?1562636837", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/6/86d1119d-7585-4699-8649-e3743c02d7a9.jpg?1562636837"}, "reprint": true, "digital": false, "set_type": "promo"}, {"name": "Fateful Absence", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/c/eca8d6f8-c6f1-437c-99e2-4281eae14a6f.jpg?1634346819", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/c/eca8d6f8-c6f1-437c-99e2-4281eae14a6f.jpg?1634346819"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Feast of Blood", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/a/1a7dd5e2-b2a5-46ab-a67c-499451706505.jpg?1562610240", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/a/1a7dd5e2-b2a5-46ab-a67c-499451706505.jpg?1562610240"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Feast of Blood", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/5/658bf8b7-fbc4-4046-9300-249cdeb87924.jpg?1561757312", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/5/658bf8b7-fbc4-4046-9300-249cdeb87924.jpg?1561757312"}, "reprint": true, "digital": false, "set_type": "promo"}, {"name": "Feast of Dreams", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/e/de07e21e-c12a-47a6-ad2c-ef6fed343407.jpg?1593095705", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/e/de07e21e-c12a-47a6-ad2c-ef6fed343407.jpg?1593095705"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Feast or Famine", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/2/92105bc6-b64a-4bdc-99fe-7a2ccdbd4486.jpg?1592713797", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/2/92105bc6-b64a-4bdc-99fe-7a2ccdbd4486.jpg?1592713797"}, "reprint": true, "digital": false, "set_type": "duel_deck"}, {"name": "Feast or Famine", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/0/302ec21d-bb10-4651-80da-11852768165d.jpg?1559592569", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/0/302ec21d-bb10-4651-80da-11852768165d.jpg?1559592569"}, "reprint": true, "digital": true, "set_type": "masters"}, {"name": "Feast or Famine", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/c/7c185b4d-8da5-4b8a-85f0-5f0622c7bade.jpg?1562769209", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/c/7c185b4d-8da5-4b8a-85f0-5f0622c7bade.jpg?1562769209"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Feed the Swarm", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/6/f6b2eba7-862a-4efd-9f65-065fb2070855.jpg?1604195649", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/6/f6b2eba7-862a-4efd-9f65-065fb2070855.jpg?1604195649"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Fierce Retribution", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/5/9597b163-5c6b-4f64-b1f1-5f1fa2e23e5d.jpg?1643586258", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/5/9597b163-5c6b-4f64-b1f1-5f1fa2e23e5d.jpg?1643586258"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Final Payment", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/9/49a21a8f-9c7b-4ae8-8635-f2ee2151c8de.jpg?1584831505", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/9/49a21a8f-9c7b-4ae8-8635-f2ee2151c8de.jpg?1584831505"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Finders, Keepers", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/f/5f4b7148-e98f-40a4-95e3-ffdd2daa324b.jpg?1562914921", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/f/5f4b7148-e98f-40a4-95e3-ffdd2daa324b.jpg?1562914921"}, "reprint": false, "digital": false, "set_type": "funny"}, {"name": "Finishing Blow", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/b/2b85a552-2119-4d9c-b7c1-c09c2d9f2f38.jpg?1594736130", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/b/2b85a552-2119-4d9c-b7c1-c09c2d9f2f38.jpg?1594736130"}, "reprint": false, "digital": false, "set_type": "core"}, {"name": "Fissure", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/a/aa2d778d-d74b-45ec-a86b-5d52ffad6ba5.jpg?1562935207", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/a/aa2d778d-d74b-45ec-a86b-5d52ffad6ba5.jpg?1562935207"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Flash Flood", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/a/5ae88c06-f28c-4fbc-a28c-5eb203a04722.jpg?1562859177", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/a/5ae88c06-f28c-4fbc-a28c-5eb203a04722.jpg?1562859177"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Flesh Allergy", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/c/9c729525-b954-42dd-9877-f4360d99b961.jpg?1562820900", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/c/9c729525-b954-42dd-9877-f4360d99b961.jpg?1562820900"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Flesh to Dust", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/6/16b2e842-6c92-47b0-bed4-e0e64485f168.jpg?1562783120", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/6/16b2e842-6c92-47b0-bed4-e0e64485f168.jpg?1562783120"}, "reprint": false, "digital": false, "set_type": "core"}, {"name": "Foul Play", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/7/87e4b75c-e993-4983-8933-977be314bba6.jpg?1634349812", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/7/87e4b75c-e993-4983-8933-977be314bba6.jpg?1634349812"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Fumarole", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/f/efa53e9a-0d7c-4d17-b2be-56930edfa2c2.jpg?1562940031", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/f/efa53e9a-0d7c-4d17-b2be-56930edfa2c2.jpg?1562940031"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Gang Up", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/0/10d01449-3e4e-44ef-90aa-9489c86c57df.jpg?1595438095", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/0/10d01449-3e4e-44ef-90aa-9489c86c57df.jpg?1595438095"}, "reprint": false, "digital": false, "set_type": "draft_innovation"}, {"name": "Get the Point", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/2/821c4ab5-eb75-445a-bbec-e50af54dba7a.jpg?1584831541", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/2/821c4ab5-eb75-445a-bbec-e50af54dba7a.jpg?1584831541"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Ghastly Demise", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/9/d9d2bfa3-0499-43ea-a76d-b12fddbc104e.jpg?1562935702", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/9/d9d2bfa3-0499-43ea-a76d-b12fddbc104e.jpg?1562935702"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Ghostly Visit", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/6/06f6938a-229a-4521-b5d5-7999ce5fb372.jpg?1562255824", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/6/06f6938a-229a-4521-b5d5-7999ce5fb372.jpg?1562255824"}, "reprint": false, "digital": false, "set_type": "starter"}, {"name": "Gloomlance", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/b/7b45bfb2-7c48-4da5-a0fd-29d353221814.jpg?1562832072", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/b/7b45bfb2-7c48-4da5-a0fd-29d353221814.jpg?1562832072"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Gloomwidow's Feast", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/9/59b989b4-692c-4ccb-a290-0ff00abacba9.jpg?1562830513", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/9/59b989b4-692c-4ccb-a290-0ff00abacba9.jpg?1562830513"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Go for the Throat", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/c/3c6cb231-41df-409c-923e-100319f27ee3.jpg?1562605365", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/c/3c6cb231-41df-409c-923e-100319f27ee3.jpg?1562605365"}, "reprint": true, "digital": false, "set_type": "commander"}, {"name": "Go for the Throat", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/3/a3109aaa-b1e9-4c68-85f0-7515c8eeadc3.jpg?1562636862", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/3/a3109aaa-b1e9-4c68-85f0-7515c8eeadc3.jpg?1562636862"}, "reprint": true, "digital": false, "set_type": "promo"}, {"name": "Grim Bounty", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/9/b98e0ab1-dea8-492b-a712-2057f2b1d020.jpg?1627704924", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/9/b98e0ab1-dea8-492b-a712-2057f2b1d020.jpg?1627704924"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Grisly Ritual", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/3/53cdf2ab-3acd-49bd-8273-84c1cfc92883.jpg?1643589817", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/3/53cdf2ab-3acd-49bd-8273-84c1cfc92883.jpg?1643589817"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Grisly Spectacle", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/2/c26d0f6e-e7bd-4206-a0da-1c9c203a73f2.jpg?1561844583", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/2/c26d0f6e-e7bd-4206-a0da-1c9c203a73f2.jpg?1561844583"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Guiding Bolt", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/d/cd552f81-1947-47e0-beee-f04e73551055.jpg?1653690524", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/d/cd552f81-1947-47e0-beee-f04e73551055.jpg?1653690524"}, "reprint": false, "digital": false, "set_type": "draft_innovation"}, {"name": "Hand of Death", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/9/a9761136-9e1c-4d86-98ce-7abe1d8e6a8d.jpg?1562935064", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/9/a9761136-9e1c-4d86-98ce-7abe1d8e6a8d.jpg?1562935064"}, "reprint": true, "digital": false, "set_type": "starter"}, {"name": "Hand of Death", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/7/27f136b8-52be-49b9-919b-2b9785254350.jpg?1546740328", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/7/27f136b8-52be-49b9-919b-2b9785254350.jpg?1546740328"}, "reprint": false, "digital": false, "set_type": "starter"}, {"name": "Hearth Charm", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/a/caa9ac66-51b7-4aec-92dc-0f0656b0f7fe.jpg?1562278639", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/a/caa9ac66-51b7-4aec-92dc-0f0656b0f7fe.jpg?1562278639"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Heartless Act", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/4/e4e6794a-feeb-4fc8-a2ee-38c75c18aaae.jpg?1591226819", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/4/e4e6794a-feeb-4fc8-a2ee-38c75c18aaae.jpg?1591226819"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Hero's Demise", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/2/d22dd514-814f-4a62-926d-fef311896c02.jpg?1562879959", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/2/d22dd514-814f-4a62-926d-fef311896c02.jpg?1562879959"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Hero's Downfall", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/1/c1b0751e-3a7e-4568-8c64-7429d6829687.jpg?1643589948", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/1/c1b0751e-3a7e-4568-8c64-7429d6829687.jpg?1643589948"}, "reprint": true, "digital": false, "set_type": "expansion"}, {"name": "Hero's Downfall", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/9/596822f6-dbd4-4cc8-aa50-9331ff42544e.jpg?1562818494", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/9/596822f6-dbd4-4cc8-aa50-9331ff42544e.jpg?1562818494"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Hero's Downfall", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/d/ed96b05d-b2ca-4c8f-969b-cac9b4562fab.jpg?1636900809", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/d/ed96b05d-b2ca-4c8f-969b-cac9b4562fab.jpg?1636900809"}, "reprint": true, "digital": false, "set_type": "box"}, {"name": "Hero's Downfall", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/4/64aa5cbd-98e9-46fc-8de4-64eab7afc90f.jpg?1561757293", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/4/64aa5cbd-98e9-46fc-8de4-64eab7afc90f.jpg?1561757293"}, "reprint": true, "digital": false, "set_type": "starter"}, {"name": "Hideous End", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/3/b33e6056-00c9-4731-b364-b0214398848d.jpg?1562842860", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/3/b33e6056-00c9-4731-b364-b0214398848d.jpg?1562842860"}, "reprint": false, "digital": false, "set_type": "planechase"}, {"name": "Horobi's Whisper", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/a/1aad5179-4b73-498e-85c5-1fc363d26223.jpg?1562875751", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/a/1aad5179-4b73-498e-85c5-1fc363d26223.jpg?1562875751"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Human Frailty", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/d/1d1de712-86ac-4c03-be86-2403cd121f66.jpg?1592708908", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/d/1d1de712-86ac-4c03-be86-2403cd121f66.jpg?1592708908"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Humble the Brute", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/c/7c105686-8b45-494a-b9ef-8aa267bb1b5a.jpg?1656286373", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/c/7c105686-8b45-494a-b9ef-8aa267bb1b5a.jpg?1656286373"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Immolating Glare", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/f/2f468338-bb66-4db0-a883-69095566092b.jpg?1562904646", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/f/2f468338-bb66-4db0-a883-69095566092b.jpg?1562904646"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Immolating Glare", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/d/0ddbcd23-e206-4a12-968a-3854693d1e60.jpg?1562870987", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/d/0ddbcd23-e206-4a12-968a-3854693d1e60.jpg?1562870987"}, "reprint": true, "digital": false, "set_type": "promo"}, {"name": "Impale", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/f/dfa0c4f7-3497-467d-9453-104fb4b5a0f3.jpg?1555040252", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/f/dfa0c4f7-3497-467d-9453-104fb4b5a0f3.jpg?1555040252"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Infernal Grasp", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/7/17824929-f131-4b8d-addb-66c25323155e.jpg?1634349911", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/7/17824929-f131-4b8d-addb-66c25323155e.jpg?1634349911"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Inscription of Ruin", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/3/93612079-0b8d-489d-9ae1-3593414a8cee.jpg?1604195857", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/3/93612079-0b8d-489d-9ae1-3593414a8cee.jpg?1604195857"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Into the Maw of Hell", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/d/5d188d9b-7a12-4eaf-855b-af4f0204dc5a.jpg?1562830878", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/d/5d188d9b-7a12-4eaf-855b-af4f0204dc5a.jpg?1562830878"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Just Fate", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/6/a6e5e572-030d-4a41-89e6-e720b49bc131.jpg?1562934537", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/6/a6e5e572-030d-4a41-89e6-e720b49bc131.jpg?1562934537"}, "reprint": false, "digital": false, "set_type": "starter"}, {"name": "Kaervek's Purge", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/a/7a42ef95-92ec-40fe-ab30-a476f012a525.jpg?1562720237", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/a/7a42ef95-92ec-40fe-ab30-a476f012a525.jpg?1562720237"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Kill! Destroy!", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/9/49dd5a66-101d-4f88-b1ba-e2368203d408.jpg?1605097368", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/9/49dd5a66-101d-4f88-b1ba-e2368203d408.jpg?1605097368"}, "reprint": false, "digital": false, "set_type": "funny"}, {"name": "Killing Glare", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/7/f7a4d87d-b844-4f20-8b14-4fd32c53dea5.jpg?1561852883", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/7/f7a4d87d-b844-4f20-8b14-4fd32c53dea5.jpg?1561852883"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Kill Shot", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/1/61b0b9a3-8f50-4fba-9978-409f3369afa6.jpg?1650026094", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/1/61b0b9a3-8f50-4fba-9978-409f3369afa6.jpg?1650026094"}, "reprint": true, "digital": false, "set_type": "expansion"}, {"name": "Kill Shot", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/3/f30d4136-78a3-4760-83af-d365cc97d118.jpg?1562795914", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/3/f30d4136-78a3-4760-83af-d365cc97d118.jpg?1562795914"}, "reprint": false, "digital": false, "set_type": "expansion"}]} \ No newline at end of file diff --git a/web/public/mtg/jsons/terror2.json b/web/public/mtg/jsons/terror2.json index f97c1fb4..162e6ad0 100644 --- a/web/public/mtg/jsons/terror2.json +++ b/web/public/mtg/jsons/terror2.json @@ -1 +1 @@ -{"object": "list", "total_cards": 369, "has_more": true, "next_page": "https://api.scryfall.com/cards/search?format=json&include_extras=true&include_multilingual=false&order=name&page=3&q=otag%3Acreature-removal+o%3A%2Fdestroy+target.%2A+%28creature%7Cpermanent%29%2F+%28t%3Ainstant+or+t%3Asorcery%29+o%3Atarget+not%3Aadventure+-%28set%3Asld+%28%28cn%3E%3D231+cn%3C%3D233%29+or+%28cn%3E%3D321+cn%3C%3D324%29+or+%28cn%3E%3D185+cn%3C%3D189%29+or+%28cn%3E%3D138+cn%3C%3D142%29+or+%28cn%3E%3D364+cn%3C%3D368%29+or+cn%3A669+or+cn%3A670%29%29+-name%3A%2F%5Ea-%2F+not%3Adfc+not%3Asplit+-set%3Acmb2+-set%3Acmb1+-set%3Aplist+-set%3Adbl+-frame%3Aextendedart+language%3Aenglish&unique=art", "data": [{"object": "card", "id": "17597c66-0d9f-41af-9160-0d92be88f450", "oracle_id": "f9a272c5-6ebc-4d29-a47c-a2d570184196", "multiverse_ids": [122050], "mtgo_id": 24781, "mtgo_foil_id": 24782, "tcgplayer_id": 14069, "cardmarket_id": 13676, "name": "Krovikan Rot", "lang": "en", "released_at": "2006-07-21", "uri": "https://api.scryfall.com/cards/17597c66-0d9f-41af-9160-0d92be88f450", "scryfall_uri": "https://scryfall.com/card/csp/63/krovikan-rot?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/1/7/17597c66-0d9f-41af-9160-0d92be88f450.jpg?1593275116", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/7/17597c66-0d9f-41af-9160-0d92be88f450.jpg?1593275116", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/1/7/17597c66-0d9f-41af-9160-0d92be88f450.jpg?1593275116", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/1/7/17597c66-0d9f-41af-9160-0d92be88f450.png?1593275116", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/7/17597c66-0d9f-41af-9160-0d92be88f450.jpg?1593275116", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/1/7/17597c66-0d9f-41af-9160-0d92be88f450.jpg?1593275116"}, "mana_cost": "{2}{B}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Destroy target creature with power 2 or less.\nRecover {1}{B}{B} (When a creature is put into your graveyard from the battlefield, you may pay {1}{B}{B}. If you do, return this card from your graveyard to your hand. Otherwise, exile this card.)", "colors": ["B"], "color_identity": ["B"], "keywords": ["Recover"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "1f4f105f-73e4-4f03-849e-82a204807847", "set": "csp", "set_name": "Coldsnap", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/1f4f105f-73e4-4f03-849e-82a204807847", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Acsp&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/csp?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/17597c66-0d9f-41af-9160-0d92be88f450/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Af9a272c5-6ebc-4d29-a47c-a2d570184196&unique=prints", "collector_number": "63", "digital": false, "rarity": "uncommon", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Michael Sutfin", "artist_ids": ["5ce7b3bd-53d2-49e6-b504-37191e8e9b17"], "illustration_id": "7fa55a86-1a71-430f-b4a4-97d1afebbad4", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 22568, "prices": {"usd": "0.10", "usd_foil": "0.36", "usd_etched": null, "eur": "0.02", "eur_foil": "0.25", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=122050", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Krovikan+Rot&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Krovikan+Rot&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Krovikan+Rot"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/14069?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Krovikan+Rot&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/24781?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "53f29821-902e-41bc-97a2-6fc7a710cbdb", "oracle_id": "f713a6b4-bd9c-4bc3-9e00-26ecf16e4a92", "multiverse_ids": [270781], "mtgo_id": 46329, "mtgo_foil_id": 46330, "tcgplayer_id": 66584, "cardmarket_id": 258434, "name": "Launch Party", "lang": "en", "released_at": "2012-10-05", "uri": "https://api.scryfall.com/cards/53f29821-902e-41bc-97a2-6fc7a710cbdb", "scryfall_uri": "https://scryfall.com/card/rtr/69/launch-party?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/5/3/53f29821-902e-41bc-97a2-6fc7a710cbdb.jpg?1562786438", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/3/53f29821-902e-41bc-97a2-6fc7a710cbdb.jpg?1562786438", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/5/3/53f29821-902e-41bc-97a2-6fc7a710cbdb.jpg?1562786438", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/5/3/53f29821-902e-41bc-97a2-6fc7a710cbdb.png?1562786438", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/3/53f29821-902e-41bc-97a2-6fc7a710cbdb.jpg?1562786438", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/5/3/53f29821-902e-41bc-97a2-6fc7a710cbdb.jpg?1562786438"}, "mana_cost": "{3}{B}", "cmc": 4.0, "type_line": "Instant", "oracle_text": "As an additional cost to cast this spell, sacrifice a creature.\nDestroy target creature. Its controller loses 2 life.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "80b2374d-c5f1-403e-9772-f6c806fd275e", "set": "rtr", "set_name": "Return to Ravnica", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/80b2374d-c5f1-403e-9772-f6c806fd275e", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Artr&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/rtr?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/53f29821-902e-41bc-97a2-6fc7a710cbdb/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Af713a6b4-bd9c-4bc3-9e00-26ecf16e4a92&unique=prints", "collector_number": "69", "digital": false, "rarity": "common", "flavor_text": "Life's too short to not do the things you love.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Lucas Graciano", "artist_ids": ["ce98f39c-7cdd-47e6-a520-6c50443bb4c2"], "illustration_id": "fe486b4d-74ee-43fa-8802-b2a65e53428d", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 17709, "prices": {"usd": "0.03", "usd_foil": "0.10", "usd_etched": null, "eur": "0.01", "eur_foil": "0.28", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=270781", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Launch+Party&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Launch+Party&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Launch+Party"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/66584?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Launch+Party&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/46329?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "89e825e4-98be-49f0-bc5e-c8988118dcef", "oracle_id": "91c0a76e-3992-437f-b85a-97b0b4adbb84", "multiverse_ids": [4349], "tcgplayer_id": 711, "cardmarket_id": 10128, "name": "Lava Flow", "lang": "en", "released_at": "1997-05-01", "uri": "https://api.scryfall.com/cards/89e825e4-98be-49f0-bc5e-c8988118dcef", "scryfall_uri": "https://scryfall.com/card/por/138/lava-flow?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/8/9/89e825e4-98be-49f0-bc5e-c8988118dcef.jpg?1562446890", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/9/89e825e4-98be-49f0-bc5e-c8988118dcef.jpg?1562446890", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/8/9/89e825e4-98be-49f0-bc5e-c8988118dcef.jpg?1562446890", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/8/9/89e825e4-98be-49f0-bc5e-c8988118dcef.png?1562446890", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/9/89e825e4-98be-49f0-bc5e-c8988118dcef.jpg?1562446890", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/8/9/89e825e4-98be-49f0-bc5e-c8988118dcef.jpg?1562446890"}, "mana_cost": "{3}{R}{R}", "cmc": 5.0, "type_line": "Sorcery", "oracle_text": "Destroy target creature or land.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "478c47df-5058-4ce6-830e-7e80732b2ca9", "set": "por", "set_name": "Portal", "set_type": "starter", "set_uri": "https://api.scryfall.com/sets/478c47df-5058-4ce6-830e-7e80732b2ca9", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Apor&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/por?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/89e825e4-98be-49f0-bc5e-c8988118dcef/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A91c0a76e-3992-437f-b85a-97b0b4adbb84&unique=prints", "collector_number": "138", "digital": false, "rarity": "uncommon", "flavor_text": "People ran as never before at the thought of being buried and cremated at the same time.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Mike Dringenberg", "artist_ids": ["a1407afa-0f54-43f8-938b-88b268074f91"], "illustration_id": "1f57d51f-c880-4ef8-a772-bc2672ea5a4c", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 19551, "penny_rank": 4712, "prices": {"usd": "0.31", "usd_foil": null, "usd_etched": null, "eur": "0.40", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=4349", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Lava+Flow&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Lava+Flow&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Lava+Flow"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/711?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Lava+Flow&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Lava+Flow&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "385bea20-c196-4da8-bc3e-36f8d50dcc17", "oracle_id": "dce4d65f-cb91-48a2-a2a7-013e73dfb667", "multiverse_ids": [435172], "mtgo_id": 65052, "mtgo_foil_id": 65053, "arena_id": 66001, "tcgplayer_id": 145710, "cardmarket_id": 301736, "name": "Legion's Judgment", "lang": "en", "released_at": "2017-09-29", "uri": "https://api.scryfall.com/cards/385bea20-c196-4da8-bc3e-36f8d50dcc17", "scryfall_uri": "https://scryfall.com/card/xln/21/legions-judgment?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/3/8/385bea20-c196-4da8-bc3e-36f8d50dcc17.jpg?1562553483", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/8/385bea20-c196-4da8-bc3e-36f8d50dcc17.jpg?1562553483", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/3/8/385bea20-c196-4da8-bc3e-36f8d50dcc17.jpg?1562553483", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/3/8/385bea20-c196-4da8-bc3e-36f8d50dcc17.png?1562553483", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/8/385bea20-c196-4da8-bc3e-36f8d50dcc17.jpg?1562553483", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/3/8/385bea20-c196-4da8-bc3e-36f8d50dcc17.jpg?1562553483"}, "mana_cost": "{2}{W}", "cmc": 3.0, "type_line": "Sorcery", "oracle_text": "Destroy target creature with power 4 or greater.", "colors": ["W"], "color_identity": ["W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "fe0dad85-54bc-4151-9200-d68da84dd0f2", "set": "xln", "set_name": "Ixalan", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/fe0dad85-54bc-4151-9200-d68da84dd0f2", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Axln&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/xln?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/385bea20-c196-4da8-bc3e-36f8d50dcc17/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Adce4d65f-cb91-48a2-a2a7-013e73dfb667&unique=prints", "collector_number": "21", "digital": false, "rarity": "common", "flavor_text": "\"My lance was once wielded by Venerable Tarrian. In his name and by his might, I cast you down!\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Lucas Graciano", "artist_ids": ["ce98f39c-7cdd-47e6-a520-6c50443bb4c2"], "illustration_id": "b832935e-d76d-40c0-9354-a8eb52f693d2", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 13980, "penny_rank": 11770, "prices": {"usd": "0.05", "usd_foil": null, "usd_etched": null, "eur": "0.01", "eur_foil": "0.05", "tix": "0.04"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=435172", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Legion%27s+Judgment&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Legion%27s+Judgment&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Legion%27s+Judgment"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/145710?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Legion%27s+Judgment&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/65052?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "65864680-9520-4eb3-9774-fa478e54a290", "oracle_id": "c4660b3c-a234-4a3e-83e7-e2fa9d556685", "multiverse_ids": [], "tcgplayer_id": 269726, "cardmarket_id": 652425, "name": "Lethal Scheme", "lang": "en", "released_at": "2022-04-29", "uri": "https://api.scryfall.com/cards/65864680-9520-4eb3-9774-fa478e54a290", "scryfall_uri": "https://scryfall.com/card/ncc/36/lethal-scheme?utm_source=api", "layout": "normal", "highres_image": false, "image_status": "lowres", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/6/5/65864680-9520-4eb3-9774-fa478e54a290.jpg?1650411151", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/5/65864680-9520-4eb3-9774-fa478e54a290.jpg?1650411151", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/6/5/65864680-9520-4eb3-9774-fa478e54a290.jpg?1650411151", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/6/5/65864680-9520-4eb3-9774-fa478e54a290.png?1650411151", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/5/65864680-9520-4eb3-9774-fa478e54a290.jpg?1650411151", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/6/5/65864680-9520-4eb3-9774-fa478e54a290.jpg?1650411151"}, "mana_cost": "{2}{B}{B}", "cmc": 4.0, "type_line": "Instant", "oracle_text": "Convoke (Your creatures can help cast this spell. Each creature you tap while casting this spell pays for {1} or one mana of that creature's color.)\nDestroy target creature or planeswalker. Each creature that convoked Lethal Scheme connives. (Draw a card, then discard a card. If you discarded a nonland card, put a +1/+1 counter on that creature.)", "colors": ["B"], "color_identity": ["B"], "keywords": ["Connive", "Convoke"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "c51de34b-d4d6-4179-a432-573744ded119", "set": "ncc", "set_name": "New Capenna Commander", "set_type": "commander", "set_uri": "https://api.scryfall.com/sets/c51de34b-d4d6-4179-a432-573744ded119", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ancc&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ncc?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/65864680-9520-4eb3-9774-fa478e54a290/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ac4660b3c-a234-4a3e-83e7-e2fa9d556685&unique=prints", "collector_number": "36", "digital": false, "rarity": "rare", "watermark": "obscura", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Tuan Duong Chu", "artist_ids": ["d84246f9-a536-485f-a21d-a237302ed100"], "illustration_id": "b5ee4662-a2d4-4ead-8414-9ee5983c5717", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "edhrec_rank": 5741, "prices": {"usd": "4.98", "usd_foil": null, "usd_etched": null, "eur": "6.99", "eur_foil": null, "tix": null}, "related_uris": {"tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Lethal+Scheme&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Lethal+Scheme&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Lethal+Scheme"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/269726?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Lethal+Scheme&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Lethal+Scheme&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "eaded6bf-2db7-4b1d-93cc-4b7b571cd2de", "oracle_id": "464749e1-9df2-47d0-8fcd-516f566022b5", "multiverse_ids": [430756], "mtgo_id": 64618, "mtgo_foil_id": 64619, "tcgplayer_id": 136700, "cardmarket_id": 298828, "name": "Lethal Sting", "lang": "en", "released_at": "2017-07-14", "uri": "https://api.scryfall.com/cards/eaded6bf-2db7-4b1d-93cc-4b7b571cd2de", "scryfall_uri": "https://scryfall.com/card/hou/67/lethal-sting?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/e/a/eaded6bf-2db7-4b1d-93cc-4b7b571cd2de.jpg?1562819094", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/a/eaded6bf-2db7-4b1d-93cc-4b7b571cd2de.jpg?1562819094", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/e/a/eaded6bf-2db7-4b1d-93cc-4b7b571cd2de.jpg?1562819094", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/e/a/eaded6bf-2db7-4b1d-93cc-4b7b571cd2de.png?1562819094", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/a/eaded6bf-2db7-4b1d-93cc-4b7b571cd2de.jpg?1562819094", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/e/a/eaded6bf-2db7-4b1d-93cc-4b7b571cd2de.jpg?1562819094"}, "mana_cost": "{2}{B}", "cmc": 3.0, "type_line": "Sorcery", "oracle_text": "As an additional cost to cast this spell, put a -1/-1 counter on a creature you control.\nDestroy target creature.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "65ff168b-bb94-47a5-a8f9-4ec6c213e768", "set": "hou", "set_name": "Hour of Devastation", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/65ff168b-bb94-47a5-a8f9-4ec6c213e768", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ahou&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/hou?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/eaded6bf-2db7-4b1d-93cc-4b7b571cd2de/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A464749e1-9df2-47d0-8fcd-516f566022b5&unique=prints", "collector_number": "67", "digital": false, "rarity": "common", "flavor_text": "Initiates once believed defeat was the worst fate possible\u2014a sentiment they quickly abandoned.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Randy Vargas", "artist_ids": ["d20672ca-0555-4238-a984-fd171d36b247"], "illustration_id": "31cc2c7f-aab3-493b-9587-5bb8ca301ffc", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 9111, "penny_rank": 5249, "prices": {"usd": "0.06", "usd_foil": "0.21", "usd_etched": null, "eur": "0.02", "eur_foil": "0.49", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=430756", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Lethal+Sting&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Lethal+Sting&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Lethal+Sting"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/136700?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Lethal+Sting&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/64618?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "32bd3acd-aa62-4708-9336-e3430fd0e541", "oracle_id": "01b3af6d-ab7d-4137-a94a-1cf2cbfd9d44", "multiverse_ids": [447241], "mtgo_id": 68371, "arena_id": 67890, "tcgplayer_id": 168462, "cardmarket_id": 359608, "name": "Lich's Caress", "lang": "en", "released_at": "2018-07-13", "uri": "https://api.scryfall.com/cards/32bd3acd-aa62-4708-9336-e3430fd0e541", "scryfall_uri": "https://scryfall.com/card/m19/105/lichs-caress?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/3/2/32bd3acd-aa62-4708-9336-e3430fd0e541.jpg?1562301277", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/2/32bd3acd-aa62-4708-9336-e3430fd0e541.jpg?1562301277", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/3/2/32bd3acd-aa62-4708-9336-e3430fd0e541.jpg?1562301277", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/3/2/32bd3acd-aa62-4708-9336-e3430fd0e541.png?1562301277", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/2/32bd3acd-aa62-4708-9336-e3430fd0e541.jpg?1562301277", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/3/2/32bd3acd-aa62-4708-9336-e3430fd0e541.jpg?1562301277"}, "mana_cost": "{3}{B}{B}", "cmc": 5.0, "type_line": "Sorcery", "oracle_text": "Destroy target creature. You gain 3 life.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "2f5f2509-56db-414d-9a7e-6e312ec3760c", "set": "m19", "set_name": "Core Set 2019", "set_type": "core", "set_uri": "https://api.scryfall.com/sets/2f5f2509-56db-414d-9a7e-6e312ec3760c", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Am19&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/m19?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/32bd3acd-aa62-4708-9336-e3430fd0e541/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A01b3af6d-ab7d-4137-a94a-1cf2cbfd9d44&unique=prints", "collector_number": "105", "digital": false, "rarity": "common", "flavor_text": "A lich must consume mortal souls to feed its eternal life.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Josh Hass", "artist_ids": ["8fa1fdf0-96d6-46f4-a7ff-b1c0257c3735"], "illustration_id": "539c932a-e0e9-47e0-a31f-fb012a15f8d5", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 15643, "prices": {"usd": "0.01", "usd_foil": "0.14", "usd_etched": null, "eur": "0.01", "eur_foil": "0.10", "tix": "0.04"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=447241", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Lich%27s+Caress&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Lich%27s+Caress&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Lich%27s+Caress"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/168462?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Lich%27s+Caress&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/68371?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "0f72b028-b9df-40c7-822f-4acc6bdcc719", "oracle_id": "7c8b38b3-b808-4ad8-b4e5-39e216063ff6", "multiverse_ids": [430757], "mtgo_id": 64620, "mtgo_foil_id": 64621, "tcgplayer_id": 134878, "cardmarket_id": 298564, "name": "Liliana's Defeat", "lang": "en", "released_at": "2017-07-14", "uri": "https://api.scryfall.com/cards/0f72b028-b9df-40c7-822f-4acc6bdcc719", "scryfall_uri": "https://scryfall.com/card/hou/68/lilianas-defeat?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/0/f/0f72b028-b9df-40c7-822f-4acc6bdcc719.jpg?1562789479", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/f/0f72b028-b9df-40c7-822f-4acc6bdcc719.jpg?1562789479", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/0/f/0f72b028-b9df-40c7-822f-4acc6bdcc719.jpg?1562789479", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/0/f/0f72b028-b9df-40c7-822f-4acc6bdcc719.png?1562789479", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/f/0f72b028-b9df-40c7-822f-4acc6bdcc719.jpg?1562789479", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/0/f/0f72b028-b9df-40c7-822f-4acc6bdcc719.jpg?1562789479"}, "mana_cost": "{B}", "cmc": 1.0, "type_line": "Sorcery", "oracle_text": "Destroy target black creature or black planeswalker. If that permanent was a Liliana planeswalker, her controller loses 3 life.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "65ff168b-bb94-47a5-a8f9-4ec6c213e768", "set": "hou", "set_name": "Hour of Devastation", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/65ff168b-bb94-47a5-a8f9-4ec6c213e768", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ahou&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/hou?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/0f72b028-b9df-40c7-822f-4acc6bdcc719/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A7c8b38b3-b808-4ad8-b4e5-39e216063ff6&unique=prints", "collector_number": "68", "digital": false, "rarity": "uncommon", "flavor_text": "\"All the power you have gathered for yourself, Liliana, I can take away.\"\n\u2014Nicol Bolas", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Kieran Yanner", "artist_ids": ["aa7e89ed-d294-4633-9057-ce04dacfcfa4"], "illustration_id": "2caf8708-dbd7-4c83-bdd7-3330a076375d", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 17409, "prices": {"usd": "0.05", "usd_foil": "0.27", "usd_etched": null, "eur": "0.02", "eur_foil": "0.30", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=430757", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Liliana%27s+Defeat&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Liliana%27s+Defeat&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Liliana%27s+Defeat"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/134878?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Liliana%27s+Defeat&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/64620?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "b231f941-4acb-46f2-81ae-16e5a28e65af", "oracle_id": "2359db1c-6029-4748-9f09-d57bb0ae92e9", "multiverse_ids": [488635], "mtgo_id": 81177, "arena_id": 72051, "tcgplayer_id": 215420, "cardmarket_id": 467874, "name": "Liliana's Scorn", "lang": "en", "released_at": "2020-07-03", "uri": "https://api.scryfall.com/cards/b231f941-4acb-46f2-81ae-16e5a28e65af", "scryfall_uri": "https://scryfall.com/card/m21/329/lilianas-scorn?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/b/2/b231f941-4acb-46f2-81ae-16e5a28e65af.jpg?1596250190", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/2/b231f941-4acb-46f2-81ae-16e5a28e65af.jpg?1596250190", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/b/2/b231f941-4acb-46f2-81ae-16e5a28e65af.jpg?1596250190", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/b/2/b231f941-4acb-46f2-81ae-16e5a28e65af.png?1596250190", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/2/b231f941-4acb-46f2-81ae-16e5a28e65af.jpg?1596250190", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/b/2/b231f941-4acb-46f2-81ae-16e5a28e65af.jpg?1596250190"}, "mana_cost": "{3}{B}{B}", "cmc": 5.0, "type_line": "Sorcery", "oracle_text": "Destroy target creature. You may search your library and/or graveyard for a card named Liliana, Death Mage, reveal it, and put it into your hand. If you search your library this way, shuffle.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "all_parts": [{"object": "related_card", "id": "921e3dc3-f8eb-4498-a6a8-b424952230cd", "component": "combo_piece", "name": "Liliana, Death Mage", "type_line": "Legendary Planeswalker \u2014 Liliana", "uri": "https://api.scryfall.com/cards/921e3dc3-f8eb-4498-a6a8-b424952230cd"}, {"object": "related_card", "id": "b231f941-4acb-46f2-81ae-16e5a28e65af", "component": "combo_piece", "name": "Liliana's Scorn", "type_line": "Sorcery", "uri": "https://api.scryfall.com/cards/b231f941-4acb-46f2-81ae-16e5a28e65af"}], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "bc94aba1-7376-4e02-a12d-3a2efb66ab0f", "set": "m21", "set_name": "Core Set 2021", "set_type": "core", "set_uri": "https://api.scryfall.com/sets/bc94aba1-7376-4e02-a12d-3a2efb66ab0f", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Am21&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/m21?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/b231f941-4acb-46f2-81ae-16e5a28e65af/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A2359db1c-6029-4748-9f09-d57bb0ae92e9&unique=prints", "collector_number": "329", "digital": false, "rarity": "rare", "flavor_text": "\"We're done here.\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Josh Hass", "artist_ids": ["8fa1fdf0-96d6-46f4-a7ff-b1c0257c3735"], "illustration_id": "0e5a8a58-f209-401a-b1d5-a9aa1d13b4a9", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "promo_types": ["planeswalkerdeck"], "edhrec_rank": 15377, "preview": {"source": "CBR.com", "source_uri": "https://www.cbr.com/magic-the-gathering-planeswalker-decks-core-set-2021/", "previewed_at": "2020-06-05"}, "prices": {"usd": "0.20", "usd_foil": null, "usd_etched": null, "eur": "0.20", "eur_foil": null, "tix": "0.09"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=488635", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Liliana%27s+Scorn&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Liliana%27s+Scorn&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Liliana%27s+Scorn"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/215420?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Liliana%27s+Scorn&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/81177?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "3532105d-c550-4c20-8465-a6a19169efbd", "oracle_id": "aabea4a2-5107-4abd-a0c7-ac0024d98ae0", "multiverse_ids": [370652], "mtgo_id": 49567, "mtgo_foil_id": 49568, "tcgplayer_id": 69978, "cardmarket_id": 262958, "name": "Liturgy of Blood", "lang": "en", "released_at": "2013-07-19", "uri": "https://api.scryfall.com/cards/3532105d-c550-4c20-8465-a6a19169efbd", "scryfall_uri": "https://scryfall.com/card/m14/104/liturgy-of-blood?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/3/5/3532105d-c550-4c20-8465-a6a19169efbd.jpg?1562827834", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/5/3532105d-c550-4c20-8465-a6a19169efbd.jpg?1562827834", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/3/5/3532105d-c550-4c20-8465-a6a19169efbd.jpg?1562827834", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/3/5/3532105d-c550-4c20-8465-a6a19169efbd.png?1562827834", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/5/3532105d-c550-4c20-8465-a6a19169efbd.jpg?1562827834", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/3/5/3532105d-c550-4c20-8465-a6a19169efbd.jpg?1562827834"}, "mana_cost": "{3}{B}{B}", "cmc": 5.0, "type_line": "Sorcery", "oracle_text": "Destroy target creature. Add {B}{B}{B}.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "produced_mana": ["B"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "e03ee1c0-ecd2-4fcc-ac3c-e8fdb103a847", "set": "m14", "set_name": "Magic 2014", "set_type": "core", "set_uri": "https://api.scryfall.com/sets/e03ee1c0-ecd2-4fcc-ac3c-e8fdb103a847", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Am14&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/m14?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/3532105d-c550-4c20-8465-a6a19169efbd/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aaabea4a2-5107-4abd-a0c7-ac0024d98ae0&unique=prints", "collector_number": "104", "digital": false, "rarity": "common", "flavor_text": "\"You harbor such vast potential. It would be such a shame to let you die of old age.\"\n\u2014Zul Ashur, lich lord", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Zack Stella", "artist_ids": ["17bc7f55-958b-43f4-bb40-09746d05b3f9"], "illustration_id": "796ac153-7d8c-489d-af61-bb550031419c", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 12778, "prices": {"usd": "0.08", "usd_foil": "0.24", "usd_etched": null, "eur": "0.05", "eur_foil": "0.29", "tix": "0.04"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=370652", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Liturgy+of+Blood&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Liturgy+of+Blood&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Liturgy+of+Blood"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/69978?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Liturgy+of+Blood&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/49567?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "eb651c3a-cb27-4b73-8eb6-b87d65211097", "oracle_id": "95ce305f-34bc-4d6d-b7ba-ffd4b2a25336", "multiverse_ids": [180613], "mtgo_id": 32388, "mtgo_foil_id": 32389, "tcgplayer_id": 31768, "cardmarket_id": 20971, "name": "Maelstrom Pulse", "lang": "en", "released_at": "2009-04-30", "uri": "https://api.scryfall.com/cards/eb651c3a-cb27-4b73-8eb6-b87d65211097", "scryfall_uri": "https://scryfall.com/card/arb/92/maelstrom-pulse?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/e/b/eb651c3a-cb27-4b73-8eb6-b87d65211097.jpg?1562644898", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/b/eb651c3a-cb27-4b73-8eb6-b87d65211097.jpg?1562644898", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/e/b/eb651c3a-cb27-4b73-8eb6-b87d65211097.jpg?1562644898", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/e/b/eb651c3a-cb27-4b73-8eb6-b87d65211097.png?1562644898", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/b/eb651c3a-cb27-4b73-8eb6-b87d65211097.jpg?1562644898", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/e/b/eb651c3a-cb27-4b73-8eb6-b87d65211097.jpg?1562644898"}, "mana_cost": "{1}{B}{G}", "cmc": 3.0, "type_line": "Sorcery", "oracle_text": "Destroy target nonland permanent and all other permanents with the same name as that permanent.", "colors": ["B", "G"], "color_identity": ["B", "G"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "db486ec5-141d-4781-9ee5-5456926934c1", "set": "arb", "set_name": "Alara Reborn", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/db486ec5-141d-4781-9ee5-5456926934c1", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aarb&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/arb?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/eb651c3a-cb27-4b73-8eb6-b87d65211097/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A95ce305f-34bc-4d6d-b7ba-ffd4b2a25336&unique=prints", "collector_number": "92", "digital": false, "rarity": "rare", "flavor_text": "During the collision of the shards, entire ways of life disappeared without a trace.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Anthony Francisco", "artist_ids": ["6ac24c4b-70e9-4286-8f4b-b40c92ab5847"], "illustration_id": "5c5f9f9d-392f-45fc-9a09-5306463672e0", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 2660, "prices": {"usd": "2.42", "usd_foil": "8.98", "usd_etched": null, "eur": "2.57", "eur_foil": "6.94", "tix": "0.08"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=180613", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Maelstrom+Pulse&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Maelstrom+Pulse&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Maelstrom+Pulse"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/31768?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Maelstrom+Pulse&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/32388?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "e2d85423-ebd8-4a6e-aedf-90e52f918764", "oracle_id": "95ce305f-34bc-4d6d-b7ba-ffd4b2a25336", "multiverse_ids": [429888], "mtgo_id": 64412, "mtgo_foil_id": 64413, "tcgplayer_id": 129547, "cardmarket_id": 296600, "name": "Maelstrom Pulse", "lang": "en", "released_at": "2017-04-28", "uri": "https://api.scryfall.com/cards/e2d85423-ebd8-4a6e-aedf-90e52f918764", "scryfall_uri": "https://scryfall.com/card/mp2/29/maelstrom-pulse?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/e/2/e2d85423-ebd8-4a6e-aedf-90e52f918764.jpg?1562940541", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/2/e2d85423-ebd8-4a6e-aedf-90e52f918764.jpg?1562940541", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/e/2/e2d85423-ebd8-4a6e-aedf-90e52f918764.jpg?1562940541", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/e/2/e2d85423-ebd8-4a6e-aedf-90e52f918764.png?1562940541", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/2/e2d85423-ebd8-4a6e-aedf-90e52f918764.jpg?1562940541", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/e/2/e2d85423-ebd8-4a6e-aedf-90e52f918764.jpg?1562940541"}, "mana_cost": "{1}{B}{G}", "cmc": 3.0, "type_line": "Sorcery", "oracle_text": "Destroy target nonland permanent and all other permanents with the same name as that permanent.", "colors": ["B", "G"], "color_identity": ["B", "G"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": false, "finishes": ["foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "c26402e7-838e-48db-a4b2-7abfc305998a", "set": "mp2", "set_name": "Amonkhet Invocations", "set_type": "masterpiece", "set_uri": "https://api.scryfall.com/sets/c26402e7-838e-48db-a4b2-7abfc305998a", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Amp2&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/mp2?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/e2d85423-ebd8-4a6e-aedf-90e52f918764/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A95ce305f-34bc-4d6d-b7ba-ffd4b2a25336&unique=prints", "collector_number": "29", "digital": false, "rarity": "mythic", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Igor Kieryluk", "artist_ids": ["9c3e9d17-509f-485c-9360-46d897ce716b"], "illustration_id": "4cdf853a-845d-4581-9add-6c87420e607c", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 2660, "prices": {"usd": null, "usd_foil": "32.53", "usd_etched": null, "eur": null, "eur_foil": "29.99", "tix": "0.09"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=429888", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Maelstrom+Pulse&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Maelstrom+Pulse&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Maelstrom+Pulse"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/129547?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Maelstrom+Pulse&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/64412?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "d351c901-103b-460f-9d01-6e4d4b25cac8", "oracle_id": "95ce305f-34bc-4d6d-b7ba-ffd4b2a25336", "multiverse_ids": [], "tcgplayer_id": 39330, "cardmarket_id": 245513, "name": "Maelstrom Pulse", "lang": "en", "released_at": "2011-01-01", "uri": "https://api.scryfall.com/cards/d351c901-103b-460f-9d01-6e4d4b25cac8", "scryfall_uri": "https://scryfall.com/card/pgpx/2011/maelstrom-pulse?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/d/3/d351c901-103b-460f-9d01-6e4d4b25cac8.jpg?1561929932", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/3/d351c901-103b-460f-9d01-6e4d4b25cac8.jpg?1561929932", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/d/3/d351c901-103b-460f-9d01-6e4d4b25cac8.jpg?1561929932", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/d/3/d351c901-103b-460f-9d01-6e4d4b25cac8.png?1561929932", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/3/d351c901-103b-460f-9d01-6e4d4b25cac8.jpg?1561929932", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/d/3/d351c901-103b-460f-9d01-6e4d4b25cac8.jpg?1561929932"}, "mana_cost": "{1}{B}{G}", "cmc": 3.0, "type_line": "Sorcery", "oracle_text": "Destroy target nonland permanent and all other permanents with the same name as that permanent.", "colors": ["B", "G"], "color_identity": ["B", "G"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": true, "nonfoil": false, "finishes": ["foil"], "oversized": false, "promo": true, "reprint": true, "variation": false, "set_id": "08e04147-c201-4c75-9b30-a566164ecaf3", "set": "pgpx", "set_name": "Grand Prix Promos", "set_type": "promo", "set_uri": "https://api.scryfall.com/sets/08e04147-c201-4c75-9b30-a566164ecaf3", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Apgpx&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/pgpx?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/d351c901-103b-460f-9d01-6e4d4b25cac8/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A95ce305f-34bc-4d6d-b7ba-ffd4b2a25336&unique=prints", "collector_number": "2011", "digital": false, "rarity": "rare", "watermark": "grandprix", "flavor_text": "During the collision of the shards, entire ways of life disappeared without a trace.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "John Avon", "artist_ids": ["798f3932-30e0-4420-aa3f-db4d613f89ca"], "illustration_id": "346228e7-2845-4128-9234-2f0c829b44b5", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "promo_types": ["tourney"], "edhrec_rank": 2660, "prices": {"usd": null, "usd_foil": "5.47", "usd_etched": null, "eur": null, "eur_foil": "2.45", "tix": null}, "related_uris": {"tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Maelstrom+Pulse&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Maelstrom+Pulse&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Maelstrom+Pulse"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/39330?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Maelstrom+Pulse&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Maelstrom+Pulse&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "ed85140f-f0e0-4ac1-a67f-26d17ff95e31", "oracle_id": "22195e0e-a426-48d6-b100-480c7e2bd5cc", "multiverse_ids": [513554], "mtgo_id": 88631, "arena_id": 76470, "tcgplayer_id": 236002, "cardmarket_id": 558083, "name": "Mage Hunters' Onslaught", "lang": "en", "released_at": "2021-04-23", "uri": "https://api.scryfall.com/cards/ed85140f-f0e0-4ac1-a67f-26d17ff95e31", "scryfall_uri": "https://scryfall.com/card/stx/77/mage-hunters-onslaught?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/e/d/ed85140f-f0e0-4ac1-a67f-26d17ff95e31.jpg?1624591129", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/d/ed85140f-f0e0-4ac1-a67f-26d17ff95e31.jpg?1624591129", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/e/d/ed85140f-f0e0-4ac1-a67f-26d17ff95e31.jpg?1624591129", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/e/d/ed85140f-f0e0-4ac1-a67f-26d17ff95e31.png?1624591129", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/d/ed85140f-f0e0-4ac1-a67f-26d17ff95e31.jpg?1624591129", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/e/d/ed85140f-f0e0-4ac1-a67f-26d17ff95e31.jpg?1624591129"}, "mana_cost": "{2}{B}{B}", "cmc": 4.0, "type_line": "Sorcery", "oracle_text": "Destroy target creature or planeswalker.\nWhenever a creature blocks this turn, its controller loses 1 life.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "541c3c28-8747-40e5-a231-8e8f33234859", "set": "stx", "set_name": "Strixhaven: School of Mages", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/541c3c28-8747-40e5-a231-8e8f33234859", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Astx&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/stx?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/ed85140f-f0e0-4ac1-a67f-26d17ff95e31/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A22195e0e-a426-48d6-b100-480c7e2bd5cc&unique=prints", "collector_number": "77", "digital": false, "rarity": "common", "flavor_text": "Extus stood before his alma mater for a moment, remembering first his studies, then his vengeance. At his command, the mage hunters unfolded.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Lie Setiawan", "artist_ids": ["6f771d3f-310e-4aa4-841f-5ba4ba9f025a"], "illustration_id": "99d2a8b9-84cc-4b30-9df4-7c49e2dd998c", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": true, "edhrec_rank": 13150, "preview": {"source": "Ruu", "source_uri": "https://twitter.com/Ruu_TV/status/1378113286693093378", "previewed_at": "2021-04-03"}, "prices": {"usd": "0.02", "usd_foil": "0.04", "usd_etched": null, "eur": "0.01", "eur_foil": "0.05", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=513554", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Mage+Hunters%27+Onslaught&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Mage+Hunters%27+Onslaught&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Mage+Hunters%27+Onslaught"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/236002?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Mage+Hunters%27+Onslaught&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/88631?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "d6ea704f-a06c-4d3b-80a3-d23f739c74aa", "oracle_id": "18f22cc4-e10b-4af0-9c1f-d7d15dbcce63", "multiverse_ids": [389587], "mtgo_id": 55199, "mtgo_foil_id": 55200, "tcgplayer_id": 94129, "cardmarket_id": 270453, "name": "Malicious Affliction", "lang": "en", "released_at": "2014-11-07", "uri": "https://api.scryfall.com/cards/d6ea704f-a06c-4d3b-80a3-d23f739c74aa", "scryfall_uri": "https://scryfall.com/card/c14/25/malicious-affliction?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/d/6/d6ea704f-a06c-4d3b-80a3-d23f739c74aa.jpg?1561960653", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/6/d6ea704f-a06c-4d3b-80a3-d23f739c74aa.jpg?1561960653", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/d/6/d6ea704f-a06c-4d3b-80a3-d23f739c74aa.jpg?1561960653", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/d/6/d6ea704f-a06c-4d3b-80a3-d23f739c74aa.png?1561960653", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/6/d6ea704f-a06c-4d3b-80a3-d23f739c74aa.jpg?1561960653", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/d/6/d6ea704f-a06c-4d3b-80a3-d23f739c74aa.jpg?1561960653"}, "mana_cost": "{B}{B}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Morbid \u2014 When you cast this spell, if a creature died this turn, you may copy Malicious Affliction and may choose a new target for the copy.\nDestroy target nonblack creature.", "colors": ["B"], "color_identity": ["B"], "keywords": ["Morbid"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "0980a6e2-eb78-4ad2-8396-cef08fce365e", "set": "c14", "set_name": "Commander 2014", "set_type": "commander", "set_uri": "https://api.scryfall.com/sets/0980a6e2-eb78-4ad2-8396-cef08fce365e", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ac14&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/c14?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/d6ea704f-a06c-4d3b-80a3-d23f739c74aa/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A18f22cc4-e10b-4af0-9c1f-d7d15dbcce63&unique=prints", "collector_number": "25", "digital": false, "rarity": "rare", "flavor_text": "\"Such an affliction appears to seek out the pure.\"\n\u2014Byro, plague doctor", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Erica Yang", "artist_ids": ["fcc15b63-b280-49da-9fee-f862824a2fc8"], "illustration_id": "c1e2e03b-b517-47cc-82e6-fb099669eb2c", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "edhrec_rank": 3793, "penny_rank": 249, "prices": {"usd": "3.52", "usd_foil": null, "usd_etched": null, "eur": "1.20", "eur_foil": null, "tix": "0.27"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=389587", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Malicious+Affliction&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Malicious+Affliction&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Malicious+Affliction"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/94129?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Malicious+Affliction&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/55199?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "80abd7c1-8f7a-4279-b76f-251a02624345", "oracle_id": "01b778d7-0965-48ab-a81f-e29f8a233d07", "multiverse_ids": [10579], "tcgplayer_id": 497, "cardmarket_id": 11206, "name": "Misfortune's Gain", "lang": "en", "released_at": "1999-07-06", "uri": "https://api.scryfall.com/cards/80abd7c1-8f7a-4279-b76f-251a02624345", "scryfall_uri": "https://scryfall.com/card/ptk/13/misfortunes-gain?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/8/0/80abd7c1-8f7a-4279-b76f-251a02624345.jpg?1562257029", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/0/80abd7c1-8f7a-4279-b76f-251a02624345.jpg?1562257029", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/8/0/80abd7c1-8f7a-4279-b76f-251a02624345.jpg?1562257029", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/8/0/80abd7c1-8f7a-4279-b76f-251a02624345.png?1562257029", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/0/80abd7c1-8f7a-4279-b76f-251a02624345.jpg?1562257029", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/8/0/80abd7c1-8f7a-4279-b76f-251a02624345.jpg?1562257029"}, "mana_cost": "{3}{W}", "cmc": 4.0, "type_line": "Sorcery", "oracle_text": "Destroy target creature. Its owner gains 4 life.", "colors": ["W"], "color_identity": ["W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "2676ff2e-9d86-4b5b-b935-e84e41b0755e", "set": "ptk", "set_name": "Portal Three Kingdoms", "set_type": "starter", "set_uri": "https://api.scryfall.com/sets/2676ff2e-9d86-4b5b-b935-e84e41b0755e", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aptk&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ptk?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/80abd7c1-8f7a-4279-b76f-251a02624345/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A01b778d7-0965-48ab-a81f-e29f8a233d07&unique=prints", "collector_number": "13", "digital": false, "rarity": "common", "flavor_text": "The mourning families of commanders and generals were often given land, valuables, or money to compensate for their losses.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Jiaming", "artist_ids": ["54d82a8b-8eac-43da-8131-ff5858d1ccae"], "illustration_id": "7047befb-5239-460c-b020-3ba6f8421bc3", "border_color": "white", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 22384, "penny_rank": 8992, "prices": {"usd": "3.99", "usd_foil": null, "usd_etched": null, "eur": "0.36", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=10579", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Misfortune%27s+Gain&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Misfortune%27s+Gain&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Misfortune%27s+Gain"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/497?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Misfortune%27s+Gain&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Misfortune%27s+Gain&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "3c216e13-3779-4734-b481-9aad7aba9925", "oracle_id": "5307a61f-2142-4e12-8329-ceb729f6eb79", "multiverse_ids": [464046], "mtgo_id": 72566, "tcgplayer_id": 191750, "cardmarket_id": 375633, "name": "Mob", "lang": "en", "released_at": "2019-06-14", "uri": "https://api.scryfall.com/cards/3c216e13-3779-4734-b481-9aad7aba9925", "scryfall_uri": "https://scryfall.com/card/mh1/97/mob?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/3/c/3c216e13-3779-4734-b481-9aad7aba9925.jpg?1562201673", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/c/3c216e13-3779-4734-b481-9aad7aba9925.jpg?1562201673", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/3/c/3c216e13-3779-4734-b481-9aad7aba9925.jpg?1562201673", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/3/c/3c216e13-3779-4734-b481-9aad7aba9925.png?1562201673", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/c/3c216e13-3779-4734-b481-9aad7aba9925.jpg?1562201673", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/3/c/3c216e13-3779-4734-b481-9aad7aba9925.jpg?1562201673"}, "mana_cost": "{4}{B}", "cmc": 5.0, "type_line": "Instant", "oracle_text": "Convoke (Your creatures can help cast this spell. Each creature you tap while casting this spell pays for {1} or one mana of that creature's color.)\nDestroy target creature.", "colors": ["B"], "color_identity": ["B"], "keywords": ["Convoke"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "d7efccd6-55bc-4fb8-9138-e72577510a99", "set": "mh1", "set_name": "Modern Horizons", "set_type": "draft_innovation", "set_uri": "https://api.scryfall.com/sets/d7efccd6-55bc-4fb8-9138-e72577510a99", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Amh1&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/mh1?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/3c216e13-3779-4734-b481-9aad7aba9925/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A5307a61f-2142-4e12-8329-ceb729f6eb79&unique=prints", "collector_number": "97", "digital": false, "rarity": "common", "flavor_text": "Not all monsters fight with teeth and claws.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Sidharth Chaturvedi", "artist_ids": ["55e6d846-2f73-4fba-9b88-441686bb8dcb"], "illustration_id": "79e827a8-b9c5-495e-bd12-0d5307419e4e", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 13982, "prices": {"usd": "0.02", "usd_foil": "0.11", "usd_etched": null, "eur": "0.02", "eur_foil": "0.25", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=464046", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Mob&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Mob&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Mob"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/191750?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Mob&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/72566?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "58356504-e28e-456c-b1d3-e6232f4d78a6", "oracle_id": "7c72df45-c3bd-4fb9-8365-5a5639566742", "multiverse_ids": [184988], "mtgo_id": 31855, "mtgo_foil_id": 31856, "tcgplayer_id": 28574, "cardmarket_id": 20712, "name": "Molten Frame", "lang": "en", "released_at": "2009-02-06", "uri": "https://api.scryfall.com/cards/58356504-e28e-456c-b1d3-e6232f4d78a6", "scryfall_uri": "https://scryfall.com/card/con/69/molten-frame?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/5/8/58356504-e28e-456c-b1d3-e6232f4d78a6.jpg?1562801105", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/8/58356504-e28e-456c-b1d3-e6232f4d78a6.jpg?1562801105", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/5/8/58356504-e28e-456c-b1d3-e6232f4d78a6.jpg?1562801105", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/5/8/58356504-e28e-456c-b1d3-e6232f4d78a6.png?1562801105", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/8/58356504-e28e-456c-b1d3-e6232f4d78a6.jpg?1562801105", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/5/8/58356504-e28e-456c-b1d3-e6232f4d78a6.jpg?1562801105"}, "mana_cost": "{1}{R}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Destroy target artifact creature.\nCycling {2} ({2}, Discard this card: Draw a card.)", "colors": ["R"], "color_identity": ["R"], "keywords": ["Cycling"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "76b2db58-904c-4e49-8580-9f62f7b3cca4", "set": "con", "set_name": "Conflux", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/76b2db58-904c-4e49-8580-9f62f7b3cca4", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Acon&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/con?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/58356504-e28e-456c-b1d3-e6232f4d78a6/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A7c72df45-c3bd-4fb9-8365-5a5639566742&unique=prints", "collector_number": "69", "digital": false, "rarity": "common", "flavor_text": "The metal filigree in his body glowed red-hot, and his flesh soon followed.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Izzy", "artist_ids": ["2c3d2473-ff5d-4309-8194-e0b2def2ab65"], "illustration_id": "6d65134e-555d-4a4b-bbd4-f86359a60cfb", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 19865, "penny_rank": 1991, "prices": {"usd": "0.07", "usd_foil": "0.12", "usd_etched": null, "eur": "0.02", "eur_foil": "0.10", "tix": "0.04"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=184988", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Molten+Frame&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Molten+Frame&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Molten+Frame"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/28574?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Molten+Frame&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/31855?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "38c5e2e8-b781-4265-bce1-98fa25ddd8c3", "oracle_id": "faa01ed1-ccfa-4e58-951f-cd81f9068027", "multiverse_ids": [368498], "mtgo_id": 48157, "mtgo_foil_id": 48158, "tcgplayer_id": 67824, "cardmarket_id": 260809, "name": "Mortify", "lang": "en", "released_at": "2013-03-15", "uri": "https://api.scryfall.com/cards/38c5e2e8-b781-4265-bce1-98fa25ddd8c3", "scryfall_uri": "https://scryfall.com/card/ddk/25/mortify?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/3/8/38c5e2e8-b781-4265-bce1-98fa25ddd8c3.jpg?1592714339", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/8/38c5e2e8-b781-4265-bce1-98fa25ddd8c3.jpg?1592714339", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/3/8/38c5e2e8-b781-4265-bce1-98fa25ddd8c3.jpg?1592714339", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/3/8/38c5e2e8-b781-4265-bce1-98fa25ddd8c3.png?1592714339", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/8/38c5e2e8-b781-4265-bce1-98fa25ddd8c3.jpg?1592714339", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/3/8/38c5e2e8-b781-4265-bce1-98fa25ddd8c3.jpg?1592714339"}, "mana_cost": "{1}{W}{B}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Destroy target creature or enchantment.", "colors": ["B", "W"], "color_identity": ["B", "W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "529a5259-8a88-4baf-86a0-cd88098c3ce7", "set": "ddk", "set_name": "Duel Decks: Sorin vs. Tibalt", "set_type": "duel_deck", "set_uri": "https://api.scryfall.com/sets/529a5259-8a88-4baf-86a0-cd88098c3ce7", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Addk&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ddk?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/38c5e2e8-b781-4265-bce1-98fa25ddd8c3/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Afaa01ed1-ccfa-4e58-951f-cd81f9068027&unique=prints", "collector_number": "25", "digital": false, "rarity": "uncommon", "flavor_text": "Many who cross Sorin's path come down with a sudden and fatal case of being-in-the-way-of-a-millennia-old-vampire.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Nils Hamm", "artist_ids": ["c540d1fc-1500-457f-93cf-d6069ee66546"], "illustration_id": "fa7ba9c2-f3fa-4ccd-bb53-ddc5c7f7bc7a", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "edhrec_rank": 369, "penny_rank": 1694, "prices": {"usd": "0.28", "usd_foil": null, "usd_etched": null, "eur": "0.40", "eur_foil": null, "tix": "0.41"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=368498", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Mortify&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Mortify&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Mortify"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/67824?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Mortify&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/48157?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "3b2c5187-71c7-4801-8a76-339c67322d35", "oracle_id": "faa01ed1-ccfa-4e58-951f-cd81f9068027", "multiverse_ids": [96930], "mtgo_id": 23749, "mtgo_foil_id": 23750, "tcgplayer_id": 13733, "cardmarket_id": 13215, "name": "Mortify", "lang": "en", "released_at": "2006-02-03", "uri": "https://api.scryfall.com/cards/3b2c5187-71c7-4801-8a76-339c67322d35", "scryfall_uri": "https://scryfall.com/card/gpt/122/mortify?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/3/b/3b2c5187-71c7-4801-8a76-339c67322d35.jpg?1593272729", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/b/3b2c5187-71c7-4801-8a76-339c67322d35.jpg?1593272729", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/3/b/3b2c5187-71c7-4801-8a76-339c67322d35.jpg?1593272729", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/3/b/3b2c5187-71c7-4801-8a76-339c67322d35.png?1593272729", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/b/3b2c5187-71c7-4801-8a76-339c67322d35.jpg?1593272729", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/3/b/3b2c5187-71c7-4801-8a76-339c67322d35.jpg?1593272729"}, "mana_cost": "{1}{W}{B}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Destroy target creature or enchantment.", "colors": ["B", "W"], "color_identity": ["B", "W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "594b4d09-8ce1-494d-bdb2-842c124bd087", "set": "gpt", "set_name": "Guildpact", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/594b4d09-8ce1-494d-bdb2-842c124bd087", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Agpt&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/gpt?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/3b2c5187-71c7-4801-8a76-339c67322d35/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Afaa01ed1-ccfa-4e58-951f-cd81f9068027&unique=prints", "collector_number": "122", "digital": false, "rarity": "uncommon", "watermark": "orzhov", "flavor_text": "The eyes let flow with tears, then blood, then the very soul\u2014the whole wrung inside out, dripping down into the blackened puddle of the past.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Glen Angus", "artist_ids": ["7be3b9e4-de9b-4a3d-884e-e67b9681d409"], "illustration_id": "90183e9b-146e-4db3-9f0b-c12e79fdfae1", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 369, "penny_rank": 1694, "prices": {"usd": "0.30", "usd_foil": "3.25", "usd_etched": null, "eur": "0.15", "eur_foil": "2.99", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=96930", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Mortify&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Mortify&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Mortify"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/13733?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Mortify&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/23749?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "645f4d28-68cb-4386-91b9-c748930d69fa", "oracle_id": "faa01ed1-ccfa-4e58-951f-cd81f9068027", "multiverse_ids": [], "tcgplayer_id": 182128, "cardmarket_id": 367792, "name": "Mortify", "lang": "en", "released_at": "2019-01-25", "uri": "https://api.scryfall.com/cards/645f4d28-68cb-4386-91b9-c748930d69fa", "scryfall_uri": "https://scryfall.com/card/prna/192/mortify?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/6/4/645f4d28-68cb-4386-91b9-c748930d69fa.jpg?1570573674", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/4/645f4d28-68cb-4386-91b9-c748930d69fa.jpg?1570573674", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/6/4/645f4d28-68cb-4386-91b9-c748930d69fa.jpg?1570573674", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/6/4/645f4d28-68cb-4386-91b9-c748930d69fa.png?1570573674", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/4/645f4d28-68cb-4386-91b9-c748930d69fa.jpg?1570573674", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/6/4/645f4d28-68cb-4386-91b9-c748930d69fa.jpg?1570573674"}, "mana_cost": "{1}{W}{B}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Destroy target creature or enchantment.", "colors": ["B", "W"], "color_identity": ["B", "W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": true, "nonfoil": false, "finishes": ["foil"], "oversized": false, "promo": true, "reprint": true, "variation": false, "set_id": "503230ec-81e3-4f92-b847-ff435b1652e0", "set": "prna", "set_name": "Ravnica Allegiance Promos", "set_type": "promo", "set_uri": "https://api.scryfall.com/sets/503230ec-81e3-4f92-b847-ff435b1652e0", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aprna&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/prna?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/645f4d28-68cb-4386-91b9-c748930d69fa/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Afaa01ed1-ccfa-4e58-951f-cd81f9068027&unique=prints", "collector_number": "192", "digital": false, "rarity": "uncommon", "watermark": "planeswalker", "flavor_text": "\"Your debt is erased.\"\n\u2014Hilgur, Orzhov euthanist", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Anthony Palumbo", "artist_ids": ["afd2d541-4140-41ae-a28f-862436458fcb"], "illustration_id": "42f6d319-4c27-442b-89e1-d077ed66bec0", "border_color": "black", "frame": "2015", "frame_effects": ["inverted"], "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "promo_types": ["setpromo", "fnm"], "edhrec_rank": 369, "penny_rank": 1694, "preview": {"source": "Wizards of the Coast", "source_uri": "https://magic.wizards.com/en/articles/archive/card-preview/ravnica-allegiance-promos-and-packaging-2018-12-17", "previewed_at": "2018-12-17"}, "prices": {"usd": null, "usd_foil": "0.40", "usd_etched": null, "eur": null, "eur_foil": "0.30", "tix": null}, "related_uris": {"tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Mortify&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Mortify&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Mortify"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/182128?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Mortify&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Mortify&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "a36a42b0-8216-4c99-a85f-22a520f31fd4", "oracle_id": "faa01ed1-ccfa-4e58-951f-cd81f9068027", "multiverse_ids": [], "tcgplayer_id": 38321, "cardmarket_id": 17583, "name": "Mortify", "lang": "en", "released_at": "2007-01-01", "uri": "https://api.scryfall.com/cards/a36a42b0-8216-4c99-a85f-22a520f31fd4", "scryfall_uri": "https://scryfall.com/card/p07/3/mortify?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/a/3/a36a42b0-8216-4c99-a85f-22a520f31fd4.jpg?1561757738", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/3/a36a42b0-8216-4c99-a85f-22a520f31fd4.jpg?1561757738", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/a/3/a36a42b0-8216-4c99-a85f-22a520f31fd4.jpg?1561757738", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/a/3/a36a42b0-8216-4c99-a85f-22a520f31fd4.png?1561757738", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/3/a36a42b0-8216-4c99-a85f-22a520f31fd4.jpg?1561757738", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/a/3/a36a42b0-8216-4c99-a85f-22a520f31fd4.jpg?1561757738"}, "mana_cost": "{1}{W}{B}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Destroy target creature or enchantment.", "colors": ["B", "W"], "color_identity": ["B", "W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": true, "reprint": true, "variation": false, "set_id": "c1a38fe6-73f4-4414-897b-f1215a7c948f", "set": "p07", "set_name": "Magic Player Rewards 2007", "set_type": "promo", "set_uri": "https://api.scryfall.com/sets/c1a38fe6-73f4-4414-897b-f1215a7c948f", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ap07&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/p07?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/a36a42b0-8216-4c99-a85f-22a520f31fd4/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Afaa01ed1-ccfa-4e58-951f-cd81f9068027&unique=prints", "collector_number": "3", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Brian Sn\u00f5ddy", "artist_ids": ["770b4e16-de76-49ed-949f-84e6d2e06d25"], "illustration_id": "b4f30529-94c9-4f6f-8c98-45e0b3882613", "border_color": "black", "frame": "2003", "full_art": true, "textless": true, "booster": false, "story_spotlight": false, "promo_types": ["playerrewards"], "edhrec_rank": 369, "penny_rank": 1694, "prices": {"usd": "3.11", "usd_foil": null, "usd_etched": null, "eur": "2.20", "eur_foil": null, "tix": null}, "related_uris": {"tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Mortify&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Mortify&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Mortify"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/38321?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Mortify&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Mortify&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "bdef7fea-2bd0-42a2-96f6-6def18bd7f0c", "oracle_id": "938b4e2c-88d9-4637-bc00-e228920c9a78", "multiverse_ids": [563017], "tcgplayer_id": 273407, "cardmarket_id": 660877, "name": "Murder", "lang": "en", "released_at": "2022-06-10", "uri": "https://api.scryfall.com/cards/bdef7fea-2bd0-42a2-96f6-6def18bd7f0c", "scryfall_uri": "https://scryfall.com/card/clb/134/murder?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/b/d/bdef7fea-2bd0-42a2-96f6-6def18bd7f0c.jpg?1653725816", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/d/bdef7fea-2bd0-42a2-96f6-6def18bd7f0c.jpg?1653725816", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/b/d/bdef7fea-2bd0-42a2-96f6-6def18bd7f0c.jpg?1653725816", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/b/d/bdef7fea-2bd0-42a2-96f6-6def18bd7f0c.png?1653725816", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/d/bdef7fea-2bd0-42a2-96f6-6def18bd7f0c.jpg?1653725816", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/b/d/bdef7fea-2bd0-42a2-96f6-6def18bd7f0c.jpg?1653725816"}, "mana_cost": "{1}{B}{B}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Destroy target creature.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "5e4c3fe8-fd57-4b20-ad56-c03790a16cea", "set": "clb", "set_name": "Commander Legends: Battle for Baldur's Gate", "set_type": "draft_innovation", "set_uri": "https://api.scryfall.com/sets/5e4c3fe8-fd57-4b20-ad56-c03790a16cea", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aclb&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/clb?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/bdef7fea-2bd0-42a2-96f6-6def18bd7f0c/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A938b4e2c-88d9-4637-bc00-e228920c9a78&unique=prints", "collector_number": "134", "digital": false, "rarity": "common", "flavor_text": "\"Pave your path to the throne with yet another body if you must, Sarevok. It will make your stolen godhood no less false.\"\n\u2014Gorion, wise mentor", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "David Astruga", "artist_ids": ["4fa5b0e2-1324-4407-98b8-3282395a03e3"], "illustration_id": "ffbbe3db-e53e-4ec1-8a3d-ce7463a57bea", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 832, "penny_rank": 1393, "prices": {"usd": "0.03", "usd_foil": "0.07", "usd_etched": null, "eur": "0.10", "eur_foil": "0.20", "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=563017", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Murder&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Murder&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Murder"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/273407?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Murder&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Murder&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "1c13ac76-7cd9-456f-9b89-92bfa07c64c5", "oracle_id": "938b4e2c-88d9-4637-bc00-e228920c9a78", "multiverse_ids": [555289], "mtgo_id": 98395, "arena_id": 80239, "tcgplayer_id": 268329, "cardmarket_id": 651258, "name": "Murder", "lang": "en", "released_at": "2022-04-29", "uri": "https://api.scryfall.com/cards/1c13ac76-7cd9-456f-9b89-92bfa07c64c5", "scryfall_uri": "https://scryfall.com/card/snc/88/murder?utm_source=api", "layout": "normal", "highres_image": false, "image_status": "lowres", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/1/c/1c13ac76-7cd9-456f-9b89-92bfa07c64c5.jpg?1649362504", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/c/1c13ac76-7cd9-456f-9b89-92bfa07c64c5.jpg?1649362504", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/1/c/1c13ac76-7cd9-456f-9b89-92bfa07c64c5.jpg?1649362504", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/1/c/1c13ac76-7cd9-456f-9b89-92bfa07c64c5.png?1649362504", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/c/1c13ac76-7cd9-456f-9b89-92bfa07c64c5.jpg?1649362504", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/1/c/1c13ac76-7cd9-456f-9b89-92bfa07c64c5.jpg?1649362504"}, "mana_cost": "{1}{B}{B}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Destroy target creature.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo", "arena"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "df837242-8c15-42e4-b049-c933a02dc501", "set": "snc", "set_name": "Streets of New Capenna", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/df837242-8c15-42e4-b049-c933a02dc501", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Asnc&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/snc?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/1c13ac76-7cd9-456f-9b89-92bfa07c64c5/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A938b4e2c-88d9-4637-bc00-e228920c9a78&unique=prints", "collector_number": "88", "digital": false, "rarity": "common", "flavor_text": "Ob Nixilis decided the fastest way to seize control of New Capenna would be to usurp the networks of power already hidden there. Xander's Maestros were the first to fall.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Yongjae Choi", "artist_ids": ["5ab91c3b-a6da-4751-a56e-81d0f61a67ab"], "illustration_id": "f285345c-09da-4350-ba8a-f97aa017abd4", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": true, "edhrec_rank": 832, "penny_rank": 1393, "preview": {"source": "Wizards of the Coast", "source_uri": "https://magic.wizards.com/en/articles/archive/feature/streets-of-new-capenna-mechanics-2022-04-07", "previewed_at": "2022-04-07"}, "prices": {"usd": "0.05", "usd_foil": "0.06", "usd_etched": null, "eur": "0.20", "eur_foil": "0.03", "tix": "0.01"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=555289", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Murder&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Murder&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Murder"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/268329?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Murder&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/98395?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "0f2eb849-b3ab-4d26-86c5-235c8161cf2a", "oracle_id": "938b4e2c-88d9-4637-bc00-e228920c9a78", "multiverse_ids": [414393], "mtgo_id": 61388, "mtgo_foil_id": 61389, "tcgplayer_id": 120121, "cardmarket_id": 290976, "name": "Murder", "lang": "en", "released_at": "2016-07-22", "uri": "https://api.scryfall.com/cards/0f2eb849-b3ab-4d26-86c5-235c8161cf2a", "scryfall_uri": "https://scryfall.com/card/emn/97/murder?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/0/f/0f2eb849-b3ab-4d26-86c5-235c8161cf2a.jpg?1576384369", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/f/0f2eb849-b3ab-4d26-86c5-235c8161cf2a.jpg?1576384369", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/0/f/0f2eb849-b3ab-4d26-86c5-235c8161cf2a.jpg?1576384369", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/0/f/0f2eb849-b3ab-4d26-86c5-235c8161cf2a.png?1576384369", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/f/0f2eb849-b3ab-4d26-86c5-235c8161cf2a.jpg?1576384369", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/0/f/0f2eb849-b3ab-4d26-86c5-235c8161cf2a.jpg?1576384369"}, "mana_cost": "{1}{B}{B}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Destroy target creature.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "5f0e4093-334f-4439-bbb5-a0affafd0ffc", "set": "emn", "set_name": "Eldritch Moon", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/5f0e4093-334f-4439-bbb5-a0affafd0ffc", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aemn&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/emn?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/0f2eb849-b3ab-4d26-86c5-235c8161cf2a/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A938b4e2c-88d9-4637-bc00-e228920c9a78&unique=prints", "collector_number": "97", "digital": false, "rarity": "uncommon", "flavor_text": "\"It's not work if you enjoy it.\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Tyler Jacobson", "artist_ids": ["522af130-8db4-4b4b-950c-6e2b246339cf"], "illustration_id": "60df0d03-c489-446d-b1c0-6b0be2ca7aae", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 832, "penny_rank": 1393, "prices": {"usd": "0.12", "usd_foil": "0.28", "usd_etched": null, "eur": "0.02", "eur_foil": "0.10", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=414393", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Murder&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Murder&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Murder"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/120121?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Murder&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/61388?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "c8676f02-cf1e-4d40-a0c5-6e5a97417898", "oracle_id": "938b4e2c-88d9-4637-bc00-e228920c9a78", "multiverse_ids": [259677], "mtgo_id": 45514, "mtgo_foil_id": 45515, "tcgplayer_id": 59802, "cardmarket_id": 256666, "name": "Murder", "lang": "en", "released_at": "2012-07-13", "uri": "https://api.scryfall.com/cards/c8676f02-cf1e-4d40-a0c5-6e5a97417898", "scryfall_uri": "https://scryfall.com/card/m13/101/murder?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/c/8/c8676f02-cf1e-4d40-a0c5-6e5a97417898.jpg?1562559978", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/8/c8676f02-cf1e-4d40-a0c5-6e5a97417898.jpg?1562559978", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/c/8/c8676f02-cf1e-4d40-a0c5-6e5a97417898.jpg?1562559978", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/c/8/c8676f02-cf1e-4d40-a0c5-6e5a97417898.png?1562559978", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/8/c8676f02-cf1e-4d40-a0c5-6e5a97417898.jpg?1562559978", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/c/8/c8676f02-cf1e-4d40-a0c5-6e5a97417898.jpg?1562559978"}, "mana_cost": "{1}{B}{B}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Destroy target creature.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "f9b0c6f4-8a4f-4f36-ad3c-e1e16fb8535d", "set": "m13", "set_name": "Magic 2013", "set_type": "core", "set_uri": "https://api.scryfall.com/sets/f9b0c6f4-8a4f-4f36-ad3c-e1e16fb8535d", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Am13&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/m13?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/c8676f02-cf1e-4d40-a0c5-6e5a97417898/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A938b4e2c-88d9-4637-bc00-e228920c9a78&unique=prints", "collector_number": "101", "digital": false, "rarity": "common", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Allen Williams", "artist_ids": ["8a56d854-b424-45ec-9262-e993a382a961"], "illustration_id": "98abc80a-8e5a-44b4-a552-58e3d2060ee3", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 832, "penny_rank": 1393, "prices": {"usd": "0.11", "usd_foil": "0.69", "usd_etched": null, "eur": "0.02", "eur_foil": "0.84", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=259677", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Murder&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Murder&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Murder"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/59802?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Murder&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/45514?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "33b94db1-ac8c-4667-81d5-408df0f30879", "oracle_id": "8fd8b4ef-69c8-43aa-9cbe-c46dba845ba8", "multiverse_ids": [409876], "mtgo_id": 60204, "mtgo_foil_id": 60205, "tcgplayer_id": 116431, "cardmarket_id": 289174, "name": "Murderous Compulsion", "lang": "en", "released_at": "2016-04-08", "uri": "https://api.scryfall.com/cards/33b94db1-ac8c-4667-81d5-408df0f30879", "scryfall_uri": "https://scryfall.com/card/soi/126/murderous-compulsion?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/3/3/33b94db1-ac8c-4667-81d5-408df0f30879.jpg?1576384534", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/3/33b94db1-ac8c-4667-81d5-408df0f30879.jpg?1576384534", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/3/3/33b94db1-ac8c-4667-81d5-408df0f30879.jpg?1576384534", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/3/3/33b94db1-ac8c-4667-81d5-408df0f30879.png?1576384534", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/3/33b94db1-ac8c-4667-81d5-408df0f30879.jpg?1576384534", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/3/3/33b94db1-ac8c-4667-81d5-408df0f30879.jpg?1576384534"}, "mana_cost": "{1}{B}", "cmc": 2.0, "type_line": "Sorcery", "oracle_text": "Destroy target tapped creature.\nMadness {1}{B} (If you discard this card, discard it into exile. When you do, cast it for its madness cost or put it into your graveyard.)", "colors": ["B"], "color_identity": ["B"], "keywords": ["Madness"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "5e914d7e-c1e9-446c-a33d-d093c02b2743", "set": "soi", "set_name": "Shadows over Innistrad", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/5e914d7e-c1e9-446c-a33d-d093c02b2743", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Asoi&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/soi?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/33b94db1-ac8c-4667-81d5-408df0f30879/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A8fd8b4ef-69c8-43aa-9cbe-c46dba845ba8&unique=prints", "collector_number": "126", "digital": false, "rarity": "common", "flavor_text": "\"Thank you. This blade becomes so hot in my hand, but your blood has quenched it.\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "David Palumbo", "artist_ids": ["04ce1c75-e30c-4b7a-8cb0-b53e4ecc2f39"], "illustration_id": "b2a87a62-cbd6-453b-b116-f7bd2c452259", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 5155, "penny_rank": 4733, "prices": {"usd": "0.05", "usd_foil": "0.36", "usd_etched": null, "eur": "0.09", "eur_foil": "0.04", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=409876", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Murderous+Compulsion&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Murderous+Compulsion&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Murderous+Compulsion"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/116431?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Murderous+Compulsion&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/60204?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "b2dadff2-883f-4134-a881-be145cdcbd84", "oracle_id": "c0ce7d5a-68fd-41f3-b5ba-a1a178cee9ec", "multiverse_ids": [386613], "mtgo_id": 54104, "mtgo_foil_id": 54105, "tcgplayer_id": 92977, "cardmarket_id": 269328, "name": "Murderous Cut", "lang": "en", "released_at": "2014-09-26", "uri": "https://api.scryfall.com/cards/b2dadff2-883f-4134-a881-be145cdcbd84", "scryfall_uri": "https://scryfall.com/card/ktk/81/murderous-cut?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/b/2/b2dadff2-883f-4134-a881-be145cdcbd84.jpg?1562792142", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/2/b2dadff2-883f-4134-a881-be145cdcbd84.jpg?1562792142", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/b/2/b2dadff2-883f-4134-a881-be145cdcbd84.jpg?1562792142", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/b/2/b2dadff2-883f-4134-a881-be145cdcbd84.png?1562792142", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/2/b2dadff2-883f-4134-a881-be145cdcbd84.jpg?1562792142", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/b/2/b2dadff2-883f-4134-a881-be145cdcbd84.jpg?1562792142"}, "mana_cost": "{4}{B}", "cmc": 5.0, "type_line": "Instant", "oracle_text": "Delve (Each card you exile from your graveyard while casting this spell pays for {1}.)\nDestroy target creature.", "colors": ["B"], "color_identity": ["B"], "keywords": ["Delve"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "6c7a715c-ded9-449e-89b0-c665773e9c3c", "set": "ktk", "set_name": "Khans of Tarkir", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/6c7a715c-ded9-449e-89b0-c665773e9c3c", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aktk&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ktk?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/b2dadff2-883f-4134-a881-be145cdcbd84/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ac0ce7d5a-68fd-41f3-b5ba-a1a178cee9ec&unique=prints", "collector_number": "81", "digital": false, "rarity": "uncommon", "watermark": "sultai", "flavor_text": "The blades of a Sultai assassin stab like the fangs of a dragon.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Yohann Schepacz", "artist_ids": ["c40c8ec8-d8b3-48a5-8de2-a7c96cbded5b"], "illustration_id": "7e4c2c95-c3f6-4f45-ba54-73420d77cd69", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 3158, "penny_rank": 426, "prices": {"usd": "0.21", "usd_foil": "2.02", "usd_etched": null, "eur": "0.11", "eur_foil": "0.10", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=386613", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Murderous+Cut&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Murderous+Cut&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Murderous+Cut"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/92977?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Murderous+Cut&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/54104?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "91ece344-c516-449e-ab7c-2e78d4778f02", "oracle_id": "e911f9d9-da04-4997-a8d7-449b566cd1ce", "multiverse_ids": [39377], "mtgo_id": 20337, "mtgo_foil_id": 20338, "tcgplayer_id": 11678, "cardmarket_id": 390, "name": "Murderous Spoils", "lang": "en", "released_at": "2004-02-06", "uri": "https://api.scryfall.com/cards/91ece344-c516-449e-ab7c-2e78d4778f02", "scryfall_uri": "https://scryfall.com/card/dst/48/murderous-spoils?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/9/1/91ece344-c516-449e-ab7c-2e78d4778f02.jpg?1562638187", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/1/91ece344-c516-449e-ab7c-2e78d4778f02.jpg?1562638187", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/9/1/91ece344-c516-449e-ab7c-2e78d4778f02.jpg?1562638187", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/9/1/91ece344-c516-449e-ab7c-2e78d4778f02.png?1562638187", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/1/91ece344-c516-449e-ab7c-2e78d4778f02.jpg?1562638187", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/9/1/91ece344-c516-449e-ab7c-2e78d4778f02.jpg?1562638187"}, "mana_cost": "{5}{B}", "cmc": 6.0, "type_line": "Instant", "oracle_text": "Destroy target nonblack creature. It can't be regenerated. You gain control of all Equipment that were attached to it. (This effect lasts indefinitely.)", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "e29cb2dd-1345-4032-abfe-e52e8c8ce074", "set": "dst", "set_name": "Darksteel", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/e29cb2dd-1345-4032-abfe-e52e8c8ce074", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Adst&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/dst?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/91ece344-c516-449e-ab7c-2e78d4778f02/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ae911f9d9-da04-4997-a8d7-449b566cd1ce&unique=prints", "collector_number": "48", "digital": false, "rarity": "uncommon", "flavor_text": "Scavengers are always the first to pay their respects.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Adam Rex", "artist_ids": ["445bd2fb-4a70-4599-87a4-83cf5979fc56"], "illustration_id": "cd99e573-c988-4e63-a52d-a7c0391840cf", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 19595, "penny_rank": 4676, "prices": {"usd": "0.17", "usd_foil": "0.22", "usd_etched": null, "eur": "0.05", "eur_foil": "0.50", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=39377", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Murderous+Spoils&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Murderous+Spoils&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Murderous+Spoils"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/11678?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Murderous+Spoils&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/20337?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "85ac0b25-80bf-4871-a6f6-5cf4d5b9496e", "oracle_id": "b01cd710-3906-486b-8bb5-8c4efa46e4d9", "multiverse_ids": [479616], "mtgo_id": 80201, "arena_id": 71163, "tcgplayer_id": 212745, "cardmarket_id": 455223, "name": "Mutual Destruction", "lang": "en", "released_at": "2020-04-24", "uri": "https://api.scryfall.com/cards/85ac0b25-80bf-4871-a6f6-5cf4d5b9496e", "scryfall_uri": "https://scryfall.com/card/iko/96/mutual-destruction?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/8/5/85ac0b25-80bf-4871-a6f6-5cf4d5b9496e.jpg?1591226898", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/5/85ac0b25-80bf-4871-a6f6-5cf4d5b9496e.jpg?1591226898", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/8/5/85ac0b25-80bf-4871-a6f6-5cf4d5b9496e.jpg?1591226898", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/8/5/85ac0b25-80bf-4871-a6f6-5cf4d5b9496e.png?1591226898", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/5/85ac0b25-80bf-4871-a6f6-5cf4d5b9496e.jpg?1591226898", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/8/5/85ac0b25-80bf-4871-a6f6-5cf4d5b9496e.jpg?1591226898"}, "mana_cost": "{B}", "cmc": 1.0, "type_line": "Sorcery", "oracle_text": "This spell has flash as long as you control a permanent with flash.\nAs an additional cost to cast this spell, sacrifice a creature.\nDestroy target creature.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "19feda43-15ab-427e-a0e4-148a4bf2b03a", "set": "iko", "set_name": "Ikoria: Lair of Behemoths", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/19feda43-15ab-427e-a0e4-148a4bf2b03a", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aiko&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/iko?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/85ac0b25-80bf-4871-a6f6-5cf4d5b9496e/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ab01cd710-3906-486b-8bb5-8c4efa46e4d9&unique=prints", "collector_number": "96", "digital": false, "rarity": "common", "flavor_text": "Hunter and hunted both died thinking they had outwitted the other.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "PINDURSKI", "artist_ids": ["f333a7f0-7330-40e9-8c58-667eea2f0f60"], "illustration_id": "db220b7a-7596-4172-8080-3920e43134e8", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 11062, "penny_rank": 3903, "prices": {"usd": "0.04", "usd_foil": "0.07", "usd_etched": null, "eur": "0.08", "eur_foil": "0.05", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=479616", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Mutual+Destruction&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Mutual+Destruction&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Mutual+Destruction"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/212745?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Mutual+Destruction&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/80201?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "6abc24e1-e721-471a-9efd-547f320675b0", "oracle_id": "16da72a3-d980-4dd8-99f2-8191cce00978", "multiverse_ids": [479617], "mtgo_id": 80203, "arena_id": 71164, "tcgplayer_id": 212108, "cardmarket_id": 451733, "name": "Mythos of Nethroi", "lang": "en", "released_at": "2020-04-24", "uri": "https://api.scryfall.com/cards/6abc24e1-e721-471a-9efd-547f320675b0", "scryfall_uri": "https://scryfall.com/card/iko/97/mythos-of-nethroi?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/6/a/6abc24e1-e721-471a-9efd-547f320675b0.jpg?1591226925", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/a/6abc24e1-e721-471a-9efd-547f320675b0.jpg?1591226925", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/6/a/6abc24e1-e721-471a-9efd-547f320675b0.jpg?1591226925", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/6/a/6abc24e1-e721-471a-9efd-547f320675b0.png?1591226925", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/a/6abc24e1-e721-471a-9efd-547f320675b0.jpg?1591226925", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/6/a/6abc24e1-e721-471a-9efd-547f320675b0.jpg?1591226925"}, "mana_cost": "{2}{B}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Destroy target nonland permanent if it's a creature or if {G}{W} was spent to cast this spell.", "colors": ["B"], "color_identity": ["B", "G", "W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "19feda43-15ab-427e-a0e4-148a4bf2b03a", "set": "iko", "set_name": "Ikoria: Lair of Behemoths", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/19feda43-15ab-427e-a0e4-148a4bf2b03a", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aiko&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/iko?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/6abc24e1-e721-471a-9efd-547f320675b0/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A16da72a3-d980-4dd8-99f2-8191cce00978&unique=prints", "collector_number": "97", "digital": false, "rarity": "rare", "flavor_text": "\"And then the shadow took living form, and the shadow devoured the man whole\u2014body, mind, and soul.\"\n\u2014*Tales of the Ozolith*", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Seb McKinnon", "artist_ids": ["ad4caca0-8d89-44ce-a1a6-d5ca905bd6fb"], "illustration_id": "e617338a-68e9-43d1-974c-a675f95ec8f9", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 2743, "penny_rank": 2352, "preview": {"source": "Seb McKinnon", "source_uri": "https://twitter.com/SebMcKinnon/status/1246081918367604737", "previewed_at": "2020-04-03"}, "prices": {"usd": "0.24", "usd_foil": "0.41", "usd_etched": null, "eur": "0.36", "eur_foil": "0.30", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=479617", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Mythos+of+Nethroi&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Mythos+of+Nethroi&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Mythos+of+Nethroi"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/212108?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Mythos+of+Nethroi&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/80203?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "fc326b79-363e-4c14-86e4-23041f2d6b4f", "oracle_id": "b8ad4276-759d-4d22-a47e-bd27edb34bff", "multiverse_ids": [139693], "mtgo_id": 28387, "mtgo_foil_id": 28388, "tcgplayer_id": 15586, "cardmarket_id": 17773, "name": "Neck Snap", "lang": "en", "released_at": "2007-10-12", "uri": "https://api.scryfall.com/cards/fc326b79-363e-4c14-86e4-23041f2d6b4f", "scryfall_uri": "https://scryfall.com/card/lrw/32/neck-snap?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/f/c/fc326b79-363e-4c14-86e4-23041f2d6b4f.jpg?1562375861", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/c/fc326b79-363e-4c14-86e4-23041f2d6b4f.jpg?1562375861", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/f/c/fc326b79-363e-4c14-86e4-23041f2d6b4f.jpg?1562375861", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/f/c/fc326b79-363e-4c14-86e4-23041f2d6b4f.png?1562375861", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/c/fc326b79-363e-4c14-86e4-23041f2d6b4f.jpg?1562375861", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/f/c/fc326b79-363e-4c14-86e4-23041f2d6b4f.jpg?1562375861"}, "mana_cost": "{3}{W}", "cmc": 4.0, "type_line": "Instant", "oracle_text": "Destroy target attacking or blocking creature.", "colors": ["W"], "color_identity": ["W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "30ec97cb-dca9-4bf4-a98b-310f9d8ceaff", "set": "lrw", "set_name": "Lorwyn", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/30ec97cb-dca9-4bf4-a98b-310f9d8ceaff", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Alrw&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/lrw?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/fc326b79-363e-4c14-86e4-23041f2d6b4f/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ab8ad4276-759d-4d22-a47e-bd27edb34bff&unique=prints", "collector_number": "32", "digital": false, "rarity": "common", "flavor_text": "\"We merrows need not be disadvantaged when fighting on land. We lack the vulnerability of those who breathe only through their throats.\"\n\u2014Minnarin, merrow reejerey", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Dominick Domingo", "artist_ids": ["64374332-23aa-4f5c-ad70-511ed2fb7b7d"], "illustration_id": "a2c52ba2-8ce0-4b13-89da-61f2f93d48b5", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 21210, "prices": {"usd": "0.05", "usd_foil": "0.24", "usd_etched": null, "eur": "0.08", "eur_foil": "0.29", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=139693", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Neck+Snap&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Neck+Snap&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Neck+Snap"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/15586?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Neck+Snap&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/28387?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "8e5758cc-1f84-455d-a983-8ec471727eaf", "oracle_id": "b17f4960-9603-4a81-8dc8-e09e8b822357", "multiverse_ids": [466864], "mtgo_id": 73119, "arena_id": 69895, "tcgplayer_id": 192688, "cardmarket_id": 379014, "name": "Noxious Grasp", "lang": "en", "released_at": "2019-07-12", "uri": "https://api.scryfall.com/cards/8e5758cc-1f84-455d-a983-8ec471727eaf", "scryfall_uri": "https://scryfall.com/card/m20/110/noxious-grasp?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/8/e/8e5758cc-1f84-455d-a983-8ec471727eaf.jpg?1592516744", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/e/8e5758cc-1f84-455d-a983-8ec471727eaf.jpg?1592516744", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/8/e/8e5758cc-1f84-455d-a983-8ec471727eaf.jpg?1592516744", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/8/e/8e5758cc-1f84-455d-a983-8ec471727eaf.png?1592516744", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/e/8e5758cc-1f84-455d-a983-8ec471727eaf.jpg?1592516744", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/8/e/8e5758cc-1f84-455d-a983-8ec471727eaf.jpg?1592516744"}, "mana_cost": "{1}{B}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Destroy target creature or planeswalker that's green or white. You gain 1 life.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "4a787360-9767-4f44-80b1-2405dc5e39c7", "set": "m20", "set_name": "Core Set 2020", "set_type": "core", "set_uri": "https://api.scryfall.com/sets/4a787360-9767-4f44-80b1-2405dc5e39c7", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Am20&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/m20?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/8e5758cc-1f84-455d-a983-8ec471727eaf/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ab17f4960-9603-4a81-8dc8-e09e8b822357&unique=prints", "collector_number": "110", "digital": false, "rarity": "uncommon", "flavor_text": "\"The bog doesn't give a stinking bubble about your title, wealth, or piety. It's just hungry.\"\n\u2014Byaras, backwoods guide", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Tomasz Jedruszek", "artist_ids": ["bba69285-2445-4a4b-a847-59397be972ea"], "illustration_id": "404ff870-9b2d-487d-bb66-117f749058f3", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 16693, "preview": {"source": "Noxious", "source_uri": "https://twitter.com/coL_noxious/status/1142101460928335873", "previewed_at": "2019-06-21"}, "prices": {"usd": "0.14", "usd_foil": "1.82", "usd_etched": null, "eur": "0.29", "eur_foil": "0.69", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=466864", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Noxious+Grasp&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Noxious+Grasp&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Noxious+Grasp"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/192688?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Noxious+Grasp&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/73119?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "9961562d-cad9-40e5-afae-3ebce77a2260", "oracle_id": "884eaa3f-b6af-4f0e-b0e7-cd40666986ce", "multiverse_ids": [555409], "mtgo_id": 98635, "arena_id": 80359, "tcgplayer_id": 267673, "cardmarket_id": 650858, "name": "Obscura Charm", "lang": "en", "released_at": "2022-04-29", "uri": "https://api.scryfall.com/cards/9961562d-cad9-40e5-afae-3ebce77a2260", "scryfall_uri": "https://scryfall.com/card/snc/208/obscura-charm?utm_source=api", "layout": "normal", "highres_image": false, "image_status": "lowres", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/9/9/9961562d-cad9-40e5-afae-3ebce77a2260.jpg?1648583418", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/9/9961562d-cad9-40e5-afae-3ebce77a2260.jpg?1648583418", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/9/9/9961562d-cad9-40e5-afae-3ebce77a2260.jpg?1648583418", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/9/9/9961562d-cad9-40e5-afae-3ebce77a2260.png?1648583418", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/9/9961562d-cad9-40e5-afae-3ebce77a2260.jpg?1648583418", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/9/9/9961562d-cad9-40e5-afae-3ebce77a2260.jpg?1648583418"}, "mana_cost": "{W}{U}{B}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Choose one \u2014\n\u2022 Return target multicolored permanent card with mana value 3 or less from your graveyard to the battlefield tapped.\n\u2022 Counter target instant or sorcery spell.\n\u2022 Destroy target creature or planeswalker with mana value 3 or less.", "colors": ["B", "U", "W"], "color_identity": ["B", "U", "W"], "keywords": [], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "arena", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "df837242-8c15-42e4-b049-c933a02dc501", "set": "snc", "set_name": "Streets of New Capenna", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/df837242-8c15-42e4-b049-c933a02dc501", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Asnc&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/snc?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/9961562d-cad9-40e5-afae-3ebce77a2260/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A884eaa3f-b6af-4f0e-b0e7-cd40666986ce&unique=prints", "collector_number": "208", "digital": false, "rarity": "uncommon", "watermark": "obscura", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Steve Argyle", "artist_ids": ["a44ddda4-5331-4f83-aac9-3e00ed36bd7b"], "illustration_id": "1cbfa74a-4a68-4bae-88fe-f182d9f1f6ca", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 5329, "penny_rank": 1467, "preview": {"source": "Wizards of the Coast", "source_uri": "https://magic.wizards.com/en/articles/archive/magic-story/episode-2-dirty-laundry-2022-03-29", "previewed_at": "2022-03-29"}, "prices": {"usd": "0.09", "usd_foil": "0.16", "usd_etched": null, "eur": "0.10", "eur_foil": "0.18", "tix": "0.01"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=555409", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Obscura+Charm&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Obscura+Charm&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Obscura+Charm"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/267673?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Obscura+Charm&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/98635?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "4a02b758-65b6-4c25-83b9-de63a1a92b51", "oracle_id": "884eaa3f-b6af-4f0e-b0e7-cd40666986ce", "multiverse_ids": [558721], "arena_id": 80501, "tcgplayer_id": 267674, "cardmarket_id": 650859, "name": "Obscura Charm", "lang": "en", "released_at": "2022-04-29", "uri": "https://api.scryfall.com/cards/4a02b758-65b6-4c25-83b9-de63a1a92b51", "scryfall_uri": "https://scryfall.com/card/snc/323/obscura-charm?utm_source=api", "layout": "normal", "highres_image": false, "image_status": "lowres", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/4/a/4a02b758-65b6-4c25-83b9-de63a1a92b51.jpg?1648583494", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/a/4a02b758-65b6-4c25-83b9-de63a1a92b51.jpg?1648583494", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/4/a/4a02b758-65b6-4c25-83b9-de63a1a92b51.jpg?1648583494", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/4/a/4a02b758-65b6-4c25-83b9-de63a1a92b51.png?1648583494", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/a/4a02b758-65b6-4c25-83b9-de63a1a92b51.jpg?1648583494", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/4/a/4a02b758-65b6-4c25-83b9-de63a1a92b51.jpg?1648583494"}, "mana_cost": "{W}{U}{B}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Choose one \u2014\n\u2022 Return target multicolored permanent card with mana value 3 or less from your graveyard to the battlefield tapped.\n\u2022 Counter target instant or sorcery spell.\n\u2022 Destroy target creature or planeswalker with mana value 3 or less.", "colors": ["B", "U", "W"], "color_identity": ["B", "U", "W"], "keywords": [], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "arena", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "df837242-8c15-42e4-b049-c933a02dc501", "set": "snc", "set_name": "Streets of New Capenna", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/df837242-8c15-42e4-b049-c933a02dc501", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Asnc&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/snc?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/4a02b758-65b6-4c25-83b9-de63a1a92b51/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A884eaa3f-b6af-4f0e-b0e7-cd40666986ce&unique=prints", "collector_number": "323", "digital": false, "rarity": "uncommon", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "J\u00e9r\u00e9mie Solomon", "artist_ids": ["53c2b1ff-9b69-4fa0-99d6-2362b676f249"], "illustration_id": "364801af-b60f-4773-83b2-1c4d4e103241", "border_color": "black", "frame": "2015", "frame_effects": ["showcase"], "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "promo_types": ["boosterfun"], "edhrec_rank": 5329, "penny_rank": 1467, "preview": {"source": "Wizards of the Coast", "source_uri": "https://magic.wizards.com/en/articles/archive/magic-story/episode-2-dirty-laundry-2022-03-29", "previewed_at": "2022-03-29"}, "prices": {"usd": "0.05", "usd_foil": "0.18", "usd_etched": null, "eur": "0.22", "eur_foil": "0.18", "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=558721", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Obscura+Charm&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Obscura+Charm&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Obscura+Charm"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/267674?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Obscura+Charm&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Obscura+Charm&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "d00bf192-4baf-46ba-947b-a22d07635b04", "oracle_id": "380429d5-82db-449c-b9b9-3e82ab987972", "multiverse_ids": [28751], "mtgo_id": 16224, "mtgo_foil_id": 16225, "tcgplayer_id": 8002, "cardmarket_id": 3127, "name": "Orim's Thunder", "lang": "en", "released_at": "2001-06-04", "uri": "https://api.scryfall.com/cards/d00bf192-4baf-46ba-947b-a22d07635b04", "scryfall_uri": "https://scryfall.com/card/apc/15/orims-thunder?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/d/0/d00bf192-4baf-46ba-947b-a22d07635b04.jpg?1562944526", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/0/d00bf192-4baf-46ba-947b-a22d07635b04.jpg?1562944526", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/d/0/d00bf192-4baf-46ba-947b-a22d07635b04.jpg?1562944526", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/d/0/d00bf192-4baf-46ba-947b-a22d07635b04.png?1562944526", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/0/d00bf192-4baf-46ba-947b-a22d07635b04.jpg?1562944526", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/d/0/d00bf192-4baf-46ba-947b-a22d07635b04.jpg?1562944526"}, "mana_cost": "{2}{W}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Kicker {R} (You may pay an additional {R} as you cast this spell.)\nDestroy target artifact or enchantment. If this spell was kicked, it deals damage equal to that permanent's mana value to target creature.", "colors": ["W"], "color_identity": ["R", "W"], "keywords": ["Kicker"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "e4e00913-d08d-4899-86ea-5cf631e09ce0", "set": "apc", "set_name": "Apocalypse", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/e4e00913-d08d-4899-86ea-5cf631e09ce0", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aapc&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/apc?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/d00bf192-4baf-46ba-947b-a22d07635b04/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A380429d5-82db-449c-b9b9-3e82ab987972&unique=prints", "collector_number": "15", "digital": false, "rarity": "common", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Carl Critchlow", "artist_ids": ["17948f16-611a-44b8-8d10-9895a0bdfff1"], "illustration_id": "bf03a93a-4377-41e8-bbdb-192d48d63557", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 8018, "penny_rank": 4403, "prices": {"usd": "0.22", "usd_foil": "9.97", "usd_etched": null, "eur": "0.20", "eur_foil": "2.50", "tix": "0.06"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=28751", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Orim%27s+Thunder&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Orim%27s+Thunder&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Orim%27s+Thunder"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/8002?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Orim%27s+Thunder&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/16224?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "8ca44265-5e1b-4fbf-9002-52b2ce9b7448", "oracle_id": "26f8626a-ce64-450c-bda5-833df2fbb4fb", "multiverse_ids": [366436], "mtgo_id": 47481, "mtgo_foil_id": 47482, "tcgplayer_id": 67452, "cardmarket_id": 259953, "name": "Orzhov Charm", "lang": "en", "released_at": "2013-02-01", "uri": "https://api.scryfall.com/cards/8ca44265-5e1b-4fbf-9002-52b2ce9b7448", "scryfall_uri": "https://scryfall.com/card/gtc/185/orzhov-charm?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/8/c/8ca44265-5e1b-4fbf-9002-52b2ce9b7448.jpg?1561835927", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/c/8ca44265-5e1b-4fbf-9002-52b2ce9b7448.jpg?1561835927", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/8/c/8ca44265-5e1b-4fbf-9002-52b2ce9b7448.jpg?1561835927", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/8/c/8ca44265-5e1b-4fbf-9002-52b2ce9b7448.png?1561835927", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/c/8ca44265-5e1b-4fbf-9002-52b2ce9b7448.jpg?1561835927", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/8/c/8ca44265-5e1b-4fbf-9002-52b2ce9b7448.jpg?1561835927"}, "mana_cost": "{W}{B}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Choose one \u2014\n\u2022 Return target creature you control and all Auras you control attached to it to their owner's hand.\n\u2022 Destroy target creature and you lose life equal to its toughness.\n\u2022 Return target creature card with mana value 1 or less from your graveyard to the battlefield.", "colors": ["B", "W"], "color_identity": ["B", "W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "035a05f7-e020-4f50-a141-ed16ba704bd2", "set": "gtc", "set_name": "Gatecrash", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/035a05f7-e020-4f50-a141-ed16ba704bd2", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Agtc&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/gtc?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/8ca44265-5e1b-4fbf-9002-52b2ce9b7448/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A26f8626a-ce64-450c-bda5-833df2fbb4fb&unique=prints", "collector_number": "185", "digital": false, "rarity": "uncommon", "watermark": "orzhov", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Zoltan Boros", "artist_ids": ["1885e6cb-c827-4896-994e-3d0a027d602f"], "illustration_id": "fc582527-e2f7-4a54-9be8-ea5532daa9b3", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 7122, "penny_rank": 2846, "prices": {"usd": "0.21", "usd_foil": "1.04", "usd_etched": null, "eur": "0.10", "eur_foil": "1.20", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=366436", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Orzhov+Charm&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Orzhov+Charm&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Orzhov+Charm"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/67452?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Orzhov+Charm&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/47481?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "2e60b5a1-923c-4c67-ae06-2a498dc46506", "oracle_id": "57fd34d3-3e30-4467-bace-3f4dc2a85c80", "multiverse_ids": [420632], "tcgplayer_id": 124139, "cardmarket_id": 293519, "name": "Parting Thoughts", "lang": "en", "released_at": "2016-11-11", "uri": "https://api.scryfall.com/cards/2e60b5a1-923c-4c67-ae06-2a498dc46506", "scryfall_uri": "https://scryfall.com/card/c16/15/parting-thoughts?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/2/e/2e60b5a1-923c-4c67-ae06-2a498dc46506.jpg?1562393855", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/e/2e60b5a1-923c-4c67-ae06-2a498dc46506.jpg?1562393855", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/2/e/2e60b5a1-923c-4c67-ae06-2a498dc46506.jpg?1562393855", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/2/e/2e60b5a1-923c-4c67-ae06-2a498dc46506.png?1562393855", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/e/2e60b5a1-923c-4c67-ae06-2a498dc46506.jpg?1562393855", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/2/e/2e60b5a1-923c-4c67-ae06-2a498dc46506.jpg?1562393855"}, "mana_cost": "{2}{B}", "cmc": 3.0, "type_line": "Sorcery", "oracle_text": "Destroy target creature. You draw X cards and you lose X life, where X is the number of counters on that creature.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "3e0d713a-b5cb-4287-81b9-a57d4dcaf415", "set": "c16", "set_name": "Commander 2016", "set_type": "commander", "set_uri": "https://api.scryfall.com/sets/3e0d713a-b5cb-4287-81b9-a57d4dcaf415", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ac16&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/c16?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/2e60b5a1-923c-4c67-ae06-2a498dc46506/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A57fd34d3-3e30-4467-bace-3f4dc2a85c80&unique=prints", "collector_number": "15", "digital": false, "rarity": "uncommon", "flavor_text": "\"To spend your life seeking, only to find regret upon achieving . . . this is the most delicious irony of all.\"\n\u2014Leshrac, Walker of Night", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Seb McKinnon", "artist_ids": ["ad4caca0-8d89-44ce-a1a6-d5ca905bd6fb"], "illustration_id": "2a2a7d84-259e-42bc-9c11-9953654e8539", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "edhrec_rank": 11840, "penny_rank": 7958, "prices": {"usd": "0.22", "usd_foil": null, "usd_etched": null, "eur": "0.34", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=420632", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Parting+Thoughts&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Parting+Thoughts&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Parting+Thoughts"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/124139?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Parting+Thoughts&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Parting+Thoughts&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "41369848-ba9a-40ef-931e-1a65bc979209", "oracle_id": "b7593cf8-4dcb-473b-a2ef-180fffe66738", "multiverse_ids": [442018], "mtgo_id": 66972, "mtgo_foil_id": 66973, "tcgplayer_id": 161896, "cardmarket_id": 319460, "name": "Path of Peace", "lang": "en", "released_at": "2018-03-16", "uri": "https://api.scryfall.com/cards/41369848-ba9a-40ef-931e-1a65bc979209", "scryfall_uri": "https://scryfall.com/card/a25/29/path-of-peace?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/4/1/41369848-ba9a-40ef-931e-1a65bc979209.jpg?1562434966", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/1/41369848-ba9a-40ef-931e-1a65bc979209.jpg?1562434966", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/4/1/41369848-ba9a-40ef-931e-1a65bc979209.jpg?1562434966", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/4/1/41369848-ba9a-40ef-931e-1a65bc979209.png?1562434966", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/1/41369848-ba9a-40ef-931e-1a65bc979209.jpg?1562434966", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/4/1/41369848-ba9a-40ef-931e-1a65bc979209.jpg?1562434966"}, "mana_cost": "{3}{W}", "cmc": 4.0, "type_line": "Sorcery", "oracle_text": "Destroy target creature. Its owner gains 4 life.", "colors": ["W"], "color_identity": ["W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "41ee6e2f-69b3-4c53-8a8e-960f5e974cfc", "set": "a25", "set_name": "Masters 25", "set_type": "masters", "set_uri": "https://api.scryfall.com/sets/41ee6e2f-69b3-4c53-8a8e-960f5e974cfc", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aa25&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/a25?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/41369848-ba9a-40ef-931e-1a65bc979209/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ab7593cf8-4dcb-473b-a2ef-180fffe66738&unique=prints", "collector_number": "29", "digital": false, "rarity": "common", "watermark": "set", "flavor_text": "As Hedrax stepped into oblivion, he welcomed the unwavering silence.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Nils Hamm", "artist_ids": ["c540d1fc-1500-457f-93cf-d6069ee66546"], "illustration_id": "6f8dddd3-55d9-473e-be9e-8b7a7c637b83", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 19034, "penny_rank": 13920, "prices": {"usd": "0.04", "usd_foil": "0.09", "usd_etched": null, "eur": "0.05", "eur_foil": "0.02", "tix": "0.04"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=442018", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Path+of+Peace&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Path+of+Peace&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Path+of+Peace"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/161896?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Path+of+Peace&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/66972?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "af7a2719-7910-4601-be88-7b3c249199d3", "oracle_id": "b7593cf8-4dcb-473b-a2ef-180fffe66738", "multiverse_ids": [5684], "mtgo_id": 12159, "mtgo_foil_id": 12160, "tcgplayer_id": 6966, "cardmarket_id": 10236, "name": "Path of Peace", "lang": "en", "released_at": "1998-10-12", "uri": "https://api.scryfall.com/cards/af7a2719-7910-4601-be88-7b3c249199d3", "scryfall_uri": "https://scryfall.com/card/usg/29/path-of-peace?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/a/f/af7a2719-7910-4601-be88-7b3c249199d3.jpg?1562932043", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/f/af7a2719-7910-4601-be88-7b3c249199d3.jpg?1562932043", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/a/f/af7a2719-7910-4601-be88-7b3c249199d3.jpg?1562932043", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/a/f/af7a2719-7910-4601-be88-7b3c249199d3.png?1562932043", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/f/af7a2719-7910-4601-be88-7b3c249199d3.jpg?1562932043", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/a/f/af7a2719-7910-4601-be88-7b3c249199d3.jpg?1562932043"}, "mana_cost": "{3}{W}", "cmc": 4.0, "type_line": "Sorcery", "oracle_text": "Destroy target creature. Its owner gains 4 life.", "colors": ["W"], "color_identity": ["W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "c330df40-51db-4caf-bde6-48df6c181001", "set": "usg", "set_name": "Urza's Saga", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/c330df40-51db-4caf-bde6-48df6c181001", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ausg&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/usg?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/af7a2719-7910-4601-be88-7b3c249199d3/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ab7593cf8-4dcb-473b-a2ef-180fffe66738&unique=prints", "collector_number": "29", "digital": false, "rarity": "common", "flavor_text": "\"When the sword becomes a burden, let the warrior lay it aside that another with a truer heart might take it up.\"\n\u2014Radiant, archangel", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Val Mayerik", "artist_ids": ["289e552e-3b58-484f-a939-64a01426e84d"], "illustration_id": "ba53f2c2-cca9-4f39-8d41-47d22ba5a702", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 19034, "penny_rank": 13920, "prices": {"usd": "0.11", "usd_foil": null, "usd_etched": null, "eur": "0.02", "eur_foil": null, "tix": "0.07"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=5684", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Path+of+Peace&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Path+of+Peace&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Path+of+Peace"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/6966?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Path+of+Peace&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/12159?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "cb14d3f4-09f3-4113-bdc3-0fd753137f7c", "oracle_id": "b7593cf8-4dcb-473b-a2ef-180fffe66738", "multiverse_ids": [6502], "tcgplayer_id": 187, "cardmarket_id": 9958, "name": "Path of Peace", "lang": "en", "released_at": "1998-06-24", "uri": "https://api.scryfall.com/cards/cb14d3f4-09f3-4113-bdc3-0fd753137f7c", "scryfall_uri": "https://scryfall.com/card/p02/18/path-of-peace?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/c/b/cb14d3f4-09f3-4113-bdc3-0fd753137f7c.jpg?1562942983", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/b/cb14d3f4-09f3-4113-bdc3-0fd753137f7c.jpg?1562942983", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/c/b/cb14d3f4-09f3-4113-bdc3-0fd753137f7c.jpg?1562942983", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/c/b/cb14d3f4-09f3-4113-bdc3-0fd753137f7c.png?1562942983", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/b/cb14d3f4-09f3-4113-bdc3-0fd753137f7c.jpg?1562942983", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/c/b/cb14d3f4-09f3-4113-bdc3-0fd753137f7c.jpg?1562942983"}, "mana_cost": "{3}{W}", "cmc": 4.0, "type_line": "Sorcery", "oracle_text": "Destroy target creature. Its owner gains 4 life.", "colors": ["W"], "color_identity": ["W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "ac67f18a-4f0e-407e-bab1-a9fe4f659565", "set": "p02", "set_name": "Portal Second Age", "set_type": "starter", "set_uri": "https://api.scryfall.com/sets/ac67f18a-4f0e-407e-bab1-a9fe4f659565", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ap02&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/p02?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/cb14d3f4-09f3-4113-bdc3-0fd753137f7c/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ab7593cf8-4dcb-473b-a2ef-180fffe66738&unique=prints", "collector_number": "18", "digital": false, "rarity": "common", "flavor_text": "\"You could die famous or you could die old. I chose old.\"\n\u2014Former soldier", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "David A. Cherry", "artist_ids": ["7a6b152c-eb22-4d73-beee-08876768e931"], "illustration_id": "c69fa246-e23c-4fdb-8101-d016b9489e13", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 19034, "penny_rank": 13920, "prices": {"usd": "0.10", "usd_foil": null, "usd_etched": null, "eur": "0.25", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=6502", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Path+of+Peace&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Path+of+Peace&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Path+of+Peace"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/187?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Path+of+Peace&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Path+of+Peace&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "a1f3e1c9-bfad-49a1-b171-6fa344ef2eef", "oracle_id": "b7593cf8-4dcb-473b-a2ef-180fffe66738", "multiverse_ids": [4389], "tcgplayer_id": 740, "cardmarket_id": 10168, "name": "Path of Peace", "lang": "en", "released_at": "1997-05-01", "uri": "https://api.scryfall.com/cards/a1f3e1c9-bfad-49a1-b171-6fa344ef2eef", "scryfall_uri": "https://scryfall.com/card/por/21/path-of-peace?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/a/1/a1f3e1c9-bfad-49a1-b171-6fa344ef2eef.jpg?1562447361", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/1/a1f3e1c9-bfad-49a1-b171-6fa344ef2eef.jpg?1562447361", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/a/1/a1f3e1c9-bfad-49a1-b171-6fa344ef2eef.jpg?1562447361", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/a/1/a1f3e1c9-bfad-49a1-b171-6fa344ef2eef.png?1562447361", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/1/a1f3e1c9-bfad-49a1-b171-6fa344ef2eef.jpg?1562447361", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/a/1/a1f3e1c9-bfad-49a1-b171-6fa344ef2eef.jpg?1562447361"}, "mana_cost": "{3}{W}", "cmc": 4.0, "type_line": "Sorcery", "oracle_text": "Destroy target creature. Its owner gains 4 life.", "colors": ["W"], "color_identity": ["W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "478c47df-5058-4ce6-830e-7e80732b2ca9", "set": "por", "set_name": "Portal", "set_type": "starter", "set_uri": "https://api.scryfall.com/sets/478c47df-5058-4ce6-830e-7e80732b2ca9", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Apor&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/por?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/a1f3e1c9-bfad-49a1-b171-6fa344ef2eef/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ab7593cf8-4dcb-473b-a2ef-180fffe66738&unique=prints", "collector_number": "21", "digital": false, "rarity": "common", "flavor_text": "The soldier reaped the profits of peace.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Pete Venters", "artist_ids": ["d54c4a1a-c0c5-4834-84db-125d341f3ad8"], "illustration_id": "326b1962-b77b-4ca6-84d0-d9f8655e0771", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 19034, "penny_rank": 13920, "prices": {"usd": "0.11", "usd_foil": null, "usd_etched": null, "eur": "0.10", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=4389", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Path+of+Peace&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Path+of+Peace&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Path+of+Peace"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/740?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Path+of+Peace&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Path+of+Peace&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "9ba55f16-a37c-4caa-9417-227a06cf4061", "oracle_id": "530f088d-bfa1-4410-b1aa-ade8abdb2b7a", "multiverse_ids": [109758], "mtgo_id": 25545, "mtgo_foil_id": 25546, "tcgplayer_id": 14322, "cardmarket_id": 13938, "name": "Phthisis", "lang": "en", "released_at": "2006-10-06", "uri": "https://api.scryfall.com/cards/9ba55f16-a37c-4caa-9417-227a06cf4061", "scryfall_uri": "https://scryfall.com/card/tsp/122/phthisis?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/9/b/9ba55f16-a37c-4caa-9417-227a06cf4061.jpg?1562927843", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/b/9ba55f16-a37c-4caa-9417-227a06cf4061.jpg?1562927843", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/9/b/9ba55f16-a37c-4caa-9417-227a06cf4061.jpg?1562927843", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/9/b/9ba55f16-a37c-4caa-9417-227a06cf4061.png?1562927843", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/b/9ba55f16-a37c-4caa-9417-227a06cf4061.jpg?1562927843", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/9/b/9ba55f16-a37c-4caa-9417-227a06cf4061.jpg?1562927843"}, "mana_cost": "{3}{B}{B}{B}{B}", "cmc": 7.0, "type_line": "Sorcery", "oracle_text": "Destroy target creature. Its controller loses life equal to its power plus its toughness.\nSuspend 5\u2014{1}{B} (Rather than cast this card from your hand, you may pay {1}{B} and exile it with five time counters on it. At the beginning of your upkeep, remove a time counter. When the last is removed, cast it without paying its mana cost.)", "colors": ["B"], "color_identity": ["B"], "keywords": ["Suspend"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "c1d109bc-ffd8-428f-8d7d-3f8d7e648046", "set": "tsp", "set_name": "Time Spiral", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/c1d109bc-ffd8-428f-8d7d-3f8d7e648046", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Atsp&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/tsp?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/9ba55f16-a37c-4caa-9417-227a06cf4061/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A530f088d-bfa1-4410-b1aa-ade8abdb2b7a&unique=prints", "collector_number": "122", "digital": false, "rarity": "uncommon", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Carl Critchlow", "artist_ids": ["17948f16-611a-44b8-8d10-9895a0bdfff1"], "illustration_id": "fe3cb8de-b7c2-4766-8e99-5a27c8d14de1", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 8246, "penny_rank": 10567, "prices": {"usd": "0.22", "usd_foil": "0.49", "usd_etched": null, "eur": "0.02", "eur_foil": "0.25", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=109758", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Phthisis&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Phthisis&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Phthisis"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/14322?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Phthisis&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/25545?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "45d6df03-c3c3-42c3-85a4-6fccb0741592", "oracle_id": "9812bdf9-98b6-4b4d-8381-a7bbb25069d8", "multiverse_ids": [394647], "mtgo_id": 56120, "mtgo_foil_id": 56121, "tcgplayer_id": 96735, "cardmarket_id": 273396, "name": "Pinion Feast", "lang": "en", "released_at": "2015-03-27", "uri": "https://api.scryfall.com/cards/45d6df03-c3c3-42c3-85a4-6fccb0741592", "scryfall_uri": "https://scryfall.com/card/dtk/195/pinion-feast?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/4/5/45d6df03-c3c3-42c3-85a4-6fccb0741592.jpg?1562785514", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/5/45d6df03-c3c3-42c3-85a4-6fccb0741592.jpg?1562785514", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/4/5/45d6df03-c3c3-42c3-85a4-6fccb0741592.jpg?1562785514", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/4/5/45d6df03-c3c3-42c3-85a4-6fccb0741592.png?1562785514", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/5/45d6df03-c3c3-42c3-85a4-6fccb0741592.jpg?1562785514", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/4/5/45d6df03-c3c3-42c3-85a4-6fccb0741592.jpg?1562785514"}, "mana_cost": "{4}{G}", "cmc": 5.0, "type_line": "Instant", "oracle_text": "Destroy target creature with flying. Bolster 2. (Choose a creature with the least toughness among creatures you control and put two +1/+1 counters on it.)", "colors": ["G"], "color_identity": ["G"], "keywords": ["Bolster"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "7e72625f-f320-4552-a719-d11e2f1853bd", "set": "dtk", "set_name": "Dragons of Tarkir", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/7e72625f-f320-4552-a719-d11e2f1853bd", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Adtk&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/dtk?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/45d6df03-c3c3-42c3-85a4-6fccb0741592/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A9812bdf9-98b6-4b4d-8381-a7bbb25069d8&unique=prints", "collector_number": "195", "digital": false, "rarity": "common", "watermark": "dromoka", "flavor_text": "\"Even paradise is not without tragedies.\"\n\u2014Sarkhan Vol", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Ryan Barger", "artist_ids": ["a4e0102e-bbeb-497c-babc-1c0741fea914"], "illustration_id": "577d2a47-321f-48bc-b865-c13373faa889", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 20856, "prices": {"usd": "0.03", "usd_foil": null, "usd_etched": null, "eur": "0.03", "eur_foil": "0.05", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=394647", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Pinion+Feast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Pinion+Feast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Pinion+Feast"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/96735?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Pinion+Feast&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/56120?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "1a2918d6-50f7-4bc1-aef2-930a5c84be8d", "oracle_id": "138f9daa-19d4-4290-94a7-09e00dbcebb0", "multiverse_ids": [213744], "mtgo_id": 39351, "mtgo_foil_id": 39352, "tcgplayer_id": 39180, "cardmarket_id": 245425, "name": "Pistus Strike", "lang": "en", "released_at": "2011-02-04", "uri": "https://api.scryfall.com/cards/1a2918d6-50f7-4bc1-aef2-930a5c84be8d", "scryfall_uri": "https://scryfall.com/card/mbs/86/pistus-strike?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/1/a/1a2918d6-50f7-4bc1-aef2-930a5c84be8d.jpg?1562609919", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/a/1a2918d6-50f7-4bc1-aef2-930a5c84be8d.jpg?1562609919", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/1/a/1a2918d6-50f7-4bc1-aef2-930a5c84be8d.jpg?1562609919", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/1/a/1a2918d6-50f7-4bc1-aef2-930a5c84be8d.png?1562609919", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/a/1a2918d6-50f7-4bc1-aef2-930a5c84be8d.jpg?1562609919", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/1/a/1a2918d6-50f7-4bc1-aef2-930a5c84be8d.jpg?1562609919"}, "mana_cost": "{2}{G}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Destroy target creature with flying. Its controller gets a poison counter.", "colors": ["G"], "color_identity": ["G"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "f46c57e3-9301-4006-a6ca-06f3f65961fb", "set": "mbs", "set_name": "Mirrodin Besieged", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/f46c57e3-9301-4006-a6ca-06f3f65961fb", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ambs&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/mbs?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/1a2918d6-50f7-4bc1-aef2-930a5c84be8d/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A138f9daa-19d4-4290-94a7-09e00dbcebb0&unique=prints", "collector_number": "86", "digital": false, "rarity": "common", "watermark": "phyrexian", "flavor_text": "\"Even a nuisance such as the pistus fly has a purpose in our new world.\"\n\u2014Glissa", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Jaime Jones", "artist_ids": ["92f6c2c1-fa57-4b52-99c4-0fd866c13dc9"], "illustration_id": "f3525b10-4b63-4160-ad8e-b904be77fbd9", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 11683, "prices": {"usd": "0.09", "usd_foil": "0.32", "usd_etched": null, "eur": "0.02", "eur_foil": "0.16", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=213744", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Pistus+Strike&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Pistus+Strike&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Pistus+Strike"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/39180?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Pistus+Strike&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/39351?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "2823d9a5-dd2f-4e6a-8e3d-554c4204aa32", "oracle_id": "26e75f0b-3a02-4989-8429-b6276e98ac33", "multiverse_ids": [197533], "mtgo_id": 34694, "mtgo_foil_id": 34695, "tcgplayer_id": 33394, "cardmarket_id": 21771, "name": "Pitfall Trap", "lang": "en", "released_at": "2009-10-02", "uri": "https://api.scryfall.com/cards/2823d9a5-dd2f-4e6a-8e3d-554c4204aa32", "scryfall_uri": "https://scryfall.com/card/zen/32/pitfall-trap?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/2/8/2823d9a5-dd2f-4e6a-8e3d-554c4204aa32.jpg?1562610754", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/8/2823d9a5-dd2f-4e6a-8e3d-554c4204aa32.jpg?1562610754", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/2/8/2823d9a5-dd2f-4e6a-8e3d-554c4204aa32.jpg?1562610754", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/2/8/2823d9a5-dd2f-4e6a-8e3d-554c4204aa32.png?1562610754", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/8/2823d9a5-dd2f-4e6a-8e3d-554c4204aa32.jpg?1562610754", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/2/8/2823d9a5-dd2f-4e6a-8e3d-554c4204aa32.jpg?1562610754"}, "mana_cost": "{2}{W}", "cmc": 3.0, "type_line": "Instant \u2014 Trap", "oracle_text": "If exactly one creature is attacking, you may pay {W} rather than pay this spell's mana cost.\nDestroy target attacking creature without flying.", "colors": ["W"], "color_identity": ["W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "eb16a2bd-a218-4e4e-8339-4aa1afc0c8d2", "set": "zen", "set_name": "Zendikar", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/eb16a2bd-a218-4e4e-8339-4aa1afc0c8d2", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Azen&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/zen?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/2823d9a5-dd2f-4e6a-8e3d-554c4204aa32/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A26e75f0b-3a02-4989-8429-b6276e98ac33&unique=prints", "collector_number": "32", "digital": false, "rarity": "uncommon", "flavor_text": "Each spike is poisoned\u2014the trapmaker's idea of mercy.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Franz Vohwinkel", "artist_ids": ["3a243c17-3baa-4b53-9599-645311cd7d3d"], "illustration_id": "c04389ec-cfea-4b46-b5d3-b7fbefb2483a", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 18636, "penny_rank": 12639, "prices": {"usd": "0.03", "usd_foil": "0.25", "usd_etched": null, "eur": "0.03", "eur_foil": "0.14", "tix": "0.04"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=197533", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Pitfall+Trap&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Pitfall+Trap&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Pitfall+Trap"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/33394?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Pitfall+Trap&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/34694?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "0d106d56-a688-49cc-8d5d-0279a5a7c0a7", "oracle_id": "f79f5cb7-d238-41ab-85f0-eb21cc6bf561", "multiverse_ids": [23153], "mtgo_id": 14521, "mtgo_foil_id": 14522, "tcgplayer_id": 7589, "cardmarket_id": 3583, "name": "Plague Spores", "lang": "en", "released_at": "2000-10-02", "uri": "https://api.scryfall.com/cards/0d106d56-a688-49cc-8d5d-0279a5a7c0a7", "scryfall_uri": "https://scryfall.com/card/inv/260/plague-spores?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/0/d/0d106d56-a688-49cc-8d5d-0279a5a7c0a7.jpg?1562897663", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/d/0d106d56-a688-49cc-8d5d-0279a5a7c0a7.jpg?1562897663", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/0/d/0d106d56-a688-49cc-8d5d-0279a5a7c0a7.jpg?1562897663", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/0/d/0d106d56-a688-49cc-8d5d-0279a5a7c0a7.png?1562897663", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/d/0d106d56-a688-49cc-8d5d-0279a5a7c0a7.jpg?1562897663", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/0/d/0d106d56-a688-49cc-8d5d-0279a5a7c0a7.jpg?1562897663"}, "mana_cost": "{4}{B}{R}", "cmc": 6.0, "type_line": "Sorcery", "oracle_text": "Destroy target nonblack creature and target land. They can't be regenerated.", "colors": ["B", "R"], "color_identity": ["B", "R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "b9ae5e02-7726-47ca-b5e4-5ec402b41cd1", "set": "inv", "set_name": "Invasion", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/b9ae5e02-7726-47ca-b5e4-5ec402b41cd1", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ainv&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/inv?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/0d106d56-a688-49cc-8d5d-0279a5a7c0a7/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Af79f5cb7-d238-41ab-85f0-eb21cc6bf561&unique=prints", "collector_number": "260", "digital": false, "rarity": "common", "flavor_text": "\"Breathe deep, Dominaria. Breathe deep and die.\"\n\u2014Tsabo Tavoc, Phyrexian general", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Randy Gallegos", "artist_ids": ["a5048cc7-438a-4378-98e4-da99b78e1db0"], "illustration_id": "72706790-84d9-42fc-b3c7-c78d933849f6", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 21096, "penny_rank": 12722, "prices": {"usd": "0.07", "usd_foil": "0.57", "usd_etched": null, "eur": "0.02", "eur_foil": "0.60", "tix": "0.11"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=23153", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Plague+Spores&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Plague+Spores&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Plague+Spores"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/7589?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Plague+Spores&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/14521?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "5469e696-bbf1-43e3-9c25-fe089b36caed", "oracle_id": "85bde6ac-3dd4-4946-8b57-24f57e3eae2b", "multiverse_ids": [534982], "mtgo_id": 93378, "arena_id": 78553, "tcgplayer_id": 248318, "cardmarket_id": 575075, "name": "Plummet", "lang": "en", "released_at": "2021-09-24", "uri": "https://api.scryfall.com/cards/5469e696-bbf1-43e3-9c25-fe089b36caed", "scryfall_uri": "https://scryfall.com/card/mid/193/plummet?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/5/4/5469e696-bbf1-43e3-9c25-fe089b36caed.jpg?1636224615", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/4/5469e696-bbf1-43e3-9c25-fe089b36caed.jpg?1636224615", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/5/4/5469e696-bbf1-43e3-9c25-fe089b36caed.jpg?1636224615", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/5/4/5469e696-bbf1-43e3-9c25-fe089b36caed.png?1636224615", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/4/5469e696-bbf1-43e3-9c25-fe089b36caed.jpg?1636224615", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/5/4/5469e696-bbf1-43e3-9c25-fe089b36caed.jpg?1636224615"}, "mana_cost": "{1}{G}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Destroy target creature with flying.", "colors": ["G"], "color_identity": ["G"], "keywords": [], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "44b8eb8f-fa23-401a-98b5-1fbb9871128e", "set": "mid", "set_name": "Innistrad: Midnight Hunt", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/44b8eb8f-fa23-401a-98b5-1fbb9871128e", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Amid&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/mid?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/5469e696-bbf1-43e3-9c25-fe089b36caed/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A85bde6ac-3dd4-4946-8b57-24f57e3eae2b&unique=prints", "collector_number": "193", "digital": false, "rarity": "common", "flavor_text": "\"A creature of stone was never meant to fly. And I see the Ulvenwald agrees with me.\"\n\u2014Halana, Kessig ranger", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Nicholas Gregory", "artist_ids": ["a1bba8ff-63b4-4786-b1c4-f1bfe5d3ab1c"], "illustration_id": "1cacc92f-2e8d-4af3-a8d5-07290f661f4e", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 7505, "penny_rank": 7299, "prices": {"usd": "0.01", "usd_foil": "0.03", "usd_etched": null, "eur": "0.01", "eur_foil": "0.05", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=534982", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Plummet&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Plummet&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Plummet"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/248318?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Plummet&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/93378?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "4be85ceb-be98-43ce-9565-a72990797437", "oracle_id": "85bde6ac-3dd4-4946-8b57-24f57e3eae2b", "multiverse_ids": [527486], "mtgo_id": 91900, "arena_id": 77304, "tcgplayer_id": 243444, "cardmarket_id": 571861, "name": "Plummet", "lang": "en", "released_at": "2021-07-23", "uri": "https://api.scryfall.com/cards/4be85ceb-be98-43ce-9565-a72990797437", "scryfall_uri": "https://scryfall.com/card/afr/199/plummet?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/4/b/4be85ceb-be98-43ce-9565-a72990797437.jpg?1627708161", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/b/4be85ceb-be98-43ce-9565-a72990797437.jpg?1627708161", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/4/b/4be85ceb-be98-43ce-9565-a72990797437.jpg?1627708161", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/4/b/4be85ceb-be98-43ce-9565-a72990797437.png?1627708161", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/b/4be85ceb-be98-43ce-9565-a72990797437.jpg?1627708161", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/4/b/4be85ceb-be98-43ce-9565-a72990797437.jpg?1627708161"}, "mana_cost": "{1}{G}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Destroy target creature with flying.", "colors": ["G"], "color_identity": ["G"], "keywords": [], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "e1ef87ba-ba92-4573-817f-543b996d2851", "set": "afr", "set_name": "Adventures in the Forgotten Realms", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/e1ef87ba-ba92-4573-817f-543b996d2851", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aafr&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/afr?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/4be85ceb-be98-43ce-9565-a72990797437/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A85bde6ac-3dd4-4946-8b57-24f57e3eae2b&unique=prints", "collector_number": "199", "digital": false, "rarity": "common", "flavor_text": "The dragon's noxious breath withered the forest. The whistle of a hundred arrows filled the air. The ground roiled as if shaken by an earthquake. The tyrant fell from the sky.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Alix Branwyn", "artist_ids": ["4f0a0e38-d74c-4e0b-ad91-fecccb1afa5d"], "illustration_id": "3add8fde-01fe-4562-8579-22d794b3f9fc", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 7505, "penny_rank": 7299, "prices": {"usd": "0.02", "usd_foil": "0.04", "usd_etched": null, "eur": "0.05", "eur_foil": "0.05", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=527486", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Plummet&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Plummet&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Plummet"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/243444?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Plummet&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/91900?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "d884b2f2-946e-4d5d-b8cf-ef035726a188", "oracle_id": "85bde6ac-3dd4-4946-8b57-24f57e3eae2b", "multiverse_ids": [479689], "mtgo_id": 80347, "arena_id": 71236, "tcgplayer_id": 212718, "cardmarket_id": 455348, "name": "Plummet", "lang": "en", "released_at": "2020-04-24", "uri": "https://api.scryfall.com/cards/d884b2f2-946e-4d5d-b8cf-ef035726a188", "scryfall_uri": "https://scryfall.com/card/iko/169/plummet?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/d/8/d884b2f2-946e-4d5d-b8cf-ef035726a188.jpg?1591227840", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/8/d884b2f2-946e-4d5d-b8cf-ef035726a188.jpg?1591227840", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/d/8/d884b2f2-946e-4d5d-b8cf-ef035726a188.jpg?1591227840", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/d/8/d884b2f2-946e-4d5d-b8cf-ef035726a188.png?1591227840", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/8/d884b2f2-946e-4d5d-b8cf-ef035726a188.jpg?1591227840", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/d/8/d884b2f2-946e-4d5d-b8cf-ef035726a188.jpg?1591227840"}, "mana_cost": "{1}{G}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Destroy target creature with flying.", "colors": ["G"], "color_identity": ["G"], "keywords": [], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "19feda43-15ab-427e-a0e4-148a4bf2b03a", "set": "iko", "set_name": "Ikoria: Lair of Behemoths", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/19feda43-15ab-427e-a0e4-148a4bf2b03a", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aiko&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/iko?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/d884b2f2-946e-4d5d-b8cf-ef035726a188/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A85bde6ac-3dd4-4946-8b57-24f57e3eae2b&unique=prints", "collector_number": "169", "digital": false, "rarity": "common", "flavor_text": "Scavengers follow in Skysail's shadow, feasting on the carcasses of monsters that attacked the floating city.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Sidharth Chaturvedi", "artist_ids": ["55e6d846-2f73-4fba-9b88-441686bb8dcb"], "illustration_id": "3b01ec16-f5f2-4f6b-a6a7-d0a84c93f025", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 7505, "penny_rank": 7299, "prices": {"usd": "0.01", "usd_foil": "0.02", "usd_etched": null, "eur": "0.02", "eur_foil": "0.02", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=479689", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Plummet&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Plummet&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Plummet"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/212718?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Plummet&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/80347?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "a8b2f186-4e04-49cb-a206-257cfb7e9361", "oracle_id": "85bde6ac-3dd4-4946-8b57-24f57e3eae2b", "multiverse_ids": [476445], "mtgo_id": 79512, "arena_id": 70705, "tcgplayer_id": 207118, "cardmarket_id": 432404, "name": "Plummet", "lang": "en", "released_at": "2020-01-24", "uri": "https://api.scryfall.com/cards/a8b2f186-4e04-49cb-a206-257cfb7e9361", "scryfall_uri": "https://scryfall.com/card/thb/194/plummet?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/a/8/a8b2f186-4e04-49cb-a206-257cfb7e9361.jpg?1581480847", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/8/a8b2f186-4e04-49cb-a206-257cfb7e9361.jpg?1581480847", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/a/8/a8b2f186-4e04-49cb-a206-257cfb7e9361.jpg?1581480847", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/a/8/a8b2f186-4e04-49cb-a206-257cfb7e9361.png?1581480847", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/8/a8b2f186-4e04-49cb-a206-257cfb7e9361.jpg?1581480847", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/a/8/a8b2f186-4e04-49cb-a206-257cfb7e9361.jpg?1581480847"}, "mana_cost": "{1}{G}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Destroy target creature with flying.", "colors": ["G"], "color_identity": ["G"], "keywords": [], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "5f23a78d-cda1-462a-8be3-a62b40c34913", "set": "thb", "set_name": "Theros Beyond Death", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/5f23a78d-cda1-462a-8be3-a62b40c34913", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Athb&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/thb?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/a8b2f186-4e04-49cb-a206-257cfb7e9361/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A85bde6ac-3dd4-4946-8b57-24f57e3eae2b&unique=prints", "collector_number": "194", "digital": false, "rarity": "common", "flavor_text": "An arrow from Nylea's bow never fails to find its mark.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Bayard Wu", "artist_ids": ["b089963c-610a-4d50-9206-d64b7caedef1"], "illustration_id": "73f5d88c-4415-4684-9ee4-119eaf1422e4", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 7505, "penny_rank": 7299, "prices": {"usd": "0.02", "usd_foil": "0.03", "usd_etched": null, "eur": "0.02", "eur_foil": "0.03", "tix": "0.04"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=476445", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Plummet&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Plummet&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Plummet"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/207118?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Plummet&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/79512?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "54a0afaa-f99f-4c7a-9fa1-c6a46dfb2a29", "oracle_id": "85bde6ac-3dd4-4946-8b57-24f57e3eae2b", "multiverse_ids": [439800], "mtgo_id": 66739, "arena_id": 66903, "tcgplayer_id": 155789, "cardmarket_id": 315449, "name": "Plummet", "lang": "en", "released_at": "2018-01-19", "uri": "https://api.scryfall.com/cards/54a0afaa-f99f-4c7a-9fa1-c6a46dfb2a29", "scryfall_uri": "https://scryfall.com/card/rix/143/plummet?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/5/4/54a0afaa-f99f-4c7a-9fa1-c6a46dfb2a29.jpg?1561480279", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/4/54a0afaa-f99f-4c7a-9fa1-c6a46dfb2a29.jpg?1561480279", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/5/4/54a0afaa-f99f-4c7a-9fa1-c6a46dfb2a29.jpg?1561480279", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/5/4/54a0afaa-f99f-4c7a-9fa1-c6a46dfb2a29.png?1561480279", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/4/54a0afaa-f99f-4c7a-9fa1-c6a46dfb2a29.jpg?1561480279", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/5/4/54a0afaa-f99f-4c7a-9fa1-c6a46dfb2a29.jpg?1561480279"}, "mana_cost": "{1}{G}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Destroy target creature with flying.", "colors": ["G"], "color_identity": ["G"], "keywords": [], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "2f7e40fc-772d-4a85-bfdd-01653c41d0fa", "set": "rix", "set_name": "Rivals of Ixalan", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/2f7e40fc-772d-4a85-bfdd-01653c41d0fa", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Arix&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/rix?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/54a0afaa-f99f-4c7a-9fa1-c6a46dfb2a29/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A85bde6ac-3dd4-4946-8b57-24f57e3eae2b&unique=prints", "collector_number": "143", "digital": false, "rarity": "common", "flavor_text": "\"Still, the pterodon chasing the clouds from its skies must bow to the great forest below.\"\n\u2014Mahuiz, Sun Empire archer", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Filip Burburan", "artist_ids": ["66082c3b-a623-4d34-be51-2475214b85d3"], "illustration_id": "8900ab68-e41c-4226-b98c-a545aae0659f", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 7505, "penny_rank": 7299, "prices": {"usd": "0.02", "usd_foil": "0.09", "usd_etched": null, "eur": "0.01", "eur_foil": "0.09", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=439800", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Plummet&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Plummet&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Plummet"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/155789?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Plummet&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/66739?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "5f6acb5b-b087-4cad-b40f-2de37029847c", "oracle_id": "85bde6ac-3dd4-4946-8b57-24f57e3eae2b", "multiverse_ids": [401997], "mtgo_id": 58583, "mtgo_foil_id": 58584, "tcgplayer_id": 105662, "cardmarket_id": 284904, "name": "Plummet", "lang": "en", "released_at": "2015-10-02", "uri": "https://api.scryfall.com/cards/5f6acb5b-b087-4cad-b40f-2de37029847c", "scryfall_uri": "https://scryfall.com/card/bfz/184/plummet?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/5/f/5f6acb5b-b087-4cad-b40f-2de37029847c.jpg?1562917482", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/f/5f6acb5b-b087-4cad-b40f-2de37029847c.jpg?1562917482", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/5/f/5f6acb5b-b087-4cad-b40f-2de37029847c.jpg?1562917482", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/5/f/5f6acb5b-b087-4cad-b40f-2de37029847c.png?1562917482", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/f/5f6acb5b-b087-4cad-b40f-2de37029847c.jpg?1562917482", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/5/f/5f6acb5b-b087-4cad-b40f-2de37029847c.jpg?1562917482"}, "mana_cost": "{1}{G}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Destroy target creature with flying.", "colors": ["G"], "color_identity": ["G"], "keywords": [], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "91719374-7ac5-4afa-ada8-5da964dcf1d4", "set": "bfz", "set_name": "Battle for Zendikar", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/91719374-7ac5-4afa-ada8-5da964dcf1d4", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Abfz&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/bfz?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/5f6acb5b-b087-4cad-b40f-2de37029847c/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A85bde6ac-3dd4-4946-8b57-24f57e3eae2b&unique=prints", "collector_number": "184", "digital": false, "rarity": "common", "flavor_text": "The elf's blade carved deep into the Eldrazi drone's fleshy lattices. Without a sound, the drone lost equilibrium and tumbled from the sky.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Aaron Miller", "artist_ids": ["fc021f3d-773a-4706-bbe7-f602324f511f"], "illustration_id": "60d081c6-7e42-4c26-bde3-ea5888974640", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 7505, "penny_rank": 7299, "prices": {"usd": "0.02", "usd_foil": "0.16", "usd_etched": null, "eur": "0.02", "eur_foil": "0.09", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=401997", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Plummet&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Plummet&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Plummet"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/105662?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Plummet&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/58583?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "a67bb585-cc4f-4cbc-9a5a-d31df98c07ae", "oracle_id": "85bde6ac-3dd4-4946-8b57-24f57e3eae2b", "multiverse_ids": [220514], "tcgplayer_id": 37204, "cardmarket_id": 240642, "name": "Plummet", "lang": "en", "released_at": "2010-06-18", "uri": "https://api.scryfall.com/cards/a67bb585-cc4f-4cbc-9a5a-d31df98c07ae", "scryfall_uri": "https://scryfall.com/card/arc/65/plummet?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/a/6/a67bb585-cc4f-4cbc-9a5a-d31df98c07ae.jpg?1562930081", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/6/a67bb585-cc4f-4cbc-9a5a-d31df98c07ae.jpg?1562930081", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/a/6/a67bb585-cc4f-4cbc-9a5a-d31df98c07ae.jpg?1562930081", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/a/6/a67bb585-cc4f-4cbc-9a5a-d31df98c07ae.png?1562930081", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/6/a67bb585-cc4f-4cbc-9a5a-d31df98c07ae.jpg?1562930081", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/a/6/a67bb585-cc4f-4cbc-9a5a-d31df98c07ae.jpg?1562930081"}, "mana_cost": "{1}{G}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Destroy target creature with flying.", "colors": ["G"], "color_identity": ["G"], "keywords": [], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "8bc5ec64-18d5-4c81-96a1-8f619d81a019", "set": "arc", "set_name": "Archenemy", "set_type": "archenemy", "set_uri": "https://api.scryfall.com/sets/8bc5ec64-18d5-4c81-96a1-8f619d81a019", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aarc&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/arc?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/a67bb585-cc4f-4cbc-9a5a-d31df98c07ae/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A85bde6ac-3dd4-4946-8b57-24f57e3eae2b&unique=prints", "collector_number": "65", "digital": false, "rarity": "common", "flavor_text": "\"You are the grandest of all,\" said the archdruid to the trees. They became so proud of bark and branch that they suffered no creature to fly overhead or perch upon a bough.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Pete Venters", "artist_ids": ["d54c4a1a-c0c5-4834-84db-125d341f3ad8"], "illustration_id": "225aa800-61ab-45f2-b73a-23077bdcb8f1", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "edhrec_rank": 7505, "penny_rank": 7299, "prices": {"usd": "0.08", "usd_foil": null, "usd_etched": null, "eur": "0.32", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=220514", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Plummet&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Plummet&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Plummet"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/37204?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Plummet&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Plummet&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "6b7b5f34-c250-484e-9bae-94789b2a87fb", "oracle_id": "6d920c99-8a85-4b20-97c2-7aa0c79ae70a", "multiverse_ids": [10587], "tcgplayer_id": 509, "cardmarket_id": 11273, "name": "Poison Arrow", "lang": "en", "released_at": "1999-07-06", "uri": "https://api.scryfall.com/cards/6b7b5f34-c250-484e-9bae-94789b2a87fb", "scryfall_uri": "https://scryfall.com/card/ptk/80/poison-arrow?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/6/b/6b7b5f34-c250-484e-9bae-94789b2a87fb.jpg?1562256571", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/b/6b7b5f34-c250-484e-9bae-94789b2a87fb.jpg?1562256571", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/6/b/6b7b5f34-c250-484e-9bae-94789b2a87fb.jpg?1562256571", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/6/b/6b7b5f34-c250-484e-9bae-94789b2a87fb.png?1562256571", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/b/6b7b5f34-c250-484e-9bae-94789b2a87fb.jpg?1562256571", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/6/b/6b7b5f34-c250-484e-9bae-94789b2a87fb.jpg?1562256571"}, "mana_cost": "{4}{B}{B}", "cmc": 6.0, "type_line": "Sorcery", "oracle_text": "Destroy target nonblack creature. You gain 3 life.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "2676ff2e-9d86-4b5b-b935-e84e41b0755e", "set": "ptk", "set_name": "Portal Three Kingdoms", "set_type": "starter", "set_uri": "https://api.scryfall.com/sets/2676ff2e-9d86-4b5b-b935-e84e41b0755e", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aptk&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ptk?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/6b7b5f34-c250-484e-9bae-94789b2a87fb/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A6d920c99-8a85-4b20-97c2-7aa0c79ae70a&unique=prints", "collector_number": "80", "digital": false, "rarity": "uncommon", "flavor_text": "In ancient China, not wearing armor could be a fatal mistake. Guan Yu, Zhou Yu, Sun Ce, and other heros were struck by poison arrows.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Li Tie", "artist_ids": ["3523e1ec-f0b8-434c-b0d0-5502e0aead0a"], "illustration_id": "41e9c59f-d884-4840-b7ad-c1e09b35b952", "border_color": "white", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 22952, "prices": {"usd": "24.65", "usd_foil": null, "usd_etched": null, "eur": "3.95", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=10587", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Poison+Arrow&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Poison+Arrow&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Poison+Arrow"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/509?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Poison+Arrow&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Poison+Arrow&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "7fb94456-5266-47db-b514-a0e17e34b771", "oracle_id": "58020778-554c-4af6-8484-0b90f64bc5d9", "multiverse_ids": [503712], "mtgo_id": 87535, "arena_id": 75143, "tcgplayer_id": 230726, "cardmarket_id": 531092, "name": "Poison the Cup", "lang": "en", "released_at": "2021-02-05", "uri": "https://api.scryfall.com/cards/7fb94456-5266-47db-b514-a0e17e34b771", "scryfall_uri": "https://scryfall.com/card/khm/103/poison-the-cup?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/7/f/7fb94456-5266-47db-b514-a0e17e34b771.jpg?1631048334", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/f/7fb94456-5266-47db-b514-a0e17e34b771.jpg?1631048334", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/7/f/7fb94456-5266-47db-b514-a0e17e34b771.jpg?1631048334", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/7/f/7fb94456-5266-47db-b514-a0e17e34b771.png?1631048334", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/f/7fb94456-5266-47db-b514-a0e17e34b771.jpg?1631048334", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/7/f/7fb94456-5266-47db-b514-a0e17e34b771.jpg?1631048334"}, "mana_cost": "{1}{B}{B}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Destroy target creature. If this spell was foretold, scry 2.\nForetell {1}{B} (During your turn, you may pay {2} and exile this card from your hand face down. Cast it on a later turn for its foretell cost.)", "colors": ["B"], "color_identity": ["B"], "keywords": ["Foretell", "Scry"], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "43057fad-b1c1-437f-bc48-0045bce6d8c9", "set": "khm", "set_name": "Kaldheim", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/43057fad-b1c1-437f-bc48-0045bce6d8c9", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Akhm&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/khm?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/7fb94456-5266-47db-b514-a0e17e34b771/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A58020778-554c-4af6-8484-0b90f64bc5d9&unique=prints", "collector_number": "103", "digital": false, "rarity": "uncommon", "watermark": "foretell", "flavor_text": "Dark schemes cut down what armies cannot.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Colin Boyer", "artist_ids": ["9c201dbe-db56-429a-87e6-189ea70c2632"], "illustration_id": "01aa29ed-2268-4de6-b5e9-2ce1294307a6", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 2511, "penny_rank": 11305, "preview": {"source": "Wizards of the Coast", "source_uri": "https://magic.wizards.com/en/articles/archive/card-preview/kaldheim-limited-preview-2021-01-14", "previewed_at": "2021-01-14"}, "prices": {"usd": "0.10", "usd_foil": "0.28", "usd_etched": null, "eur": "0.31", "eur_foil": "0.15", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=503712", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Poison+the+Cup&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Poison+the+Cup&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Poison+the+Cup"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/230726?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Poison+the+Cup&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/87535?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "fbae8702-a152-4c53-8a76-691a221f2475", "oracle_id": "039115f2-6322-4674-bc64-f21883ed375a", "multiverse_ids": [3353], "mtgo_id": 7203, "mtgo_foil_id": 7204, "tcgplayer_id": 5179, "cardmarket_id": 8133, "name": "Polymorph", "lang": "en", "released_at": "1996-10-08", "uri": "https://api.scryfall.com/cards/fbae8702-a152-4c53-8a76-691a221f2475", "scryfall_uri": "https://scryfall.com/card/mir/82/polymorph?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/f/b/fbae8702-a152-4c53-8a76-691a221f2475.jpg?1562722872", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/b/fbae8702-a152-4c53-8a76-691a221f2475.jpg?1562722872", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/f/b/fbae8702-a152-4c53-8a76-691a221f2475.jpg?1562722872", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/f/b/fbae8702-a152-4c53-8a76-691a221f2475.png?1562722872", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/b/fbae8702-a152-4c53-8a76-691a221f2475.jpg?1562722872", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/f/b/fbae8702-a152-4c53-8a76-691a221f2475.jpg?1562722872"}, "mana_cost": "{3}{U}", "cmc": 4.0, "type_line": "Sorcery", "oracle_text": "Destroy target creature. It can't be regenerated. Its controller reveals cards from the top of their library until they reveal a creature card. The player puts that card onto the battlefield, then shuffles all other cards revealed this way into their library.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "banned", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "5f06acf3-8123-4a78-b2e7-089b0b775a4a", "set": "mir", "set_name": "Mirage", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/5f06acf3-8123-4a78-b2e7-089b0b775a4a", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Amir&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/mir?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/fbae8702-a152-4c53-8a76-691a221f2475/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A039115f2-6322-4674-bc64-f21883ed375a&unique=prints", "collector_number": "82", "digital": false, "rarity": "rare", "flavor_text": "\"Ahh! Opposable digits!\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Robert Bliss", "artist_ids": ["df700ada-8491-4072-a261-e12b3225986d"], "illustration_id": "898f22f3-e0d1-4adf-b760-423109d3ff35", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 4251, "penny_rank": 4031, "prices": {"usd": "2.96", "usd_foil": null, "usd_etched": null, "eur": "1.26", "eur_foil": null, "tix": "0.26"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=3353", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Polymorph&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Polymorph&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Polymorph"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/5179?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Polymorph&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/7203?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "cce74a84-4441-4f2e-89d8-df0b096790ed", "oracle_id": "05849bd6-8f38-4031-be2b-e2aa03beb8cc", "multiverse_ids": [129015], "mtgo_id": 26453, "mtgo_foil_id": 26454, "tcgplayer_id": 14777, "cardmarket_id": 14223, "name": "Pongify", "lang": "en", "released_at": "2007-02-02", "uri": "https://api.scryfall.com/cards/cce74a84-4441-4f2e-89d8-df0b096790ed", "scryfall_uri": "https://scryfall.com/card/plc/44/pongify?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/c/c/cce74a84-4441-4f2e-89d8-df0b096790ed.jpg?1562582099", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/c/cce74a84-4441-4f2e-89d8-df0b096790ed.jpg?1562582099", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/c/c/cce74a84-4441-4f2e-89d8-df0b096790ed.jpg?1562582099", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/c/c/cce74a84-4441-4f2e-89d8-df0b096790ed.png?1562582099", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/c/cce74a84-4441-4f2e-89d8-df0b096790ed.jpg?1562582099", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/c/c/cce74a84-4441-4f2e-89d8-df0b096790ed.jpg?1562582099"}, "mana_cost": "{U}", "cmc": 1.0, "type_line": "Instant", "oracle_text": "Destroy target creature. It can't be regenerated. Its controller creates a 3/3 green Ape creature token.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "all_parts": [{"object": "related_card", "id": "cce74a84-4441-4f2e-89d8-df0b096790ed", "component": "combo_piece", "name": "Pongify", "type_line": "Instant", "uri": "https://api.scryfall.com/cards/cce74a84-4441-4f2e-89d8-df0b096790ed"}, {"object": "related_card", "id": "17e0924c-e4b7-482d-9076-1d3b8ff09e9b", "component": "token", "name": "Ape", "type_line": "Token Creature \u2014 Ape", "uri": "https://api.scryfall.com/cards/17e0924c-e4b7-482d-9076-1d3b8ff09e9b"}], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "5a1b571c-73e9-4c14-b9d4-a62507d85789", "set": "plc", "set_name": "Planar Chaos", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/5a1b571c-73e9-4c14-b9d4-a62507d85789", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aplc&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/plc?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/cce74a84-4441-4f2e-89d8-df0b096790ed/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A05849bd6-8f38-4031-be2b-e2aa03beb8cc&unique=prints", "collector_number": "44", "digital": false, "rarity": "uncommon", "flavor_text": "Some spellcrafting mistakes go on to become spells of their own.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Heather Hudson", "artist_ids": ["4441fe52-9e41-40c1-9b74-8510426279ab"], "illustration_id": "579f4ff3-3a01-4af2-9f21-55890cfdac47", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 127, "penny_rank": 3251, "prices": {"usd": "2.92", "usd_foil": "18.64", "usd_etched": null, "eur": "1.21", "eur_foil": "4.50", "tix": "0.04"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=129015", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Pongify&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Pongify&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Pongify"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/14777?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Pongify&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/26453?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "395b6ce4-143f-4eed-b565-98aa3d6208ef", "oracle_id": "ea935885-acbc-450d-a3ad-f80c09e12ce7", "multiverse_ids": [527401], "mtgo_id": 91730, "arena_id": 77219, "tcgplayer_id": 239193, "cardmarket_id": 569035, "name": "Power Word Kill", "lang": "en", "released_at": "2021-07-23", "uri": "https://api.scryfall.com/cards/395b6ce4-143f-4eed-b565-98aa3d6208ef", "scryfall_uri": "https://scryfall.com/card/afr/114/power-word-kill?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/3/9/395b6ce4-143f-4eed-b565-98aa3d6208ef.jpg?1627705234", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/9/395b6ce4-143f-4eed-b565-98aa3d6208ef.jpg?1627705234", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/3/9/395b6ce4-143f-4eed-b565-98aa3d6208ef.jpg?1627705234", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/3/9/395b6ce4-143f-4eed-b565-98aa3d6208ef.png?1627705234", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/9/395b6ce4-143f-4eed-b565-98aa3d6208ef.jpg?1627705234", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/3/9/395b6ce4-143f-4eed-b565-98aa3d6208ef.jpg?1627705234"}, "mana_cost": "{1}{B}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Destroy target non-Angel, non-Demon, non-Devil, non-Dragon creature.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "e1ef87ba-ba92-4573-817f-543b996d2851", "set": "afr", "set_name": "Adventures in the Forgotten Realms", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/e1ef87ba-ba92-4573-817f-543b996d2851", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aafr&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/afr?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/395b6ce4-143f-4eed-b565-98aa3d6208ef/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aea935885-acbc-450d-a3ad-f80c09e12ce7&unique=prints", "collector_number": "114", "digital": false, "rarity": "uncommon", "flavor_text": "Aramil issued a long, heroic challenge, then the lich felled him with a single word.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Izzy", "artist_ids": ["2c3d2473-ff5d-4309-8194-e0b2def2ab65"], "illustration_id": "28e94822-1f58-460b-9e39-b7596b7d13c6", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 4929, "penny_rank": 337, "prices": {"usd": "0.11", "usd_foil": "0.30", "usd_etched": null, "eur": "0.07", "eur_foil": "0.70", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=527401", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Power+Word+Kill&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Power+Word+Kill&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Power+Word+Kill"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/239193?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Power+Word+Kill&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/91730?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "36c71043-1c11-4377-ab33-41d19927143a", "oracle_id": "ea935885-acbc-450d-a3ad-f80c09e12ce7", "multiverse_ids": [], "tcgplayer_id": 272565, "name": "Power Word Kill", "lang": "en", "released_at": "2022-04-08", "uri": "https://api.scryfall.com/cards/36c71043-1c11-4377-ab33-41d19927143a", "scryfall_uri": "https://scryfall.com/card/gdy/1/power-word-kill?utm_source=api", "layout": "normal", "highres_image": false, "image_status": "lowres", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/3/6/36c71043-1c11-4377-ab33-41d19927143a.jpg?1654010561", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/6/36c71043-1c11-4377-ab33-41d19927143a.jpg?1654010561", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/3/6/36c71043-1c11-4377-ab33-41d19927143a.jpg?1654010561", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/3/6/36c71043-1c11-4377-ab33-41d19927143a.png?1654010561", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/6/36c71043-1c11-4377-ab33-41d19927143a.jpg?1654010561", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/3/6/36c71043-1c11-4377-ab33-41d19927143a.jpg?1654010561"}, "mana_cost": "{1}{B}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Destroy target non-Angel, non-Demon, non-Devil, non-Dragon creature.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": true, "reprint": true, "variation": false, "set_id": "5f61e142-b5df-4bab-8f7d-81c2c088596d", "set": "gdy", "set_name": "Game Day Promos", "set_type": "promo", "set_uri": "https://api.scryfall.com/sets/5f61e142-b5df-4bab-8f7d-81c2c088596d", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Agdy&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/gdy?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/36c71043-1c11-4377-ab33-41d19927143a/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aea935885-acbc-450d-a3ad-f80c09e12ce7&unique=prints", "collector_number": "1", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Andreas Zafiratos", "artist_ids": ["e2f13a9a-57c5-40de-81d4-3b0723899cdf"], "illustration_id": "1b36894c-51f1-4939-8d34-df350ae1e25b", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "promo_types": ["gameday"], "edhrec_rank": 4929, "penny_rank": 337, "prices": {"usd": "0.87", "usd_foil": null, "usd_etched": null, "eur": null, "eur_foil": null, "tix": null}, "related_uris": {"tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Power+Word+Kill&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Power+Word+Kill&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Power+Word+Kill"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/272565?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Power+Word+Kill&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Power+Word+Kill&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "e96cea6a-fea6-4a6b-84b2-7b57237be96a", "oracle_id": "78d47e49-42bf-404d-b47b-3fbea765ca9a", "multiverse_ids": [108884], "mtgo_id": 25447, "mtgo_foil_id": 25448, "tcgplayer_id": 14329, "cardmarket_id": 13948, "name": "Premature Burial", "lang": "en", "released_at": "2006-10-06", "uri": "https://api.scryfall.com/cards/e96cea6a-fea6-4a6b-84b2-7b57237be96a", "scryfall_uri": "https://scryfall.com/card/tsp/125/premature-burial?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/e/9/e96cea6a-fea6-4a6b-84b2-7b57237be96a.jpg?1562944222", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/9/e96cea6a-fea6-4a6b-84b2-7b57237be96a.jpg?1562944222", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/e/9/e96cea6a-fea6-4a6b-84b2-7b57237be96a.jpg?1562944222", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/e/9/e96cea6a-fea6-4a6b-84b2-7b57237be96a.png?1562944222", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/9/e96cea6a-fea6-4a6b-84b2-7b57237be96a.jpg?1562944222", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/e/9/e96cea6a-fea6-4a6b-84b2-7b57237be96a.jpg?1562944222"}, "mana_cost": "{1}{B}", "cmc": 2.0, "type_line": "Sorcery", "oracle_text": "Destroy target nonblack creature that entered the battlefield since your last turn ended.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "c1d109bc-ffd8-428f-8d7d-3f8d7e648046", "set": "tsp", "set_name": "Time Spiral", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/c1d109bc-ffd8-428f-8d7d-3f8d7e648046", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Atsp&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/tsp?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/e96cea6a-fea6-4a6b-84b2-7b57237be96a/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A78d47e49-42bf-404d-b47b-3fbea765ca9a&unique=prints", "collector_number": "125", "digital": false, "rarity": "uncommon", "flavor_text": "\"This soil knows well the taste of the dead. Give it the hunger for a living meal, and it can become a deadly ally.\"\n\u2014Ezrith, druid of the Dark Hours", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Clint Langley", "artist_ids": ["0f670587-9f7b-47b3-89cc-8dca80df4cdf"], "illustration_id": "080fcf0f-e714-421f-b647-048c2036b038", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 19817, "penny_rank": 13140, "prices": {"usd": "0.08", "usd_foil": "0.10", "usd_etched": null, "eur": "0.02", "eur_foil": "0.40", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=108884", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Premature+Burial&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Premature+Burial&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Premature+Burial"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/14329?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Premature+Burial&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/25447?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "61b52152-0f7c-4466-9e49-033477028f67", "oracle_id": "45d5cd4c-7285-4507-8cbf-eace7a734f41", "multiverse_ids": [452833], "mtgo_id": 69539, "arena_id": 68544, "tcgplayer_id": 176568, "cardmarket_id": 364061, "name": "Price of Fame", "lang": "en", "released_at": "2018-10-05", "uri": "https://api.scryfall.com/cards/61b52152-0f7c-4466-9e49-033477028f67", "scryfall_uri": "https://scryfall.com/card/grn/83/price-of-fame?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/6/1/61b52152-0f7c-4466-9e49-033477028f67.jpg?1572893038", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/1/61b52152-0f7c-4466-9e49-033477028f67.jpg?1572893038", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/6/1/61b52152-0f7c-4466-9e49-033477028f67.jpg?1572893038", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/6/1/61b52152-0f7c-4466-9e49-033477028f67.png?1572893038", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/1/61b52152-0f7c-4466-9e49-033477028f67.jpg?1572893038", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/6/1/61b52152-0f7c-4466-9e49-033477028f67.jpg?1572893038"}, "mana_cost": "{3}{B}", "cmc": 4.0, "type_line": "Instant", "oracle_text": "This spell costs {2} less to cast if it targets a legendary creature.\nDestroy target creature.\nSurveil 2. (Look at the top two cards of your library, then put any number of them into your graveyard and the rest on top of your library in any order.)", "colors": ["B"], "color_identity": ["B"], "keywords": ["Surveil"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "597c6d4a-8212-4903-a6af-12c4ae9e13f0", "set": "grn", "set_name": "Guilds of Ravnica", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/597c6d4a-8212-4903-a6af-12c4ae9e13f0", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Agrn&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/grn?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/61b52152-0f7c-4466-9e49-033477028f67/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A45d5cd4c-7285-4507-8cbf-eace7a734f41&unique=prints", "collector_number": "83", "digital": false, "rarity": "uncommon", "watermark": "dimir", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Winona Nelson", "artist_ids": ["e45fe8d3-75d6-42c9-a2df-e945ad81ea27"], "illustration_id": "06bfe238-3081-4d96-866b-cd7b9bcc2db9", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 1663, "penny_rank": 5293, "prices": {"usd": "0.23", "usd_foil": "1.11", "usd_etched": null, "eur": "0.12", "eur_foil": "0.75", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=452833", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Price+of+Fame&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Price+of+Fame&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Price+of+Fame"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/176568?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Price+of+Fame&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/69539?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "79624ebe-7110-486d-82ff-b64c662dc6de", "oracle_id": "8eb737d7-0be2-4e80-801f-0562d41e8b67", "multiverse_ids": [9744], "tcgplayer_id": 895, "cardmarket_id": 11935, "name": "Prismatic Wardrobe", "lang": "en", "released_at": "1998-08-11", "uri": "https://api.scryfall.com/cards/79624ebe-7110-486d-82ff-b64c662dc6de", "scryfall_uri": "https://scryfall.com/card/ugl/12/prismatic-wardrobe?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/7/9/79624ebe-7110-486d-82ff-b64c662dc6de.jpg?1593865843", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/9/79624ebe-7110-486d-82ff-b64c662dc6de.jpg?1593865843", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/7/9/79624ebe-7110-486d-82ff-b64c662dc6de.jpg?1593865843", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/7/9/79624ebe-7110-486d-82ff-b64c662dc6de.png?1593865843", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/9/79624ebe-7110-486d-82ff-b64c662dc6de.jpg?1593865843", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/7/9/79624ebe-7110-486d-82ff-b64c662dc6de.jpg?1593865843"}, "mana_cost": "{W}", "cmc": 1.0, "type_line": "Sorcery", "oracle_text": "Destroy target nonartifact, nonland permanent that doesn't share a color with clothing worn by its controller.", "colors": ["W"], "color_identity": ["W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "not_legal", "pauper": "not_legal", "vintage": "not_legal", "penny": "not_legal", "commander": "not_legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "not_legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "3404fc78-6678-4cf4-bd39-4c0be3bb7baf", "set": "ugl", "set_name": "Unglued", "set_type": "funny", "set_uri": "https://api.scryfall.com/sets/3404fc78-6678-4cf4-bd39-4c0be3bb7baf", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Augl&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ugl?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/79624ebe-7110-486d-82ff-b64c662dc6de/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A8eb737d7-0be2-4e80-801f-0562d41e8b67&unique=prints", "collector_number": "12", "digital": false, "rarity": "common", "flavor_text": "\"Spring in Dominaria means pastels!\"\n\u2014Excerpt from *Mage's Home Journal*", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "D. Alexander Gregory", "artist_ids": ["38433e15-f0f5-4223-a985-2d13c4aa0922"], "illustration_id": "eb1c57c1-2de1-4c17-ab3d-083255b05740", "border_color": "silver", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "prices": {"usd": "0.14", "usd_foil": null, "usd_etched": null, "eur": "0.14", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=9744", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Prismatic+Wardrobe&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Prismatic+Wardrobe&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Prismatic+Wardrobe"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/895?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Prismatic+Wardrobe&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Prismatic+Wardrobe&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "48188942-d0ba-4503-bd75-c7a5329bb7c8", "oracle_id": "6125f993-970c-469a-b557-23d4dc6684f4", "multiverse_ids": [253738], "mtgo_id": 45554, "mtgo_foil_id": 45555, "tcgplayer_id": 59973, "cardmarket_id": 257071, "name": "Public Execution", "lang": "en", "released_at": "2012-07-13", "uri": "https://api.scryfall.com/cards/48188942-d0ba-4503-bd75-c7a5329bb7c8", "scryfall_uri": "https://scryfall.com/card/m13/105/public-execution?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/4/8/48188942-d0ba-4503-bd75-c7a5329bb7c8.jpg?1562553248", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/8/48188942-d0ba-4503-bd75-c7a5329bb7c8.jpg?1562553248", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/4/8/48188942-d0ba-4503-bd75-c7a5329bb7c8.jpg?1562553248", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/4/8/48188942-d0ba-4503-bd75-c7a5329bb7c8.png?1562553248", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/8/48188942-d0ba-4503-bd75-c7a5329bb7c8.jpg?1562553248", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/4/8/48188942-d0ba-4503-bd75-c7a5329bb7c8.jpg?1562553248"}, "mana_cost": "{5}{B}", "cmc": 6.0, "type_line": "Instant", "oracle_text": "Destroy target creature an opponent controls. Each other creature that player controls gets -2/-0 until end of turn.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "f9b0c6f4-8a4f-4f36-ad3c-e1e16fb8535d", "set": "m13", "set_name": "Magic 2013", "set_type": "core", "set_uri": "https://api.scryfall.com/sets/f9b0c6f4-8a4f-4f36-ad3c-e1e16fb8535d", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Am13&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/m13?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/48188942-d0ba-4503-bd75-c7a5329bb7c8/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A6125f993-970c-469a-b557-23d4dc6684f4&unique=prints", "collector_number": "105", "digital": false, "rarity": "uncommon", "flavor_text": "Though the executioner did not speak, the villagers got the message.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Anthony Palumbo", "artist_ids": ["afd2d541-4140-41ae-a28f-862436458fcb"], "illustration_id": "4fa20ebc-9b39-4d5e-9dee-87cc17b6cf93", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 20277, "prices": {"usd": "0.02", "usd_foil": "0.05", "usd_etched": null, "eur": "0.02", "eur_foil": "0.10", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=253738", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Public+Execution&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Public+Execution&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Public+Execution"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/59973?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Public+Execution&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/45554?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "5b101264-4994-43b7-9156-228f7d10d2bd", "oracle_id": "15e71226-feb0-4870-a3ea-d8604ca5b3dc", "multiverse_ids": [409775], "mtgo_id": 60170, "mtgo_foil_id": 60171, "tcgplayer_id": 116440, "cardmarket_id": 289143, "name": "Puncturing Light", "lang": "en", "released_at": "2016-04-08", "uri": "https://api.scryfall.com/cards/5b101264-4994-43b7-9156-228f7d10d2bd", "scryfall_uri": "https://scryfall.com/card/soi/35/puncturing-light?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/5/b/5b101264-4994-43b7-9156-228f7d10d2bd.jpg?1576383877", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/b/5b101264-4994-43b7-9156-228f7d10d2bd.jpg?1576383877", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/5/b/5b101264-4994-43b7-9156-228f7d10d2bd.jpg?1576383877", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/5/b/5b101264-4994-43b7-9156-228f7d10d2bd.png?1576383877", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/b/5b101264-4994-43b7-9156-228f7d10d2bd.jpg?1576383877", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/5/b/5b101264-4994-43b7-9156-228f7d10d2bd.jpg?1576383877"}, "mana_cost": "{1}{W}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Destroy target attacking or blocking creature with power 3 or less.", "colors": ["W"], "color_identity": ["W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "5e914d7e-c1e9-446c-a33d-d093c02b2743", "set": "soi", "set_name": "Shadows over Innistrad", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/5e914d7e-c1e9-446c-a33d-d093c02b2743", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Asoi&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/soi?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/5b101264-4994-43b7-9156-228f7d10d2bd/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A15e71226-feb0-4870-a3ea-d8604ca5b3dc&unique=prints", "collector_number": "35", "digital": false, "rarity": "common", "flavor_text": "\"If you refuse to see the light, then you will feel it.\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Greg Staples", "artist_ids": ["93d65564-bf00-447b-8406-e2031f03b6b1"], "illustration_id": "a43213c6-db0d-495b-a0e6-c69dfe878ab3", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 19869, "penny_rank": 10542, "prices": {"usd": "0.06", "usd_foil": null, "usd_etched": null, "eur": "0.01", "eur_foil": "0.09", "tix": "0.04"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=409775", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Puncturing+Light&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Puncturing+Light&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Puncturing+Light"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/116440?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Puncturing+Light&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/60170?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "e52d260a-e1ca-4228-855e-2e104b86fd6c", "oracle_id": "15e71226-feb0-4870-a3ea-d8604ca5b3dc", "multiverse_ids": [193566], "mtgo_id": 36550, "mtgo_foil_id": 36551, "tcgplayer_id": 34735, "cardmarket_id": 22621, "name": "Puncturing Light", "lang": "en", "released_at": "2010-04-23", "uri": "https://api.scryfall.com/cards/e52d260a-e1ca-4228-855e-2e104b86fd6c", "scryfall_uri": "https://scryfall.com/card/roe/41/puncturing-light?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/e/5/e52d260a-e1ca-4228-855e-2e104b86fd6c.jpg?1562709696", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/5/e52d260a-e1ca-4228-855e-2e104b86fd6c.jpg?1562709696", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/e/5/e52d260a-e1ca-4228-855e-2e104b86fd6c.jpg?1562709696", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/e/5/e52d260a-e1ca-4228-855e-2e104b86fd6c.png?1562709696", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/5/e52d260a-e1ca-4228-855e-2e104b86fd6c.jpg?1562709696", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/e/5/e52d260a-e1ca-4228-855e-2e104b86fd6c.jpg?1562709696"}, "mana_cost": "{1}{W}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Destroy target attacking or blocking creature with power 3 or less.", "colors": ["W"], "color_identity": ["W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "eadb8a82-ec56-4623-b50e-42e7e60cb535", "set": "roe", "set_name": "Rise of the Eldrazi", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/eadb8a82-ec56-4623-b50e-42e7e60cb535", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aroe&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/roe?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/e52d260a-e1ca-4228-855e-2e104b86fd6c/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A15e71226-feb0-4870-a3ea-d8604ca5b3dc&unique=prints", "collector_number": "41", "digital": false, "rarity": "common", "flavor_text": "\"The vampires knew what was coming. I know it. And they did nothing. They deserve to feel the same agony they've caused all of us.\"\n\u2014Anitan, Ondu cleric", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Zoltan Boros & Gabor Szikszai", "artist_ids": ["1885e6cb-c827-4896-994e-3d0a027d602f", "44c3877f-8771-43dc-9e40-f4c765f59d2e"], "illustration_id": "2be4f30e-136e-4cf5-873e-db2aa81ee25d", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 19869, "penny_rank": 10542, "prices": {"usd": "0.09", "usd_foil": "0.10", "usd_etched": null, "eur": "0.02", "eur_foil": "0.09", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=193566", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Puncturing+Light&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Puncturing+Light&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Puncturing+Light"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/34735?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Puncturing+Light&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/36550?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "bdcbe727-81f0-469e-92f1-0dd9acdb54ea", "oracle_id": "d06f0f7c-0270-44be-991a-a5ebbddb0900", "multiverse_ids": [34479], "mtgo_id": 20471, "mtgo_foil_id": 20472, "tcgplayer_id": 11749, "cardmarket_id": 465, "name": "Purge", "lang": "en", "released_at": "2004-02-06", "uri": "https://api.scryfall.com/cards/bdcbe727-81f0-469e-92f1-0dd9acdb54ea", "scryfall_uri": "https://scryfall.com/card/dst/12/purge?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/b/d/bdcbe727-81f0-469e-92f1-0dd9acdb54ea.jpg?1562639281", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/d/bdcbe727-81f0-469e-92f1-0dd9acdb54ea.jpg?1562639281", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/b/d/bdcbe727-81f0-469e-92f1-0dd9acdb54ea.jpg?1562639281", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/b/d/bdcbe727-81f0-469e-92f1-0dd9acdb54ea.png?1562639281", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/d/bdcbe727-81f0-469e-92f1-0dd9acdb54ea.jpg?1562639281", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/b/d/bdcbe727-81f0-469e-92f1-0dd9acdb54ea.jpg?1562639281"}, "mana_cost": "{1}{W}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Destroy target artifact creature or black creature. It can't be regenerated.", "colors": ["W"], "color_identity": ["W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "e29cb2dd-1345-4032-abfe-e52e8c8ce074", "set": "dst", "set_name": "Darksteel", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/e29cb2dd-1345-4032-abfe-e52e8c8ce074", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Adst&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/dst?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/bdcbe727-81f0-469e-92f1-0dd9acdb54ea/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ad06f0f7c-0270-44be-991a-a5ebbddb0900&unique=prints", "collector_number": "12", "digital": false, "rarity": "uncommon", "flavor_text": "For the first and last time, the horrific creature experienced terror.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Pete Venters", "artist_ids": ["d54c4a1a-c0c5-4834-84db-125d341f3ad8"], "illustration_id": "f134e098-4f76-42a1-8f99-e41d3b0cf7c0", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 22089, "prices": {"usd": "0.08", "usd_foil": "0.14", "usd_etched": null, "eur": "0.05", "eur_foil": "0.25", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=34479", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Purge&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Purge&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Purge"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/11749?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Purge&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/20471?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "0d43a0b6-2a5c-4959-96ee-6e570949dfed", "oracle_id": "9b271430-f53d-42d6-a547-2f286dd9bcb6", "multiverse_ids": [369073], "mtgo_id": 48328, "mtgo_foil_id": 48329, "tcgplayer_id": 67910, "cardmarket_id": 261349, "name": "Putrefy", "lang": "en", "released_at": "2013-05-03", "uri": "https://api.scryfall.com/cards/0d43a0b6-2a5c-4959-96ee-6e570949dfed", "scryfall_uri": "https://scryfall.com/card/dgm/93/putrefy?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/0/d/0d43a0b6-2a5c-4959-96ee-6e570949dfed.jpg?1562897570", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/d/0d43a0b6-2a5c-4959-96ee-6e570949dfed.jpg?1562897570", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/0/d/0d43a0b6-2a5c-4959-96ee-6e570949dfed.jpg?1562897570", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/0/d/0d43a0b6-2a5c-4959-96ee-6e570949dfed.png?1562897570", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/d/0d43a0b6-2a5c-4959-96ee-6e570949dfed.jpg?1562897570", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/0/d/0d43a0b6-2a5c-4959-96ee-6e570949dfed.jpg?1562897570"}, "mana_cost": "{1}{B}{G}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Destroy target artifact or creature. It can't be regenerated.", "colors": ["B", "G"], "color_identity": ["B", "G"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "c8bd8520-cd98-45cd-b533-8d40c2087426", "set": "dgm", "set_name": "Dragon's Maze", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/c8bd8520-cd98-45cd-b533-8d40c2087426", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Adgm&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/dgm?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/0d43a0b6-2a5c-4959-96ee-6e570949dfed/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A9b271430-f53d-42d6-a547-2f286dd9bcb6&unique=prints", "collector_number": "93", "digital": false, "rarity": "uncommon", "watermark": "golgari", "flavor_text": "\"We are all decaying, always in a state of near-death. One moment without breath and we begin to break down.\"\n\u2014Cevraya, Golgari shaman", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Igor Kieryluk", "artist_ids": ["9c3e9d17-509f-485c-9360-46d897ce716b"], "illustration_id": "bb60b15b-d58e-42ec-b2a4-4d7b8ab3a0e2", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 256, "penny_rank": 645, "prices": {"usd": "0.22", "usd_foil": "1.03", "usd_etched": null, "eur": "0.23", "eur_foil": "0.55", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=369073", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Putrefy&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Putrefy&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Putrefy"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/67910?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Putrefy&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/48328?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "2c0aca3e-d91d-4bb7-ba4a-500d93f71718", "oracle_id": "9b271430-f53d-42d6-a547-2f286dd9bcb6", "multiverse_ids": [292956], "mtgo_id": 46121, "mtgo_foil_id": 46122, "tcgplayer_id": 66373, "cardmarket_id": 258175, "name": "Putrefy", "lang": "en", "released_at": "2012-09-07", "uri": "https://api.scryfall.com/cards/2c0aca3e-d91d-4bb7-ba4a-500d93f71718", "scryfall_uri": "https://scryfall.com/card/ddj/71/putrefy?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/2/c/2c0aca3e-d91d-4bb7-ba4a-500d93f71718.jpg?1592713790", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/c/2c0aca3e-d91d-4bb7-ba4a-500d93f71718.jpg?1592713790", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/2/c/2c0aca3e-d91d-4bb7-ba4a-500d93f71718.jpg?1592713790", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/2/c/2c0aca3e-d91d-4bb7-ba4a-500d93f71718.png?1592713790", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/c/2c0aca3e-d91d-4bb7-ba4a-500d93f71718.jpg?1592713790", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/2/c/2c0aca3e-d91d-4bb7-ba4a-500d93f71718.jpg?1592713790"}, "mana_cost": "{1}{B}{G}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Destroy target artifact or creature. It can't be regenerated.", "colors": ["B", "G"], "color_identity": ["B", "G"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "2dfea68b-b0c4-4f63-ba6c-36c9a6e3030f", "set": "ddj", "set_name": "Duel Decks: Izzet vs. Golgari", "set_type": "duel_deck", "set_uri": "https://api.scryfall.com/sets/2dfea68b-b0c4-4f63-ba6c-36c9a6e3030f", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Addj&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ddj?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/2c0aca3e-d91d-4bb7-ba4a-500d93f71718/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A9b271430-f53d-42d6-a547-2f286dd9bcb6&unique=prints", "collector_number": "71", "digital": false, "rarity": "uncommon", "watermark": "golgari", "flavor_text": "\"All matter, animate or not, rots when exposed to time. We merely speed up the process.\"\n\u2014Ezoc, Golgari rot farmer", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Clint Cearley", "artist_ids": ["03b75350-d5a0-4e3a-b3b4-8d4a5554385b"], "illustration_id": "72df1c02-aafe-4c3e-a92e-5c39c7de0bc2", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "edhrec_rank": 256, "penny_rank": 645, "prices": {"usd": "0.23", "usd_foil": null, "usd_etched": null, "eur": "0.16", "eur_foil": null, "tix": "0.05"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=292956", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Putrefy&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Putrefy&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Putrefy"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/66373?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Putrefy&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/46121?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "0a16086c-5a74-45d0-8b38-e832cfbc80f7", "oracle_id": "9b271430-f53d-42d6-a547-2f286dd9bcb6", "multiverse_ids": [89063], "mtgo_id": 23178, "mtgo_foil_id": 23179, "tcgplayer_id": 13383, "cardmarket_id": 13498, "name": "Putrefy", "lang": "en", "released_at": "2005-10-07", "uri": "https://api.scryfall.com/cards/0a16086c-5a74-45d0-8b38-e832cfbc80f7", "scryfall_uri": "https://scryfall.com/card/rav/221/putrefy?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/0/a/0a16086c-5a74-45d0-8b38-e832cfbc80f7.jpg?1598917276", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/a/0a16086c-5a74-45d0-8b38-e832cfbc80f7.jpg?1598917276", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/0/a/0a16086c-5a74-45d0-8b38-e832cfbc80f7.jpg?1598917276", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/0/a/0a16086c-5a74-45d0-8b38-e832cfbc80f7.png?1598917276", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/a/0a16086c-5a74-45d0-8b38-e832cfbc80f7.jpg?1598917276", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/0/a/0a16086c-5a74-45d0-8b38-e832cfbc80f7.jpg?1598917276"}, "mana_cost": "{1}{B}{G}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Destroy target artifact or creature. It can't be regenerated.", "colors": ["B", "G"], "color_identity": ["B", "G"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "15fccbe8-2825-41ca-9d0a-67aebdf91c4a", "set": "rav", "set_name": "Ravnica: City of Guilds", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/15fccbe8-2825-41ca-9d0a-67aebdf91c4a", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Arav&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/rav?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/0a16086c-5a74-45d0-8b38-e832cfbc80f7/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A9b271430-f53d-42d6-a547-2f286dd9bcb6&unique=prints", "collector_number": "221", "digital": false, "rarity": "uncommon", "watermark": "golgari", "flavor_text": "\"All matter, animate or not, rots when exposed to time. We merely speed up the process.\"\n\u2014Ezoc, Golgari rot farmer", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Jim Nelson", "artist_ids": ["aa9f64d1-29e1-4c82-877e-44c18183f40b"], "illustration_id": "6f7b1a58-c412-4247-b3c6-289c42128333", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 256, "penny_rank": 645, "prices": {"usd": "0.25", "usd_foil": "5.24", "usd_etched": null, "eur": "0.08", "eur_foil": "1.60", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=89063", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Putrefy&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Putrefy&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Putrefy"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/13383?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Putrefy&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/23178?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "3882ebea-2864-40ef-a21d-6ba80a0bd417", "oracle_id": "9b271430-f53d-42d6-a547-2f286dd9bcb6", "multiverse_ids": [517613], "mtgo_id": 89183, "arena_id": 77542, "tcgplayer_id": 235357, "tcgplayer_etched_id": 235358, "cardmarket_id": 556544, "name": "Putrefy", "lang": "en", "released_at": "2021-04-23", "uri": "https://api.scryfall.com/cards/3882ebea-2864-40ef-a21d-6ba80a0bd417", "scryfall_uri": "https://scryfall.com/card/sta/63/putrefy?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/3/8/3882ebea-2864-40ef-a21d-6ba80a0bd417.jpg?1624065750", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/8/3882ebea-2864-40ef-a21d-6ba80a0bd417.jpg?1624065750", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/3/8/3882ebea-2864-40ef-a21d-6ba80a0bd417.jpg?1624065750", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/3/8/3882ebea-2864-40ef-a21d-6ba80a0bd417.png?1624065750", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/8/3882ebea-2864-40ef-a21d-6ba80a0bd417.jpg?1624065750", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/3/8/3882ebea-2864-40ef-a21d-6ba80a0bd417.jpg?1624065750"}, "mana_cost": "{1}{B}{G}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Destroy target artifact or creature. It can't be regenerated.", "colors": ["B", "G"], "color_identity": ["B", "G"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil", "etched"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "5064a720-907f-4cb6-a425-766dc1dd7374", "set": "sta", "set_name": "Strixhaven Mystical Archive", "set_type": "masterpiece", "set_uri": "https://api.scryfall.com/sets/5064a720-907f-4cb6-a425-766dc1dd7374", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Asta&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/sta?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/3882ebea-2864-40ef-a21d-6ba80a0bd417/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A9b271430-f53d-42d6-a547-2f286dd9bcb6&unique=prints", "collector_number": "63", "digital": false, "rarity": "rare", "flavor_text": "\"From monarch to mulch as quick as could be.\"\n\u2014*The Dethroner's Grimoire*", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Minttu Hynninen", "artist_ids": ["95f2b92b-3031-4abb-85f1-bcebf0a032f5"], "illustration_id": "72f35020-c64a-4c11-bbc7-98474df80aa6", "border_color": "borderless", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "edhrec_rank": 256, "penny_rank": 645, "preview": {"source": "Ladee Danger", "source_uri": "https://twitter.com/Brttnymchlle/status/1375220709627027456", "previewed_at": "2021-03-25"}, "prices": {"usd": "0.56", "usd_foil": "0.84", "usd_etched": "1.40", "eur": "0.34", "eur_foil": "1.42", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=517613", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Putrefy&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Putrefy&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Putrefy"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/235357?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Putrefy&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/89183?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "236f46d9-276b-4418-a959-39b0963fc525", "oracle_id": "9b271430-f53d-42d6-a547-2f286dd9bcb6", "multiverse_ids": [], "tcgplayer_id": 38331, "cardmarket_id": 17578, "name": "Putrefy", "lang": "en", "released_at": "2006-01-01", "uri": "https://api.scryfall.com/cards/236f46d9-276b-4418-a959-39b0963fc525", "scryfall_uri": "https://scryfall.com/card/p06/5/putrefy?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/2/3/236f46d9-276b-4418-a959-39b0963fc525.jpg?1561756786", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/3/236f46d9-276b-4418-a959-39b0963fc525.jpg?1561756786", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/2/3/236f46d9-276b-4418-a959-39b0963fc525.jpg?1561756786", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/2/3/236f46d9-276b-4418-a959-39b0963fc525.png?1561756786", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/3/236f46d9-276b-4418-a959-39b0963fc525.jpg?1561756786", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/2/3/236f46d9-276b-4418-a959-39b0963fc525.jpg?1561756786"}, "mana_cost": "{1}{B}{G}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Destroy target artifact or creature. It can't be regenerated.", "colors": ["B", "G"], "color_identity": ["B", "G"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": true, "reprint": true, "variation": false, "set_id": "619f656b-94dc-4772-bc99-62bac48f1eb9", "set": "p06", "set_name": "Magic Player Rewards 2006", "set_type": "promo", "set_uri": "https://api.scryfall.com/sets/619f656b-94dc-4772-bc99-62bac48f1eb9", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ap06&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/p06?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/236f46d9-276b-4418-a959-39b0963fc525/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A9b271430-f53d-42d6-a547-2f286dd9bcb6&unique=prints", "collector_number": "5", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Richard Sardinha", "artist_ids": ["a3cce4f0-fbf5-4883-aac7-fb28b993b132"], "illustration_id": "9054b48a-5c38-4360-814a-336e3377e4c9", "border_color": "black", "frame": "2003", "full_art": true, "textless": true, "booster": false, "story_spotlight": false, "promo_types": ["playerrewards"], "edhrec_rank": 256, "penny_rank": 645, "prices": {"usd": "5.75", "usd_foil": null, "usd_etched": null, "eur": "0.70", "eur_foil": null, "tix": null}, "related_uris": {"tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Putrefy&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Putrefy&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Putrefy"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/38331?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Putrefy&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Putrefy&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "28d2718e-c6fc-4961-b094-11f25f1177ff", "oracle_id": "85fd04e9-b39c-4ce0-97a1-58f9670a298f", "multiverse_ids": [12360], "mtgo_id": 12649, "mtgo_foil_id": 12650, "tcgplayer_id": 6372, "cardmarket_id": 10579, "name": "Radiant's Judgment", "lang": "en", "released_at": "1999-02-15", "uri": "https://api.scryfall.com/cards/28d2718e-c6fc-4961-b094-11f25f1177ff", "scryfall_uri": "https://scryfall.com/card/ulg/22/radiants-judgment?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/2/8/28d2718e-c6fc-4961-b094-11f25f1177ff.jpg?1562862779", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/8/28d2718e-c6fc-4961-b094-11f25f1177ff.jpg?1562862779", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/2/8/28d2718e-c6fc-4961-b094-11f25f1177ff.jpg?1562862779", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/2/8/28d2718e-c6fc-4961-b094-11f25f1177ff.png?1562862779", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/8/28d2718e-c6fc-4961-b094-11f25f1177ff.jpg?1562862779", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/2/8/28d2718e-c6fc-4961-b094-11f25f1177ff.jpg?1562862779"}, "mana_cost": "{2}{W}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Destroy target creature with power 4 or greater.\nCycling {2} ({2}, Discard this card: Draw a card.)", "colors": ["W"], "color_identity": ["W"], "keywords": ["Cycling"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "78ced61b-4b8a-4b33-b6b2-f5bd66f1a75a", "set": "ulg", "set_name": "Urza's Legacy", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/78ced61b-4b8a-4b33-b6b2-f5bd66f1a75a", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aulg&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ulg?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/28d2718e-c6fc-4961-b094-11f25f1177ff/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A85fd04e9-b39c-4ce0-97a1-58f9670a298f&unique=prints", "collector_number": "22", "digital": false, "rarity": "common", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Greg Staples", "artist_ids": ["93d65564-bf00-447b-8406-e2031f03b6b1"], "illustration_id": "37340f61-f5d7-41c6-b430-a72a050dcf9a", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 8064, "penny_rank": 5456, "prices": {"usd": "0.20", "usd_foil": "7.08", "usd_etched": null, "eur": "0.10", "eur_foil": "4.50", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=12360", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Radiant%27s+Judgment&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Radiant%27s+Judgment&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Radiant%27s+Judgment"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/6372?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Radiant%27s+Judgment&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/12649?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "83557f55-f1ab-4995-9cc1-37be895a59db", "oracle_id": "06692cd9-ac2f-4a32-8fd1-043ba3c0fe71", "multiverse_ids": [366388], "mtgo_id": 47809, "mtgo_foil_id": 47810, "tcgplayer_id": 67390, "cardmarket_id": 259872, "name": "Rapid Hybridization", "lang": "en", "released_at": "2013-02-01", "uri": "https://api.scryfall.com/cards/83557f55-f1ab-4995-9cc1-37be895a59db", "scryfall_uri": "https://scryfall.com/card/gtc/44/rapid-hybridization?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/8/3/83557f55-f1ab-4995-9cc1-37be895a59db.jpg?1561834181", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/3/83557f55-f1ab-4995-9cc1-37be895a59db.jpg?1561834181", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/8/3/83557f55-f1ab-4995-9cc1-37be895a59db.jpg?1561834181", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/8/3/83557f55-f1ab-4995-9cc1-37be895a59db.png?1561834181", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/3/83557f55-f1ab-4995-9cc1-37be895a59db.jpg?1561834181", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/8/3/83557f55-f1ab-4995-9cc1-37be895a59db.jpg?1561834181"}, "mana_cost": "{U}", "cmc": 1.0, "type_line": "Instant", "oracle_text": "Destroy target creature. It can't be regenerated. That creature's controller creates a 3/3 green Frog Lizard creature token.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "all_parts": [{"object": "related_card", "id": "83557f55-f1ab-4995-9cc1-37be895a59db", "component": "combo_piece", "name": "Rapid Hybridization", "type_line": "Instant", "uri": "https://api.scryfall.com/cards/83557f55-f1ab-4995-9cc1-37be895a59db"}, {"object": "related_card", "id": "b938d2e0-7e90-4f57-b363-5c68a6207d6c", "component": "token", "name": "Frog Lizard", "type_line": "Token Creature \u2014 Frog Lizard", "uri": "https://api.scryfall.com/cards/b938d2e0-7e90-4f57-b363-5c68a6207d6c"}], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "035a05f7-e020-4f50-a141-ed16ba704bd2", "set": "gtc", "set_name": "Gatecrash", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/035a05f7-e020-4f50-a141-ed16ba704bd2", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Agtc&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/gtc?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/83557f55-f1ab-4995-9cc1-37be895a59db/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A06692cd9-ac2f-4a32-8fd1-043ba3c0fe71&unique=prints", "collector_number": "44", "digital": false, "rarity": "uncommon", "flavor_text": "\"We've merged your life essence with that of several creatures at once. You're welcome.\"\n\u2014Speaker Trifon", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Jack Wang", "artist_ids": ["331942ac-401c-4af3-9d70-85f67717496c"], "illustration_id": "20df3326-a17b-41da-92d9-94a3751d8c49", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 192, "penny_rank": 4605, "prices": {"usd": "1.82", "usd_foil": "16.74", "usd_etched": null, "eur": "2.52", "eur_foil": "7.00", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=366388", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Rapid+Hybridization&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Rapid+Hybridization&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Rapid+Hybridization"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/67390?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Rapid+Hybridization&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/47809?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "bbf9a803-473a-4c38-b352-d47c4fd93d5e", "oracle_id": "e01382e0-a685-41c4-9ab6-727ffdbf2e0a", "multiverse_ids": [391902], "mtgo_id": 55332, "mtgo_foil_id": 55333, "tcgplayer_id": 95392, "cardmarket_id": 271677, "name": "Reach of Shadows", "lang": "en", "released_at": "2015-01-23", "uri": "https://api.scryfall.com/cards/bbf9a803-473a-4c38-b352-d47c4fd93d5e", "scryfall_uri": "https://scryfall.com/card/frf/81/reach-of-shadows?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/b/b/bbf9a803-473a-4c38-b352-d47c4fd93d5e.jpg?1562829283", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/b/bbf9a803-473a-4c38-b352-d47c4fd93d5e.jpg?1562829283", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/b/b/bbf9a803-473a-4c38-b352-d47c4fd93d5e.jpg?1562829283", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/b/b/bbf9a803-473a-4c38-b352-d47c4fd93d5e.png?1562829283", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/b/bbf9a803-473a-4c38-b352-d47c4fd93d5e.jpg?1562829283", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/b/b/bbf9a803-473a-4c38-b352-d47c4fd93d5e.jpg?1562829283"}, "mana_cost": "{4}{B}", "cmc": 5.0, "type_line": "Instant", "oracle_text": "Destroy target creature that's one or more colors.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "7bb5cb2b-081a-4c8c-b7e1-494046e6baa1", "set": "frf", "set_name": "Fate Reforged", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/7bb5cb2b-081a-4c8c-b7e1-494046e6baa1", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Afrf&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/frf?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/bbf9a803-473a-4c38-b352-d47c4fd93d5e/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ae01382e0-a685-41c4-9ab6-727ffdbf2e0a&unique=prints", "collector_number": "81", "digital": false, "rarity": "common", "flavor_text": "\"Is it better to be a fool or a coward? Fools may get things done occasionally, but cowards live longer.\"\n\u2014Ghelesh Shadowmane, rakshasa mage", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Daarken", "artist_ids": ["e607a0d4-fc12-4c01-9e3f-501f5269b9cb"], "illustration_id": "2efbf0a6-a410-49a6-aa53-38b1f77011da", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 20924, "prices": {"usd": "0.02", "usd_foil": "0.12", "usd_etched": null, "eur": "0.02", "eur_foil": "0.05", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=391902", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Reach+of+Shadows&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Reach+of+Shadows&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Reach+of+Shadows"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/95392?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Reach+of+Shadows&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/55332?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "ce7ff657-aa44-4336-895a-87518159cef6", "oracle_id": "8eb328e6-332e-435c-9733-4c5336f17824", "multiverse_ids": [473065], "mtgo_id": 78326, "arena_id": 70250, "tcgplayer_id": 198976, "cardmarket_id": 400439, "name": "Reave Soul", "lang": "en", "released_at": "2019-10-04", "uri": "https://api.scryfall.com/cards/ce7ff657-aa44-4336-895a-87518159cef6", "scryfall_uri": "https://scryfall.com/card/eld/103/reave-soul?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/c/e/ce7ff657-aa44-4336-895a-87518159cef6.jpg?1572490229", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/e/ce7ff657-aa44-4336-895a-87518159cef6.jpg?1572490229", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/c/e/ce7ff657-aa44-4336-895a-87518159cef6.jpg?1572490229", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/c/e/ce7ff657-aa44-4336-895a-87518159cef6.png?1572490229", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/e/ce7ff657-aa44-4336-895a-87518159cef6.jpg?1572490229", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/c/e/ce7ff657-aa44-4336-895a-87518159cef6.jpg?1572490229"}, "mana_cost": "{1}{B}", "cmc": 2.0, "type_line": "Sorcery", "oracle_text": "Destroy target creature with power 3 or less.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "a90a7b2f-9dd8-4fc7-9f7d-8ea2797ec782", "set": "eld", "set_name": "Throne of Eldraine", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/a90a7b2f-9dd8-4fc7-9f7d-8ea2797ec782", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aeld&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/eld?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/ce7ff657-aa44-4336-895a-87518159cef6/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A8eb328e6-332e-435c-9733-4c5336f17824&unique=prints", "collector_number": "103", "digital": false, "rarity": "common", "flavor_text": "\"Into amethyst, I pour\nEnvy's shadow, sorrow's gleam.\nLure the one whose scorn I bore\nThat I may hear one final scream.\"\n\u2014Barrow witch incantation", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Naomi Baker", "artist_ids": ["6fe0624f-c75c-4f0d-bdb2-514d9b596030"], "illustration_id": "3c517375-5a31-4b09-9127-d971b0e459a1", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 13846, "penny_rank": 6328, "prices": {"usd": "0.01", "usd_foil": "0.06", "usd_etched": null, "eur": "0.04", "eur_foil": "0.02", "tix": "0.04"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=473065", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Reave+Soul&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Reave+Soul&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Reave+Soul"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/198976?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Reave+Soul&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/78326?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "db3d5e9d-07e8-43e1-aaf0-1f9e4ed2834a", "oracle_id": "8eb328e6-332e-435c-9733-4c5336f17824", "multiverse_ids": [398591], "mtgo_id": 57958, "mtgo_foil_id": 57959, "tcgplayer_id": 99748, "cardmarket_id": 283174, "name": "Reave Soul", "lang": "en", "released_at": "2015-07-17", "uri": "https://api.scryfall.com/cards/db3d5e9d-07e8-43e1-aaf0-1f9e4ed2834a", "scryfall_uri": "https://scryfall.com/card/ori/115/reave-soul?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/d/b/db3d5e9d-07e8-43e1-aaf0-1f9e4ed2834a.jpg?1562045144", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/b/db3d5e9d-07e8-43e1-aaf0-1f9e4ed2834a.jpg?1562045144", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/d/b/db3d5e9d-07e8-43e1-aaf0-1f9e4ed2834a.jpg?1562045144", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/d/b/db3d5e9d-07e8-43e1-aaf0-1f9e4ed2834a.png?1562045144", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/b/db3d5e9d-07e8-43e1-aaf0-1f9e4ed2834a.jpg?1562045144", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/d/b/db3d5e9d-07e8-43e1-aaf0-1f9e4ed2834a.jpg?1562045144"}, "mana_cost": "{1}{B}", "cmc": 2.0, "type_line": "Sorcery", "oracle_text": "Destroy target creature with power 3 or less.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "0eeb9a9a-20ac-404d-b55f-aeb7a43a7f62", "set": "ori", "set_name": "Magic Origins", "set_type": "core", "set_uri": "https://api.scryfall.com/sets/0eeb9a9a-20ac-404d-b55f-aeb7a43a7f62", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aori&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ori?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/db3d5e9d-07e8-43e1-aaf0-1f9e4ed2834a/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A8eb328e6-332e-435c-9733-4c5336f17824&unique=prints", "collector_number": "115", "digital": false, "rarity": "common", "flavor_text": "\"I was not convinced you had a soul until I saw it for myself.\"\n\u2014Liliana Vess", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "David Palumbo", "artist_ids": ["04ce1c75-e30c-4b7a-8cb0-b53e4ecc2f39"], "illustration_id": "dd55f1eb-115f-4b6d-9ac2-318235e6dba4", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 13846, "penny_rank": 6328, "prices": {"usd": "0.01", "usd_foil": "0.08", "usd_etched": null, "eur": "0.01", "eur_foil": "0.20", "tix": "0.04"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=398591", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Reave+Soul&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Reave+Soul&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Reave+Soul"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/99748?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Reave+Soul&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/57958?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "267185ac-a176-423e-a7f8-ee966d1d9a1e", "oracle_id": "cf35ec1e-11e2-4028-89df-9755fd6772bf", "multiverse_ids": [247423], "mtgo_id": 42774, "mtgo_foil_id": 42775, "tcgplayer_id": 56231, "cardmarket_id": 250680, "name": "Rebuke", "lang": "en", "released_at": "2011-09-30", "uri": "https://api.scryfall.com/cards/267185ac-a176-423e-a7f8-ee966d1d9a1e", "scryfall_uri": "https://scryfall.com/card/isd/29/rebuke?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/2/6/267185ac-a176-423e-a7f8-ee966d1d9a1e.jpg?1562827636", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/6/267185ac-a176-423e-a7f8-ee966d1d9a1e.jpg?1562827636", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/2/6/267185ac-a176-423e-a7f8-ee966d1d9a1e.jpg?1562827636", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/2/6/267185ac-a176-423e-a7f8-ee966d1d9a1e.png?1562827636", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/6/267185ac-a176-423e-a7f8-ee966d1d9a1e.jpg?1562827636", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/2/6/267185ac-a176-423e-a7f8-ee966d1d9a1e.jpg?1562827636"}, "mana_cost": "{2}{W}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Destroy target attacking creature.", "colors": ["W"], "color_identity": ["W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "d1026945-2969-42b9-be53-f941405a58cb", "set": "isd", "set_name": "Innistrad", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/d1026945-2969-42b9-be53-f941405a58cb", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aisd&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/isd?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/267185ac-a176-423e-a7f8-ee966d1d9a1e/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Acf35ec1e-11e2-4028-89df-9755fd6772bf&unique=prints", "collector_number": "29", "digital": false, "rarity": "common", "flavor_text": "\"No one chooses to be stitched together into a skaab. If it could speak, it would beg for its own destruction.\"\n\u2014Thalia, Knight-Cathar", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Igor Kieryluk", "artist_ids": ["9c3e9d17-509f-485c-9360-46d897ce716b"], "illustration_id": "6275a94a-f18b-46bc-b728-665e17f748ed", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 15985, "penny_rank": 10602, "prices": {"usd": "0.06", "usd_foil": "0.22", "usd_etched": null, "eur": "0.15", "eur_foil": "0.19", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=247423", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Rebuke&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Rebuke&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Rebuke"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/56231?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Rebuke&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/42774?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "07f56287-91e0-418f-8b57-35c6c30cee33", "oracle_id": "db8e3c05-12d6-41f6-8cc7-e64c863fca58", "multiverse_ids": [416802], "tcgplayer_id": 121896, "cardmarket_id": 291852, "name": "Regicide", "lang": "en", "released_at": "2016-08-26", "uri": "https://api.scryfall.com/cards/07f56287-91e0-418f-8b57-35c6c30cee33", "scryfall_uri": "https://scryfall.com/card/cn2/45/regicide?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/0/7/07f56287-91e0-418f-8b57-35c6c30cee33.jpg?1576381853", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/7/07f56287-91e0-418f-8b57-35c6c30cee33.jpg?1576381853", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/0/7/07f56287-91e0-418f-8b57-35c6c30cee33.jpg?1576381853", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/0/7/07f56287-91e0-418f-8b57-35c6c30cee33.png?1576381853", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/7/07f56287-91e0-418f-8b57-35c6c30cee33.jpg?1576381853", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/0/7/07f56287-91e0-418f-8b57-35c6c30cee33.jpg?1576381853"}, "mana_cost": "{B}", "cmc": 1.0, "type_line": "Instant", "oracle_text": "Reveal Regicide as you draft it. The player to your right chooses a color, you choose another color, then the player to your left chooses a third color.\nDestroy target creature that's one or more of the colors chosen as you drafted cards named Regicide.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "ad1b8847-1905-4080-9e26-80691ea7c1ef", "set": "cn2", "set_name": "Conspiracy: Take the Crown", "set_type": "draft_innovation", "set_uri": "https://api.scryfall.com/sets/ad1b8847-1905-4080-9e26-80691ea7c1ef", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Acn2&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/cn2?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/07f56287-91e0-418f-8b57-35c6c30cee33/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Adb8e3c05-12d6-41f6-8cc7-e64c863fca58&unique=prints", "collector_number": "45", "digital": false, "rarity": "common", "watermark": "conspiracy", "flavor_text": "\"You're done!\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Chris Rallis", "artist_ids": ["a8e7b854-b15a-421a-b66d-6e68187ae285"], "illustration_id": "f5be475e-f271-4481-a24f-4c5b7a5c797c", "border_color": "black", "frame": "2015", "frame_effects": ["draft"], "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 23019, "prices": {"usd": "0.06", "usd_foil": "0.64", "usd_etched": null, "eur": "0.03", "eur_foil": "0.48", "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=416802", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Regicide&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Regicide&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Regicide"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/121896?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Regicide&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Regicide&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "9285b14a-fc8e-457a-b803-202e05be41e5", "oracle_id": "436b5989-9b8c-4e03-a82e-046837c891ca", "multiverse_ids": [3461], "mtgo_id": 7247, "mtgo_foil_id": 7248, "tcgplayer_id": 5201, "cardmarket_id": 8241, "name": "Reign of Chaos", "lang": "en", "released_at": "1996-10-08", "uri": "https://api.scryfall.com/cards/9285b14a-fc8e-457a-b803-202e05be41e5", "scryfall_uri": "https://scryfall.com/card/mir/190/reign-of-chaos?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/9/2/9285b14a-fc8e-457a-b803-202e05be41e5.jpg?1562720487", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/2/9285b14a-fc8e-457a-b803-202e05be41e5.jpg?1562720487", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/9/2/9285b14a-fc8e-457a-b803-202e05be41e5.jpg?1562720487", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/9/2/9285b14a-fc8e-457a-b803-202e05be41e5.png?1562720487", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/2/9285b14a-fc8e-457a-b803-202e05be41e5.jpg?1562720487", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/9/2/9285b14a-fc8e-457a-b803-202e05be41e5.jpg?1562720487"}, "mana_cost": "{2}{R}{R}", "cmc": 4.0, "type_line": "Sorcery", "oracle_text": "Choose one \u2014\n\u2022 Destroy target Plains and target white creature.\n\u2022 Destroy target Island and target blue creature.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "5f06acf3-8123-4a78-b2e7-089b0b775a4a", "set": "mir", "set_name": "Mirage", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/5f06acf3-8123-4a78-b2e7-089b0b775a4a", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Amir&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/mir?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/9285b14a-fc8e-457a-b803-202e05be41e5/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A436b5989-9b8c-4e03-a82e-046837c891ca&unique=prints", "collector_number": "190", "digital": false, "rarity": "uncommon", "flavor_text": "\"The Burning Isles are the home to a dozen lords who claim dominion. Jamuraa will look to only one leader: me.\"\n\u2014Kaervek", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Kathryn Rathke", "artist_ids": ["6547d7c0-51a4-4e0f-ac83-beaf5857ddbf"], "illustration_id": "a6900916-2602-4c0a-b9eb-2822f3b00d3c", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 20228, "prices": {"usd": "0.23", "usd_foil": null, "usd_etched": null, "eur": "0.13", "eur_foil": null, "tix": "0.09"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=3461", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Reign+of+Chaos&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Reign+of+Chaos&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Reign+of+Chaos"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/5201?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Reign+of+Chaos&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/7247?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "92b300a3-e6a8-4ca9-bb26-03f57b5ff6ec", "oracle_id": "079d4698-dc11-4d29-91b6-725d78dfb75d", "multiverse_ids": [75259], "mtgo_id": 21115, "mtgo_foil_id": 21116, "tcgplayer_id": 12145, "cardmarket_id": 12164, "name": "Rend Flesh", "lang": "en", "released_at": "2004-10-01", "uri": "https://api.scryfall.com/cards/92b300a3-e6a8-4ca9-bb26-03f57b5ff6ec", "scryfall_uri": "https://scryfall.com/card/chk/140/rend-flesh?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/9/2/92b300a3-e6a8-4ca9-bb26-03f57b5ff6ec.jpg?1562762516", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/2/92b300a3-e6a8-4ca9-bb26-03f57b5ff6ec.jpg?1562762516", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/9/2/92b300a3-e6a8-4ca9-bb26-03f57b5ff6ec.jpg?1562762516", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/9/2/92b300a3-e6a8-4ca9-bb26-03f57b5ff6ec.png?1562762516", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/2/92b300a3-e6a8-4ca9-bb26-03f57b5ff6ec.jpg?1562762516", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/9/2/92b300a3-e6a8-4ca9-bb26-03f57b5ff6ec.jpg?1562762516"}, "mana_cost": "{2}{B}", "cmc": 3.0, "type_line": "Instant \u2014 Arcane", "oracle_text": "Destroy target non-Spirit creature.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "6183d21f-a0af-4118-ba58-aca1d8719c01", "set": "chk", "set_name": "Champions of Kamigawa", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/6183d21f-a0af-4118-ba58-aca1d8719c01", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Achk&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/chk?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/92b300a3-e6a8-4ca9-bb26-03f57b5ff6ec/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A079d4698-dc11-4d29-91b6-725d78dfb75d&unique=prints", "collector_number": "140", "digital": false, "rarity": "common", "flavor_text": "\"The Reito Massacre was a testament to the kami's unstoppable power. The human defenders might as well have been moths battling a forest fire.\"\n\u2014*Great Battles of Kamigawa*", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Stephen Tappin", "artist_ids": ["bb596c13-9c39-4b11-8a7b-c88944826e70"], "illustration_id": "16c43b52-8ed4-4c78-975a-615ed20d6609", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 9826, "penny_rank": 4301, "prices": {"usd": "0.20", "usd_foil": "1.52", "usd_etched": null, "eur": "0.02", "eur_foil": "0.35", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=75259", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Rend+Flesh&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Rend+Flesh&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Rend+Flesh"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/12145?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Rend+Flesh&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/21115?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "343baad1-dd58-4d64-9b0a-258618094ceb", "oracle_id": "fae90808-bafa-44d8-972a-17ded87576ee", "multiverse_ids": [380480], "mtgo_id": 52242, "mtgo_foil_id": 52243, "tcgplayer_id": 82304, "cardmarket_id": 266679, "name": "Reprisal", "lang": "en", "released_at": "2014-05-02", "uri": "https://api.scryfall.com/cards/343baad1-dd58-4d64-9b0a-258618094ceb", "scryfall_uri": "https://scryfall.com/card/jou/23/reprisal?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/3/4/343baad1-dd58-4d64-9b0a-258618094ceb.jpg?1593095328", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/4/343baad1-dd58-4d64-9b0a-258618094ceb.jpg?1593095328", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/3/4/343baad1-dd58-4d64-9b0a-258618094ceb.jpg?1593095328", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/3/4/343baad1-dd58-4d64-9b0a-258618094ceb.png?1593095328", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/4/343baad1-dd58-4d64-9b0a-258618094ceb.jpg?1593095328", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/3/4/343baad1-dd58-4d64-9b0a-258618094ceb.jpg?1593095328"}, "mana_cost": "{1}{W}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Destroy target creature with power 4 or greater. It can't be regenerated.", "colors": ["W"], "color_identity": ["W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "204d2dca-1887-4721-9558-164aa7bbeb4f", "set": "jou", "set_name": "Journey into Nyx", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/204d2dca-1887-4721-9558-164aa7bbeb4f", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ajou&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/jou?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/343baad1-dd58-4d64-9b0a-258618094ceb/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Afae90808-bafa-44d8-972a-17ded87576ee&unique=prints", "collector_number": "23", "digital": false, "rarity": "uncommon", "flavor_text": "\"A tiny flame is enough to dispel the night.\"\n\u2014Elspeth", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Raymond Swanland", "artist_ids": ["e956bacc-077d-4c12-b6bc-ba798b718af9"], "illustration_id": "fd8b718d-9412-432c-b109-20c2fcf79039", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 12968, "penny_rank": 5165, "prices": {"usd": "0.09", "usd_foil": "0.31", "usd_etched": null, "eur": "0.08", "eur_foil": "0.75", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=380480", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Reprisal&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Reprisal&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Reprisal"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/82304?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Reprisal&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/52242?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "3868f7ff-8a84-4153-bf5a-ff001d34e0f0", "oracle_id": "fae90808-bafa-44d8-972a-17ded87576ee", "multiverse_ids": [15782], "mtgo_id": 15794, "mtgo_foil_id": 15795, "tcgplayer_id": 3051, "cardmarket_id": 2795, "name": "Reprisal", "lang": "en", "released_at": "2001-04-11", "uri": "https://api.scryfall.com/cards/3868f7ff-8a84-4153-bf5a-ff001d34e0f0", "scryfall_uri": "https://scryfall.com/card/7ed/33/reprisal?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/3/8/3868f7ff-8a84-4153-bf5a-ff001d34e0f0.jpg?1562235914", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/8/3868f7ff-8a84-4153-bf5a-ff001d34e0f0.jpg?1562235914", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/3/8/3868f7ff-8a84-4153-bf5a-ff001d34e0f0.jpg?1562235914", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/3/8/3868f7ff-8a84-4153-bf5a-ff001d34e0f0.png?1562235914", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/8/3868f7ff-8a84-4153-bf5a-ff001d34e0f0.jpg?1562235914", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/3/8/3868f7ff-8a84-4153-bf5a-ff001d34e0f0.jpg?1562235914"}, "mana_cost": "{1}{W}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Destroy target creature with power 4 or greater. It can't be regenerated.", "colors": ["W"], "color_identity": ["W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "230f38aa-9511-4db8-a3aa-aeddbc3f7bb9", "set": "7ed", "set_name": "Seventh Edition", "set_type": "core", "set_uri": "https://api.scryfall.com/sets/230f38aa-9511-4db8-a3aa-aeddbc3f7bb9", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3A7ed&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/7ed?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/3868f7ff-8a84-4153-bf5a-ff001d34e0f0/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Afae90808-bafa-44d8-972a-17ded87576ee&unique=prints", "collector_number": "33", "digital": false, "rarity": "uncommon", "flavor_text": "\"Fear this no more!\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Ciruelo", "artist_ids": ["1761c216-72b5-4a9b-afee-ad47a00fe1ad"], "illustration_id": "eb5c11d9-8986-4902-bedc-d0aba23b9f79", "border_color": "white", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 12968, "penny_rank": 5165, "prices": {"usd": "0.25", "usd_foil": "3.80", "usd_etched": null, "eur": "0.10", "eur_foil": "9.00", "tix": "0.09"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=15782", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Reprisal&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Reprisal&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Reprisal"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/3051?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Reprisal&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/15794?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "179f50be-6658-42f4-b9b9-c97c7d3f239a", "oracle_id": "fae90808-bafa-44d8-972a-17ded87576ee", "multiverse_ids": [3209], "tcgplayer_id": 4220, "cardmarket_id": 7996, "name": "Reprisal", "lang": "en", "released_at": "1996-06-10", "uri": "https://api.scryfall.com/cards/179f50be-6658-42f4-b9b9-c97c7d3f239a", "scryfall_uri": "https://scryfall.com/card/all/13a/reprisal?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/1/7/179f50be-6658-42f4-b9b9-c97c7d3f239a.jpg?1562768219", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/7/179f50be-6658-42f4-b9b9-c97c7d3f239a.jpg?1562768219", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/1/7/179f50be-6658-42f4-b9b9-c97c7d3f239a.jpg?1562768219", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/1/7/179f50be-6658-42f4-b9b9-c97c7d3f239a.png?1562768219", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/7/179f50be-6658-42f4-b9b9-c97c7d3f239a.jpg?1562768219", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/1/7/179f50be-6658-42f4-b9b9-c97c7d3f239a.jpg?1562768219"}, "mana_cost": "{1}{W}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Destroy target creature with power 4 or greater. It can't be regenerated.", "colors": ["W"], "color_identity": ["W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "64987b06-4a5c-443d-b560-ff5691744582", "set": "all", "set_name": "Alliances", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/64987b06-4a5c-443d-b560-ff5691744582", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aall&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/all?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/179f50be-6658-42f4-b9b9-c97c7d3f239a/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Afae90808-bafa-44d8-972a-17ded87576ee&unique=prints", "collector_number": "13a", "digital": false, "rarity": "common", "flavor_text": "\"The meek shall fight as one, and they shall overcome even the greatest of foes.\"\n\u2014Halvor Arensson, Kjeldoran Priest", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Randy Asplund-Faith", "artist_ids": ["d2da8270-bbdb-4c49-b84d-bf5a380e8a78"], "illustration_id": "8813a332-b4c1-4bf8-acd0-aaff0d8b31ee", "border_color": "black", "frame": "1993", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 12968, "penny_rank": 5165, "prices": {"usd": "0.11", "usd_foil": null, "usd_etched": null, "eur": "0.20", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=3209", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Reprisal&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Reprisal&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Reprisal"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/4220?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Reprisal&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Reprisal&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "839df85a-1aca-4d4b-b327-2778caa6d289", "oracle_id": "fae90808-bafa-44d8-972a-17ded87576ee", "multiverse_ids": [3210], "tcgplayer_id": 81842, "cardmarket_id": 7997, "name": "Reprisal", "lang": "en", "released_at": "1996-06-10", "uri": "https://api.scryfall.com/cards/839df85a-1aca-4d4b-b327-2778caa6d289", "scryfall_uri": "https://scryfall.com/card/all/13b/reprisal?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/8/3/839df85a-1aca-4d4b-b327-2778caa6d289.jpg?1562769214", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/3/839df85a-1aca-4d4b-b327-2778caa6d289.jpg?1562769214", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/8/3/839df85a-1aca-4d4b-b327-2778caa6d289.jpg?1562769214", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/8/3/839df85a-1aca-4d4b-b327-2778caa6d289.png?1562769214", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/3/839df85a-1aca-4d4b-b327-2778caa6d289.jpg?1562769214", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/8/3/839df85a-1aca-4d4b-b327-2778caa6d289.jpg?1562769214"}, "mana_cost": "{1}{W}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Destroy target creature with power 4 or greater. It can't be regenerated.", "colors": ["W"], "color_identity": ["W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "64987b06-4a5c-443d-b560-ff5691744582", "set": "all", "set_name": "Alliances", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/64987b06-4a5c-443d-b560-ff5691744582", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aall&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/all?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/839df85a-1aca-4d4b-b327-2778caa6d289/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Afae90808-bafa-44d8-972a-17ded87576ee&unique=prints", "collector_number": "13b", "digital": false, "rarity": "common", "flavor_text": "\"Kjeldor's borders are secure, and its citizens are prepared to take up arms in defense of their families.\"\n\u2014King Darien of Kjeldor", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Randy Asplund-Faith", "artist_ids": ["d2da8270-bbdb-4c49-b84d-bf5a380e8a78"], "illustration_id": "53c2c7fa-e5ae-4989-b269-edabd8cbff01", "border_color": "black", "frame": "1993", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 12968, "penny_rank": 5165, "prices": {"usd": "0.12", "usd_foil": null, "usd_etched": null, "eur": "0.05", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=3210", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Reprisal&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Reprisal&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Reprisal"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/81842?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Reprisal&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Reprisal&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "95a53144-2ef3-47d9-a176-73d620202df6", "oracle_id": "722f2965-a1ec-4b97-a4bd-b99364f58b1e", "multiverse_ids": [391906], "mtgo_id": 55350, "mtgo_foil_id": 55351, "tcgplayer_id": 95431, "cardmarket_id": 271708, "name": "Return to the Earth", "lang": "en", "released_at": "2015-01-23", "uri": "https://api.scryfall.com/cards/95a53144-2ef3-47d9-a176-73d620202df6", "scryfall_uri": "https://scryfall.com/card/frf/135/return-to-the-earth?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/9/5/95a53144-2ef3-47d9-a176-73d620202df6.jpg?1562827827", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/5/95a53144-2ef3-47d9-a176-73d620202df6.jpg?1562827827", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/9/5/95a53144-2ef3-47d9-a176-73d620202df6.jpg?1562827827", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/9/5/95a53144-2ef3-47d9-a176-73d620202df6.png?1562827827", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/5/95a53144-2ef3-47d9-a176-73d620202df6.jpg?1562827827", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/9/5/95a53144-2ef3-47d9-a176-73d620202df6.jpg?1562827827"}, "mana_cost": "{3}{G}", "cmc": 4.0, "type_line": "Instant", "oracle_text": "Destroy target artifact, enchantment, or creature with flying.", "colors": ["G"], "color_identity": ["G"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "7bb5cb2b-081a-4c8c-b7e1-494046e6baa1", "set": "frf", "set_name": "Fate Reforged", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/7bb5cb2b-081a-4c8c-b7e1-494046e6baa1", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Afrf&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/frf?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/95a53144-2ef3-47d9-a176-73d620202df6/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A722f2965-a1ec-4b97-a4bd-b99364f58b1e&unique=prints", "collector_number": "135", "digital": false, "rarity": "common", "flavor_text": "\"Dragons are feared for their breath and their bite, but it is their wings that make them unconquerable. Bring them to earth, and they die like any other beast.\"\n\u2014Kassur, Sultai hunter", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Mark Winters", "artist_ids": ["3d8a379d-f4e8-440d-99d5-5ec107757348"], "illustration_id": "4febe9d3-7bb9-4b46-a5dd-0086c9a0edc4", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 12425, "prices": {"usd": "0.02", "usd_foil": "0.10", "usd_etched": null, "eur": "0.05", "eur_foil": "0.05", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=391906", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Return+to+the+Earth&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Return+to+the+Earth&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Return+to+the+Earth"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/95431?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Return+to+the+Earth&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/55350?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "c021868f-9ab8-4a52-b12e-3cc35c9d67f0", "oracle_id": "9d136448-7331-4a61-b2ad-cfeb23dfa464", "multiverse_ids": [414493], "mtgo_id": 61474, "mtgo_foil_id": 61475, "tcgplayer_id": 120275, "cardmarket_id": 291011, "name": "Ride Down", "lang": "en", "released_at": "2016-07-22", "uri": "https://api.scryfall.com/cards/c021868f-9ab8-4a52-b12e-3cc35c9d67f0", "scryfall_uri": "https://scryfall.com/card/emn/188/ride-down?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/c/0/c021868f-9ab8-4a52-b12e-3cc35c9d67f0.jpg?1576385014", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/0/c021868f-9ab8-4a52-b12e-3cc35c9d67f0.jpg?1576385014", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/c/0/c021868f-9ab8-4a52-b12e-3cc35c9d67f0.jpg?1576385014", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/c/0/c021868f-9ab8-4a52-b12e-3cc35c9d67f0.png?1576385014", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/0/c021868f-9ab8-4a52-b12e-3cc35c9d67f0.jpg?1576385014", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/c/0/c021868f-9ab8-4a52-b12e-3cc35c9d67f0.jpg?1576385014"}, "mana_cost": "{R}{W}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Destroy target blocking creature. Creatures that were blocked by that creature this combat gain trample until end of turn.", "colors": ["R", "W"], "color_identity": ["R", "W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "5f0e4093-334f-4439-bbb5-a0affafd0ffc", "set": "emn", "set_name": "Eldritch Moon", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/5f0e4093-334f-4439-bbb5-a0affafd0ffc", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aemn&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/emn?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/c021868f-9ab8-4a52-b12e-3cc35c9d67f0/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A9d136448-7331-4a61-b2ad-cfeb23dfa464&unique=prints", "collector_number": "188", "digital": false, "rarity": "uncommon", "flavor_text": "The Order of Saint Traft cleared the roads of cultists and horrors, opening the way for the villagers to flee Thraben.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "David Gaillet", "artist_ids": ["3496c5b4-57bf-4e5e-8bac-a1e05a911a2d"], "illustration_id": "daf11ce1-a72e-4be7-86c9-5b99a92210b4", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 7676, "penny_rank": 6173, "prices": {"usd": "0.10", "usd_foil": "0.29", "usd_etched": null, "eur": "0.02", "eur_foil": "0.19", "tix": "0.04"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=414493", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Ride+Down&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Ride+Down&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Ride+Down"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/120275?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Ride+Down&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/61474?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "3bc9a434-9617-4a20-88f0-355b20f2c538", "oracle_id": "9d136448-7331-4a61-b2ad-cfeb23dfa464", "multiverse_ids": [386636], "mtgo_id": 54424, "mtgo_foil_id": 54425, "tcgplayer_id": 93294, "cardmarket_id": 269539, "name": "Ride Down", "lang": "en", "released_at": "2014-09-26", "uri": "https://api.scryfall.com/cards/3bc9a434-9617-4a20-88f0-355b20f2c538", "scryfall_uri": "https://scryfall.com/card/ktk/194/ride-down?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/3/b/3bc9a434-9617-4a20-88f0-355b20f2c538.jpg?1562785134", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/b/3bc9a434-9617-4a20-88f0-355b20f2c538.jpg?1562785134", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/3/b/3bc9a434-9617-4a20-88f0-355b20f2c538.jpg?1562785134", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/3/b/3bc9a434-9617-4a20-88f0-355b20f2c538.png?1562785134", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/b/3bc9a434-9617-4a20-88f0-355b20f2c538.jpg?1562785134", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/3/b/3bc9a434-9617-4a20-88f0-355b20f2c538.jpg?1562785134"}, "mana_cost": "{R}{W}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Destroy target blocking creature. Creatures that were blocked by that creature this combat gain trample until end of turn.", "colors": ["R", "W"], "color_identity": ["R", "W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "6c7a715c-ded9-449e-89b0-c665773e9c3c", "set": "ktk", "set_name": "Khans of Tarkir", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/6c7a715c-ded9-449e-89b0-c665773e9c3c", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aktk&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ktk?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/3bc9a434-9617-4a20-88f0-355b20f2c538/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A9d136448-7331-4a61-b2ad-cfeb23dfa464&unique=prints", "collector_number": "194", "digital": false, "rarity": "uncommon", "flavor_text": "\"I will wash you from my hooves!\"\n\u2014Mardu taunt", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Daarken", "artist_ids": ["e607a0d4-fc12-4c01-9e3f-501f5269b9cb"], "illustration_id": "f1190962-6e57-4fe4-b843-1bc0420bee0e", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 7676, "penny_rank": 6173, "prices": {"usd": "0.08", "usd_foil": "0.29", "usd_etched": null, "eur": "0.05", "eur_foil": "0.15", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=386636", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Ride+Down&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Ride+Down&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Ride+Down"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/93294?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Ride+Down&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/54424?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "005b9fec-66de-4079-88e0-c7de7e22d18e", "oracle_id": "f009ef70-d718-45cf-bb22-e560484bbfe5", "multiverse_ids": [386637], "mtgo_id": 54008, "mtgo_foil_id": 54009, "tcgplayer_id": 93296, "cardmarket_id": 269479, "name": "Rite of the Serpent", "lang": "en", "released_at": "2014-09-26", "uri": "https://api.scryfall.com/cards/005b9fec-66de-4079-88e0-c7de7e22d18e", "scryfall_uri": "https://scryfall.com/card/ktk/86/rite-of-the-serpent?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/0/0/005b9fec-66de-4079-88e0-c7de7e22d18e.jpg?1562781741", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/0/005b9fec-66de-4079-88e0-c7de7e22d18e.jpg?1562781741", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/0/0/005b9fec-66de-4079-88e0-c7de7e22d18e.jpg?1562781741", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/0/0/005b9fec-66de-4079-88e0-c7de7e22d18e.png?1562781741", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/0/005b9fec-66de-4079-88e0-c7de7e22d18e.jpg?1562781741", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/0/0/005b9fec-66de-4079-88e0-c7de7e22d18e.jpg?1562781741"}, "mana_cost": "{4}{B}{B}", "cmc": 6.0, "type_line": "Sorcery", "oracle_text": "Destroy target creature. If that creature had a +1/+1 counter on it, create a 1/1 green Snake creature token.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "all_parts": [{"object": "related_card", "id": "005b9fec-66de-4079-88e0-c7de7e22d18e", "component": "combo_piece", "name": "Rite of the Serpent", "type_line": "Sorcery", "uri": "https://api.scryfall.com/cards/005b9fec-66de-4079-88e0-c7de7e22d18e"}, {"object": "related_card", "id": "032e9f9d-b1e5-4724-9b80-e51500d12d5b", "component": "token", "name": "Snake", "type_line": "Token Creature \u2014 Snake", "uri": "https://api.scryfall.com/cards/032e9f9d-b1e5-4724-9b80-e51500d12d5b"}], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "6c7a715c-ded9-449e-89b0-c665773e9c3c", "set": "ktk", "set_name": "Khans of Tarkir", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/6c7a715c-ded9-449e-89b0-c665773e9c3c", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aktk&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ktk?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/005b9fec-66de-4079-88e0-c7de7e22d18e/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Af009ef70-d718-45cf-bb22-e560484bbfe5&unique=prints", "collector_number": "86", "digital": false, "rarity": "common", "flavor_text": "\"From your death, new life. From your loss, our profit.\"\n\u2014Kirada, Qarsi overseer", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Seb McKinnon", "artist_ids": ["ad4caca0-8d89-44ce-a1a6-d5ca905bd6fb"], "illustration_id": "e2c8c19c-15c8-41a2-820a-1cc19af8aff6", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 19968, "prices": {"usd": "0.06", "usd_foil": "0.25", "usd_etched": null, "eur": "0.10", "eur_foil": "0.85", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=386637", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Rite+of+the+Serpent&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Rite+of+the+Serpent&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Rite+of+the+Serpent"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/93296?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Rite+of+the+Serpent&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/54008?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "709ab9cf-eed8-4d73-b10d-c7f6d8750328", "oracle_id": "7b4aa101-3c8a-44b3-9d87-91a4fe4fbae4", "multiverse_ids": [402019], "mtgo_id": 58407, "mtgo_foil_id": 58408, "tcgplayer_id": 104276, "cardmarket_id": 284306, "name": "Ruinous Path", "lang": "en", "released_at": "2015-10-02", "uri": "https://api.scryfall.com/cards/709ab9cf-eed8-4d73-b10d-c7f6d8750328", "scryfall_uri": "https://scryfall.com/card/bfz/123/ruinous-path?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/7/0/709ab9cf-eed8-4d73-b10d-c7f6d8750328.jpg?1562921535", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/0/709ab9cf-eed8-4d73-b10d-c7f6d8750328.jpg?1562921535", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/7/0/709ab9cf-eed8-4d73-b10d-c7f6d8750328.jpg?1562921535", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/7/0/709ab9cf-eed8-4d73-b10d-c7f6d8750328.png?1562921535", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/0/709ab9cf-eed8-4d73-b10d-c7f6d8750328.jpg?1562921535", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/7/0/709ab9cf-eed8-4d73-b10d-c7f6d8750328.jpg?1562921535"}, "mana_cost": "{1}{B}{B}", "cmc": 3.0, "type_line": "Sorcery", "oracle_text": "Destroy target creature or planeswalker.\nAwaken 4\u2014{5}{B}{B} (If you cast this spell for {5}{B}{B}, also put four +1/+1 counters on target land you control and it becomes a 0/0 Elemental creature with haste. It's still a land.)", "colors": ["B"], "color_identity": ["B"], "keywords": ["Awaken"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "91719374-7ac5-4afa-ada8-5da964dcf1d4", "set": "bfz", "set_name": "Battle for Zendikar", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/91719374-7ac5-4afa-ada8-5da964dcf1d4", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Abfz&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/bfz?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/709ab9cf-eed8-4d73-b10d-c7f6d8750328/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A7b4aa101-3c8a-44b3-9d87-91a4fe4fbae4&unique=prints", "collector_number": "123", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Jaime Jones", "artist_ids": ["92f6c2c1-fa57-4b52-99c4-0fd866c13dc9"], "illustration_id": "268214d6-980c-4aaf-880c-dfa505ce7e04", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 7094, "penny_rank": 4453, "prices": {"usd": "0.14", "usd_foil": "0.27", "usd_etched": null, "eur": "0.19", "eur_foil": "0.17", "tix": "0.01"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=402019", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Ruinous+Path&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Ruinous+Path&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Ruinous+Path"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/104276?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Ruinous+Path&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/58407?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "8a41a241-ee56-486a-9b4d-fb355b5f65b2", "oracle_id": "7b4aa101-3c8a-44b3-9d87-91a4fe4fbae4", "multiverse_ids": [], "tcgplayer_id": 104826, "cardmarket_id": 284432, "name": "Ruinous Path", "lang": "en", "released_at": "2015-10-02", "uri": "https://api.scryfall.com/cards/8a41a241-ee56-486a-9b4d-fb355b5f65b2", "scryfall_uri": "https://scryfall.com/card/pbfz/123/ruinous-path?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/8/a/8a41a241-ee56-486a-9b4d-fb355b5f65b2.jpg?1562133050", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/a/8a41a241-ee56-486a-9b4d-fb355b5f65b2.jpg?1562133050", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/8/a/8a41a241-ee56-486a-9b4d-fb355b5f65b2.jpg?1562133050", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/8/a/8a41a241-ee56-486a-9b4d-fb355b5f65b2.png?1562133050", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/a/8a41a241-ee56-486a-9b4d-fb355b5f65b2.jpg?1562133050", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/8/a/8a41a241-ee56-486a-9b4d-fb355b5f65b2.jpg?1562133050"}, "mana_cost": "{1}{B}{B}", "cmc": 3.0, "type_line": "Sorcery", "oracle_text": "Destroy target creature or planeswalker.\nAwaken 4\u2014{5}{B}{B} (If you cast this spell for {5}{B}{B}, also put four +1/+1 counters on target land you control and it becomes a 0/0 Elemental creature with haste. It's still a land.)", "colors": ["B"], "color_identity": ["B"], "keywords": ["Awaken"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": true, "nonfoil": false, "finishes": ["foil"], "oversized": false, "promo": true, "reprint": true, "variation": false, "set_id": "1b5e95bd-4947-4991-8d7d-b770d6b2aaff", "set": "pbfz", "set_name": "Battle for Zendikar Promos", "set_type": "promo", "set_uri": "https://api.scryfall.com/sets/1b5e95bd-4947-4991-8d7d-b770d6b2aaff", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Apbfz&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/pbfz?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/8a41a241-ee56-486a-9b4d-fb355b5f65b2/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A7b4aa101-3c8a-44b3-9d87-91a4fe4fbae4&unique=prints", "collector_number": "123", "digital": false, "rarity": "rare", "watermark": "colorpie", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Aaron Miller", "artist_ids": ["fc021f3d-773a-4706-bbe7-f602324f511f"], "illustration_id": "b85f0398-1126-41ec-b9c5-bb6bb0a7d6c2", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "promo_types": ["setpromo", "buyabox"], "edhrec_rank": 7094, "penny_rank": 4453, "prices": {"usd": null, "usd_foil": "0.21", "usd_etched": null, "eur": null, "eur_foil": "0.09", "tix": null}, "related_uris": {"tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Ruinous+Path&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Ruinous+Path&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Ruinous+Path"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/104826?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Ruinous+Path&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Ruinous+Path&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "d3104cad-e684-4bd7-b26b-5aa862f7a2b3", "oracle_id": "d4c4c7d7-744a-4548-adad-a5fc4fb3f586", "multiverse_ids": [457282], "mtgo_id": 71276, "arena_id": 69266, "tcgplayer_id": 183428, "cardmarket_id": 368607, "name": "Sagittars' Volley", "lang": "en", "released_at": "2019-01-25", "uri": "https://api.scryfall.com/cards/d3104cad-e684-4bd7-b26b-5aa862f7a2b3", "scryfall_uri": "https://scryfall.com/card/rna/138/sagittars-volley?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/d/3/d3104cad-e684-4bd7-b26b-5aa862f7a2b3.jpg?1584831248", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/3/d3104cad-e684-4bd7-b26b-5aa862f7a2b3.jpg?1584831248", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/d/3/d3104cad-e684-4bd7-b26b-5aa862f7a2b3.jpg?1584831248", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/d/3/d3104cad-e684-4bd7-b26b-5aa862f7a2b3.png?1584831248", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/3/d3104cad-e684-4bd7-b26b-5aa862f7a2b3.jpg?1584831248", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/d/3/d3104cad-e684-4bd7-b26b-5aa862f7a2b3.jpg?1584831248"}, "mana_cost": "{2}{G}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Destroy target creature with flying. Sagittars' Volley deals 1 damage to each creature with flying your opponents control.", "colors": ["G"], "color_identity": ["G"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "97a7fd84-8d89-45a3-b48b-c951f6a3f9f1", "set": "rna", "set_name": "Ravnica Allegiance", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/97a7fd84-8d89-45a3-b48b-c951f6a3f9f1", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Arna&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/rna?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/d3104cad-e684-4bd7-b26b-5aa862f7a2b3/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ad4c4c7d7-744a-4548-adad-a5fc4fb3f586&unique=prints", "collector_number": "138", "digital": false, "rarity": "common", "flavor_text": "\"My bowstring hums in tune with the song of the Worldsoul.\"\n\u2014Alcarus, Selesnya sagittar", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Dan Scott", "artist_ids": ["f852fa13-137e-40f2-bbc1-0f01df09c0e0"], "illustration_id": "e789d71b-70b2-47f3-b980-d094d805abdc", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 18608, "penny_rank": 10481, "prices": {"usd": "0.02", "usd_foil": "0.14", "usd_etched": null, "eur": "0.02", "eur_foil": "0.99", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=457282", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Sagittars%27+Volley&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Sagittars%27+Volley&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Sagittars%27+Volley"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/183428?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Sagittars%27+Volley&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/71276?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "edd1833d-64b0-4c9b-8f6b-1cf15c29d473", "oracle_id": "a6a9776b-87f4-4a08-8074-d49fbbe417ae", "multiverse_ids": [122435], "mtgo_id": 26289, "mtgo_foil_id": 26290, "tcgplayer_id": 14798, "cardmarket_id": 14194, "name": "Saltblast", "lang": "en", "released_at": "2007-02-02", "uri": "https://api.scryfall.com/cards/edd1833d-64b0-4c9b-8f6b-1cf15c29d473", "scryfall_uri": "https://scryfall.com/card/plc/15/saltblast?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/e/d/edd1833d-64b0-4c9b-8f6b-1cf15c29d473.jpg?1562585578", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/d/edd1833d-64b0-4c9b-8f6b-1cf15c29d473.jpg?1562585578", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/e/d/edd1833d-64b0-4c9b-8f6b-1cf15c29d473.jpg?1562585578", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/e/d/edd1833d-64b0-4c9b-8f6b-1cf15c29d473.png?1562585578", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/d/edd1833d-64b0-4c9b-8f6b-1cf15c29d473.jpg?1562585578", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/e/d/edd1833d-64b0-4c9b-8f6b-1cf15c29d473.jpg?1562585578"}, "mana_cost": "{3}{W}{W}", "cmc": 5.0, "type_line": "Sorcery", "oracle_text": "Destroy target nonwhite permanent.", "colors": ["W"], "color_identity": ["W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "5a1b571c-73e9-4c14-b9d4-a62507d85789", "set": "plc", "set_name": "Planar Chaos", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/5a1b571c-73e9-4c14-b9d4-a62507d85789", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aplc&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/plc?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/edd1833d-64b0-4c9b-8f6b-1cf15c29d473/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aa6a9776b-87f4-4a08-8074-d49fbbe417ae&unique=prints", "collector_number": "15", "digital": false, "rarity": "uncommon", "flavor_text": "Dominaria erodes with each passing gust.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Paolo Parente", "artist_ids": ["d48dd097-720d-476a-8722-6a02854ae28b"], "illustration_id": "b7d920be-d263-4bdd-bce3-812a2406defb", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 17290, "penny_rank": 5746, "prices": {"usd": "0.11", "usd_foil": "0.25", "usd_etched": null, "eur": "0.02", "eur_foil": "0.25", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=122435", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Saltblast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Saltblast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Saltblast"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/14798?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Saltblast&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/26289?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "05e6a7bc-a35a-4e68-99a0-be264553b5de", "oracle_id": "eea18c55-8695-4ba1-9b38-3e7638692f5f", "multiverse_ids": [], "tcgplayer_id": 257009, "cardmarket_id": 586712, "name": "Saw in Half", "lang": "en", "released_at": "2022-10-07", "uri": "https://api.scryfall.com/cards/05e6a7bc-a35a-4e68-99a0-be264553b5de", "scryfall_uri": "https://scryfall.com/card/unf/88/saw-in-half?utm_source=api", "layout": "normal", "highres_image": false, "image_status": "lowres", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/0/5/05e6a7bc-a35a-4e68-99a0-be264553b5de.jpg?1638258467", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/5/05e6a7bc-a35a-4e68-99a0-be264553b5de.jpg?1638258467", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/0/5/05e6a7bc-a35a-4e68-99a0-be264553b5de.jpg?1638258467", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/0/5/05e6a7bc-a35a-4e68-99a0-be264553b5de.png?1638258467", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/5/05e6a7bc-a35a-4e68-99a0-be264553b5de.jpg?1638258467", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/0/5/05e6a7bc-a35a-4e68-99a0-be264553b5de.jpg?1638258467"}, "mana_cost": "{2}{B}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Destroy target creature. If that creature dies this way, its controller creates two tokens that are copies of that creature, except their base power is half that creature's power and their base toughness is half that creature's toughness. Round up each time.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "not_legal", "pauper": "not_legal", "vintage": "not_legal", "penny": "not_legal", "commander": "not_legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "not_legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "b314f553-8f07-4ba9-96c8-16be7784eff3", "set": "unf", "set_name": "Unfinity", "set_type": "funny", "set_uri": "https://api.scryfall.com/sets/b314f553-8f07-4ba9-96c8-16be7784eff3", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aunf&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/unf?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/05e6a7bc-a35a-4e68-99a0-be264553b5de/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aeea18c55-8695-4ba1-9b38-3e7638692f5f&unique=prints", "collector_number": "88", "digital": false, "rarity": "rare", "flavor_text": "The audience always loves it, but volunteers are divided.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Sebastian Giacobino", "artist_ids": ["73a56d22-1628-49f3-8d4f-6cc3068bec02"], "illustration_id": "bdf00fd6-3033-44ba-b1bc-c05013954419", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "preview": {"source": "Wizards of the Coast", "source_uri": "https://magic.wizards.com/en/articles/archive/making-magic/unfinity-and-beyond-2021-11-29", "previewed_at": "2021-11-29"}, "prices": {"usd": null, "usd_foil": null, "usd_etched": null, "eur": "5.80", "eur_foil": null, "tix": null}, "related_uris": {"tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Saw+in+Half&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Saw+in+Half&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Saw+in+Half"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/257009?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Saw+in+Half&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Saw+in+Half&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "05c4338d-e5c0-46b4-ab16-1f9aa97b4026", "oracle_id": "6f9bce77-f7f0-453b-86cd-1e6bd71980a3", "multiverse_ids": [262828], "mtgo_id": 43381, "mtgo_foil_id": 43382, "tcgplayer_id": 57834, "cardmarket_id": 252602, "name": "Scorch the Fields", "lang": "en", "released_at": "2012-02-03", "uri": "https://api.scryfall.com/cards/05c4338d-e5c0-46b4-ab16-1f9aa97b4026", "scryfall_uri": "https://scryfall.com/card/dka/103/scorch-the-fields?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/0/5/05c4338d-e5c0-46b4-ab16-1f9aa97b4026.jpg?1562896337", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/5/05c4338d-e5c0-46b4-ab16-1f9aa97b4026.jpg?1562896337", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/0/5/05c4338d-e5c0-46b4-ab16-1f9aa97b4026.jpg?1562896337", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/0/5/05c4338d-e5c0-46b4-ab16-1f9aa97b4026.png?1562896337", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/5/05c4338d-e5c0-46b4-ab16-1f9aa97b4026.jpg?1562896337", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/0/5/05c4338d-e5c0-46b4-ab16-1f9aa97b4026.jpg?1562896337"}, "mana_cost": "{4}{R}", "cmc": 5.0, "type_line": "Sorcery", "oracle_text": "Destroy target land. Scorch the Fields deals 1 damage to each Human creature.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "8052750a-aaf2-46fc-b46d-633f14124017", "set": "dka", "set_name": "Dark Ascension", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/8052750a-aaf2-46fc-b46d-633f14124017", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Adka&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/dka?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/05c4338d-e5c0-46b4-ab16-1f9aa97b4026/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A6f9bce77-f7f0-453b-86cd-1e6bd71980a3&unique=prints", "collector_number": "103", "digital": false, "rarity": "common", "flavor_text": "\"Your fields will turn as black as a ghoul's tongue and fire shall be your only harvest.\"\n\u2014Minaldra, the Vizag Atum", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Jaime Jones", "artist_ids": ["92f6c2c1-fa57-4b52-99c4-0fd866c13dc9"], "illustration_id": "03cbf046-fb37-487b-9f3f-d833dea540fa", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 21749, "prices": {"usd": "0.03", "usd_foil": "0.21", "usd_etched": null, "eur": "0.01", "eur_foil": "0.07", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=262828", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Scorch+the+Fields&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Scorch+the+Fields&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Scorch+the+Fields"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/57834?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Scorch+the+Fields&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/43381?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "76dadfd8-8492-4c55-827c-cd4e6a40ae97", "oracle_id": "2bad07d2-6284-4f87-9e2e-2e9ec5d2dd57", "multiverse_ids": [407543], "mtgo_id": 59279, "mtgo_foil_id": 59280, "tcgplayer_id": 111069, "cardmarket_id": 287336, "name": "Searing Light", "lang": "en", "released_at": "2016-01-22", "uri": "https://api.scryfall.com/cards/76dadfd8-8492-4c55-827c-cd4e6a40ae97", "scryfall_uri": "https://scryfall.com/card/ogw/33/searing-light?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/7/6/76dadfd8-8492-4c55-827c-cd4e6a40ae97.jpg?1562918808", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/6/76dadfd8-8492-4c55-827c-cd4e6a40ae97.jpg?1562918808", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/7/6/76dadfd8-8492-4c55-827c-cd4e6a40ae97.jpg?1562918808", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/7/6/76dadfd8-8492-4c55-827c-cd4e6a40ae97.png?1562918808", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/6/76dadfd8-8492-4c55-827c-cd4e6a40ae97.jpg?1562918808", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/7/6/76dadfd8-8492-4c55-827c-cd4e6a40ae97.jpg?1562918808"}, "mana_cost": "{W}", "cmc": 1.0, "type_line": "Instant", "oracle_text": "Destroy target attacking or blocking creature with power 2 or less.", "colors": ["W"], "color_identity": ["W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "cd51d245-8f95-45b0-ab5f-e2b3a3eb5dfe", "set": "ogw", "set_name": "Oath of the Gatewatch", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/cd51d245-8f95-45b0-ab5f-e2b3a3eb5dfe", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aogw&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ogw?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/76dadfd8-8492-4c55-827c-cd4e6a40ae97/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A2bad07d2-6284-4f87-9e2e-2e9ec5d2dd57&unique=prints", "collector_number": "33", "digital": false, "rarity": "common", "flavor_text": "\"Light can lay bare our fears. It can also make them go away.\"\n\u2014Nazra of the Stone Havens", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Marco Nelor", "artist_ids": ["c0f95ec3-c7ca-47d6-be5c-b37dfce37be5"], "illustration_id": "55e0427e-8ce9-4cce-a2df-ba2e6a0769e5", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 21424, "penny_rank": 6507, "prices": {"usd": "0.01", "usd_foil": "0.15", "usd_etched": null, "eur": "0.02", "eur_foil": "0.10", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=407543", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Searing+Light&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Searing+Light&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Searing+Light"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/111069?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Searing+Light&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/59279?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "29bf245f-e8e0-4d32-8cd7-06d832609910", "oracle_id": "91557f08-15b1-4e3e-90fd-cec35ed0868a", "multiverse_ids": [96888], "mtgo_id": 23697, "mtgo_foil_id": 23698, "tcgplayer_id": 13768, "cardmarket_id": 13250, "name": "Seize the Soul", "lang": "en", "released_at": "2006-02-03", "uri": "https://api.scryfall.com/cards/29bf245f-e8e0-4d32-8cd7-06d832609910", "scryfall_uri": "https://scryfall.com/card/gpt/61/seize-the-soul?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/2/9/29bf245f-e8e0-4d32-8cd7-06d832609910.jpg?1593272276", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/9/29bf245f-e8e0-4d32-8cd7-06d832609910.jpg?1593272276", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/2/9/29bf245f-e8e0-4d32-8cd7-06d832609910.jpg?1593272276", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/2/9/29bf245f-e8e0-4d32-8cd7-06d832609910.png?1593272276", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/9/29bf245f-e8e0-4d32-8cd7-06d832609910.jpg?1593272276", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/2/9/29bf245f-e8e0-4d32-8cd7-06d832609910.jpg?1593272276"}, "mana_cost": "{2}{B}{B}", "cmc": 4.0, "type_line": "Instant", "oracle_text": "Destroy target nonwhite, nonblack creature. Create a 1/1 white Spirit creature token with flying.\nHaunt (When this spell card is put into a graveyard after resolving, exile it haunting target creature.)\nWhen the creature Seize the Soul haunts dies, destroy target nonwhite, nonblack creature. Create a 1/1 white Spirit creature token with flying.", "colors": ["B"], "color_identity": ["B"], "keywords": ["Haunt"], "all_parts": [{"object": "related_card", "id": "29bf245f-e8e0-4d32-8cd7-06d832609910", "component": "combo_piece", "name": "Seize the Soul", "type_line": "Instant", "uri": "https://api.scryfall.com/cards/29bf245f-e8e0-4d32-8cd7-06d832609910"}, {"object": "related_card", "id": "58be6a05-8021-4fca-8e9f-0ebb4769c635", "component": "token", "name": "Spirit", "type_line": "Token Creature \u2014 Spirit", "uri": "https://api.scryfall.com/cards/58be6a05-8021-4fca-8e9f-0ebb4769c635"}], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "594b4d09-8ce1-494d-bdb2-842c124bd087", "set": "gpt", "set_name": "Guildpact", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/594b4d09-8ce1-494d-bdb2-842c124bd087", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Agpt&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/gpt?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/29bf245f-e8e0-4d32-8cd7-06d832609910/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A91557f08-15b1-4e3e-90fd-cec35ed0868a&unique=prints", "collector_number": "61", "digital": false, "rarity": "rare", "watermark": "orzhov", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Aleksi Briclot", "artist_ids": ["5e470014-31cb-41b0-b054-e23374484449"], "illustration_id": "f5eb0e2c-e338-402b-87f6-0520713725fe", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 16066, "penny_rank": 3069, "prices": {"usd": "0.24", "usd_foil": "0.83", "usd_etched": null, "eur": "0.10", "eur_foil": "0.60", "tix": "0.01"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=96888", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Seize+the+Soul&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Seize+the+Soul&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Seize+the+Soul"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/13768?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Seize+the+Soul&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/23697?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "bce654d6-fcf1-40a8-8bdb-5c37e561f7dc", "oracle_id": "25f0527c-1340-4218-970f-9e4f84ef96e8", "multiverse_ids": [452835], "mtgo_id": 69543, "arena_id": 68546, "tcgplayer_id": 176936, "cardmarket_id": 364273, "name": "Severed Strands", "lang": "en", "released_at": "2018-10-05", "uri": "https://api.scryfall.com/cards/bce654d6-fcf1-40a8-8bdb-5c37e561f7dc", "scryfall_uri": "https://scryfall.com/card/grn/85/severed-strands?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/b/c/bce654d6-fcf1-40a8-8bdb-5c37e561f7dc.jpg?1572893052", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/c/bce654d6-fcf1-40a8-8bdb-5c37e561f7dc.jpg?1572893052", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/b/c/bce654d6-fcf1-40a8-8bdb-5c37e561f7dc.jpg?1572893052", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/b/c/bce654d6-fcf1-40a8-8bdb-5c37e561f7dc.png?1572893052", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/c/bce654d6-fcf1-40a8-8bdb-5c37e561f7dc.jpg?1572893052", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/b/c/bce654d6-fcf1-40a8-8bdb-5c37e561f7dc.jpg?1572893052"}, "mana_cost": "{1}{B}", "cmc": 2.0, "type_line": "Sorcery", "oracle_text": "As an additional cost to cast this spell, sacrifice a creature.\nYou gain life equal to the sacrificed creature's toughness. Destroy target creature an opponent controls.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "597c6d4a-8212-4903-a6af-12c4ae9e13f0", "set": "grn", "set_name": "Guilds of Ravnica", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/597c6d4a-8212-4903-a6af-12c4ae9e13f0", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Agrn&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/grn?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/bce654d6-fcf1-40a8-8bdb-5c37e561f7dc/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A25f0527c-1340-4218-970f-9e4f84ef96e8&unique=prints", "collector_number": "85", "digital": false, "rarity": "common", "flavor_text": "\"I've seen Ravnica's fate. Believe me, I'm doing you a favor.\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Zack Stella", "artist_ids": ["17bc7f55-958b-43f4-bb40-09746d05b3f9"], "illustration_id": "73a2199b-b449-40bd-a64c-0643a28698d6", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 9191, "penny_rank": 8118, "prices": {"usd": "0.04", "usd_foil": "0.20", "usd_etched": null, "eur": "0.05", "eur_foil": "0.14", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=452835", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Severed+Strands&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Severed+Strands&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Severed+Strands"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/176936?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Severed+Strands&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/69543?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "df1cb775-3a45-4f2c-9c45-febda6434c59", "oracle_id": "577d027a-96c3-46fe-880b-f8b5dd3f3a3d", "multiverse_ids": [45317], "mtgo_id": 19571, "mtgo_foil_id": 19572, "tcgplayer_id": 11122, "cardmarket_id": 798, "name": "Sever Soul", "lang": "en", "released_at": "2003-07-28", "uri": "https://api.scryfall.com/cards/df1cb775-3a45-4f2c-9c45-febda6434c59", "scryfall_uri": "https://scryfall.com/card/8ed/162/sever-soul?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/d/f/df1cb775-3a45-4f2c-9c45-febda6434c59.jpg?1562939859", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/f/df1cb775-3a45-4f2c-9c45-febda6434c59.jpg?1562939859", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/d/f/df1cb775-3a45-4f2c-9c45-febda6434c59.jpg?1562939859", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/d/f/df1cb775-3a45-4f2c-9c45-febda6434c59.png?1562939859", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/f/df1cb775-3a45-4f2c-9c45-febda6434c59.jpg?1562939859", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/d/f/df1cb775-3a45-4f2c-9c45-febda6434c59.jpg?1562939859"}, "mana_cost": "{3}{B}{B}", "cmc": 5.0, "type_line": "Sorcery", "oracle_text": "Destroy target nonblack creature. It can't be regenerated. You gain life equal to its toughness.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "cae8d29d-5979-4d8f-884d-7f3183bcc886", "set": "8ed", "set_name": "Eighth Edition", "set_type": "core", "set_uri": "https://api.scryfall.com/sets/cae8d29d-5979-4d8f-884d-7f3183bcc886", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3A8ed&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/8ed?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/df1cb775-3a45-4f2c-9c45-febda6434c59/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A577d027a-96c3-46fe-880b-f8b5dd3f3a3d&unique=prints", "collector_number": "162", "digital": false, "rarity": "uncommon", "flavor_text": "\"The mortal world is a grove of sweet fruit, and I am ready to harvest it.\"\n\u2014Fallen angel", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Glen Angus", "artist_ids": ["7be3b9e4-de9b-4a3d-884e-e67b9681d409"], "illustration_id": "68acac32-f8aa-45dc-9efa-c68cbd36e3bc", "border_color": "white", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 19468, "penny_rank": 7087, "prices": {"usd": "0.10", "usd_foil": "0.96", "usd_etched": null, "eur": "0.03", "eur_foil": "0.25", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=45317", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Sever+Soul&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Sever+Soul&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Sever+Soul"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/11122?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Sever+Soul&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/19571?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "c2d84fec-18f1-4231-a293-0dc1ff868a40", "oracle_id": "577d027a-96c3-46fe-880b-f8b5dd3f3a3d", "multiverse_ids": [19591], "mtgo_id": 13191, "mtgo_foil_id": 13192, "tcgplayer_id": 6692, "cardmarket_id": 11532, "name": "Sever Soul", "lang": "en", "released_at": "1999-10-04", "uri": "https://api.scryfall.com/cards/c2d84fec-18f1-4231-a293-0dc1ff868a40", "scryfall_uri": "https://scryfall.com/card/mmq/159/sever-soul?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/c/2/c2d84fec-18f1-4231-a293-0dc1ff868a40.jpg?1562383023", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/2/c2d84fec-18f1-4231-a293-0dc1ff868a40.jpg?1562383023", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/c/2/c2d84fec-18f1-4231-a293-0dc1ff868a40.jpg?1562383023", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/c/2/c2d84fec-18f1-4231-a293-0dc1ff868a40.png?1562383023", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/2/c2d84fec-18f1-4231-a293-0dc1ff868a40.jpg?1562383023", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/c/2/c2d84fec-18f1-4231-a293-0dc1ff868a40.jpg?1562383023"}, "mana_cost": "{3}{B}{B}", "cmc": 5.0, "type_line": "Sorcery", "oracle_text": "Destroy target nonblack creature. It can't be regenerated. You gain life equal to its toughness.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "385e11a4-492b-4d07-b4a6-a1409ef829b8", "set": "mmq", "set_name": "Mercadian Masques", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/385e11a4-492b-4d07-b4a6-a1409ef829b8", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ammq&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/mmq?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/c2d84fec-18f1-4231-a293-0dc1ff868a40/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A577d027a-96c3-46fe-880b-f8b5dd3f3a3d&unique=prints", "collector_number": "159", "digital": false, "rarity": "common", "flavor_text": "\"With the proper tools, even the Great River can be dammed.\"\n\u2014Ta-Spon, Cho-Arrim executioner", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Jeff Easley", "artist_ids": ["da17055e-693c-461a-b132-67dd88b42ca6"], "illustration_id": "634e8a31-91f8-466a-9cd9-e645fd5affc2", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 19468, "penny_rank": 7087, "prices": {"usd": "0.06", "usd_foil": "0.31", "usd_etched": null, "eur": "0.05", "eur_foil": "0.40", "tix": "0.09"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=19591", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Sever+Soul&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Sever+Soul&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Sever+Soul"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/6692?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Sever+Soul&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/13191?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "ca6e9658-684e-44fd-9c72-c5c3faa9fb1f", "oracle_id": "7c42123d-c8e2-4571-b07d-f782e9ad1f8b", "multiverse_ids": [401651], "tcgplayer_id": 103471, "cardmarket_id": 283987, "name": "Sheer Drop", "lang": "en", "released_at": "2015-08-28", "uri": "https://api.scryfall.com/cards/ca6e9658-684e-44fd-9c72-c5c3faa9fb1f", "scryfall_uri": "https://scryfall.com/card/ddp/9/sheer-drop?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/c/a/ca6e9658-684e-44fd-9c72-c5c3faa9fb1f.jpg?1593095413", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/a/ca6e9658-684e-44fd-9c72-c5c3faa9fb1f.jpg?1593095413", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/c/a/ca6e9658-684e-44fd-9c72-c5c3faa9fb1f.jpg?1593095413", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/c/a/ca6e9658-684e-44fd-9c72-c5c3faa9fb1f.png?1593095413", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/a/ca6e9658-684e-44fd-9c72-c5c3faa9fb1f.jpg?1593095413", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/c/a/ca6e9658-684e-44fd-9c72-c5c3faa9fb1f.jpg?1593095413"}, "mana_cost": "{2}{W}", "cmc": 3.0, "type_line": "Sorcery", "oracle_text": "Destroy target tapped creature.\nAwaken 3\u2014{5}{W} (If you cast this spell for {5}{W}, also put three +1/+1 counters on target land you control and it becomes a 0/0 Elemental creature with haste. It's still a land.)", "colors": ["W"], "color_identity": ["W"], "keywords": ["Awaken"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "0dbc7609-b12c-471a-bfd3-c57bc670c445", "set": "ddp", "set_name": "Duel Decks: Zendikar vs. Eldrazi", "set_type": "duel_deck", "set_uri": "https://api.scryfall.com/sets/0dbc7609-b12c-471a-bfd3-c57bc670c445", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Addp&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ddp?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/ca6e9658-684e-44fd-9c72-c5c3faa9fb1f/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A7c42123d-c8e2-4571-b07d-f782e9ad1f8b&unique=prints", "collector_number": "9", "digital": false, "rarity": "common", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Clint Cearley", "artist_ids": ["03b75350-d5a0-4e3a-b3b4-8d4a5554385b"], "illustration_id": "5c0b1f93-7de8-48ae-b65b-09a3dc17798e", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "edhrec_rank": 15628, "penny_rank": 3533, "prices": {"usd": "0.01", "usd_foil": null, "usd_etched": null, "eur": "0.02", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=401651", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Sheer+Drop&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Sheer+Drop&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Sheer+Drop"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/103471?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Sheer+Drop&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Sheer+Drop&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "0f27b92a-cde9-41bc-9b23-d83b74b167d4", "oracle_id": "8652fa06-33dc-4fe5-90cb-83cbfe5c681b", "multiverse_ids": [409777], "mtgo_id": 60156, "mtgo_foil_id": 60157, "tcgplayer_id": 116458, "cardmarket_id": 289230, "name": "Silverstrike", "lang": "en", "released_at": "2016-04-08", "uri": "https://api.scryfall.com/cards/0f27b92a-cde9-41bc-9b23-d83b74b167d4", "scryfall_uri": "https://scryfall.com/card/soi/37/silverstrike?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/0/f/0f27b92a-cde9-41bc-9b23-d83b74b167d4.jpg?1576383889", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/f/0f27b92a-cde9-41bc-9b23-d83b74b167d4.jpg?1576383889", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/0/f/0f27b92a-cde9-41bc-9b23-d83b74b167d4.jpg?1576383889", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/0/f/0f27b92a-cde9-41bc-9b23-d83b74b167d4.png?1576383889", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/f/0f27b92a-cde9-41bc-9b23-d83b74b167d4.jpg?1576383889", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/0/f/0f27b92a-cde9-41bc-9b23-d83b74b167d4.jpg?1576383889"}, "mana_cost": "{3}{W}", "cmc": 4.0, "type_line": "Instant", "oracle_text": "Destroy target attacking creature. You gain 3 life.", "colors": ["W"], "color_identity": ["W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "5e914d7e-c1e9-446c-a33d-d093c02b2743", "set": "soi", "set_name": "Shadows over Innistrad", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/5e914d7e-c1e9-446c-a33d-d093c02b2743", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Asoi&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/soi?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/0f27b92a-cde9-41bc-9b23-d83b74b167d4/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A8652fa06-33dc-4fe5-90cb-83cbfe5c681b&unique=prints", "collector_number": "37", "digital": false, "rarity": "uncommon", "flavor_text": "\"Shield yourself with faith. Arm yourself with silver.\"\n\u2014Slayer Kastinne", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Lius Lasahido", "artist_ids": ["0a0e9093-ce44-4a69-93a7-09b63e7c330d"], "illustration_id": "891454a2-ce9b-4e25-9a44-004ee0fb2283", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 17692, "penny_rank": 5388, "prices": {"usd": "0.04", "usd_foil": null, "usd_etched": null, "eur": "0.02", "eur_foil": "0.21", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=409777", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Silverstrike&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Silverstrike&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Silverstrike"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/116458?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Silverstrike&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/60156?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "22051427-9b2a-4571-8c9f-ee84d8d0e4d1", "oracle_id": "861096be-dbb3-429e-820f-d82f6ed2aa24", "multiverse_ids": [373598], "mtgo_id": 50526, "mtgo_foil_id": 50527, "tcgplayer_id": 71351, "cardmarket_id": 264240, "name": "Sip of Hemlock", "lang": "en", "released_at": "2013-09-27", "uri": "https://api.scryfall.com/cards/22051427-9b2a-4571-8c9f-ee84d8d0e4d1", "scryfall_uri": "https://scryfall.com/card/ths/106/sip-of-hemlock?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/2/2/22051427-9b2a-4571-8c9f-ee84d8d0e4d1.jpg?1562815635", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/2/22051427-9b2a-4571-8c9f-ee84d8d0e4d1.jpg?1562815635", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/2/2/22051427-9b2a-4571-8c9f-ee84d8d0e4d1.jpg?1562815635", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/2/2/22051427-9b2a-4571-8c9f-ee84d8d0e4d1.png?1562815635", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/2/22051427-9b2a-4571-8c9f-ee84d8d0e4d1.jpg?1562815635", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/2/2/22051427-9b2a-4571-8c9f-ee84d8d0e4d1.jpg?1562815635"}, "mana_cost": "{4}{B}{B}", "cmc": 6.0, "type_line": "Sorcery", "oracle_text": "Destroy target creature. Its controller loses 2 life.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "69093d6f-e25a-41a4-8cf5-688d7f11c0fb", "set": "ths", "set_name": "Theros", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/69093d6f-e25a-41a4-8cf5-688d7f11c0fb", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aths&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ths?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/22051427-9b2a-4571-8c9f-ee84d8d0e4d1/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A861096be-dbb3-429e-820f-d82f6ed2aa24&unique=prints", "collector_number": "106", "digital": false, "rarity": "common", "flavor_text": "Conspirators poisoned the oracle not because her visions were wrong, but because they were right.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Nils Hamm", "artist_ids": ["c540d1fc-1500-457f-93cf-d6069ee66546"], "illustration_id": "9e7e9c9b-cbb2-4b99-b273-2c7d4595ed75", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 20071, "prices": {"usd": "0.09", "usd_foil": "0.13", "usd_etched": null, "eur": "0.02", "eur_foil": "0.13", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=373598", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Sip+of+Hemlock&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Sip+of+Hemlock&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Sip+of+Hemlock"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/71351?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Sip+of+Hemlock&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/50526?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "54dd4948-dc79-4fe5-b4a0-fb257058f9dd", "oracle_id": "f3d4e48e-5f98-44a6-ad5c-a1c068aa01eb", "multiverse_ids": [417602], "mtgo_id": 61627, "mtgo_foil_id": 61628, "tcgplayer_id": 122936, "cardmarket_id": 292733, "name": "Skywhaler's Shot", "lang": "en", "released_at": "2016-09-30", "uri": "https://api.scryfall.com/cards/54dd4948-dc79-4fe5-b4a0-fb257058f9dd", "scryfall_uri": "https://scryfall.com/card/kld/29/skywhalers-shot?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/5/4/54dd4948-dc79-4fe5-b4a0-fb257058f9dd.jpg?1576381006", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/4/54dd4948-dc79-4fe5-b4a0-fb257058f9dd.jpg?1576381006", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/5/4/54dd4948-dc79-4fe5-b4a0-fb257058f9dd.jpg?1576381006", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/5/4/54dd4948-dc79-4fe5-b4a0-fb257058f9dd.png?1576381006", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/4/54dd4948-dc79-4fe5-b4a0-fb257058f9dd.jpg?1576381006", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/5/4/54dd4948-dc79-4fe5-b4a0-fb257058f9dd.jpg?1576381006"}, "mana_cost": "{2}{W}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Destroy target creature with power 3 or greater. Scry 1. (Look at the top card of your library. You may put that card on the bottom of your library.)", "colors": ["W"], "color_identity": ["W"], "keywords": ["Scry"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "d667e468-be8f-411f-a030-473d148deb74", "set": "kld", "set_name": "Kaladesh", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/d667e468-be8f-411f-a030-473d148deb74", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Akld&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/kld?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/54dd4948-dc79-4fe5-b4a0-fb257058f9dd/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Af3d4e48e-5f98-44a6-ad5c-a1c068aa01eb&unique=prints", "collector_number": "29", "digital": false, "rarity": "uncommon", "flavor_text": "In the moment of truth, it is as though time stands still, and the whale waits, suspended in the sky.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Chris Rallis", "artist_ids": ["a8e7b854-b15a-421a-b66d-6e68187ae285"], "illustration_id": "d069e79d-4db4-4475-a67e-4bdc16120396", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 10254, "penny_rank": 4822, "prices": {"usd": "0.04", "usd_foil": "0.25", "usd_etched": null, "eur": "0.05", "eur_foil": "0.05", "tix": "0.04"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=417602", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Skywhaler%27s+Shot&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Skywhaler%27s+Shot&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Skywhaler%27s+Shot"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/122936?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Skywhaler%27s+Shot&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/61627?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "8ff06c7d-5e78-4bcf-864b-34487f6555b2", "oracle_id": "37de575d-15d4-42a2-a3d2-3855fb6ab110", "multiverse_ids": [6097], "mtgo_id": 10657, "mtgo_foil_id": 10658, "tcgplayer_id": 4403, "cardmarket_id": 9302, "name": "Slaughter", "lang": "en", "released_at": "1998-06-15", "uri": "https://api.scryfall.com/cards/8ff06c7d-5e78-4bcf-864b-34487f6555b2", "scryfall_uri": "https://scryfall.com/card/exo/74/slaughter?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/8/f/8ff06c7d-5e78-4bcf-864b-34487f6555b2.jpg?1562088317", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/f/8ff06c7d-5e78-4bcf-864b-34487f6555b2.jpg?1562088317", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/8/f/8ff06c7d-5e78-4bcf-864b-34487f6555b2.jpg?1562088317", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/8/f/8ff06c7d-5e78-4bcf-864b-34487f6555b2.png?1562088317", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/f/8ff06c7d-5e78-4bcf-864b-34487f6555b2.jpg?1562088317", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/8/f/8ff06c7d-5e78-4bcf-864b-34487f6555b2.jpg?1562088317"}, "mana_cost": "{2}{B}{B}", "cmc": 4.0, "type_line": "Instant", "oracle_text": "Buyback\u2014Pay 4 life. (You may pay 4 life in addition to any other costs as you cast this spell. If you do, put this card into your hand as it resolves.)\nDestroy target nonblack creature. It can't be regenerated.", "colors": ["B"], "color_identity": ["B"], "keywords": ["Buyback"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "1401f7af-2e71-476d-9813-991084ed0bb9", "set": "exo", "set_name": "Exodus", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/1401f7af-2e71-476d-9813-991084ed0bb9", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aexo&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/exo?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/8ff06c7d-5e78-4bcf-864b-34487f6555b2/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A37de575d-15d4-42a2-a3d2-3855fb6ab110&unique=prints", "collector_number": "74", "digital": false, "rarity": "uncommon", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Pete Venters", "artist_ids": ["d54c4a1a-c0c5-4834-84db-125d341f3ad8"], "illustration_id": "e2f39def-4338-42ff-9b32-8ee7c5952be0", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 10338, "penny_rank": 12489, "prices": {"usd": "0.33", "usd_foil": null, "usd_etched": null, "eur": "0.35", "eur_foil": null, "tix": "0.09"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=6097", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Slaughter&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Slaughter&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Slaughter"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/4403?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Slaughter&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/10657?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "42696fdb-de1f-44ae-bef3-b6af068958d0", "oracle_id": "67c4b1d5-757c-46cf-8bb1-9889d9ed1a1f", "multiverse_ids": [130704], "mtgo_id": 26762, "mtgo_foil_id": 26763, "tcgplayer_id": 14985, "cardmarket_id": 15070, "name": "Slaughter Pact", "lang": "en", "released_at": "2007-05-04", "uri": "https://api.scryfall.com/cards/42696fdb-de1f-44ae-bef3-b6af068958d0", "scryfall_uri": "https://scryfall.com/card/fut/78/slaughter-pact?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/4/2/42696fdb-de1f-44ae-bef3-b6af068958d0.jpg?1562908356", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/2/42696fdb-de1f-44ae-bef3-b6af068958d0.jpg?1562908356", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/4/2/42696fdb-de1f-44ae-bef3-b6af068958d0.jpg?1562908356", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/4/2/42696fdb-de1f-44ae-bef3-b6af068958d0.png?1562908356", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/2/42696fdb-de1f-44ae-bef3-b6af068958d0.jpg?1562908356", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/4/2/42696fdb-de1f-44ae-bef3-b6af068958d0.jpg?1562908356"}, "mana_cost": "{0}", "cmc": 0.0, "type_line": "Instant", "oracle_text": "Destroy target nonblack creature.\nAt the beginning of your next upkeep, pay {2}{B}. If you don't, you lose the game.", "colors": ["B"], "color_indicator": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "bf951ddb-4445-4923-87cb-3fe4ac3c6b9a", "set": "fut", "set_name": "Future Sight", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/bf951ddb-4445-4923-87cb-3fe4ac3c6b9a", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Afut&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/fut?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/42696fdb-de1f-44ae-bef3-b6af068958d0/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A67c4b1d5-757c-46cf-8bb1-9889d9ed1a1f&unique=prints", "collector_number": "78", "digital": false, "rarity": "rare", "flavor_text": "Death is only the beginning of the end.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Kev Walker", "artist_ids": ["f366a0ee-a0cd-466d-ba6a-90058c7a31a6"], "illustration_id": "b05b45f9-f525-47da-97c2-7c4c9de7f907", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 2222, "penny_rank": 698, "prices": {"usd": "1.92", "usd_foil": "14.99", "usd_etched": null, "eur": "0.95", "eur_foil": "5.95", "tix": "0.06"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=130704", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Slaughter+Pact&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Slaughter+Pact&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Slaughter+Pact"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/14985?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Slaughter+Pact&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/26762?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "bc8475bd-bdd4-421c-ace7-c6262f7405ce", "oracle_id": "67c4b1d5-757c-46cf-8bb1-9889d9ed1a1f", "multiverse_ids": [430679], "mtgo_id": 64950, "mtgo_foil_id": 64951, "tcgplayer_id": 134913, "cardmarket_id": 298575, "name": "Slaughter Pact", "lang": "en", "released_at": "2017-04-28", "uri": "https://api.scryfall.com/cards/bc8475bd-bdd4-421c-ace7-c6262f7405ce", "scryfall_uri": "https://scryfall.com/card/mp2/44/slaughter-pact?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/b/c/bc8475bd-bdd4-421c-ace7-c6262f7405ce.jpg?1562932879", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/c/bc8475bd-bdd4-421c-ace7-c6262f7405ce.jpg?1562932879", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/b/c/bc8475bd-bdd4-421c-ace7-c6262f7405ce.jpg?1562932879", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/b/c/bc8475bd-bdd4-421c-ace7-c6262f7405ce.png?1562932879", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/c/bc8475bd-bdd4-421c-ace7-c6262f7405ce.jpg?1562932879", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/b/c/bc8475bd-bdd4-421c-ace7-c6262f7405ce.jpg?1562932879"}, "mana_cost": "{0}", "cmc": 0.0, "type_line": "Instant", "oracle_text": "Destroy target nonblack creature.\nAt the beginning of your next upkeep, pay {2}{B}. If you don't, you lose the game.", "colors": ["B"], "color_indicator": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": false, "finishes": ["foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "c26402e7-838e-48db-a4b2-7abfc305998a", "set": "mp2", "set_name": "Amonkhet Invocations", "set_type": "masterpiece", "set_uri": "https://api.scryfall.com/sets/c26402e7-838e-48db-a4b2-7abfc305998a", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Amp2&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/mp2?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/bc8475bd-bdd4-421c-ace7-c6262f7405ce/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A67c4b1d5-757c-46cf-8bb1-9889d9ed1a1f&unique=prints", "collector_number": "44", "digital": false, "rarity": "mythic", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Josh Hass", "artist_ids": ["8fa1fdf0-96d6-46f4-a7ff-b1c0257c3735"], "illustration_id": "a7db07d9-ffe3-4b28-95ec-277b4998e090", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 2222, "penny_rank": 698, "prices": {"usd": null, "usd_foil": "43.02", "usd_etched": null, "eur": null, "eur_foil": "32.24", "tix": "0.66"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=430679", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Slaughter+Pact&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Slaughter+Pact&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Slaughter+Pact"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/134913?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Slaughter+Pact&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/64950?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "eccda747-2680-4793-8a13-35e49b4de12f", "oracle_id": "64418e1f-4fb1-4029-a31e-135b2d2c0ab9", "multiverse_ids": [15137], "mtgo_id": 15093, "mtgo_foil_id": 15094, "tcgplayer_id": 7878, "cardmarket_id": 3310, "name": "Slay", "lang": "en", "released_at": "2001-02-05", "uri": "https://api.scryfall.com/cards/eccda747-2680-4793-8a13-35e49b4de12f", "scryfall_uri": "https://scryfall.com/card/pls/55/slay?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/e/c/eccda747-2680-4793-8a13-35e49b4de12f.jpg?1562944937", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/c/eccda747-2680-4793-8a13-35e49b4de12f.jpg?1562944937", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/e/c/eccda747-2680-4793-8a13-35e49b4de12f.jpg?1562944937", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/e/c/eccda747-2680-4793-8a13-35e49b4de12f.png?1562944937", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/c/eccda747-2680-4793-8a13-35e49b4de12f.jpg?1562944937", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/e/c/eccda747-2680-4793-8a13-35e49b4de12f.jpg?1562944937"}, "mana_cost": "{2}{B}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Destroy target green creature. It can't be regenerated.\nDraw a card.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "82dc193b-bd5f-4883-a93f-a4155b467ee0", "set": "pls", "set_name": "Planeshift", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/82dc193b-bd5f-4883-a93f-a4155b467ee0", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Apls&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/pls?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/eccda747-2680-4793-8a13-35e49b4de12f/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A64418e1f-4fb1-4029-a31e-135b2d2c0ab9&unique=prints", "collector_number": "55", "digital": false, "rarity": "uncommon", "flavor_text": "The elves had the edge in guile, skill, and valor. But in the end, only sheer numbers mattered.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Ben Thompson", "artist_ids": ["f3116c88-57f4-4fd1-95f3-cfd163977661"], "illustration_id": "3ac1920a-30ad-4be7-b118-67a97ee3a5ff", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 20132, "penny_rank": 12749, "prices": {"usd": "0.14", "usd_foil": "3.03", "usd_etched": null, "eur": "0.25", "eur_foil": "1.45", "tix": "0.09"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=15137", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Slay&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Slay&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Slay"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/7878?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Slay&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/15093?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "def592b9-9d8b-4e2d-9b52-e1bc9f4bd019", "oracle_id": "66ce0ae5-7000-4e4a-891f-f571f0e58cd7", "multiverse_ids": [194017], "mtgo_id": 35791, "mtgo_foil_id": 35792, "tcgplayer_id": 34437, "cardmarket_id": 22248, "name": "Slingbow Trap", "lang": "en", "released_at": "2010-02-05", "uri": "https://api.scryfall.com/cards/def592b9-9d8b-4e2d-9b52-e1bc9f4bd019", "scryfall_uri": "https://scryfall.com/card/wwk/111/slingbow-trap?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/d/e/def592b9-9d8b-4e2d-9b52-e1bc9f4bd019.jpg?1562297661", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/e/def592b9-9d8b-4e2d-9b52-e1bc9f4bd019.jpg?1562297661", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/d/e/def592b9-9d8b-4e2d-9b52-e1bc9f4bd019.jpg?1562297661", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/d/e/def592b9-9d8b-4e2d-9b52-e1bc9f4bd019.png?1562297661", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/e/def592b9-9d8b-4e2d-9b52-e1bc9f4bd019.jpg?1562297661", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/d/e/def592b9-9d8b-4e2d-9b52-e1bc9f4bd019.jpg?1562297661"}, "mana_cost": "{3}{G}", "cmc": 4.0, "type_line": "Instant \u2014 Trap", "oracle_text": "If a black creature with flying is attacking, you may pay {G} rather than pay this spell's mana cost.\nDestroy target attacking creature with flying.", "colors": ["G"], "color_identity": ["G"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "2f248ce6-c2a5-4c6f-a2be-0c593fbe173c", "set": "wwk", "set_name": "Worldwake", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/2f248ce6-c2a5-4c6f-a2be-0c593fbe173c", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Awwk&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/wwk?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/def592b9-9d8b-4e2d-9b52-e1bc9f4bd019/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A66ce0ae5-7000-4e4a-891f-f571f0e58cd7&unique=prints", "collector_number": "111", "digital": false, "rarity": "uncommon", "flavor_text": "The Tajuru elves devised ways to let the forest defend itself.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Daniel Ljunggren", "artist_ids": ["0fbd4798-76eb-46d5-a5d4-1e3a25870e34"], "illustration_id": "c6a68283-4b72-49c3-a1cc-fe0c31084da4", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 20988, "prices": {"usd": "0.06", "usd_foil": "0.25", "usd_etched": null, "eur": "0.02", "eur_foil": "0.23", "tix": "0.04"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=194017", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Slingbow+Trap&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Slingbow+Trap&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Slingbow+Trap"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/34437?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Slingbow+Trap&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/35791?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "ff799e40-fd40-4f6a-8fa8-c22d77476168", "oracle_id": "367379f2-e1e4-48e7-b2c0-1003de55adbe", "multiverse_ids": [366456], "mtgo_id": 47559, "mtgo_foil_id": 47560, "tcgplayer_id": 67551, "cardmarket_id": 259993, "name": "Smite", "lang": "en", "released_at": "2013-02-01", "uri": "https://api.scryfall.com/cards/ff799e40-fd40-4f6a-8fa8-c22d77476168", "scryfall_uri": "https://scryfall.com/card/gtc/25/smite?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/f/f/ff799e40-fd40-4f6a-8fa8-c22d77476168.jpg?1561854361", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/f/ff799e40-fd40-4f6a-8fa8-c22d77476168.jpg?1561854361", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/f/f/ff799e40-fd40-4f6a-8fa8-c22d77476168.jpg?1561854361", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/f/f/ff799e40-fd40-4f6a-8fa8-c22d77476168.png?1561854361", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/f/ff799e40-fd40-4f6a-8fa8-c22d77476168.jpg?1561854361", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/f/f/ff799e40-fd40-4f6a-8fa8-c22d77476168.jpg?1561854361"}, "mana_cost": "{W}", "cmc": 1.0, "type_line": "Instant", "oracle_text": "Destroy target blocked creature.", "colors": ["W"], "color_identity": ["W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "035a05f7-e020-4f50-a141-ed16ba704bd2", "set": "gtc", "set_name": "Gatecrash", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/035a05f7-e020-4f50-a141-ed16ba704bd2", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Agtc&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/gtc?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/ff799e40-fd40-4f6a-8fa8-c22d77476168/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A367379f2-e1e4-48e7-b2c0-1003de55adbe&unique=prints", "collector_number": "25", "digital": false, "rarity": "common", "flavor_text": "\"Sure, today of all days, he asked to borrow my boots!\"\n\u2014Darijo, Ivy Street ruffian", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Zoltan Boros", "artist_ids": ["1885e6cb-c827-4896-994e-3d0a027d602f"], "illustration_id": "3ca552f7-6902-4ca2-9796-def3d3518e2d", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 13985, "penny_rank": 7885, "prices": {"usd": "0.04", "usd_foil": "0.24", "usd_etched": null, "eur": "0.14", "eur_foil": "0.05", "tix": "0.04"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=366456", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Smite&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Smite&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Smite"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/67551?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Smite&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/47559?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "2698f01a-8574-4ae8-9441-a4361b1c29c6", "oracle_id": "367379f2-e1e4-48e7-b2c0-1003de55adbe", "multiverse_ids": [193595], "mtgo_id": 36582, "mtgo_foil_id": 36583, "tcgplayer_id": 34737, "cardmarket_id": 22623, "name": "Smite", "lang": "en", "released_at": "2010-04-23", "uri": "https://api.scryfall.com/cards/2698f01a-8574-4ae8-9441-a4361b1c29c6", "scryfall_uri": "https://scryfall.com/card/roe/43/smite?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/2/6/2698f01a-8574-4ae8-9441-a4361b1c29c6.jpg?1562702095", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/6/2698f01a-8574-4ae8-9441-a4361b1c29c6.jpg?1562702095", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/2/6/2698f01a-8574-4ae8-9441-a4361b1c29c6.jpg?1562702095", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/2/6/2698f01a-8574-4ae8-9441-a4361b1c29c6.png?1562702095", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/6/2698f01a-8574-4ae8-9441-a4361b1c29c6.jpg?1562702095", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/2/6/2698f01a-8574-4ae8-9441-a4361b1c29c6.jpg?1562702095"}, "mana_cost": "{W}", "cmc": 1.0, "type_line": "Instant", "oracle_text": "Destroy target blocked creature.", "colors": ["W"], "color_identity": ["W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "eadb8a82-ec56-4623-b50e-42e7e60cb535", "set": "roe", "set_name": "Rise of the Eldrazi", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/eadb8a82-ec56-4623-b50e-42e7e60cb535", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aroe&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/roe?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/2698f01a-8574-4ae8-9441-a4361b1c29c6/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A367379f2-e1e4-48e7-b2c0-1003de55adbe&unique=prints", "collector_number": "43", "digital": false, "rarity": "common", "flavor_text": "\"The mighty rely solely on their strength. They are shocked when we do the same.\"\n\u2014Tars Olan, kor world-gift", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Cyril Van Der Haegen", "artist_ids": ["90edbd2e-9462-4394-b0b4-02885b4e56b3"], "illustration_id": "95762f5a-9b46-45dc-bef1-d762f77e9069", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 13985, "penny_rank": 7885, "prices": {"usd": "0.05", "usd_foil": "0.14", "usd_etched": null, "eur": "0.02", "eur_foil": "0.17", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=193595", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Smite&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Smite&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Smite"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/34737?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Smite&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/36582?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "14f165ad-cfe6-4a5d-8073-a70969494855", "oracle_id": "367379f2-e1e4-48e7-b2c0-1003de55adbe", "multiverse_ids": [5234], "mtgo_id": 10381, "mtgo_foil_id": 10382, "tcgplayer_id": 5413, "cardmarket_id": 9202, "name": "Smite", "lang": "en", "released_at": "1998-03-02", "uri": "https://api.scryfall.com/cards/14f165ad-cfe6-4a5d-8073-a70969494855", "scryfall_uri": "https://scryfall.com/card/sth/17/smite?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/1/4/14f165ad-cfe6-4a5d-8073-a70969494855.jpg?1562595916", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/4/14f165ad-cfe6-4a5d-8073-a70969494855.jpg?1562595916", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/1/4/14f165ad-cfe6-4a5d-8073-a70969494855.jpg?1562595916", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/1/4/14f165ad-cfe6-4a5d-8073-a70969494855.png?1562595916", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/4/14f165ad-cfe6-4a5d-8073-a70969494855.jpg?1562595916", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/1/4/14f165ad-cfe6-4a5d-8073-a70969494855.jpg?1562595916"}, "mana_cost": "{W}", "cmc": 1.0, "type_line": "Instant", "oracle_text": "Destroy target blocked creature.", "colors": ["W"], "color_identity": ["W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "5c83396a-d386-4367-926b-571a75b086a3", "set": "sth", "set_name": "Stronghold", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/5c83396a-d386-4367-926b-571a75b086a3", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Asth&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/sth?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/14f165ad-cfe6-4a5d-8073-a70969494855/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A367379f2-e1e4-48e7-b2c0-1003de55adbe&unique=prints", "collector_number": "17", "digital": false, "rarity": "common", "flavor_text": "\"You've got your childhood wish at last. Now you get to die.\"\n\u2014Gerrard, to Volrath", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Daren Bader", "artist_ids": ["7da1a585-c875-45e4-b322-5da9e8e1f651"], "illustration_id": "b8aac794-ace8-4535-94d0-34786a46a069", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 13985, "penny_rank": 7885, "prices": {"usd": "0.08", "usd_foil": null, "usd_etched": null, "eur": "0.02", "eur_foil": null, "tix": "0.09"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=5234", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Smite&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Smite&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Smite"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/5413?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Smite&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/10381?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "9c103163-31b7-4d25-aa2c-02ca082ee1bf", "oracle_id": "649512ed-4908-450a-9652-b2c80df5e24d", "multiverse_ids": [491669], "mtgo_id": 83031, "arena_id": 73230, "tcgplayer_id": 222174, "cardmarket_id": 496755, "name": "Smite the Monstrous", "lang": "en", "released_at": "2020-09-25", "uri": "https://api.scryfall.com/cards/9c103163-31b7-4d25-aa2c-02ca082ee1bf", "scryfall_uri": "https://scryfall.com/card/znr/42/smite-the-monstrous?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/9/c/9c103163-31b7-4d25-aa2c-02ca082ee1bf.jpg?1604193448", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/c/9c103163-31b7-4d25-aa2c-02ca082ee1bf.jpg?1604193448", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/9/c/9c103163-31b7-4d25-aa2c-02ca082ee1bf.jpg?1604193448", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/9/c/9c103163-31b7-4d25-aa2c-02ca082ee1bf.png?1604193448", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/c/9c103163-31b7-4d25-aa2c-02ca082ee1bf.jpg?1604193448", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/9/c/9c103163-31b7-4d25-aa2c-02ca082ee1bf.jpg?1604193448"}, "mana_cost": "{3}{W}", "cmc": 4.0, "type_line": "Instant", "oracle_text": "Destroy target creature with power 4 or greater.", "colors": ["W"], "color_identity": ["W"], "keywords": [], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "f4e01fa7-b254-42dd-849f-69b58027a8c4", "set": "znr", "set_name": "Zendikar Rising", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/f4e01fa7-b254-42dd-849f-69b58027a8c4", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aznr&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/znr?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/9c103163-31b7-4d25-aa2c-02ca082ee1bf/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A649512ed-4908-450a-9652-b2c80df5e24d&unique=prints", "collector_number": "42", "digital": false, "rarity": "common", "flavor_text": "\"Darkness always flees from the light, and I am the breaking dawn.\"\n\u2014Kordain, luminarch of Kabira", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Izzy", "artist_ids": ["2c3d2473-ff5d-4309-8194-e0b2def2ab65"], "illustration_id": "340711c3-ee60-4e82-80b4-8e3ec258dd50", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 12239, "penny_rank": 11624, "preview": {"source": "Absurd Heroine", "source_uri": "https://twitter.com/HeroineAbsurd/status/1303408090025521152", "previewed_at": "2020-09-08"}, "prices": {"usd": "0.01", "usd_foil": "0.01", "usd_etched": null, "eur": "0.02", "eur_foil": "0.02", "tix": "0.01"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=491669", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Smite+the+Monstrous&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Smite+the+Monstrous&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Smite+the+Monstrous"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/222174?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Smite+the+Monstrous&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/83031?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "766aad27-e987-45ab-82aa-e5f44fcc34ef", "oracle_id": "649512ed-4908-450a-9652-b2c80df5e24d", "multiverse_ids": [402042], "mtgo_id": 58755, "mtgo_foil_id": 58756, "tcgplayer_id": 105682, "cardmarket_id": 284817, "name": "Smite the Monstrous", "lang": "en", "released_at": "2015-10-02", "uri": "https://api.scryfall.com/cards/766aad27-e987-45ab-82aa-e5f44fcc34ef", "scryfall_uri": "https://scryfall.com/card/bfz/49/smite-the-monstrous?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/7/6/766aad27-e987-45ab-82aa-e5f44fcc34ef.jpg?1562922992", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/6/766aad27-e987-45ab-82aa-e5f44fcc34ef.jpg?1562922992", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/7/6/766aad27-e987-45ab-82aa-e5f44fcc34ef.jpg?1562922992", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/7/6/766aad27-e987-45ab-82aa-e5f44fcc34ef.png?1562922992", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/6/766aad27-e987-45ab-82aa-e5f44fcc34ef.jpg?1562922992", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/7/6/766aad27-e987-45ab-82aa-e5f44fcc34ef.jpg?1562922992"}, "mana_cost": "{3}{W}", "cmc": 4.0, "type_line": "Instant", "oracle_text": "Destroy target creature with power 4 or greater.", "colors": ["W"], "color_identity": ["W"], "keywords": [], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "91719374-7ac5-4afa-ada8-5da964dcf1d4", "set": "bfz", "set_name": "Battle for Zendikar", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/91719374-7ac5-4afa-ada8-5da964dcf1d4", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Abfz&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/bfz?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/766aad27-e987-45ab-82aa-e5f44fcc34ef/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A649512ed-4908-450a-9652-b2c80df5e24d&unique=prints", "collector_number": "49", "digital": false, "rarity": "common", "flavor_text": "After watching the kor in battle, Gideon understood the difference between working together and working as one.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Jakub Kasper", "artist_ids": ["36901417-ce61-4636-8b77-6db14a9cb68a"], "illustration_id": "f1765dd5-4f77-4cee-a2cf-0af131926f58", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 12239, "penny_rank": 11624, "prices": {"usd": "0.02", "usd_foil": "0.11", "usd_etched": null, "eur": "0.15", "eur_foil": "0.02", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=402042", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Smite+the+Monstrous&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Smite+the+Monstrous&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Smite+the+Monstrous"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/105682?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Smite+the+Monstrous&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/58755?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "1405bb2e-2204-43ab-82a3-5d0c8537325a", "oracle_id": "649512ed-4908-450a-9652-b2c80df5e24d", "multiverse_ids": [386669], "mtgo_id": 53966, "mtgo_foil_id": 53967, "tcgplayer_id": 93233, "cardmarket_id": 269440, "name": "Smite the Monstrous", "lang": "en", "released_at": "2014-09-26", "uri": "https://api.scryfall.com/cards/1405bb2e-2204-43ab-82a3-5d0c8537325a", "scryfall_uri": "https://scryfall.com/card/ktk/24/smite-the-monstrous?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/1/4/1405bb2e-2204-43ab-82a3-5d0c8537325a.jpg?1562782881", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/4/1405bb2e-2204-43ab-82a3-5d0c8537325a.jpg?1562782881", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/1/4/1405bb2e-2204-43ab-82a3-5d0c8537325a.jpg?1562782881", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/1/4/1405bb2e-2204-43ab-82a3-5d0c8537325a.png?1562782881", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/4/1405bb2e-2204-43ab-82a3-5d0c8537325a.jpg?1562782881", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/1/4/1405bb2e-2204-43ab-82a3-5d0c8537325a.jpg?1562782881"}, "mana_cost": "{3}{W}", "cmc": 4.0, "type_line": "Instant", "oracle_text": "Destroy target creature with power 4 or greater.", "colors": ["W"], "color_identity": ["W"], "keywords": [], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "6c7a715c-ded9-449e-89b0-c665773e9c3c", "set": "ktk", "set_name": "Khans of Tarkir", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/6c7a715c-ded9-449e-89b0-c665773e9c3c", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aktk&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ktk?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/1405bb2e-2204-43ab-82a3-5d0c8537325a/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A649512ed-4908-450a-9652-b2c80df5e24d&unique=prints", "collector_number": "24", "digital": false, "rarity": "common", "flavor_text": "\"The dragons thought they were too strong to be tamed, too large to fall. And where are they now?\"\n\u2014Khibat the Revered", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Greg Staples", "artist_ids": ["93d65564-bf00-447b-8406-e2031f03b6b1"], "illustration_id": "4ef3a8ea-bb45-4e6c-a8b1-955b887ad62f", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 12239, "penny_rank": 11624, "prices": {"usd": "0.02", "usd_foil": "0.20", "usd_etched": null, "eur": "0.02", "eur_foil": "0.10", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=386669", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Smite+the+Monstrous&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Smite+the+Monstrous&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Smite+the+Monstrous"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/93233?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Smite+the+Monstrous&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/53966?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "0103f3b1-88c2-4cbf-a67c-49420f92970f", "oracle_id": "649512ed-4908-450a-9652-b2c80df5e24d", "multiverse_ids": [220377], "mtgo_id": 42298, "mtgo_foil_id": 42299, "tcgplayer_id": 56234, "cardmarket_id": 250683, "name": "Smite the Monstrous", "lang": "en", "released_at": "2011-09-30", "uri": "https://api.scryfall.com/cards/0103f3b1-88c2-4cbf-a67c-49420f92970f", "scryfall_uri": "https://scryfall.com/card/isd/33/smite-the-monstrous?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/0/1/0103f3b1-88c2-4cbf-a67c-49420f92970f.jpg?1562825351", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/1/0103f3b1-88c2-4cbf-a67c-49420f92970f.jpg?1562825351", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/0/1/0103f3b1-88c2-4cbf-a67c-49420f92970f.jpg?1562825351", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/0/1/0103f3b1-88c2-4cbf-a67c-49420f92970f.png?1562825351", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/1/0103f3b1-88c2-4cbf-a67c-49420f92970f.jpg?1562825351", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/0/1/0103f3b1-88c2-4cbf-a67c-49420f92970f.jpg?1562825351"}, "mana_cost": "{3}{W}", "cmc": 4.0, "type_line": "Instant", "oracle_text": "Destroy target creature with power 4 or greater.", "colors": ["W"], "color_identity": ["W"], "keywords": [], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "d1026945-2969-42b9-be53-f941405a58cb", "set": "isd", "set_name": "Innistrad", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/d1026945-2969-42b9-be53-f941405a58cb", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aisd&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/isd?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/0103f3b1-88c2-4cbf-a67c-49420f92970f/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A649512ed-4908-450a-9652-b2c80df5e24d&unique=prints", "collector_number": "33", "digital": false, "rarity": "common", "flavor_text": "Though the old holy wards and roadside shrines have begun to fail, faith in Avacyn still holds true power.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Jason Felix", "artist_ids": ["af42a44c-8ec3-47a7-9047-5d29ddad186d"], "illustration_id": "cae3bef9-e04c-4228-807e-523a909143e9", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 12239, "penny_rank": 11624, "prices": {"usd": "0.06", "usd_foil": "0.20", "usd_etched": null, "eur": "0.02", "eur_foil": "0.07", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=220377", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Smite+the+Monstrous&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Smite+the+Monstrous&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Smite+the+Monstrous"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/56234?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Smite+the+Monstrous&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/42298?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "2969e9b5-64d3-401f-9878-32ec283680ab", "oracle_id": "649512ed-4908-450a-9652-b2c80df5e24d", "multiverse_ids": [394083], "tcgplayer_id": 95598, "cardmarket_id": 271977, "name": "Smite the Monstrous", "lang": "en", "released_at": "2015-01-17", "uri": "https://api.scryfall.com/cards/2969e9b5-64d3-401f-9878-32ec283680ab", "scryfall_uri": "https://scryfall.com/card/ugin/24/smite-the-monstrous?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/2/9/2969e9b5-64d3-401f-9878-32ec283680ab.jpg?1562633742", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/9/2969e9b5-64d3-401f-9878-32ec283680ab.jpg?1562633742", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/2/9/2969e9b5-64d3-401f-9878-32ec283680ab.jpg?1562633742", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/2/9/2969e9b5-64d3-401f-9878-32ec283680ab.png?1562633742", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/9/2969e9b5-64d3-401f-9878-32ec283680ab.jpg?1562633742", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/2/9/2969e9b5-64d3-401f-9878-32ec283680ab.jpg?1562633742"}, "mana_cost": "{3}{W}", "cmc": 4.0, "type_line": "Instant", "oracle_text": "Destroy target creature with power 4 or greater.", "colors": ["W"], "color_identity": ["W"], "keywords": [], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": true, "reprint": true, "variation": false, "set_id": "fc7ea025-628e-45f4-9e0b-73681b1f68b7", "set": "ugin", "set_name": "Ugin's Fate", "set_type": "promo", "set_uri": "https://api.scryfall.com/sets/fc7ea025-628e-45f4-9e0b-73681b1f68b7", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Augin&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ugin?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/2969e9b5-64d3-401f-9878-32ec283680ab/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A649512ed-4908-450a-9652-b2c80df5e24d&unique=prints", "collector_number": "24", "digital": false, "rarity": "common", "flavor_text": "The changing of a single moment in Tarkir's past altered its future, rewriting its history.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Greg Staples", "artist_ids": ["93d65564-bf00-447b-8406-e2031f03b6b1"], "illustration_id": "906156d8-1ae3-452d-8e09-ec6b7d3c8814", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "promo_types": ["setpromo"], "edhrec_rank": 12239, "penny_rank": 11624, "prices": {"usd": "0.17", "usd_foil": null, "usd_etched": null, "eur": "0.10", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=394083", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Smite+the+Monstrous&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Smite+the+Monstrous&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Smite+the+Monstrous"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/95598?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Smite+the+Monstrous&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Smite+the+Monstrous&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "09b4deea-c077-46ab-898f-41b3907ecf33", "oracle_id": "acdf9fb0-96eb-4520-bd4b-b6480c7c9b29", "multiverse_ids": [191578], "mtgo_id": 35751, "mtgo_foil_id": 35752, "tcgplayer_id": 34439, "cardmarket_id": 22109, "name": "Smother", "lang": "en", "released_at": "2010-02-05", "uri": "https://api.scryfall.com/cards/09b4deea-c077-46ab-898f-41b3907ecf33", "scryfall_uri": "https://scryfall.com/card/wwk/68/smother?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/0/9/09b4deea-c077-46ab-898f-41b3907ecf33.jpg?1562281733", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/9/09b4deea-c077-46ab-898f-41b3907ecf33.jpg?1562281733", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/0/9/09b4deea-c077-46ab-898f-41b3907ecf33.jpg?1562281733", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/0/9/09b4deea-c077-46ab-898f-41b3907ecf33.png?1562281733", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/9/09b4deea-c077-46ab-898f-41b3907ecf33.jpg?1562281733", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/0/9/09b4deea-c077-46ab-898f-41b3907ecf33.jpg?1562281733"}, "mana_cost": "{1}{B}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Destroy target creature with mana value 3 or less. It can't be regenerated.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "2f248ce6-c2a5-4c6f-a2be-0c593fbe173c", "set": "wwk", "set_name": "Worldwake", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/2f248ce6-c2a5-4c6f-a2be-0c593fbe173c", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Awwk&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/wwk?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/09b4deea-c077-46ab-898f-41b3907ecf33/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aacdf9fb0-96eb-4520-bd4b-b6480c7c9b29&unique=prints", "collector_number": "68", "digital": false, "rarity": "uncommon", "flavor_text": "\"Before I hire new recruits, I test how long they can hold their breath. You'd be surprised how often it comes up.\"\n\u2014Zahr Gada, Halimar expedition leader", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Karl Kopinski", "artist_ids": ["0fad2c48-a56e-4a0b-b512-224f6f238f20"], "illustration_id": "8fc75872-93f3-481c-a831-a3b37aa27a21", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 15343, "penny_rank": 974, "prices": {"usd": "0.10", "usd_foil": "0.38", "usd_etched": null, "eur": "0.15", "eur_foil": "0.35", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=191578", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Smother&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Smother&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Smother"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/34439?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Smother&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/35751?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "9a8321af-d667-44e7-8c03-3957286604b9", "oracle_id": "acdf9fb0-96eb-4520-bd4b-b6480c7c9b29", "multiverse_ids": [41023], "mtgo_id": 17945, "mtgo_foil_id": 17946, "tcgplayer_id": 10339, "cardmarket_id": 1801, "name": "Smother", "lang": "en", "released_at": "2002-10-07", "uri": "https://api.scryfall.com/cards/9a8321af-d667-44e7-8c03-3957286604b9", "scryfall_uri": "https://scryfall.com/card/ons/170/smother?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/9/a/9a8321af-d667-44e7-8c03-3957286604b9.jpg?1562931422", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/a/9a8321af-d667-44e7-8c03-3957286604b9.jpg?1562931422", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/9/a/9a8321af-d667-44e7-8c03-3957286604b9.jpg?1562931422", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/9/a/9a8321af-d667-44e7-8c03-3957286604b9.png?1562931422", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/a/9a8321af-d667-44e7-8c03-3957286604b9.jpg?1562931422", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/9/a/9a8321af-d667-44e7-8c03-3957286604b9.jpg?1562931422"}, "mana_cost": "{1}{B}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Destroy target creature with mana value 3 or less. It can't be regenerated.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "914a6c6d-cb3b-45e8-a2db-9978a2339faf", "set": "ons", "set_name": "Onslaught", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/914a6c6d-cb3b-45e8-a2db-9978a2339faf", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aons&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ons?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/9a8321af-d667-44e7-8c03-3957286604b9/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aacdf9fb0-96eb-4520-bd4b-b6480c7c9b29&unique=prints", "collector_number": "170", "digital": false, "rarity": "uncommon", "flavor_text": "\"I can't hear them scream, but at least I don't have to listen to them beg.\"\n\u2014Phage the Untouchable", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Carl Critchlow", "artist_ids": ["17948f16-611a-44b8-8d10-9895a0bdfff1"], "illustration_id": "d5796d5f-93f5-4aeb-819b-14366f902934", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 15343, "penny_rank": 974, "prices": {"usd": "0.24", "usd_foil": "4.80", "usd_etched": null, "eur": "0.15", "eur_foil": "3.98", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=41023", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Smother&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Smother&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Smother"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/10339?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Smother&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/17945?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "db8b3560-4940-40cc-9797-f909dcb1519b", "oracle_id": "324824cb-f938-401c-b9b5-d8908b431ef0", "multiverse_ids": [201794], "mtgo_id": 34952, "mtgo_foil_id": 34953, "tcgplayer_id": 37691, "cardmarket_id": 21998, "name": "Snuff Out", "lang": "en", "released_at": "2009-10-30", "uri": "https://api.scryfall.com/cards/db8b3560-4940-40cc-9797-f909dcb1519b", "scryfall_uri": "https://scryfall.com/card/ddd/53/snuff-out?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/d/b/db8b3560-4940-40cc-9797-f909dcb1519b.jpg?1562090223", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/b/db8b3560-4940-40cc-9797-f909dcb1519b.jpg?1562090223", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/d/b/db8b3560-4940-40cc-9797-f909dcb1519b.jpg?1562090223", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/d/b/db8b3560-4940-40cc-9797-f909dcb1519b.png?1562090223", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/b/db8b3560-4940-40cc-9797-f909dcb1519b.jpg?1562090223", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/d/b/db8b3560-4940-40cc-9797-f909dcb1519b.jpg?1562090223"}, "mana_cost": "{3}{B}", "cmc": 4.0, "type_line": "Instant", "oracle_text": "If you control a Swamp, you may pay 4 life rather than pay this spell's mana cost.\nDestroy target nonblack creature. It can't be regenerated.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "15f41db6-1810-475b-bf2c-24a488050a37", "set": "ddd", "set_name": "Duel Decks: Garruk vs. Liliana", "set_type": "duel_deck", "set_uri": "https://api.scryfall.com/sets/15f41db6-1810-475b-bf2c-24a488050a37", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Addd&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ddd?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/db8b3560-4940-40cc-9797-f909dcb1519b/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A324824cb-f938-401c-b9b5-d8908b431ef0&unique=prints", "collector_number": "53", "digital": false, "rarity": "common", "flavor_text": "\"The bigger they are, the faster they rot.\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Steve Argyle", "artist_ids": ["a44ddda4-5331-4f83-aac9-3e00ed36bd7b"], "illustration_id": "16a0c8dc-2ef2-4470-875c-b8e2c08c91cc", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "edhrec_rank": 1601, "prices": {"usd": "10.08", "usd_foil": null, "usd_etched": null, "eur": "6.88", "eur_foil": null, "tix": "9.76"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=201794", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Snuff+Out&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Snuff+Out&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Snuff+Out"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/37691?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Snuff+Out&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/34952?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "18a3cca1-e50e-49b6-9e1a-f86640e3b177", "oracle_id": "324824cb-f938-401c-b9b5-d8908b431ef0", "multiverse_ids": [19595], "mtgo_id": 13495, "mtgo_foil_id": 13496, "tcgplayer_id": 6703, "cardmarket_id": 11535, "name": "Snuff Out", "lang": "en", "released_at": "1999-10-04", "uri": "https://api.scryfall.com/cards/18a3cca1-e50e-49b6-9e1a-f86640e3b177", "scryfall_uri": "https://scryfall.com/card/mmq/162/snuff-out?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/1/8/18a3cca1-e50e-49b6-9e1a-f86640e3b177.jpg?1562379436", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/8/18a3cca1-e50e-49b6-9e1a-f86640e3b177.jpg?1562379436", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/1/8/18a3cca1-e50e-49b6-9e1a-f86640e3b177.jpg?1562379436", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/1/8/18a3cca1-e50e-49b6-9e1a-f86640e3b177.png?1562379436", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/8/18a3cca1-e50e-49b6-9e1a-f86640e3b177.jpg?1562379436", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/1/8/18a3cca1-e50e-49b6-9e1a-f86640e3b177.jpg?1562379436"}, "mana_cost": "{3}{B}", "cmc": 4.0, "type_line": "Instant", "oracle_text": "If you control a Swamp, you may pay 4 life rather than pay this spell's mana cost.\nDestroy target nonblack creature. It can't be regenerated.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "385e11a4-492b-4d07-b4a6-a1409ef829b8", "set": "mmq", "set_name": "Mercadian Masques", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/385e11a4-492b-4d07-b4a6-a1409ef829b8", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ammq&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/mmq?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/18a3cca1-e50e-49b6-9e1a-f86640e3b177/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A324824cb-f938-401c-b9b5-d8908b431ef0&unique=prints", "collector_number": "162", "digital": false, "rarity": "common", "flavor_text": "Squee watched his Kyren cousins fall with a mixture of sympathy and relief.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Mike Ploog", "artist_ids": ["4a9465c4-1545-4ab6-91e7-60252b90bed4"], "illustration_id": "154952b0-74ec-4442-98a7-2b9918957da7", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 1601, "prices": {"usd": "6.06", "usd_foil": "108.72", "usd_etched": null, "eur": "6.89", "eur_foil": "66.37", "tix": "12.14"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=19595", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Snuff+Out&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Snuff+Out&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Snuff+Out"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/6703?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Snuff+Out&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/13495?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "e2a129e2-bed5-4ee7-b223-851452f72682", "oracle_id": "d65f701d-31a1-4275-a580-3e1799ebf8b9", "multiverse_ids": [151150], "mtgo_id": 30014, "mtgo_foil_id": 30015, "tcgplayer_id": 27206, "cardmarket_id": 19506, "name": "Soul Reap", "lang": "en", "released_at": "2008-07-25", "uri": "https://api.scryfall.com/cards/e2a129e2-bed5-4ee7-b223-851452f72682", "scryfall_uri": "https://scryfall.com/card/eve/44/soul-reap?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/e/2/e2a129e2-bed5-4ee7-b223-851452f72682.jpg?1562942827", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/2/e2a129e2-bed5-4ee7-b223-851452f72682.jpg?1562942827", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/e/2/e2a129e2-bed5-4ee7-b223-851452f72682.jpg?1562942827", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/e/2/e2a129e2-bed5-4ee7-b223-851452f72682.png?1562942827", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/2/e2a129e2-bed5-4ee7-b223-851452f72682.jpg?1562942827", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/e/2/e2a129e2-bed5-4ee7-b223-851452f72682.jpg?1562942827"}, "mana_cost": "{1}{B}", "cmc": 2.0, "type_line": "Sorcery", "oracle_text": "Destroy target nongreen creature. Its controller loses 3 life if you've cast another black spell this turn.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "86b4dfef-f2d1-49d6-825d-7df6bda44357", "set": "eve", "set_name": "Eventide", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/86b4dfef-f2d1-49d6-825d-7df6bda44357", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aeve&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/eve?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/e2a129e2-bed5-4ee7-b223-851452f72682/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ad65f701d-31a1-4275-a580-3e1799ebf8b9&unique=prints", "collector_number": "44", "digital": false, "rarity": "common", "flavor_text": "Their thoughtweft carried Darial's last thoughts back to his doun. They sorely wished it had not.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Izzy", "artist_ids": ["2c3d2473-ff5d-4309-8194-e0b2def2ab65"], "illustration_id": "ddd9eb4b-33ce-4125-8f7d-447d8b958d64", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 19564, "penny_rank": 2425, "prices": {"usd": "0.22", "usd_foil": "1.31", "usd_etched": null, "eur": "0.15", "eur_foil": "0.40", "tix": "0.40"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=151150", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Soul+Reap&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Soul+Reap&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Soul+Reap"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/27206?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Soul+Reap&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/30014?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "7fa084e1-05c2-4691-b9fe-3e3c717e5c9d", "oracle_id": "80d233cc-7748-41a2-bfd6-2189d0136900", "multiverse_ids": [3313], "mtgo_id": 7319, "mtgo_foil_id": 7320, "tcgplayer_id": 5237, "cardmarket_id": 8093, "name": "Soul Rend", "lang": "en", "released_at": "1996-10-08", "uri": "https://api.scryfall.com/cards/7fa084e1-05c2-4691-b9fe-3e3c717e5c9d", "scryfall_uri": "https://scryfall.com/card/mir/144/soul-rend?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/7/f/7fa084e1-05c2-4691-b9fe-3e3c717e5c9d.jpg?1562720249", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/f/7fa084e1-05c2-4691-b9fe-3e3c717e5c9d.jpg?1562720249", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/7/f/7fa084e1-05c2-4691-b9fe-3e3c717e5c9d.jpg?1562720249", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/7/f/7fa084e1-05c2-4691-b9fe-3e3c717e5c9d.png?1562720249", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/f/7fa084e1-05c2-4691-b9fe-3e3c717e5c9d.jpg?1562720249", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/7/f/7fa084e1-05c2-4691-b9fe-3e3c717e5c9d.jpg?1562720249"}, "mana_cost": "{1}{B}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Destroy target creature if it's white. A creature destroyed this way can't be regenerated.\nDraw a card at the beginning of the next turn's upkeep.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "5f06acf3-8123-4a78-b2e7-089b0b775a4a", "set": "mir", "set_name": "Mirage", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/5f06acf3-8123-4a78-b2e7-089b0b775a4a", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Amir&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/mir?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/7fa084e1-05c2-4691-b9fe-3e3c717e5c9d/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A80d233cc-7748-41a2-bfd6-2189d0136900&unique=prints", "collector_number": "144", "digital": false, "rarity": "uncommon", "flavor_text": "\"Since I cannot stop death, I choose to stop life.\"\n\u2014Kaervek", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Jeff Miracola", "artist_ids": ["9b465bde-3656-4495-ace4-af4ce29999ed"], "illustration_id": "815937ff-db58-4b30-af67-4c6c85be828d", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 20289, "penny_rank": 12777, "prices": {"usd": "0.13", "usd_foil": null, "usd_etched": null, "eur": "0.09", "eur_foil": null, "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=3313", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Soul+Rend&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Soul+Rend&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Soul+Rend"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/5237?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Soul+Rend&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/7319?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "2013a138-f8e2-4a67-91e8-759288d985a7", "oracle_id": "25756e33-25e5-4976-8cce-a39fa2c4b007", "multiverse_ids": [461032], "mtgo_id": 71816, "arena_id": 69556, "tcgplayer_id": 188610, "cardmarket_id": 372226, "name": "Spark Harvest", "lang": "en", "released_at": "2019-05-03", "uri": "https://api.scryfall.com/cards/2013a138-f8e2-4a67-91e8-759288d985a7", "scryfall_uri": "https://scryfall.com/card/war/105/spark-harvest?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/2/0/2013a138-f8e2-4a67-91e8-759288d985a7.jpg?1557576556", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/0/2013a138-f8e2-4a67-91e8-759288d985a7.jpg?1557576556", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/2/0/2013a138-f8e2-4a67-91e8-759288d985a7.jpg?1557576556", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/2/0/2013a138-f8e2-4a67-91e8-759288d985a7.png?1557576556", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/0/2013a138-f8e2-4a67-91e8-759288d985a7.jpg?1557576556", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/2/0/2013a138-f8e2-4a67-91e8-759288d985a7.jpg?1557576556"}, "mana_cost": "{B}", "cmc": 1.0, "type_line": "Sorcery", "oracle_text": "As an additional cost to cast this spell, sacrifice a creature or pay {3}{B}.\nDestroy target creature or planeswalker.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "ee044f0b-e101-4ead-8d0e-aa510aad4277", "set": "war", "set_name": "War of the Spark", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/ee044f0b-e101-4ead-8d0e-aa510aad4277", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Awar&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/war?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/2013a138-f8e2-4a67-91e8-759288d985a7/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A25756e33-25e5-4976-8cce-a39fa2c4b007&unique=prints", "collector_number": "105", "digital": false, "rarity": "common", "flavor_text": "With the harvest of Domri's spark, the Elderspell began to fuel Bolas's ascension to godhood.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Kieran Yanner", "artist_ids": ["aa7e89ed-d294-4633-9057-ce04dacfcfa4"], "illustration_id": "45e4a409-0afb-4483-a5f6-fd4243b42940", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": true, "edhrec_rank": 3622, "penny_rank": 5232, "preview": {"source": "Strictly Better MTG", "source_uri": "https://youtu.be/Cmzd_0_2HwI", "previewed_at": "2019-04-15"}, "prices": {"usd": "0.03", "usd_foil": "0.26", "usd_etched": null, "eur": "0.09", "eur_foil": "0.48", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=461032", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Spark+Harvest&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Spark+Harvest&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Spark+Harvest"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/188610?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Spark+Harvest&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/71816?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "fafaa798-e534-4cd0-b369-9e767a02fe3d", "oracle_id": "25a20f94-1703-4bcd-862d-f2db7014ba90", "multiverse_ids": [380506], "mtgo_id": 52038, "mtgo_foil_id": 52039, "tcgplayer_id": 82355, "cardmarket_id": 266713, "name": "Spiteful Blow", "lang": "en", "released_at": "2014-05-02", "uri": "https://api.scryfall.com/cards/fafaa798-e534-4cd0-b369-9e767a02fe3d", "scryfall_uri": "https://scryfall.com/card/jou/83/spiteful-blow?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/f/a/fafaa798-e534-4cd0-b369-9e767a02fe3d.jpg?1593095848", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/a/fafaa798-e534-4cd0-b369-9e767a02fe3d.jpg?1593095848", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/f/a/fafaa798-e534-4cd0-b369-9e767a02fe3d.jpg?1593095848", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/f/a/fafaa798-e534-4cd0-b369-9e767a02fe3d.png?1593095848", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/a/fafaa798-e534-4cd0-b369-9e767a02fe3d.jpg?1593095848", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/f/a/fafaa798-e534-4cd0-b369-9e767a02fe3d.jpg?1593095848"}, "mana_cost": "{4}{B}{B}", "cmc": 6.0, "type_line": "Sorcery", "oracle_text": "Destroy target creature and target land.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "204d2dca-1887-4721-9558-164aa7bbeb4f", "set": "jou", "set_name": "Journey into Nyx", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/204d2dca-1887-4721-9558-164aa7bbeb4f", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ajou&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/jou?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/fafaa798-e534-4cd0-b369-9e767a02fe3d/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A25a20f94-1703-4bcd-862d-f2db7014ba90&unique=prints", "collector_number": "83", "digital": false, "rarity": "uncommon", "flavor_text": "\"Only a fool takes Phenax at his word. What do you expect from a god born of lies and betrayal?\"\n\u2014Verenes, priest of Iroas", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Jason Chan", "artist_ids": ["8062d5a9-51b6-4822-933f-fa9e9dba8416"], "illustration_id": "a627de9d-e45e-4402-9ddf-b51f79b4186a", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 18882, "penny_rank": 12507, "prices": {"usd": "0.08", "usd_foil": "0.24", "usd_etched": null, "eur": "0.02", "eur_foil": "0.29", "tix": "0.05"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=380506", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Spiteful+Blow&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Spiteful+Blow&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Spiteful+Blow"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/82355?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Spiteful+Blow&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/52038?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "de42a771-4f5c-4295-b070-8cb857a0279e", "oracle_id": "142af8f1-6d6b-4043-8cc4-6632481972c1", "multiverse_ids": [221557], "mtgo_id": 39577, "mtgo_foil_id": 39578, "tcgplayer_id": 39044, "cardmarket_id": 245284, "name": "Spread the Sickness", "lang": "en", "released_at": "2011-02-04", "uri": "https://api.scryfall.com/cards/de42a771-4f5c-4295-b070-8cb857a0279e", "scryfall_uri": "https://scryfall.com/card/mbs/56/spread-the-sickness?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/d/e/de42a771-4f5c-4295-b070-8cb857a0279e.jpg?1562615413", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/e/de42a771-4f5c-4295-b070-8cb857a0279e.jpg?1562615413", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/d/e/de42a771-4f5c-4295-b070-8cb857a0279e.jpg?1562615413", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/d/e/de42a771-4f5c-4295-b070-8cb857a0279e.png?1562615413", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/e/de42a771-4f5c-4295-b070-8cb857a0279e.jpg?1562615413", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/d/e/de42a771-4f5c-4295-b070-8cb857a0279e.jpg?1562615413"}, "mana_cost": "{4}{B}", "cmc": 5.0, "type_line": "Sorcery", "oracle_text": "Destroy target creature, then proliferate. (Choose any number of permanents and/or players, then give each another counter of each kind already there.)", "colors": ["B"], "color_identity": ["B"], "keywords": ["Proliferate"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "f46c57e3-9301-4006-a6ca-06f3f65961fb", "set": "mbs", "set_name": "Mirrodin Besieged", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/f46c57e3-9301-4006-a6ca-06f3f65961fb", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ambs&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/mbs?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/de42a771-4f5c-4295-b070-8cb857a0279e/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A142af8f1-6d6b-4043-8cc4-6632481972c1&unique=prints", "collector_number": "56", "digital": false, "rarity": "common", "watermark": "phyrexian", "flavor_text": "Life is ephemeral. Phyrexia is eternal.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Jaime Jones", "artist_ids": ["92f6c2c1-fa57-4b52-99c4-0fd866c13dc9"], "illustration_id": "717fc5c9-7963-451b-bef5-06ab1dee45e6", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 5692, "penny_rank": 4812, "prices": {"usd": "0.17", "usd_foil": "0.55", "usd_etched": null, "eur": "0.05", "eur_foil": "0.44", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=221557", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Spread+the+Sickness&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Spread+the+Sickness&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Spread+the+Sickness"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/39044?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Spread+the+Sickness&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/39577?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "6723e552-baf5-4b6a-8af6-843fd8597f6c", "oracle_id": "6c9d3ad0-1ede-41de-a1b4-15de9c728216", "multiverse_ids": [109710], "mtgo_id": 25515, "mtgo_foil_id": 25516, "tcgplayer_id": 14376, "cardmarket_id": 13995, "name": "Strangling Soot", "lang": "en", "released_at": "2006-10-06", "uri": "https://api.scryfall.com/cards/6723e552-baf5-4b6a-8af6-843fd8597f6c", "scryfall_uri": "https://scryfall.com/card/tsp/132/strangling-soot?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/6/7/6723e552-baf5-4b6a-8af6-843fd8597f6c.jpg?1562916570", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/7/6723e552-baf5-4b6a-8af6-843fd8597f6c.jpg?1562916570", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/6/7/6723e552-baf5-4b6a-8af6-843fd8597f6c.jpg?1562916570", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/6/7/6723e552-baf5-4b6a-8af6-843fd8597f6c.png?1562916570", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/7/6723e552-baf5-4b6a-8af6-843fd8597f6c.jpg?1562916570", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/6/7/6723e552-baf5-4b6a-8af6-843fd8597f6c.jpg?1562916570"}, "mana_cost": "{2}{B}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Destroy target creature with toughness 3 or less.\nFlashback {5}{R} (You may cast this card from your graveyard for its flashback cost. Then exile it.)", "colors": ["B"], "color_identity": ["B", "R"], "keywords": ["Flashback"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "c1d109bc-ffd8-428f-8d7d-3f8d7e648046", "set": "tsp", "set_name": "Time Spiral", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/c1d109bc-ffd8-428f-8d7d-3f8d7e648046", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Atsp&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/tsp?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/6723e552-baf5-4b6a-8af6-843fd8597f6c/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A6c9d3ad0-1ede-41de-a1b4-15de9c728216&unique=prints", "collector_number": "132", "digital": false, "rarity": "common", "flavor_text": "\"What good is your blade without your breath?\"\n\u2014Greht, Gathan warlord", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Jim Murray", "artist_ids": ["1c906f9b-5bbe-4643-8f5c-90eb1c7f0c43"], "illustration_id": "e6d97e9b-a12c-4234-8945-e10c3c92e5f0", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 20992, "penny_rank": 8861, "prices": {"usd": "0.04", "usd_foil": "0.21", "usd_etched": null, "eur": "0.03", "eur_foil": "0.10", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=109710", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Strangling+Soot&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Strangling+Soot&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Strangling+Soot"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/14376?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Strangling+Soot&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/25515?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "dbbf00b3-2a1b-4ad3-8a5b-deec9e08a231", "oracle_id": "1b9c9083-62c3-46fd-a2a0-6de7de88a3c3", "multiverse_ids": [20364], "tcgplayer_id": 390, "cardmarket_id": 14525, "name": "Stream of Acid", "lang": "en", "released_at": "1999-07-01", "uri": "https://api.scryfall.com/cards/dbbf00b3-2a1b-4ad3-8a5b-deec9e08a231", "scryfall_uri": "https://scryfall.com/card/s99/91/stream-of-acid?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/d/b/dbbf00b3-2a1b-4ad3-8a5b-deec9e08a231.jpg?1562875294", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/b/dbbf00b3-2a1b-4ad3-8a5b-deec9e08a231.jpg?1562875294", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/d/b/dbbf00b3-2a1b-4ad3-8a5b-deec9e08a231.jpg?1562875294", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/d/b/dbbf00b3-2a1b-4ad3-8a5b-deec9e08a231.png?1562875294", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/b/dbbf00b3-2a1b-4ad3-8a5b-deec9e08a231.jpg?1562875294", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/d/b/dbbf00b3-2a1b-4ad3-8a5b-deec9e08a231.jpg?1562875294"}, "mana_cost": "{2}{B}{B}", "cmc": 4.0, "type_line": "Sorcery", "oracle_text": "Destroy target land or nonblack creature.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "7e345c51-7a88-4c7a-8184-4e1ba493b40d", "set": "s99", "set_name": "Starter 1999", "set_type": "starter", "set_uri": "https://api.scryfall.com/sets/7e345c51-7a88-4c7a-8184-4e1ba493b40d", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3As99&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/s99?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/dbbf00b3-2a1b-4ad3-8a5b-deec9e08a231/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A1b9c9083-62c3-46fd-a2a0-6de7de88a3c3&unique=prints", "collector_number": "91", "digital": false, "rarity": "uncommon", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "DiTerlizzi", "artist_ids": ["ed44dce4-30cf-4c2c-b2e1-a19ba2295690"], "illustration_id": "a1b49d60-d690-4d51-bd23-17dee65c1829", "border_color": "white", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 20704, "prices": {"usd": "3.64", "usd_foil": null, "usd_etched": null, "eur": "3.99", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=20364", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Stream+of+Acid&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Stream+of+Acid&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Stream+of+Acid"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/390?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Stream+of+Acid&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Stream+of+Acid&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "993c9028-9b1b-4903-81b2-3cf4f37b7229", "oracle_id": "46ed38d1-e642-4cea-99ed-a9c17fd982b1", "multiverse_ids": [386676], "mtgo_id": 54134, "mtgo_foil_id": 54135, "tcgplayer_id": 92811, "cardmarket_id": 269198, "name": "Sultai Charm", "lang": "en", "released_at": "2014-09-26", "uri": "https://api.scryfall.com/cards/993c9028-9b1b-4903-81b2-3cf4f37b7229", "scryfall_uri": "https://scryfall.com/card/ktk/204/sultai-charm?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/9/9/993c9028-9b1b-4903-81b2-3cf4f37b7229.jpg?1562790829", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/9/993c9028-9b1b-4903-81b2-3cf4f37b7229.jpg?1562790829", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/9/9/993c9028-9b1b-4903-81b2-3cf4f37b7229.jpg?1562790829", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/9/9/993c9028-9b1b-4903-81b2-3cf4f37b7229.png?1562790829", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/9/993c9028-9b1b-4903-81b2-3cf4f37b7229.jpg?1562790829", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/9/9/993c9028-9b1b-4903-81b2-3cf4f37b7229.jpg?1562790829"}, "mana_cost": "{B}{G}{U}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Choose one \u2014\n\u2022 Destroy target monocolored creature.\n\u2022 Destroy target artifact or enchantment.\n\u2022 Draw two cards, then discard a card.", "colors": ["B", "G", "U"], "color_identity": ["B", "G", "U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "6c7a715c-ded9-449e-89b0-c665773e9c3c", "set": "ktk", "set_name": "Khans of Tarkir", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/6c7a715c-ded9-449e-89b0-c665773e9c3c", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aktk&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ktk?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/993c9028-9b1b-4903-81b2-3cf4f37b7229/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A46ed38d1-e642-4cea-99ed-a9c17fd982b1&unique=prints", "collector_number": "204", "digital": false, "rarity": "uncommon", "watermark": "sultai", "flavor_text": "\"Strike,\" the fumes hiss. \"Raise an empire with your ambition.\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Mathias Kollros", "artist_ids": ["2ae0dd12-047c-4efb-80d7-bccc3bac5fba"], "illustration_id": "8f7d2065-850b-43f5-935a-7b0c814a0121", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 2374, "penny_rank": 908, "prices": {"usd": "0.10", "usd_foil": "0.41", "usd_etched": null, "eur": "0.13", "eur_foil": "0.25", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=386676", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Sultai+Charm&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Sultai+Charm&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Sultai+Charm"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/92811?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Sultai+Charm&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/54134?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "0c72495e-3c03-4dff-b671-47764af5058d", "oracle_id": "46ed38d1-e642-4cea-99ed-a9c17fd982b1", "multiverse_ids": [], "tcgplayer_id": 94704, "cardmarket_id": 269586, "name": "Sultai Charm", "lang": "en", "released_at": "2014-09-26", "uri": "https://api.scryfall.com/cards/0c72495e-3c03-4dff-b671-47764af5058d", "scryfall_uri": "https://scryfall.com/card/pktk/204/sultai-charm?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/0/c/0c72495e-3c03-4dff-b671-47764af5058d.jpg?1562701596", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/c/0c72495e-3c03-4dff-b671-47764af5058d.jpg?1562701596", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/0/c/0c72495e-3c03-4dff-b671-47764af5058d.jpg?1562701596", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/0/c/0c72495e-3c03-4dff-b671-47764af5058d.png?1562701596", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/c/0c72495e-3c03-4dff-b671-47764af5058d.jpg?1562701596", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/0/c/0c72495e-3c03-4dff-b671-47764af5058d.jpg?1562701596"}, "mana_cost": "{B}{G}{U}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Choose one \u2014\n\u2022 Destroy target monocolored creature.\n\u2022 Destroy target artifact or enchantment.\n\u2022 Draw two cards, then discard a card.", "colors": ["B", "G", "U"], "color_identity": ["B", "G", "U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": true, "nonfoil": false, "finishes": ["foil"], "oversized": false, "promo": true, "reprint": true, "variation": false, "set_id": "95318a25-1983-40ae-b315-140160078e3c", "set": "pktk", "set_name": "Khans of Tarkir Promos", "set_type": "promo", "set_uri": "https://api.scryfall.com/sets/95318a25-1983-40ae-b315-140160078e3c", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Apktk&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/pktk?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/0c72495e-3c03-4dff-b671-47764af5058d/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A46ed38d1-e642-4cea-99ed-a9c17fd982b1&unique=prints", "collector_number": "204", "digital": false, "rarity": "uncommon", "watermark": "sultai", "flavor_text": "\"Strike,\" the fumes hiss. \"Raise an empire with your ambition.\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Ryan Yee", "artist_ids": ["8955dca7-3e37-42b4-83a9-167c78a2178f"], "illustration_id": "2b34a2e3-a7df-45dd-9323-0bcdd4d0425d", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "promo_types": ["giftbox", "setpromo"], "edhrec_rank": 2374, "penny_rank": 908, "prices": {"usd": null, "usd_foil": "0.33", "usd_etched": null, "eur": null, "eur_foil": "4.98", "tix": null}, "related_uris": {"tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Sultai+Charm&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Sultai+Charm&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Sultai+Charm"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/94704?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Sultai+Charm&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Sultai+Charm&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "ee507688-9890-47c4-bb04-43c51eb48e22", "oracle_id": "2a33d0ea-9b19-4fde-8e7a-2a9d17f716ea", "multiverse_ids": [534794], "mtgo_id": 93002, "arena_id": 78365, "tcgplayer_id": 247993, "cardmarket_id": 574811, "name": "Sungold Barrage", "lang": "en", "released_at": "2021-09-24", "uri": "https://api.scryfall.com/cards/ee507688-9890-47c4-bb04-43c51eb48e22", "scryfall_uri": "https://scryfall.com/card/mid/36/sungold-barrage?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/e/e/ee507688-9890-47c4-bb04-43c51eb48e22.jpg?1634348527", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/e/ee507688-9890-47c4-bb04-43c51eb48e22.jpg?1634348527", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/e/e/ee507688-9890-47c4-bb04-43c51eb48e22.jpg?1634348527", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/e/e/ee507688-9890-47c4-bb04-43c51eb48e22.png?1634348527", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/e/ee507688-9890-47c4-bb04-43c51eb48e22.jpg?1634348527", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/e/e/ee507688-9890-47c4-bb04-43c51eb48e22.jpg?1634348527"}, "mana_cost": "{2}{W}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Destroy target creature with toughness 4 or greater.", "colors": ["W"], "color_identity": ["W"], "keywords": [], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "44b8eb8f-fa23-401a-98b5-1fbb9871128e", "set": "mid", "set_name": "Innistrad: Midnight Hunt", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/44b8eb8f-fa23-401a-98b5-1fbb9871128e", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Amid&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/mid?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/ee507688-9890-47c4-bb04-43c51eb48e22/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A2a33d0ea-9b19-4fde-8e7a-2a9d17f716ea&unique=prints", "collector_number": "36", "digital": false, "rarity": "common", "flavor_text": "Heida allowed herself a moment of satisfaction as she watched the beast fall, then turned to seek another foe. It would be a long, long night.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Leanna Crossan", "artist_ids": ["976cfe82-042e-4c2a-b762-2bc3e86cb6d0"], "illustration_id": "b8e4747b-8545-41f5-9274-a138030ee73e", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 14135, "preview": {"source": "Stephen Croke", "source_uri": "https://twitter.com/crokeyz/status/1434823316620075013", "previewed_at": "2021-09-06"}, "prices": {"usd": "0.01", "usd_foil": "0.05", "usd_etched": null, "eur": "0.02", "eur_foil": "0.15", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=534794", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Sungold+Barrage&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Sungold+Barrage&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Sungold+Barrage"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/247993?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Sungold+Barrage&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/93002?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "114366f3-237f-4f96-b644-5bd82d97b18b", "oracle_id": "5c9a2789-4b8c-4706-a95a-99561cd6d09c", "multiverse_ids": [394720], "mtgo_id": 56410, "mtgo_foil_id": 56411, "tcgplayer_id": 96521, "cardmarket_id": 273185, "name": "Surge of Righteousness", "lang": "en", "released_at": "2015-03-27", "uri": "https://api.scryfall.com/cards/114366f3-237f-4f96-b644-5bd82d97b18b", "scryfall_uri": "https://scryfall.com/card/dtk/42/surge-of-righteousness?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/1/1/114366f3-237f-4f96-b644-5bd82d97b18b.jpg?1562782657", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/1/114366f3-237f-4f96-b644-5bd82d97b18b.jpg?1562782657", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/1/1/114366f3-237f-4f96-b644-5bd82d97b18b.jpg?1562782657", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/1/1/114366f3-237f-4f96-b644-5bd82d97b18b.png?1562782657", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/1/114366f3-237f-4f96-b644-5bd82d97b18b.jpg?1562782657", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/1/1/114366f3-237f-4f96-b644-5bd82d97b18b.jpg?1562782657"}, "mana_cost": "{1}{W}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Destroy target black or red creature that's attacking or blocking. You gain 2 life.", "colors": ["W"], "color_identity": ["W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "7e72625f-f320-4552-a719-d11e2f1853bd", "set": "dtk", "set_name": "Dragons of Tarkir", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/7e72625f-f320-4552-a719-d11e2f1853bd", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Adtk&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/dtk?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/114366f3-237f-4f96-b644-5bd82d97b18b/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A5c9a2789-4b8c-4706-a95a-99561cd6d09c&unique=prints", "collector_number": "42", "digital": false, "rarity": "uncommon", "flavor_text": "Though she stood alone, she struck with the force of an army.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Marco Nelor", "artist_ids": ["c0f95ec3-c7ca-47d6-be5c-b37dfce37be5"], "illustration_id": "dbb97b53-068f-4f90-b7b6-3647e61c0abb", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 22014, "penny_rank": 6399, "prices": {"usd": "0.10", "usd_foil": "0.68", "usd_etched": null, "eur": "0.02", "eur_foil": "0.15", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=394720", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Surge+of+Righteousness&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Surge+of+Righteousness&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Surge+of+Righteousness"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/96521?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Surge+of+Righteousness&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/56410?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "cec3a260-6c50-401d-a0ff-bf49a973e1a1", "oracle_id": "7bb5c5af-6943-4958-a666-0c322d5b9f33", "multiverse_ids": [41136], "mtgo_id": 17907, "mtgo_foil_id": 17908, "tcgplayer_id": 10572, "cardmarket_id": 1805, "name": "Swat", "lang": "en", "released_at": "2002-10-07", "uri": "https://api.scryfall.com/cards/cec3a260-6c50-401d-a0ff-bf49a973e1a1", "scryfall_uri": "https://scryfall.com/card/ons/174/swat?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/c/e/cec3a260-6c50-401d-a0ff-bf49a973e1a1.jpg?1562943805", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/e/cec3a260-6c50-401d-a0ff-bf49a973e1a1.jpg?1562943805", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/c/e/cec3a260-6c50-401d-a0ff-bf49a973e1a1.jpg?1562943805", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/c/e/cec3a260-6c50-401d-a0ff-bf49a973e1a1.png?1562943805", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/e/cec3a260-6c50-401d-a0ff-bf49a973e1a1.jpg?1562943805", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/c/e/cec3a260-6c50-401d-a0ff-bf49a973e1a1.jpg?1562943805"}, "mana_cost": "{1}{B}{B}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Destroy target creature with power 2 or less.\nCycling {2} ({2}, Discard this card: Draw a card.)", "colors": ["B"], "color_identity": ["B"], "keywords": ["Cycling"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "914a6c6d-cb3b-45e8-a2db-9978a2339faf", "set": "ons", "set_name": "Onslaught", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/914a6c6d-cb3b-45e8-a2db-9978a2339faf", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aons&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ons?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/cec3a260-6c50-401d-a0ff-bf49a973e1a1/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A7bb5c5af-6943-4958-a666-0c322d5b9f33&unique=prints", "collector_number": "174", "digital": false, "rarity": "common", "flavor_text": "Few who cross Phage have the chance to repeat the mistake.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "rk post", "artist_ids": ["81ae0f3f-1d88-4125-9aeb-b15b4c734c82"], "illustration_id": "e68bd0e1-43e6-4115-971c-35e86cdbb74b", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 17641, "penny_rank": 5363, "prices": {"usd": "0.05", "usd_foil": "0.44", "usd_etched": null, "eur": "0.05", "eur_foil": "0.49", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=41136", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Swat&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Swat&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Swat"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/10572?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Swat&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/17907?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "947b8923-d9d6-4dd8-928b-91be9105ffb4", "oracle_id": "7bb5c5af-6943-4958-a666-0c322d5b9f33", "multiverse_ids": [9694], "mtgo_id": 12509, "mtgo_foil_id": 12510, "tcgplayer_id": 6393, "cardmarket_id": 10626, "name": "Swat", "lang": "en", "released_at": "1999-02-15", "uri": "https://api.scryfall.com/cards/947b8923-d9d6-4dd8-928b-91be9105ffb4", "scryfall_uri": "https://scryfall.com/card/ulg/69/swat?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/9/4/947b8923-d9d6-4dd8-928b-91be9105ffb4.jpg?1562863743", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/4/947b8923-d9d6-4dd8-928b-91be9105ffb4.jpg?1562863743", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/9/4/947b8923-d9d6-4dd8-928b-91be9105ffb4.jpg?1562863743", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/9/4/947b8923-d9d6-4dd8-928b-91be9105ffb4.png?1562863743", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/4/947b8923-d9d6-4dd8-928b-91be9105ffb4.jpg?1562863743", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/9/4/947b8923-d9d6-4dd8-928b-91be9105ffb4.jpg?1562863743"}, "mana_cost": "{1}{B}{B}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Destroy target creature with power 2 or less.\nCycling {2} ({2}, Discard this card: Draw a card.)", "colors": ["B"], "color_identity": ["B"], "keywords": ["Cycling"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "78ced61b-4b8a-4b33-b6b2-f5bd66f1a75a", "set": "ulg", "set_name": "Urza's Legacy", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/78ced61b-4b8a-4b33-b6b2-f5bd66f1a75a", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aulg&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ulg?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/947b8923-d9d6-4dd8-928b-91be9105ffb4/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A7bb5c5af-6943-4958-a666-0c322d5b9f33&unique=prints", "collector_number": "69", "digital": false, "rarity": "common", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Daren Bader", "artist_ids": ["7da1a585-c875-45e4-b322-5da9e8e1f651"], "illustration_id": "f8ce1650-873b-4c39-81cc-f56ae8ab747d", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 17641, "penny_rank": 5363, "prices": {"usd": "0.06", "usd_foil": "2.94", "usd_etched": null, "eur": "0.05", "eur_foil": "1.40", "tix": "0.07"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=9694", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Swat&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Swat&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Swat"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/6393?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Swat&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/12509?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "904cb2f5-eb62-4416-8236-d2fbeadf1dc4", "oracle_id": "82b0c006-bf58-4f05-8801-e5d2857a6fd6", "multiverse_ids": [398481], "mtgo_id": 57858, "mtgo_foil_id": 57859, "tcgplayer_id": 100350, "cardmarket_id": 283581, "name": "Swift Reckoning", "lang": "en", "released_at": "2015-07-17", "uri": "https://api.scryfall.com/cards/904cb2f5-eb62-4416-8236-d2fbeadf1dc4", "scryfall_uri": "https://scryfall.com/card/ori/35/swift-reckoning?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/9/0/904cb2f5-eb62-4416-8236-d2fbeadf1dc4.jpg?1562031231", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/0/904cb2f5-eb62-4416-8236-d2fbeadf1dc4.jpg?1562031231", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/9/0/904cb2f5-eb62-4416-8236-d2fbeadf1dc4.jpg?1562031231", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/9/0/904cb2f5-eb62-4416-8236-d2fbeadf1dc4.png?1562031231", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/0/904cb2f5-eb62-4416-8236-d2fbeadf1dc4.jpg?1562031231", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/9/0/904cb2f5-eb62-4416-8236-d2fbeadf1dc4.jpg?1562031231"}, "mana_cost": "{1}{W}", "cmc": 2.0, "type_line": "Sorcery", "oracle_text": "Spell mastery \u2014 If there are two or more instant and/or sorcery cards in your graveyard, you may cast Swift Reckoning as though it had flash. (You may cast it any time you could cast an instant.)\nDestroy target tapped creature.", "colors": ["W"], "color_identity": ["W"], "keywords": ["Spell mastery"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "0eeb9a9a-20ac-404d-b55f-aeb7a43a7f62", "set": "ori", "set_name": "Magic Origins", "set_type": "core", "set_uri": "https://api.scryfall.com/sets/0eeb9a9a-20ac-404d-b55f-aeb7a43a7f62", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aori&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ori?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/904cb2f5-eb62-4416-8236-d2fbeadf1dc4/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A82b0c006-bf58-4f05-8801-e5d2857a6fd6&unique=prints", "collector_number": "35", "digital": false, "rarity": "uncommon", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Chris Rahn", "artist_ids": ["7742047e-0f80-4c0f-a530-d07460165e86"], "illustration_id": "9a72f885-dc0f-4983-8526-660aca15c4b5", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 17668, "penny_rank": 2864, "prices": {"usd": "0.11", "usd_foil": "0.33", "usd_etched": null, "eur": "0.02", "eur_foil": "0.45", "tix": "0.04"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=398481", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Swift+Reckoning&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Swift+Reckoning&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Swift+Reckoning"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/100350?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Swift+Reckoning&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/57858?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "a90c1ad0-83bd-471c-8d4c-e65bc2abaa18", "oracle_id": "5820d760-8ed7-4abf-a959-c06ed86a3730", "multiverse_ids": [485363], "mtgo_id": 81307, "arena_id": 71822, "tcgplayer_id": 215854, "cardmarket_id": 472214, "name": "Swift Response", "lang": "en", "released_at": "2020-07-03", "uri": "https://api.scryfall.com/cards/a90c1ad0-83bd-471c-8d4c-e65bc2abaa18", "scryfall_uri": "https://scryfall.com/card/m21/40/swift-response?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/a/9/a90c1ad0-83bd-471c-8d4c-e65bc2abaa18.jpg?1594735305", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/9/a90c1ad0-83bd-471c-8d4c-e65bc2abaa18.jpg?1594735305", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/a/9/a90c1ad0-83bd-471c-8d4c-e65bc2abaa18.jpg?1594735305", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/a/9/a90c1ad0-83bd-471c-8d4c-e65bc2abaa18.png?1594735305", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/9/a90c1ad0-83bd-471c-8d4c-e65bc2abaa18.jpg?1594735305", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/a/9/a90c1ad0-83bd-471c-8d4c-e65bc2abaa18.jpg?1594735305"}, "mana_cost": "{1}{W}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Destroy target tapped creature.", "colors": ["W"], "color_identity": ["W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "bc94aba1-7376-4e02-a12d-3a2efb66ab0f", "set": "m21", "set_name": "Core Set 2021", "set_type": "core", "set_uri": "https://api.scryfall.com/sets/bc94aba1-7376-4e02-a12d-3a2efb66ab0f", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Am21&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/m21?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/a90c1ad0-83bd-471c-8d4c-e65bc2abaa18/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A5820d760-8ed7-4abf-a959-c06ed86a3730&unique=prints", "collector_number": "40", "digital": false, "rarity": "common", "flavor_text": "\"There's nothing quite as satisfying as delivering a good kick to the face.\"\n\u2014Adrasteia, Akroan captain", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Deruchenko Alexander", "artist_ids": ["806f6ff9-6ed4-4e93-998a-a562c0b792e6"], "illustration_id": "10a9ad7b-b342-432b-aafb-417407fc5b46", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 10020, "penny_rank": 7510, "preview": {"source": "Wizards of the Coast", "source_uri": "", "previewed_at": "2020-06-16"}, "prices": {"usd": "0.03", "usd_foil": "0.20", "usd_etched": null, "eur": "0.02", "eur_foil": "0.10", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=485363", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Swift+Response&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Swift+Response&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Swift+Response"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/215854?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Swift+Response&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/81307?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "66fbde22-d98d-4f12-b4d8-1bad2a9878b2", "oracle_id": "c60b8edd-aa3f-48ea-b202-d10599f91d9d", "multiverse_ids": [447176], "mtgo_id": 68241, "arena_id": 67760, "tcgplayer_id": 168447, "cardmarket_id": 359595, "name": "Take Vengeance", "lang": "en", "released_at": "2018-07-13", "uri": "https://api.scryfall.com/cards/66fbde22-d98d-4f12-b4d8-1bad2a9878b2", "scryfall_uri": "https://scryfall.com/card/m19/40/take-vengeance?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/6/6/66fbde22-d98d-4f12-b4d8-1bad2a9878b2.jpg?1562302645", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/6/66fbde22-d98d-4f12-b4d8-1bad2a9878b2.jpg?1562302645", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/6/6/66fbde22-d98d-4f12-b4d8-1bad2a9878b2.jpg?1562302645", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/6/6/66fbde22-d98d-4f12-b4d8-1bad2a9878b2.png?1562302645", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/6/66fbde22-d98d-4f12-b4d8-1bad2a9878b2.jpg?1562302645", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/6/6/66fbde22-d98d-4f12-b4d8-1bad2a9878b2.jpg?1562302645"}, "mana_cost": "{1}{W}", "cmc": 2.0, "type_line": "Sorcery", "oracle_text": "Destroy target tapped creature.", "colors": ["W"], "color_identity": ["W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "2f5f2509-56db-414d-9a7e-6e312ec3760c", "set": "m19", "set_name": "Core Set 2019", "set_type": "core", "set_uri": "https://api.scryfall.com/sets/2f5f2509-56db-414d-9a7e-6e312ec3760c", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Am19&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/m19?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/66fbde22-d98d-4f12-b4d8-1bad2a9878b2/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ac60b8edd-aa3f-48ea-b202-d10599f91d9d&unique=prints", "collector_number": "40", "digital": false, "rarity": "common", "flavor_text": "\"Your death will be a balm, your passing a welcome revision, and all will sigh with peace to know of your demise.\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Randy Vargas", "artist_ids": ["d20672ca-0555-4238-a984-fd171d36b247"], "illustration_id": "8bef7261-4a53-481d-9939-2ea0136eb1b5", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 13562, "penny_rank": 12011, "prices": {"usd": "0.02", "usd_foil": "0.14", "usd_etched": null, "eur": "0.25", "eur_foil": "0.08", "tix": "0.04"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=447176", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Take+Vengeance&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Take+Vengeance&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Take+Vengeance"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/168447?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Take+Vengeance&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/68241?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "bc5fa34b-95c6-4e02-9e15-3f595f744741", "oracle_id": "28ea1f58-3310-4cf1-a834-40f2cc3b6898", "multiverse_ids": [74481], "mtgo_id": 21743, "mtgo_foil_id": 21744, "tcgplayer_id": 12372, "cardmarket_id": 12930, "name": "Terashi's Verdict", "lang": "en", "released_at": "2005-02-04", "uri": "https://api.scryfall.com/cards/bc5fa34b-95c6-4e02-9e15-3f595f744741", "scryfall_uri": "https://scryfall.com/card/bok/27/terashis-verdict?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/b/c/bc5fa34b-95c6-4e02-9e15-3f595f744741.jpg?1562879427", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/c/bc5fa34b-95c6-4e02-9e15-3f595f744741.jpg?1562879427", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/b/c/bc5fa34b-95c6-4e02-9e15-3f595f744741.jpg?1562879427", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/b/c/bc5fa34b-95c6-4e02-9e15-3f595f744741.png?1562879427", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/c/bc5fa34b-95c6-4e02-9e15-3f595f744741.jpg?1562879427", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/b/c/bc5fa34b-95c6-4e02-9e15-3f595f744741.jpg?1562879427"}, "mana_cost": "{1}{W}", "cmc": 2.0, "type_line": "Instant \u2014 Arcane", "oracle_text": "Destroy target attacking creature with power 3 or less.", "colors": ["W"], "color_identity": ["W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "d4b88587-a1f5-4b47-9e24-78ec9e57bd0e", "set": "bok", "set_name": "Betrayers of Kamigawa", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/d4b88587-a1f5-4b47-9e24-78ec9e57bd0e", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Abok&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/bok?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/bc5fa34b-95c6-4e02-9e15-3f595f744741/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A28ea1f58-3310-4cf1-a834-40f2cc3b6898&unique=prints", "collector_number": "27", "digital": false, "rarity": "uncommon", "flavor_text": "It was as though the sky opened its eyes and found what it saw displeasing.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Ron Spears", "artist_ids": ["fce9030b-86bd-4439-b06a-920a1eeb184c"], "illustration_id": "6e749591-bb41-4fcf-bc8c-fcd27a1572ad", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 18505, "penny_rank": 6458, "prices": {"usd": "0.18", "usd_foil": "0.44", "usd_etched": null, "eur": "0.14", "eur_foil": "0.30", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=74481", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Terashi%27s+Verdict&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Terashi%27s+Verdict&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Terashi%27s+Verdict"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/12372?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Terashi%27s+Verdict&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/21743?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "3ddb6d98-3a3a-4332-a64e-97aec71777a4", "oracle_id": "b69e68e7-0612-40f8-a40a-9c4e77653442", "multiverse_ids": [525605], "mtgo_id": 91121, "tcgplayer_id": 240456, "tcgplayer_etched_id": 240457, "cardmarket_id": 566945, "name": "Terminal Agony", "lang": "en", "released_at": "2021-06-18", "uri": "https://api.scryfall.com/cards/3ddb6d98-3a3a-4332-a64e-97aec71777a4", "scryfall_uri": "https://scryfall.com/card/mh2/424/terminal-agony?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/3/d/3ddb6d98-3a3a-4332-a64e-97aec71777a4.jpg?1626103523", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/d/3ddb6d98-3a3a-4332-a64e-97aec71777a4.jpg?1626103523", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/3/d/3ddb6d98-3a3a-4332-a64e-97aec71777a4.jpg?1626103523", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/3/d/3ddb6d98-3a3a-4332-a64e-97aec71777a4.png?1626103523", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/d/3ddb6d98-3a3a-4332-a64e-97aec71777a4.jpg?1626103523", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/3/d/3ddb6d98-3a3a-4332-a64e-97aec71777a4.jpg?1626103523"}, "mana_cost": "{2}{B}{R}", "cmc": 4.0, "type_line": "Sorcery", "oracle_text": "Destroy target creature.\nMadness {B}{R} (If you discard this card, discard it into exile. When you do, cast it for its madness cost or put it into your graveyard.)", "colors": ["B", "R"], "color_identity": ["B", "R"], "keywords": ["Madness"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil", "etched"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "c1c7eb8c-f205-40ab-a609-767cb296544e", "set": "mh2", "set_name": "Modern Horizons 2", "set_type": "draft_innovation", "set_uri": "https://api.scryfall.com/sets/c1c7eb8c-f205-40ab-a609-767cb296544e", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Amh2&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/mh2?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/3ddb6d98-3a3a-4332-a64e-97aec71777a4/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ab69e68e7-0612-40f8-a40a-9c4e77653442&unique=prints", "collector_number": "424", "digital": false, "rarity": "common", "flavor_text": "His mouth melted to slag, yet somehow he kept screaming.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Lucas Graciano", "artist_ids": ["ce98f39c-7cdd-47e6-a520-6c50443bb4c2"], "illustration_id": "70bb4000-60f2-4e18-b5a6-98799fc7e50c", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "promo_types": ["boosterfun"], "edhrec_rank": 4529, "penny_rank": 7069, "prices": {"usd": "0.03", "usd_foil": "0.09", "usd_etched": "0.20", "eur": "0.02", "eur_foil": "0.05", "tix": "0.59"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=525605", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Terminal+Agony&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Terminal+Agony&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Terminal+Agony"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/240456?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Terminal+Agony&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/91121?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "8af2d815-d8b2-42ff-9889-acbe77a42583", "oracle_id": "6257c2fd-005f-41e3-8a72-af76df1eb134", "multiverse_ids": [426019], "mtgo_id": 63519, "mtgo_foil_id": 63520, "tcgplayer_id": 128597, "cardmarket_id": 295824, "name": "Terminate", "lang": "en", "released_at": "2017-03-17", "uri": "https://api.scryfall.com/cards/8af2d815-d8b2-42ff-9889-acbe77a42583", "scryfall_uri": "https://scryfall.com/card/mm3/194/terminate?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/8/a/8af2d815-d8b2-42ff-9889-acbe77a42583.jpg?1593814672", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/a/8af2d815-d8b2-42ff-9889-acbe77a42583.jpg?1593814672", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/8/a/8af2d815-d8b2-42ff-9889-acbe77a42583.jpg?1593814672", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/8/a/8af2d815-d8b2-42ff-9889-acbe77a42583.png?1593814672", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/a/8af2d815-d8b2-42ff-9889-acbe77a42583.jpg?1593814672", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/8/a/8af2d815-d8b2-42ff-9889-acbe77a42583.jpg?1593814672"}, "mana_cost": "{B}{R}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Destroy target creature. It can't be regenerated.", "colors": ["B", "R"], "color_identity": ["B", "R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "02624962-f727-4c31-bbf2-a94fa6c5b653", "set": "mm3", "set_name": "Modern Masters 2017", "set_type": "masters", "set_uri": "https://api.scryfall.com/sets/02624962-f727-4c31-bbf2-a94fa6c5b653", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Amm3&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/mm3?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/8af2d815-d8b2-42ff-9889-acbe77a42583/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A6257c2fd-005f-41e3-8a72-af76df1eb134&unique=prints", "collector_number": "194", "digital": false, "rarity": "uncommon", "flavor_text": "All suns must set.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Lucas Graciano", "artist_ids": ["ce98f39c-7cdd-47e6-a520-6c50443bb4c2"], "illustration_id": "6c1fbb7a-1f06-4ba0-8e79-dc2024197d0d", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 225, "penny_rank": 116, "prices": {"usd": "0.59", "usd_foil": "3.50", "usd_etched": null, "eur": "0.40", "eur_foil": "0.99", "tix": "0.05"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=426019", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Terminate&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Terminate&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Terminate"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/128597?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Terminate&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/63519?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "dc8acab8-4469-4baa-af2f-a3f49b841a55", "oracle_id": "6257c2fd-005f-41e3-8a72-af76df1eb134", "multiverse_ids": [176449], "mtgo_id": 32234, "mtgo_foil_id": 32235, "tcgplayer_id": 31818, "cardmarket_id": 20925, "name": "Terminate", "lang": "en", "released_at": "2009-04-30", "uri": "https://api.scryfall.com/cards/dc8acab8-4469-4baa-af2f-a3f49b841a55", "scryfall_uri": "https://scryfall.com/card/arb/46/terminate?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/d/c/dc8acab8-4469-4baa-af2f-a3f49b841a55.jpg?1562644597", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/c/dc8acab8-4469-4baa-af2f-a3f49b841a55.jpg?1562644597", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/d/c/dc8acab8-4469-4baa-af2f-a3f49b841a55.jpg?1562644597", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/d/c/dc8acab8-4469-4baa-af2f-a3f49b841a55.png?1562644597", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/c/dc8acab8-4469-4baa-af2f-a3f49b841a55.jpg?1562644597", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/d/c/dc8acab8-4469-4baa-af2f-a3f49b841a55.jpg?1562644597"}, "mana_cost": "{B}{R}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Destroy target creature. It can't be regenerated.", "colors": ["B", "R"], "color_identity": ["B", "R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "db486ec5-141d-4781-9ee5-5456926934c1", "set": "arb", "set_name": "Alara Reborn", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/db486ec5-141d-4781-9ee5-5456926934c1", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aarb&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/arb?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/dc8acab8-4469-4baa-af2f-a3f49b841a55/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A6257c2fd-005f-41e3-8a72-af76df1eb134&unique=prints", "collector_number": "46", "digital": false, "rarity": "common", "flavor_text": "\"I've seen death before. My mother succumbing to illness, my comrades bleeding on the battlefield . . . But I'd never seen anything as dreadful as that.\"\n\u2014Taani, berserker of Etlan", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Wayne Reynolds", "artist_ids": ["afc47cec-3ccc-404e-a8c6-4d83dd504271"], "illustration_id": "53031cc2-c5c2-4b11-8f30-819b714b1274", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 225, "penny_rank": 116, "prices": {"usd": "0.61", "usd_foil": "4.19", "usd_etched": null, "eur": "0.61", "eur_foil": "2.35", "tix": "0.04"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=176449", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Terminate&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Terminate&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Terminate"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/31818?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Terminate&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/32234?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "190ca502-672d-4cc0-b6e0-b9de517058d0", "oracle_id": "6257c2fd-005f-41e3-8a72-af76df1eb134", "multiverse_ids": [25871], "mtgo_id": 15309, "mtgo_foil_id": 15310, "tcgplayer_id": 7896, "cardmarket_id": 3383, "name": "Terminate", "lang": "en", "released_at": "2001-02-05", "uri": "https://api.scryfall.com/cards/190ca502-672d-4cc0-b6e0-b9de517058d0", "scryfall_uri": "https://scryfall.com/card/pls/128/terminate?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/1/9/190ca502-672d-4cc0-b6e0-b9de517058d0.jpg?1562900286", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/9/190ca502-672d-4cc0-b6e0-b9de517058d0.jpg?1562900286", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/1/9/190ca502-672d-4cc0-b6e0-b9de517058d0.jpg?1562900286", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/1/9/190ca502-672d-4cc0-b6e0-b9de517058d0.png?1562900286", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/9/190ca502-672d-4cc0-b6e0-b9de517058d0.jpg?1562900286", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/1/9/190ca502-672d-4cc0-b6e0-b9de517058d0.jpg?1562900286"}, "mana_cost": "{B}{R}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Destroy target creature. It can't be regenerated.", "colors": ["B", "R"], "color_identity": ["B", "R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "82dc193b-bd5f-4883-a93f-a4155b467ee0", "set": "pls", "set_name": "Planeshift", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/82dc193b-bd5f-4883-a93f-a4155b467ee0", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Apls&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/pls?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/190ca502-672d-4cc0-b6e0-b9de517058d0/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A6257c2fd-005f-41e3-8a72-af76df1eb134&unique=prints", "collector_number": "128", "digital": false, "rarity": "common", "flavor_text": "Like his mother before him, Darigaaz gave his life defending Dominaria from the tyranny of self-styled \"gods.\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "DiTerlizzi", "artist_ids": ["ed44dce4-30cf-4c2c-b2e1-a19ba2295690"], "illustration_id": "9aa617c0-0471-41e4-a397-200047006af9", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 225, "penny_rank": 116, "prices": {"usd": "0.99", "usd_foil": "57.61", "usd_etched": null, "eur": "0.50", "eur_foil": "16.95", "tix": "0.11"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=25871", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Terminate&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Terminate&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Terminate"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/7896?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Terminate&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/15309?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "54f3c523-09dc-4f2a-9bd9-7614e061de28", "oracle_id": "6257c2fd-005f-41e3-8a72-af76df1eb134", "multiverse_ids": [573051], "tcgplayer_id": 276797, "cardmarket_id": 664921, "name": "Terminate", "lang": "en", "released_at": "2022-07-08", "uri": "https://api.scryfall.com/cards/54f3c523-09dc-4f2a-9bd9-7614e061de28", "scryfall_uri": "https://scryfall.com/card/2x2/389/terminate?utm_source=api", "layout": "normal", "highres_image": false, "image_status": "lowres", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/5/4/54f3c523-09dc-4f2a-9bd9-7614e061de28.jpg?1655823700", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/4/54f3c523-09dc-4f2a-9bd9-7614e061de28.jpg?1655823700", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/5/4/54f3c523-09dc-4f2a-9bd9-7614e061de28.jpg?1655823700", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/5/4/54f3c523-09dc-4f2a-9bd9-7614e061de28.png?1655823700", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/4/54f3c523-09dc-4f2a-9bd9-7614e061de28.jpg?1655823700", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/5/4/54f3c523-09dc-4f2a-9bd9-7614e061de28.jpg?1655823700"}, "mana_cost": "{B}{R}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Destroy target creature. It can't be regenerated.", "colors": ["B", "R"], "color_identity": ["B", "R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "5a645837-b050-449f-ac90-1e7ccbf45031", "set": "2x2", "set_name": "Double Masters 2022", "set_type": "masters", "set_uri": "https://api.scryfall.com/sets/5a645837-b050-449f-ac90-1e7ccbf45031", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3A2x2&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/2x2?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/54f3c523-09dc-4f2a-9bd9-7614e061de28/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A6257c2fd-005f-41e3-8a72-af76df1eb134&unique=prints", "collector_number": "389", "digital": false, "rarity": "uncommon", "flavor_text": "\". . . some sort of giant lizard-bat thing. Yeah, we shot it. No, nothing to clean up.\"\n\u2014Archelle, chief exterminator", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Paolo Parente", "artist_ids": ["d48dd097-720d-476a-8722-6a02854ae28b"], "illustration_id": "92c9255a-0ae6-4354-9b10-d93236e2f798", "border_color": "borderless", "frame": "2015", "frame_effects": ["inverted"], "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "promo_types": ["boosterfun"], "edhrec_rank": 225, "penny_rank": 116, "preview": {"source": "PlayEDH", "source_uri": "https://twitter.com/PlayEDHdiscord/status/1539254959245602821", "previewed_at": "2022-06-21"}, "prices": {"usd": "2.01", "usd_foil": "2.72", "usd_etched": null, "eur": "0.87", "eur_foil": "3.00", "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=573051", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Terminate&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Terminate&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Terminate"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/276797?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Terminate&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Terminate&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "dfd77920-7dbb-4673-9317-095ce9483878", "oracle_id": "6257c2fd-005f-41e3-8a72-af76df1eb134", "multiverse_ids": [], "tcgplayer_id": 38338, "cardmarket_id": 21297, "name": "Terminate", "lang": "en", "released_at": "2009-01-01", "uri": "https://api.scryfall.com/cards/dfd77920-7dbb-4673-9317-095ce9483878", "scryfall_uri": "https://scryfall.com/card/p09/9/terminate?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/d/f/dfd77920-7dbb-4673-9317-095ce9483878.jpg?1575602242", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/f/dfd77920-7dbb-4673-9317-095ce9483878.jpg?1575602242", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/d/f/dfd77920-7dbb-4673-9317-095ce9483878.jpg?1575602242", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/d/f/dfd77920-7dbb-4673-9317-095ce9483878.png?1575602242", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/f/dfd77920-7dbb-4673-9317-095ce9483878.jpg?1575602242", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/d/f/dfd77920-7dbb-4673-9317-095ce9483878.jpg?1575602242"}, "mana_cost": "{B}{R}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Destroy target creature. It can't be regenerated.", "colors": ["B", "R"], "color_identity": ["B", "R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": true, "reprint": true, "variation": false, "set_id": "824eec08-e609-41db-8de4-4e58d8aeb37d", "set": "p09", "set_name": "Magic Player Rewards 2009", "set_type": "promo", "set_uri": "https://api.scryfall.com/sets/824eec08-e609-41db-8de4-4e58d8aeb37d", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ap09&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/p09?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/dfd77920-7dbb-4673-9317-095ce9483878/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A6257c2fd-005f-41e3-8a72-af76df1eb134&unique=prints", "collector_number": "9", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Thomas M. Baxa", "artist_ids": ["ff346569-557d-4043-ae44-97c2c7cabd7d"], "illustration_id": "ab71c0c5-8ca7-43d5-b0bd-a7b55e7e0cf6", "border_color": "black", "frame": "2003", "full_art": true, "textless": true, "booster": false, "story_spotlight": false, "promo_types": ["playerrewards"], "edhrec_rank": 225, "penny_rank": 116, "prices": {"usd": "13.73", "usd_foil": null, "usd_etched": null, "eur": "5.90", "eur_foil": null, "tix": null}, "related_uris": {"tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Terminate&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Terminate&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Terminate"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/38338?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Terminate&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Terminate&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "3d1ccc3b-a6bd-4dc8-b7ba-99172d612106", "oracle_id": "b81f041d-98db-4408-9472-c483e4a502bc", "multiverse_ids": [135199], "mtgo_id": 27200, "mtgo_foil_id": 27201, "tcgplayer_id": 15359, "cardmarket_id": 16346, "name": "Terror", "lang": "en", "released_at": "2007-07-13", "uri": "https://api.scryfall.com/cards/3d1ccc3b-a6bd-4dc8-b7ba-99172d612106", "scryfall_uri": "https://scryfall.com/card/10e/182/terror?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/3/d/3d1ccc3b-a6bd-4dc8-b7ba-99172d612106.jpg?1562546519", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/d/3d1ccc3b-a6bd-4dc8-b7ba-99172d612106.jpg?1562546519", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/3/d/3d1ccc3b-a6bd-4dc8-b7ba-99172d612106.jpg?1562546519", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/3/d/3d1ccc3b-a6bd-4dc8-b7ba-99172d612106.png?1562546519", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/d/3d1ccc3b-a6bd-4dc8-b7ba-99172d612106.jpg?1562546519", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/3/d/3d1ccc3b-a6bd-4dc8-b7ba-99172d612106.jpg?1562546519"}, "mana_cost": "{1}{B}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Destroy target nonartifact, nonblack creature. It can't be regenerated.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "a66a6124-0d81-488d-b080-91f5ba7fbad0", "set": "10e", "set_name": "Tenth Edition", "set_type": "core", "set_uri": "https://api.scryfall.com/sets/a66a6124-0d81-488d-b080-91f5ba7fbad0", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3A10e&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/10e?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/3d1ccc3b-a6bd-4dc8-b7ba-99172d612106/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ab81f041d-98db-4408-9472-c483e4a502bc&unique=prints", "collector_number": "182", "digital": false, "rarity": "common", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Adam Rex", "artist_ids": ["445bd2fb-4a70-4599-87a4-83cf5979fc56"], "illustration_id": "df18a88d-c202-418b-a07d-d550abfc021a", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 7585, "penny_rank": 886, "prices": {"usd": "0.16", "usd_foil": "4.23", "usd_etched": null, "eur": "0.10", "eur_foil": "0.60", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=135199", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Terror&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Terror&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Terror"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/15359?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Terror&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/27200?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "f41651db-619a-4ab4-86cf-a0d32297dbdf", "oracle_id": "b81f041d-98db-4408-9472-c483e4a502bc", "multiverse_ids": [45988], "mtgo_id": 19963, "mtgo_foil_id": 19964, "tcgplayer_id": 11400, "cardmarket_id": 79, "name": "Terror", "lang": "en", "released_at": "2003-10-02", "uri": "https://api.scryfall.com/cards/f41651db-619a-4ab4-86cf-a0d32297dbdf", "scryfall_uri": "https://scryfall.com/card/mrd/79/terror?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/f/4/f41651db-619a-4ab4-86cf-a0d32297dbdf.jpg?1562163040", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/4/f41651db-619a-4ab4-86cf-a0d32297dbdf.jpg?1562163040", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/f/4/f41651db-619a-4ab4-86cf-a0d32297dbdf.jpg?1562163040", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/f/4/f41651db-619a-4ab4-86cf-a0d32297dbdf.png?1562163040", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/4/f41651db-619a-4ab4-86cf-a0d32297dbdf.jpg?1562163040", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/f/4/f41651db-619a-4ab4-86cf-a0d32297dbdf.jpg?1562163040"}, "mana_cost": "{1}{B}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Destroy target nonartifact, nonblack creature. It can't be regenerated.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "1d4f90ba-8d4a-4ee5-bc2f-e2d6bffe4955", "set": "mrd", "set_name": "Mirrodin", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/1d4f90ba-8d4a-4ee5-bc2f-e2d6bffe4955", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Amrd&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/mrd?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/f41651db-619a-4ab4-86cf-a0d32297dbdf/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ab81f041d-98db-4408-9472-c483e4a502bc&unique=prints", "collector_number": "79", "digital": false, "rarity": "common", "flavor_text": "\"A simple trap in a dark corner of the mind, and their nightmares catch up with them.\"\n\u2014Geth, keeper of the Vault", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Puddnhead", "artist_ids": ["b082dd2b-8fff-4b1b-b2cf-26396ac3ba53"], "illustration_id": "dcb5e1b8-c06e-426e-8838-f6402121c4f8", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 7585, "penny_rank": 886, "prices": {"usd": "0.08", "usd_foil": "0.73", "usd_etched": null, "eur": "0.02", "eur_foil": "0.20", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=45988", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Terror&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Terror&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Terror"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/11400?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Terror&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/19963?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "21004958-2c7e-4a55-bc80-411c4d780106", "oracle_id": "b81f041d-98db-4408-9472-c483e4a502bc", "multiverse_ids": [86], "tcgplayer_id": 1277, "cardmarket_id": 5272, "name": "Terror", "lang": "en", "released_at": "1993-08-05", "uri": "https://api.scryfall.com/cards/21004958-2c7e-4a55-bc80-411c4d780106", "scryfall_uri": "https://scryfall.com/card/lea/130/terror?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/2/1/21004958-2c7e-4a55-bc80-411c4d780106.jpg?1559591536", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/1/21004958-2c7e-4a55-bc80-411c4d780106.jpg?1559591536", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/2/1/21004958-2c7e-4a55-bc80-411c4d780106.jpg?1559591536", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/2/1/21004958-2c7e-4a55-bc80-411c4d780106.png?1559591536", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/1/21004958-2c7e-4a55-bc80-411c4d780106.jpg?1559591536", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/2/1/21004958-2c7e-4a55-bc80-411c4d780106.jpg?1559591536"}, "mana_cost": "{1}{B}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Destroy target nonartifact, nonblack creature. It can't be regenerated.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "legal", "premodern": "legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "288bd996-960e-448b-a187-9504c1930c2c", "set": "lea", "set_name": "Limited Edition Alpha", "set_type": "core", "set_uri": "https://api.scryfall.com/sets/288bd996-960e-448b-a187-9504c1930c2c", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Alea&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/lea?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/21004958-2c7e-4a55-bc80-411c4d780106/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ab81f041d-98db-4408-9472-c483e4a502bc&unique=prints", "collector_number": "130", "digital": false, "rarity": "common", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Ron Spencer", "artist_ids": ["dab52c11-0564-4207-a4a1-c1735c946a65"], "illustration_id": "f868fd9b-79d8-4269-b13d-3b41bc586895", "border_color": "black", "frame": "1993", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 7585, "penny_rank": 886, "prices": {"usd": "168.99", "usd_foil": null, "usd_etched": null, "eur": "149.00", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=86", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Terror&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Terror&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Terror"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/1277?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Terror&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Terror&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "ba9d4863-75f2-4894-8033-e4ffebe0547a", "oracle_id": "b81f041d-98db-4408-9472-c483e4a502bc", "multiverse_ids": [], "tcgplayer_id": 38339, "cardmarket_id": 17569, "name": "Terror", "lang": "en", "released_at": "2005-01-01", "uri": "https://api.scryfall.com/cards/ba9d4863-75f2-4894-8033-e4ffebe0547a", "scryfall_uri": "https://scryfall.com/card/p05/2/terror?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/b/a/ba9d4863-75f2-4894-8033-e4ffebe0547a.jpg?1561757930", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/a/ba9d4863-75f2-4894-8033-e4ffebe0547a.jpg?1561757930", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/b/a/ba9d4863-75f2-4894-8033-e4ffebe0547a.jpg?1561757930", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/b/a/ba9d4863-75f2-4894-8033-e4ffebe0547a.png?1561757930", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/a/ba9d4863-75f2-4894-8033-e4ffebe0547a.jpg?1561757930", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/b/a/ba9d4863-75f2-4894-8033-e4ffebe0547a.jpg?1561757930"}, "mana_cost": "{1}{B}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Destroy target nonartifact, nonblack creature. It can't be regenerated.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": true, "reprint": true, "variation": false, "set_id": "e7f182b7-cd28-46de-bce8-223e83a78ae0", "set": "p05", "set_name": "Magic Player Rewards 2005", "set_type": "promo", "set_uri": "https://api.scryfall.com/sets/e7f182b7-cd28-46de-bce8-223e83a78ae0", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ap05&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/p05?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/ba9d4863-75f2-4894-8033-e4ffebe0547a/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ab81f041d-98db-4408-9472-c483e4a502bc&unique=prints", "collector_number": "2", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Ron Spencer", "artist_ids": ["dab52c11-0564-4207-a4a1-c1735c946a65"], "illustration_id": "c33dbbd0-3709-4e2b-b737-a5eb8e046465", "border_color": "black", "frame": "2003", "full_art": true, "textless": true, "booster": false, "story_spotlight": false, "promo_types": ["playerrewards"], "edhrec_rank": 7585, "penny_rank": 886, "prices": {"usd": "6.03", "usd_foil": null, "usd_etched": null, "eur": "1.00", "eur_foil": null, "tix": null}, "related_uris": {"tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Terror&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Terror&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Terror"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/38339?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Terror&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Terror&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "9d71efa6-5de8-476f-86ce-0790956e574f", "oracle_id": "a660e7a0-0750-475d-a4bd-de5b37d53e97", "multiverse_ids": [425698], "mtgo_id": 63030, "mtgo_foil_id": 63031, "tcgplayer_id": 126549, "cardmarket_id": 294816, "name": "Tezzeret's Betrayal", "lang": "en", "released_at": "2017-01-20", "uri": "https://api.scryfall.com/cards/9d71efa6-5de8-476f-86ce-0790956e574f", "scryfall_uri": "https://scryfall.com/card/aer/191/tezzerets-betrayal?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/9/d/9d71efa6-5de8-476f-86ce-0790956e574f.jpg?1562932177", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/d/9d71efa6-5de8-476f-86ce-0790956e574f.jpg?1562932177", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/9/d/9d71efa6-5de8-476f-86ce-0790956e574f.jpg?1562932177", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/9/d/9d71efa6-5de8-476f-86ce-0790956e574f.png?1562932177", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/d/9d71efa6-5de8-476f-86ce-0790956e574f.jpg?1562932177", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/9/d/9d71efa6-5de8-476f-86ce-0790956e574f.jpg?1562932177"}, "mana_cost": "{3}{U}{B}", "cmc": 5.0, "type_line": "Sorcery", "oracle_text": "Destroy target creature. You may search your library and/or graveyard for a card named Tezzeret, Master of Metal, reveal it, and put it into your hand. If you search your library this way, shuffle.", "colors": ["B", "U"], "color_identity": ["B", "U"], "keywords": [], "all_parts": [{"object": "related_card", "id": "d7c6614c-cc2b-4e5b-9c0d-ce8e4b2d8ea7", "component": "combo_piece", "name": "Tezzeret, Master of Metal", "type_line": "Legendary Planeswalker \u2014 Tezzeret", "uri": "https://api.scryfall.com/cards/d7c6614c-cc2b-4e5b-9c0d-ce8e4b2d8ea7"}, {"object": "related_card", "id": "9d71efa6-5de8-476f-86ce-0790956e574f", "component": "combo_piece", "name": "Tezzeret's Betrayal", "type_line": "Sorcery", "uri": "https://api.scryfall.com/cards/9d71efa6-5de8-476f-86ce-0790956e574f"}], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "a4a0db50-8826-4e73-833c-3fd934375f96", "set": "aer", "set_name": "Aether Revolt", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/a4a0db50-8826-4e73-833c-3fd934375f96", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aaer&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/aer?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/9d71efa6-5de8-476f-86ce-0790956e574f/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aa660e7a0-0750-475d-a4bd-de5b37d53e97&unique=prints", "collector_number": "191", "digital": false, "rarity": "rare", "flavor_text": "\"You can't hope to comprehend the plans that are in motion.\"\n\u2014Tezzeret", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Tyler Jacobson", "artist_ids": ["522af130-8db4-4b4b-950c-6e2b246339cf"], "illustration_id": "015b00c4-be69-402c-bd53-7aa943a83911", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "promo_types": ["planeswalkerdeck"], "edhrec_rank": 18507, "prices": {"usd": "0.14", "usd_foil": null, "usd_etched": null, "eur": "0.10", "eur_foil": null, "tix": "0.67"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=425698", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Tezzeret%27s+Betrayal&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Tezzeret%27s+Betrayal&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Tezzeret%27s+Betrayal"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/126549?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Tezzeret%27s+Betrayal&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/63030?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "eadffd6b-d707-4fc5-a600-44eb9124b195", "oracle_id": "7476a14a-611e-4f81-b603-fd600e88568f", "multiverse_ids": [464133], "mtgo_id": 72740, "tcgplayer_id": 191635, "cardmarket_id": 375525, "name": "Thornado", "lang": "en", "released_at": "2019-06-14", "uri": "https://api.scryfall.com/cards/eadffd6b-d707-4fc5-a600-44eb9124b195", "scryfall_uri": "https://scryfall.com/card/mh1/184/thornado?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/e/a/eadffd6b-d707-4fc5-a600-44eb9124b195.jpg?1615475425", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/a/eadffd6b-d707-4fc5-a600-44eb9124b195.jpg?1615475425", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/e/a/eadffd6b-d707-4fc5-a600-44eb9124b195.jpg?1615475425", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/e/a/eadffd6b-d707-4fc5-a600-44eb9124b195.png?1615475425", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/a/eadffd6b-d707-4fc5-a600-44eb9124b195.jpg?1615475425", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/e/a/eadffd6b-d707-4fc5-a600-44eb9124b195.jpg?1615475425"}, "mana_cost": "{2}{G}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Destroy target creature with flying.\nCycling {1}{G} ({1}{G}, Discard this card: Draw a card.)", "colors": ["G"], "color_identity": ["G"], "keywords": ["Cycling"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "d7efccd6-55bc-4fb8-9138-e72577510a99", "set": "mh1", "set_name": "Modern Horizons", "set_type": "draft_innovation", "set_uri": "https://api.scryfall.com/sets/d7efccd6-55bc-4fb8-9138-e72577510a99", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Amh1&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/mh1?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/eadffd6b-d707-4fc5-a600-44eb9124b195/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A7476a14a-611e-4f81-b603-fd600e88568f&unique=prints", "collector_number": "184", "digital": false, "rarity": "common", "flavor_text": "Every bough, branch, and bramble lashed out in defense of the forest.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Volkan Ba\u01f5a", "artist_ids": ["93bec3c0-0260-4d31-8064-5d01efb4153f"], "illustration_id": "ebd5591d-b5e6-44b3-9114-f999902f08d5", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 15565, "preview": {"source": "Wizards of the Coast", "source_uri": "https://twitter.com/wizards_magic/status/1134142431891480577", "previewed_at": "2019-05-30"}, "prices": {"usd": "0.05", "usd_foil": "0.07", "usd_etched": null, "eur": "0.02", "eur_foil": "0.20", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=464133", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Thornado&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Thornado&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Thornado"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/191635?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Thornado&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/72740?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "dfcf6849-4fac-41b9-8e70-dc77c4562a42", "oracle_id": "d73adc2e-c458-40a9-b10b-7d2133778717", "multiverse_ids": [417676], "mtgo_id": 61681, "mtgo_foil_id": 61682, "tcgplayer_id": 123173, "cardmarket_id": 292831, "name": "Tidy Conclusion", "lang": "en", "released_at": "2016-09-30", "uri": "https://api.scryfall.com/cards/dfcf6849-4fac-41b9-8e70-dc77c4562a42", "scryfall_uri": "https://scryfall.com/card/kld/103/tidy-conclusion?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/d/f/dfcf6849-4fac-41b9-8e70-dc77c4562a42.jpg?1576381900", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/f/dfcf6849-4fac-41b9-8e70-dc77c4562a42.jpg?1576381900", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/d/f/dfcf6849-4fac-41b9-8e70-dc77c4562a42.jpg?1576381900", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/d/f/dfcf6849-4fac-41b9-8e70-dc77c4562a42.png?1576381900", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/f/dfcf6849-4fac-41b9-8e70-dc77c4562a42.jpg?1576381900", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/d/f/dfcf6849-4fac-41b9-8e70-dc77c4562a42.jpg?1576381900"}, "mana_cost": "{3}{B}{B}", "cmc": 5.0, "type_line": "Instant", "oracle_text": "Destroy target creature. You gain 1 life for each artifact you control.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "d667e468-be8f-411f-a030-473d148deb74", "set": "kld", "set_name": "Kaladesh", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/d667e468-be8f-411f-a030-473d148deb74", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Akld&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/kld?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/dfcf6849-4fac-41b9-8e70-dc77c4562a42/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ad73adc2e-c458-40a9-b10b-7d2133778717&unique=prints", "collector_number": "103", "digital": false, "rarity": "common", "flavor_text": "Aetherborn patrons use any means necessary to secure victory for their prot\u00e9g\u00e9s.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Bastien L. Deharme", "artist_ids": ["798f63ec-41ad-474e-9708-df08193345c6"], "illustration_id": "d7688342-7162-4a13-a46b-8ac54f26aabb", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 14810, "penny_rank": 7734, "prices": {"usd": "0.01", "usd_foil": "0.27", "usd_etched": null, "eur": "0.01", "eur_foil": "0.05", "tix": "0.04"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=417676", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Tidy+Conclusion&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Tidy+Conclusion&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Tidy+Conclusion"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/123173?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Tidy+Conclusion&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/61681?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "4eb1e16f-002e-4a81-ba41-cfe41f3a9071", "oracle_id": "5751df7a-aa9a-4a27-b7ab-445ec4bcbdee", "multiverse_ids": [10625], "tcgplayer_id": 554, "cardmarket_id": 11349, "name": "Trip Wire", "lang": "en", "released_at": "1999-07-06", "uri": "https://api.scryfall.com/cards/4eb1e16f-002e-4a81-ba41-cfe41f3a9071", "scryfall_uri": "https://scryfall.com/card/ptk/156/trip-wire?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/4/e/4eb1e16f-002e-4a81-ba41-cfe41f3a9071.jpg?1634292196", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/e/4eb1e16f-002e-4a81-ba41-cfe41f3a9071.jpg?1634292196", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/4/e/4eb1e16f-002e-4a81-ba41-cfe41f3a9071.jpg?1634292196", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/4/e/4eb1e16f-002e-4a81-ba41-cfe41f3a9071.png?1634292196", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/e/4eb1e16f-002e-4a81-ba41-cfe41f3a9071.jpg?1634292196", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/4/e/4eb1e16f-002e-4a81-ba41-cfe41f3a9071.jpg?1634292196"}, "mana_cost": "{2}{G}", "cmc": 3.0, "type_line": "Sorcery", "oracle_text": "Destroy target creature with horsemanship.", "colors": ["G"], "color_identity": ["G"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "2676ff2e-9d86-4b5b-b935-e84e41b0755e", "set": "ptk", "set_name": "Portal Three Kingdoms", "set_type": "starter", "set_uri": "https://api.scryfall.com/sets/2676ff2e-9d86-4b5b-b935-e84e41b0755e", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aptk&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ptk?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/4eb1e16f-002e-4a81-ba41-cfe41f3a9071/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A5751df7a-aa9a-4a27-b7ab-445ec4bcbdee&unique=prints", "collector_number": "156", "digital": false, "rarity": "uncommon", "flavor_text": "Trip wire, hooked poles, and sunken pits were commonly used to unhorse riders during the Three Kingdoms period.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Hong Yan", "artist_ids": ["8e290009-57ed-45e0-bee0-57f71f26e8da"], "illustration_id": "1374ee19-4429-442d-87cb-eb74e90ddd7f", "border_color": "white", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 23258, "prices": {"usd": "5.84", "usd_foil": null, "usd_etched": null, "eur": "1.55", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=10625", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Trip+Wire&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Trip+Wire&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Trip+Wire"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/554?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Trip+Wire&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Trip+Wire&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "75d6eb18-a49d-4fa5-a333-78aafbc4abcb", "oracle_id": "ff281103-7a9b-4eb1-b81e-b8cd137b6e98", "multiverse_ids": [476292], "mtgo_id": 79206, "arena_id": 70552, "tcgplayer_id": 207051, "cardmarket_id": 431724, "name": "Triumphant Surge", "lang": "en", "released_at": "2020-01-24", "uri": "https://api.scryfall.com/cards/75d6eb18-a49d-4fa5-a333-78aafbc4abcb", "scryfall_uri": "https://scryfall.com/card/thb/41/triumphant-surge?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/7/5/75d6eb18-a49d-4fa5-a333-78aafbc4abcb.jpg?1581479273", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/5/75d6eb18-a49d-4fa5-a333-78aafbc4abcb.jpg?1581479273", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/7/5/75d6eb18-a49d-4fa5-a333-78aafbc4abcb.jpg?1581479273", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/7/5/75d6eb18-a49d-4fa5-a333-78aafbc4abcb.png?1581479273", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/5/75d6eb18-a49d-4fa5-a333-78aafbc4abcb.jpg?1581479273", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/7/5/75d6eb18-a49d-4fa5-a333-78aafbc4abcb.jpg?1581479273"}, "mana_cost": "{3}{W}", "cmc": 4.0, "type_line": "Instant", "oracle_text": "Destroy target creature with power 4 or greater. You gain 3 life.", "colors": ["W"], "color_identity": ["W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "5f23a78d-cda1-462a-8be3-a62b40c34913", "set": "thb", "set_name": "Theros Beyond Death", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/5f23a78d-cda1-462a-8be3-a62b40c34913", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Athb&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/thb?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/75d6eb18-a49d-4fa5-a333-78aafbc4abcb/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aff281103-7a9b-4eb1-b81e-b8cd137b6e98&unique=prints", "collector_number": "41", "digital": false, "rarity": "common", "flavor_text": "Not even death can quench a hero's inner fire.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Daarken", "artist_ids": ["e607a0d4-fc12-4c01-9e3f-501f5269b9cb"], "illustration_id": "98aeca12-d26d-404a-b5c8-d716339cdaae", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": true, "edhrec_rank": 13838, "penny_rank": 11568, "preview": {"source": "Wizards of the Coast", "source_uri": "https://twitter.com/MTG_Arena/status/1215029793764212736", "previewed_at": "2020-01-09"}, "prices": {"usd": "0.01", "usd_foil": "0.03", "usd_etched": null, "eur": "0.02", "eur_foil": "0.15", "tix": "0.04"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=476292", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Triumphant+Surge&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Triumphant+Surge&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Triumphant+Surge"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/207051?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Triumphant+Surge&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/79206?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "b7e2708c-2824-4925-b529-d625deb77924", "oracle_id": "afb278f1-0e21-4f6d-96bb-c34aa3ef96b0", "multiverse_ids": [461152], "mtgo_id": 72056, "arena_id": 69676, "tcgplayer_id": 188860, "cardmarket_id": 372288, "name": "Tyrant's Scorn", "lang": "en", "released_at": "2019-05-03", "uri": "https://api.scryfall.com/cards/b7e2708c-2824-4925-b529-d625deb77924", "scryfall_uri": "https://scryfall.com/card/war/225/tyrants-scorn?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/b/7/b7e2708c-2824-4925-b529-d625deb77924.jpg?1557577324", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/7/b7e2708c-2824-4925-b529-d625deb77924.jpg?1557577324", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/b/7/b7e2708c-2824-4925-b529-d625deb77924.jpg?1557577324", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/b/7/b7e2708c-2824-4925-b529-d625deb77924.png?1557577324", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/7/b7e2708c-2824-4925-b529-d625deb77924.jpg?1557577324", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/b/7/b7e2708c-2824-4925-b529-d625deb77924.jpg?1557577324"}, "mana_cost": "{U}{B}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Choose one \u2014\n\u2022 Destroy target creature with mana value 3 or less.\n\u2022 Return target creature to its owner's hand.", "colors": ["B", "U"], "color_identity": ["B", "U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "ee044f0b-e101-4ead-8d0e-aa510aad4277", "set": "war", "set_name": "War of the Spark", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/ee044f0b-e101-4ead-8d0e-aa510aad4277", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Awar&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/war?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/b7e2708c-2824-4925-b529-d625deb77924/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aafb278f1-0e21-4f6d-96bb-c34aa3ef96b0&unique=prints", "collector_number": "225", "digital": false, "rarity": "uncommon", "flavor_text": "\"The hero with the magic sword slays the dragon? Not this time.\"\n\u2014Nicol Bolas", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Svetlin Velinov", "artist_ids": ["ffd063ae-c097-4f26-b2e6-b1e2137708bc"], "illustration_id": "67f86547-ce09-45e0-80b1-0cf2764e5d70", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": true, "edhrec_rank": 6641, "penny_rank": 605, "preview": {"source": "Magic Mics", "source_uri": "https://www.twitch.tv/videos/412714372", "previewed_at": "2019-04-17"}, "prices": {"usd": "0.14", "usd_foil": "0.99", "usd_etched": null, "eur": "0.09", "eur_foil": "1.49", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=461152", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Tyrant%27s+Scorn&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Tyrant%27s+Scorn&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Tyrant%27s+Scorn"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/188860?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Tyrant%27s+Scorn&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/72056?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "b41f7cf3-bd76-4184-b694-f565aa5cf3a4", "oracle_id": "d740453b-d8f8-48d0-8c50-72a7cdb791b5", "multiverse_ids": [394735], "mtgo_id": 56408, "mtgo_foil_id": 56409, "tcgplayer_id": 96494, "cardmarket_id": 273174, "name": "Ultimate Price", "lang": "en", "released_at": "2015-03-27", "uri": "https://api.scryfall.com/cards/b41f7cf3-bd76-4184-b694-f565aa5cf3a4", "scryfall_uri": "https://scryfall.com/card/dtk/124/ultimate-price?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/b/4/b41f7cf3-bd76-4184-b694-f565aa5cf3a4.jpg?1562791851", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/4/b41f7cf3-bd76-4184-b694-f565aa5cf3a4.jpg?1562791851", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/b/4/b41f7cf3-bd76-4184-b694-f565aa5cf3a4.jpg?1562791851", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/b/4/b41f7cf3-bd76-4184-b694-f565aa5cf3a4.png?1562791851", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/4/b41f7cf3-bd76-4184-b694-f565aa5cf3a4.jpg?1562791851", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/b/4/b41f7cf3-bd76-4184-b694-f565aa5cf3a4.jpg?1562791851"}, "mana_cost": "{1}{B}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Destroy target monocolored creature.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "7e72625f-f320-4552-a719-d11e2f1853bd", "set": "dtk", "set_name": "Dragons of Tarkir", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/7e72625f-f320-4552-a719-d11e2f1853bd", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Adtk&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/dtk?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/b41f7cf3-bd76-4184-b694-f565aa5cf3a4/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ad740453b-d8f8-48d0-8c50-72a7cdb791b5&unique=prints", "collector_number": "124", "digital": false, "rarity": "uncommon", "flavor_text": "\"The realization that one is dying is far more terrifying than death itself.\"\n\u2014Sidisi, Silumgar vizier", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Jack Wang", "artist_ids": ["331942ac-401c-4af3-9d70-85f67717496c"], "illustration_id": "bcc47a10-394d-41a4-b024-e01da5c8f333", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 8057, "penny_rank": 309, "prices": {"usd": "0.10", "usd_foil": "0.37", "usd_etched": null, "eur": "0.19", "eur_foil": "0.49", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=394735", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Ultimate+Price&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Ultimate+Price&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Ultimate+Price"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/96494?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Ultimate+Price&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/56408?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "d2b4912a-83a2-4870-8fac-81fa79da2830", "oracle_id": "d740453b-d8f8-48d0-8c50-72a7cdb791b5", "multiverse_ids": [253538], "mtgo_id": 46603, "mtgo_foil_id": 46604, "tcgplayer_id": 66503, "cardmarket_id": 258377, "name": "Ultimate Price", "lang": "en", "released_at": "2012-10-05", "uri": "https://api.scryfall.com/cards/d2b4912a-83a2-4870-8fac-81fa79da2830", "scryfall_uri": "https://scryfall.com/card/rtr/82/ultimate-price?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/d/2/d2b4912a-83a2-4870-8fac-81fa79da2830.jpg?1562793639", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/2/d2b4912a-83a2-4870-8fac-81fa79da2830.jpg?1562793639", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/d/2/d2b4912a-83a2-4870-8fac-81fa79da2830.jpg?1562793639", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/d/2/d2b4912a-83a2-4870-8fac-81fa79da2830.png?1562793639", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/2/d2b4912a-83a2-4870-8fac-81fa79da2830.jpg?1562793639", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/d/2/d2b4912a-83a2-4870-8fac-81fa79da2830.jpg?1562793639"}, "mana_cost": "{1}{B}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Destroy target monocolored creature.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "80b2374d-c5f1-403e-9772-f6c806fd275e", "set": "rtr", "set_name": "Return to Ravnica", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/80b2374d-c5f1-403e-9772-f6c806fd275e", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Artr&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/rtr?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/d2b4912a-83a2-4870-8fac-81fa79da2830/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ad740453b-d8f8-48d0-8c50-72a7cdb791b5&unique=prints", "collector_number": "82", "digital": false, "rarity": "uncommon", "flavor_text": "\"Let him be an example to others who would default on their debts to us.\"\n\u2014\"The Cozen,\" Orzhov assassin", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Karl Kopinski", "artist_ids": ["0fad2c48-a56e-4a0b-b512-224f6f238f20"], "illustration_id": "7b751047-642b-4280-ba0a-e5de249f8f40", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 8057, "penny_rank": 309, "prices": {"usd": "0.10", "usd_foil": "0.21", "usd_etched": null, "eur": "0.02", "eur_foil": "0.45", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=253538", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Ultimate+Price&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Ultimate+Price&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Ultimate+Price"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/66503?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Ultimate+Price&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/46603?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "334e3ffc-a4dc-405c-b6e4-7182f28241fe", "oracle_id": "d740453b-d8f8-48d0-8c50-72a7cdb791b5", "multiverse_ids": [], "tcgplayer_id": 94691, "cardmarket_id": 284295, "name": "Ultimate Price", "lang": "en", "released_at": "2015-01-01", "uri": "https://api.scryfall.com/cards/334e3ffc-a4dc-405c-b6e4-7182f28241fe", "scryfall_uri": "https://scryfall.com/card/f15/10/ultimate-price?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/3/3/334e3ffc-a4dc-405c-b6e4-7182f28241fe.jpg?1562639743", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/3/334e3ffc-a4dc-405c-b6e4-7182f28241fe.jpg?1562639743", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/3/3/334e3ffc-a4dc-405c-b6e4-7182f28241fe.jpg?1562639743", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/3/3/334e3ffc-a4dc-405c-b6e4-7182f28241fe.png?1562639743", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/3/334e3ffc-a4dc-405c-b6e4-7182f28241fe.jpg?1562639743", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/3/3/334e3ffc-a4dc-405c-b6e4-7182f28241fe.jpg?1562639743"}, "mana_cost": "{1}{B}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Destroy target monocolored creature.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": true, "nonfoil": false, "finishes": ["foil"], "oversized": false, "promo": true, "reprint": true, "variation": false, "set_id": "b34e3169-310e-4161-82c8-868b38b9cc91", "set": "f15", "set_name": "Friday Night Magic 2015", "set_type": "promo", "set_uri": "https://api.scryfall.com/sets/b34e3169-310e-4161-82c8-868b38b9cc91", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Af15&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/f15?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/334e3ffc-a4dc-405c-b6e4-7182f28241fe/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ad740453b-d8f8-48d0-8c50-72a7cdb791b5&unique=prints", "collector_number": "10", "digital": false, "rarity": "rare", "watermark": "wotc", "flavor_text": "\"He's paid his price. Now you pay mine.\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Scott Murphy", "artist_ids": ["07c7ac65-dfa6-4273-9c66-ec9d8f3e2226"], "illustration_id": "71ea63d6-5d04-4dcf-b04c-1f1508ea0d0f", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "promo_types": ["tourney", "fnm"], "edhrec_rank": 8057, "penny_rank": 309, "prices": {"usd": null, "usd_foil": "0.24", "usd_etched": null, "eur": null, "eur_foil": "0.23", "tix": null}, "related_uris": {"tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Ultimate+Price&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Ultimate+Price&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Ultimate+Price"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/94691?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Ultimate+Price&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Ultimate+Price&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "d369a3da-3424-4984-a50a-59fd9c3d689e", "oracle_id": "fa360a9d-3cff-4833-9ce2-b2f53d26127f", "multiverse_ids": [51616], "mtgo_id": 20603, "mtgo_foil_id": 20604, "tcgplayer_id": 11718, "cardmarket_id": 434, "name": "Unforge", "lang": "en", "released_at": "2004-02-06", "uri": "https://api.scryfall.com/cards/d369a3da-3424-4984-a50a-59fd9c3d689e", "scryfall_uri": "https://scryfall.com/card/dst/71/unforge?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/d/3/d369a3da-3424-4984-a50a-59fd9c3d689e.jpg?1562639761", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/3/d369a3da-3424-4984-a50a-59fd9c3d689e.jpg?1562639761", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/d/3/d369a3da-3424-4984-a50a-59fd9c3d689e.jpg?1562639761", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/d/3/d369a3da-3424-4984-a50a-59fd9c3d689e.png?1562639761", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/3/d369a3da-3424-4984-a50a-59fd9c3d689e.jpg?1562639761", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/d/3/d369a3da-3424-4984-a50a-59fd9c3d689e.jpg?1562639761"}, "mana_cost": "{2}{R}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Destroy target Equipment. If that Equipment was attached to a creature, Unforge deals 2 damage to that creature.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "e29cb2dd-1345-4032-abfe-e52e8c8ce074", "set": "dst", "set_name": "Darksteel", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/e29cb2dd-1345-4032-abfe-e52e8c8ce074", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Adst&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/dst?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/d369a3da-3424-4984-a50a-59fd9c3d689e/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Afa360a9d-3cff-4833-9ce2-b2f53d26127f&unique=prints", "collector_number": "71", "digital": false, "rarity": "common", "flavor_text": "Compared to the fire of the forge, the strength of steel is nothing.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Kev Walker", "artist_ids": ["f366a0ee-a0cd-466d-ba6a-90058c7a31a6"], "illustration_id": "96755d65-7bd3-4b9a-a930-cf20f79cc089", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 22609, "prices": {"usd": "0.01", "usd_foil": "0.12", "usd_etched": null, "eur": "0.02", "eur_foil": "0.05", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=51616", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Unforge&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Unforge&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Unforge"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/11718?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Unforge&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/20603?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "5994b7b0-3bca-480b-b265-ed269f15c17e", "oracle_id": "ed8d8eb5-fbc8-4b7f-9b75-53ab118e72de", "multiverse_ids": [398452], "mtgo_id": 57932, "mtgo_foil_id": 57933, "tcgplayer_id": 100218, "cardmarket_id": 283461, "name": "Unholy Hunger", "lang": "en", "released_at": "2015-07-17", "uri": "https://api.scryfall.com/cards/5994b7b0-3bca-480b-b265-ed269f15c17e", "scryfall_uri": "https://scryfall.com/card/ori/125/unholy-hunger?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/5/9/5994b7b0-3bca-480b-b265-ed269f15c17e.jpg?1562021369", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/9/5994b7b0-3bca-480b-b265-ed269f15c17e.jpg?1562021369", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/5/9/5994b7b0-3bca-480b-b265-ed269f15c17e.jpg?1562021369", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/5/9/5994b7b0-3bca-480b-b265-ed269f15c17e.png?1562021369", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/9/5994b7b0-3bca-480b-b265-ed269f15c17e.jpg?1562021369", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/5/9/5994b7b0-3bca-480b-b265-ed269f15c17e.jpg?1562021369"}, "mana_cost": "{3}{B}{B}", "cmc": 5.0, "type_line": "Instant", "oracle_text": "Destroy target creature.\nSpell mastery \u2014 If there are two or more instant and/or sorcery cards in your graveyard, you gain 2 life.", "colors": ["B"], "color_identity": ["B"], "keywords": ["Spell mastery"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "0eeb9a9a-20ac-404d-b55f-aeb7a43a7f62", "set": "ori", "set_name": "Magic Origins", "set_type": "core", "set_uri": "https://api.scryfall.com/sets/0eeb9a9a-20ac-404d-b55f-aeb7a43a7f62", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aori&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ori?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/5994b7b0-3bca-480b-b265-ed269f15c17e/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aed8d8eb5-fbc8-4b7f-9b75-53ab118e72de&unique=prints", "collector_number": "125", "digital": false, "rarity": "common", "flavor_text": "Liliana viewed the attention of the angels as a testament to her power. Even so, they were an annoyance.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Lius Lasahido", "artist_ids": ["0a0e9093-ce44-4a69-93a7-09b63e7c330d"], "illustration_id": "96e7b3a6-71ed-4750-99a1-d420857c7da3", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 17210, "prices": {"usd": "0.02", "usd_foil": "0.06", "usd_etched": null, "eur": "0.08", "eur_foil": "0.10", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=398452", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Unholy+Hunger&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Unholy+Hunger&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Unholy+Hunger"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/100218?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Unholy+Hunger&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/57932?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "16ad8f86-7860-4896-a161-07bf347bbd5b", "oracle_id": "eaa2ff39-c3cf-428b-a2f1-a6a99a2c806b", "multiverse_ids": [417760], "mtgo_id": 62031, "mtgo_foil_id": 62032, "tcgplayer_id": 122744, "cardmarket_id": 292598, "name": "Unlicensed Disintegration", "lang": "en", "released_at": "2016-09-30", "uri": "https://api.scryfall.com/cards/16ad8f86-7860-4896-a161-07bf347bbd5b", "scryfall_uri": "https://scryfall.com/card/kld/187/unlicensed-disintegration?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/1/6/16ad8f86-7860-4896-a161-07bf347bbd5b.jpg?1576382889", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/6/16ad8f86-7860-4896-a161-07bf347bbd5b.jpg?1576382889", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/1/6/16ad8f86-7860-4896-a161-07bf347bbd5b.jpg?1576382889", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/1/6/16ad8f86-7860-4896-a161-07bf347bbd5b.png?1576382889", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/6/16ad8f86-7860-4896-a161-07bf347bbd5b.jpg?1576382889", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/1/6/16ad8f86-7860-4896-a161-07bf347bbd5b.jpg?1576382889"}, "mana_cost": "{1}{B}{R}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Destroy target creature. If you control an artifact, Unlicensed Disintegration deals 3 damage to that creature's controller.", "colors": ["B", "R"], "color_identity": ["B", "R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "d667e468-be8f-411f-a030-473d148deb74", "set": "kld", "set_name": "Kaladesh", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/d667e468-be8f-411f-a030-473d148deb74", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Akld&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/kld?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/16ad8f86-7860-4896-a161-07bf347bbd5b/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aeaa2ff39-c3cf-428b-a2f1-a6a99a2c806b&unique=prints", "collector_number": "187", "digital": false, "rarity": "uncommon", "flavor_text": "\"I'd stand back if I were you.\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Izzy", "artist_ids": ["2c3d2473-ff5d-4309-8194-e0b2def2ab65"], "illustration_id": "d32c7d79-43da-4df8-bd27-78089fbbe544", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 5164, "penny_rank": 1824, "prices": {"usd": "0.08", "usd_foil": "0.22", "usd_etched": null, "eur": "0.09", "eur_foil": "0.19", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=417760", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Unlicensed+Disintegration&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Unlicensed+Disintegration&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Unlicensed+Disintegration"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/122744?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Unlicensed+Disintegration&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/62031?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "74843584-d6b1-4ee6-bedb-999ab0a42bb9", "oracle_id": "eaa2ff39-c3cf-428b-a2f1-a6a99a2c806b", "multiverse_ids": [], "tcgplayer_id": 129534, "cardmarket_id": 295482, "name": "Unlicensed Disintegration", "lang": "en", "released_at": "2017-01-01", "uri": "https://api.scryfall.com/cards/74843584-d6b1-4ee6-bedb-999ab0a42bb9", "scryfall_uri": "https://scryfall.com/card/f17/5/unlicensed-disintegration?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/7/4/74843584-d6b1-4ee6-bedb-999ab0a42bb9.jpg?1562636815", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/4/74843584-d6b1-4ee6-bedb-999ab0a42bb9.jpg?1562636815", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/7/4/74843584-d6b1-4ee6-bedb-999ab0a42bb9.jpg?1562636815", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/7/4/74843584-d6b1-4ee6-bedb-999ab0a42bb9.png?1562636815", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/4/74843584-d6b1-4ee6-bedb-999ab0a42bb9.jpg?1562636815", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/7/4/74843584-d6b1-4ee6-bedb-999ab0a42bb9.jpg?1562636815"}, "mana_cost": "{1}{B}{R}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Destroy target creature. If you control an artifact, Unlicensed Disintegration deals 3 damage to that creature's controller.", "colors": ["B", "R"], "color_identity": ["B", "R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": true, "nonfoil": false, "finishes": ["foil"], "oversized": false, "promo": true, "reprint": true, "variation": false, "set_id": "690dae5c-2de4-4071-b77c-19883791f987", "set": "f17", "set_name": "Friday Night Magic 2017", "set_type": "promo", "set_uri": "https://api.scryfall.com/sets/690dae5c-2de4-4071-b77c-19883791f987", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Af17&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/f17?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/74843584-d6b1-4ee6-bedb-999ab0a42bb9/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aeaa2ff39-c3cf-428b-a2f1-a6a99a2c806b&unique=prints", "collector_number": "5", "digital": false, "rarity": "rare", "watermark": "wotc", "flavor_text": "\"I'd stand back if I were you.\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Florian de Gesincourt", "artist_ids": ["f28c54ff-bbe3-485d-81a4-b2cb49430a52"], "illustration_id": "6b9290ca-4de2-4620-ab95-76a263cc147d", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "promo_types": ["tourney", "fnm"], "edhrec_rank": 5164, "penny_rank": 1824, "prices": {"usd": null, "usd_foil": "0.27", "usd_etched": null, "eur": null, "eur_foil": "0.26", "tix": null}, "related_uris": {"tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Unlicensed+Disintegration&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Unlicensed+Disintegration&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Unlicensed+Disintegration"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/129534?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Unlicensed+Disintegration&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Unlicensed+Disintegration&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "0e6b9a3b-8a19-4094-8dbb-08a0a9ca04a0", "oracle_id": "1f938353-9081-4dc1-b8e7-d18ece038bd4", "multiverse_ids": [540877], "mtgo_id": 94382, "arena_id": 78825, "tcgplayer_id": 253037, "cardmarket_id": 581678, "name": "Valorous Stance", "lang": "en", "released_at": "2021-11-19", "uri": "https://api.scryfall.com/cards/0e6b9a3b-8a19-4094-8dbb-08a0a9ca04a0", "scryfall_uri": "https://scryfall.com/card/vow/42/valorous-stance?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/0/e/0e6b9a3b-8a19-4094-8dbb-08a0a9ca04a0.jpg?1643587276", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/e/0e6b9a3b-8a19-4094-8dbb-08a0a9ca04a0.jpg?1643587276", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/0/e/0e6b9a3b-8a19-4094-8dbb-08a0a9ca04a0.jpg?1643587276", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/0/e/0e6b9a3b-8a19-4094-8dbb-08a0a9ca04a0.png?1643587276", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/e/0e6b9a3b-8a19-4094-8dbb-08a0a9ca04a0.jpg?1643587276", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/0/e/0e6b9a3b-8a19-4094-8dbb-08a0a9ca04a0.jpg?1643587276"}, "mana_cost": "{1}{W}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Choose one \u2014\n\u2022 Target creature gains indestructible until end of turn. (Damage and effects that say \"destroy\" don't destroy it.)\n\u2022 Destroy target creature with toughness 4 or greater.", "colors": ["W"], "color_identity": ["W"], "keywords": [], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "8144b676-569f-4716-8005-bc8f0778f3fa", "set": "vow", "set_name": "Innistrad: Crimson Vow", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/8144b676-569f-4716-8005-bc8f0778f3fa", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Avow&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/vow?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/0e6b9a3b-8a19-4094-8dbb-08a0a9ca04a0/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A1f938353-9081-4dc1-b8e7-d18ece038bd4&unique=prints", "collector_number": "42", "digital": false, "rarity": "uncommon", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Anato Finnstark", "artist_ids": ["05d233e7-4958-4f79-83e6-f9bf8b6ff78e"], "illustration_id": "20da3bbc-4f39-4680-8f7f-627aec0a7c5a", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 2238, "penny_rank": 5340, "preview": {"source": "Mike Wildspeaker", "source_uri": "https://twitter.com/MikeWildspeaker/status/1454502587932291076", "previewed_at": "2021-10-30"}, "prices": {"usd": "0.08", "usd_foil": "0.18", "usd_etched": null, "eur": "0.13", "eur_foil": "0.09", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=540877", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Valorous+Stance&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Valorous+Stance&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Valorous+Stance"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/253037?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Valorous+Stance&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/94382?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "65998e94-15a0-41f1-8288-730b957f81df", "oracle_id": "1f938353-9081-4dc1-b8e7-d18ece038bd4", "multiverse_ids": [391950], "mtgo_id": 55600, "mtgo_foil_id": 55601, "tcgplayer_id": 95055, "cardmarket_id": 271466, "name": "Valorous Stance", "lang": "en", "released_at": "2015-01-23", "uri": "https://api.scryfall.com/cards/65998e94-15a0-41f1-8288-730b957f81df", "scryfall_uri": "https://scryfall.com/card/frf/28/valorous-stance?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/6/5/65998e94-15a0-41f1-8288-730b957f81df.jpg?1562825972", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/5/65998e94-15a0-41f1-8288-730b957f81df.jpg?1562825972", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/6/5/65998e94-15a0-41f1-8288-730b957f81df.jpg?1562825972", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/6/5/65998e94-15a0-41f1-8288-730b957f81df.png?1562825972", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/5/65998e94-15a0-41f1-8288-730b957f81df.jpg?1562825972", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/6/5/65998e94-15a0-41f1-8288-730b957f81df.jpg?1562825972"}, "mana_cost": "{1}{W}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Choose one \u2014\n\u2022 Target creature gains indestructible until end of turn. (Damage and effects that say \"destroy\" don't destroy it.)\n\u2022 Destroy target creature with toughness 4 or greater.", "colors": ["W"], "color_identity": ["W"], "keywords": [], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "7bb5cb2b-081a-4c8c-b7e1-494046e6baa1", "set": "frf", "set_name": "Fate Reforged", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/7bb5cb2b-081a-4c8c-b7e1-494046e6baa1", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Afrf&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/frf?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/65998e94-15a0-41f1-8288-730b957f81df/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A1f938353-9081-4dc1-b8e7-d18ece038bd4&unique=prints", "collector_number": "28", "digital": false, "rarity": "uncommon", "flavor_text": "\"Every choice alters the path of fate.\"\n\u2014Sarkhan Vol", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Willian Murai", "artist_ids": ["5a553c8e-e3b9-40e0-bde5-1db621c53939"], "illustration_id": "1636bf71-cd1c-4e0c-b38a-9015ee53b6dc", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 2238, "penny_rank": 5340, "prices": {"usd": "0.11", "usd_foil": "0.49", "usd_etched": null, "eur": "0.17", "eur_foil": "0.45", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=391950", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Valorous+Stance&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Valorous+Stance&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Valorous+Stance"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/95055?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Valorous+Stance&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/55600?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "f482213a-4e3e-4e13-82a1-88e7d6c4ba2c", "oracle_id": "1f938353-9081-4dc1-b8e7-d18ece038bd4", "multiverse_ids": [], "tcgplayer_id": 100573, "cardmarket_id": 283661, "name": "Valorous Stance", "lang": "en", "released_at": "2015-07-17", "uri": "https://api.scryfall.com/cards/f482213a-4e3e-4e13-82a1-88e7d6c4ba2c", "scryfall_uri": "https://scryfall.com/card/cp3/3/valorous-stance?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/f/4/f482213a-4e3e-4e13-82a1-88e7d6c4ba2c.jpg?1561758433", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/4/f482213a-4e3e-4e13-82a1-88e7d6c4ba2c.jpg?1561758433", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/f/4/f482213a-4e3e-4e13-82a1-88e7d6c4ba2c.jpg?1561758433", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/f/4/f482213a-4e3e-4e13-82a1-88e7d6c4ba2c.png?1561758433", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/4/f482213a-4e3e-4e13-82a1-88e7d6c4ba2c.jpg?1561758433", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/f/4/f482213a-4e3e-4e13-82a1-88e7d6c4ba2c.jpg?1561758433"}, "mana_cost": "{1}{W}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Choose one \u2014\n\u2022 Target creature gains indestructible until end of turn. (Damage and effects that say \"destroy\" don't destroy it.)\n\u2022 Destroy target creature with toughness 4 or greater.", "colors": ["W"], "color_identity": ["W"], "keywords": [], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": true, "nonfoil": false, "finishes": ["foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "e6177218-1e8b-488e-8a4c-ef3af130b600", "set": "cp3", "set_name": "Magic Origins Clash Pack", "set_type": "starter", "set_uri": "https://api.scryfall.com/sets/e6177218-1e8b-488e-8a4c-ef3af130b600", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Acp3&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/cp3?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/f482213a-4e3e-4e13-82a1-88e7d6c4ba2c/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A1f938353-9081-4dc1-b8e7-d18ece038bd4&unique=prints", "collector_number": "3", "digital": false, "rarity": "uncommon", "flavor_text": "\"Every choice alters the path of fate.\"\n\u2014Sarkhan Vol", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Victor Adame Minguez", "artist_ids": ["bd8f7368-5b10-4554-b6b8-d052c6aca89f"], "illustration_id": "e74ed951-509b-477b-860b-284ec4c9b723", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "edhrec_rank": 2238, "penny_rank": 5340, "prices": {"usd": null, "usd_foil": "0.35", "usd_etched": null, "eur": null, "eur_foil": "0.15", "tix": null}, "related_uris": {"tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Valorous+Stance&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Valorous+Stance&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Valorous+Stance"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/100573?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Valorous+Stance&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Valorous+Stance&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "27bae717-56c0-4028-b1e7-a445d6a57176", "oracle_id": "683ec6d2-4ea7-46a7-911e-12c83e4c4a06", "multiverse_ids": [51147], "mtgo_id": 20640, "mtgo_foil_id": 20641, "tcgplayer_id": 11921, "cardmarket_id": 636, "name": "Vanquish", "lang": "en", "released_at": "2004-06-04", "uri": "https://api.scryfall.com/cards/27bae717-56c0-4028-b1e7-a445d6a57176", "scryfall_uri": "https://scryfall.com/card/5dn/20/vanquish?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/2/7/27bae717-56c0-4028-b1e7-a445d6a57176.jpg?1562875950", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/7/27bae717-56c0-4028-b1e7-a445d6a57176.jpg?1562875950", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/2/7/27bae717-56c0-4028-b1e7-a445d6a57176.jpg?1562875950", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/2/7/27bae717-56c0-4028-b1e7-a445d6a57176.png?1562875950", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/7/27bae717-56c0-4028-b1e7-a445d6a57176.jpg?1562875950", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/2/7/27bae717-56c0-4028-b1e7-a445d6a57176.jpg?1562875950"}, "mana_cost": "{2}{W}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Destroy target blocking creature.", "colors": ["W"], "color_identity": ["W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "e4bc1b87-5476-463c-8640-4c414ecf1763", "set": "5dn", "set_name": "Fifth Dawn", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/e4bc1b87-5476-463c-8640-4c414ecf1763", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3A5dn&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/5dn?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/27bae717-56c0-4028-b1e7-a445d6a57176/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A683ec6d2-4ea7-46a7-911e-12c83e4c4a06&unique=prints", "collector_number": "20", "digital": false, "rarity": "uncommon", "flavor_text": "\"All beings have an inner light. Let me show you yours.\"\n\u2014Ushanti, leonin seer", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Carl Critchlow", "artist_ids": ["17948f16-611a-44b8-8d10-9895a0bdfff1"], "illustration_id": "949d1d6c-3f99-486b-bc39-817c5490a65b", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 20881, "prices": {"usd": "0.06", "usd_foil": "0.31", "usd_etched": null, "eur": "0.17", "eur_foil": "0.10", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=51147", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Vanquish&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Vanquish&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Vanquish"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/11921?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Vanquish&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/20640?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "8fdcec06-e33c-4737-b81e-b156d6e3fd77", "oracle_id": "6990ac82-49d4-412d-9c3d-1e7fb5479313", "multiverse_ids": [373640], "mtgo_id": 50354, "mtgo_foil_id": 50355, "tcgplayer_id": 71008, "cardmarket_id": 264028, "name": "Vanquish the Foul", "lang": "en", "released_at": "2013-09-27", "uri": "https://api.scryfall.com/cards/8fdcec06-e33c-4737-b81e-b156d6e3fd77", "scryfall_uri": "https://scryfall.com/card/ths/35/vanquish-the-foul?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/8/f/8fdcec06-e33c-4737-b81e-b156d6e3fd77.jpg?1562821391", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/f/8fdcec06-e33c-4737-b81e-b156d6e3fd77.jpg?1562821391", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/8/f/8fdcec06-e33c-4737-b81e-b156d6e3fd77.jpg?1562821391", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/8/f/8fdcec06-e33c-4737-b81e-b156d6e3fd77.png?1562821391", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/f/8fdcec06-e33c-4737-b81e-b156d6e3fd77.jpg?1562821391", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/8/f/8fdcec06-e33c-4737-b81e-b156d6e3fd77.jpg?1562821391"}, "mana_cost": "{5}{W}", "cmc": 6.0, "type_line": "Sorcery", "oracle_text": "Destroy target creature with power 4 or greater. Scry 1. (Look at the top card of your library. You may put that card on the bottom of your library.)", "colors": ["W"], "color_identity": ["W"], "keywords": ["Scry"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "69093d6f-e25a-41a4-8cf5-688d7f11c0fb", "set": "ths", "set_name": "Theros", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/69093d6f-e25a-41a4-8cf5-688d7f11c0fb", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aths&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ths?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/8fdcec06-e33c-4737-b81e-b156d6e3fd77/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A6990ac82-49d4-412d-9c3d-1e7fb5479313&unique=prints", "collector_number": "35", "digital": false, "rarity": "uncommon", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Eric Deschamps", "artist_ids": ["37970e22-9cee-44c1-af44-5ee27cf26b76"], "illustration_id": "c04b744c-6d84-410a-aac7-db7405627b7e", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 20882, "prices": {"usd": "0.03", "usd_foil": "0.23", "usd_etched": null, "eur": "0.02", "eur_foil": "0.25", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=373640", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Vanquish+the+Foul&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Vanquish+the+Foul&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Vanquish+the+Foul"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/71008?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Vanquish+the+Foul&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/50354?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "c15852d4-2c79-4841-bb65-6661d88fdfab", "oracle_id": "4a3cc4f6-037f-461d-a3b7-9f9e24c4b8cf", "multiverse_ids": [491769], "mtgo_id": 83231, "arena_id": 73330, "tcgplayer_id": 222445, "cardmarket_id": 497540, "name": "Vanquish the Weak", "lang": "en", "released_at": "2020-09-25", "uri": "https://api.scryfall.com/cards/c15852d4-2c79-4841-bb65-6661d88fdfab", "scryfall_uri": "https://scryfall.com/card/znr/131/vanquish-the-weak?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/c/1/c15852d4-2c79-4841-bb65-6661d88fdfab.jpg?1604196688", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/1/c15852d4-2c79-4841-bb65-6661d88fdfab.jpg?1604196688", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/c/1/c15852d4-2c79-4841-bb65-6661d88fdfab.jpg?1604196688", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/c/1/c15852d4-2c79-4841-bb65-6661d88fdfab.png?1604196688", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/1/c15852d4-2c79-4841-bb65-6661d88fdfab.jpg?1604196688", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/c/1/c15852d4-2c79-4841-bb65-6661d88fdfab.jpg?1604196688"}, "mana_cost": "{2}{B}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Destroy target creature with power 3 or less.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "f4e01fa7-b254-42dd-849f-69b58027a8c4", "set": "znr", "set_name": "Zendikar Rising", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/f4e01fa7-b254-42dd-849f-69b58027a8c4", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aznr&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/znr?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/c15852d4-2c79-4841-bb65-6661d88fdfab/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A4a3cc4f6-037f-461d-a3b7-9f9e24c4b8cf&unique=prints", "collector_number": "131", "digital": false, "rarity": "common", "flavor_text": "Open conflict between expeditionary houses\u2014or even individual adventuring parties\u2014is discouraged, but \"accidents\" happen.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Bayard Wu", "artist_ids": ["b089963c-610a-4d50-9206-d64b7caedef1"], "illustration_id": "7b74eda4-5c69-41e6-a5d3-1886a1836da2", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 14671, "penny_rank": 8103, "prices": {"usd": "0.01", "usd_foil": "0.02", "usd_etched": null, "eur": "0.02", "eur_foil": "0.02", "tix": "0.01"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=491769", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Vanquish+the+Weak&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Vanquish+the+Weak&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Vanquish+the+Weak"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/222445?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Vanquish+the+Weak&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/83231?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "e599ed0b-4b3b-4341-b6ac-7fdfdc6799a3", "oracle_id": "4a3cc4f6-037f-461d-a3b7-9f9e24c4b8cf", "multiverse_ids": [435281], "mtgo_id": 65270, "mtgo_foil_id": 65271, "arena_id": 66219, "tcgplayer_id": 145803, "cardmarket_id": 301787, "name": "Vanquish the Weak", "lang": "en", "released_at": "2017-09-29", "uri": "https://api.scryfall.com/cards/e599ed0b-4b3b-4341-b6ac-7fdfdc6799a3", "scryfall_uri": "https://scryfall.com/card/xln/127/vanquish-the-weak?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/e/5/e599ed0b-4b3b-4341-b6ac-7fdfdc6799a3.jpg?1562565757", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/5/e599ed0b-4b3b-4341-b6ac-7fdfdc6799a3.jpg?1562565757", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/e/5/e599ed0b-4b3b-4341-b6ac-7fdfdc6799a3.jpg?1562565757", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/e/5/e599ed0b-4b3b-4341-b6ac-7fdfdc6799a3.png?1562565757", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/5/e599ed0b-4b3b-4341-b6ac-7fdfdc6799a3.jpg?1562565757", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/e/5/e599ed0b-4b3b-4341-b6ac-7fdfdc6799a3.jpg?1562565757"}, "mana_cost": "{2}{B}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Destroy target creature with power 3 or less.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "fe0dad85-54bc-4151-9200-d68da84dd0f2", "set": "xln", "set_name": "Ixalan", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/fe0dad85-54bc-4151-9200-d68da84dd0f2", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Axln&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/xln?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/e599ed0b-4b3b-4341-b6ac-7fdfdc6799a3/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A4a3cc4f6-037f-461d-a3b7-9f9e24c4b8cf&unique=prints", "collector_number": "127", "digital": false, "rarity": "common", "flavor_text": "The clerics known as condemners punish those who do not recognize the righteous authority of the church.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "David Palumbo", "artist_ids": ["04ce1c75-e30c-4b7a-8cb0-b53e4ecc2f39"], "illustration_id": "1e9a7ace-b5e8-4c8b-aad6-ec7beafe859b", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 14671, "penny_rank": 8103, "prices": {"usd": "0.02", "usd_foil": "0.09", "usd_etched": null, "eur": "0.02", "eur_foil": "0.04", "tix": "0.04"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=435281", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Vanquish+the+Weak&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Vanquish+the+Weak&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Vanquish+the+Weak"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/145803?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Vanquish+the+Weak&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/65270?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "039fc76d-3b7e-4329-a997-07c25509e421", "oracle_id": "50a16634-ebf7-477f-ad6f-23332599f838", "multiverse_ids": [194922], "mtgo_id": 36680, "mtgo_foil_id": 36681, "tcgplayer_id": 34824, "cardmarket_id": 22509, "name": "Vendetta", "lang": "en", "released_at": "2010-04-23", "uri": "https://api.scryfall.com/cards/039fc76d-3b7e-4329-a997-07c25509e421", "scryfall_uri": "https://scryfall.com/card/roe/130/vendetta?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/0/3/039fc76d-3b7e-4329-a997-07c25509e421.jpg?1562700700", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/3/039fc76d-3b7e-4329-a997-07c25509e421.jpg?1562700700", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/0/3/039fc76d-3b7e-4329-a997-07c25509e421.jpg?1562700700", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/0/3/039fc76d-3b7e-4329-a997-07c25509e421.png?1562700700", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/3/039fc76d-3b7e-4329-a997-07c25509e421.jpg?1562700700", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/0/3/039fc76d-3b7e-4329-a997-07c25509e421.jpg?1562700700"}, "mana_cost": "{B}", "cmc": 1.0, "type_line": "Instant", "oracle_text": "Destroy target nonblack creature. It can't be regenerated. You lose life equal to that creature's toughness.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "eadb8a82-ec56-4623-b50e-42e7e60cb535", "set": "roe", "set_name": "Rise of the Eldrazi", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/eadb8a82-ec56-4623-b50e-42e7e60cb535", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aroe&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/roe?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/039fc76d-3b7e-4329-a997-07c25509e421/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A50a16634-ebf7-477f-ad6f-23332599f838&unique=prints", "collector_number": "130", "digital": false, "rarity": "common", "flavor_text": "\"Consider my debt to your kin paid in full.\"\n\u2014Idrol, Guul Draz assassin", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Karl Kopinski", "artist_ids": ["0fad2c48-a56e-4a0b-b512-224f6f238f20"], "illustration_id": "985e6879-f6f2-4371-a470-5b25d146433b", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 6534, "penny_rank": 742, "prices": {"usd": "0.22", "usd_foil": "4.80", "usd_etched": null, "eur": "0.07", "eur_foil": "1.14", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=194922", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Vendetta&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Vendetta&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Vendetta"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/34824?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Vendetta&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/36680?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "67ced38e-0f33-4bda-8e18-09f6ac03a3d7", "oracle_id": "50a16634-ebf7-477f-ad6f-23332599f838", "multiverse_ids": [19589], "mtgo_id": 13227, "mtgo_foil_id": 13228, "tcgplayer_id": 6753, "cardmarket_id": 11543, "name": "Vendetta", "lang": "en", "released_at": "1999-10-04", "uri": "https://api.scryfall.com/cards/67ced38e-0f33-4bda-8e18-09f6ac03a3d7", "scryfall_uri": "https://scryfall.com/card/mmq/170/vendetta?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/6/7/67ced38e-0f33-4bda-8e18-09f6ac03a3d7.jpg?1562381344", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/7/67ced38e-0f33-4bda-8e18-09f6ac03a3d7.jpg?1562381344", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/6/7/67ced38e-0f33-4bda-8e18-09f6ac03a3d7.jpg?1562381344", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/6/7/67ced38e-0f33-4bda-8e18-09f6ac03a3d7.png?1562381344", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/7/67ced38e-0f33-4bda-8e18-09f6ac03a3d7.jpg?1562381344", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/6/7/67ced38e-0f33-4bda-8e18-09f6ac03a3d7.jpg?1562381344"}, "mana_cost": "{B}", "cmc": 1.0, "type_line": "Instant", "oracle_text": "Destroy target nonblack creature. It can't be regenerated. You lose life equal to that creature's toughness.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "385e11a4-492b-4d07-b4a6-a1409ef829b8", "set": "mmq", "set_name": "Mercadian Masques", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/385e11a4-492b-4d07-b4a6-a1409ef829b8", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ammq&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/mmq?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/67ced38e-0f33-4bda-8e18-09f6ac03a3d7/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A50a16634-ebf7-477f-ad6f-23332599f838&unique=prints", "collector_number": "170", "digital": false, "rarity": "common", "flavor_text": "Starke knew the voice was Takara's, but the venom was Volrath's.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Dan Frazier", "artist_ids": ["059bba56-5feb-42e4-8c2e-e2f1e6ba11f9"], "illustration_id": "b9f34394-70d8-46ae-8987-a6ad1c369b5b", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 6534, "penny_rank": 742, "prices": {"usd": "0.26", "usd_foil": "21.68", "usd_etched": null, "eur": "0.23", "eur_foil": "12.00", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=19589", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Vendetta&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Vendetta&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Vendetta"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/6753?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Vendetta&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/13227?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "011b9836-fee4-4e83-add7-5e13cb1275d6", "oracle_id": "1d001145-5d14-43a9-bf3b-3ce5c20b2a46", "multiverse_ids": [14462], "mtgo_id": 15848, "mtgo_foil_id": 15849, "tcgplayer_id": 3135, "cardmarket_id": 2816, "name": "Vengeance", "lang": "en", "released_at": "2001-04-11", "uri": "https://api.scryfall.com/cards/011b9836-fee4-4e83-add7-5e13cb1275d6", "scryfall_uri": "https://scryfall.com/card/7ed/54/vengeance?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/0/1/011b9836-fee4-4e83-add7-5e13cb1275d6.jpg?1562231350", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/1/011b9836-fee4-4e83-add7-5e13cb1275d6.jpg?1562231350", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/0/1/011b9836-fee4-4e83-add7-5e13cb1275d6.jpg?1562231350", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/0/1/011b9836-fee4-4e83-add7-5e13cb1275d6.png?1562231350", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/1/011b9836-fee4-4e83-add7-5e13cb1275d6.jpg?1562231350", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/0/1/011b9836-fee4-4e83-add7-5e13cb1275d6.jpg?1562231350"}, "mana_cost": "{3}{W}", "cmc": 4.0, "type_line": "Sorcery", "oracle_text": "Destroy target tapped creature.", "colors": ["W"], "color_identity": ["W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "230f38aa-9511-4db8-a3aa-aeddbc3f7bb9", "set": "7ed", "set_name": "Seventh Edition", "set_type": "core", "set_uri": "https://api.scryfall.com/sets/230f38aa-9511-4db8-a3aa-aeddbc3f7bb9", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3A7ed&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/7ed?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/011b9836-fee4-4e83-add7-5e13cb1275d6/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A1d001145-5d14-43a9-bf3b-3ce5c20b2a46&unique=prints", "collector_number": "54", "digital": false, "rarity": "uncommon", "flavor_text": "\"It is the duty of the strong to oppose any who threaten the weak.\"\n\u2014The Southern Paladin", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Paolo Parente", "artist_ids": ["d48dd097-720d-476a-8722-6a02854ae28b"], "illustration_id": "4e0a4e33-da7f-4b1b-b9ee-ae2c09e8a078", "border_color": "white", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 21112, "prices": {"usd": "0.15", "usd_foil": "7.00", "usd_etched": null, "eur": "0.12", "eur_foil": "3.50", "tix": "0.09"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=14462", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Vengeance&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Vengeance&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Vengeance"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/3135?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Vengeance&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/15848?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "a882fbcc-b2b9-44f3-b5cc-56759879f473", "oracle_id": "1d001145-5d14-43a9-bf3b-3ce5c20b2a46", "multiverse_ids": [10631], "tcgplayer_id": 555, "cardmarket_id": 11221, "name": "Vengeance", "lang": "en", "released_at": "1999-07-06", "uri": "https://api.scryfall.com/cards/a882fbcc-b2b9-44f3-b5cc-56759879f473", "scryfall_uri": "https://scryfall.com/card/ptk/28/vengeance?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/a/8/a882fbcc-b2b9-44f3-b5cc-56759879f473.jpg?1562257514", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/8/a882fbcc-b2b9-44f3-b5cc-56759879f473.jpg?1562257514", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/a/8/a882fbcc-b2b9-44f3-b5cc-56759879f473.jpg?1562257514", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/a/8/a882fbcc-b2b9-44f3-b5cc-56759879f473.png?1562257514", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/8/a882fbcc-b2b9-44f3-b5cc-56759879f473.jpg?1562257514", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/a/8/a882fbcc-b2b9-44f3-b5cc-56759879f473.jpg?1562257514"}, "mana_cost": "{3}{W}", "cmc": 4.0, "type_line": "Sorcery", "oracle_text": "Destroy target tapped creature.", "colors": ["W"], "color_identity": ["W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "2676ff2e-9d86-4b5b-b935-e84e41b0755e", "set": "ptk", "set_name": "Portal Three Kingdoms", "set_type": "starter", "set_uri": "https://api.scryfall.com/sets/2676ff2e-9d86-4b5b-b935-e84e41b0755e", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aptk&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ptk?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/a882fbcc-b2b9-44f3-b5cc-56759879f473/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A1d001145-5d14-43a9-bf3b-3ce5c20b2a46&unique=prints", "collector_number": "28", "digital": false, "rarity": "uncommon", "flavor_text": "\"Until I've gnawed their flesh and exterminated their clans, my humiliation will not be effaced.\"\n\u2014Liu Bei, on the death of his oath-brother Guan Yu", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Solomon Au Yeung", "artist_ids": ["3e8fe7b9-9bc3-4de0-97c8-d20311cfd201"], "illustration_id": "b5a519d8-f1f5-4555-a2db-07d59151c6b8", "border_color": "white", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 21112, "prices": {"usd": "7.67", "usd_foil": null, "usd_etched": null, "eur": "3.99", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=10631", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Vengeance&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Vengeance&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Vengeance"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/555?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Vengeance&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Vengeance&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "3209ee48-4485-44fc-b71d-cd6241674e64", "oracle_id": "1d001145-5d14-43a9-bf3b-3ce5c20b2a46", "multiverse_ids": [6513], "tcgplayer_id": 243, "cardmarket_id": 9967, "name": "Vengeance", "lang": "en", "released_at": "1998-06-24", "uri": "https://api.scryfall.com/cards/3209ee48-4485-44fc-b71d-cd6241674e64", "scryfall_uri": "https://scryfall.com/card/p02/27/vengeance?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/3/2/3209ee48-4485-44fc-b71d-cd6241674e64.jpg?1562906693", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/2/3209ee48-4485-44fc-b71d-cd6241674e64.jpg?1562906693", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/3/2/3209ee48-4485-44fc-b71d-cd6241674e64.jpg?1562906693", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/3/2/3209ee48-4485-44fc-b71d-cd6241674e64.png?1562906693", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/2/3209ee48-4485-44fc-b71d-cd6241674e64.jpg?1562906693", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/3/2/3209ee48-4485-44fc-b71d-cd6241674e64.jpg?1562906693"}, "mana_cost": "{3}{W}", "cmc": 4.0, "type_line": "Sorcery", "oracle_text": "Destroy target tapped creature.", "colors": ["W"], "color_identity": ["W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "ac67f18a-4f0e-407e-bab1-a9fe4f659565", "set": "p02", "set_name": "Portal Second Age", "set_type": "starter", "set_uri": "https://api.scryfall.com/sets/ac67f18a-4f0e-407e-bab1-a9fe4f659565", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ap02&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/p02?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/3209ee48-4485-44fc-b71d-cd6241674e64/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A1d001145-5d14-43a9-bf3b-3ce5c20b2a46&unique=prints", "collector_number": "27", "digital": false, "rarity": "uncommon", "flavor_text": "A bullet renders all sizes equal.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Keith Parkinson", "artist_ids": ["2179f8c5-d9a1-4e1e-b2f5-c6a7c990914a"], "illustration_id": "f34fd175-fef9-411d-bb43-47f997bef8c7", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 21112, "prices": {"usd": "0.31", "usd_foil": null, "usd_etched": null, "eur": "0.25", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=6513", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Vengeance&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Vengeance&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Vengeance"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/243?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Vengeance&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Vengeance&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "c91c249b-157c-4f1d-8171-29d1e75b1c9f", "oracle_id": "1d001145-5d14-43a9-bf3b-3ce5c20b2a46", "multiverse_ids": [4404], "tcgplayer_id": 810, "cardmarket_id": 10183, "name": "Vengeance", "lang": "en", "released_at": "1997-05-01", "uri": "https://api.scryfall.com/cards/c91c249b-157c-4f1d-8171-29d1e75b1c9f", "scryfall_uri": "https://scryfall.com/card/por/36/vengeance?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/c/9/c91c249b-157c-4f1d-8171-29d1e75b1c9f.jpg?1562447828", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/9/c91c249b-157c-4f1d-8171-29d1e75b1c9f.jpg?1562447828", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/c/9/c91c249b-157c-4f1d-8171-29d1e75b1c9f.jpg?1562447828", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/c/9/c91c249b-157c-4f1d-8171-29d1e75b1c9f.png?1562447828", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/9/c91c249b-157c-4f1d-8171-29d1e75b1c9f.jpg?1562447828", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/c/9/c91c249b-157c-4f1d-8171-29d1e75b1c9f.jpg?1562447828"}, "mana_cost": "{3}{W}", "cmc": 4.0, "type_line": "Sorcery", "oracle_text": "Destroy target tapped creature.", "colors": ["W"], "color_identity": ["W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "478c47df-5058-4ce6-830e-7e80732b2ca9", "set": "por", "set_name": "Portal", "set_type": "starter", "set_uri": "https://api.scryfall.com/sets/478c47df-5058-4ce6-830e-7e80732b2ca9", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Apor&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/por?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/c91c249b-157c-4f1d-8171-29d1e75b1c9f/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A1d001145-5d14-43a9-bf3b-3ce5c20b2a46&unique=prints", "collector_number": "36", "digital": false, "rarity": "uncommon", "flavor_text": "Bitter as wormwood, sweet as mulled wine.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Andrew Robinson", "artist_ids": ["cb577db7-7f47-4f78-8682-6eaef8a77bd1"], "illustration_id": "379d8102-809b-472e-9c36-8f9581e6d92a", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 21112, "prices": {"usd": "0.17", "usd_foil": null, "usd_etched": null, "eur": "0.50", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=4404", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Vengeance&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Vengeance&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Vengeance"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/810?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Vengeance&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Vengeance&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "db10359c-1ea8-4453-bc01-f638ad20a5ec", "oracle_id": "6a3052a1-7a0b-4364-883d-cd2abca39c06", "multiverse_ids": [36409], "mtgo_id": 17578, "mtgo_foil_id": 17579, "tcgplayer_id": 10296, "cardmarket_id": 2262, "name": "Venomous Vines", "lang": "en", "released_at": "2002-05-27", "uri": "https://api.scryfall.com/cards/db10359c-1ea8-4453-bc01-f638ad20a5ec", "scryfall_uri": "https://scryfall.com/card/jud/136/venomous-vines?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/d/b/db10359c-1ea8-4453-bc01-f638ad20a5ec.jpg?1562632255", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/b/db10359c-1ea8-4453-bc01-f638ad20a5ec.jpg?1562632255", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/d/b/db10359c-1ea8-4453-bc01-f638ad20a5ec.jpg?1562632255", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/d/b/db10359c-1ea8-4453-bc01-f638ad20a5ec.png?1562632255", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/b/db10359c-1ea8-4453-bc01-f638ad20a5ec.jpg?1562632255", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/d/b/db10359c-1ea8-4453-bc01-f638ad20a5ec.jpg?1562632255"}, "mana_cost": "{2}{G}{G}", "cmc": 4.0, "type_line": "Sorcery", "oracle_text": "Destroy target enchanted permanent.", "colors": ["G"], "color_identity": ["G"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "cd82de1a-36fd-4618-bfe8-b45532a582d9", "set": "jud", "set_name": "Judgment", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/cd82de1a-36fd-4618-bfe8-b45532a582d9", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ajud&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/jud?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/db10359c-1ea8-4453-bc01-f638ad20a5ec/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A6a3052a1-7a0b-4364-883d-cd2abca39c06&unique=prints", "collector_number": "136", "digital": false, "rarity": "common", "flavor_text": "\"True strength comes from within. The false promise of unnatural power only incurs Krosa's wrath.\"\n\u2014Seton, centaur druid", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Ron Spencer", "artist_ids": ["dab52c11-0564-4207-a4a1-c1735c946a65"], "illustration_id": "7da53f20-6c85-420a-a3a9-d144256b59a0", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 22839, "prices": {"usd": "0.06", "usd_foil": "0.27", "usd_etched": null, "eur": "0.02", "eur_foil": "0.24", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=36409", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Venomous+Vines&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Venomous+Vines&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Venomous+Vines"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/10296?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Venomous+Vines&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/17578?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}]} \ No newline at end of file +{"has_more": true, "data": [{"name": "Krovikan Rot", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/7/17597c66-0d9f-41af-9160-0d92be88f450.jpg?1593275116", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/7/17597c66-0d9f-41af-9160-0d92be88f450.jpg?1593275116"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Launch Party", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/3/53f29821-902e-41bc-97a2-6fc7a710cbdb.jpg?1562786438", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/3/53f29821-902e-41bc-97a2-6fc7a710cbdb.jpg?1562786438"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Lava Flow", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/9/89e825e4-98be-49f0-bc5e-c8988118dcef.jpg?1562446890", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/9/89e825e4-98be-49f0-bc5e-c8988118dcef.jpg?1562446890"}, "reprint": false, "digital": false, "set_type": "starter"}, {"name": "Legion's Judgment", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/8/385bea20-c196-4da8-bc3e-36f8d50dcc17.jpg?1562553483", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/8/385bea20-c196-4da8-bc3e-36f8d50dcc17.jpg?1562553483"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Lethal Scheme", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/5/65864680-9520-4eb3-9774-fa478e54a290.jpg?1650411151", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/5/65864680-9520-4eb3-9774-fa478e54a290.jpg?1650411151"}, "reprint": false, "digital": false, "set_type": "commander"}, {"name": "Lethal Sting", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/a/eaded6bf-2db7-4b1d-93cc-4b7b571cd2de.jpg?1562819094", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/a/eaded6bf-2db7-4b1d-93cc-4b7b571cd2de.jpg?1562819094"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Lich's Caress", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/2/32bd3acd-aa62-4708-9336-e3430fd0e541.jpg?1562301277", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/2/32bd3acd-aa62-4708-9336-e3430fd0e541.jpg?1562301277"}, "reprint": false, "digital": false, "set_type": "core"}, {"name": "Liliana's Defeat", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/f/0f72b028-b9df-40c7-822f-4acc6bdcc719.jpg?1562789479", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/f/0f72b028-b9df-40c7-822f-4acc6bdcc719.jpg?1562789479"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Liliana's Scorn", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/2/b231f941-4acb-46f2-81ae-16e5a28e65af.jpg?1596250190", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/2/b231f941-4acb-46f2-81ae-16e5a28e65af.jpg?1596250190"}, "reprint": false, "digital": false, "set_type": "core"}, {"name": "Liturgy of Blood", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/5/3532105d-c550-4c20-8465-a6a19169efbd.jpg?1562827834", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/5/3532105d-c550-4c20-8465-a6a19169efbd.jpg?1562827834"}, "reprint": false, "digital": false, "set_type": "core"}, {"name": "Maelstrom Pulse", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/b/eb651c3a-cb27-4b73-8eb6-b87d65211097.jpg?1562644898", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/b/eb651c3a-cb27-4b73-8eb6-b87d65211097.jpg?1562644898"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Maelstrom Pulse", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/2/e2d85423-ebd8-4a6e-aedf-90e52f918764.jpg?1562940541", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/2/e2d85423-ebd8-4a6e-aedf-90e52f918764.jpg?1562940541"}, "reprint": true, "digital": false, "set_type": "masterpiece"}, {"name": "Maelstrom Pulse", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/3/d351c901-103b-460f-9d01-6e4d4b25cac8.jpg?1561929932", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/3/d351c901-103b-460f-9d01-6e4d4b25cac8.jpg?1561929932"}, "reprint": true, "digital": false, "set_type": "promo"}, {"name": "Mage Hunters' Onslaught", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/d/ed85140f-f0e0-4ac1-a67f-26d17ff95e31.jpg?1624591129", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/d/ed85140f-f0e0-4ac1-a67f-26d17ff95e31.jpg?1624591129"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Malicious Affliction", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/6/d6ea704f-a06c-4d3b-80a3-d23f739c74aa.jpg?1561960653", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/6/d6ea704f-a06c-4d3b-80a3-d23f739c74aa.jpg?1561960653"}, "reprint": false, "digital": false, "set_type": "commander"}, {"name": "Misfortune's Gain", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/0/80abd7c1-8f7a-4279-b76f-251a02624345.jpg?1562257029", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/0/80abd7c1-8f7a-4279-b76f-251a02624345.jpg?1562257029"}, "reprint": false, "digital": false, "set_type": "starter"}, {"name": "Mob", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/c/3c216e13-3779-4734-b481-9aad7aba9925.jpg?1562201673", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/c/3c216e13-3779-4734-b481-9aad7aba9925.jpg?1562201673"}, "reprint": false, "digital": false, "set_type": "draft_innovation"}, {"name": "Molten Frame", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/8/58356504-e28e-456c-b1d3-e6232f4d78a6.jpg?1562801105", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/8/58356504-e28e-456c-b1d3-e6232f4d78a6.jpg?1562801105"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Mortify", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/8/38c5e2e8-b781-4265-bce1-98fa25ddd8c3.jpg?1592714339", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/8/38c5e2e8-b781-4265-bce1-98fa25ddd8c3.jpg?1592714339"}, "reprint": true, "digital": false, "set_type": "duel_deck"}, {"name": "Mortify", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/b/3b2c5187-71c7-4801-8a76-339c67322d35.jpg?1593272729", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/b/3b2c5187-71c7-4801-8a76-339c67322d35.jpg?1593272729"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Mortify", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/4/645f4d28-68cb-4386-91b9-c748930d69fa.jpg?1570573674", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/4/645f4d28-68cb-4386-91b9-c748930d69fa.jpg?1570573674"}, "reprint": true, "frame_effects": ["inverted"], "digital": false, "set_type": "promo"}, {"name": "Mortify", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/3/a36a42b0-8216-4c99-a85f-22a520f31fd4.jpg?1561757738", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/3/a36a42b0-8216-4c99-a85f-22a520f31fd4.jpg?1561757738"}, "reprint": true, "digital": false, "set_type": "promo"}, {"name": "Murder", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/d/bdef7fea-2bd0-42a2-96f6-6def18bd7f0c.jpg?1653725816", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/d/bdef7fea-2bd0-42a2-96f6-6def18bd7f0c.jpg?1653725816"}, "reprint": true, "digital": false, "set_type": "draft_innovation"}, {"name": "Murder", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/c/1c13ac76-7cd9-456f-9b89-92bfa07c64c5.jpg?1649362504", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/c/1c13ac76-7cd9-456f-9b89-92bfa07c64c5.jpg?1649362504"}, "reprint": true, "digital": false, "set_type": "expansion"}, {"name": "Murder", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/f/0f2eb849-b3ab-4d26-86c5-235c8161cf2a.jpg?1576384369", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/f/0f2eb849-b3ab-4d26-86c5-235c8161cf2a.jpg?1576384369"}, "reprint": true, "digital": false, "set_type": "expansion"}, {"name": "Murder", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/8/c8676f02-cf1e-4d40-a0c5-6e5a97417898.jpg?1562559978", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/8/c8676f02-cf1e-4d40-a0c5-6e5a97417898.jpg?1562559978"}, "reprint": false, "digital": false, "set_type": "core"}, {"name": "Murderous Compulsion", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/3/33b94db1-ac8c-4667-81d5-408df0f30879.jpg?1576384534", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/3/33b94db1-ac8c-4667-81d5-408df0f30879.jpg?1576384534"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Murderous Cut", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/2/b2dadff2-883f-4134-a881-be145cdcbd84.jpg?1562792142", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/2/b2dadff2-883f-4134-a881-be145cdcbd84.jpg?1562792142"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Murderous Spoils", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/1/91ece344-c516-449e-ab7c-2e78d4778f02.jpg?1562638187", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/1/91ece344-c516-449e-ab7c-2e78d4778f02.jpg?1562638187"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Mutual Destruction", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/5/85ac0b25-80bf-4871-a6f6-5cf4d5b9496e.jpg?1591226898", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/5/85ac0b25-80bf-4871-a6f6-5cf4d5b9496e.jpg?1591226898"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Mythos of Nethroi", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/a/6abc24e1-e721-471a-9efd-547f320675b0.jpg?1591226925", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/a/6abc24e1-e721-471a-9efd-547f320675b0.jpg?1591226925"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Neck Snap", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/c/fc326b79-363e-4c14-86e4-23041f2d6b4f.jpg?1562375861", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/c/fc326b79-363e-4c14-86e4-23041f2d6b4f.jpg?1562375861"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Noxious Grasp", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/e/8e5758cc-1f84-455d-a983-8ec471727eaf.jpg?1592516744", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/e/8e5758cc-1f84-455d-a983-8ec471727eaf.jpg?1592516744"}, "reprint": false, "digital": false, "set_type": "core"}, {"name": "Obscura Charm", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/9/9961562d-cad9-40e5-afae-3ebce77a2260.jpg?1648583418", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/9/9961562d-cad9-40e5-afae-3ebce77a2260.jpg?1648583418"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Obscura Charm", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/a/4a02b758-65b6-4c25-83b9-de63a1a92b51.jpg?1648583494", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/a/4a02b758-65b6-4c25-83b9-de63a1a92b51.jpg?1648583494"}, "reprint": false, "frame_effects": ["showcase"], "digital": false, "set_type": "expansion"}, {"name": "Orim's Thunder", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/0/d00bf192-4baf-46ba-947b-a22d07635b04.jpg?1562944526", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/0/d00bf192-4baf-46ba-947b-a22d07635b04.jpg?1562944526"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Orzhov Charm", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/c/8ca44265-5e1b-4fbf-9002-52b2ce9b7448.jpg?1561835927", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/c/8ca44265-5e1b-4fbf-9002-52b2ce9b7448.jpg?1561835927"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Parting Thoughts", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/e/2e60b5a1-923c-4c67-ae06-2a498dc46506.jpg?1562393855", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/e/2e60b5a1-923c-4c67-ae06-2a498dc46506.jpg?1562393855"}, "reprint": false, "digital": false, "set_type": "commander"}, {"name": "Path of Peace", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/1/41369848-ba9a-40ef-931e-1a65bc979209.jpg?1562434966", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/1/41369848-ba9a-40ef-931e-1a65bc979209.jpg?1562434966"}, "reprint": true, "digital": false, "set_type": "masters"}, {"name": "Path of Peace", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/f/af7a2719-7910-4601-be88-7b3c249199d3.jpg?1562932043", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/f/af7a2719-7910-4601-be88-7b3c249199d3.jpg?1562932043"}, "reprint": true, "digital": false, "set_type": "expansion"}, {"name": "Path of Peace", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/b/cb14d3f4-09f3-4113-bdc3-0fd753137f7c.jpg?1562942983", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/b/cb14d3f4-09f3-4113-bdc3-0fd753137f7c.jpg?1562942983"}, "reprint": true, "digital": false, "set_type": "starter"}, {"name": "Path of Peace", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/1/a1f3e1c9-bfad-49a1-b171-6fa344ef2eef.jpg?1562447361", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/1/a1f3e1c9-bfad-49a1-b171-6fa344ef2eef.jpg?1562447361"}, "reprint": false, "digital": false, "set_type": "starter"}, {"name": "Phthisis", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/b/9ba55f16-a37c-4caa-9417-227a06cf4061.jpg?1562927843", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/b/9ba55f16-a37c-4caa-9417-227a06cf4061.jpg?1562927843"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Pinion Feast", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/5/45d6df03-c3c3-42c3-85a4-6fccb0741592.jpg?1562785514", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/5/45d6df03-c3c3-42c3-85a4-6fccb0741592.jpg?1562785514"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Pistus Strike", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/a/1a2918d6-50f7-4bc1-aef2-930a5c84be8d.jpg?1562609919", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/a/1a2918d6-50f7-4bc1-aef2-930a5c84be8d.jpg?1562609919"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Pitfall Trap", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/8/2823d9a5-dd2f-4e6a-8e3d-554c4204aa32.jpg?1562610754", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/8/2823d9a5-dd2f-4e6a-8e3d-554c4204aa32.jpg?1562610754"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Plague Spores", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/d/0d106d56-a688-49cc-8d5d-0279a5a7c0a7.jpg?1562897663", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/d/0d106d56-a688-49cc-8d5d-0279a5a7c0a7.jpg?1562897663"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Plummet", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/4/5469e696-bbf1-43e3-9c25-fe089b36caed.jpg?1636224615", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/4/5469e696-bbf1-43e3-9c25-fe089b36caed.jpg?1636224615"}, "reprint": true, "digital": false, "set_type": "expansion"}, {"name": "Plummet", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/b/4be85ceb-be98-43ce-9565-a72990797437.jpg?1627708161", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/b/4be85ceb-be98-43ce-9565-a72990797437.jpg?1627708161"}, "reprint": true, "digital": false, "set_type": "expansion"}, {"name": "Plummet", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/8/d884b2f2-946e-4d5d-b8cf-ef035726a188.jpg?1591227840", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/8/d884b2f2-946e-4d5d-b8cf-ef035726a188.jpg?1591227840"}, "reprint": true, "digital": false, "set_type": "expansion"}, {"name": "Plummet", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/8/a8b2f186-4e04-49cb-a206-257cfb7e9361.jpg?1581480847", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/8/a8b2f186-4e04-49cb-a206-257cfb7e9361.jpg?1581480847"}, "reprint": true, "digital": false, "set_type": "expansion"}, {"name": "Plummet", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/4/54a0afaa-f99f-4c7a-9fa1-c6a46dfb2a29.jpg?1561480279", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/4/54a0afaa-f99f-4c7a-9fa1-c6a46dfb2a29.jpg?1561480279"}, "reprint": true, "digital": false, "set_type": "expansion"}, {"name": "Plummet", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/f/5f6acb5b-b087-4cad-b40f-2de37029847c.jpg?1562917482", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/f/5f6acb5b-b087-4cad-b40f-2de37029847c.jpg?1562917482"}, "reprint": true, "digital": false, "set_type": "expansion"}, {"name": "Plummet", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/6/a67bb585-cc4f-4cbc-9a5a-d31df98c07ae.jpg?1562930081", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/6/a67bb585-cc4f-4cbc-9a5a-d31df98c07ae.jpg?1562930081"}, "reprint": false, "digital": false, "set_type": "archenemy"}, {"name": "Poison Arrow", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/b/6b7b5f34-c250-484e-9bae-94789b2a87fb.jpg?1562256571", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/b/6b7b5f34-c250-484e-9bae-94789b2a87fb.jpg?1562256571"}, "reprint": false, "digital": false, "set_type": "starter"}, {"name": "Poison the Cup", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/f/7fb94456-5266-47db-b514-a0e17e34b771.jpg?1631048334", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/f/7fb94456-5266-47db-b514-a0e17e34b771.jpg?1631048334"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Polymorph", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/b/fbae8702-a152-4c53-8a76-691a221f2475.jpg?1562722872", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/b/fbae8702-a152-4c53-8a76-691a221f2475.jpg?1562722872"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Pongify", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/c/cce74a84-4441-4f2e-89d8-df0b096790ed.jpg?1562582099", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/c/cce74a84-4441-4f2e-89d8-df0b096790ed.jpg?1562582099"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Power Word Kill", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/9/395b6ce4-143f-4eed-b565-98aa3d6208ef.jpg?1627705234", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/9/395b6ce4-143f-4eed-b565-98aa3d6208ef.jpg?1627705234"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Power Word Kill", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/6/36c71043-1c11-4377-ab33-41d19927143a.jpg?1654010561", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/6/36c71043-1c11-4377-ab33-41d19927143a.jpg?1654010561"}, "reprint": true, "digital": false, "set_type": "promo"}, {"name": "Premature Burial", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/9/e96cea6a-fea6-4a6b-84b2-7b57237be96a.jpg?1562944222", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/9/e96cea6a-fea6-4a6b-84b2-7b57237be96a.jpg?1562944222"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Price of Fame", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/1/61b52152-0f7c-4466-9e49-033477028f67.jpg?1572893038", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/1/61b52152-0f7c-4466-9e49-033477028f67.jpg?1572893038"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Prismatic Wardrobe", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/9/79624ebe-7110-486d-82ff-b64c662dc6de.jpg?1593865843", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/9/79624ebe-7110-486d-82ff-b64c662dc6de.jpg?1593865843"}, "reprint": false, "digital": false, "set_type": "funny"}, {"name": "Public Execution", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/8/48188942-d0ba-4503-bd75-c7a5329bb7c8.jpg?1562553248", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/8/48188942-d0ba-4503-bd75-c7a5329bb7c8.jpg?1562553248"}, "reprint": false, "digital": false, "set_type": "core"}, {"name": "Puncturing Light", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/b/5b101264-4994-43b7-9156-228f7d10d2bd.jpg?1576383877", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/b/5b101264-4994-43b7-9156-228f7d10d2bd.jpg?1576383877"}, "reprint": true, "digital": false, "set_type": "expansion"}, {"name": "Puncturing Light", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/5/e52d260a-e1ca-4228-855e-2e104b86fd6c.jpg?1562709696", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/5/e52d260a-e1ca-4228-855e-2e104b86fd6c.jpg?1562709696"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Purge", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/d/bdcbe727-81f0-469e-92f1-0dd9acdb54ea.jpg?1562639281", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/d/bdcbe727-81f0-469e-92f1-0dd9acdb54ea.jpg?1562639281"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Putrefy", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/d/0d43a0b6-2a5c-4959-96ee-6e570949dfed.jpg?1562897570", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/d/0d43a0b6-2a5c-4959-96ee-6e570949dfed.jpg?1562897570"}, "reprint": true, "digital": false, "set_type": "expansion"}, {"name": "Putrefy", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/c/2c0aca3e-d91d-4bb7-ba4a-500d93f71718.jpg?1592713790", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/c/2c0aca3e-d91d-4bb7-ba4a-500d93f71718.jpg?1592713790"}, "reprint": true, "digital": false, "set_type": "duel_deck"}, {"name": "Putrefy", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/a/0a16086c-5a74-45d0-8b38-e832cfbc80f7.jpg?1598917276", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/a/0a16086c-5a74-45d0-8b38-e832cfbc80f7.jpg?1598917276"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Putrefy", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/8/3882ebea-2864-40ef-a21d-6ba80a0bd417.jpg?1624065750", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/8/3882ebea-2864-40ef-a21d-6ba80a0bd417.jpg?1624065750"}, "reprint": true, "digital": false, "set_type": "masterpiece"}, {"name": "Putrefy", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/3/236f46d9-276b-4418-a959-39b0963fc525.jpg?1561756786", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/3/236f46d9-276b-4418-a959-39b0963fc525.jpg?1561756786"}, "reprint": true, "digital": false, "set_type": "promo"}, {"name": "Radiant's Judgment", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/8/28d2718e-c6fc-4961-b094-11f25f1177ff.jpg?1562862779", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/8/28d2718e-c6fc-4961-b094-11f25f1177ff.jpg?1562862779"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Rapid Hybridization", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/3/83557f55-f1ab-4995-9cc1-37be895a59db.jpg?1561834181", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/3/83557f55-f1ab-4995-9cc1-37be895a59db.jpg?1561834181"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Reach of Shadows", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/b/bbf9a803-473a-4c38-b352-d47c4fd93d5e.jpg?1562829283", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/b/bbf9a803-473a-4c38-b352-d47c4fd93d5e.jpg?1562829283"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Reave Soul", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/e/ce7ff657-aa44-4336-895a-87518159cef6.jpg?1572490229", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/e/ce7ff657-aa44-4336-895a-87518159cef6.jpg?1572490229"}, "reprint": true, "digital": false, "set_type": "expansion"}, {"name": "Reave Soul", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/b/db3d5e9d-07e8-43e1-aaf0-1f9e4ed2834a.jpg?1562045144", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/b/db3d5e9d-07e8-43e1-aaf0-1f9e4ed2834a.jpg?1562045144"}, "reprint": false, "digital": false, "set_type": "core"}, {"name": "Rebuke", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/6/267185ac-a176-423e-a7f8-ee966d1d9a1e.jpg?1562827636", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/6/267185ac-a176-423e-a7f8-ee966d1d9a1e.jpg?1562827636"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Regicide", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/7/07f56287-91e0-418f-8b57-35c6c30cee33.jpg?1576381853", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/7/07f56287-91e0-418f-8b57-35c6c30cee33.jpg?1576381853"}, "reprint": false, "frame_effects": ["draft"], "digital": false, "set_type": "draft_innovation"}, {"name": "Reign of Chaos", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/2/9285b14a-fc8e-457a-b803-202e05be41e5.jpg?1562720487", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/2/9285b14a-fc8e-457a-b803-202e05be41e5.jpg?1562720487"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Rend Flesh", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/2/92b300a3-e6a8-4ca9-bb26-03f57b5ff6ec.jpg?1562762516", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/2/92b300a3-e6a8-4ca9-bb26-03f57b5ff6ec.jpg?1562762516"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Reprisal", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/4/343baad1-dd58-4d64-9b0a-258618094ceb.jpg?1593095328", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/4/343baad1-dd58-4d64-9b0a-258618094ceb.jpg?1593095328"}, "reprint": true, "digital": false, "set_type": "expansion"}, {"name": "Reprisal", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/8/3868f7ff-8a84-4153-bf5a-ff001d34e0f0.jpg?1562235914", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/8/3868f7ff-8a84-4153-bf5a-ff001d34e0f0.jpg?1562235914"}, "reprint": true, "digital": false, "set_type": "core"}, {"name": "Reprisal", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/7/179f50be-6658-42f4-b9b9-c97c7d3f239a.jpg?1562768219", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/7/179f50be-6658-42f4-b9b9-c97c7d3f239a.jpg?1562768219"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Reprisal", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/3/839df85a-1aca-4d4b-b327-2778caa6d289.jpg?1562769214", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/3/839df85a-1aca-4d4b-b327-2778caa6d289.jpg?1562769214"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Return to the Earth", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/5/95a53144-2ef3-47d9-a176-73d620202df6.jpg?1562827827", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/5/95a53144-2ef3-47d9-a176-73d620202df6.jpg?1562827827"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Ride Down", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/0/c021868f-9ab8-4a52-b12e-3cc35c9d67f0.jpg?1576385014", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/0/c021868f-9ab8-4a52-b12e-3cc35c9d67f0.jpg?1576385014"}, "reprint": true, "digital": false, "set_type": "expansion"}, {"name": "Ride Down", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/b/3bc9a434-9617-4a20-88f0-355b20f2c538.jpg?1562785134", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/b/3bc9a434-9617-4a20-88f0-355b20f2c538.jpg?1562785134"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Rite of the Serpent", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/0/005b9fec-66de-4079-88e0-c7de7e22d18e.jpg?1562781741", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/0/005b9fec-66de-4079-88e0-c7de7e22d18e.jpg?1562781741"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Ruinous Path", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/0/709ab9cf-eed8-4d73-b10d-c7f6d8750328.jpg?1562921535", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/0/709ab9cf-eed8-4d73-b10d-c7f6d8750328.jpg?1562921535"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Ruinous Path", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/a/8a41a241-ee56-486a-9b4d-fb355b5f65b2.jpg?1562133050", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/a/8a41a241-ee56-486a-9b4d-fb355b5f65b2.jpg?1562133050"}, "reprint": true, "digital": false, "set_type": "promo"}, {"name": "Sagittars' Volley", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/3/d3104cad-e684-4bd7-b26b-5aa862f7a2b3.jpg?1584831248", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/3/d3104cad-e684-4bd7-b26b-5aa862f7a2b3.jpg?1584831248"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Saltblast", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/d/edd1833d-64b0-4c9b-8f6b-1cf15c29d473.jpg?1562585578", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/d/edd1833d-64b0-4c9b-8f6b-1cf15c29d473.jpg?1562585578"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Saw in Half", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/5/05e6a7bc-a35a-4e68-99a0-be264553b5de.jpg?1638258467", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/5/05e6a7bc-a35a-4e68-99a0-be264553b5de.jpg?1638258467"}, "reprint": false, "digital": false, "set_type": "funny"}, {"name": "Scorch the Fields", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/5/05c4338d-e5c0-46b4-ab16-1f9aa97b4026.jpg?1562896337", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/5/05c4338d-e5c0-46b4-ab16-1f9aa97b4026.jpg?1562896337"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Searing Light", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/6/76dadfd8-8492-4c55-827c-cd4e6a40ae97.jpg?1562918808", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/6/76dadfd8-8492-4c55-827c-cd4e6a40ae97.jpg?1562918808"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Seize the Soul", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/9/29bf245f-e8e0-4d32-8cd7-06d832609910.jpg?1593272276", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/9/29bf245f-e8e0-4d32-8cd7-06d832609910.jpg?1593272276"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Severed Strands", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/c/bce654d6-fcf1-40a8-8bdb-5c37e561f7dc.jpg?1572893052", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/c/bce654d6-fcf1-40a8-8bdb-5c37e561f7dc.jpg?1572893052"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Sever Soul", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/f/df1cb775-3a45-4f2c-9c45-febda6434c59.jpg?1562939859", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/f/df1cb775-3a45-4f2c-9c45-febda6434c59.jpg?1562939859"}, "reprint": true, "digital": false, "set_type": "core"}, {"name": "Sever Soul", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/2/c2d84fec-18f1-4231-a293-0dc1ff868a40.jpg?1562383023", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/2/c2d84fec-18f1-4231-a293-0dc1ff868a40.jpg?1562383023"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Sheer Drop", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/a/ca6e9658-684e-44fd-9c72-c5c3faa9fb1f.jpg?1593095413", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/a/ca6e9658-684e-44fd-9c72-c5c3faa9fb1f.jpg?1593095413"}, "reprint": true, "digital": false, "set_type": "duel_deck"}, {"name": "Silverstrike", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/f/0f27b92a-cde9-41bc-9b23-d83b74b167d4.jpg?1576383889", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/f/0f27b92a-cde9-41bc-9b23-d83b74b167d4.jpg?1576383889"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Sip of Hemlock", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/2/22051427-9b2a-4571-8c9f-ee84d8d0e4d1.jpg?1562815635", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/2/22051427-9b2a-4571-8c9f-ee84d8d0e4d1.jpg?1562815635"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Skywhaler's Shot", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/4/54dd4948-dc79-4fe5-b4a0-fb257058f9dd.jpg?1576381006", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/4/54dd4948-dc79-4fe5-b4a0-fb257058f9dd.jpg?1576381006"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Slaughter", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/f/8ff06c7d-5e78-4bcf-864b-34487f6555b2.jpg?1562088317", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/f/8ff06c7d-5e78-4bcf-864b-34487f6555b2.jpg?1562088317"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Slaughter Pact", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/2/42696fdb-de1f-44ae-bef3-b6af068958d0.jpg?1562908356", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/2/42696fdb-de1f-44ae-bef3-b6af068958d0.jpg?1562908356"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Slaughter Pact", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/c/bc8475bd-bdd4-421c-ace7-c6262f7405ce.jpg?1562932879", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/c/bc8475bd-bdd4-421c-ace7-c6262f7405ce.jpg?1562932879"}, "reprint": true, "digital": false, "set_type": "masterpiece"}, {"name": "Slay", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/c/eccda747-2680-4793-8a13-35e49b4de12f.jpg?1562944937", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/c/eccda747-2680-4793-8a13-35e49b4de12f.jpg?1562944937"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Slingbow Trap", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/e/def592b9-9d8b-4e2d-9b52-e1bc9f4bd019.jpg?1562297661", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/e/def592b9-9d8b-4e2d-9b52-e1bc9f4bd019.jpg?1562297661"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Smite", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/f/ff799e40-fd40-4f6a-8fa8-c22d77476168.jpg?1561854361", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/f/ff799e40-fd40-4f6a-8fa8-c22d77476168.jpg?1561854361"}, "reprint": true, "digital": false, "set_type": "expansion"}, {"name": "Smite", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/6/2698f01a-8574-4ae8-9441-a4361b1c29c6.jpg?1562702095", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/6/2698f01a-8574-4ae8-9441-a4361b1c29c6.jpg?1562702095"}, "reprint": true, "digital": false, "set_type": "expansion"}, {"name": "Smite", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/4/14f165ad-cfe6-4a5d-8073-a70969494855.jpg?1562595916", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/4/14f165ad-cfe6-4a5d-8073-a70969494855.jpg?1562595916"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Smite the Monstrous", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/c/9c103163-31b7-4d25-aa2c-02ca082ee1bf.jpg?1604193448", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/c/9c103163-31b7-4d25-aa2c-02ca082ee1bf.jpg?1604193448"}, "reprint": true, "digital": false, "set_type": "expansion"}, {"name": "Smite the Monstrous", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/6/766aad27-e987-45ab-82aa-e5f44fcc34ef.jpg?1562922992", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/6/766aad27-e987-45ab-82aa-e5f44fcc34ef.jpg?1562922992"}, "reprint": true, "digital": false, "set_type": "expansion"}, {"name": "Smite the Monstrous", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/4/1405bb2e-2204-43ab-82a3-5d0c8537325a.jpg?1562782881", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/4/1405bb2e-2204-43ab-82a3-5d0c8537325a.jpg?1562782881"}, "reprint": true, "digital": false, "set_type": "expansion"}, {"name": "Smite the Monstrous", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/1/0103f3b1-88c2-4cbf-a67c-49420f92970f.jpg?1562825351", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/1/0103f3b1-88c2-4cbf-a67c-49420f92970f.jpg?1562825351"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Smite the Monstrous", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/9/2969e9b5-64d3-401f-9878-32ec283680ab.jpg?1562633742", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/9/2969e9b5-64d3-401f-9878-32ec283680ab.jpg?1562633742"}, "reprint": true, "digital": false, "set_type": "promo"}, {"name": "Smother", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/9/09b4deea-c077-46ab-898f-41b3907ecf33.jpg?1562281733", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/9/09b4deea-c077-46ab-898f-41b3907ecf33.jpg?1562281733"}, "reprint": true, "digital": false, "set_type": "expansion"}, {"name": "Smother", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/a/9a8321af-d667-44e7-8c03-3957286604b9.jpg?1562931422", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/a/9a8321af-d667-44e7-8c03-3957286604b9.jpg?1562931422"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Snuff Out", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/b/db8b3560-4940-40cc-9797-f909dcb1519b.jpg?1562090223", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/b/db8b3560-4940-40cc-9797-f909dcb1519b.jpg?1562090223"}, "reprint": true, "digital": false, "set_type": "duel_deck"}, {"name": "Snuff Out", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/8/18a3cca1-e50e-49b6-9e1a-f86640e3b177.jpg?1562379436", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/8/18a3cca1-e50e-49b6-9e1a-f86640e3b177.jpg?1562379436"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Soul Reap", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/2/e2a129e2-bed5-4ee7-b223-851452f72682.jpg?1562942827", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/2/e2a129e2-bed5-4ee7-b223-851452f72682.jpg?1562942827"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Soul Rend", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/f/7fa084e1-05c2-4691-b9fe-3e3c717e5c9d.jpg?1562720249", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/f/7fa084e1-05c2-4691-b9fe-3e3c717e5c9d.jpg?1562720249"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Spark Harvest", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/0/2013a138-f8e2-4a67-91e8-759288d985a7.jpg?1557576556", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/0/2013a138-f8e2-4a67-91e8-759288d985a7.jpg?1557576556"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Spiteful Blow", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/a/fafaa798-e534-4cd0-b369-9e767a02fe3d.jpg?1593095848", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/a/fafaa798-e534-4cd0-b369-9e767a02fe3d.jpg?1593095848"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Spread the Sickness", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/e/de42a771-4f5c-4295-b070-8cb857a0279e.jpg?1562615413", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/e/de42a771-4f5c-4295-b070-8cb857a0279e.jpg?1562615413"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Strangling Soot", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/7/6723e552-baf5-4b6a-8af6-843fd8597f6c.jpg?1562916570", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/7/6723e552-baf5-4b6a-8af6-843fd8597f6c.jpg?1562916570"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Stream of Acid", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/b/dbbf00b3-2a1b-4ad3-8a5b-deec9e08a231.jpg?1562875294", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/b/dbbf00b3-2a1b-4ad3-8a5b-deec9e08a231.jpg?1562875294"}, "reprint": false, "digital": false, "set_type": "starter"}, {"name": "Sultai Charm", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/9/993c9028-9b1b-4903-81b2-3cf4f37b7229.jpg?1562790829", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/9/993c9028-9b1b-4903-81b2-3cf4f37b7229.jpg?1562790829"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Sultai Charm", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/c/0c72495e-3c03-4dff-b671-47764af5058d.jpg?1562701596", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/c/0c72495e-3c03-4dff-b671-47764af5058d.jpg?1562701596"}, "reprint": true, "digital": false, "set_type": "promo"}, {"name": "Sungold Barrage", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/e/ee507688-9890-47c4-bb04-43c51eb48e22.jpg?1634348527", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/e/ee507688-9890-47c4-bb04-43c51eb48e22.jpg?1634348527"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Surge of Righteousness", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/1/114366f3-237f-4f96-b644-5bd82d97b18b.jpg?1562782657", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/1/114366f3-237f-4f96-b644-5bd82d97b18b.jpg?1562782657"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Swat", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/e/cec3a260-6c50-401d-a0ff-bf49a973e1a1.jpg?1562943805", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/e/cec3a260-6c50-401d-a0ff-bf49a973e1a1.jpg?1562943805"}, "reprint": true, "digital": false, "set_type": "expansion"}, {"name": "Swat", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/4/947b8923-d9d6-4dd8-928b-91be9105ffb4.jpg?1562863743", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/4/947b8923-d9d6-4dd8-928b-91be9105ffb4.jpg?1562863743"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Swift Reckoning", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/0/904cb2f5-eb62-4416-8236-d2fbeadf1dc4.jpg?1562031231", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/0/904cb2f5-eb62-4416-8236-d2fbeadf1dc4.jpg?1562031231"}, "reprint": false, "digital": false, "set_type": "core"}, {"name": "Swift Response", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/9/a90c1ad0-83bd-471c-8d4c-e65bc2abaa18.jpg?1594735305", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/9/a90c1ad0-83bd-471c-8d4c-e65bc2abaa18.jpg?1594735305"}, "reprint": false, "digital": false, "set_type": "core"}, {"name": "Take Vengeance", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/6/66fbde22-d98d-4f12-b4d8-1bad2a9878b2.jpg?1562302645", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/6/66fbde22-d98d-4f12-b4d8-1bad2a9878b2.jpg?1562302645"}, "reprint": false, "digital": false, "set_type": "core"}, {"name": "Terashi's Verdict", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/c/bc5fa34b-95c6-4e02-9e15-3f595f744741.jpg?1562879427", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/c/bc5fa34b-95c6-4e02-9e15-3f595f744741.jpg?1562879427"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Terminal Agony", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/d/3ddb6d98-3a3a-4332-a64e-97aec71777a4.jpg?1626103523", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/d/3ddb6d98-3a3a-4332-a64e-97aec71777a4.jpg?1626103523"}, "reprint": false, "digital": false, "set_type": "draft_innovation"}, {"name": "Terminate", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/a/8af2d815-d8b2-42ff-9889-acbe77a42583.jpg?1593814672", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/a/8af2d815-d8b2-42ff-9889-acbe77a42583.jpg?1593814672"}, "reprint": true, "digital": false, "set_type": "masters"}, {"name": "Terminate", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/c/dc8acab8-4469-4baa-af2f-a3f49b841a55.jpg?1562644597", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/c/dc8acab8-4469-4baa-af2f-a3f49b841a55.jpg?1562644597"}, "reprint": true, "digital": false, "set_type": "expansion"}, {"name": "Terminate", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/9/190ca502-672d-4cc0-b6e0-b9de517058d0.jpg?1562900286", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/9/190ca502-672d-4cc0-b6e0-b9de517058d0.jpg?1562900286"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Terminate", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/4/54f3c523-09dc-4f2a-9bd9-7614e061de28.jpg?1655823700", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/4/54f3c523-09dc-4f2a-9bd9-7614e061de28.jpg?1655823700"}, "reprint": true, "frame_effects": ["inverted"], "digital": false, "set_type": "masters"}, {"name": "Terminate", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/f/dfd77920-7dbb-4673-9317-095ce9483878.jpg?1575602242", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/f/dfd77920-7dbb-4673-9317-095ce9483878.jpg?1575602242"}, "reprint": true, "digital": false, "set_type": "promo"}, {"name": "Terror", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/d/3d1ccc3b-a6bd-4dc8-b7ba-99172d612106.jpg?1562546519", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/d/3d1ccc3b-a6bd-4dc8-b7ba-99172d612106.jpg?1562546519"}, "reprint": true, "digital": false, "set_type": "core"}, {"name": "Terror", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/4/f41651db-619a-4ab4-86cf-a0d32297dbdf.jpg?1562163040", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/4/f41651db-619a-4ab4-86cf-a0d32297dbdf.jpg?1562163040"}, "reprint": true, "digital": false, "set_type": "expansion"}, {"name": "Terror", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/1/21004958-2c7e-4a55-bc80-411c4d780106.jpg?1559591536", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/1/21004958-2c7e-4a55-bc80-411c4d780106.jpg?1559591536"}, "reprint": false, "digital": false, "set_type": "core"}, {"name": "Terror", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/a/ba9d4863-75f2-4894-8033-e4ffebe0547a.jpg?1561757930", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/a/ba9d4863-75f2-4894-8033-e4ffebe0547a.jpg?1561757930"}, "reprint": true, "digital": false, "set_type": "promo"}, {"name": "Tezzeret's Betrayal", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/d/9d71efa6-5de8-476f-86ce-0790956e574f.jpg?1562932177", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/d/9d71efa6-5de8-476f-86ce-0790956e574f.jpg?1562932177"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Thornado", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/a/eadffd6b-d707-4fc5-a600-44eb9124b195.jpg?1615475425", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/a/eadffd6b-d707-4fc5-a600-44eb9124b195.jpg?1615475425"}, "reprint": false, "digital": false, "set_type": "draft_innovation"}, {"name": "Tidy Conclusion", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/f/dfcf6849-4fac-41b9-8e70-dc77c4562a42.jpg?1576381900", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/f/dfcf6849-4fac-41b9-8e70-dc77c4562a42.jpg?1576381900"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Trip Wire", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/e/4eb1e16f-002e-4a81-ba41-cfe41f3a9071.jpg?1634292196", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/e/4eb1e16f-002e-4a81-ba41-cfe41f3a9071.jpg?1634292196"}, "reprint": false, "digital": false, "set_type": "starter"}, {"name": "Triumphant Surge", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/5/75d6eb18-a49d-4fa5-a333-78aafbc4abcb.jpg?1581479273", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/5/75d6eb18-a49d-4fa5-a333-78aafbc4abcb.jpg?1581479273"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Tyrant's Scorn", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/7/b7e2708c-2824-4925-b529-d625deb77924.jpg?1557577324", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/7/b7e2708c-2824-4925-b529-d625deb77924.jpg?1557577324"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Ultimate Price", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/4/b41f7cf3-bd76-4184-b694-f565aa5cf3a4.jpg?1562791851", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/4/b41f7cf3-bd76-4184-b694-f565aa5cf3a4.jpg?1562791851"}, "reprint": true, "digital": false, "set_type": "expansion"}, {"name": "Ultimate Price", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/2/d2b4912a-83a2-4870-8fac-81fa79da2830.jpg?1562793639", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/2/d2b4912a-83a2-4870-8fac-81fa79da2830.jpg?1562793639"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Ultimate Price", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/3/334e3ffc-a4dc-405c-b6e4-7182f28241fe.jpg?1562639743", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/3/334e3ffc-a4dc-405c-b6e4-7182f28241fe.jpg?1562639743"}, "reprint": true, "digital": false, "set_type": "promo"}, {"name": "Unforge", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/3/d369a3da-3424-4984-a50a-59fd9c3d689e.jpg?1562639761", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/3/d369a3da-3424-4984-a50a-59fd9c3d689e.jpg?1562639761"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Unholy Hunger", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/9/5994b7b0-3bca-480b-b265-ed269f15c17e.jpg?1562021369", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/9/5994b7b0-3bca-480b-b265-ed269f15c17e.jpg?1562021369"}, "reprint": false, "digital": false, "set_type": "core"}, {"name": "Unlicensed Disintegration", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/6/16ad8f86-7860-4896-a161-07bf347bbd5b.jpg?1576382889", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/6/16ad8f86-7860-4896-a161-07bf347bbd5b.jpg?1576382889"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Unlicensed Disintegration", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/4/74843584-d6b1-4ee6-bedb-999ab0a42bb9.jpg?1562636815", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/4/74843584-d6b1-4ee6-bedb-999ab0a42bb9.jpg?1562636815"}, "reprint": true, "digital": false, "set_type": "promo"}, {"name": "Valorous Stance", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/e/0e6b9a3b-8a19-4094-8dbb-08a0a9ca04a0.jpg?1643587276", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/e/0e6b9a3b-8a19-4094-8dbb-08a0a9ca04a0.jpg?1643587276"}, "reprint": true, "digital": false, "set_type": "expansion"}, {"name": "Valorous Stance", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/5/65998e94-15a0-41f1-8288-730b957f81df.jpg?1562825972", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/5/65998e94-15a0-41f1-8288-730b957f81df.jpg?1562825972"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Valorous Stance", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/4/f482213a-4e3e-4e13-82a1-88e7d6c4ba2c.jpg?1561758433", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/4/f482213a-4e3e-4e13-82a1-88e7d6c4ba2c.jpg?1561758433"}, "reprint": true, "digital": false, "set_type": "starter"}, {"name": "Vanquish", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/7/27bae717-56c0-4028-b1e7-a445d6a57176.jpg?1562875950", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/7/27bae717-56c0-4028-b1e7-a445d6a57176.jpg?1562875950"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Vanquish the Foul", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/f/8fdcec06-e33c-4737-b81e-b156d6e3fd77.jpg?1562821391", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/f/8fdcec06-e33c-4737-b81e-b156d6e3fd77.jpg?1562821391"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Vanquish the Weak", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/1/c15852d4-2c79-4841-bb65-6661d88fdfab.jpg?1604196688", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/1/c15852d4-2c79-4841-bb65-6661d88fdfab.jpg?1604196688"}, "reprint": true, "digital": false, "set_type": "expansion"}, {"name": "Vanquish the Weak", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/5/e599ed0b-4b3b-4341-b6ac-7fdfdc6799a3.jpg?1562565757", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/5/e599ed0b-4b3b-4341-b6ac-7fdfdc6799a3.jpg?1562565757"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Vendetta", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/3/039fc76d-3b7e-4329-a997-07c25509e421.jpg?1562700700", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/3/039fc76d-3b7e-4329-a997-07c25509e421.jpg?1562700700"}, "reprint": true, "digital": false, "set_type": "expansion"}, {"name": "Vendetta", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/7/67ced38e-0f33-4bda-8e18-09f6ac03a3d7.jpg?1562381344", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/7/67ced38e-0f33-4bda-8e18-09f6ac03a3d7.jpg?1562381344"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Vengeance", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/1/011b9836-fee4-4e83-add7-5e13cb1275d6.jpg?1562231350", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/1/011b9836-fee4-4e83-add7-5e13cb1275d6.jpg?1562231350"}, "reprint": true, "digital": false, "set_type": "core"}, {"name": "Vengeance", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/8/a882fbcc-b2b9-44f3-b5cc-56759879f473.jpg?1562257514", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/8/a882fbcc-b2b9-44f3-b5cc-56759879f473.jpg?1562257514"}, "reprint": true, "digital": false, "set_type": "starter"}, {"name": "Vengeance", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/2/3209ee48-4485-44fc-b71d-cd6241674e64.jpg?1562906693", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/2/3209ee48-4485-44fc-b71d-cd6241674e64.jpg?1562906693"}, "reprint": true, "digital": false, "set_type": "starter"}, {"name": "Vengeance", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/9/c91c249b-157c-4f1d-8171-29d1e75b1c9f.jpg?1562447828", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/9/c91c249b-157c-4f1d-8171-29d1e75b1c9f.jpg?1562447828"}, "reprint": false, "digital": false, "set_type": "starter"}, {"name": "Venomous Vines", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/b/db10359c-1ea8-4453-bc01-f638ad20a5ec.jpg?1562632255", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/b/db10359c-1ea8-4453-bc01-f638ad20a5ec.jpg?1562632255"}, "reprint": false, "digital": false, "set_type": "expansion"}]} \ No newline at end of file diff --git a/web/public/mtg/jsons/terror3.json b/web/public/mtg/jsons/terror3.json index 853c2ece..463fb4a7 100644 --- a/web/public/mtg/jsons/terror3.json +++ b/web/public/mtg/jsons/terror3.json @@ -1 +1 @@ -{"object": "list", "total_cards": 369, "has_more": false, "data": [{"object": "card", "id": "ee4c6135-eee9-43ec-bbe8-76912352dcac", "oracle_id": "d92b9f63-17b6-4ed2-b6ae-083a8161863e", "multiverse_ids": [220023], "mtgo_id": 42272, "mtgo_foil_id": 42273, "tcgplayer_id": 56284, "cardmarket_id": 250720, "name": "Victim of Night", "lang": "en", "released_at": "2011-09-30", "uri": "https://api.scryfall.com/cards/ee4c6135-eee9-43ec-bbe8-76912352dcac", "scryfall_uri": "https://scryfall.com/card/isd/124/victim-of-night?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/e/e/ee4c6135-eee9-43ec-bbe8-76912352dcac.jpg?1562839346", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/e/ee4c6135-eee9-43ec-bbe8-76912352dcac.jpg?1562839346", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/e/e/ee4c6135-eee9-43ec-bbe8-76912352dcac.jpg?1562839346", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/e/e/ee4c6135-eee9-43ec-bbe8-76912352dcac.png?1562839346", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/e/ee4c6135-eee9-43ec-bbe8-76912352dcac.jpg?1562839346", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/e/e/ee4c6135-eee9-43ec-bbe8-76912352dcac.jpg?1562839346"}, "mana_cost": "{B}{B}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Destroy target non-Vampire, non-Werewolf, non-Zombie creature.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "d1026945-2969-42b9-be53-f941405a58cb", "set": "isd", "set_name": "Innistrad", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/d1026945-2969-42b9-be53-f941405a58cb", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aisd&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/isd?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/ee4c6135-eee9-43ec-bbe8-76912352dcac/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ad92b9f63-17b6-4ed2-b6ae-083a8161863e&unique=prints", "collector_number": "124", "digital": false, "rarity": "common", "flavor_text": "\"Do not touch a drop. Not yet. I want to watch this so-called slayer's last crisis of faith.\"\n\u2014Olivia Voldaren", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Winona Nelson", "artist_ids": ["e45fe8d3-75d6-42c9-a2df-e945ad81ea27"], "illustration_id": "d5f769c0-8e88-4ff1-8dbc-19b742b00707", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 4477, "penny_rank": 2138, "prices": {"usd": "0.18", "usd_foil": "3.53", "usd_etched": null, "eur": "0.38", "eur_foil": "1.25", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=220023", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Victim+of+Night&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Victim+of+Night&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Victim+of+Night"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/56284?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Victim+of+Night&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/42272?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "2a1bfefd-dae8-49e9-9d56-cc852e3dc93b", "oracle_id": "63c1ac21-e3d8-40c2-8c09-3f31c52992ef", "multiverse_ids": [19135], "mtgo_id": 16154, "mtgo_foil_id": 16155, "tcgplayer_id": 8046, "cardmarket_id": 3238, "name": "Vindicate", "lang": "en", "released_at": "2001-06-04", "uri": "https://api.scryfall.com/cards/2a1bfefd-dae8-49e9-9d56-cc852e3dc93b", "scryfall_uri": "https://scryfall.com/card/apc/126/vindicate?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/2/a/2a1bfefd-dae8-49e9-9d56-cc852e3dc93b.jpg?1562904968", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/a/2a1bfefd-dae8-49e9-9d56-cc852e3dc93b.jpg?1562904968", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/2/a/2a1bfefd-dae8-49e9-9d56-cc852e3dc93b.jpg?1562904968", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/2/a/2a1bfefd-dae8-49e9-9d56-cc852e3dc93b.png?1562904968", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/a/2a1bfefd-dae8-49e9-9d56-cc852e3dc93b.jpg?1562904968", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/2/a/2a1bfefd-dae8-49e9-9d56-cc852e3dc93b.jpg?1562904968"}, "mana_cost": "{1}{W}{B}", "cmc": 3.0, "type_line": "Sorcery", "oracle_text": "Destroy target permanent.", "colors": ["B", "W"], "color_identity": ["B", "W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "e4e00913-d08d-4899-86ea-5cf631e09ce0", "set": "apc", "set_name": "Apocalypse", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/e4e00913-d08d-4899-86ea-5cf631e09ce0", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aapc&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/apc?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/2a1bfefd-dae8-49e9-9d56-cc852e3dc93b/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A63c1ac21-e3d8-40c2-8c09-3f31c52992ef&unique=prints", "collector_number": "126", "digital": false, "rarity": "rare", "flavor_text": "\"Don't mourn for me. This is my destiny.\"\n\u2014Gerrard", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Brian Sn\u00f5ddy", "artist_ids": ["770b4e16-de76-49ed-949f-84e6d2e06d25"], "illustration_id": "23f2852f-f10e-45ae-baa2-262c1a511e64", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 721, "penny_rank": 75, "prices": {"usd": "8.24", "usd_foil": "209.99", "usd_etched": null, "eur": "9.99", "eur_foil": "109.95", "tix": "2.35"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=19135", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Vindicate&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Vindicate&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Vindicate"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/8046?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Vindicate&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/16154?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "e4978ecd-3c2e-49e2-98e0-0172887e4319", "oracle_id": "63c1ac21-e3d8-40c2-8c09-3f31c52992ef", "multiverse_ids": [525357], "tcgplayer_id": 240235, "cardmarket_id": 566832, "name": "Vindicate", "lang": "en", "released_at": "2021-06-18", "uri": "https://api.scryfall.com/cards/e4978ecd-3c2e-49e2-98e0-0172887e4319", "scryfall_uri": "https://scryfall.com/card/mh2/322/vindicate?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/e/4/e4978ecd-3c2e-49e2-98e0-0172887e4319.jpg?1628337210", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/4/e4978ecd-3c2e-49e2-98e0-0172887e4319.jpg?1628337210", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/e/4/e4978ecd-3c2e-49e2-98e0-0172887e4319.jpg?1628337210", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/e/4/e4978ecd-3c2e-49e2-98e0-0172887e4319.png?1628337210", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/4/e4978ecd-3c2e-49e2-98e0-0172887e4319.jpg?1628337210", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/e/4/e4978ecd-3c2e-49e2-98e0-0172887e4319.jpg?1628337210"}, "mana_cost": "{1}{W}{B}", "cmc": 3.0, "type_line": "Sorcery", "oracle_text": "Destroy target permanent.", "colors": ["B", "W"], "color_identity": ["B", "W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "c1c7eb8c-f205-40ab-a609-767cb296544e", "set": "mh2", "set_name": "Modern Horizons 2", "set_type": "draft_innovation", "set_uri": "https://api.scryfall.com/sets/c1c7eb8c-f205-40ab-a609-767cb296544e", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Amh2&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/mh2?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/e4978ecd-3c2e-49e2-98e0-0172887e4319/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A63c1ac21-e3d8-40c2-8c09-3f31c52992ef&unique=prints", "collector_number": "322", "digital": false, "rarity": "rare", "flavor_text": "\"I am the mad one!\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Livia Prima", "artist_ids": ["0f41e561-bc26-4d85-aab6-66c384e01b74"], "illustration_id": "e6fda860-865f-46f6-a321-a892b663de4b", "border_color": "borderless", "frame": "2015", "frame_effects": ["inverted"], "security_stamp": "oval", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "promo_types": ["boosterfun"], "edhrec_rank": 721, "penny_rank": 75, "preview": {"source": "Wizards of the Coast", "source_uri": "https://cafe.naver.com/mtgkr?iframe_url_utf8=%2FArticleRead.nhn%253Fclubid%3D30250607%2526articleid%3D4060%2526referrerAllArticles%3Dtrue", "previewed_at": "2021-05-28"}, "prices": {"usd": "1.71", "usd_foil": "4.04", "usd_etched": null, "eur": "2.52", "eur_foil": "6.44", "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=525357", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Vindicate&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Vindicate&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Vindicate"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/240235?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Vindicate&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Vindicate&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "97aeb745-5b98-4240-a1a8-861c06d616cc", "oracle_id": "63c1ac21-e3d8-40c2-8c09-3f31c52992ef", "multiverse_ids": [429889], "mtgo_id": 64414, "mtgo_foil_id": 64415, "tcgplayer_id": 129550, "cardmarket_id": 296593, "name": "Vindicate", "lang": "en", "released_at": "2017-04-28", "uri": "https://api.scryfall.com/cards/97aeb745-5b98-4240-a1a8-861c06d616cc", "scryfall_uri": "https://scryfall.com/card/mp2/30/vindicate?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/9/7/97aeb745-5b98-4240-a1a8-861c06d616cc.jpg?1562925629", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/7/97aeb745-5b98-4240-a1a8-861c06d616cc.jpg?1562925629", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/9/7/97aeb745-5b98-4240-a1a8-861c06d616cc.jpg?1562925629", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/9/7/97aeb745-5b98-4240-a1a8-861c06d616cc.png?1562925629", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/7/97aeb745-5b98-4240-a1a8-861c06d616cc.jpg?1562925629", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/9/7/97aeb745-5b98-4240-a1a8-861c06d616cc.jpg?1562925629"}, "mana_cost": "{1}{W}{B}", "cmc": 3.0, "type_line": "Sorcery", "oracle_text": "Destroy target permanent.", "colors": ["B", "W"], "color_identity": ["B", "W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": false, "finishes": ["foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "c26402e7-838e-48db-a4b2-7abfc305998a", "set": "mp2", "set_name": "Amonkhet Invocations", "set_type": "masterpiece", "set_uri": "https://api.scryfall.com/sets/c26402e7-838e-48db-a4b2-7abfc305998a", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Amp2&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/mp2?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/97aeb745-5b98-4240-a1a8-861c06d616cc/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A63c1ac21-e3d8-40c2-8c09-3f31c52992ef&unique=prints", "collector_number": "30", "digital": false, "rarity": "mythic", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Igor Kieryluk", "artist_ids": ["9c3e9d17-509f-485c-9360-46d897ce716b"], "illustration_id": "8825cfad-5a73-4f36-bd81-06e9b1ec1690", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 721, "penny_rank": 75, "prices": {"usd": null, "usd_foil": "41.53", "usd_etched": null, "eur": null, "eur_foil": "44.74", "tix": "0.18"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=429889", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Vindicate&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Vindicate&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Vindicate"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/129550?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Vindicate&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/64414?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "6fef34ec-f728-4919-9254-576ed889a654", "oracle_id": "63c1ac21-e3d8-40c2-8c09-3f31c52992ef", "multiverse_ids": [], "tcgplayer_id": 77308, "cardmarket_id": 263956, "name": "Vindicate", "lang": "en", "released_at": "2013-01-01", "uri": "https://api.scryfall.com/cards/6fef34ec-f728-4919-9254-576ed889a654", "scryfall_uri": "https://scryfall.com/card/j13/7/vindicate?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/6/f/6fef34ec-f728-4919-9254-576ed889a654.jpg?1561757378", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/f/6fef34ec-f728-4919-9254-576ed889a654.jpg?1561757378", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/6/f/6fef34ec-f728-4919-9254-576ed889a654.jpg?1561757378", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/6/f/6fef34ec-f728-4919-9254-576ed889a654.png?1561757378", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/f/6fef34ec-f728-4919-9254-576ed889a654.jpg?1561757378", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/6/f/6fef34ec-f728-4919-9254-576ed889a654.jpg?1561757378"}, "mana_cost": "{1}{W}{B}", "cmc": 3.0, "type_line": "Sorcery", "oracle_text": "Destroy target permanent.", "colors": ["B", "W"], "color_identity": ["B", "W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper"], "reserved": false, "foil": true, "nonfoil": false, "finishes": ["foil"], "oversized": false, "promo": true, "reprint": true, "variation": false, "set_id": "e9d7337b-b74e-43ae-820e-a6d26b23c9f3", "set": "j13", "set_name": "Judge Gift Cards 2013", "set_type": "promo", "set_uri": "https://api.scryfall.com/sets/e9d7337b-b74e-43ae-820e-a6d26b23c9f3", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aj13&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/j13?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/6fef34ec-f728-4919-9254-576ed889a654/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A63c1ac21-e3d8-40c2-8c09-3f31c52992ef&unique=prints", "collector_number": "7", "digital": false, "rarity": "rare", "watermark": "wotc", "flavor_text": "\"I have seen entire civilizations rise and fall. You mortals are but dust to me.\"\n\u2014Sorin Markov", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Karla Ortiz", "artist_ids": ["286a7773-06e5-465c-8a2a-76dfcb4ad110"], "illustration_id": "51761b46-2f53-4763-b4e1-fce3862c64bc", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "promo_types": ["judgegift"], "edhrec_rank": 721, "penny_rank": 75, "prices": {"usd": null, "usd_foil": "23.73", "usd_etched": null, "eur": null, "eur_foil": "15.00", "tix": null}, "related_uris": {"tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Vindicate&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Vindicate&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Vindicate"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/77308?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Vindicate&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Vindicate&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "2c2d88dd-813a-4cd5-9a6a-ca6f80564078", "oracle_id": "63c1ac21-e3d8-40c2-8c09-3f31c52992ef", "multiverse_ids": [], "tcgplayer_id": 38279, "cardmarket_id": 18986, "name": "Vindicate", "lang": "en", "released_at": "2007-01-01", "uri": "https://api.scryfall.com/cards/2c2d88dd-813a-4cd5-9a6a-ca6f80564078", "scryfall_uri": "https://scryfall.com/card/g07/4/vindicate?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/2/c/2c2d88dd-813a-4cd5-9a6a-ca6f80564078.jpg?1561756842", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/c/2c2d88dd-813a-4cd5-9a6a-ca6f80564078.jpg?1561756842", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/2/c/2c2d88dd-813a-4cd5-9a6a-ca6f80564078.jpg?1561756842", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/2/c/2c2d88dd-813a-4cd5-9a6a-ca6f80564078.png?1561756842", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/c/2c2d88dd-813a-4cd5-9a6a-ca6f80564078.jpg?1561756842", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/2/c/2c2d88dd-813a-4cd5-9a6a-ca6f80564078.jpg?1561756842"}, "mana_cost": "{1}{W}{B}", "cmc": 3.0, "type_line": "Sorcery", "oracle_text": "Destroy target permanent.", "colors": ["B", "W"], "color_identity": ["B", "W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper"], "reserved": false, "foil": true, "nonfoil": false, "finishes": ["foil"], "oversized": false, "promo": true, "reprint": true, "variation": false, "set_id": "4624619f-b5bf-4822-b364-8385a09a69da", "set": "g07", "set_name": "Judge Gift Cards 2007", "set_type": "promo", "set_uri": "https://api.scryfall.com/sets/4624619f-b5bf-4822-b364-8385a09a69da", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ag07&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/g07?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/2c2d88dd-813a-4cd5-9a6a-ca6f80564078/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A63c1ac21-e3d8-40c2-8c09-3f31c52992ef&unique=prints", "collector_number": "4", "digital": false, "rarity": "rare", "watermark": "dci", "flavor_text": "Some convictions are so strong that the world must break to accommodate them.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Mark Zug", "artist_ids": ["48e2b98c-5467-4671-bd42-4c3746115117"], "illustration_id": "c371e7fe-fe27-4bc7-bbe5-45029201c833", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "promo_types": ["judgegift"], "edhrec_rank": 721, "penny_rank": 75, "prices": {"usd": null, "usd_foil": "49.99", "usd_etched": null, "eur": null, "eur_foil": "0.40", "tix": null}, "related_uris": {"tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Vindicate&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Vindicate&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Vindicate"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/38279?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Vindicate&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Vindicate&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "bdfd0fa3-37d2-403e-99fe-8c9e57515e9d", "oracle_id": "bf6ea336-6a4d-4653-acdd-f09af0b9f0e3", "multiverse_ids": [157426], "mtgo_id": 29234, "mtgo_foil_id": 29235, "tcgplayer_id": 18085, "cardmarket_id": 18910, "name": "Violet Pall", "lang": "en", "released_at": "2008-02-01", "uri": "https://api.scryfall.com/cards/bdfd0fa3-37d2-403e-99fe-8c9e57515e9d", "scryfall_uri": "https://scryfall.com/card/mor/81/violet-pall?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/b/d/bdfd0fa3-37d2-403e-99fe-8c9e57515e9d.jpg?1562881062", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/d/bdfd0fa3-37d2-403e-99fe-8c9e57515e9d.jpg?1562881062", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/b/d/bdfd0fa3-37d2-403e-99fe-8c9e57515e9d.jpg?1562881062", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/b/d/bdfd0fa3-37d2-403e-99fe-8c9e57515e9d.png?1562881062", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/d/bdfd0fa3-37d2-403e-99fe-8c9e57515e9d.jpg?1562881062", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/b/d/bdfd0fa3-37d2-403e-99fe-8c9e57515e9d.jpg?1562881062"}, "mana_cost": "{4}{B}", "cmc": 5.0, "type_line": "Tribal Instant \u2014 Faerie", "oracle_text": "Destroy target nonblack creature. Create a 1/1 black Faerie Rogue creature token with flying.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "all_parts": [{"object": "related_card", "id": "bdfd0fa3-37d2-403e-99fe-8c9e57515e9d", "component": "combo_piece", "name": "Violet Pall", "type_line": "Tribal Instant \u2014 Faerie", "uri": "https://api.scryfall.com/cards/bdfd0fa3-37d2-403e-99fe-8c9e57515e9d"}, {"object": "related_card", "id": "1666cae8-8750-4091-8e45-259e76268db9", "component": "token", "name": "Faerie Rogue", "type_line": "Token Creature \u2014 Faerie Rogue", "uri": "https://api.scryfall.com/cards/1666cae8-8750-4091-8e45-259e76268db9"}], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "c41550df-7b41-41a3-85ab-8612eb2f168f", "set": "mor", "set_name": "Morningtide", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/c41550df-7b41-41a3-85ab-8612eb2f168f", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Amor&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/mor?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/bdfd0fa3-37d2-403e-99fe-8c9e57515e9d/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Abf6ea336-6a4d-4653-acdd-f09af0b9f0e3&unique=prints", "collector_number": "81", "digital": false, "rarity": "common", "flavor_text": "A faerie is the offspring of Oona and mischief.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Jeff Miracola", "artist_ids": ["9b465bde-3656-4495-ace4-af4ce29999ed"], "illustration_id": "4dd501db-a1d7-4070-9841-607af49fb87e", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 15752, "prices": {"usd": "0.10", "usd_foil": "1.46", "usd_etched": null, "eur": "0.09", "eur_foil": "0.29", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=157426", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Violet+Pall&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Violet+Pall&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Violet+Pall"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/18085?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Violet+Pall&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/29234?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "27fc4db6-a5f5-4254-ae64-c8eaf2c98030", "oracle_id": "c39e2046-173a-44b6-8e93-b22ede35485d", "multiverse_ids": [455612], "mtgo_id": 69371, "arena_id": 68753, "tcgplayer_id": 175570, "cardmarket_id": 363834, "name": "Vraska's Stoneglare", "lang": "en", "released_at": "2018-10-05", "uri": "https://api.scryfall.com/cards/27fc4db6-a5f5-4254-ae64-c8eaf2c98030", "scryfall_uri": "https://scryfall.com/card/grn/272/vraskas-stoneglare?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/2/7/27fc4db6-a5f5-4254-ae64-c8eaf2c98030.jpg?1572894308", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/7/27fc4db6-a5f5-4254-ae64-c8eaf2c98030.jpg?1572894308", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/2/7/27fc4db6-a5f5-4254-ae64-c8eaf2c98030.jpg?1572894308", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/2/7/27fc4db6-a5f5-4254-ae64-c8eaf2c98030.png?1572894308", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/7/27fc4db6-a5f5-4254-ae64-c8eaf2c98030.jpg?1572894308", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/2/7/27fc4db6-a5f5-4254-ae64-c8eaf2c98030.jpg?1572894308"}, "mana_cost": "{4}{B}{G}", "cmc": 6.0, "type_line": "Sorcery", "oracle_text": "Destroy target creature. You gain life equal to its toughness. You may search your library and/or graveyard for a card named Vraska, Regal Gorgon, reveal it, and put it into your hand. If you search your library this way, shuffle.", "colors": ["B", "G"], "color_identity": ["B", "G"], "keywords": [], "all_parts": [{"object": "related_card", "id": "4299dbe6-c94d-4ecc-8bfd-741d2649cba1", "component": "combo_piece", "name": "Vraska, Regal Gorgon", "type_line": "Legendary Planeswalker \u2014 Vraska", "uri": "https://api.scryfall.com/cards/4299dbe6-c94d-4ecc-8bfd-741d2649cba1"}, {"object": "related_card", "id": "27fc4db6-a5f5-4254-ae64-c8eaf2c98030", "component": "combo_piece", "name": "Vraska's Stoneglare", "type_line": "Sorcery", "uri": "https://api.scryfall.com/cards/27fc4db6-a5f5-4254-ae64-c8eaf2c98030"}], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "597c6d4a-8212-4903-a6af-12c4ae9e13f0", "set": "grn", "set_name": "Guilds of Ravnica", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/597c6d4a-8212-4903-a6af-12c4ae9e13f0", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Agrn&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/grn?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/27fc4db6-a5f5-4254-ae64-c8eaf2c98030/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ac39e2046-173a-44b6-8e93-b22ede35485d&unique=prints", "collector_number": "272", "digital": false, "rarity": "rare", "watermark": "golgari", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Yongjae Choi", "artist_ids": ["5ab91c3b-a6da-4751-a56e-81d0f61a67ab"], "illustration_id": "f8d915ba-04f1-4574-a039-7ed78b61c9e2", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "promo_types": ["planeswalkerdeck"], "edhrec_rank": 15993, "prices": {"usd": "0.18", "usd_foil": null, "usd_etched": null, "eur": "0.05", "eur_foil": null, "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=455612", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Vraska%27s+Stoneglare&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Vraska%27s+Stoneglare&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Vraska%27s+Stoneglare"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/175570?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Vraska%27s+Stoneglare&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/69371?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "0038ac6a-318f-44fb-bb64-7ae172c4aca3", "oracle_id": "9093e6f1-12bc-4dfb-bc78-6ead0752ad61", "multiverse_ids": [435284], "mtgo_id": 65276, "mtgo_foil_id": 65277, "arena_id": 66225, "tcgplayer_id": 144888, "cardmarket_id": 301300, "name": "Walk the Plank", "lang": "en", "released_at": "2017-09-29", "uri": "https://api.scryfall.com/cards/0038ac6a-318f-44fb-bb64-7ae172c4aca3", "scryfall_uri": "https://scryfall.com/card/xln/130/walk-the-plank?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/0/0/0038ac6a-318f-44fb-bb64-7ae172c4aca3.jpg?1562549640", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/0/0038ac6a-318f-44fb-bb64-7ae172c4aca3.jpg?1562549640", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/0/0/0038ac6a-318f-44fb-bb64-7ae172c4aca3.jpg?1562549640", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/0/0/0038ac6a-318f-44fb-bb64-7ae172c4aca3.png?1562549640", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/0/0038ac6a-318f-44fb-bb64-7ae172c4aca3.jpg?1562549640", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/0/0/0038ac6a-318f-44fb-bb64-7ae172c4aca3.jpg?1562549640"}, "mana_cost": "{B}{B}", "cmc": 2.0, "type_line": "Sorcery", "oracle_text": "Destroy target non-Merfolk creature.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "fe0dad85-54bc-4151-9200-d68da84dd0f2", "set": "xln", "set_name": "Ixalan", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/fe0dad85-54bc-4151-9200-d68da84dd0f2", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Axln&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/xln?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/0038ac6a-318f-44fb-bb64-7ae172c4aca3/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A9093e6f1-12bc-4dfb-bc78-6ead0752ad61&unique=prints", "collector_number": "130", "digital": false, "rarity": "uncommon", "flavor_text": "When Captain Thorn adds a new ship to his fleet, he gives the crew a simple choice: follow me, or fall in the sea.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Kieran Yanner", "artist_ids": ["aa7e89ed-d294-4633-9057-ce04dacfcfa4"], "illustration_id": "b646a686-c208-4dbd-99de-13aa0fea0958", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 5837, "penny_rank": 672, "prices": {"usd": "0.12", "usd_foil": "0.43", "usd_etched": null, "eur": "0.27", "eur_foil": "0.19", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=435284", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Walk+the+Plank&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Walk+the+Plank&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Walk+the+Plank"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/144888?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Walk+the+Plank&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/65276?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "d7f3b24f-e2ec-4405-b6f5-147292063b0a", "oracle_id": "9093e6f1-12bc-4dfb-bc78-6ead0752ad61", "multiverse_ids": [], "tcgplayer_id": 145882, "cardmarket_id": 301268, "name": "Walk the Plank", "lang": "en", "released_at": "2017-09-29", "uri": "https://api.scryfall.com/cards/d7f3b24f-e2ec-4405-b6f5-147292063b0a", "scryfall_uri": "https://scryfall.com/card/pxln/130/walk-the-plank?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/d/7/d7f3b24f-e2ec-4405-b6f5-147292063b0a.jpg?1562935396", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/7/d7f3b24f-e2ec-4405-b6f5-147292063b0a.jpg?1562935396", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/d/7/d7f3b24f-e2ec-4405-b6f5-147292063b0a.jpg?1562935396", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/d/7/d7f3b24f-e2ec-4405-b6f5-147292063b0a.png?1562935396", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/7/d7f3b24f-e2ec-4405-b6f5-147292063b0a.jpg?1562935396", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/d/7/d7f3b24f-e2ec-4405-b6f5-147292063b0a.jpg?1562935396"}, "mana_cost": "{B}{B}", "cmc": 2.0, "type_line": "Sorcery", "oracle_text": "Destroy target non-Merfolk creature.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": true, "nonfoil": false, "finishes": ["foil"], "oversized": false, "promo": true, "reprint": true, "variation": false, "set_id": "e2876a7e-3444-49cc-a299-aae5094f3566", "set": "pxln", "set_name": "Ixalan Promos", "set_type": "promo", "set_uri": "https://api.scryfall.com/sets/e2876a7e-3444-49cc-a299-aae5094f3566", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Apxln&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/pxln?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/d7f3b24f-e2ec-4405-b6f5-147292063b0a/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A9093e6f1-12bc-4dfb-bc78-6ead0752ad61&unique=prints", "collector_number": "130", "digital": false, "rarity": "uncommon", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Christopher Moeller", "artist_ids": ["21e10012-06ae-44f2-b38d-3824dd2e73d4"], "illustration_id": "05696617-f0e9-4d67-8f26-1908842a6421", "border_color": "black", "frame": "2015", "full_art": true, "textless": false, "booster": false, "story_spotlight": false, "promo_types": ["openhouse", "setpromo"], "edhrec_rank": 5837, "penny_rank": 672, "prices": {"usd": null, "usd_foil": "0.73", "usd_etched": null, "eur": null, "eur_foil": "0.10", "tix": null}, "related_uris": {"tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Walk+the+Plank&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Walk+the+Plank&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Walk+the+Plank"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/145882?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Walk+the+Plank&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Walk+the+Plank&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "45ce5126-e7b1-41ab-9e56-1e12927c4d27", "oracle_id": "e939ef5e-ebe1-48cd-9e9f-eb3fd516165c", "multiverse_ids": [23130], "mtgo_id": 14659, "mtgo_foil_id": 14660, "tcgplayer_id": 7745, "cardmarket_id": 3737, "name": "Wallop", "lang": "en", "released_at": "2000-10-02", "uri": "https://api.scryfall.com/cards/45ce5126-e7b1-41ab-9e56-1e12927c4d27", "scryfall_uri": "https://scryfall.com/card/inv/223/wallop?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/4/5/45ce5126-e7b1-41ab-9e56-1e12927c4d27.jpg?1562909144", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/5/45ce5126-e7b1-41ab-9e56-1e12927c4d27.jpg?1562909144", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/4/5/45ce5126-e7b1-41ab-9e56-1e12927c4d27.jpg?1562909144", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/4/5/45ce5126-e7b1-41ab-9e56-1e12927c4d27.png?1562909144", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/5/45ce5126-e7b1-41ab-9e56-1e12927c4d27.jpg?1562909144", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/4/5/45ce5126-e7b1-41ab-9e56-1e12927c4d27.jpg?1562909144"}, "mana_cost": "{1}{G}", "cmc": 2.0, "type_line": "Sorcery", "oracle_text": "Destroy target blue or black creature with flying.", "colors": ["G"], "color_identity": ["G"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "b9ae5e02-7726-47ca-b5e4-5ec402b41cd1", "set": "inv", "set_name": "Invasion", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/b9ae5e02-7726-47ca-b5e4-5ec402b41cd1", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ainv&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/inv?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/45ce5126-e7b1-41ab-9e56-1e12927c4d27/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ae939ef5e-ebe1-48cd-9e9f-eb3fd516165c&unique=prints", "collector_number": "223", "digital": false, "rarity": "uncommon", "flavor_text": "In Yavimaya, flying low to join a battle can be a costly mistake.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Mike Ploog", "artist_ids": ["4a9465c4-1545-4ab6-91e7-60252b90bed4"], "illustration_id": "1dd9eda0-ca3c-40d7-a8f3-47c95414f497", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 22614, "prices": {"usd": "0.17", "usd_foil": "1.29", "usd_etched": null, "eur": "0.29", "eur_foil": "0.71", "tix": "0.09"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=23130", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Wallop&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Wallop&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Wallop"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/7745?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Wallop&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/14659?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "c1f7fb79-19a8-483a-bf91-e687f7da4e9c", "oracle_id": "af64ce09-b7d9-4db9-905e-c4356f242ced", "multiverse_ids": [145991], "mtgo_id": 28681, "mtgo_foil_id": 28682, "tcgplayer_id": 15677, "cardmarket_id": 17888, "name": "Weed Strangle", "lang": "en", "released_at": "2007-10-12", "uri": "https://api.scryfall.com/cards/c1f7fb79-19a8-483a-bf91-e687f7da4e9c", "scryfall_uri": "https://scryfall.com/card/lrw/147/weed-strangle?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/c/1/c1f7fb79-19a8-483a-bf91-e687f7da4e9c.jpg?1562366513", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/1/c1f7fb79-19a8-483a-bf91-e687f7da4e9c.jpg?1562366513", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/c/1/c1f7fb79-19a8-483a-bf91-e687f7da4e9c.jpg?1562366513", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/c/1/c1f7fb79-19a8-483a-bf91-e687f7da4e9c.png?1562366513", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/1/c1f7fb79-19a8-483a-bf91-e687f7da4e9c.jpg?1562366513", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/c/1/c1f7fb79-19a8-483a-bf91-e687f7da4e9c.jpg?1562366513"}, "mana_cost": "{3}{B}{B}", "cmc": 5.0, "type_line": "Sorcery", "oracle_text": "Destroy target creature. Clash with an opponent. If you win, you gain life equal to that creature's toughness. (Each clashing player reveals the top card of their library, then puts that card on the top or bottom. A player wins if their card had a higher mana value.)", "colors": ["B"], "color_identity": ["B"], "keywords": ["Clash"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "30ec97cb-dca9-4bf4-a98b-310f9d8ceaff", "set": "lrw", "set_name": "Lorwyn", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/30ec97cb-dca9-4bf4-a98b-310f9d8ceaff", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Alrw&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/lrw?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/c1f7fb79-19a8-483a-bf91-e687f7da4e9c/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aaf64ce09-b7d9-4db9-905e-c4356f242ced&unique=prints", "collector_number": "147", "digital": false, "rarity": "common", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Jesper Ejsing", "artist_ids": ["a5f8354a-8b51-4e59-96b2-0e3aeae4fa1d"], "illustration_id": "b8759136-b995-473f-90c8-5c4a486efcb9", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 20035, "prices": {"usd": "0.12", "usd_foil": "0.25", "usd_etched": null, "eur": "0.06", "eur_foil": "0.35", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=145991", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Weed+Strangle&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Weed+Strangle&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Weed+Strangle"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/15677?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Weed+Strangle&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/28681?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "d37ba325-5a14-473b-9def-6a4660a50d7a", "oracle_id": "61ce6ec1-79d8-4dc9-ab2d-1623ed1459c1", "multiverse_ids": [13195], "mtgo_id": 15986, "mtgo_foil_id": 15987, "tcgplayer_id": 3152, "cardmarket_id": 3045, "name": "Wing Snare", "lang": "en", "released_at": "2001-04-11", "uri": "https://api.scryfall.com/cards/d37ba325-5a14-473b-9def-6a4660a50d7a", "scryfall_uri": "https://scryfall.com/card/7ed/283/wing-snare?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/d/3/d37ba325-5a14-473b-9def-6a4660a50d7a.jpg?1562248658", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/3/d37ba325-5a14-473b-9def-6a4660a50d7a.jpg?1562248658", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/d/3/d37ba325-5a14-473b-9def-6a4660a50d7a.jpg?1562248658", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/d/3/d37ba325-5a14-473b-9def-6a4660a50d7a.png?1562248658", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/3/d37ba325-5a14-473b-9def-6a4660a50d7a.jpg?1562248658", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/d/3/d37ba325-5a14-473b-9def-6a4660a50d7a.jpg?1562248658"}, "mana_cost": "{2}{G}", "cmc": 3.0, "type_line": "Sorcery", "oracle_text": "Destroy target creature with flying.", "colors": ["G"], "color_identity": ["G"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "230f38aa-9511-4db8-a3aa-aeddbc3f7bb9", "set": "7ed", "set_name": "Seventh Edition", "set_type": "core", "set_uri": "https://api.scryfall.com/sets/230f38aa-9511-4db8-a3aa-aeddbc3f7bb9", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3A7ed&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/7ed?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/d37ba325-5a14-473b-9def-6a4660a50d7a/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A61ce6ec1-79d8-4dc9-ab2d-1623ed1459c1&unique=prints", "collector_number": "283", "digital": false, "rarity": "uncommon", "flavor_text": "The elves long ago mastered the art of hunting with nets. They call it \"fishing the sky.\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Daren Bader", "artist_ids": ["7da1a585-c875-45e4-b322-5da9e8e1f651"], "illustration_id": "a0b07a07-e7b9-41d6-9fb9-b2eafdde7147", "border_color": "white", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 20502, "penny_rank": 11447, "prices": {"usd": "0.16", "usd_foil": "14.40", "usd_etched": null, "eur": "0.08", "eur_foil": "11.97", "tix": "0.09"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=13195", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Wing+Snare&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Wing+Snare&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Wing+Snare"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/3152?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Wing+Snare&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/15986?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "19116d5d-8f2d-4e85-849d-1fbaa67e8cfd", "oracle_id": "61ce6ec1-79d8-4dc9-ab2d-1623ed1459c1", "multiverse_ids": [5675], "mtgo_id": 12687, "mtgo_foil_id": 12688, "tcgplayer_id": 6417, "cardmarket_id": 10674, "name": "Wing Snare", "lang": "en", "released_at": "1999-02-15", "uri": "https://api.scryfall.com/cards/19116d5d-8f2d-4e85-849d-1fbaa67e8cfd", "scryfall_uri": "https://scryfall.com/card/ulg/117/wing-snare?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/1/9/19116d5d-8f2d-4e85-849d-1fbaa67e8cfd.jpg?1562862328", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/9/19116d5d-8f2d-4e85-849d-1fbaa67e8cfd.jpg?1562862328", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/1/9/19116d5d-8f2d-4e85-849d-1fbaa67e8cfd.jpg?1562862328", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/1/9/19116d5d-8f2d-4e85-849d-1fbaa67e8cfd.png?1562862328", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/9/19116d5d-8f2d-4e85-849d-1fbaa67e8cfd.jpg?1562862328", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/1/9/19116d5d-8f2d-4e85-849d-1fbaa67e8cfd.jpg?1562862328"}, "mana_cost": "{2}{G}", "cmc": 3.0, "type_line": "Sorcery", "oracle_text": "Destroy target creature with flying.", "colors": ["G"], "color_identity": ["G"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "78ced61b-4b8a-4b33-b6b2-f5bd66f1a75a", "set": "ulg", "set_name": "Urza's Legacy", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/78ced61b-4b8a-4b33-b6b2-f5bd66f1a75a", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aulg&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ulg?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/19116d5d-8f2d-4e85-849d-1fbaa67e8cfd/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A61ce6ec1-79d8-4dc9-ab2d-1623ed1459c1&unique=prints", "collector_number": "117", "digital": false, "rarity": "uncommon", "flavor_text": "\"Argoth's doom rained from a clear sky. Yavimaya will not share that fate.\"\n\u2014Multani, maro-sorcerer", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Henry Van Der Linde", "artist_ids": ["85767099-afb2-47ee-a251-ddfe6fe8a03e"], "illustration_id": "54007a75-15ca-4a56-a3b3-352b0b06a45d", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 20502, "penny_rank": 11447, "prices": {"usd": "0.10", "usd_foil": "3.21", "usd_etched": null, "eur": "0.05", "eur_foil": "3.25", "tix": "0.09"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=5675", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Wing+Snare&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Wing+Snare&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Wing+Snare"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/6417?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Wing+Snare&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/12687?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "d61748dd-4010-47da-8717-ca0147877057", "oracle_id": "1b2ad355-3f1e-4c8b-93ee-848934646b23", "multiverse_ids": [22966], "mtgo_id": 14673, "mtgo_foil_id": 14674, "tcgplayer_id": 7754, "cardmarket_id": 3745, "name": "Winnow", "lang": "en", "released_at": "2000-10-02", "uri": "https://api.scryfall.com/cards/d61748dd-4010-47da-8717-ca0147877057", "scryfall_uri": "https://scryfall.com/card/inv/45/winnow?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/d/6/d61748dd-4010-47da-8717-ca0147877057.jpg?1562937982", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/6/d61748dd-4010-47da-8717-ca0147877057.jpg?1562937982", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/d/6/d61748dd-4010-47da-8717-ca0147877057.jpg?1562937982", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/d/6/d61748dd-4010-47da-8717-ca0147877057.png?1562937982", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/6/d61748dd-4010-47da-8717-ca0147877057.jpg?1562937982", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/d/6/d61748dd-4010-47da-8717-ca0147877057.jpg?1562937982"}, "mana_cost": "{1}{W}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Destroy target nonland permanent if another permanent with the same name is on the battlefield.\nDraw a card.", "colors": ["W"], "color_identity": ["W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "b9ae5e02-7726-47ca-b5e4-5ec402b41cd1", "set": "inv", "set_name": "Invasion", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/b9ae5e02-7726-47ca-b5e4-5ec402b41cd1", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ainv&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/inv?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/d61748dd-4010-47da-8717-ca0147877057/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A1b2ad355-3f1e-4c8b-93ee-848934646b23&unique=prints", "collector_number": "45", "digital": false, "rarity": "rare", "flavor_text": "\"Strength in numbers? I think not.\"\n\u2014Gerrard", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Roger Raupp", "artist_ids": ["79d6f296-1948-4a24-a2ce-a76e89057f23"], "illustration_id": "24b60136-0dfd-4238-bf20-aa9128f500b1", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 20037, "prices": {"usd": "0.24", "usd_foil": "40.00", "usd_etched": null, "eur": "0.20", "eur_foil": "9.96", "tix": "0.07"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=22966", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Winnow&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Winnow&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Winnow"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/7754?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Winnow&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/14673?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "87d5e94b-0b35-4efd-9158-1767dcaea38c", "oracle_id": "7cc81fb3-495c-47cd-8c56-96197d87e9e0", "multiverse_ids": [513740], "mtgo_id": 89003, "arena_id": 76656, "tcgplayer_id": 233269, "cardmarket_id": 540501, "name": "Witherbloom Command", "lang": "en", "released_at": "2021-04-23", "uri": "https://api.scryfall.com/cards/87d5e94b-0b35-4efd-9158-1767dcaea38c", "scryfall_uri": "https://scryfall.com/card/stx/248/witherbloom-command?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/8/7/87d5e94b-0b35-4efd-9158-1767dcaea38c.jpg?1624740473", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/7/87d5e94b-0b35-4efd-9158-1767dcaea38c.jpg?1624740473", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/8/7/87d5e94b-0b35-4efd-9158-1767dcaea38c.jpg?1624740473", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/8/7/87d5e94b-0b35-4efd-9158-1767dcaea38c.png?1624740473", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/7/87d5e94b-0b35-4efd-9158-1767dcaea38c.jpg?1624740473", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/8/7/87d5e94b-0b35-4efd-9158-1767dcaea38c.jpg?1624740473"}, "mana_cost": "{B}{G}", "cmc": 2.0, "type_line": "Sorcery", "oracle_text": "Choose two \u2014\n\u2022 Target player mills three cards, then you return a land card from your graveyard to your hand.\n\u2022 Destroy target noncreature, nonland permanent with mana value 2 or less.\n\u2022 Target creature gets -3/-1 until end of turn.\n\u2022 Target opponent loses 2 life and you gain 2 life.", "colors": ["B", "G"], "color_identity": ["B", "G"], "keywords": ["Mill"], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "541c3c28-8747-40e5-a231-8e8f33234859", "set": "stx", "set_name": "Strixhaven: School of Mages", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/541c3c28-8747-40e5-a231-8e8f33234859", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Astx&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/stx?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/87d5e94b-0b35-4efd-9158-1767dcaea38c/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A7cc81fb3-495c-47cd-8c56-96197d87e9e0&unique=prints", "collector_number": "248", "digital": false, "rarity": "rare", "watermark": "witherbloom", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Dmitry Burmak", "artist_ids": ["9872f5c0-274a-48ce-a9ad-6f0d5654e29c"], "illustration_id": "d8883b12-2daa-4b7f-9f03-4bd722cdacef", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 5183, "prices": {"usd": "0.71", "usd_foil": "0.93", "usd_etched": null, "eur": "1.35", "eur_foil": "2.00", "tix": "3.83"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=513740", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Witherbloom+Command&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Witherbloom+Command&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Witherbloom+Command"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/233269?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Witherbloom+Command&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/89003?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "1182e0cf-475e-4cb9-a00a-c9a4032f51e4", "oracle_id": "0a1b0910-3b0c-4aa3-b47f-8eb069122743", "multiverse_ids": [111202], "mtgo_id": 24323, "mtgo_foil_id": 24324, "tcgplayer_id": 13993, "cardmarket_id": 13129, "name": "Wrecking Ball", "lang": "en", "released_at": "2006-05-05", "uri": "https://api.scryfall.com/cards/1182e0cf-475e-4cb9-a00a-c9a4032f51e4", "scryfall_uri": "https://scryfall.com/card/dis/139/wrecking-ball?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/1/1/1182e0cf-475e-4cb9-a00a-c9a4032f51e4.jpg?1593273836", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/1/1182e0cf-475e-4cb9-a00a-c9a4032f51e4.jpg?1593273836", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/1/1/1182e0cf-475e-4cb9-a00a-c9a4032f51e4.jpg?1593273836", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/1/1/1182e0cf-475e-4cb9-a00a-c9a4032f51e4.png?1593273836", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/1/1182e0cf-475e-4cb9-a00a-c9a4032f51e4.jpg?1593273836", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/1/1/1182e0cf-475e-4cb9-a00a-c9a4032f51e4.jpg?1593273836"}, "mana_cost": "{2}{B}{R}", "cmc": 4.0, "type_line": "Instant", "oracle_text": "Destroy target creature or land.", "colors": ["B", "R"], "color_identity": ["B", "R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "fdebeda1-b95f-4343-8a94-d125821e6b5c", "set": "dis", "set_name": "Dissension", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/fdebeda1-b95f-4343-8a94-d125821e6b5c", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Adis&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/dis?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/1182e0cf-475e-4cb9-a00a-c9a4032f51e4/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A0a1b0910-3b0c-4aa3-b47f-8eb069122743&unique=prints", "collector_number": "139", "digital": false, "rarity": "common", "watermark": "rakdos", "flavor_text": "Rakdos festivals almost leave enough rubble in their wake to hide the bodies.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Ron Spears", "artist_ids": ["fce9030b-86bd-4439-b06a-920a1eeb184c"], "illustration_id": "d3bb3334-4a7f-4e40-9175-481eecc955c2", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 11167, "penny_rank": 3614, "prices": {"usd": "0.12", "usd_foil": "0.92", "usd_etched": null, "eur": "0.14", "eur_foil": "0.20", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=111202", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Wrecking+Ball&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Wrecking+Ball&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Wrecking+Ball"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/13993?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Wrecking+Ball&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/24323?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "3bdaf55b-2de3-4c8a-90ae-9c88c9d00fd7", "oracle_id": "dafd4385-e64f-4a4a-93c4-b0ac6bd30d41", "multiverse_ids": [174907], "mtgo_id": 31729, "mtgo_foil_id": 31730, "tcgplayer_id": 28636, "cardmarket_id": 20699, "name": "Wretched Banquet", "lang": "en", "released_at": "2009-02-06", "uri": "https://api.scryfall.com/cards/3bdaf55b-2de3-4c8a-90ae-9c88c9d00fd7", "scryfall_uri": "https://scryfall.com/card/con/56/wretched-banquet?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/3/b/3bdaf55b-2de3-4c8a-90ae-9c88c9d00fd7.jpg?1562800483", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/b/3bdaf55b-2de3-4c8a-90ae-9c88c9d00fd7.jpg?1562800483", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/3/b/3bdaf55b-2de3-4c8a-90ae-9c88c9d00fd7.jpg?1562800483", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/3/b/3bdaf55b-2de3-4c8a-90ae-9c88c9d00fd7.png?1562800483", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/b/3bdaf55b-2de3-4c8a-90ae-9c88c9d00fd7.jpg?1562800483", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/3/b/3bdaf55b-2de3-4c8a-90ae-9c88c9d00fd7.jpg?1562800483"}, "mana_cost": "{B}", "cmc": 1.0, "type_line": "Sorcery", "oracle_text": "Destroy target creature if it has the least power or is tied for least power among creatures on the battlefield.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "76b2db58-904c-4e49-8580-9f62f7b3cca4", "set": "con", "set_name": "Conflux", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/76b2db58-904c-4e49-8580-9f62f7b3cca4", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Acon&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/con?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/3bdaf55b-2de3-4c8a-90ae-9c88c9d00fd7/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Adafd4385-e64f-4a4a-93c4-b0ac6bd30d41&unique=prints", "collector_number": "56", "digital": false, "rarity": "common", "flavor_text": "\"The meek inherit nothing.\"\n\u2014Sedris, the Traitor King", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Nils Hamm", "artist_ids": ["c540d1fc-1500-457f-93cf-d6069ee66546"], "illustration_id": "f172668b-b8bd-4f9e-8f31-3c373a146846", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 21902, "penny_rank": 582, "prices": {"usd": "0.04", "usd_foil": "0.15", "usd_etched": null, "eur": "0.02", "eur_foil": "0.25", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=174907", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Wretched+Banquet&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Wretched+Banquet&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Wretched+Banquet"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/28636?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Wretched+Banquet&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/31729?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "768727ce-4f84-4527-8d69-3c9b7877b748", "oracle_id": "c1157d79-38ea-4a88-b346-7b12614ff78a", "multiverse_ids": [548431], "mtgo_id": 97186, "arena_id": 79558, "tcgplayer_id": 262611, "cardmarket_id": 607585, "name": "You Are Already Dead", "lang": "en", "released_at": "2022-02-18", "uri": "https://api.scryfall.com/cards/768727ce-4f84-4527-8d69-3c9b7877b748", "scryfall_uri": "https://scryfall.com/card/neo/129/you-are-already-dead?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/7/6/768727ce-4f84-4527-8d69-3c9b7877b748.jpg?1654567474", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/6/768727ce-4f84-4527-8d69-3c9b7877b748.jpg?1654567474", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/7/6/768727ce-4f84-4527-8d69-3c9b7877b748.jpg?1654567474", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/7/6/768727ce-4f84-4527-8d69-3c9b7877b748.png?1654567474", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/6/768727ce-4f84-4527-8d69-3c9b7877b748.jpg?1654567474", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/7/6/768727ce-4f84-4527-8d69-3c9b7877b748.jpg?1654567474"}, "mana_cost": "{B}", "cmc": 1.0, "type_line": "Instant", "oracle_text": "Destroy target creature that was dealt damage this turn.\nDraw a card.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo", "arena"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "59a2059f-5482-433f-8761-eb2e17859b71", "set": "neo", "set_name": "Kamigawa: Neon Dynasty", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/59a2059f-5482-433f-8761-eb2e17859b71", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aneo&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/neo?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/768727ce-4f84-4527-8d69-3c9b7877b748/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ac1157d79-38ea-4a88-b346-7b12614ff78a&unique=prints", "collector_number": "129", "digital": false, "rarity": "common", "flavor_text": "So swift and sharp was his blade that the ogre never even felt the cut.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Zoltan Boros", "artist_ids": ["1885e6cb-c827-4896-994e-3d0a027d602f"], "illustration_id": "5b69e384-7278-4185-bea2-3a4d66f69ba7", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 5842, "penny_rank": 13035, "preview": {"source": "IGN", "source_uri": "https://www.ign.com/articles/magic-the-gathering-kamigawa-neon-dynasty-card-reveal-nashi", "previewed_at": "2022-02-01"}, "prices": {"usd": "0.09", "usd_foil": "0.19", "usd_etched": null, "eur": "0.10", "eur_foil": "0.08", "tix": "0.01"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=548431", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=You+Are+Already+Dead&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=You+Are+Already+Dead&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=You+Are+Already+Dead"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/262611?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=You+Are+Already+Dead&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/97186?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}]} \ No newline at end of file +{"has_more": false, "data": [{"name": "Victim of Night", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/e/ee4c6135-eee9-43ec-bbe8-76912352dcac.jpg?1562839346", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/e/ee4c6135-eee9-43ec-bbe8-76912352dcac.jpg?1562839346"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Vindicate", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/a/2a1bfefd-dae8-49e9-9d56-cc852e3dc93b.jpg?1562904968", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/a/2a1bfefd-dae8-49e9-9d56-cc852e3dc93b.jpg?1562904968"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Vindicate", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/4/e4978ecd-3c2e-49e2-98e0-0172887e4319.jpg?1628337210", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/4/e4978ecd-3c2e-49e2-98e0-0172887e4319.jpg?1628337210"}, "reprint": true, "frame_effects": ["inverted"], "digital": false, "set_type": "draft_innovation"}, {"name": "Vindicate", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/7/97aeb745-5b98-4240-a1a8-861c06d616cc.jpg?1562925629", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/7/97aeb745-5b98-4240-a1a8-861c06d616cc.jpg?1562925629"}, "reprint": true, "digital": false, "set_type": "masterpiece"}, {"name": "Vindicate", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/f/6fef34ec-f728-4919-9254-576ed889a654.jpg?1561757378", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/f/6fef34ec-f728-4919-9254-576ed889a654.jpg?1561757378"}, "reprint": true, "digital": false, "set_type": "promo"}, {"name": "Vindicate", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/c/2c2d88dd-813a-4cd5-9a6a-ca6f80564078.jpg?1561756842", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/c/2c2d88dd-813a-4cd5-9a6a-ca6f80564078.jpg?1561756842"}, "reprint": true, "digital": false, "set_type": "promo"}, {"name": "Violet Pall", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/d/bdfd0fa3-37d2-403e-99fe-8c9e57515e9d.jpg?1562881062", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/d/bdfd0fa3-37d2-403e-99fe-8c9e57515e9d.jpg?1562881062"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Vraska's Stoneglare", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/7/27fc4db6-a5f5-4254-ae64-c8eaf2c98030.jpg?1572894308", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/7/27fc4db6-a5f5-4254-ae64-c8eaf2c98030.jpg?1572894308"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Walk the Plank", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/0/0038ac6a-318f-44fb-bb64-7ae172c4aca3.jpg?1562549640", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/0/0038ac6a-318f-44fb-bb64-7ae172c4aca3.jpg?1562549640"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Walk the Plank", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/7/d7f3b24f-e2ec-4405-b6f5-147292063b0a.jpg?1562935396", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/7/d7f3b24f-e2ec-4405-b6f5-147292063b0a.jpg?1562935396"}, "reprint": true, "digital": false, "set_type": "promo"}, {"name": "Wallop", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/5/45ce5126-e7b1-41ab-9e56-1e12927c4d27.jpg?1562909144", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/5/45ce5126-e7b1-41ab-9e56-1e12927c4d27.jpg?1562909144"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Weed Strangle", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/1/c1f7fb79-19a8-483a-bf91-e687f7da4e9c.jpg?1562366513", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/1/c1f7fb79-19a8-483a-bf91-e687f7da4e9c.jpg?1562366513"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Wing Snare", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/3/d37ba325-5a14-473b-9def-6a4660a50d7a.jpg?1562248658", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/3/d37ba325-5a14-473b-9def-6a4660a50d7a.jpg?1562248658"}, "reprint": true, "digital": false, "set_type": "core"}, {"name": "Wing Snare", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/9/19116d5d-8f2d-4e85-849d-1fbaa67e8cfd.jpg?1562862328", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/9/19116d5d-8f2d-4e85-849d-1fbaa67e8cfd.jpg?1562862328"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Winnow", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/6/d61748dd-4010-47da-8717-ca0147877057.jpg?1562937982", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/6/d61748dd-4010-47da-8717-ca0147877057.jpg?1562937982"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Witherbloom Command", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/7/87d5e94b-0b35-4efd-9158-1767dcaea38c.jpg?1624740473", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/7/87d5e94b-0b35-4efd-9158-1767dcaea38c.jpg?1624740473"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Wrecking Ball", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/1/1182e0cf-475e-4cb9-a00a-c9a4032f51e4.jpg?1593273836", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/1/1182e0cf-475e-4cb9-a00a-c9a4032f51e4.jpg?1593273836"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Wretched Banquet", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/b/3bdaf55b-2de3-4c8a-90ae-9c88c9d00fd7.jpg?1562800483", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/b/3bdaf55b-2de3-4c8a-90ae-9c88c9d00fd7.jpg?1562800483"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "You Are Already Dead", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/6/768727ce-4f84-4527-8d69-3c9b7877b748.jpg?1654567474", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/6/768727ce-4f84-4527-8d69-3c9b7877b748.jpg?1654567474"}, "reprint": false, "digital": false, "set_type": "expansion"}]} \ No newline at end of file diff --git a/web/public/mtg/jsons/wrath1.json b/web/public/mtg/jsons/wrath1.json index 9133825b..267e34b0 100644 --- a/web/public/mtg/jsons/wrath1.json +++ b/web/public/mtg/jsons/wrath1.json @@ -1 +1 @@ -{"object": "list", "total_cards": 422, "has_more": true, "next_page": "https://api.scryfall.com/cards/search?format=json&include_extras=true&include_multilingual=false&order=name&page=2&q=otag%3Asweeper-creature+%28t%3Ainstant+or+t%3Asorcery%29+not%3Aadventure+-%28set%3Asld+%28%28cn%3E%3D231+cn%3C%3D233%29+or+%28cn%3E%3D321+cn%3C%3D324%29+or+%28cn%3E%3D185+cn%3C%3D189%29+or+%28cn%3E%3D138+cn%3C%3D142%29+or+%28cn%3E%3D364+cn%3C%3D368%29+or+cn%3A669+or+cn%3A670%29%29+-name%3A%2F%5Ea-%2F+not%3Adfc+not%3Asplit+-set%3Acmb2+-set%3Acmb1+-set%3Aplist+-set%3Adbl+-frame%3Aextendedart+language%3Aenglish&unique=art", "data": [{"object": "card", "id": "33303859-c6e0-4ebd-bb5f-44be7f5d7459", "oracle_id": "7c779721-cd1b-4696-9ae9-68ccc284ed2a", "multiverse_ids": [366273], "mtgo_id": 47685, "mtgo_foil_id": 47686, "tcgplayer_id": 67447, "cardmarket_id": 259956, "name": "Aetherize", "lang": "en", "released_at": "2013-02-01", "uri": "https://api.scryfall.com/cards/33303859-c6e0-4ebd-bb5f-44be7f5d7459", "scryfall_uri": "https://scryfall.com/card/gtc/29/aetherize?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/3/3/33303859-c6e0-4ebd-bb5f-44be7f5d7459.jpg?1561821990", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/3/33303859-c6e0-4ebd-bb5f-44be7f5d7459.jpg?1561821990", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/3/3/33303859-c6e0-4ebd-bb5f-44be7f5d7459.jpg?1561821990", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/3/3/33303859-c6e0-4ebd-bb5f-44be7f5d7459.png?1561821990", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/3/33303859-c6e0-4ebd-bb5f-44be7f5d7459.jpg?1561821990", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/3/3/33303859-c6e0-4ebd-bb5f-44be7f5d7459.jpg?1561821990"}, "mana_cost": "{3}{U}", "cmc": 4.0, "type_line": "Instant", "oracle_text": "Return all attacking creatures to their owner's hand.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "035a05f7-e020-4f50-a141-ed16ba704bd2", "set": "gtc", "set_name": "Gatecrash", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/035a05f7-e020-4f50-a141-ed16ba704bd2", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Agtc&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/gtc?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/33303859-c6e0-4ebd-bb5f-44be7f5d7459/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A7c779721-cd1b-4696-9ae9-68ccc284ed2a&unique=prints", "collector_number": "29", "digital": false, "rarity": "uncommon", "flavor_text": "\"You can come back once you've learned some manners\u2014and figured out how to reconstitute your physical forms.\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Ryan Barger", "artist_ids": ["a4e0102e-bbeb-497c-babc-1c0741fea914"], "illustration_id": "52128406-9aff-4392-8e06-0892df04c38b", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 548, "penny_rank": 2811, "prices": {"usd": "0.85", "usd_foil": "4.99", "usd_etched": null, "eur": "0.87", "eur_foil": "2.98", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=366273", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Aetherize&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Aetherize&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Aetherize"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/67447?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Aetherize&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/47685?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "46f1b48f-6528-46bd-a384-2358af25e500", "oracle_id": "48369aec-a991-4bef-8554-01c84302b063", "multiverse_ids": [383178], "mtgo_id": 53542, "mtgo_foil_id": 53543, "tcgplayer_id": 91189, "cardmarket_id": 267848, "name": "Aetherspouts", "lang": "en", "released_at": "2014-07-18", "uri": "https://api.scryfall.com/cards/46f1b48f-6528-46bd-a384-2358af25e500", "scryfall_uri": "https://scryfall.com/card/m15/44/aetherspouts?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/4/6/46f1b48f-6528-46bd-a384-2358af25e500.jpg?1562786278", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/6/46f1b48f-6528-46bd-a384-2358af25e500.jpg?1562786278", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/4/6/46f1b48f-6528-46bd-a384-2358af25e500.jpg?1562786278", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/4/6/46f1b48f-6528-46bd-a384-2358af25e500.png?1562786278", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/6/46f1b48f-6528-46bd-a384-2358af25e500.jpg?1562786278", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/4/6/46f1b48f-6528-46bd-a384-2358af25e500.jpg?1562786278"}, "mana_cost": "{3}{U}{U}", "cmc": 5.0, "type_line": "Instant", "oracle_text": "For each attacking creature, its owner puts it on the top or bottom of their library.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "6ce49890-3b37-42a5-8932-dbeef1d7b62c", "set": "m15", "set_name": "Magic 2015", "set_type": "core", "set_uri": "https://api.scryfall.com/sets/6ce49890-3b37-42a5-8932-dbeef1d7b62c", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Am15&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/m15?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/46f1b48f-6528-46bd-a384-2358af25e500/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A48369aec-a991-4bef-8554-01c84302b063&unique=prints", "collector_number": "44", "digital": false, "rarity": "rare", "flavor_text": "\"Don't worry, there's plenty for everyone.\"\n\u2014Vickon, Eleventh Company battlemage", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Dan Scott", "artist_ids": ["f852fa13-137e-40f2-bbc1-0f01df09c0e0"], "illustration_id": "d4cfc545-b517-46d0-9ea9-3fa4ba875418", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 1411, "penny_rank": 1147, "prices": {"usd": "0.24", "usd_foil": "4.57", "usd_etched": null, "eur": "0.29", "eur_foil": "2.69", "tix": "0.01"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=383178", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Aetherspouts&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Aetherspouts&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Aetherspouts"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/91189?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Aetherspouts&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/53542?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "999f40a7-b723-42e1-83c1-f45a72a26dd4", "oracle_id": "192aa7b2-a819-4ffd-bfbf-a270271898e6", "multiverse_ids": [275707], "mtgo_id": 44211, "mtgo_foil_id": 44212, "tcgplayer_id": 58929, "cardmarket_id": 254732, "name": "Aggravate", "lang": "en", "released_at": "2012-05-04", "uri": "https://api.scryfall.com/cards/999f40a7-b723-42e1-83c1-f45a72a26dd4", "scryfall_uri": "https://scryfall.com/card/avr/125/aggravate?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/9/9/999f40a7-b723-42e1-83c1-f45a72a26dd4.jpg?1592709004", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/9/999f40a7-b723-42e1-83c1-f45a72a26dd4.jpg?1592709004", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/9/9/999f40a7-b723-42e1-83c1-f45a72a26dd4.jpg?1592709004", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/9/9/999f40a7-b723-42e1-83c1-f45a72a26dd4.png?1592709004", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/9/999f40a7-b723-42e1-83c1-f45a72a26dd4.jpg?1592709004", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/9/9/999f40a7-b723-42e1-83c1-f45a72a26dd4.jpg?1592709004"}, "mana_cost": "{3}{R}{R}", "cmc": 5.0, "type_line": "Instant", "oracle_text": "Aggravate deals 1 damage to each creature target player controls. Each creature dealt damage this way attacks this turn if able.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "039810a9-92d7-4f2d-b2d0-ca661ac586c0", "set": "avr", "set_name": "Avacyn Restored", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/039810a9-92d7-4f2d-b2d0-ca661ac586c0", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aavr&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/avr?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/999f40a7-b723-42e1-83c1-f45a72a26dd4/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A192aa7b2-a819-4ffd-bfbf-a270271898e6&unique=prints", "collector_number": "125", "digital": false, "rarity": "uncommon", "flavor_text": "\"Barbarians! They burned my favorite chair! We'll kill them all!\"\n\u2014Anje Falkenrath", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Matt Stewart", "artist_ids": ["20871267-2d8a-41d5-b03a-be3d557c5734"], "illustration_id": "151dec34-b096-43ee-824a-3890cf135206", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 17928, "prices": {"usd": "0.06", "usd_foil": "0.15", "usd_etched": null, "eur": "0.05", "eur_foil": "0.25", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=275707", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Aggravate&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Aggravate&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Aggravate"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/58929?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Aggravate&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/44211?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "5e33aaf7-7490-4b64-a966-82fbf7ca8686", "oracle_id": "ae19dce5-c9fc-4fbe-99b5-dc6a12124a68", "multiverse_ids": [41168], "mtgo_id": 17761, "mtgo_foil_id": 17762, "tcgplayer_id": 10393, "cardmarket_id": 1633, "name": "Akroma's Vengeance", "lang": "en", "released_at": "2002-10-07", "uri": "https://api.scryfall.com/cards/5e33aaf7-7490-4b64-a966-82fbf7ca8686", "scryfall_uri": "https://scryfall.com/card/ons/2/akromas-vengeance?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/5/e/5e33aaf7-7490-4b64-a966-82fbf7ca8686.jpg?1562917166", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/e/5e33aaf7-7490-4b64-a966-82fbf7ca8686.jpg?1562917166", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/5/e/5e33aaf7-7490-4b64-a966-82fbf7ca8686.jpg?1562917166", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/5/e/5e33aaf7-7490-4b64-a966-82fbf7ca8686.png?1562917166", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/e/5e33aaf7-7490-4b64-a966-82fbf7ca8686.jpg?1562917166", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/5/e/5e33aaf7-7490-4b64-a966-82fbf7ca8686.jpg?1562917166"}, "mana_cost": "{4}{W}{W}", "cmc": 6.0, "type_line": "Sorcery", "oracle_text": "Destroy all artifacts, creatures, and enchantments.\nCycling {3} ({3}, Discard this card: Draw a card.)", "colors": ["W"], "color_identity": ["W"], "keywords": ["Cycling"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "914a6c6d-cb3b-45e8-a2db-9978a2339faf", "set": "ons", "set_name": "Onslaught", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/914a6c6d-cb3b-45e8-a2db-9978a2339faf", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aons&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ons?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/5e33aaf7-7490-4b64-a966-82fbf7ca8686/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aae19dce5-c9fc-4fbe-99b5-dc6a12124a68&unique=prints", "collector_number": "2", "digital": false, "rarity": "rare", "flavor_text": "Ixidor had only to imagine their ruin and Akroma made it so.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Greg Hildebrandt & Tim Hildebrandt", "artist_ids": ["020f967b-0d2f-4166-aabe-901dba8bc7ec", "caa7228c-f74c-4145-91fb-1af8d623c353"], "illustration_id": "0cf7d49d-80e5-4da1-88c7-d34427fe0916", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 2099, "penny_rank": 128, "prices": {"usd": "1.22", "usd_foil": "29.81", "usd_etched": null, "eur": "1.77", "eur_foil": "25.00", "tix": "0.16"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=41168", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Akroma%27s+Vengeance&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Akroma%27s+Vengeance&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Akroma%27s+Vengeance"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/10393?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Akroma%27s+Vengeance&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/17761?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "4f112edd-1d2f-45ad-aaeb-6c0934d24c1f", "oracle_id": "ae19dce5-c9fc-4fbe-99b5-dc6a12124a68", "multiverse_ids": [373328], "mtgo_id": 50055, "mtgo_foil_id": 50056, "tcgplayer_id": 70759, "cardmarket_id": 263679, "name": "Akroma's Vengeance", "lang": "en", "released_at": "2013-08-23", "uri": "https://api.scryfall.com/cards/4f112edd-1d2f-45ad-aaeb-6c0934d24c1f", "scryfall_uri": "https://scryfall.com/card/v13/11/akromas-vengeance?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/4/f/4f112edd-1d2f-45ad-aaeb-6c0934d24c1f.jpg?1570203942", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/f/4f112edd-1d2f-45ad-aaeb-6c0934d24c1f.jpg?1570203942", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/4/f/4f112edd-1d2f-45ad-aaeb-6c0934d24c1f.jpg?1570203942", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/4/f/4f112edd-1d2f-45ad-aaeb-6c0934d24c1f.png?1570203942", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/f/4f112edd-1d2f-45ad-aaeb-6c0934d24c1f.jpg?1570203942", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/4/f/4f112edd-1d2f-45ad-aaeb-6c0934d24c1f.jpg?1570203942"}, "mana_cost": "{4}{W}{W}", "cmc": 6.0, "type_line": "Sorcery", "oracle_text": "Destroy all artifacts, creatures, and enchantments.\nCycling {3} ({3}, Discard this card: Draw a card.)", "colors": ["W"], "color_identity": ["W"], "keywords": ["Cycling"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": false, "finishes": ["foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "815577c6-652f-4171-8298-c1063c5bced1", "set": "v13", "set_name": "From the Vault: Twenty", "set_type": "from_the_vault", "set_uri": "https://api.scryfall.com/sets/815577c6-652f-4171-8298-c1063c5bced1", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Av13&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/v13?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/4f112edd-1d2f-45ad-aaeb-6c0934d24c1f/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aae19dce5-c9fc-4fbe-99b5-dc6a12124a68&unique=prints", "collector_number": "11", "digital": false, "rarity": "mythic", "flavor_text": "\"Many must die for the one who should not have perished.\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Aleksi Briclot", "artist_ids": ["5e470014-31cb-41b0-b054-e23374484449"], "illustration_id": "e81d3413-58c7-48b5-babb-8aab85063d1b", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "edhrec_rank": 2099, "penny_rank": 128, "prices": {"usd": null, "usd_foil": "0.94", "usd_etched": null, "eur": null, "eur_foil": "1.00", "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=373328", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Akroma%27s+Vengeance&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Akroma%27s+Vengeance&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Akroma%27s+Vengeance"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/70759?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Akroma%27s+Vengeance&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/50055?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "e2ec168a-3e4f-4527-901a-bc28cc28d125", "oracle_id": "cfc023e0-9e9d-48ac-bfb5-74bfd5977dee", "multiverse_ids": [262657], "mtgo_id": 43305, "mtgo_foil_id": 43306, "tcgplayer_id": 57823, "cardmarket_id": 252591, "name": "Alpha Brawl", "lang": "en", "released_at": "2012-02-03", "uri": "https://api.scryfall.com/cards/e2ec168a-3e4f-4527-901a-bc28cc28d125", "scryfall_uri": "https://scryfall.com/card/dka/82/alpha-brawl?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/e/2/e2ec168a-3e4f-4527-901a-bc28cc28d125.jpg?1562949045", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/2/e2ec168a-3e4f-4527-901a-bc28cc28d125.jpg?1562949045", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/e/2/e2ec168a-3e4f-4527-901a-bc28cc28d125.jpg?1562949045", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/e/2/e2ec168a-3e4f-4527-901a-bc28cc28d125.png?1562949045", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/2/e2ec168a-3e4f-4527-901a-bc28cc28d125.jpg?1562949045", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/e/2/e2ec168a-3e4f-4527-901a-bc28cc28d125.jpg?1562949045"}, "mana_cost": "{6}{R}{R}", "cmc": 8.0, "type_line": "Sorcery", "oracle_text": "Target creature an opponent controls deals damage equal to its power to each other creature that player controls, then each of those creatures deals damage equal to its power to that creature.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "8052750a-aaf2-46fc-b46d-633f14124017", "set": "dka", "set_name": "Dark Ascension", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/8052750a-aaf2-46fc-b46d-633f14124017", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Adka&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/dka?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/e2ec168a-3e4f-4527-901a-bc28cc28d125/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Acfc023e0-9e9d-48ac-bfb5-74bfd5977dee&unique=prints", "collector_number": "82", "digital": false, "rarity": "rare", "flavor_text": "Being an alpha means proving it every full moon.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Randy Gallegos", "artist_ids": ["a5048cc7-438a-4378-98e4-da99b78e1db0"], "illustration_id": "ac2830f1-f5b1-4971-bebf-95977515163c", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 10892, "penny_rank": 10069, "prices": {"usd": "0.23", "usd_foil": "1.22", "usd_etched": null, "eur": "0.08", "eur_foil": "0.99", "tix": "0.01"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=262657", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Alpha+Brawl&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Alpha+Brawl&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Alpha+Brawl"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/57823?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Alpha+Brawl&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/43305?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "90795891-5e67-47c0-8d52-a5e5c5a9ef81", "oracle_id": "3a7fe095-8278-4b1d-bec4-19b35bdcdd1b", "multiverse_ids": [373604], "mtgo_id": 50578, "mtgo_foil_id": 50579, "tcgplayer_id": 71191, "cardmarket_id": 264166, "name": "Anger of the Gods", "lang": "en", "released_at": "2013-09-27", "uri": "https://api.scryfall.com/cards/90795891-5e67-47c0-8d52-a5e5c5a9ef81", "scryfall_uri": "https://scryfall.com/card/ths/112/anger-of-the-gods?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/9/0/90795891-5e67-47c0-8d52-a5e5c5a9ef81.jpg?1562821425", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/0/90795891-5e67-47c0-8d52-a5e5c5a9ef81.jpg?1562821425", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/9/0/90795891-5e67-47c0-8d52-a5e5c5a9ef81.jpg?1562821425", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/9/0/90795891-5e67-47c0-8d52-a5e5c5a9ef81.png?1562821425", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/0/90795891-5e67-47c0-8d52-a5e5c5a9ef81.jpg?1562821425", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/9/0/90795891-5e67-47c0-8d52-a5e5c5a9ef81.jpg?1562821425"}, "mana_cost": "{1}{R}{R}", "cmc": 3.0, "type_line": "Sorcery", "oracle_text": "Anger of the Gods deals 3 damage to each creature. If a creature dealt damage this way would die this turn, exile it instead.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "69093d6f-e25a-41a4-8cf5-688d7f11c0fb", "set": "ths", "set_name": "Theros", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/69093d6f-e25a-41a4-8cf5-688d7f11c0fb", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aths&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ths?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/90795891-5e67-47c0-8d52-a5e5c5a9ef81/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A3a7fe095-8278-4b1d-bec4-19b35bdcdd1b&unique=prints", "collector_number": "112", "digital": false, "rarity": "rare", "flavor_text": "There was no reason to pray. This was already an act of the gods.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Noah Bradley", "artist_ids": ["81995d11-da98-4f8b-89bd-b88ca2ddb06b"], "illustration_id": "176328a7-79be-4419-b984-6f76d771898f", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 3685, "prices": {"usd": "1.44", "usd_foil": "3.63", "usd_etched": null, "eur": "0.93", "eur_foil": "3.98", "tix": "0.06"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=373604", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Anger+of+the+Gods&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Anger+of+the+Gods&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Anger+of+the+Gods"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/71191?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Anger+of+the+Gods&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/50578?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "dedcbd3b-7e30-44cf-b9b7-1bb32c11ef67", "oracle_id": "3a7fe095-8278-4b1d-bec4-19b35bdcdd1b", "multiverse_ids": [573020], "tcgplayer_id": 276499, "cardmarket_id": 664978, "name": "Anger of the Gods", "lang": "en", "released_at": "2022-07-08", "uri": "https://api.scryfall.com/cards/dedcbd3b-7e30-44cf-b9b7-1bb32c11ef67", "scryfall_uri": "https://scryfall.com/card/2x2/358/anger-of-the-gods?utm_source=api", "layout": "normal", "highres_image": false, "image_status": "lowres", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/d/e/dedcbd3b-7e30-44cf-b9b7-1bb32c11ef67.jpg?1655825935", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/e/dedcbd3b-7e30-44cf-b9b7-1bb32c11ef67.jpg?1655825935", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/d/e/dedcbd3b-7e30-44cf-b9b7-1bb32c11ef67.jpg?1655825935", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/d/e/dedcbd3b-7e30-44cf-b9b7-1bb32c11ef67.png?1655825935", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/e/dedcbd3b-7e30-44cf-b9b7-1bb32c11ef67.jpg?1655825935", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/d/e/dedcbd3b-7e30-44cf-b9b7-1bb32c11ef67.jpg?1655825935"}, "mana_cost": "{1}{R}{R}", "cmc": 3.0, "type_line": "Sorcery", "oracle_text": "Anger of the Gods deals 3 damage to each creature. If a creature dealt damage this way would die this turn, exile it instead.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "5a645837-b050-449f-ac90-1e7ccbf45031", "set": "2x2", "set_name": "Double Masters 2022", "set_type": "masters", "set_uri": "https://api.scryfall.com/sets/5a645837-b050-449f-ac90-1e7ccbf45031", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3A2x2&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/2x2?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/dedcbd3b-7e30-44cf-b9b7-1bb32c11ef67/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A3a7fe095-8278-4b1d-bec4-19b35bdcdd1b&unique=prints", "collector_number": "358", "digital": false, "rarity": "rare", "flavor_text": "\"Toralf struck the ground with his hammer, and the force of a thousand storms tore through the demonic horde.\"\n\u2014Birgi, god of storytelling", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Dermot Power", "artist_ids": ["4162c8c0-8ded-497c-b29e-131e43dfae5e"], "illustration_id": "3569d4f1-2300-4363-86ee-90f71a14a5fc", "border_color": "borderless", "frame": "2015", "frame_effects": ["inverted"], "security_stamp": "oval", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "promo_types": ["boosterfun"], "edhrec_rank": 3685, "preview": {"source": "Magicshibby", "source_uri": "https://twitter.com/magicshibby/status/1538102481024163840", "previewed_at": "2022-06-18"}, "prices": {"usd": "1.39", "usd_foil": "2.53", "usd_etched": null, "eur": "2.40", "eur_foil": "2.57", "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=573020", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Anger+of+the+Gods&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Anger+of+the+Gods&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Anger+of+the+Gods"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/276499?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Anger+of+the+Gods&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Anger+of+the+Gods&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "ec898bc9-9ab8-4394-8c4c-8d652f313919", "oracle_id": "3a7fe095-8278-4b1d-bec4-19b35bdcdd1b", "multiverse_ids": [497494], "tcgplayer_id": 221989, "cardmarket_id": 495539, "name": "Anger of the Gods", "lang": "en", "released_at": "2020-09-03", "uri": "https://api.scryfall.com/cards/ec898bc9-9ab8-4394-8c4c-8d652f313919", "scryfall_uri": "https://scryfall.com/card/sld/113/anger-of-the-gods?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/e/c/ec898bc9-9ab8-4394-8c4c-8d652f313919.jpg?1607042506", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/c/ec898bc9-9ab8-4394-8c4c-8d652f313919.jpg?1607042506", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/e/c/ec898bc9-9ab8-4394-8c4c-8d652f313919.jpg?1607042506", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/e/c/ec898bc9-9ab8-4394-8c4c-8d652f313919.png?1607042506", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/c/ec898bc9-9ab8-4394-8c4c-8d652f313919.jpg?1607042506", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/e/c/ec898bc9-9ab8-4394-8c4c-8d652f313919.jpg?1607042506"}, "mana_cost": "{1}{R}{R}", "cmc": 3.0, "type_line": "Sorcery", "oracle_text": "Anger of the Gods deals 3 damage to each creature. If a creature dealt damage this way would die this turn, exile it instead.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "4d92a8a7-ccb0-437d-abdc-9d70fc5ed672", "set": "sld", "set_name": "Secret Lair Drop", "set_type": "box", "set_uri": "https://api.scryfall.com/sets/4d92a8a7-ccb0-437d-abdc-9d70fc5ed672", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Asld&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/sld?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/ec898bc9-9ab8-4394-8c4c-8d652f313919/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A3a7fe095-8278-4b1d-bec4-19b35bdcdd1b&unique=prints", "collector_number": "113", "digital": false, "rarity": "rare", "flavor_text": "Eating those clerics might have been a bad idea.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Chuck Lukacs", "artist_ids": ["2bdf4da7-c66c-4c46-a253-284c856ccfab"], "illustration_id": "a4f5eb8c-27a6-4fe6-bddd-7c7529a50747", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "edhrec_rank": 3685, "prices": {"usd": "7.49", "usd_foil": "6.96", "usd_etched": null, "eur": "6.45", "eur_foil": "7.50", "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=497494", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Anger+of+the+Gods&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Anger+of+the+Gods&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Anger+of+the+Gods"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/221989?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Anger+of+the+Gods&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Anger+of+the+Gods&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "88f2ca85-de02-4471-b90f-d13ccb93c8bb", "oracle_id": "3a7fe095-8278-4b1d-bec4-19b35bdcdd1b", "multiverse_ids": [], "arena_id": 73916, "name": "Anger of the Gods", "lang": "en", "released_at": "2020-08-13", "uri": "https://api.scryfall.com/cards/88f2ca85-de02-4471-b90f-d13ccb93c8bb", "scryfall_uri": "https://scryfall.com/card/akr/138/anger-of-the-gods?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/8/8/88f2ca85-de02-4471-b90f-d13ccb93c8bb.jpg?1597250046", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/8/88f2ca85-de02-4471-b90f-d13ccb93c8bb.jpg?1597250046", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/8/8/88f2ca85-de02-4471-b90f-d13ccb93c8bb.jpg?1597250046", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/8/8/88f2ca85-de02-4471-b90f-d13ccb93c8bb.png?1597250046", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/8/88f2ca85-de02-4471-b90f-d13ccb93c8bb.jpg?1597250046", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/8/8/88f2ca85-de02-4471-b90f-d13ccb93c8bb.jpg?1597250046"}, "mana_cost": "{1}{R}{R}", "cmc": 3.0, "type_line": "Sorcery", "oracle_text": "Anger of the Gods deals 3 damage to each creature. If a creature dealt damage this way would die this turn, exile it instead.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "915dabb1-b82a-432d-939d-d9b128e65582", "set": "akr", "set_name": "Amonkhet Remastered", "set_type": "masters", "set_uri": "https://api.scryfall.com/sets/915dabb1-b82a-432d-939d-d9b128e65582", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aakr&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/akr?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/88f2ca85-de02-4471-b90f-d13ccb93c8bb/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A3a7fe095-8278-4b1d-bec4-19b35bdcdd1b&unique=prints", "collector_number": "138", "digital": true, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Yigit Koroglu", "artist_ids": ["a24479f8-6d9e-40f9-bede-f29899922b97"], "illustration_id": "0128b0b4-5ce9-495c-8a3b-49e0a213783c", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 3685, "prices": {"usd": null, "usd_foil": null, "usd_etched": null, "eur": null, "eur_foil": null, "tix": null}, "related_uris": {"tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Anger+of+the+Gods&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Anger+of+the+Gods&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Anger+of+the+Gods"}}, {"object": "card", "id": "9bc397d1-50a8-46cd-98b2-7104f2241420", "oracle_id": "01790829-cc03-430f-a899-2f274b7dbf62", "multiverse_ids": [391793], "mtgo_id": 55602, "mtgo_foil_id": 55603, "tcgplayer_id": 95288, "cardmarket_id": 271526, "name": "Arcbond", "lang": "en", "released_at": "2015-01-23", "uri": "https://api.scryfall.com/cards/9bc397d1-50a8-46cd-98b2-7104f2241420", "scryfall_uri": "https://scryfall.com/card/frf/91/arcbond?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/9/b/9bc397d1-50a8-46cd-98b2-7104f2241420.jpg?1562828028", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/b/9bc397d1-50a8-46cd-98b2-7104f2241420.jpg?1562828028", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/9/b/9bc397d1-50a8-46cd-98b2-7104f2241420.jpg?1562828028", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/9/b/9bc397d1-50a8-46cd-98b2-7104f2241420.png?1562828028", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/b/9bc397d1-50a8-46cd-98b2-7104f2241420.jpg?1562828028", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/9/b/9bc397d1-50a8-46cd-98b2-7104f2241420.jpg?1562828028"}, "mana_cost": "{2}{R}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Choose target creature. Whenever that creature is dealt damage this turn, it deals that much damage to each other creature and each player.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "7bb5cb2b-081a-4c8c-b7e1-494046e6baa1", "set": "frf", "set_name": "Fate Reforged", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/7bb5cb2b-081a-4c8c-b7e1-494046e6baa1", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Afrf&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/frf?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/9bc397d1-50a8-46cd-98b2-7104f2241420/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A01790829-cc03-430f-a899-2f274b7dbf62&unique=prints", "collector_number": "91", "digital": false, "rarity": "rare", "flavor_text": "\"If you must die today, make your death worthy of legend.\"\n\u2014Alesha, Who Smiles at Death", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Slawomir Maniak", "artist_ids": ["d887bc66-2779-416c-a1ff-d8720242063e"], "illustration_id": "1259bdd2-481b-4cfc-942c-bbe39271e3fe", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 3485, "penny_rank": 13262, "prices": {"usd": "0.30", "usd_foil": "1.54", "usd_etched": null, "eur": "0.44", "eur_foil": "1.00", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=391793", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Arcbond&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Arcbond&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Arcbond"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/95288?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Arcbond&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/55602?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "db1fd431-8f6d-4ca5-bc0c-53881c500da1", "oracle_id": "c15e5cb8-b94c-4157-9327-410e66606b82", "multiverse_ids": [562996], "mtgo_id": 100238, "tcgplayer_id": 273393, "cardmarket_id": 660869, "name": "Arms of Hadar", "lang": "en", "released_at": "2022-06-10", "uri": "https://api.scryfall.com/cards/db1fd431-8f6d-4ca5-bc0c-53881c500da1", "scryfall_uri": "https://scryfall.com/card/clb/113/arms-of-hadar?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/d/b/db1fd431-8f6d-4ca5-bc0c-53881c500da1.jpg?1653767219", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/b/db1fd431-8f6d-4ca5-bc0c-53881c500da1.jpg?1653767219", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/d/b/db1fd431-8f6d-4ca5-bc0c-53881c500da1.jpg?1653767219", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/d/b/db1fd431-8f6d-4ca5-bc0c-53881c500da1.png?1653767219", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/b/db1fd431-8f6d-4ca5-bc0c-53881c500da1.jpg?1653767219", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/d/b/db1fd431-8f6d-4ca5-bc0c-53881c500da1.jpg?1653767219"}, "mana_cost": "{3}{B}", "cmc": 4.0, "type_line": "Sorcery", "oracle_text": "Creatures target player controls get -2/-2 until end of turn.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "5e4c3fe8-fd57-4b20-ad56-c03790a16cea", "set": "clb", "set_name": "Commander Legends: Battle for Baldur's Gate", "set_type": "draft_innovation", "set_uri": "https://api.scryfall.com/sets/5e4c3fe8-fd57-4b20-ad56-c03790a16cea", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aclb&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/clb?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/db1fd431-8f6d-4ca5-bc0c-53881c500da1/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ac15e5cb8-b94c-4157-9327-410e66606b82&unique=prints", "collector_number": "113", "digital": false, "rarity": "common", "flavor_text": "Burning slowly into annihilation, the elder evil Hadar grants fearsome powers to warlocks willing to help satiate its dark hunger.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Mirko Failoni", "artist_ids": ["e150bcca-fe5c-4fa7-b80b-ea37bc285bd4"], "illustration_id": "585ba0b0-5502-4564-bc51-114311624015", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 19367, "prices": {"usd": "0.04", "usd_foil": "0.06", "usd_etched": null, "eur": "0.06", "eur_foil": "0.14", "tix": "2.86"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=562996", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Arms+of+Hadar&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Arms+of+Hadar&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Arms+of+Hadar"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/273393?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Arms+of+Hadar&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/100238?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "bef16a71-5ed2-4f30-a844-c02a0754f679", "oracle_id": "09cc8709-fe10-472a-b05c-e89f3523018d", "multiverse_ids": [438576], "mtgo_id": 65899, "mtgo_foil_id": 65900, "tcgplayer_id": 145297, "cardmarket_id": 301413, "name": "Austere Command", "lang": "en", "released_at": "2017-11-17", "uri": "https://api.scryfall.com/cards/bef16a71-5ed2-4f30-a844-c02a0754f679", "scryfall_uri": "https://scryfall.com/card/ima/10/austere-command?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/b/e/bef16a71-5ed2-4f30-a844-c02a0754f679.jpg?1562853529", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/e/bef16a71-5ed2-4f30-a844-c02a0754f679.jpg?1562853529", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/b/e/bef16a71-5ed2-4f30-a844-c02a0754f679.jpg?1562853529", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/b/e/bef16a71-5ed2-4f30-a844-c02a0754f679.png?1562853529", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/e/bef16a71-5ed2-4f30-a844-c02a0754f679.jpg?1562853529", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/b/e/bef16a71-5ed2-4f30-a844-c02a0754f679.jpg?1562853529"}, "mana_cost": "{4}{W}{W}", "cmc": 6.0, "type_line": "Sorcery", "oracle_text": "Choose two \u2014\n\u2022 Destroy all artifacts.\n\u2022 Destroy all enchantments.\n\u2022 Destroy all creatures with mana value 3 or less.\n\u2022 Destroy all creatures with mana value 4 or greater.", "colors": ["W"], "color_identity": ["W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "741bcd30-7709-4133-8919-f4b46483bed7", "set": "ima", "set_name": "Iconic Masters", "set_type": "masters", "set_uri": "https://api.scryfall.com/sets/741bcd30-7709-4133-8919-f4b46483bed7", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aima&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ima?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/bef16a71-5ed2-4f30-a844-c02a0754f679/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A09cc8709-fe10-472a-b05c-e89f3523018d&unique=prints", "collector_number": "10", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Anna Steinbauer", "artist_ids": ["3516496c-c279-4b56-8239-720683d03ae0"], "illustration_id": "7c6a01f8-e1f6-4fe4-b275-b2582be98783", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 148, "penny_rank": 5512, "prices": {"usd": "2.45", "usd_foil": "3.39", "usd_etched": null, "eur": "1.60", "eur_foil": "4.00", "tix": "0.18"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=438576", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Austere+Command&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Austere+Command&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Austere+Command"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/145297?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Austere+Command&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/65899?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "8ee73fe8-d52b-43bb-ab91-5545192be676", "oracle_id": "09cc8709-fe10-472a-b05c-e89f3523018d", "multiverse_ids": [141817], "mtgo_id": 28495, "mtgo_foil_id": 28496, "tcgplayer_id": 15416, "cardmarket_id": 17744, "name": "Austere Command", "lang": "en", "released_at": "2007-10-12", "uri": "https://api.scryfall.com/cards/8ee73fe8-d52b-43bb-ab91-5545192be676", "scryfall_uri": "https://scryfall.com/card/lrw/3/austere-command?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/8/e/8ee73fe8-d52b-43bb-ab91-5545192be676.jpg?1562357897", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/e/8ee73fe8-d52b-43bb-ab91-5545192be676.jpg?1562357897", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/8/e/8ee73fe8-d52b-43bb-ab91-5545192be676.jpg?1562357897", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/8/e/8ee73fe8-d52b-43bb-ab91-5545192be676.png?1562357897", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/e/8ee73fe8-d52b-43bb-ab91-5545192be676.jpg?1562357897", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/8/e/8ee73fe8-d52b-43bb-ab91-5545192be676.jpg?1562357897"}, "mana_cost": "{4}{W}{W}", "cmc": 6.0, "type_line": "Sorcery", "oracle_text": "Choose two \u2014\n\u2022 Destroy all artifacts.\n\u2022 Destroy all enchantments.\n\u2022 Destroy all creatures with mana value 3 or less.\n\u2022 Destroy all creatures with mana value 4 or greater.", "colors": ["W"], "color_identity": ["W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "30ec97cb-dca9-4bf4-a98b-310f9d8ceaff", "set": "lrw", "set_name": "Lorwyn", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/30ec97cb-dca9-4bf4-a98b-310f9d8ceaff", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Alrw&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/lrw?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/8ee73fe8-d52b-43bb-ab91-5545192be676/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A09cc8709-fe10-472a-b05c-e89f3523018d&unique=prints", "collector_number": "3", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Wayne England", "artist_ids": ["62dc90c0-4bc2-4d42-ad76-59cad9243566"], "illustration_id": "d5c67814-8bb6-4d06-a54b-be0b790a941a", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 148, "penny_rank": 5512, "prices": {"usd": "3.88", "usd_foil": "23.53", "usd_etched": null, "eur": "1.00", "eur_foil": "8.99", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=141817", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Austere+Command&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Austere+Command&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Austere+Command"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/15416?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Austere+Command&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/28495?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "dbbf55bc-6bb3-458a-8cf0-1f603bb2acb3", "oracle_id": "09cc8709-fe10-472a-b05c-e89f3523018d", "multiverse_ids": [429860], "mtgo_id": 64356, "mtgo_foil_id": 64357, "tcgplayer_id": 129560, "cardmarket_id": 296606, "name": "Austere Command", "lang": "en", "released_at": "2017-04-28", "uri": "https://api.scryfall.com/cards/dbbf55bc-6bb3-458a-8cf0-1f603bb2acb3", "scryfall_uri": "https://scryfall.com/card/mp2/1/austere-command?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/d/b/dbbf55bc-6bb3-458a-8cf0-1f603bb2acb3.jpg?1562939169", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/b/dbbf55bc-6bb3-458a-8cf0-1f603bb2acb3.jpg?1562939169", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/d/b/dbbf55bc-6bb3-458a-8cf0-1f603bb2acb3.jpg?1562939169", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/d/b/dbbf55bc-6bb3-458a-8cf0-1f603bb2acb3.png?1562939169", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/b/dbbf55bc-6bb3-458a-8cf0-1f603bb2acb3.jpg?1562939169", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/d/b/dbbf55bc-6bb3-458a-8cf0-1f603bb2acb3.jpg?1562939169"}, "mana_cost": "{4}{W}{W}", "cmc": 6.0, "type_line": "Sorcery", "oracle_text": "Choose two \u2014\n\u2022 Destroy all artifacts.\n\u2022 Destroy all enchantments.\n\u2022 Destroy all creatures with mana value 3 or less.\n\u2022 Destroy all creatures with mana value 4 or greater.", "colors": ["W"], "color_identity": ["W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": false, "finishes": ["foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "c26402e7-838e-48db-a4b2-7abfc305998a", "set": "mp2", "set_name": "Amonkhet Invocations", "set_type": "masterpiece", "set_uri": "https://api.scryfall.com/sets/c26402e7-838e-48db-a4b2-7abfc305998a", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Amp2&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/mp2?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/dbbf55bc-6bb3-458a-8cf0-1f603bb2acb3/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A09cc8709-fe10-472a-b05c-e89f3523018d&unique=prints", "collector_number": "1", "digital": false, "rarity": "mythic", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Richard Wright", "artist_ids": ["7b1b0ce9-2c58-4321-a2a7-cdc94feae082"], "illustration_id": "1600fbf8-a6a3-4bb3-b1ec-7c957e335035", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 148, "penny_rank": 5512, "prices": {"usd": null, "usd_foil": "42.14", "usd_etched": null, "eur": null, "eur_foil": "34.90", "tix": "0.12"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=429860", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Austere+Command&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Austere+Command&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Austere+Command"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/129560?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Austere+Command&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/64356?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "e3261b4c-7963-4ca0-875d-77b7c8571b3f", "oracle_id": "341a92b9-d6a0-499e-abb7-e2b7d7bc248c", "multiverse_ids": [2936], "tcgplayer_id": 4460, "cardmarket_id": 7739, "name": "Baki's Curse", "lang": "en", "released_at": "1995-10-01", "uri": "https://api.scryfall.com/cards/e3261b4c-7963-4ca0-875d-77b7c8571b3f", "scryfall_uri": "https://scryfall.com/card/hml/22/bakis-curse?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/e/3/e3261b4c-7963-4ca0-875d-77b7c8571b3f.jpg?1562588703", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/3/e3261b4c-7963-4ca0-875d-77b7c8571b3f.jpg?1562588703", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/e/3/e3261b4c-7963-4ca0-875d-77b7c8571b3f.jpg?1562588703", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/e/3/e3261b4c-7963-4ca0-875d-77b7c8571b3f.png?1562588703", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/3/e3261b4c-7963-4ca0-875d-77b7c8571b3f.jpg?1562588703", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/e/3/e3261b4c-7963-4ca0-875d-77b7c8571b3f.jpg?1562588703"}, "mana_cost": "{2}{U}{U}", "cmc": 4.0, "type_line": "Sorcery", "oracle_text": "Baki's Curse deals 2 damage to each creature for each Aura attached to that creature.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper"], "reserved": true, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "5ac1f606-e682-46e9-ad0f-122a3783581b", "set": "hml", "set_name": "Homelands", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/5ac1f606-e682-46e9-ad0f-122a3783581b", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ahml&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/hml?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/e3261b4c-7963-4ca0-875d-77b7c8571b3f/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A341a92b9-d6a0-499e-abb7-e2b7d7bc248c&unique=prints", "collector_number": "22", "digital": false, "rarity": "rare", "flavor_text": "\"Those who fling spells too quickly should have reason to regret it.\"\n\u2014Baki, Wizard Attendant", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Nicola Leonard", "artist_ids": ["3de0bcf5-44b7-4c1e-9040-04c5396e79b0"], "illustration_id": "474a042b-77c5-45fd-9a99-a3bcbc02bffc", "border_color": "black", "frame": "1993", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 22540, "prices": {"usd": "0.91", "usd_foil": null, "usd_etched": null, "eur": "1.94", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=2936", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Baki%27s+Curse&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Baki%27s+Curse&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Baki%27s+Curse"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/4460?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Baki%27s+Curse&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Baki%27s+Curse&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "2eb1a9f7-32ba-48fd-a7f7-788b0ec052c6", "oracle_id": "71a756f3-cd1e-4047-90ac-eda096b90647", "multiverse_ids": [386485], "mtgo_id": 54354, "mtgo_foil_id": 54355, "tcgplayer_id": 93196, "cardmarket_id": 269489, "name": "Barrage of Boulders", "lang": "en", "released_at": "2014-09-26", "uri": "https://api.scryfall.com/cards/2eb1a9f7-32ba-48fd-a7f7-788b0ec052c6", "scryfall_uri": "https://scryfall.com/card/ktk/100/barrage-of-boulders?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/2/e/2eb1a9f7-32ba-48fd-a7f7-788b0ec052c6.jpg?1562784418", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/e/2eb1a9f7-32ba-48fd-a7f7-788b0ec052c6.jpg?1562784418", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/2/e/2eb1a9f7-32ba-48fd-a7f7-788b0ec052c6.jpg?1562784418", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/2/e/2eb1a9f7-32ba-48fd-a7f7-788b0ec052c6.png?1562784418", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/e/2eb1a9f7-32ba-48fd-a7f7-788b0ec052c6.jpg?1562784418", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/2/e/2eb1a9f7-32ba-48fd-a7f7-788b0ec052c6.jpg?1562784418"}, "mana_cost": "{2}{R}", "cmc": 3.0, "type_line": "Sorcery", "oracle_text": "Barrage of Boulders deals 1 damage to each creature you don't control.\nFerocious \u2014 If you control a creature with power 4 or greater, creatures can't block this turn.", "colors": ["R"], "color_identity": ["R"], "keywords": ["Ferocious"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "6c7a715c-ded9-449e-89b0-c665773e9c3c", "set": "ktk", "set_name": "Khans of Tarkir", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/6c7a715c-ded9-449e-89b0-c665773e9c3c", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aktk&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ktk?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/2eb1a9f7-32ba-48fd-a7f7-788b0ec052c6/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A71a756f3-cd1e-4047-90ac-eda096b90647&unique=prints", "collector_number": "100", "digital": false, "rarity": "common", "watermark": "temur", "flavor_text": "Crude tactics can be effective nonetheless.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Zoltan Boros", "artist_ids": ["1885e6cb-c827-4896-994e-3d0a027d602f"], "illustration_id": "4f646fcb-d47a-4563-aedc-9122c7410004", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 12087, "penny_rank": 5993, "prices": {"usd": "0.06", "usd_foil": "0.27", "usd_etched": null, "eur": "0.02", "eur_foil": "0.22", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=386485", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Barrage+of+Boulders&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Barrage+of+Boulders&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Barrage+of+Boulders"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/93196?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Barrage+of+Boulders&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/54354?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "d885aedb-2c65-4099-af2e-0a540caf8d33", "oracle_id": "3ced2aa2-f102-4192-bb40-685b8f175c97", "multiverse_ids": [], "arena_id": 79963, "name": "Begin Anew", "lang": "en", "released_at": "2021-12-09", "uri": "https://api.scryfall.com/cards/d885aedb-2c65-4099-af2e-0a540caf8d33", "scryfall_uri": "https://scryfall.com/card/ymid/57/begin-anew?utm_source=api", "layout": "normal", "highres_image": false, "image_status": "lowres", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/d/8/d885aedb-2c65-4099-af2e-0a540caf8d33.jpg?1645417110", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/8/d885aedb-2c65-4099-af2e-0a540caf8d33.jpg?1645417110", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/d/8/d885aedb-2c65-4099-af2e-0a540caf8d33.jpg?1645417110", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/d/8/d885aedb-2c65-4099-af2e-0a540caf8d33.png?1645417110", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/8/d885aedb-2c65-4099-af2e-0a540caf8d33.jpg?1645417110", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/d/8/d885aedb-2c65-4099-af2e-0a540caf8d33.jpg?1645417110"}, "mana_cost": "{G}{G}{W}{W}", "cmc": 4.0, "type_line": "Sorcery", "oracle_text": "Destroy all creatures. Creature cards in your hand perpetually get +1/+1.", "colors": ["G", "W"], "color_identity": ["G", "W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "not_legal", "pauper": "not_legal", "vintage": "not_legal", "penny": "not_legal", "commander": "not_legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "not_legal", "duel": "not_legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "8a673262-8745-452d-820a-03d5c4a4f135", "set": "ymid", "set_name": "Alchemy: Innistrad", "set_type": "alchemy", "set_uri": "https://api.scryfall.com/sets/8a673262-8745-452d-820a-03d5c4a4f135", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aymid&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ymid?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/d885aedb-2c65-4099-af2e-0a540caf8d33/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A3ced2aa2-f102-4192-bb40-685b8f175c97&unique=prints", "collector_number": "57", "digital": true, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Jorge Jacinto", "artist_ids": ["05a3ac12-b25d-48e2-af5e-8a299fd3da14"], "illustration_id": "15d24f90-9337-4beb-a781-b1c2273b6bd3", "border_color": "black", "frame": "2015", "security_stamp": "arena", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "preview": {"source": "Wizards of the Coast", "source_uri": "https://www.twitch.tv/videos/1222240116", "previewed_at": "2021-12-03"}, "prices": {"usd": null, "usd_foil": null, "usd_etched": null, "eur": null, "eur_foil": null, "tix": null}, "related_uris": {"tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Begin+Anew&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Begin+Anew&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Begin+Anew"}}, {"object": "card", "id": "254d1363-1204-41d2-9799-34484a3eb211", "oracle_id": "4db04e23-e1da-4c41-9dba-5502dfff73fb", "multiverse_ids": [382219], "tcgplayer_id": 83153, "cardmarket_id": 267270, "name": "Bite of the Black Rose", "lang": "en", "released_at": "2014-06-06", "uri": "https://api.scryfall.com/cards/254d1363-1204-41d2-9799-34484a3eb211", "scryfall_uri": "https://scryfall.com/card/cns/26/bite-of-the-black-rose?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/2/5/254d1363-1204-41d2-9799-34484a3eb211.jpg?1562864493", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/5/254d1363-1204-41d2-9799-34484a3eb211.jpg?1562864493", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/2/5/254d1363-1204-41d2-9799-34484a3eb211.jpg?1562864493", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/2/5/254d1363-1204-41d2-9799-34484a3eb211.png?1562864493", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/5/254d1363-1204-41d2-9799-34484a3eb211.jpg?1562864493", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/2/5/254d1363-1204-41d2-9799-34484a3eb211.jpg?1562864493"}, "mana_cost": "{3}{B}", "cmc": 4.0, "type_line": "Sorcery", "oracle_text": "Will of the council \u2014 Starting with you, each player votes for sickness or psychosis. If sickness gets more votes, creatures your opponents control get -2/-2 until end of turn. If psychosis gets more votes or the vote is tied, each opponent discards two cards.", "colors": ["B"], "color_identity": ["B"], "keywords": ["Will of the council"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "7d4ebb59-a50b-45b8-8fff-ab70767819a5", "set": "cns", "set_name": "Conspiracy", "set_type": "draft_innovation", "set_uri": "https://api.scryfall.com/sets/7d4ebb59-a50b-45b8-8fff-ab70767819a5", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Acns&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/cns?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/254d1363-1204-41d2-9799-34484a3eb211/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A4db04e23-e1da-4c41-9dba-5502dfff73fb&unique=prints", "collector_number": "26", "digital": false, "rarity": "uncommon", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Franz Vohwinkel", "artist_ids": ["3a243c17-3baa-4b53-9599-645311cd7d3d"], "illustration_id": "1a512596-3926-42fe-960c-c3bed743d959", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 7835, "prices": {"usd": "0.38", "usd_foil": "1.72", "usd_etched": null, "eur": "0.13", "eur_foil": "0.98", "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=382219", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Bite+of+the+Black+Rose&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Bite+of+the+Black+Rose&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Bite+of+the+Black+Rose"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/83153?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Bite+of+the+Black+Rose&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Bite+of+the+Black+Rose&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "5ac62d2f-6834-4d98-b69d-bd7b5831d981", "oracle_id": "485cfaca-9348-418b-a751-2ecb19f3f210", "multiverse_ids": [409849], "mtgo_id": 60226, "mtgo_foil_id": 60227, "tcgplayer_id": 116361, "cardmarket_id": 289167, "name": "Biting Rain", "lang": "en", "released_at": "2016-04-08", "uri": "https://api.scryfall.com/cards/5ac62d2f-6834-4d98-b69d-bd7b5831d981", "scryfall_uri": "https://scryfall.com/card/soi/102/biting-rain?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/5/a/5ac62d2f-6834-4d98-b69d-bd7b5831d981.jpg?1576384359", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/a/5ac62d2f-6834-4d98-b69d-bd7b5831d981.jpg?1576384359", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/5/a/5ac62d2f-6834-4d98-b69d-bd7b5831d981.jpg?1576384359", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/5/a/5ac62d2f-6834-4d98-b69d-bd7b5831d981.png?1576384359", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/a/5ac62d2f-6834-4d98-b69d-bd7b5831d981.jpg?1576384359", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/5/a/5ac62d2f-6834-4d98-b69d-bd7b5831d981.jpg?1576384359"}, "mana_cost": "{2}{B}{B}", "cmc": 4.0, "type_line": "Sorcery", "oracle_text": "All creatures get -2/-2 until end of turn.\nMadness {2}{B} (If you discard this card, discard it into exile. When you do, cast it for its madness cost or put it into your graveyard.)", "colors": ["B"], "color_identity": ["B"], "keywords": ["Madness"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "5e914d7e-c1e9-446c-a33d-d093c02b2743", "set": "soi", "set_name": "Shadows over Innistrad", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/5e914d7e-c1e9-446c-a33d-d093c02b2743", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Asoi&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/soi?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/5ac62d2f-6834-4d98-b69d-bd7b5831d981/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A485cfaca-9348-418b-a751-2ecb19f3f210&unique=prints", "collector_number": "102", "digital": false, "rarity": "uncommon", "flavor_text": "On Innistrad, it is seldom wrong to stay indoors.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "John Stanko", "artist_ids": ["b0f038a0-73b5-4806-918e-9cd11b5f92e1"], "illustration_id": "6d04a588-e26d-449c-814b-3017590c8285", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 6941, "penny_rank": 11108, "prices": {"usd": "0.16", "usd_foil": "0.71", "usd_etched": null, "eur": "0.24", "eur_foil": "0.10", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=409849", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Biting+Rain&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Biting+Rain&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Biting+Rain"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/116361?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Biting+Rain&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/60226?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "03bdcf52-50b8-42c0-9665-931d83f5f314", "oracle_id": "038c0165-32b6-4e81-8180-604b49905207", "multiverse_ids": [214061], "mtgo_id": 39533, "mtgo_foil_id": 39534, "tcgplayer_id": 39086, "cardmarket_id": 245365, "name": "Black Sun's Zenith", "lang": "en", "released_at": "2011-02-04", "uri": "https://api.scryfall.com/cards/03bdcf52-50b8-42c0-9665-931d83f5f314", "scryfall_uri": "https://scryfall.com/card/mbs/39/black-suns-zenith?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/0/3/03bdcf52-50b8-42c0-9665-931d83f5f314.jpg?1562609329", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/3/03bdcf52-50b8-42c0-9665-931d83f5f314.jpg?1562609329", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/0/3/03bdcf52-50b8-42c0-9665-931d83f5f314.jpg?1562609329", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/0/3/03bdcf52-50b8-42c0-9665-931d83f5f314.png?1562609329", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/3/03bdcf52-50b8-42c0-9665-931d83f5f314.jpg?1562609329", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/0/3/03bdcf52-50b8-42c0-9665-931d83f5f314.jpg?1562609329"}, "mana_cost": "{X}{B}{B}", "cmc": 2.0, "type_line": "Sorcery", "oracle_text": "Put X -1/-1 counters on each creature. Shuffle Black Sun's Zenith into its owner's library.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "f46c57e3-9301-4006-a6ca-06f3f65961fb", "set": "mbs", "set_name": "Mirrodin Besieged", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/f46c57e3-9301-4006-a6ca-06f3f65961fb", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ambs&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/mbs?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/03bdcf52-50b8-42c0-9665-931d83f5f314/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A038c0165-32b6-4e81-8180-604b49905207&unique=prints", "collector_number": "39", "digital": false, "rarity": "rare", "watermark": "phyrexian", "flavor_text": "\"Under the suns, Mirrodin kneels and begs us for perfection.\"\n\u2014Geth, Lord of the Vault", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Daniel Ljunggren", "artist_ids": ["0fbd4798-76eb-46d5-a5d4-1e3a25870e34"], "illustration_id": "c670b7ba-a1a0-483b-9d18-4c464869a294", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 1391, "penny_rank": 1927, "prices": {"usd": "7.16", "usd_foil": "15.13", "usd_etched": null, "eur": "4.33", "eur_foil": "8.98", "tix": "0.01"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=214061", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Black+Sun%27s+Zenith&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Black+Sun%27s+Zenith&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Black+Sun%27s+Zenith"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/39086?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Black+Sun%27s+Zenith&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/39533?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "dd88131a-2811-4a1f-bb9a-c82e12c1493b", "oracle_id": "038c0165-32b6-4e81-8180-604b49905207", "multiverse_ids": [], "tcgplayer_id": 48129, "cardmarket_id": 245507, "name": "Black Sun's Zenith", "lang": "en", "released_at": "2011-02-03", "uri": "https://api.scryfall.com/cards/dd88131a-2811-4a1f-bb9a-c82e12c1493b", "scryfall_uri": "https://scryfall.com/card/pmbs/39/black-suns-zenith?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/d/d/dd88131a-2811-4a1f-bb9a-c82e12c1493b.jpg?1561758222", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/d/dd88131a-2811-4a1f-bb9a-c82e12c1493b.jpg?1561758222", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/d/d/dd88131a-2811-4a1f-bb9a-c82e12c1493b.jpg?1561758222", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/d/d/dd88131a-2811-4a1f-bb9a-c82e12c1493b.png?1561758222", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/d/dd88131a-2811-4a1f-bb9a-c82e12c1493b.jpg?1561758222", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/d/d/dd88131a-2811-4a1f-bb9a-c82e12c1493b.jpg?1561758222"}, "mana_cost": "{X}{B}{B}", "cmc": 2.0, "type_line": "Sorcery", "oracle_text": "Put X -1/-1 counters on each creature. Shuffle Black Sun's Zenith into its owner's library.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": true, "nonfoil": false, "finishes": ["foil"], "oversized": false, "promo": true, "reprint": true, "variation": false, "set_id": "8a59d98a-4e13-4943-b06c-b35868e954ba", "set": "pmbs", "set_name": "Mirrodin Besieged Promos", "set_type": "promo", "set_uri": "https://api.scryfall.com/sets/8a59d98a-4e13-4943-b06c-b35868e954ba", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Apmbs&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/pmbs?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/dd88131a-2811-4a1f-bb9a-c82e12c1493b/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A038c0165-32b6-4e81-8180-604b49905207&unique=prints", "collector_number": "39", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "James Paick", "artist_ids": ["1a7be0a2-d8ac-45c7-b0a0-eb0886f47b5f"], "illustration_id": "275a74e3-c403-4c45-a6af-58ed98627589", "border_color": "black", "frame": "2003", "full_art": true, "textless": false, "booster": false, "story_spotlight": false, "promo_types": ["setpromo", "gameday"], "edhrec_rank": 1391, "penny_rank": 1927, "prices": {"usd": null, "usd_foil": "26.73", "usd_etched": null, "eur": null, "eur_foil": "8.99", "tix": null}, "related_uris": {"tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Black+Sun%27s+Zenith&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Black+Sun%27s+Zenith&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Black+Sun%27s+Zenith"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/48129?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Black+Sun%27s+Zenith&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Black+Sun%27s+Zenith&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "509ce648-fb76-486d-8b39-183e368b7cb7", "oracle_id": "7a2484a9-04fd-41a0-8224-610c1c07ed10", "multiverse_ids": [222206], "mtgo_id": 42410, "mtgo_foil_id": 42411, "tcgplayer_id": 55902, "cardmarket_id": 250579, "name": "Blasphemous Act", "lang": "en", "released_at": "2011-09-30", "uri": "https://api.scryfall.com/cards/509ce648-fb76-486d-8b39-183e368b7cb7", "scryfall_uri": "https://scryfall.com/card/isd/130/blasphemous-act?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/5/0/509ce648-fb76-486d-8b39-183e368b7cb7.jpg?1562830111", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/0/509ce648-fb76-486d-8b39-183e368b7cb7.jpg?1562830111", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/5/0/509ce648-fb76-486d-8b39-183e368b7cb7.jpg?1562830111", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/5/0/509ce648-fb76-486d-8b39-183e368b7cb7.png?1562830111", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/0/509ce648-fb76-486d-8b39-183e368b7cb7.jpg?1562830111", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/5/0/509ce648-fb76-486d-8b39-183e368b7cb7.jpg?1562830111"}, "mana_cost": "{8}{R}", "cmc": 9.0, "type_line": "Sorcery", "oracle_text": "This spell costs {1} less to cast for each creature on the battlefield.\nBlasphemous Act deals 13 damage to each creature.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "d1026945-2969-42b9-be53-f941405a58cb", "set": "isd", "set_name": "Innistrad", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/d1026945-2969-42b9-be53-f941405a58cb", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aisd&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/isd?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/509ce648-fb76-486d-8b39-183e368b7cb7/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A7a2484a9-04fd-41a0-8224-610c1c07ed10&unique=prints", "collector_number": "130", "digital": false, "rarity": "rare", "flavor_text": "\"Holy places are no longer sanctuary from death, and death is no longer sanctuary from anything.\"\n\u2014Thalia, Knight-Cathar", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Daarken", "artist_ids": ["e607a0d4-fc12-4c01-9e3f-501f5269b9cb"], "illustration_id": "6ea08730-d12d-445f-b31f-8f55374f194d", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 35, "penny_rank": 2266, "prices": {"usd": "2.75", "usd_foil": "13.32", "usd_etched": null, "eur": "1.83", "eur_foil": "11.00", "tix": "0.05"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=222206", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Blasphemous+Act&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Blasphemous+Act&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Blasphemous+Act"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/55902?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Blasphemous+Act&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/42410?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "3adc0288-acdf-4a99-9bfb-919cae1aeb69", "oracle_id": "3656338d-ca08-465b-b09a-d8d8d1196eec", "multiverse_ids": [479627], "mtgo_id": 80223, "arena_id": 71174, "tcgplayer_id": 212766, "cardmarket_id": 455258, "name": "Blazing Volley", "lang": "en", "released_at": "2020-04-24", "uri": "https://api.scryfall.com/cards/3adc0288-acdf-4a99-9bfb-919cae1aeb69", "scryfall_uri": "https://scryfall.com/card/iko/107/blazing-volley?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/3/a/3adc0288-acdf-4a99-9bfb-919cae1aeb69.jpg?1591227065", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/a/3adc0288-acdf-4a99-9bfb-919cae1aeb69.jpg?1591227065", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/3/a/3adc0288-acdf-4a99-9bfb-919cae1aeb69.jpg?1591227065", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/3/a/3adc0288-acdf-4a99-9bfb-919cae1aeb69.png?1591227065", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/a/3adc0288-acdf-4a99-9bfb-919cae1aeb69.jpg?1591227065", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/3/a/3adc0288-acdf-4a99-9bfb-919cae1aeb69.jpg?1591227065"}, "mana_cost": "{R}", "cmc": 1.0, "type_line": "Sorcery", "oracle_text": "Blazing Volley deals 1 damage to each creature your opponents control.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "19feda43-15ab-427e-a0e4-148a4bf2b03a", "set": "iko", "set_name": "Ikoria: Lair of Behemoths", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/19feda43-15ab-427e-a0e4-148a4bf2b03a", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aiko&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/iko?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/3adc0288-acdf-4a99-9bfb-919cae1aeb69/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A3656338d-ca08-465b-b09a-d8d8d1196eec&unique=prints", "collector_number": "107", "digital": false, "rarity": "common", "flavor_text": "\"Don't ask me what to do if you miss. They're stingdrakes. Don't miss.\"\n\u2014Orthion, Lavabrink captain", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Heonhwa Choe", "artist_ids": ["ce415f9e-8a20-4d64-bcba-2b1b7e94012e"], "illustration_id": "0536152f-2f31-47fe-81eb-68e2ca30810f", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 7321, "penny_rank": 7887, "prices": {"usd": "0.04", "usd_foil": "0.06", "usd_etched": null, "eur": "0.05", "eur_foil": "0.09", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=479627", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Blazing+Volley&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Blazing+Volley&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Blazing+Volley"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/212766?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Blazing+Volley&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/80223?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "ba450179-4591-4e8a-b6ca-66cbef1817f2", "oracle_id": "3656338d-ca08-465b-b09a-d8d8d1196eec", "multiverse_ids": [426821], "mtgo_id": 63840, "mtgo_foil_id": 63841, "tcgplayer_id": 130195, "cardmarket_id": 297179, "name": "Blazing Volley", "lang": "en", "released_at": "2017-04-28", "uri": "https://api.scryfall.com/cards/ba450179-4591-4e8a-b6ca-66cbef1817f2", "scryfall_uri": "https://scryfall.com/card/akh/119/blazing-volley?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/b/a/ba450179-4591-4e8a-b6ca-66cbef1817f2.jpg?1543675486", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/a/ba450179-4591-4e8a-b6ca-66cbef1817f2.jpg?1543675486", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/b/a/ba450179-4591-4e8a-b6ca-66cbef1817f2.jpg?1543675486", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/b/a/ba450179-4591-4e8a-b6ca-66cbef1817f2.png?1543675486", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/a/ba450179-4591-4e8a-b6ca-66cbef1817f2.jpg?1543675486", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/b/a/ba450179-4591-4e8a-b6ca-66cbef1817f2.jpg?1543675486"}, "mana_cost": "{R}", "cmc": 1.0, "type_line": "Sorcery", "oracle_text": "Blazing Volley deals 1 damage to each creature your opponents control.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "02d1c536-68bc-4208-9b65-7741ef1f9da8", "set": "akh", "set_name": "Amonkhet", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/02d1c536-68bc-4208-9b65-7741ef1f9da8", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aakh&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/akh?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/ba450179-4591-4e8a-b6ca-66cbef1817f2/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A3656338d-ca08-465b-b09a-d8d8d1196eec&unique=prints", "collector_number": "119", "digital": false, "rarity": "common", "flavor_text": "The arrows fell like fiery rain, and for a moment, the sky itself seemed to burn.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Zezhou Chen", "artist_ids": ["810677e5-a502-4c03-b726-78cd808a75d4"], "illustration_id": "e0757052-e065-4b84-a627-548e0460e3c4", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 7321, "penny_rank": 7887, "prices": {"usd": "0.05", "usd_foil": "0.26", "usd_etched": null, "eur": "0.02", "eur_foil": "0.05", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=426821", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Blazing+Volley&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Blazing+Volley&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Blazing+Volley"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/130195?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Blazing+Volley&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/63840?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "fac827f7-a587-4adf-8408-2d9ccd9c1343", "oracle_id": "0b7fabe8-bc44-47b1-93bb-b895a1bd0aa9", "multiverse_ids": [534857], "mtgo_id": 93128, "arena_id": 78428, "tcgplayer_id": 248308, "cardmarket_id": 575035, "name": "Bloodline Culling", "lang": "en", "released_at": "2021-09-24", "uri": "https://api.scryfall.com/cards/fac827f7-a587-4adf-8408-2d9ccd9c1343", "scryfall_uri": "https://scryfall.com/card/mid/89/bloodline-culling?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/f/a/fac827f7-a587-4adf-8408-2d9ccd9c1343.jpg?1634349575", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/a/fac827f7-a587-4adf-8408-2d9ccd9c1343.jpg?1634349575", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/f/a/fac827f7-a587-4adf-8408-2d9ccd9c1343.jpg?1634349575", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/f/a/fac827f7-a587-4adf-8408-2d9ccd9c1343.png?1634349575", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/a/fac827f7-a587-4adf-8408-2d9ccd9c1343.jpg?1634349575", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/f/a/fac827f7-a587-4adf-8408-2d9ccd9c1343.jpg?1634349575"}, "mana_cost": "{1}{B}{B}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Choose one \u2014\n\u2022 Target creature gets -5/-5 until end of turn.\n\u2022 Creature tokens get -2/-2 until end of turn.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "44b8eb8f-fa23-401a-98b5-1fbb9871128e", "set": "mid", "set_name": "Innistrad: Midnight Hunt", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/44b8eb8f-fa23-401a-98b5-1fbb9871128e", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Amid&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/mid?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/fac827f7-a587-4adf-8408-2d9ccd9c1343/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A0b7fabe8-bc44-47b1-93bb-b895a1bd0aa9&unique=prints", "collector_number": "89", "digital": false, "rarity": "rare", "flavor_text": "\"Forget your human ancestors. You're part of my family now.\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Liiga Smilshkalne", "artist_ids": ["5a50ced2-b301-4195-8af4-f7e1bae07d28"], "illustration_id": "8ca53a9a-0917-4480-9115-4e3c3ada5e25", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 9138, "penny_rank": 10426, "preview": {"source": "Duende Pablo", "source_uri": "", "previewed_at": "2021-09-08"}, "prices": {"usd": "0.10", "usd_foil": "0.14", "usd_etched": null, "eur": "0.15", "eur_foil": "0.19", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=534857", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Bloodline+Culling&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Bloodline+Culling&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Bloodline+Culling"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/248308?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Bloodline+Culling&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/93128?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "5d45c18c-b8eb-465c-8dfc-fd6da73e25b5", "oracle_id": "75f5d372-4ff9-430c-8302-72472439e0d2", "multiverse_ids": [562999], "tcgplayer_id": 272919, "cardmarket_id": 659846, "name": "Blood Money", "lang": "en", "released_at": "2022-06-10", "uri": "https://api.scryfall.com/cards/5d45c18c-b8eb-465c-8dfc-fd6da73e25b5", "scryfall_uri": "https://scryfall.com/card/clb/116/blood-money?utm_source=api", "layout": "normal", "highres_image": false, "image_status": "lowres", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/5/d/5d45c18c-b8eb-465c-8dfc-fd6da73e25b5.jpg?1653442044", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/d/5d45c18c-b8eb-465c-8dfc-fd6da73e25b5.jpg?1653442044", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/5/d/5d45c18c-b8eb-465c-8dfc-fd6da73e25b5.jpg?1653442044", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/5/d/5d45c18c-b8eb-465c-8dfc-fd6da73e25b5.png?1653442044", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/d/5d45c18c-b8eb-465c-8dfc-fd6da73e25b5.jpg?1653442044", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/5/d/5d45c18c-b8eb-465c-8dfc-fd6da73e25b5.jpg?1653442044"}, "mana_cost": "{5}{B}{B}", "cmc": 7.0, "type_line": "Sorcery", "oracle_text": "Destroy all creatures. For each nontoken creature destroyed this way, you create a tapped Treasure token.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "all_parts": [{"object": "related_card", "id": "5d45c18c-b8eb-465c-8dfc-fd6da73e25b5", "component": "combo_piece", "name": "Blood Money", "type_line": "Sorcery", "uri": "https://api.scryfall.com/cards/5d45c18c-b8eb-465c-8dfc-fd6da73e25b5"}, {"object": "related_card", "id": "770b988d-4f31-4746-8c23-4ed8d9a6b393", "component": "token", "name": "Treasure", "type_line": "Token Artifact \u2014 Treasure", "uri": "https://api.scryfall.com/cards/770b988d-4f31-4746-8c23-4ed8d9a6b393"}], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "5e4c3fe8-fd57-4b20-ad56-c03790a16cea", "set": "clb", "set_name": "Commander Legends: Battle for Baldur's Gate", "set_type": "draft_innovation", "set_uri": "https://api.scryfall.com/sets/5e4c3fe8-fd57-4b20-ad56-c03790a16cea", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aclb&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/clb?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/5d45c18c-b8eb-465c-8dfc-fd6da73e25b5/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A75f5d372-4ff9-430c-8302-72472439e0d2&unique=prints", "collector_number": "116", "digital": false, "rarity": "mythic", "flavor_text": "For the patriar class, wealth is in the blood.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Inka Schulz", "artist_ids": ["3f93408e-c510-42a5-beef-9ddbc56d9056"], "illustration_id": "b82e9bb4-0bd2-41d7-a55a-c57de92033f0", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 7478, "preview": {"source": "Leyendas Legendarias", "source_uri": "https://twitter.com/ElBadiablo/status/1527698202274701314", "previewed_at": "2022-05-20"}, "prices": {"usd": "3.22", "usd_foil": "2.78", "usd_etched": null, "eur": "3.17", "eur_foil": "3.45", "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=562999", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Blood+Money&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Blood+Money&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Blood+Money"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/272919?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Blood+Money&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Blood+Money&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "d8606f40-0af4-443b-a413-a88dc3e8f32e", "oracle_id": "45f386ba-ad62-4c0e-b6ad-ae02ca8f2bec", "multiverse_ids": [503687], "mtgo_id": 87485, "arena_id": 75118, "tcgplayer_id": 230737, "cardmarket_id": 532057, "name": "Blood on the Snow", "lang": "en", "released_at": "2021-02-05", "uri": "https://api.scryfall.com/cards/d8606f40-0af4-443b-a413-a88dc3e8f32e", "scryfall_uri": "https://scryfall.com/card/khm/79/blood-on-the-snow?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/d/8/d8606f40-0af4-443b-a413-a88dc3e8f32e.jpg?1631047655", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/8/d8606f40-0af4-443b-a413-a88dc3e8f32e.jpg?1631047655", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/d/8/d8606f40-0af4-443b-a413-a88dc3e8f32e.jpg?1631047655", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/d/8/d8606f40-0af4-443b-a413-a88dc3e8f32e.png?1631047655", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/8/d8606f40-0af4-443b-a413-a88dc3e8f32e.jpg?1631047655", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/d/8/d8606f40-0af4-443b-a413-a88dc3e8f32e.jpg?1631047655"}, "mana_cost": "{4}{B}{B}", "cmc": 6.0, "type_line": "Snow Sorcery", "oracle_text": "Choose one \u2014\n\u2022 Destroy all creatures.\n\u2022 Destroy all planeswalkers.\nThen return a creature or planeswalker card with mana value X or less from your graveyard to the battlefield, where X is the amount of {S} spent to cast this spell. ({S} is mana from a snow source.)", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "43057fad-b1c1-437f-bc48-0045bce6d8c9", "set": "khm", "set_name": "Kaldheim", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/43057fad-b1c1-437f-bc48-0045bce6d8c9", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Akhm&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/khm?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/d8606f40-0af4-443b-a413-a88dc3e8f32e/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A45f386ba-ad62-4c0e-b6ad-ae02ca8f2bec&unique=prints", "collector_number": "79", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Martina Fackova", "artist_ids": ["6338124e-8e53-498d-8bf9-93a55db2f61c"], "illustration_id": "e18fdadd-085a-428b-b86c-0f3e7f54df20", "border_color": "black", "frame": "2015", "frame_effects": ["snow"], "security_stamp": "oval", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 2772, "penny_rank": 2530, "prices": {"usd": "0.16", "usd_foil": "0.43", "usd_etched": null, "eur": "0.18", "eur_foil": "0.83", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=503687", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Blood+on+the+Snow&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Blood+on+the+Snow&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Blood+on+the+Snow"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/230737?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Blood+on+the+Snow&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/87485?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "cdaab44c-4ce1-43fb-915c-c687fe8559ce", "oracle_id": "fb34b671-b61a-47e2-90fa-dbe5cf6d3743", "multiverse_ids": [401827], "mtgo_id": 58437, "mtgo_foil_id": 58438, "tcgplayer_id": 105578, "cardmarket_id": 284866, "name": "Boiling Earth", "lang": "en", "released_at": "2015-10-02", "uri": "https://api.scryfall.com/cards/cdaab44c-4ce1-43fb-915c-c687fe8559ce", "scryfall_uri": "https://scryfall.com/card/bfz/142/boiling-earth?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/c/d/cdaab44c-4ce1-43fb-915c-c687fe8559ce.jpg?1562943558", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/d/cdaab44c-4ce1-43fb-915c-c687fe8559ce.jpg?1562943558", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/c/d/cdaab44c-4ce1-43fb-915c-c687fe8559ce.jpg?1562943558", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/c/d/cdaab44c-4ce1-43fb-915c-c687fe8559ce.png?1562943558", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/d/cdaab44c-4ce1-43fb-915c-c687fe8559ce.jpg?1562943558", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/c/d/cdaab44c-4ce1-43fb-915c-c687fe8559ce.jpg?1562943558"}, "mana_cost": "{1}{R}", "cmc": 2.0, "type_line": "Sorcery", "oracle_text": "Boiling Earth deals 1 damage to each creature your opponents control.\nAwaken 4\u2014{6}{R} (If you cast this spell for {6}{R}, also put four +1/+1 counters on target land you control and it becomes a 0/0 Elemental creature with haste. It's still a land.)", "colors": ["R"], "color_identity": ["R"], "keywords": ["Awaken"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "91719374-7ac5-4afa-ada8-5da964dcf1d4", "set": "bfz", "set_name": "Battle for Zendikar", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/91719374-7ac5-4afa-ada8-5da964dcf1d4", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Abfz&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/bfz?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/cdaab44c-4ce1-43fb-915c-c687fe8559ce/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Afb34b671-b61a-47e2-90fa-dbe5cf6d3743&unique=prints", "collector_number": "142", "digital": false, "rarity": "common", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Titus Lunter", "artist_ids": ["b11e6b3a-f4ca-4cf1-8fd7-475696de5f5c"], "illustration_id": "4635fc49-ea2f-400b-bafe-df1acccb4071", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 14730, "penny_rank": 5964, "prices": {"usd": "0.06", "usd_foil": "0.14", "usd_etched": null, "eur": "0.22", "eur_foil": "0.20", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=401827", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Boiling+Earth&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Boiling+Earth&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Boiling+Earth"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/105578?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Boiling+Earth&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/58437?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "e60610fe-891d-46de-b556-d03b637dccec", "oracle_id": "13822dcf-0639-4852-9a7f-e1d55719e82c", "multiverse_ids": [271095], "mtgo_id": 44191, "mtgo_foil_id": 44192, "tcgplayer_id": 58296, "cardmarket_id": 254417, "name": "Bonfire of the Damned", "lang": "en", "released_at": "2012-05-04", "uri": "https://api.scryfall.com/cards/e60610fe-891d-46de-b556-d03b637dccec", "scryfall_uri": "https://scryfall.com/card/avr/129/bonfire-of-the-damned?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/e/6/e60610fe-891d-46de-b556-d03b637dccec.jpg?1592709031", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/6/e60610fe-891d-46de-b556-d03b637dccec.jpg?1592709031", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/e/6/e60610fe-891d-46de-b556-d03b637dccec.jpg?1592709031", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/e/6/e60610fe-891d-46de-b556-d03b637dccec.png?1592709031", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/6/e60610fe-891d-46de-b556-d03b637dccec.jpg?1592709031", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/e/6/e60610fe-891d-46de-b556-d03b637dccec.jpg?1592709031"}, "mana_cost": "{X}{X}{R}", "cmc": 1.0, "type_line": "Sorcery", "oracle_text": "Bonfire of the Damned deals X damage to target player or planeswalker and each creature that player or that planeswalker's controller controls.\nMiracle {X}{R} (You may cast this card for its miracle cost when you draw it if it's the first card you drew this turn.)", "colors": ["R"], "color_identity": ["R"], "keywords": ["Miracle"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "039810a9-92d7-4f2d-b2d0-ca661ac586c0", "set": "avr", "set_name": "Avacyn Restored", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/039810a9-92d7-4f2d-b2d0-ca661ac586c0", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aavr&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/avr?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/e60610fe-891d-46de-b556-d03b637dccec/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A13822dcf-0639-4852-9a7f-e1d55719e82c&unique=prints", "collector_number": "129", "digital": false, "rarity": "mythic", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "James Paick", "artist_ids": ["1a7be0a2-d8ac-45c7-b0a0-eb0886f47b5f"], "illustration_id": "6446deae-9e18-44c0-8ecd-1b7f2d7821fd", "border_color": "black", "frame": "2003", "frame_effects": ["miracle"], "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 6725, "prices": {"usd": "1.68", "usd_foil": "7.35", "usd_etched": null, "eur": "1.49", "eur_foil": "4.94", "tix": "0.06"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=271095", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Bonfire+of+the+Damned&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Bonfire+of+the+Damned&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Bonfire+of+the+Damned"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/58296?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Bonfire+of+the+Damned&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/44191?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "1b4d0102-c0d6-4d50-941a-dd1c3575a3a8", "oracle_id": "c010d833-1873-4132-b4ff-8d78b3d7c2d7", "multiverse_ids": [430749], "mtgo_id": 64604, "mtgo_foil_id": 64605, "tcgplayer_id": 132232, "cardmarket_id": 298281, "name": "Bontu's Last Reckoning", "lang": "en", "released_at": "2017-07-14", "uri": "https://api.scryfall.com/cards/1b4d0102-c0d6-4d50-941a-dd1c3575a3a8", "scryfall_uri": "https://scryfall.com/card/hou/60/bontus-last-reckoning?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/1/b/1b4d0102-c0d6-4d50-941a-dd1c3575a3a8.jpg?1562791273", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/b/1b4d0102-c0d6-4d50-941a-dd1c3575a3a8.jpg?1562791273", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/1/b/1b4d0102-c0d6-4d50-941a-dd1c3575a3a8.jpg?1562791273", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/1/b/1b4d0102-c0d6-4d50-941a-dd1c3575a3a8.png?1562791273", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/b/1b4d0102-c0d6-4d50-941a-dd1c3575a3a8.jpg?1562791273", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/1/b/1b4d0102-c0d6-4d50-941a-dd1c3575a3a8.jpg?1562791273"}, "mana_cost": "{1}{B}{B}", "cmc": 3.0, "type_line": "Sorcery", "oracle_text": "Destroy all creatures. Lands you control don't untap during your next untap step.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "65ff168b-bb94-47a5-a8f9-4ec6c213e768", "set": "hou", "set_name": "Hour of Devastation", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/65ff168b-bb94-47a5-a8f9-4ec6c213e768", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ahou&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/hou?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/1b4d0102-c0d6-4d50-941a-dd1c3575a3a8/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ac010d833-1873-4132-b4ff-8d78b3d7c2d7&unique=prints", "collector_number": "60", "digital": false, "rarity": "rare", "flavor_text": "To the last, Bontu wanted only to be first among the God-Pharaoh's subjects.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Victor Adame Minguez", "artist_ids": ["bd8f7368-5b10-4554-b6b8-d052c6aca89f"], "illustration_id": "6a960f6e-5a06-4fc9-838a-e8bcea269ad2", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 6362, "penny_rank": 912, "prices": {"usd": "0.81", "usd_foil": "2.17", "usd_etched": null, "eur": "1.29", "eur_foil": "2.00", "tix": "0.10"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=430749", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Bontu%27s+Last+Reckoning&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Bontu%27s+Last+Reckoning&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Bontu%27s+Last+Reckoning"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/132232?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Bontu%27s+Last+Reckoning&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/64604?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "96ba9014-d750-4924-aa6f-8b9f421807f9", "oracle_id": "79334732-8db1-4393-9fed-3cde3c572c5c", "multiverse_ids": [10549], "tcgplayer_id": 431, "cardmarket_id": 11326, "name": "Borrowing the East Wind", "lang": "en", "released_at": "1999-07-06", "uri": "https://api.scryfall.com/cards/96ba9014-d750-4924-aa6f-8b9f421807f9", "scryfall_uri": "https://scryfall.com/card/ptk/133/borrowing-the-east-wind?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/9/6/96ba9014-d750-4924-aa6f-8b9f421807f9.jpg?1562257056", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/6/96ba9014-d750-4924-aa6f-8b9f421807f9.jpg?1562257056", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/9/6/96ba9014-d750-4924-aa6f-8b9f421807f9.jpg?1562257056", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/9/6/96ba9014-d750-4924-aa6f-8b9f421807f9.png?1562257056", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/6/96ba9014-d750-4924-aa6f-8b9f421807f9.jpg?1562257056", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/9/6/96ba9014-d750-4924-aa6f-8b9f421807f9.jpg?1562257056"}, "mana_cost": "{X}{G}{G}", "cmc": 2.0, "type_line": "Sorcery", "oracle_text": "Borrowing the East Wind deals X damage to each creature with horsemanship and each player.", "colors": ["G"], "color_identity": ["G"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "2676ff2e-9d86-4b5b-b935-e84e41b0755e", "set": "ptk", "set_name": "Portal Three Kingdoms", "set_type": "starter", "set_uri": "https://api.scryfall.com/sets/2676ff2e-9d86-4b5b-b935-e84e41b0755e", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aptk&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ptk?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/96ba9014-d750-4924-aa6f-8b9f421807f9/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A79334732-8db1-4393-9fed-3cde3c572c5c&unique=prints", "collector_number": "133", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Gao Yan", "artist_ids": ["0d253eb0-2579-4201-bde4-f0a9f0963827"], "illustration_id": "ed8252f9-0b45-4b9e-a9f8-da212eccdbce", "border_color": "white", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 19288, "prices": {"usd": "119.00", "usd_foil": null, "usd_etched": null, "eur": "19.90", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=10549", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Borrowing+the+East+Wind&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Borrowing+the+East+Wind&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Borrowing+the+East+Wind"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/431?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Borrowing+the+East+Wind&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Borrowing+the+East+Wind&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "765ec2c9-8ffe-488a-bebe-e5dd63825a8c", "oracle_id": "a648b9ed-810a-41db-af40-3b5b4658db90", "multiverse_ids": [29856], "mtgo_id": 17554, "mtgo_foil_id": 17555, "tcgplayer_id": 10241, "cardmarket_id": 2207, "name": "Breaking Point", "lang": "en", "released_at": "2002-05-27", "uri": "https://api.scryfall.com/cards/765ec2c9-8ffe-488a-bebe-e5dd63825a8c", "scryfall_uri": "https://scryfall.com/card/jud/81/breaking-point?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/7/6/765ec2c9-8ffe-488a-bebe-e5dd63825a8c.jpg?1562630501", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/6/765ec2c9-8ffe-488a-bebe-e5dd63825a8c.jpg?1562630501", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/7/6/765ec2c9-8ffe-488a-bebe-e5dd63825a8c.jpg?1562630501", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/7/6/765ec2c9-8ffe-488a-bebe-e5dd63825a8c.png?1562630501", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/6/765ec2c9-8ffe-488a-bebe-e5dd63825a8c.jpg?1562630501", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/7/6/765ec2c9-8ffe-488a-bebe-e5dd63825a8c.jpg?1562630501"}, "mana_cost": "{1}{R}{R}", "cmc": 3.0, "type_line": "Sorcery", "oracle_text": "Any player may have Breaking Point deal 6 damage to them. If no one does, destroy all creatures. Creatures destroyed this way can't be regenerated.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "cd82de1a-36fd-4618-bfe8-b45532a582d9", "set": "jud", "set_name": "Judgment", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/cd82de1a-36fd-4618-bfe8-b45532a582d9", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ajud&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/jud?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/765ec2c9-8ffe-488a-bebe-e5dd63825a8c/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aa648b9ed-810a-41db-af40-3b5b4658db90&unique=prints", "collector_number": "81", "digital": false, "rarity": "rare", "flavor_text": "\"Enough!\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Matthew D. Wilson", "artist_ids": ["4fbafd13-0cf9-42a1-870d-7f8ea276f140"], "illustration_id": "cad69814-f050-4e70-9db1-266265bee7d8", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 11790, "penny_rank": 11165, "prices": {"usd": "0.58", "usd_foil": "6.37", "usd_etched": null, "eur": "0.59", "eur_foil": "4.99", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=29856", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Breaking+Point&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Breaking+Point&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Breaking+Point"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/10241?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Breaking+Point&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/17554?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "480bb7e3-df03-454d-ada0-592ef8a4a6f0", "oracle_id": "1954994f-17bf-4ea5-af72-60f9bfcb6569", "multiverse_ids": [23090], "mtgo_id": 14613, "mtgo_foil_id": 14614, "tcgplayer_id": 7445, "cardmarket_id": 3440, "name": "Breath of Darigaaz", "lang": "en", "released_at": "2000-10-02", "uri": "https://api.scryfall.com/cards/480bb7e3-df03-454d-ada0-592ef8a4a6f0", "scryfall_uri": "https://scryfall.com/card/inv/138/breath-of-darigaaz?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/4/8/480bb7e3-df03-454d-ada0-592ef8a4a6f0.jpg?1562909692", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/8/480bb7e3-df03-454d-ada0-592ef8a4a6f0.jpg?1562909692", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/4/8/480bb7e3-df03-454d-ada0-592ef8a4a6f0.jpg?1562909692", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/4/8/480bb7e3-df03-454d-ada0-592ef8a4a6f0.png?1562909692", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/8/480bb7e3-df03-454d-ada0-592ef8a4a6f0.jpg?1562909692", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/4/8/480bb7e3-df03-454d-ada0-592ef8a4a6f0.jpg?1562909692"}, "mana_cost": "{1}{R}", "cmc": 2.0, "type_line": "Sorcery", "oracle_text": "Kicker {2} (You may pay an additional {2} as you cast this spell.)\nBreath of Darigaaz deals 1 damage to each creature without flying and each player. If this spell was kicked, it deals 4 damage to each creature without flying and each player instead.", "colors": ["R"], "color_identity": ["R"], "keywords": ["Kicker"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "b9ae5e02-7726-47ca-b5e4-5ec402b41cd1", "set": "inv", "set_name": "Invasion", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/b9ae5e02-7726-47ca-b5e4-5ec402b41cd1", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ainv&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/inv?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/480bb7e3-df03-454d-ada0-592ef8a4a6f0/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A1954994f-17bf-4ea5-af72-60f9bfcb6569&unique=prints", "collector_number": "138", "digital": false, "rarity": "uncommon", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Greg Hildebrandt & Tim Hildebrandt", "artist_ids": ["020f967b-0d2f-4166-aabe-901dba8bc7ec", "caa7228c-f74c-4145-91fb-1af8d623c353"], "illustration_id": "bb2f58ae-11d6-4888-8d0d-7951f0e092a5", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 6602, "penny_rank": 2255, "prices": {"usd": "0.34", "usd_foil": "16.61", "usd_etched": null, "eur": "0.24", "eur_foil": "3.99", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=23090", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Breath+of+Darigaaz&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Breath+of+Darigaaz&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Breath+of+Darigaaz"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/7445?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Breath+of+Darigaaz&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/14613?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "0174e40a-0ef5-4439-91e6-3fc39f482520", "oracle_id": "f3dd1f6d-f7d7-4358-8139-7495404f29c7", "multiverse_ids": [563048], "mtgo_id": 100352, "tcgplayer_id": 273294, "cardmarket_id": 660825, "name": "Breath Weapon", "lang": "en", "released_at": "2022-06-10", "uri": "https://api.scryfall.com/cards/0174e40a-0ef5-4439-91e6-3fc39f482520", "scryfall_uri": "https://scryfall.com/card/clb/165/breath-weapon?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/0/1/0174e40a-0ef5-4439-91e6-3fc39f482520.jpg?1653596065", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/1/0174e40a-0ef5-4439-91e6-3fc39f482520.jpg?1653596065", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/0/1/0174e40a-0ef5-4439-91e6-3fc39f482520.jpg?1653596065", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/0/1/0174e40a-0ef5-4439-91e6-3fc39f482520.png?1653596065", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/1/0174e40a-0ef5-4439-91e6-3fc39f482520.jpg?1653596065", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/0/1/0174e40a-0ef5-4439-91e6-3fc39f482520.jpg?1653596065"}, "mana_cost": "{2}{R}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Breath Weapon deals 2 damage to each non-Dragon creature.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "5e4c3fe8-fd57-4b20-ad56-c03790a16cea", "set": "clb", "set_name": "Commander Legends: Battle for Baldur's Gate", "set_type": "draft_innovation", "set_uri": "https://api.scryfall.com/sets/5e4c3fe8-fd57-4b20-ad56-c03790a16cea", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aclb&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/clb?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/0174e40a-0ef5-4439-91e6-3fc39f482520/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Af3dd1f6d-f7d7-4358-8139-7495404f29c7&unique=prints", "collector_number": "165", "digital": false, "rarity": "common", "flavor_text": "\"In the name of Tempus, Lord of Battles, you will die honorably in righteous fire.\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Adam Vehige", "artist_ids": ["c371d756-2c5d-46f1-aa3a-f70b831d4fbc"], "illustration_id": "9a49eaa1-9fc3-4ca7-9bf2-fba237d06750", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 12000, "preview": {"source": "Wizards of the Coast", "source_uri": "https://www.twitch.tv/videos/1309876135", "previewed_at": "2022-05-26"}, "prices": {"usd": "0.08", "usd_foil": "0.21", "usd_etched": null, "eur": "0.09", "eur_foil": "0.20", "tix": "0.38"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=563048", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Breath+Weapon&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Breath+Weapon&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Breath+Weapon"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/273294?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Breath+Weapon&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/100352?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "20ded7af-8086-465e-a980-3099217d324c", "oracle_id": "0ec54683-a65c-461d-862e-585b6499d6a5", "multiverse_ids": [534907], "mtgo_id": 93228, "arena_id": 78478, "tcgplayer_id": 248215, "cardmarket_id": 574993, "name": "Burn Down the House", "lang": "en", "released_at": "2021-09-24", "uri": "https://api.scryfall.com/cards/20ded7af-8086-465e-a980-3099217d324c", "scryfall_uri": "https://scryfall.com/card/mid/131/burn-down-the-house?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/2/0/20ded7af-8086-465e-a980-3099217d324c.jpg?1634350460", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/0/20ded7af-8086-465e-a980-3099217d324c.jpg?1634350460", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/2/0/20ded7af-8086-465e-a980-3099217d324c.jpg?1634350460", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/2/0/20ded7af-8086-465e-a980-3099217d324c.png?1634350460", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/0/20ded7af-8086-465e-a980-3099217d324c.jpg?1634350460", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/2/0/20ded7af-8086-465e-a980-3099217d324c.jpg?1634350460"}, "mana_cost": "{3}{R}{R}", "cmc": 5.0, "type_line": "Sorcery", "oracle_text": "Choose one \u2014\n\u2022 Burn Down the House deals 5 damage to each creature and each planeswalker.\n\u2022 Create three 1/1 red Devil creature tokens with \"When this creature dies, it deals 1 damage to any target.\" They gain haste until end of turn.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "all_parts": [{"object": "related_card", "id": "20ded7af-8086-465e-a980-3099217d324c", "component": "combo_piece", "name": "Burn Down the House", "type_line": "Sorcery", "uri": "https://api.scryfall.com/cards/20ded7af-8086-465e-a980-3099217d324c"}, {"object": "related_card", "id": "14f9c505-a833-4240-83a0-fbd160bdbf0f", "component": "token", "name": "Devil", "type_line": "Token Creature \u2014 Devil", "uri": "https://api.scryfall.com/cards/14f9c505-a833-4240-83a0-fbd160bdbf0f"}], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "44b8eb8f-fa23-401a-98b5-1fbb9871128e", "set": "mid", "set_name": "Innistrad: Midnight Hunt", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/44b8eb8f-fa23-401a-98b5-1fbb9871128e", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Amid&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/mid?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/20ded7af-8086-465e-a980-3099217d324c/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A0ec54683-a65c-461d-862e-585b6499d6a5&unique=prints", "collector_number": "131", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Campbell White", "artist_ids": ["d281eab4-463a-4ba8-9039-8943737960a0"], "illustration_id": "cced2c2f-9fe2-4b7f-91e4-8baee0ef34fb", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 4198, "penny_rank": 3146, "preview": {"source": "InfiniTokens", "source_uri": "https://www.infinitokens.com/blog/mid", "previewed_at": "2021-09-09"}, "prices": {"usd": "0.43", "usd_foil": "0.93", "usd_etched": null, "eur": "0.22", "eur_foil": "0.55", "tix": "0.21"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=534907", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Burn+Down+the+House&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Burn+Down+the+House&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Burn+Down+the+House"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/248215?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Burn+Down+the+House&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/93228?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "33a1fe45-52d2-4c50-bedc-eee156ab69c8", "oracle_id": "3a3cec13-4766-40d2-88e0-41bcdd5249e9", "multiverse_ids": [10637], "tcgplayer_id": 435, "cardmarket_id": 11297, "name": "Burning of Xinye", "lang": "en", "released_at": "1999-07-06", "uri": "https://api.scryfall.com/cards/33a1fe45-52d2-4c50-bedc-eee156ab69c8", "scryfall_uri": "https://scryfall.com/card/ptk/104/burning-of-xinye?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/3/3/33a1fe45-52d2-4c50-bedc-eee156ab69c8.jpg?1562256064", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/3/33a1fe45-52d2-4c50-bedc-eee156ab69c8.jpg?1562256064", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/3/3/33a1fe45-52d2-4c50-bedc-eee156ab69c8.jpg?1562256064", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/3/3/33a1fe45-52d2-4c50-bedc-eee156ab69c8.png?1562256064", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/3/33a1fe45-52d2-4c50-bedc-eee156ab69c8.jpg?1562256064", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/3/3/33a1fe45-52d2-4c50-bedc-eee156ab69c8.jpg?1562256064"}, "mana_cost": "{4}{R}{R}", "cmc": 6.0, "type_line": "Sorcery", "oracle_text": "You destroy four lands you control, then target opponent destroys four lands they control. Then Burning of Xinye deals 4 damage to each creature.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "2676ff2e-9d86-4b5b-b935-e84e41b0755e", "set": "ptk", "set_name": "Portal Three Kingdoms", "set_type": "starter", "set_uri": "https://api.scryfall.com/sets/2676ff2e-9d86-4b5b-b935-e84e41b0755e", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aptk&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ptk?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/33a1fe45-52d2-4c50-bedc-eee156ab69c8/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A3a3cec13-4766-40d2-88e0-41bcdd5249e9&unique=prints", "collector_number": "104", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Yang Hong", "artist_ids": ["4a9bbac6-55de-440a-bb65-58aedc3380ed"], "illustration_id": "88f1276a-aa84-4f93-be60-db0b5d534841", "border_color": "white", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 15959, "penny_rank": 996, "prices": {"usd": "113.55", "usd_foil": null, "usd_etched": null, "eur": "20.00", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=10637", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Burning+of+Xinye&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Burning+of+Xinye&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Burning+of+Xinye"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/435?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Burning+of+Xinye&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Burning+of+Xinye&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "46764e49-64da-4a94-b61c-75e006b2c5a9", "oracle_id": "d64e96bf-6815-462c-93b4-c9c22dc43eda", "multiverse_ids": [540832], "mtgo_id": 94292, "arena_id": 78780, "tcgplayer_id": 252886, "cardmarket_id": 581362, "name": "By Invitation Only", "lang": "en", "released_at": "2021-11-19", "uri": "https://api.scryfall.com/cards/46764e49-64da-4a94-b61c-75e006b2c5a9", "scryfall_uri": "https://scryfall.com/card/vow/5/by-invitation-only?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/4/6/46764e49-64da-4a94-b61c-75e006b2c5a9.jpg?1643585907", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/6/46764e49-64da-4a94-b61c-75e006b2c5a9.jpg?1643585907", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/4/6/46764e49-64da-4a94-b61c-75e006b2c5a9.jpg?1643585907", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/4/6/46764e49-64da-4a94-b61c-75e006b2c5a9.png?1643585907", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/6/46764e49-64da-4a94-b61c-75e006b2c5a9.jpg?1643585907", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/4/6/46764e49-64da-4a94-b61c-75e006b2c5a9.jpg?1643585907"}, "mana_cost": "{3}{W}{W}", "cmc": 5.0, "type_line": "Sorcery", "oracle_text": "Choose a number between 0 and 13. Each player sacrifices that many creatures.", "colors": ["W"], "color_identity": ["W"], "keywords": [], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "8144b676-569f-4716-8005-bc8f0778f3fa", "set": "vow", "set_name": "Innistrad: Crimson Vow", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/8144b676-569f-4716-8005-bc8f0778f3fa", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Avow&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/vow?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/46764e49-64da-4a94-b61c-75e006b2c5a9/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ad64e96bf-6815-462c-93b4-c9c22dc43eda&unique=prints", "collector_number": "5", "digital": false, "rarity": "rare", "flavor_text": "The red envelopes guarantee safe passage through the Lurenbraum barrier. Olivia left strict instructions: no invitation, no entry, no exceptions.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Micah Epstein", "artist_ids": ["957ec398-9a5e-4f54-9090-37a06d57b96c"], "illustration_id": "8e53ce74-6e58-4655-b427-9721ad8d93e0", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": true, "story_spotlight": true, "edhrec_rank": 3297, "penny_rank": 13193, "preview": {"source": "Gavin Verhey", "source_uri": "https://twitter.com/GavinVerhey/status/1453765848083013633", "previewed_at": "2021-10-28"}, "prices": {"usd": "0.51", "usd_foil": "0.68", "usd_etched": null, "eur": "0.99", "eur_foil": "1.05", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=540832", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=By+Invitation+Only&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=By+Invitation+Only&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=By+Invitation+Only"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/252886?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=By+Invitation+Only&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/94292?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "2e19d68e-7554-4627-a316-beb1f75fa494", "oracle_id": "a151c45f-0b9e-41af-90b3-fafa12e3bbce", "multiverse_ids": [23134], "mtgo_id": 14361, "mtgo_foil_id": 14362, "tcgplayer_id": 7447, "cardmarket_id": 3442, "name": "Canopy Surge", "lang": "en", "released_at": "2000-10-02", "uri": "https://api.scryfall.com/cards/2e19d68e-7554-4627-a316-beb1f75fa494", "scryfall_uri": "https://scryfall.com/card/inv/184/canopy-surge?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/2/e/2e19d68e-7554-4627-a316-beb1f75fa494.jpg?1562904391", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/e/2e19d68e-7554-4627-a316-beb1f75fa494.jpg?1562904391", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/2/e/2e19d68e-7554-4627-a316-beb1f75fa494.jpg?1562904391", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/2/e/2e19d68e-7554-4627-a316-beb1f75fa494.png?1562904391", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/e/2e19d68e-7554-4627-a316-beb1f75fa494.jpg?1562904391", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/2/e/2e19d68e-7554-4627-a316-beb1f75fa494.jpg?1562904391"}, "mana_cost": "{1}{G}", "cmc": 2.0, "type_line": "Sorcery", "oracle_text": "Kicker {2} (You may pay an additional {2} as you cast this spell.)\nCanopy Surge deals 1 damage to each creature with flying and each player. If this spell was kicked, it deals 4 damage to each creature with flying and each player instead.", "colors": ["G"], "color_identity": ["G"], "keywords": ["Kicker"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "b9ae5e02-7726-47ca-b5e4-5ec402b41cd1", "set": "inv", "set_name": "Invasion", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/b9ae5e02-7726-47ca-b5e4-5ec402b41cd1", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ainv&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/inv?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/2e19d68e-7554-4627-a316-beb1f75fa494/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aa151c45f-0b9e-41af-90b3-fafa12e3bbce&unique=prints", "collector_number": "184", "digital": false, "rarity": "uncommon", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Matt Cavotta", "artist_ids": ["2e6a0611-9411-4ba4-98e3-c0e18cbf9f83"], "illustration_id": "aaa69b02-f0f8-4b90-b9cc-87ade15312e5", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 12745, "prices": {"usd": "0.20", "usd_foil": "1.93", "usd_etched": null, "eur": "0.20", "eur_foil": "0.50", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=23134", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Canopy+Surge&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Canopy+Surge&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Canopy+Surge"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/7447?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Canopy+Surge&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/14361?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "024ae668-a1ae-4020-89c8-acbd8bd0a691", "oracle_id": "b0479ca4-e925-4aa7-a4fa-f7e01f899ac5", "multiverse_ids": [6050], "mtgo_id": 10499, "mtgo_foil_id": 10500, "tcgplayer_id": 4300, "cardmarket_id": 9231, "name": "Cataclysm", "lang": "en", "released_at": "1998-06-15", "uri": "https://api.scryfall.com/cards/024ae668-a1ae-4020-89c8-acbd8bd0a691", "scryfall_uri": "https://scryfall.com/card/exo/3/cataclysm?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/0/2/024ae668-a1ae-4020-89c8-acbd8bd0a691.jpg?1593863070", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/2/024ae668-a1ae-4020-89c8-acbd8bd0a691.jpg?1593863070", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/0/2/024ae668-a1ae-4020-89c8-acbd8bd0a691.jpg?1593863070", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/0/2/024ae668-a1ae-4020-89c8-acbd8bd0a691.png?1593863070", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/2/024ae668-a1ae-4020-89c8-acbd8bd0a691.jpg?1593863070", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/0/2/024ae668-a1ae-4020-89c8-acbd8bd0a691.jpg?1593863070"}, "mana_cost": "{2}{W}{W}", "cmc": 4.0, "type_line": "Sorcery", "oracle_text": "Each player chooses from among the permanents they control an artifact, a creature, an enchantment, and a land, then sacrifices the rest.", "colors": ["W"], "color_identity": ["W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "1401f7af-2e71-476d-9813-991084ed0bb9", "set": "exo", "set_name": "Exodus", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/1401f7af-2e71-476d-9813-991084ed0bb9", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aexo&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/exo?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/024ae668-a1ae-4020-89c8-acbd8bd0a691/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ab0479ca4-e925-4aa7-a4fa-f7e01f899ac5&unique=prints", "collector_number": "3", "digital": false, "rarity": "rare", "flavor_text": "The *Weatherlight* dragged the *Predator* behind it, the cradle hauling the casket.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Jim Nelson", "artist_ids": ["aa9f64d1-29e1-4c82-877e-44c18183f40b"], "illustration_id": "85999179-35f3-465f-a3b7-d0c4dec63c59", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 6815, "prices": {"usd": "8.19", "usd_foil": null, "usd_etched": null, "eur": "6.04", "eur_foil": null, "tix": "1.39"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=6050", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Cataclysm&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Cataclysm&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Cataclysm"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/4300?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Cataclysm&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/10499?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "3ed0d87b-1ce8-452b-9558-fa1923407f16", "oracle_id": "b0479ca4-e925-4aa7-a4fa-f7e01f899ac5", "multiverse_ids": [386286], "mtgo_id": 53939, "mtgo_foil_id": 53940, "tcgplayer_id": 91638, "cardmarket_id": 268649, "name": "Cataclysm", "lang": "en", "released_at": "2014-08-22", "uri": "https://api.scryfall.com/cards/3ed0d87b-1ce8-452b-9558-fa1923407f16", "scryfall_uri": "https://scryfall.com/card/v14/3/cataclysm?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/3/e/3ed0d87b-1ce8-452b-9558-fa1923407f16.jpg?1559618030", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/e/3ed0d87b-1ce8-452b-9558-fa1923407f16.jpg?1559618030", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/3/e/3ed0d87b-1ce8-452b-9558-fa1923407f16.jpg?1559618030", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/3/e/3ed0d87b-1ce8-452b-9558-fa1923407f16.png?1559618030", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/e/3ed0d87b-1ce8-452b-9558-fa1923407f16.jpg?1559618030", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/3/e/3ed0d87b-1ce8-452b-9558-fa1923407f16.jpg?1559618030"}, "mana_cost": "{2}{W}{W}", "cmc": 4.0, "type_line": "Sorcery", "oracle_text": "Each player chooses from among the permanents they control an artifact, a creature, an enchantment, and a land, then sacrifices the rest.", "colors": ["W"], "color_identity": ["W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": false, "finishes": ["foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "21dd7ae2-1196-46d4-9acf-4ff9d82797be", "set": "v14", "set_name": "From the Vault: Annihilation", "set_type": "from_the_vault", "set_uri": "https://api.scryfall.com/sets/21dd7ae2-1196-46d4-9acf-4ff9d82797be", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Av14&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/v14?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/3ed0d87b-1ce8-452b-9558-fa1923407f16/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ab0479ca4-e925-4aa7-a4fa-f7e01f899ac5&unique=prints", "collector_number": "3", "digital": false, "rarity": "mythic", "flavor_text": "\"Keep with you only this much: your mount, your blade, and your wits. The rest you can find, build, or take.\"\n\u2014Horse clans' wisdom", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Eric Deschamps", "artist_ids": ["37970e22-9cee-44c1-af44-5ee27cf26b76"], "illustration_id": "aef586eb-060c-4a37-b7f6-85a483ba0065", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "edhrec_rank": 6815, "prices": {"usd": null, "usd_foil": "6.40", "usd_etched": null, "eur": null, "eur_foil": "5.39", "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=386286", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Cataclysm&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Cataclysm&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Cataclysm"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/91638?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Cataclysm&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/53939?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "294d21dc-5c76-4449-936f-9b7541d37c86", "oracle_id": "ed68160e-5e3d-44f2-ac7a-3749fda10119", "multiverse_ids": [5637], "mtgo_id": 12283, "mtgo_foil_id": 12284, "tcgplayer_id": 6812, "cardmarket_id": 10213, "name": "Catastrophe", "lang": "en", "released_at": "1998-10-12", "uri": "https://api.scryfall.com/cards/294d21dc-5c76-4449-936f-9b7541d37c86", "scryfall_uri": "https://scryfall.com/card/usg/6/catastrophe?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/2/9/294d21dc-5c76-4449-936f-9b7541d37c86.jpg?1562903769", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/9/294d21dc-5c76-4449-936f-9b7541d37c86.jpg?1562903769", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/2/9/294d21dc-5c76-4449-936f-9b7541d37c86.jpg?1562903769", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/2/9/294d21dc-5c76-4449-936f-9b7541d37c86.png?1562903769", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/9/294d21dc-5c76-4449-936f-9b7541d37c86.jpg?1562903769", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/2/9/294d21dc-5c76-4449-936f-9b7541d37c86.jpg?1562903769"}, "mana_cost": "{4}{W}{W}", "cmc": 6.0, "type_line": "Sorcery", "oracle_text": "Destroy all lands or all creatures. Creatures destroyed this way can't be regenerated.", "colors": ["W"], "color_identity": ["W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "c330df40-51db-4caf-bde6-48df6c181001", "set": "usg", "set_name": "Urza's Saga", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/c330df40-51db-4caf-bde6-48df6c181001", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ausg&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/usg?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/294d21dc-5c76-4449-936f-9b7541d37c86/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aed68160e-5e3d-44f2-ac7a-3749fda10119&unique=prints", "collector_number": "6", "digital": false, "rarity": "rare", "flavor_text": "Radiant's eyes flashed. \"Go, then,\" the angel spat at Serra, \"and leave this world to those who truly care.\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Andrew Robinson", "artist_ids": ["cb577db7-7f47-4f78-8682-6eaef8a77bd1"], "illustration_id": "c291fe5b-2461-4b00-86ca-b8e8b9fb73f8", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 7334, "prices": {"usd": "7.57", "usd_foil": null, "usd_etched": null, "eur": "4.49", "eur_foil": null, "tix": "0.44"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=5637", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Catastrophe&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Catastrophe&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Catastrophe"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/6812?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Catastrophe&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/12283?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "440d9d26-f304-467d-af79-914cc65f082e", "oracle_id": "7d937265-02f5-4f2c-9fef-c5930e13b3be", "multiverse_ids": [19725], "mtgo_id": 13617, "mtgo_foil_id": 13618, "tcgplayer_id": 6461, "cardmarket_id": 11553, "name": "Cave-In", "lang": "en", "released_at": "1999-10-04", "uri": "https://api.scryfall.com/cards/440d9d26-f304-467d-af79-914cc65f082e", "scryfall_uri": "https://scryfall.com/card/mmq/180/cave-in?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/4/4/440d9d26-f304-467d-af79-914cc65f082e.jpg?1562380418", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/4/440d9d26-f304-467d-af79-914cc65f082e.jpg?1562380418", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/4/4/440d9d26-f304-467d-af79-914cc65f082e.jpg?1562380418", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/4/4/440d9d26-f304-467d-af79-914cc65f082e.png?1562380418", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/4/440d9d26-f304-467d-af79-914cc65f082e.jpg?1562380418", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/4/4/440d9d26-f304-467d-af79-914cc65f082e.jpg?1562380418"}, "mana_cost": "{3}{R}{R}", "cmc": 5.0, "type_line": "Sorcery", "oracle_text": "You may exile a red card from your hand rather than pay this spell's mana cost.\nCave-In deals 2 damage to each creature and each player.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "385e11a4-492b-4d07-b4a6-a1409ef829b8", "set": "mmq", "set_name": "Mercadian Masques", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/385e11a4-492b-4d07-b4a6-a1409ef829b8", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ammq&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/mmq?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/440d9d26-f304-467d-af79-914cc65f082e/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A7d937265-02f5-4f2c-9fef-c5930e13b3be&unique=prints", "collector_number": "180", "digital": false, "rarity": "rare", "flavor_text": "One fleet was gone; others were poised.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Mark Tedin", "artist_ids": ["9ee9a9cc-c09e-486f-918b-69f80cbc4188"], "illustration_id": "74c8c4bb-b53a-45db-9958-027195a5ef5d", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 12173, "prices": {"usd": "0.83", "usd_foil": "38.99", "usd_etched": null, "eur": "0.50", "eur_foil": "1.05", "tix": "1.66"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=19725", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Cave-In&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Cave-In&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Cave-In"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/6461?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Cave-In&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/13617?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "5fd29cd7-9950-49c0-9e71-d6b0f944292c", "oracle_id": "d18c40cd-0f38-498b-8882-10381a831751", "multiverse_ids": [540448], "mtgo_id": 93792, "tcgplayer_id": 248581, "cardmarket_id": 575351, "name": "Celestial Judgment", "lang": "en", "released_at": "2021-09-24", "uri": "https://api.scryfall.com/cards/5fd29cd7-9950-49c0-9e71-d6b0f944292c", "scryfall_uri": "https://scryfall.com/card/mic/5/celestial-judgment?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/5/f/5fd29cd7-9950-49c0-9e71-d6b0f944292c.jpg?1637627823", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/f/5fd29cd7-9950-49c0-9e71-d6b0f944292c.jpg?1637627823", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/5/f/5fd29cd7-9950-49c0-9e71-d6b0f944292c.jpg?1637627823", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/5/f/5fd29cd7-9950-49c0-9e71-d6b0f944292c.png?1637627823", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/f/5fd29cd7-9950-49c0-9e71-d6b0f944292c.jpg?1637627823", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/5/f/5fd29cd7-9950-49c0-9e71-d6b0f944292c.jpg?1637627823"}, "mana_cost": "{4}{W}{W}", "cmc": 6.0, "type_line": "Sorcery", "oracle_text": "For each different power among creatures on the battlefield, choose a creature with that power. Destroy each creature not chosen this way.", "colors": ["W"], "color_identity": ["W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "7f9a4deb-715e-47d2-afac-3843ef92f39b", "set": "mic", "set_name": "Midnight Hunt Commander", "set_type": "commander", "set_uri": "https://api.scryfall.com/sets/7f9a4deb-715e-47d2-afac-3843ef92f39b", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Amic&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/mic?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/5fd29cd7-9950-49c0-9e71-d6b0f944292c/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ad18c40cd-0f38-498b-8882-10381a831751&unique=prints", "collector_number": "5", "digital": false, "rarity": "rare", "flavor_text": "\"I was going to suggest silver, but a beam of pure angelic fury works even better.\"\n\u2014Rem Karolus, Fiendslayer", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Alexander Mokhov", "artist_ids": ["3a6a9d37-e62c-44bd-90f2-f5126324e3f0"], "illustration_id": "89412b8e-fa58-44da-9fac-6560e0f992a4", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "edhrec_rank": 8727, "prices": {"usd": "0.07", "usd_foil": null, "usd_etched": null, "eur": "0.15", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=540448", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Celestial+Judgment&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Celestial+Judgment&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Celestial+Judgment"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/248581?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Celestial+Judgment&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/93792?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "77161159-ee2c-485d-8674-d8590ccc62e1", "oracle_id": "8143642e-ce93-47f1-a601-3a4f5731e1d7", "multiverse_ids": [215073], "mtgo_id": 38413, "mtgo_foil_id": 38414, "tcgplayer_id": 36470, "cardmarket_id": 242788, "name": "Cerebral Eruption", "lang": "en", "released_at": "2010-10-01", "uri": "https://api.scryfall.com/cards/77161159-ee2c-485d-8674-d8590ccc62e1", "scryfall_uri": "https://scryfall.com/card/som/86/cerebral-eruption?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/7/7/77161159-ee2c-485d-8674-d8590ccc62e1.jpg?1562819165", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/7/77161159-ee2c-485d-8674-d8590ccc62e1.jpg?1562819165", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/7/7/77161159-ee2c-485d-8674-d8590ccc62e1.jpg?1562819165", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/7/7/77161159-ee2c-485d-8674-d8590ccc62e1.png?1562819165", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/7/77161159-ee2c-485d-8674-d8590ccc62e1.jpg?1562819165", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/7/7/77161159-ee2c-485d-8674-d8590ccc62e1.jpg?1562819165"}, "mana_cost": "{2}{R}{R}", "cmc": 4.0, "type_line": "Sorcery", "oracle_text": "Target opponent reveals the top card of their library. Cerebral Eruption deals damage equal to the revealed card's mana value to that player and each creature that player controls. If a land card is revealed this way, return Cerebral Eruption to its owner's hand.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "8f403072-9b22-4e69-8d59-22dc4c97fd8d", "set": "som", "set_name": "Scars of Mirrodin", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/8f403072-9b22-4e69-8d59-22dc4c97fd8d", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Asom&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/som?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/77161159-ee2c-485d-8674-d8590ccc62e1/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A8143642e-ce93-47f1-a601-3a4f5731e1d7&unique=prints", "collector_number": "86", "digital": false, "rarity": "rare", "watermark": "mirran", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Kev Walker", "artist_ids": ["f366a0ee-a0cd-466d-ba6a-90058c7a31a6"], "illustration_id": "6b8de08f-f0a4-4290-85f1-453216389665", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 15271, "prices": {"usd": "0.10", "usd_foil": "0.24", "usd_etched": null, "eur": "0.05", "eur_foil": "0.40", "tix": "0.01"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=215073", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Cerebral+Eruption&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Cerebral+Eruption&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Cerebral+Eruption"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/36470?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Cerebral+Eruption&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/38413?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "614b9df9-c959-4bdb-91c0-75ae60b724e4", "oracle_id": "086b2564-9114-4ba2-94fd-b490f98f38a7", "multiverse_ids": [201573], "mtgo_id": 35637, "mtgo_foil_id": 35638, "tcgplayer_id": 34348, "cardmarket_id": 22139, "name": "Chain Reaction", "lang": "en", "released_at": "2010-02-05", "uri": "https://api.scryfall.com/cards/614b9df9-c959-4bdb-91c0-75ae60b724e4", "scryfall_uri": "https://scryfall.com/card/wwk/74/chain-reaction?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/6/1/614b9df9-c959-4bdb-91c0-75ae60b724e4.jpg?1567754665", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/1/614b9df9-c959-4bdb-91c0-75ae60b724e4.jpg?1567754665", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/6/1/614b9df9-c959-4bdb-91c0-75ae60b724e4.jpg?1567754665", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/6/1/614b9df9-c959-4bdb-91c0-75ae60b724e4.png?1567754665", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/1/614b9df9-c959-4bdb-91c0-75ae60b724e4.jpg?1567754665", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/6/1/614b9df9-c959-4bdb-91c0-75ae60b724e4.jpg?1567754665"}, "mana_cost": "{2}{R}{R}", "cmc": 4.0, "type_line": "Sorcery", "oracle_text": "Chain Reaction deals X damage to each creature, where X is the number of creatures on the battlefield.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "2f248ce6-c2a5-4c6f-a2be-0c593fbe173c", "set": "wwk", "set_name": "Worldwake", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/2f248ce6-c2a5-4c6f-a2be-0c593fbe173c", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Awwk&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/wwk?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/614b9df9-c959-4bdb-91c0-75ae60b724e4/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A086b2564-9114-4ba2-94fd-b490f98f38a7&unique=prints", "collector_number": "74", "digital": false, "rarity": "rare", "flavor_text": "\"We train for the improbable, like lightning striking the same place twice, or striking everywhere at once.\"\n\u2014Nundari, Sea Gate militia captain", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Trevor Claxton", "artist_ids": ["35d39e75-5d6c-4318-9136-38cdfff34a05"], "illustration_id": "7294481b-2f64-4dfd-9451-480726b64592", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 575, "penny_rank": 7212, "prices": {"usd": "0.43", "usd_foil": "11.05", "usd_etched": null, "eur": "0.10", "eur_foil": "2.60", "tix": "0.01"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=201573", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Chain+Reaction&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Chain+Reaction&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Chain+Reaction"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/34348?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Chain+Reaction&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/35637?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "5f13b6a7-fa62-4d94-a56c-f2e64c8c1666", "oracle_id": "9f84fc91-8647-4cc8-9b57-d23a83f85ab1", "multiverse_ids": [469848], "mtgo_id": 73507, "arena_id": 70079, "tcgplayer_id": 192766, "cardmarket_id": 379215, "name": "Chandra's Flame Wave", "lang": "en", "released_at": "2019-07-12", "uri": "https://api.scryfall.com/cards/5f13b6a7-fa62-4d94-a56c-f2e64c8c1666", "scryfall_uri": "https://scryfall.com/card/m20/295/chandras-flame-wave?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/5/f/5f13b6a7-fa62-4d94-a56c-f2e64c8c1666.jpg?1592518162", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/f/5f13b6a7-fa62-4d94-a56c-f2e64c8c1666.jpg?1592518162", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/5/f/5f13b6a7-fa62-4d94-a56c-f2e64c8c1666.jpg?1592518162", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/5/f/5f13b6a7-fa62-4d94-a56c-f2e64c8c1666.png?1592518162", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/f/5f13b6a7-fa62-4d94-a56c-f2e64c8c1666.jpg?1592518162", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/5/f/5f13b6a7-fa62-4d94-a56c-f2e64c8c1666.jpg?1592518162"}, "mana_cost": "{3}{R}{R}", "cmc": 5.0, "type_line": "Sorcery", "oracle_text": "Chandra's Flame Wave deals 2 damage to target player and each creature that player controls. Search your library and/or graveyard for a card named Chandra, Flame's Fury, reveal it, and put it into your hand. If you search your library this way, shuffle.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "all_parts": [{"object": "related_card", "id": "5d1c6c4b-62ab-4d44-a2d7-64b44d163606", "component": "combo_piece", "name": "Chandra, Flame's Fury", "type_line": "Legendary Planeswalker \u2014 Chandra", "uri": "https://api.scryfall.com/cards/5d1c6c4b-62ab-4d44-a2d7-64b44d163606"}, {"object": "related_card", "id": "5f13b6a7-fa62-4d94-a56c-f2e64c8c1666", "component": "combo_piece", "name": "Chandra's Flame Wave", "type_line": "Sorcery", "uri": "https://api.scryfall.com/cards/5f13b6a7-fa62-4d94-a56c-f2e64c8c1666"}], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "4a787360-9767-4f44-80b1-2405dc5e39c7", "set": "m20", "set_name": "Core Set 2020", "set_type": "core", "set_uri": "https://api.scryfall.com/sets/4a787360-9767-4f44-80b1-2405dc5e39c7", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Am20&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/m20?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/5f13b6a7-fa62-4d94-a56c-f2e64c8c1666/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A9f84fc91-8647-4cc8-9b57-d23a83f85ab1&unique=prints", "collector_number": "295", "digital": false, "rarity": "rare", "flavor_text": "\"It's high tide.\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Paul Scott Canavan", "artist_ids": ["c19bfb77-5099-4f7c-8585-6eaf367712c9"], "illustration_id": "e15bffa6-cd68-4192-83bc-7502450f0009", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "promo_types": ["planeswalkerdeck"], "edhrec_rank": 12527, "prices": {"usd": "0.25", "usd_foil": null, "usd_etched": null, "eur": "0.49", "eur_foil": null, "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=469848", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Chandra%27s+Flame+Wave&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Chandra%27s+Flame+Wave&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Chandra%27s+Flame+Wave"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/192766?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Chandra%27s+Flame+Wave&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/73507?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "e761acf6-6618-44cc-8f65-1d7ad7e520fe", "oracle_id": "eb16f188-fe12-4a13-9947-d43cd6ce270c", "multiverse_ids": [], "tcgplayer_id": 79346, "cardmarket_id": 263000, "name": "Chandra's Fury", "lang": "en", "released_at": "2013-03-22", "uri": "https://api.scryfall.com/cards/e761acf6-6618-44cc-8f65-1d7ad7e520fe", "scryfall_uri": "https://scryfall.com/card/purl/5/chandras-fury?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/e/7/e761acf6-6618-44cc-8f65-1d7ad7e520fe.jpg?1561758344", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/7/e761acf6-6618-44cc-8f65-1d7ad7e520fe.jpg?1561758344", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/e/7/e761acf6-6618-44cc-8f65-1d7ad7e520fe.jpg?1561758344", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/e/7/e761acf6-6618-44cc-8f65-1d7ad7e520fe.png?1561758344", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/7/e761acf6-6618-44cc-8f65-1d7ad7e520fe.jpg?1561758344", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/e/7/e761acf6-6618-44cc-8f65-1d7ad7e520fe.jpg?1561758344"}, "mana_cost": "{4}{R}", "cmc": 5.0, "type_line": "Instant", "oracle_text": "Chandra's Fury deals 4 damage to target player or planeswalker and 1 damage to each creature that player or that planeswalker's controller controls.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": true, "nonfoil": false, "finishes": ["foil"], "oversized": false, "promo": true, "reprint": true, "variation": false, "set_id": "a9fbcd3c-290f-4fa1-b227-dbab037c0c91", "set": "purl", "set_name": "URL/Convention Promos", "set_type": "promo", "set_uri": "https://api.scryfall.com/sets/a9fbcd3c-290f-4fa1-b227-dbab037c0c91", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Apurl&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/purl?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/e761acf6-6618-44cc-8f65-1d7ad7e520fe/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aeb16f188-fe12-4a13-9947-d43cd6ce270c&unique=prints", "collector_number": "5", "digital": false, "rarity": "rare", "watermark": "wotc", "flavor_text": "www.MagicTheGathering.com", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Volkan Ba\u01f5a", "artist_ids": ["93bec3c0-0260-4d31-8064-5d01efb4153f"], "illustration_id": "158eab18-f4cf-4946-b5ab-8d6400848aba", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "promo_types": ["convention"], "edhrec_rank": 12206, "penny_rank": 8060, "prices": {"usd": null, "usd_foil": "1.55", "usd_etched": null, "eur": null, "eur_foil": "1.30", "tix": null}, "related_uris": {"tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Chandra%27s+Fury&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Chandra%27s+Fury&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Chandra%27s+Fury"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/79346?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Chandra%27s+Fury&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Chandra%27s+Fury&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "7d4c90de-49aa-43ed-a18a-f7f96268e5eb", "oracle_id": "f61680da-606e-4d16-b0a0-361aa5210901", "multiverse_ids": [398416], "mtgo_id": 57988, "mtgo_foil_id": 57989, "tcgplayer_id": 100009, "cardmarket_id": 283352, "name": "Chandra's Ignition", "lang": "en", "released_at": "2015-07-17", "uri": "https://api.scryfall.com/cards/7d4c90de-49aa-43ed-a18a-f7f96268e5eb", "scryfall_uri": "https://scryfall.com/card/ori/137/chandras-ignition?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/7/d/7d4c90de-49aa-43ed-a18a-f7f96268e5eb.jpg?1562027623", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/d/7d4c90de-49aa-43ed-a18a-f7f96268e5eb.jpg?1562027623", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/7/d/7d4c90de-49aa-43ed-a18a-f7f96268e5eb.jpg?1562027623", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/7/d/7d4c90de-49aa-43ed-a18a-f7f96268e5eb.png?1562027623", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/d/7d4c90de-49aa-43ed-a18a-f7f96268e5eb.jpg?1562027623", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/7/d/7d4c90de-49aa-43ed-a18a-f7f96268e5eb.jpg?1562027623"}, "mana_cost": "{3}{R}{R}", "cmc": 5.0, "type_line": "Sorcery", "oracle_text": "Target creature you control deals damage equal to its power to each other creature and each opponent.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "0eeb9a9a-20ac-404d-b55f-aeb7a43a7f62", "set": "ori", "set_name": "Magic Origins", "set_type": "core", "set_uri": "https://api.scryfall.com/sets/0eeb9a9a-20ac-404d-b55f-aeb7a43a7f62", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aori&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ori?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/7d4c90de-49aa-43ed-a18a-f7f96268e5eb/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Af61680da-606e-4d16-b0a0-361aa5210901&unique=prints", "collector_number": "137", "digital": false, "rarity": "rare", "flavor_text": "In the moment before her execution, she realized what it meant to be a pyromancer, to be alive, to be Chandra.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Eric Deschamps", "artist_ids": ["37970e22-9cee-44c1-af44-5ee27cf26b76"], "illustration_id": "4ed2d7fe-de18-498e-ad5f-ccc3ef4da4bd", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 797, "penny_rank": 8895, "prices": {"usd": "7.09", "usd_foil": "11.24", "usd_etched": null, "eur": "6.84", "eur_foil": "16.48", "tix": "0.01"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=398416", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Chandra%27s+Ignition&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Chandra%27s+Ignition&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Chandra%27s+Ignition"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/100009?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Chandra%27s+Ignition&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/57988?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "5516cf97-805f-4a21-a4c6-2d6e55865336", "oracle_id": "d7b49bee-2cb0-48e1-91c1-1e150a0da6ed", "multiverse_ids": [491776], "mtgo_id": 83245, "arena_id": 73337, "tcgplayer_id": 222044, "cardmarket_id": 496050, "name": "Cinderclasm", "lang": "en", "released_at": "2020-09-25", "uri": "https://api.scryfall.com/cards/5516cf97-805f-4a21-a4c6-2d6e55865336", "scryfall_uri": "https://scryfall.com/card/znr/136/cinderclasm?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/5/5/5516cf97-805f-4a21-a4c6-2d6e55865336.jpg?1604196918", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/5/5516cf97-805f-4a21-a4c6-2d6e55865336.jpg?1604196918", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/5/5/5516cf97-805f-4a21-a4c6-2d6e55865336.jpg?1604196918", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/5/5/5516cf97-805f-4a21-a4c6-2d6e55865336.png?1604196918", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/5/5516cf97-805f-4a21-a4c6-2d6e55865336.jpg?1604196918", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/5/5/5516cf97-805f-4a21-a4c6-2d6e55865336.jpg?1604196918"}, "mana_cost": "{1}{R}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Kicker {R} (You may pay an additional {R} as you cast this spell.)\nCinderclasm deals 1 damage to each creature. If it was kicked, it deals 2 damage to each creature instead.", "colors": ["R"], "color_identity": ["R"], "keywords": ["Kicker"], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "f4e01fa7-b254-42dd-849f-69b58027a8c4", "set": "znr", "set_name": "Zendikar Rising", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/f4e01fa7-b254-42dd-849f-69b58027a8c4", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aznr&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/znr?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/5516cf97-805f-4a21-a4c6-2d6e55865336/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ad7b49bee-2cb0-48e1-91c1-1e150a0da6ed&unique=prints", "collector_number": "136", "digital": false, "rarity": "uncommon", "flavor_text": "Every inferno begins with a spark.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Campbell White", "artist_ids": ["d281eab4-463a-4ba8-9039-8943737960a0"], "illustration_id": "238a8cd2-11ce-42ad-ae9c-0af1f38ec7d3", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 7822, "penny_rank": 6871, "preview": {"source": "Shahar Shenhar", "source_uri": "https://twitter.com/shaharshenhar/status/1301941012890173441", "previewed_at": "2020-09-04"}, "prices": {"usd": "0.10", "usd_foil": "0.19", "usd_etched": null, "eur": "0.03", "eur_foil": "0.22", "tix": "0.01"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=491776", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Cinderclasm&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Cinderclasm&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Cinderclasm"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/222044?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Cinderclasm&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/83245?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "a995200f-1e9d-4ff3-9e04-4a4309e0e09c", "oracle_id": "3ac01298-e45b-4ea0-8379-2074279716a4", "multiverse_ids": [452754], "mtgo_id": 69381, "arena_id": 68465, "tcgplayer_id": 176829, "cardmarket_id": 364206, "name": "Citywide Bust", "lang": "en", "released_at": "2018-10-05", "uri": "https://api.scryfall.com/cards/a995200f-1e9d-4ff3-9e04-4a4309e0e09c", "scryfall_uri": "https://scryfall.com/card/grn/4/citywide-bust?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/a/9/a995200f-1e9d-4ff3-9e04-4a4309e0e09c.jpg?1572892490", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/9/a995200f-1e9d-4ff3-9e04-4a4309e0e09c.jpg?1572892490", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/a/9/a995200f-1e9d-4ff3-9e04-4a4309e0e09c.jpg?1572892490", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/a/9/a995200f-1e9d-4ff3-9e04-4a4309e0e09c.png?1572892490", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/9/a995200f-1e9d-4ff3-9e04-4a4309e0e09c.jpg?1572892490", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/a/9/a995200f-1e9d-4ff3-9e04-4a4309e0e09c.jpg?1572892490"}, "mana_cost": "{1}{W}{W}", "cmc": 3.0, "type_line": "Sorcery", "oracle_text": "Destroy all creatures with toughness 4 or greater.", "colors": ["W"], "color_identity": ["W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "597c6d4a-8212-4903-a6af-12c4ae9e13f0", "set": "grn", "set_name": "Guilds of Ravnica", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/597c6d4a-8212-4903-a6af-12c4ae9e13f0", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Agrn&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/grn?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/a995200f-1e9d-4ff3-9e04-4a4309e0e09c/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A3ac01298-e45b-4ea0-8379-2074279716a4&unique=prints", "collector_number": "4", "digital": false, "rarity": "rare", "flavor_text": "\"Oh, you fellas are going to love the lockup. Excellent gruel. Very low ceilings.\"\n\u2014Libuse, Boros sergeant", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Victor Adame Minguez", "artist_ids": ["bd8f7368-5b10-4554-b6b8-d052c6aca89f"], "illustration_id": "db9d112f-23dd-4297-a9ea-a75f1b9a6f59", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 3390, "penny_rank": 9374, "prices": {"usd": "0.18", "usd_foil": "0.48", "usd_etched": null, "eur": "0.09", "eur_foil": "0.24", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=452754", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Citywide+Bust&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Citywide+Bust&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Citywide+Bust"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/176829?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Citywide+Bust&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/69381?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "b94cd33f-40b6-4b11-97a4-8676ef27631e", "oracle_id": "4ef6ec4a-bbd2-487f-98c2-c0e78aebb550", "multiverse_ids": [43541], "mtgo_id": 18696, "mtgo_foil_id": 18697, "tcgplayer_id": 10934, "cardmarket_id": 1107, "name": "Claws of Wirewood", "lang": "en", "released_at": "2003-05-26", "uri": "https://api.scryfall.com/cards/b94cd33f-40b6-4b11-97a4-8676ef27631e", "scryfall_uri": "https://scryfall.com/card/scg/114/claws-of-wirewood?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/b/9/b94cd33f-40b6-4b11-97a4-8676ef27631e.jpg?1562533774", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/9/b94cd33f-40b6-4b11-97a4-8676ef27631e.jpg?1562533774", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/b/9/b94cd33f-40b6-4b11-97a4-8676ef27631e.jpg?1562533774", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/b/9/b94cd33f-40b6-4b11-97a4-8676ef27631e.png?1562533774", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/9/b94cd33f-40b6-4b11-97a4-8676ef27631e.jpg?1562533774", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/b/9/b94cd33f-40b6-4b11-97a4-8676ef27631e.jpg?1562533774"}, "mana_cost": "{3}{G}", "cmc": 4.0, "type_line": "Sorcery", "oracle_text": "Claws of Wirewood deals 3 damage to each creature with flying and each player.\nCycling {2} ({2}, Discard this card: Draw a card.)", "colors": ["G"], "color_identity": ["G"], "keywords": ["Cycling"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "5133c3a1-1412-4ce6-a1f0-73b695966ded", "set": "scg", "set_name": "Scourge", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/5133c3a1-1412-4ce6-a1f0-73b695966ded", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ascg&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/scg?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/b94cd33f-40b6-4b11-97a4-8676ef27631e/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A4ef6ec4a-bbd2-487f-98c2-c0e78aebb550&unique=prints", "collector_number": "114", "digital": false, "rarity": "uncommon", "flavor_text": "They say the forest has eyes. They never mention its claws.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Tony Szczudlo", "artist_ids": ["1952c90b-a5a7-4328-9f7c-e11064f59daf"], "illustration_id": "2a151dab-b685-4503-a52e-5e4689a652a4", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 18520, "penny_rank": 8789, "prices": {"usd": "0.13", "usd_foil": "0.68", "usd_etched": null, "eur": "0.04", "eur_foil": "0.60", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=43541", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Claws+of+Wirewood&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Claws+of+Wirewood&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Claws+of+Wirewood"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/10934?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Claws+of+Wirewood&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/18696?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "2fbd611b-ac97-4516-bad7-cc9ee4ef74f7", "oracle_id": "a610c77c-fe31-4465-a1c1-392db4ce4ed1", "multiverse_ids": [1603], "name": "Cleanse", "lang": "en", "released_at": "1994-06-01", "uri": "https://api.scryfall.com/cards/2fbd611b-ac97-4516-bad7-cc9ee4ef74f7", "scryfall_uri": "https://scryfall.com/card/leg/5/cleanse?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/2/f/2fbd611b-ac97-4516-bad7-cc9ee4ef74f7.jpg?1591836785", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/f/2fbd611b-ac97-4516-bad7-cc9ee4ef74f7.jpg?1591836785", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/2/f/2fbd611b-ac97-4516-bad7-cc9ee4ef74f7.jpg?1591836785", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/2/f/2fbd611b-ac97-4516-bad7-cc9ee4ef74f7.png?1591836785", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/f/2fbd611b-ac97-4516-bad7-cc9ee4ef74f7.jpg?1591836785", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/2/f/2fbd611b-ac97-4516-bad7-cc9ee4ef74f7.jpg?1591836785"}, "mana_cost": "{2}{W}{W}", "cmc": 4.0, "type_line": "Sorcery", "oracle_text": "Destroy all black creatures.", "colors": ["W"], "color_identity": ["W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "banned", "pauper": "not_legal", "vintage": "banned", "penny": "not_legal", "commander": "banned", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": true, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "78c50b4b-b220-455b-a2d5-cee458fa56f3", "set": "leg", "set_name": "Legends", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/78c50b4b-b220-455b-a2d5-cee458fa56f3", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aleg&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/leg?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/2fbd611b-ac97-4516-bad7-cc9ee4ef74f7/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aa610c77c-fe31-4465-a1c1-392db4ce4ed1&unique=prints", "collector_number": "5", "digital": false, "rarity": "rare", "flavor_text": "The clouds broke and the sun's rays burst forth; each foul beast in its turn faltered, and was gone.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Phil Foglio", "artist_ids": ["3bfc0fd7-f6ce-4c3f-a755-aaafc84ac704"], "illustration_id": "a90c3094-3a93-4dec-b8cf-725c4e0fa658", "border_color": "black", "frame": "1993", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "penny_rank": 9629, "content_warning": true, "prices": {"usd": null, "usd_foil": null, "usd_etched": null, "eur": null, "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=1603"}}, {"object": "card", "id": "11f1b6cd-d89a-4468-a097-7a54efe22f2c", "oracle_id": "aff34f28-f707-4458-8af3-1bd5b13a6b10", "multiverse_ids": [519121], "mtgo_id": 89273, "tcgplayer_id": 236102, "cardmarket_id": 558501, "name": "Cleansing Nova", "lang": "en", "released_at": "2021-04-23", "uri": "https://api.scryfall.com/cards/11f1b6cd-d89a-4468-a097-7a54efe22f2c", "scryfall_uri": "https://scryfall.com/card/c21/86/cleansing-nova?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/1/1/11f1b6cd-d89a-4468-a097-7a54efe22f2c.jpg?1625192921", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/1/11f1b6cd-d89a-4468-a097-7a54efe22f2c.jpg?1625192921", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/1/1/11f1b6cd-d89a-4468-a097-7a54efe22f2c.jpg?1625192921", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/1/1/11f1b6cd-d89a-4468-a097-7a54efe22f2c.png?1625192921", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/1/11f1b6cd-d89a-4468-a097-7a54efe22f2c.jpg?1625192921", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/1/1/11f1b6cd-d89a-4468-a097-7a54efe22f2c.jpg?1625192921"}, "mana_cost": "{3}{W}{W}", "cmc": 5.0, "type_line": "Sorcery", "oracle_text": "Choose one \u2014\n\u2022 Destroy all creatures.\n\u2022 Destroy all artifacts and enchantments.", "colors": ["W"], "color_identity": ["W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "27bf6dbd-a9e1-4904-afa7-d28fc7745c4f", "set": "c21", "set_name": "Commander 2021", "set_type": "commander", "set_uri": "https://api.scryfall.com/sets/27bf6dbd-a9e1-4904-afa7-d28fc7745c4f", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ac21&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/c21?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/11f1b6cd-d89a-4468-a097-7a54efe22f2c/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aaff34f28-f707-4458-8af3-1bd5b13a6b10&unique=prints", "collector_number": "86", "digital": false, "rarity": "rare", "flavor_text": "In their final moments, the demons gazed upon grace in its purest form.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Marta Nael", "artist_ids": ["266ab861-ed64-4ba5-865c-f18758421cc3"], "illustration_id": "c5c10e77-6561-46ea-af32-e73eb34c6939", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "edhrec_rank": 415, "penny_rank": 2852, "prices": {"usd": "0.39", "usd_foil": null, "usd_etched": null, "eur": "0.21", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=519121", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Cleansing+Nova&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Cleansing+Nova&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Cleansing+Nova"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/236102?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Cleansing+Nova&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/89273?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "5be8eed7-c033-42cc-bd21-4512db7af66c", "oracle_id": "aff34f28-f707-4458-8af3-1bd5b13a6b10", "multiverse_ids": [447145], "mtgo_id": 68179, "arena_id": 67698, "tcgplayer_id": 169108, "cardmarket_id": 360022, "name": "Cleansing Nova", "lang": "en", "released_at": "2018-07-13", "uri": "https://api.scryfall.com/cards/5be8eed7-c033-42cc-bd21-4512db7af66c", "scryfall_uri": "https://scryfall.com/card/m19/9/cleansing-nova?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/5/b/5be8eed7-c033-42cc-bd21-4512db7af66c.jpg?1562302239", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/b/5be8eed7-c033-42cc-bd21-4512db7af66c.jpg?1562302239", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/5/b/5be8eed7-c033-42cc-bd21-4512db7af66c.jpg?1562302239", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/5/b/5be8eed7-c033-42cc-bd21-4512db7af66c.png?1562302239", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/b/5be8eed7-c033-42cc-bd21-4512db7af66c.jpg?1562302239", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/5/b/5be8eed7-c033-42cc-bd21-4512db7af66c.jpg?1562302239"}, "mana_cost": "{3}{W}{W}", "cmc": 5.0, "type_line": "Sorcery", "oracle_text": "Choose one \u2014\n\u2022 Destroy all creatures.\n\u2022 Destroy all artifacts and enchantments.", "colors": ["W"], "color_identity": ["W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "2f5f2509-56db-414d-9a7e-6e312ec3760c", "set": "m19", "set_name": "Core Set 2019", "set_type": "core", "set_uri": "https://api.scryfall.com/sets/2f5f2509-56db-414d-9a7e-6e312ec3760c", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Am19&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/m19?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/5be8eed7-c033-42cc-bd21-4512db7af66c/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aaff34f28-f707-4458-8af3-1bd5b13a6b10&unique=prints", "collector_number": "9", "digital": false, "rarity": "rare", "flavor_text": "In their final moments, the demons gazed upon grace in its purest form.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Noah Bradley", "artist_ids": ["81995d11-da98-4f8b-89bd-b88ca2ddb06b"], "illustration_id": "6ab56a7c-efb7-46b6-8e76-61ef81f0e5ea", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 415, "penny_rank": 2852, "prices": {"usd": "0.48", "usd_foil": "3.27", "usd_etched": null, "eur": "0.57", "eur_foil": "1.99", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=447145", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Cleansing+Nova&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Cleansing+Nova&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Cleansing+Nova"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/169108?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Cleansing+Nova&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/68179?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "7c71b2b8-f5ef-4885-9f8d-284fe335d184", "oracle_id": "1941239b-e131-4bde-b493-1c8c805b6a3c", "multiverse_ids": [563004], "tcgplayer_id": 273013, "cardmarket_id": 660269, "name": "Cloudkill", "lang": "en", "released_at": "2022-06-10", "uri": "https://api.scryfall.com/cards/7c71b2b8-f5ef-4885-9f8d-284fe335d184", "scryfall_uri": "https://scryfall.com/card/clb/121/cloudkill?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/7/c/7c71b2b8-f5ef-4885-9f8d-284fe335d184.jpg?1654365309", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/c/7c71b2b8-f5ef-4885-9f8d-284fe335d184.jpg?1654365309", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/7/c/7c71b2b8-f5ef-4885-9f8d-284fe335d184.jpg?1654365309", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/7/c/7c71b2b8-f5ef-4885-9f8d-284fe335d184.png?1654365309", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/c/7c71b2b8-f5ef-4885-9f8d-284fe335d184.jpg?1654365309", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/7/c/7c71b2b8-f5ef-4885-9f8d-284fe335d184.jpg?1654365309"}, "mana_cost": "{4}{B}{B}", "cmc": 6.0, "type_line": "Sorcery", "oracle_text": "All creatures get -X/-X until end of turn, where X is the greatest mana value of a commander you own on the battlefield or in the command zone.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "5e4c3fe8-fd57-4b20-ad56-c03790a16cea", "set": "clb", "set_name": "Commander Legends: Battle for Baldur's Gate", "set_type": "draft_innovation", "set_uri": "https://api.scryfall.com/sets/5e4c3fe8-fd57-4b20-ad56-c03790a16cea", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aclb&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/clb?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/7c71b2b8-f5ef-4885-9f8d-284fe335d184/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A1941239b-e131-4bde-b493-1c8c805b6a3c&unique=prints", "collector_number": "121", "digital": false, "rarity": "uncommon", "flavor_text": "As the acrid fumes drifted through the Lower City, even the vermin ceased to stir.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "David Szabo", "artist_ids": ["4b065a8b-3d15-45cf-bd6f-f3736df6292b"], "illustration_id": "2bd01b7d-1b4a-4742-999f-a3e665f957d3", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 14734, "preview": {"source": "PlayEDH", "source_uri": "https://www.playedh.com/articles/preview-clb", "previewed_at": "2022-05-24"}, "prices": {"usd": "0.04", "usd_foil": "0.12", "usd_etched": null, "eur": "0.11", "eur_foil": "0.18", "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=563004", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Cloudkill&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Cloudkill&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Cloudkill"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/273013?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Cloudkill&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Cloudkill&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "49618217-1bbb-498a-a6f0-f269ce7166a6", "oracle_id": "40cbf2c0-041a-44df-a775-580012caab67", "multiverse_ids": [553916], "tcgplayer_id": 263001, "cardmarket_id": 608611, "name": "Collision of Realms", "lang": "en", "released_at": "2022-02-18", "uri": "https://api.scryfall.com/cards/49618217-1bbb-498a-a6f0-f269ce7166a6", "scryfall_uri": "https://scryfall.com/card/nec/19/collision-of-realms?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/4/9/49618217-1bbb-498a-a6f0-f269ce7166a6.jpg?1651655330", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/9/49618217-1bbb-498a-a6f0-f269ce7166a6.jpg?1651655330", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/4/9/49618217-1bbb-498a-a6f0-f269ce7166a6.jpg?1651655330", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/4/9/49618217-1bbb-498a-a6f0-f269ce7166a6.png?1651655330", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/9/49618217-1bbb-498a-a6f0-f269ce7166a6.jpg?1651655330", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/4/9/49618217-1bbb-498a-a6f0-f269ce7166a6.jpg?1651655330"}, "mana_cost": "{6}{R}", "cmc": 7.0, "type_line": "Sorcery", "oracle_text": "Each player shuffles all creatures they own into their library. Each player who shuffled a nontoken creature into their library this way reveals cards from the top of their library until they reveal a creature card, then puts that card onto the battlefield and the rest on the bottom of their library in a random order.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "5b4d929d-bdf9-4bbf-858e-e248f53325ad", "set": "nec", "set_name": "Neon Dynasty Commander", "set_type": "commander", "set_uri": "https://api.scryfall.com/sets/5b4d929d-bdf9-4bbf-858e-e248f53325ad", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Anec&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/nec?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/49618217-1bbb-498a-a6f0-f269ce7166a6/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A40cbf2c0-041a-44df-a775-580012caab67&unique=prints", "collector_number": "19", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Piotr Dura", "artist_ids": ["aff176e8-1d15-432e-ad1d-207a474decba"], "illustration_id": "c8b23fdf-9eb8-456e-8890-c9f3ba97d88e", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "edhrec_rank": 11369, "prices": {"usd": "0.15", "usd_foil": null, "usd_etched": null, "eur": "0.17", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=553916", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Collision+of+Realms&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Collision+of+Realms&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Collision+of+Realms"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/263001?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Collision+of+Realms&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Collision+of+Realms&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "43adef3c-87f0-4db1-9fbb-017c96c815ff", "oracle_id": "e99b0bf8-054a-4fa6-ad67-58ccb7cba004", "multiverse_ids": [], "arena_id": 79943, "name": "Conductive Current", "lang": "en", "released_at": "2021-12-09", "uri": "https://api.scryfall.com/cards/43adef3c-87f0-4db1-9fbb-017c96c815ff", "scryfall_uri": "https://scryfall.com/card/ymid/38/conductive-current?utm_source=api", "layout": "normal", "highres_image": false, "image_status": "lowres", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/4/3/43adef3c-87f0-4db1-9fbb-017c96c815ff.jpg?1645416694", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/3/43adef3c-87f0-4db1-9fbb-017c96c815ff.jpg?1645416694", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/4/3/43adef3c-87f0-4db1-9fbb-017c96c815ff.jpg?1645416694", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/4/3/43adef3c-87f0-4db1-9fbb-017c96c815ff.png?1645416694", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/3/43adef3c-87f0-4db1-9fbb-017c96c815ff.jpg?1645416694", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/4/3/43adef3c-87f0-4db1-9fbb-017c96c815ff.jpg?1645416694"}, "mana_cost": "{R}{R}{R}", "cmc": 3.0, "type_line": "Sorcery", "oracle_text": "Conductive Current deals 3 damage to each creature. Choose an instant or sorcery card in your hand. It perpetually gains \"If this spell would deal noncombat damage to a permanent or player, it deals that much damage plus 2 instead.\"", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "not_legal", "pauper": "not_legal", "vintage": "not_legal", "penny": "not_legal", "commander": "not_legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "not_legal", "duel": "not_legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "8a673262-8745-452d-820a-03d5c4a4f135", "set": "ymid", "set_name": "Alchemy: Innistrad", "set_type": "alchemy", "set_uri": "https://api.scryfall.com/sets/8a673262-8745-452d-820a-03d5c4a4f135", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aymid&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ymid?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/43adef3c-87f0-4db1-9fbb-017c96c815ff/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ae99b0bf8-054a-4fa6-ad67-58ccb7cba004&unique=prints", "collector_number": "38", "digital": true, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Alexander Forssberg", "artist_ids": ["85908891-3cc7-42b0-9b54-27ed0fe89c53"], "illustration_id": "21b48980-8cb3-45fc-a1c3-cb2b495bb387", "border_color": "black", "frame": "2015", "security_stamp": "arena", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "preview": {"source": "Stephen Croke", "source_uri": "https://twitter.com/crokeyz/status/1467834600374292489", "previewed_at": "2021-12-06"}, "prices": {"usd": null, "usd_foil": null, "usd_etched": null, "eur": null, "eur_foil": null, "tix": null}, "related_uris": {"tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Conductive+Current&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Conductive+Current&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Conductive+Current"}}, {"object": "card", "id": "c94dcaed-55da-41f4-a61f-2a79ef6c1459", "oracle_id": "c2555c38-1bfc-48c1-85aa-7e40117db78b", "multiverse_ids": [401691], "tcgplayer_id": 104236, "cardmarket_id": 283992, "name": "Consume the Meek", "lang": "en", "released_at": "2015-08-28", "uri": "https://api.scryfall.com/cards/c94dcaed-55da-41f4-a61f-2a79ef6c1459", "scryfall_uri": "https://scryfall.com/card/ddp/49/consume-the-meek?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/c/9/c94dcaed-55da-41f4-a61f-2a79ef6c1459.jpg?1593095734", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/9/c94dcaed-55da-41f4-a61f-2a79ef6c1459.jpg?1593095734", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/c/9/c94dcaed-55da-41f4-a61f-2a79ef6c1459.jpg?1593095734", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/c/9/c94dcaed-55da-41f4-a61f-2a79ef6c1459.png?1593095734", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/9/c94dcaed-55da-41f4-a61f-2a79ef6c1459.jpg?1593095734", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/c/9/c94dcaed-55da-41f4-a61f-2a79ef6c1459.jpg?1593095734"}, "mana_cost": "{3}{B}{B}", "cmc": 5.0, "type_line": "Instant", "oracle_text": "Destroy each creature with mana value 3 or less. They can't be regenerated.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "0dbc7609-b12c-471a-bfd3-c57bc670c445", "set": "ddp", "set_name": "Duel Decks: Zendikar vs. Eldrazi", "set_type": "duel_deck", "set_uri": "https://api.scryfall.com/sets/0dbc7609-b12c-471a-bfd3-c57bc670c445", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Addp&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ddp?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/c94dcaed-55da-41f4-a61f-2a79ef6c1459/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ac2555c38-1bfc-48c1-85aa-7e40117db78b&unique=prints", "collector_number": "49", "digital": false, "rarity": "rare", "flavor_text": "\"Others ask why the Eldrazi destroy. I ask why they preserve.\"\n\u2014Ganda, Goma Fada deserter", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Richard Wright", "artist_ids": ["7b1b0ce9-2c58-4321-a2a7-cdc94feae082"], "illustration_id": "18965674-f255-4d4c-97ca-250a72c385ef", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "edhrec_rank": 10931, "penny_rank": 493, "prices": {"usd": "0.23", "usd_foil": null, "usd_etched": null, "eur": "0.05", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=401691", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Consume+the+Meek&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Consume+the+Meek&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Consume+the+Meek"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/104236?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Consume+the+Meek&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Consume+the+Meek&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "921ebea0-48bf-4338-9e84-2cd06ffe6f4b", "oracle_id": "c2555c38-1bfc-48c1-85aa-7e40117db78b", "multiverse_ids": [193475], "mtgo_id": 36428, "mtgo_foil_id": 36429, "tcgplayer_id": 34794, "cardmarket_id": 22451, "name": "Consume the Meek", "lang": "en", "released_at": "2010-04-23", "uri": "https://api.scryfall.com/cards/921ebea0-48bf-4338-9e84-2cd06ffe6f4b", "scryfall_uri": "https://scryfall.com/card/roe/100/consume-the-meek?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/9/2/921ebea0-48bf-4338-9e84-2cd06ffe6f4b.jpg?1562706383", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/2/921ebea0-48bf-4338-9e84-2cd06ffe6f4b.jpg?1562706383", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/9/2/921ebea0-48bf-4338-9e84-2cd06ffe6f4b.jpg?1562706383", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/9/2/921ebea0-48bf-4338-9e84-2cd06ffe6f4b.png?1562706383", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/2/921ebea0-48bf-4338-9e84-2cd06ffe6f4b.jpg?1562706383", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/9/2/921ebea0-48bf-4338-9e84-2cd06ffe6f4b.jpg?1562706383"}, "mana_cost": "{3}{B}{B}", "cmc": 5.0, "type_line": "Instant", "oracle_text": "Destroy each creature with mana value 3 or less. They can't be regenerated.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "eadb8a82-ec56-4623-b50e-42e7e60cb535", "set": "roe", "set_name": "Rise of the Eldrazi", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/eadb8a82-ec56-4623-b50e-42e7e60cb535", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aroe&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/roe?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/921ebea0-48bf-4338-9e84-2cd06ffe6f4b/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ac2555c38-1bfc-48c1-85aa-7e40117db78b&unique=prints", "collector_number": "100", "digital": false, "rarity": "rare", "flavor_text": "\"Why does it destroy? It does, and to talk of reasons wastes time and breath.\"\n\u2014Nirthu, lone missionary", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Chippy", "artist_ids": ["a36f01a0-e51a-48b2-a556-b9b3bc73f969"], "illustration_id": "73481e11-4ce6-4398-a153-7d3e8968f00f", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 10931, "penny_rank": 493, "prices": {"usd": "0.28", "usd_foil": "3.98", "usd_etched": null, "eur": "0.50", "eur_foil": "1.98", "tix": "0.01"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=193475", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Consume+the+Meek&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Consume+the+Meek&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Consume+the+Meek"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/34794?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Consume+the+Meek&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/36428?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "c700eff3-138b-4d4c-ba36-58b98986168c", "oracle_id": "ab715312-0103-4681-b559-520026abd350", "multiverse_ids": [555380], "mtgo_id": 98577, "arena_id": 80330, "tcgplayer_id": 268954, "cardmarket_id": 652112, "name": "Corpse Explosion", "lang": "en", "released_at": "2022-04-29", "uri": "https://api.scryfall.com/cards/c700eff3-138b-4d4c-ba36-58b98986168c", "scryfall_uri": "https://scryfall.com/card/snc/179/corpse-explosion?utm_source=api", "layout": "normal", "highres_image": false, "image_status": "lowres", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/c/7/c700eff3-138b-4d4c-ba36-58b98986168c.jpg?1650029916", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/7/c700eff3-138b-4d4c-ba36-58b98986168c.jpg?1650029916", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/c/7/c700eff3-138b-4d4c-ba36-58b98986168c.jpg?1650029916", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/c/7/c700eff3-138b-4d4c-ba36-58b98986168c.png?1650029916", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/7/c700eff3-138b-4d4c-ba36-58b98986168c.jpg?1650029916", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/c/7/c700eff3-138b-4d4c-ba36-58b98986168c.jpg?1650029916"}, "mana_cost": "{1}{B}{R}", "cmc": 3.0, "type_line": "Sorcery", "oracle_text": "As an additional cost to cast this spell, exile a creature card from your graveyard.\nCorpse Explosion deals damage equal to the exiled card's power to each creature and each planeswalker.", "colors": ["B", "R"], "color_identity": ["B", "R"], "keywords": [], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo", "arena"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "df837242-8c15-42e4-b049-c933a02dc501", "set": "snc", "set_name": "Streets of New Capenna", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/df837242-8c15-42e4-b049-c933a02dc501", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Asnc&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/snc?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/c700eff3-138b-4d4c-ba36-58b98986168c/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aab715312-0103-4681-b559-520026abd350&unique=prints", "collector_number": "179", "digital": false, "rarity": "rare", "flavor_text": "\"Well, that's one way to scatter her ashes.\"\n\u2014Calvey, funeral director", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Greg Staples", "artist_ids": ["93d65564-bf00-447b-8406-e2031f03b6b1"], "illustration_id": "623e6419-045f-49ef-b6d7-079126365638", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 9551, "preview": {"source": "Dorasuta", "source_uri": "https://dorasuta.jp/column/detail?aid=10309", "previewed_at": "2022-04-13"}, "prices": {"usd": "0.14", "usd_foil": "0.19", "usd_etched": null, "eur": "0.19", "eur_foil": "0.10", "tix": "0.01"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=555380", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Corpse+Explosion&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Corpse+Explosion&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Corpse+Explosion"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/268954?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Corpse+Explosion&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/98577?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "04a13825-ab9b-4ffd-9b59-6198181891b9", "oracle_id": "6143073f-4110-4a37-bc0c-89fbda2fc839", "multiverse_ids": [230075], "mtgo_id": 39934, "mtgo_foil_id": 39935, "tcgplayer_id": 39501, "cardmarket_id": 245933, "name": "Corrosive Gale", "lang": "en", "released_at": "2011-05-13", "uri": "https://api.scryfall.com/cards/04a13825-ab9b-4ffd-9b59-6198181891b9", "scryfall_uri": "https://scryfall.com/card/nph/107/corrosive-gale?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/0/4/04a13825-ab9b-4ffd-9b59-6198181891b9.jpg?1562875245", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/4/04a13825-ab9b-4ffd-9b59-6198181891b9.jpg?1562875245", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/0/4/04a13825-ab9b-4ffd-9b59-6198181891b9.jpg?1562875245", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/0/4/04a13825-ab9b-4ffd-9b59-6198181891b9.png?1562875245", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/4/04a13825-ab9b-4ffd-9b59-6198181891b9.jpg?1562875245", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/0/4/04a13825-ab9b-4ffd-9b59-6198181891b9.jpg?1562875245"}, "mana_cost": "{X}{G/P}", "cmc": 1.0, "type_line": "Sorcery", "oracle_text": "({G/P} can be paid with either {G} or 2 life.)\nCorrosive Gale deals X damage to each creature with flying.", "colors": ["G"], "color_identity": ["G"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "e8e356d8-6d01-4dab-aa07-d0999dc9359f", "set": "nph", "set_name": "New Phyrexia", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/e8e356d8-6d01-4dab-aa07-d0999dc9359f", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Anph&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/nph?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/04a13825-ab9b-4ffd-9b59-6198181891b9/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A6143073f-4110-4a37-bc0c-89fbda2fc839&unique=prints", "collector_number": "107", "digital": false, "rarity": "uncommon", "watermark": "phyrexian", "flavor_text": "\"Wipe Sheoldred's spies from the sky. She'll see the result of our vision soon enough.\"\n\u2014Glissa", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Dan Scott", "artist_ids": ["f852fa13-137e-40f2-bbc1-0f01df09c0e0"], "illustration_id": "2ac7f6ac-caac-4614-acc0-0c84d0c68817", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 15154, "penny_rank": 8794, "prices": {"usd": "0.12", "usd_foil": "0.42", "usd_etched": null, "eur": "0.02", "eur_foil": "0.48", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=230075", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Corrosive+Gale&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Corrosive+Gale&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Corrosive+Gale"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/39501?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Corrosive+Gale&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/39934?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "69c5bafa-8cd8-4158-98e0-46dc74c027c0", "oracle_id": "079ac521-9414-46c1-acd9-2ff2ff047d22", "multiverse_ids": [452845], "mtgo_id": 69563, "arena_id": 68556, "tcgplayer_id": 177104, "cardmarket_id": 364278, "name": "Cosmotronic Wave", "lang": "en", "released_at": "2018-10-05", "uri": "https://api.scryfall.com/cards/69c5bafa-8cd8-4158-98e0-46dc74c027c0", "scryfall_uri": "https://scryfall.com/card/grn/95/cosmotronic-wave?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/6/9/69c5bafa-8cd8-4158-98e0-46dc74c027c0.jpg?1572893121", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/9/69c5bafa-8cd8-4158-98e0-46dc74c027c0.jpg?1572893121", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/6/9/69c5bafa-8cd8-4158-98e0-46dc74c027c0.jpg?1572893121", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/6/9/69c5bafa-8cd8-4158-98e0-46dc74c027c0.png?1572893121", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/9/69c5bafa-8cd8-4158-98e0-46dc74c027c0.jpg?1572893121", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/6/9/69c5bafa-8cd8-4158-98e0-46dc74c027c0.jpg?1572893121"}, "mana_cost": "{3}{R}", "cmc": 4.0, "type_line": "Sorcery", "oracle_text": "Cosmotronic Wave deals 1 damage to each creature your opponents control. Creatures your opponents control can't block this turn.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "597c6d4a-8212-4903-a6af-12c4ae9e13f0", "set": "grn", "set_name": "Guilds of Ravnica", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/597c6d4a-8212-4903-a6af-12c4ae9e13f0", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Agrn&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/grn?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/69c5bafa-8cd8-4158-98e0-46dc74c027c0/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A079ac521-9414-46c1-acd9-2ff2ff047d22&unique=prints", "collector_number": "95", "digital": false, "rarity": "common", "flavor_text": "\"This sort of innovation occurs when you set out to improve an electric tea kettle and misplace a decimal.\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Titus Lunter", "artist_ids": ["b11e6b3a-f4ca-4cf1-8fd7-475696de5f5c"], "illustration_id": "186c21ef-38f6-4ecd-9c2e-9f317f21d321", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 7648, "penny_rank": 9254, "prices": {"usd": "0.05", "usd_foil": "0.26", "usd_etched": null, "eur": "0.02", "eur_foil": "0.50", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=452845", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Cosmotronic+Wave&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Cosmotronic+Wave&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Cosmotronic+Wave"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/177104?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Cosmotronic+Wave&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/69563?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "bf2d53b8-7847-4b94-9711-eca29facccba", "oracle_id": "f1519fe3-af13-4491-9020-4a8d8f474713", "multiverse_ids": [280232], "mtgo_id": 45648, "mtgo_foil_id": 45649, "tcgplayer_id": 59960, "cardmarket_id": 257058, "name": "Cower in Fear", "lang": "en", "released_at": "2012-07-13", "uri": "https://api.scryfall.com/cards/bf2d53b8-7847-4b94-9711-eca29facccba", "scryfall_uri": "https://scryfall.com/card/m13/84/cower-in-fear?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/b/f/bf2d53b8-7847-4b94-9711-eca29facccba.jpg?1562559508", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/f/bf2d53b8-7847-4b94-9711-eca29facccba.jpg?1562559508", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/b/f/bf2d53b8-7847-4b94-9711-eca29facccba.jpg?1562559508", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/b/f/bf2d53b8-7847-4b94-9711-eca29facccba.png?1562559508", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/f/bf2d53b8-7847-4b94-9711-eca29facccba.jpg?1562559508", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/b/f/bf2d53b8-7847-4b94-9711-eca29facccba.jpg?1562559508"}, "mana_cost": "{1}{B}{B}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Creatures your opponents control get -1/-1 until end of turn.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "f9b0c6f4-8a4f-4f36-ad3c-e1e16fb8535d", "set": "m13", "set_name": "Magic 2013", "set_type": "core", "set_uri": "https://api.scryfall.com/sets/f9b0c6f4-8a4f-4f36-ad3c-e1e16fb8535d", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Am13&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/m13?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/bf2d53b8-7847-4b94-9711-eca29facccba/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Af1519fe3-af13-4491-9020-4a8d8f474713&unique=prints", "collector_number": "84", "digital": false, "rarity": "uncommon", "flavor_text": "\"You will fully understand fear when you discover it is the final thing you put your faith in.\"\n\u2014Nicol Bolas", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Nils Hamm", "artist_ids": ["c540d1fc-1500-457f-93cf-d6069ee66546"], "illustration_id": "d4d3c514-e2ae-4dd4-b3de-d70b4158ddd0", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 16530, "penny_rank": 5977, "prices": {"usd": "0.04", "usd_foil": "0.10", "usd_etched": null, "eur": "0.02", "eur_foil": "0.49", "tix": "0.04"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=280232", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Cower+in+Fear&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Cower+in+Fear&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Cower+in+Fear"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/59960?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Cower+in+Fear&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/45648?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "7d9bd181-b99f-477e-bcfb-9b78cbf51224", "oracle_id": "e7a7ba65-ad14-41d5-889b-9bbeae9ab3f7", "multiverse_ids": [503690], "mtgo_id": 87491, "arena_id": 75121, "tcgplayer_id": 230901, "cardmarket_id": 532297, "name": "Crippling Fear", "lang": "en", "released_at": "2021-02-05", "uri": "https://api.scryfall.com/cards/7d9bd181-b99f-477e-bcfb-9b78cbf51224", "scryfall_uri": "https://scryfall.com/card/khm/82/crippling-fear?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/7/d/7d9bd181-b99f-477e-bcfb-9b78cbf51224.jpg?1631047737", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/d/7d9bd181-b99f-477e-bcfb-9b78cbf51224.jpg?1631047737", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/7/d/7d9bd181-b99f-477e-bcfb-9b78cbf51224.jpg?1631047737", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/7/d/7d9bd181-b99f-477e-bcfb-9b78cbf51224.png?1631047737", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/d/7d9bd181-b99f-477e-bcfb-9b78cbf51224.jpg?1631047737", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/7/d/7d9bd181-b99f-477e-bcfb-9b78cbf51224.jpg?1631047737"}, "mana_cost": "{2}{B}{B}", "cmc": 4.0, "type_line": "Sorcery", "oracle_text": "Choose a creature type. Creatures that aren't of the chosen type get -3/-3 until end of turn.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "43057fad-b1c1-437f-bc48-0045bce6d8c9", "set": "khm", "set_name": "Kaldheim", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/43057fad-b1c1-437f-bc48-0045bce6d8c9", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Akhm&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/khm?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/7d9bd181-b99f-477e-bcfb-9b78cbf51224/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ae7a7ba65-ad14-41d5-889b-9bbeae9ab3f7&unique=prints", "collector_number": "82", "digital": false, "rarity": "rare", "flavor_text": "Panic spread like wildfire as the demons of Immersturm poured into Bretagard, slaughtering as they came.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Nestor Ossandon Leal", "artist_ids": ["7a6f1667-a8ac-47f5-a302-f71cb54b2adf"], "illustration_id": "b6993f01-a071-4e72-a77a-35a29c76e731", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 2412, "penny_rank": 2585, "preview": {"source": "Wizards of the Coast", "source_uri": "https://cafe.naver.com/mtgkr/583", "previewed_at": "2021-01-15"}, "prices": {"usd": "0.17", "usd_foil": "0.80", "usd_etched": null, "eur": "0.20", "eur_foil": "0.40", "tix": "0.12"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=503690", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Crippling+Fear&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Crippling+Fear&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Crippling+Fear"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/230901?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Crippling+Fear&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/87491?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "875a20c2-1d17-46ea-b4d2-3e70bc05aae3", "oracle_id": "4aa119f7-d411-4188-956e-547f7d14e789", "multiverse_ids": [503740], "mtgo_id": 87591, "arena_id": 75171, "tcgplayer_id": 230406, "cardmarket_id": 530812, "name": "Crush the Weak", "lang": "en", "released_at": "2021-02-05", "uri": "https://api.scryfall.com/cards/875a20c2-1d17-46ea-b4d2-3e70bc05aae3", "scryfall_uri": "https://scryfall.com/card/khm/128/crush-the-weak?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/8/7/875a20c2-1d17-46ea-b4d2-3e70bc05aae3.jpg?1631049096", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/7/875a20c2-1d17-46ea-b4d2-3e70bc05aae3.jpg?1631049096", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/8/7/875a20c2-1d17-46ea-b4d2-3e70bc05aae3.jpg?1631049096", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/8/7/875a20c2-1d17-46ea-b4d2-3e70bc05aae3.png?1631049096", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/7/875a20c2-1d17-46ea-b4d2-3e70bc05aae3.jpg?1631049096", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/8/7/875a20c2-1d17-46ea-b4d2-3e70bc05aae3.jpg?1631049096"}, "mana_cost": "{2}{R}", "cmc": 3.0, "type_line": "Sorcery", "oracle_text": "Crush the Weak deals 2 damage to each creature. If a creature dealt damage this way would die this turn, exile it instead.\nForetell {R} (During your turn, you may pay {2} and exile this card from your hand face down. Cast it on a later turn for its foretell cost.)", "colors": ["R"], "color_identity": ["R"], "keywords": ["Foretell"], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "43057fad-b1c1-437f-bc48-0045bce6d8c9", "set": "khm", "set_name": "Kaldheim", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/43057fad-b1c1-437f-bc48-0045bce6d8c9", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Akhm&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/khm?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/875a20c2-1d17-46ea-b4d2-3e70bc05aae3/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A4aa119f7-d411-4188-956e-547f7d14e789&unique=prints", "collector_number": "128", "digital": false, "rarity": "uncommon", "watermark": "foretell", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Lucas Graciano", "artist_ids": ["ce98f39c-7cdd-47e6-a520-6c50443bb4c2"], "illustration_id": "a6df3c73-d58b-4527-b75d-2fc05b3a7a93", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 10522, "penny_rank": 13695, "preview": {"source": "PelleK", "source_uri": "https://twitter.com/imPelleK/status/1348995453879275520", "previewed_at": "2021-01-12"}, "prices": {"usd": "0.07", "usd_foil": "0.17", "usd_etched": null, "eur": "0.25", "eur_foil": "0.25", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=503740", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Crush+the+Weak&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Crush+the+Weak&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Crush+the+Weak"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/230406?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Crush+the+Weak&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/87591?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "e1d45374-a41b-4b3f-a7c8-3eb5ca767cf6", "oracle_id": "52a0dae4-2a95-487e-acd4-eabdb2d031e2", "multiverse_ids": [391813], "mtgo_id": 55450, "mtgo_foil_id": 55451, "tcgplayer_id": 95037, "cardmarket_id": 271475, "name": "Crux of Fate", "lang": "en", "released_at": "2015-01-23", "uri": "https://api.scryfall.com/cards/e1d45374-a41b-4b3f-a7c8-3eb5ca767cf6", "scryfall_uri": "https://scryfall.com/card/frf/65/crux-of-fate?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/e/1/e1d45374-a41b-4b3f-a7c8-3eb5ca767cf6.jpg?1648060698", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/1/e1d45374-a41b-4b3f-a7c8-3eb5ca767cf6.jpg?1648060698", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/e/1/e1d45374-a41b-4b3f-a7c8-3eb5ca767cf6.jpg?1648060698", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/e/1/e1d45374-a41b-4b3f-a7c8-3eb5ca767cf6.png?1648060698", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/1/e1d45374-a41b-4b3f-a7c8-3eb5ca767cf6.jpg?1648060698", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/e/1/e1d45374-a41b-4b3f-a7c8-3eb5ca767cf6.jpg?1648060698"}, "mana_cost": "{3}{B}{B}", "cmc": 5.0, "type_line": "Sorcery", "oracle_text": "Choose one \u2014\n\u2022 Destroy all Dragon creatures.\n\u2022 Destroy all non-Dragon creatures.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "7bb5cb2b-081a-4c8c-b7e1-494046e6baa1", "set": "frf", "set_name": "Fate Reforged", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/7bb5cb2b-081a-4c8c-b7e1-494046e6baa1", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Afrf&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/frf?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/e1d45374-a41b-4b3f-a7c8-3eb5ca767cf6/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A52a0dae4-2a95-487e-acd4-eabdb2d031e2&unique=prints", "collector_number": "65", "digital": false, "rarity": "rare", "flavor_text": "Ugin's whispered summons led Sarkhan Vol to the moment that would echo down the centuries and seal Tarkir's fate: the primal battle between Ugin and Nicol Bolas.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Michael Komarck", "artist_ids": ["96a53b95-fe5f-4fbb-9411-ccf4ee150aca"], "illustration_id": "b652686f-ac53-4f72-8f9d-b18039a8ec5c", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 805, "penny_rank": 1291, "prices": {"usd": "2.81", "usd_foil": null, "usd_etched": null, "eur": "1.25", "eur_foil": null, "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=391813", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Crux+of+Fate&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Crux+of+Fate&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Crux+of+Fate"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/95037?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Crux+of+Fate&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/55450?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "f3ccea48-ee90-4da8-832d-8c30c98bf1dd", "oracle_id": "52a0dae4-2a95-487e-acd4-eabdb2d031e2", "multiverse_ids": [517575], "mtgo_id": 89107, "arena_id": 77504, "tcgplayer_id": 235402, "tcgplayer_etched_id": 235401, "cardmarket_id": 556904, "name": "Crux of Fate", "lang": "en", "released_at": "2021-04-23", "uri": "https://api.scryfall.com/cards/f3ccea48-ee90-4da8-832d-8c30c98bf1dd", "scryfall_uri": "https://scryfall.com/card/sta/25/crux-of-fate?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/f/3/f3ccea48-ee90-4da8-832d-8c30c98bf1dd.jpg?1623779891", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/3/f3ccea48-ee90-4da8-832d-8c30c98bf1dd.jpg?1623779891", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/f/3/f3ccea48-ee90-4da8-832d-8c30c98bf1dd.jpg?1623779891", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/f/3/f3ccea48-ee90-4da8-832d-8c30c98bf1dd.png?1623779891", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/3/f3ccea48-ee90-4da8-832d-8c30c98bf1dd.jpg?1623779891", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/f/3/f3ccea48-ee90-4da8-832d-8c30c98bf1dd.jpg?1623779891"}, "mana_cost": "{3}{B}{B}", "cmc": 5.0, "type_line": "Sorcery", "oracle_text": "Choose one \u2014\n\u2022 Destroy all Dragon creatures.\n\u2022 Destroy all non-Dragon creatures.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil", "etched"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "5064a720-907f-4cb6-a425-766dc1dd7374", "set": "sta", "set_name": "Strixhaven Mystical Archive", "set_type": "masterpiece", "set_uri": "https://api.scryfall.com/sets/5064a720-907f-4cb6-a425-766dc1dd7374", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Asta&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/sta?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/f3ccea48-ee90-4da8-832d-8c30c98bf1dd/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A52a0dae4-2a95-487e-acd4-eabdb2d031e2&unique=prints", "collector_number": "25", "digital": false, "rarity": "mythic", "flavor_text": "\"One brother fought for the sake of the Multiverse. The other for himself.\"\n\u2014*The Elderspell Parable*", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Jason Felix", "artist_ids": ["af42a44c-8ec3-47a7-9047-5d29ddad186d"], "illustration_id": "1d8453cd-8086-42a3-9b7b-3e1bec297bfc", "border_color": "borderless", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "edhrec_rank": 805, "penny_rank": 1291, "prices": {"usd": "2.63", "usd_foil": "6.65", "usd_etched": "5.98", "eur": "2.60", "eur_foil": "6.00", "tix": "0.19"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=517575", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Crux+of+Fate&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Crux+of+Fate&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Crux+of+Fate"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/235402?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Crux+of+Fate&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/89107?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "715a14a3-046e-45ca-b943-dd630e5202b7", "oracle_id": "1b9a5170-39c0-4cbf-a041-f3c15f1359ae", "multiverse_ids": [457214], "mtgo_id": 71140, "arena_id": 69198, "tcgplayer_id": 183061, "cardmarket_id": 368151, "name": "Cry of the Carnarium", "lang": "en", "released_at": "2019-01-25", "uri": "https://api.scryfall.com/cards/715a14a3-046e-45ca-b943-dd630e5202b7", "scryfall_uri": "https://scryfall.com/card/rna/70/cry-of-the-carnarium?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/7/1/715a14a3-046e-45ca-b943-dd630e5202b7.jpg?1584830546", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/1/715a14a3-046e-45ca-b943-dd630e5202b7.jpg?1584830546", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/7/1/715a14a3-046e-45ca-b943-dd630e5202b7.jpg?1584830546", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/7/1/715a14a3-046e-45ca-b943-dd630e5202b7.png?1584830546", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/1/715a14a3-046e-45ca-b943-dd630e5202b7.jpg?1584830546", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/7/1/715a14a3-046e-45ca-b943-dd630e5202b7.jpg?1584830546"}, "mana_cost": "{1}{B}{B}", "cmc": 3.0, "type_line": "Sorcery", "oracle_text": "All creatures get -2/-2 until end of turn. Exile all creature cards in all graveyards that were put there from the battlefield this turn. If a creature would die this turn, exile it instead.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "97a7fd84-8d89-45a3-b48b-c951f6a3f9f1", "set": "rna", "set_name": "Ravnica Allegiance", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/97a7fd84-8d89-45a3-b48b-c951f6a3f9f1", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Arna&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/rna?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/715a14a3-046e-45ca-b943-dd630e5202b7/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A1b9a5170-39c0-4cbf-a041-f3c15f1359ae&unique=prints", "collector_number": "70", "digital": false, "rarity": "uncommon", "flavor_text": "If your ears bleed, it's a party. If your eyes bleed, it's a Rakdos party.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Johann Bodin", "artist_ids": ["d92e2dd9-9ef6-43f6-81f8-df87f9066983"], "illustration_id": "ebdf3c3a-6207-4e68-8e9d-ebdaac12fbb9", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 12540, "penny_rank": 781, "preview": {"source": "Crestongames", "source_uri": "https://www.twitch.tv/videos/358331828", "previewed_at": "2019-01-03"}, "prices": {"usd": "0.10", "usd_foil": "0.57", "usd_etched": null, "eur": "0.09", "eur_foil": "0.75", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=457214", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Cry+of+the+Carnarium&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Cry+of+the+Carnarium&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Cry+of+the+Carnarium"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/183061?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Cry+of+the+Carnarium&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/71140?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "5ec5a956-c846-46b6-91bd-37e4db542280", "oracle_id": "e41d9b3a-0712-4174-8c5c-224065a63b16", "multiverse_ids": [97215], "mtgo_id": 23835, "mtgo_foil_id": 23836, "tcgplayer_id": 13673, "cardmarket_id": 13155, "name": "Culling Sun", "lang": "en", "released_at": "2006-02-03", "uri": "https://api.scryfall.com/cards/5ec5a956-c846-46b6-91bd-37e4db542280", "scryfall_uri": "https://scryfall.com/card/gpt/109/culling-sun?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/5/e/5ec5a956-c846-46b6-91bd-37e4db542280.jpg?1593272635", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/e/5ec5a956-c846-46b6-91bd-37e4db542280.jpg?1593272635", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/5/e/5ec5a956-c846-46b6-91bd-37e4db542280.jpg?1593272635", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/5/e/5ec5a956-c846-46b6-91bd-37e4db542280.png?1593272635", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/e/5ec5a956-c846-46b6-91bd-37e4db542280.jpg?1593272635", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/5/e/5ec5a956-c846-46b6-91bd-37e4db542280.jpg?1593272635"}, "mana_cost": "{2}{W}{W}{B}", "cmc": 5.0, "type_line": "Sorcery", "oracle_text": "Destroy each creature with mana value 3 or less.", "colors": ["B", "W"], "color_identity": ["B", "W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "594b4d09-8ce1-494d-bdb2-842c124bd087", "set": "gpt", "set_name": "Guildpact", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/594b4d09-8ce1-494d-bdb2-842c124bd087", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Agpt&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/gpt?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/5ec5a956-c846-46b6-91bd-37e4db542280/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ae41d9b3a-0712-4174-8c5c-224065a63b16&unique=prints", "collector_number": "109", "digital": false, "rarity": "rare", "watermark": "orzhov", "flavor_text": "\"Who truly runs this city? Look to the sky on hallowed days, and see whose sigil is stamped clearly onto the heavens.\"\n\u2014Vuliev of the Ghost Council", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Daren Bader", "artist_ids": ["7da1a585-c875-45e4-b322-5da9e8e1f651"], "illustration_id": "03e13fd3-a5f9-4cc9-934e-dd84dd8865bf", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 18621, "penny_rank": 12695, "prices": {"usd": "0.25", "usd_foil": "0.87", "usd_etched": null, "eur": "0.03", "eur_foil": "0.50", "tix": "0.01"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=97215", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Culling+Sun&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Culling+Sun&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Culling+Sun"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/13673?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Culling+Sun&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/23835?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "58b38ef1-5839-4292-91d6-e45698c69a75", "oracle_id": "a6cc516d-5a4b-455a-ab16-367d64215527", "multiverse_ids": [6571], "tcgplayer_id": 120, "cardmarket_id": 9829, "name": "Dakmor Plague", "lang": "en", "released_at": "1998-06-24", "uri": "https://api.scryfall.com/cards/58b38ef1-5839-4292-91d6-e45698c69a75", "scryfall_uri": "https://scryfall.com/card/p02/69/dakmor-plague?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/5/8/58b38ef1-5839-4292-91d6-e45698c69a75.jpg?1562915882", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/8/58b38ef1-5839-4292-91d6-e45698c69a75.jpg?1562915882", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/5/8/58b38ef1-5839-4292-91d6-e45698c69a75.jpg?1562915882", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/5/8/58b38ef1-5839-4292-91d6-e45698c69a75.png?1562915882", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/8/58b38ef1-5839-4292-91d6-e45698c69a75.jpg?1562915882", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/5/8/58b38ef1-5839-4292-91d6-e45698c69a75.jpg?1562915882"}, "mana_cost": "{3}{B}{B}", "cmc": 5.0, "type_line": "Sorcery", "oracle_text": "Dakmor Plague deals 3 damage to each creature and each player.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "ac67f18a-4f0e-407e-bab1-a9fe4f659565", "set": "p02", "set_name": "Portal Second Age", "set_type": "starter", "set_uri": "https://api.scryfall.com/sets/ac67f18a-4f0e-407e-bab1-a9fe4f659565", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ap02&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/p02?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/58b38ef1-5839-4292-91d6-e45698c69a75/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aa6cc516d-5a4b-455a-ab16-367d64215527&unique=prints", "collector_number": "69", "digital": false, "rarity": "uncommon", "flavor_text": "The tiniest cough can be deadlier than the fiercest dragon.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Jeff Miracola", "artist_ids": ["9b465bde-3656-4495-ace4-af4ce29999ed"], "illustration_id": "c18a4e1d-5d0e-4a94-9b18-b43725897fc1", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 20898, "penny_rank": 7938, "prices": {"usd": "0.43", "usd_foil": null, "usd_etched": null, "eur": "0.15", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=6571", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Dakmor+Plague&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Dakmor+Plague&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Dakmor+Plague"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/120?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Dakmor+Plague&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Dakmor+Plague&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "efeae088-9ac5-4d2f-a15c-d8675a471ac5", "oracle_id": "b01d61cc-9844-4191-86a0-f2db6d42d6e5", "multiverse_ids": [522156], "mtgo_id": 90533, "tcgplayer_id": 240108, "cardmarket_id": 566613, "name": "Damn", "lang": "en", "released_at": "2021-06-18", "uri": "https://api.scryfall.com/cards/efeae088-9ac5-4d2f-a15c-d8675a471ac5", "scryfall_uri": "https://scryfall.com/card/mh2/80/damn?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/e/f/efeae088-9ac5-4d2f-a15c-d8675a471ac5.jpg?1626095400", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/f/efeae088-9ac5-4d2f-a15c-d8675a471ac5.jpg?1626095400", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/e/f/efeae088-9ac5-4d2f-a15c-d8675a471ac5.jpg?1626095400", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/e/f/efeae088-9ac5-4d2f-a15c-d8675a471ac5.png?1626095400", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/f/efeae088-9ac5-4d2f-a15c-d8675a471ac5.jpg?1626095400", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/e/f/efeae088-9ac5-4d2f-a15c-d8675a471ac5.jpg?1626095400"}, "mana_cost": "{B}{B}", "cmc": 2.0, "type_line": "Sorcery", "oracle_text": "Destroy target creature. A creature destroyed this way can't be regenerated.\nOverload {2}{W}{W} (You may cast this spell for its overload cost. If you do, change its text by replacing all instances of \"target\" with \"each.\")", "colors": ["B"], "color_identity": ["B", "W"], "keywords": ["Overload"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "c1c7eb8c-f205-40ab-a609-767cb296544e", "set": "mh2", "set_name": "Modern Horizons 2", "set_type": "draft_innovation", "set_uri": "https://api.scryfall.com/sets/c1c7eb8c-f205-40ab-a609-767cb296544e", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Amh2&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/mh2?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/efeae088-9ac5-4d2f-a15c-d8675a471ac5/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ab01d61cc-9844-4191-86a0-f2db6d42d6e5&unique=prints", "collector_number": "80", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Lucas Graciano", "artist_ids": ["ce98f39c-7cdd-47e6-a520-6c50443bb4c2"], "illustration_id": "eb65010c-dbce-481b-ad00-54111425b654", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 361, "preview": {"source": "Wizards of the Coast", "source_uri": "https://magic.wizards.com/en/articles/archive/card-preview/damn-2021-05-28", "previewed_at": "2021-05-28"}, "prices": {"usd": "2.59", "usd_foil": "3.12", "usd_etched": null, "eur": "2.23", "eur_foil": "2.81", "tix": "0.13"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=522156", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Damn&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Damn&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Damn"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/240108?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Damn&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/90533?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "26c68473-70ca-40ba-b5c6-71ec30f88a2c", "oracle_id": "d57a8f0b-7989-4db5-8756-6f2690097252", "multiverse_ids": [122423], "mtgo_id": 26279, "mtgo_foil_id": 26280, "tcgplayer_id": 14703, "cardmarket_id": 14264, "name": "Damnation", "lang": "en", "released_at": "2007-02-02", "uri": "https://api.scryfall.com/cards/26c68473-70ca-40ba-b5c6-71ec30f88a2c", "scryfall_uri": "https://scryfall.com/card/plc/85/damnation?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/2/6/26c68473-70ca-40ba-b5c6-71ec30f88a2c.jpg?1562568132", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/6/26c68473-70ca-40ba-b5c6-71ec30f88a2c.jpg?1562568132", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/2/6/26c68473-70ca-40ba-b5c6-71ec30f88a2c.jpg?1562568132", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/2/6/26c68473-70ca-40ba-b5c6-71ec30f88a2c.png?1562568132", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/6/26c68473-70ca-40ba-b5c6-71ec30f88a2c.jpg?1562568132", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/2/6/26c68473-70ca-40ba-b5c6-71ec30f88a2c.jpg?1562568132"}, "mana_cost": "{2}{B}{B}", "cmc": 4.0, "type_line": "Sorcery", "oracle_text": "Destroy all creatures. They can't be regenerated.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "5a1b571c-73e9-4c14-b9d4-a62507d85789", "set": "plc", "set_name": "Planar Chaos", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/5a1b571c-73e9-4c14-b9d4-a62507d85789", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aplc&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/plc?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/26c68473-70ca-40ba-b5c6-71ec30f88a2c/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ad57a8f0b-7989-4db5-8756-6f2690097252&unique=prints", "collector_number": "85", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Kev Walker", "artist_ids": ["f366a0ee-a0cd-466d-ba6a-90058c7a31a6"], "illustration_id": "fd1da4f8-fd8e-460d-926b-78d03208ba48", "border_color": "black", "frame": "2003", "frame_effects": ["colorshifted"], "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 229, "prices": {"usd": "35.30", "usd_foil": "100.49", "usd_etched": null, "eur": "12.50", "eur_foil": "46.55", "tix": "0.43"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=122423", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Damnation&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Damnation&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Damnation"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/14703?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Damnation&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/26279?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "dca972d7-fcf8-4ac4-a98b-fffb2fbb4dbc", "oracle_id": "d57a8f0b-7989-4db5-8756-6f2690097252", "multiverse_ids": [573015], "tcgplayer_id": 277303, "cardmarket_id": 664371, "name": "Damnation", "lang": "en", "released_at": "2022-07-08", "uri": "https://api.scryfall.com/cards/dca972d7-fcf8-4ac4-a98b-fffb2fbb4dbc", "scryfall_uri": "https://scryfall.com/card/2x2/353/damnation?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/d/c/dca972d7-fcf8-4ac4-a98b-fffb2fbb4dbc.jpg?1656326586", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/c/dca972d7-fcf8-4ac4-a98b-fffb2fbb4dbc.jpg?1656326586", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/d/c/dca972d7-fcf8-4ac4-a98b-fffb2fbb4dbc.jpg?1656326586", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/d/c/dca972d7-fcf8-4ac4-a98b-fffb2fbb4dbc.png?1656326586", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/c/dca972d7-fcf8-4ac4-a98b-fffb2fbb4dbc.jpg?1656326586", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/d/c/dca972d7-fcf8-4ac4-a98b-fffb2fbb4dbc.jpg?1656326586"}, "mana_cost": "{2}{B}{B}", "cmc": 4.0, "type_line": "Sorcery", "oracle_text": "Destroy all creatures. They can't be regenerated.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "5a645837-b050-449f-ac90-1e7ccbf45031", "set": "2x2", "set_name": "Double Masters 2022", "set_type": "masters", "set_uri": "https://api.scryfall.com/sets/5a645837-b050-449f-ac90-1e7ccbf45031", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3A2x2&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/2x2?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/dca972d7-fcf8-4ac4-a98b-fffb2fbb4dbc/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ad57a8f0b-7989-4db5-8756-6f2690097252&unique=prints", "collector_number": "353", "digital": false, "rarity": "rare", "flavor_text": "Their bodies rotted, their bones splintered, and their souls frayed to tatters. Only then were they granted the mercy of death.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Ian Miller", "artist_ids": ["d2200e9f-c40d-45d4-8d87-3f1412c61770"], "illustration_id": "8d63640a-8380-42bd-83ac-2f628583ab68", "border_color": "borderless", "frame": "2015", "frame_effects": ["inverted"], "security_stamp": "oval", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "promo_types": ["boosterfun"], "edhrec_rank": 229, "preview": {"source": "AfterOfficeTTV", "source_uri": "https://twitter.com/AfterTtv/status/1537897790897942528", "previewed_at": "2022-06-17"}, "prices": {"usd": "21.57", "usd_foil": "25.93", "usd_etched": null, "eur": "15.96", "eur_foil": "23.59", "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=573015", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Damnation&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Damnation&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Damnation"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/277303?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Damnation&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Damnation&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "7fc1d7db-11a3-4ff9-8d27-1fe401053080", "oracle_id": "d57a8f0b-7989-4db5-8756-6f2690097252", "multiverse_ids": [], "tcgplayer_id": 228722, "cardmarket_id": 523420, "name": "Damnation", "lang": "en", "released_at": "2020-11-30", "uri": "https://api.scryfall.com/cards/7fc1d7db-11a3-4ff9-8d27-1fe401053080", "scryfall_uri": "https://scryfall.com/card/sld/121/damnation?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/7/f/7fc1d7db-11a3-4ff9-8d27-1fe401053080.jpg?1615223046", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/f/7fc1d7db-11a3-4ff9-8d27-1fe401053080.jpg?1615223046", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/7/f/7fc1d7db-11a3-4ff9-8d27-1fe401053080.jpg?1615223046", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/7/f/7fc1d7db-11a3-4ff9-8d27-1fe401053080.png?1615223046", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/f/7fc1d7db-11a3-4ff9-8d27-1fe401053080.jpg?1615223046", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/7/f/7fc1d7db-11a3-4ff9-8d27-1fe401053080.jpg?1615223046"}, "mana_cost": "{2}{B}{B}", "cmc": 4.0, "type_line": "Sorcery", "oracle_text": "Destroy all creatures. They can't be regenerated.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "4d92a8a7-ccb0-437d-abdc-9d70fc5ed672", "set": "sld", "set_name": "Secret Lair Drop", "set_type": "box", "set_uri": "https://api.scryfall.com/sets/4d92a8a7-ccb0-437d-abdc-9d70fc5ed672", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Asld&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/sld?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/7fc1d7db-11a3-4ff9-8d27-1fe401053080/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ad57a8f0b-7989-4db5-8756-6f2690097252&unique=prints", "collector_number": "121", "digital": false, "rarity": "rare", "flavor_text": "All deeds once committed, repaid now in kind.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Seb McKinnon", "artist_ids": ["ad4caca0-8d89-44ce-a1a6-d5ca905bd6fb"], "illustration_id": "a3e55971-cfba-4292-b427-34dbb88aa49a", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "edhrec_rank": 229, "preview": {"source": "Wizards of the Coast", "source_uri": "https://magic.wizards.com/en/articles/archive/news/announcing-secret-lairs-secretversary-superdrop-2020-11-25", "previewed_at": "2020-11-25"}, "prices": {"usd": "31.32", "usd_foil": "34.81", "usd_etched": null, "eur": "25.95", "eur_foil": "33.85", "tix": null}, "related_uris": {"tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Damnation&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Damnation&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Damnation"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/228722?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Damnation&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Damnation&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "c916a119-9eee-440d-90ef-05ab35bf3fbe", "oracle_id": "d57a8f0b-7989-4db5-8756-6f2690097252", "multiverse_ids": [430674], "mtgo_id": 64940, "mtgo_foil_id": 64941, "tcgplayer_id": 134903, "cardmarket_id": 298559, "name": "Damnation", "lang": "en", "released_at": "2017-04-28", "uri": "https://api.scryfall.com/cards/c916a119-9eee-440d-90ef-05ab35bf3fbe", "scryfall_uri": "https://scryfall.com/card/mp2/39/damnation?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/c/9/c916a119-9eee-440d-90ef-05ab35bf3fbe.jpg?1562935376", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/9/c916a119-9eee-440d-90ef-05ab35bf3fbe.jpg?1562935376", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/c/9/c916a119-9eee-440d-90ef-05ab35bf3fbe.jpg?1562935376", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/c/9/c916a119-9eee-440d-90ef-05ab35bf3fbe.png?1562935376", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/9/c916a119-9eee-440d-90ef-05ab35bf3fbe.jpg?1562935376", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/c/9/c916a119-9eee-440d-90ef-05ab35bf3fbe.jpg?1562935376"}, "mana_cost": "{2}{B}{B}", "cmc": 4.0, "type_line": "Sorcery", "oracle_text": "Destroy all creatures. They can't be regenerated.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": false, "finishes": ["foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "c26402e7-838e-48db-a4b2-7abfc305998a", "set": "mp2", "set_name": "Amonkhet Invocations", "set_type": "masterpiece", "set_uri": "https://api.scryfall.com/sets/c26402e7-838e-48db-a4b2-7abfc305998a", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Amp2&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/mp2?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/c916a119-9eee-440d-90ef-05ab35bf3fbe/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ad57a8f0b-7989-4db5-8756-6f2690097252&unique=prints", "collector_number": "39", "digital": false, "rarity": "mythic", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Zack Stella", "artist_ids": ["17bc7f55-958b-43f4-bb40-09746d05b3f9"], "illustration_id": "948ed19c-fe56-406d-b144-b4e5bc8c993d", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 229, "prices": {"usd": null, "usd_foil": "207.21", "usd_etched": null, "eur": null, "eur_foil": "160.00", "tix": "1.22"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=430674", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Damnation&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Damnation&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Damnation"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/134903?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Damnation&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/64940?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "6c5823bb-d56d-4bed-ba3f-09bdd93c52dc", "oracle_id": "d57a8f0b-7989-4db5-8756-6f2690097252", "multiverse_ids": [], "tcgplayer_id": 38304, "cardmarket_id": 18826, "name": "Damnation", "lang": "en", "released_at": "2008-01-01", "uri": "https://api.scryfall.com/cards/6c5823bb-d56d-4bed-ba3f-09bdd93c52dc", "scryfall_uri": "https://scryfall.com/card/p08/1/damnation?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/6/c/6c5823bb-d56d-4bed-ba3f-09bdd93c52dc.jpg?1561757368", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/c/6c5823bb-d56d-4bed-ba3f-09bdd93c52dc.jpg?1561757368", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/6/c/6c5823bb-d56d-4bed-ba3f-09bdd93c52dc.jpg?1561757368", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/6/c/6c5823bb-d56d-4bed-ba3f-09bdd93c52dc.png?1561757368", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/c/6c5823bb-d56d-4bed-ba3f-09bdd93c52dc.jpg?1561757368", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/6/c/6c5823bb-d56d-4bed-ba3f-09bdd93c52dc.jpg?1561757368"}, "mana_cost": "{2}{B}{B}", "cmc": 4.0, "type_line": "Sorcery", "oracle_text": "Destroy all creatures. They can't be regenerated.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": true, "nonfoil": false, "finishes": ["foil"], "oversized": false, "promo": true, "reprint": true, "variation": false, "set_id": "6c1d0a31-b5d2-421d-95f4-5816382f764f", "set": "p08", "set_name": "Magic Player Rewards 2008", "set_type": "promo", "set_uri": "https://api.scryfall.com/sets/6c1d0a31-b5d2-421d-95f4-5816382f764f", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ap08&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/p08?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/6c5823bb-d56d-4bed-ba3f-09bdd93c52dc/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ad57a8f0b-7989-4db5-8756-6f2690097252&unique=prints", "collector_number": "1", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Ron Spencer", "artist_ids": ["dab52c11-0564-4207-a4a1-c1735c946a65"], "illustration_id": "6dba9431-6ad3-4a53-848a-e64c0215874f", "border_color": "black", "frame": "2003", "full_art": true, "textless": true, "booster": false, "story_spotlight": false, "promo_types": ["playerrewards"], "edhrec_rank": 229, "prices": {"usd": null, "usd_foil": "59.93", "usd_etched": null, "eur": null, "eur_foil": "25.00", "tix": null}, "related_uris": {"tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Damnation&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Damnation&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Damnation"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/38304?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Damnation&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Damnation&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "5be40c34-6df0-4471-b99b-850ae2be9923", "oracle_id": "355ed7ef-bfa6-4538-99fb-a2d203eb7005", "multiverse_ids": [], "tcgplayer_id": 269477, "cardmarket_id": 652404, "name": "Damning Verdict", "lang": "en", "released_at": "2022-04-29", "uri": "https://api.scryfall.com/cards/5be40c34-6df0-4471-b99b-850ae2be9923", "scryfall_uri": "https://scryfall.com/card/ncc/15/damning-verdict?utm_source=api", "layout": "normal", "highres_image": false, "image_status": "lowres", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/5/b/5be40c34-6df0-4471-b99b-850ae2be9923.jpg?1650406359", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/b/5be40c34-6df0-4471-b99b-850ae2be9923.jpg?1650406359", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/5/b/5be40c34-6df0-4471-b99b-850ae2be9923.jpg?1650406359", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/5/b/5be40c34-6df0-4471-b99b-850ae2be9923.png?1650406359", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/b/5be40c34-6df0-4471-b99b-850ae2be9923.jpg?1650406359", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/5/b/5be40c34-6df0-4471-b99b-850ae2be9923.jpg?1650406359"}, "mana_cost": "{3}{W}{W}", "cmc": 5.0, "type_line": "Sorcery", "oracle_text": "Destroy all creatures with no counters on them.", "colors": ["W"], "color_identity": ["W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "c51de34b-d4d6-4179-a432-573744ded119", "set": "ncc", "set_name": "New Capenna Commander", "set_type": "commander", "set_uri": "https://api.scryfall.com/sets/c51de34b-d4d6-4179-a432-573744ded119", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ancc&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ncc?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/5be40c34-6df0-4471-b99b-850ae2be9923/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A355ed7ef-bfa6-4538-99fb-a2d203eb7005&unique=prints", "collector_number": "15", "digital": false, "rarity": "rare", "flavor_text": "\"Guilty as charged!\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Gaboleps", "artist_ids": ["0c37cdfe-5651-4ae6-a3c8-e7153509f970"], "illustration_id": "0d7e3581-c185-464a-9beb-0a6dc04c4438", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "edhrec_rank": 5667, "preview": {"source": "Screen Rant", "source_uri": "https://screenrant.com/mtg-streets-new-capenna-preview-bedecked-brokers-commander-deck/", "previewed_at": "2022-04-18"}, "prices": {"usd": "1.21", "usd_foil": null, "usd_etched": null, "eur": "1.17", "eur_foil": null, "tix": null}, "related_uris": {"tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Damning+Verdict&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Damning+Verdict&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Damning+Verdict"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/269477?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Damning+Verdict&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Damning+Verdict&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "2aa98fca-972b-46c2-bdec-6ace35c988d5", "oracle_id": "d057289d-5e28-43d5-8ff3-4a1bc723477d", "multiverse_ids": [186309], "mtgo_id": 34552, "mtgo_foil_id": 34553, "tcgplayer_id": 33283, "cardmarket_id": 21765, "name": "Day of Judgment", "lang": "en", "released_at": "2009-10-02", "uri": "https://api.scryfall.com/cards/2aa98fca-972b-46c2-bdec-6ace35c988d5", "scryfall_uri": "https://scryfall.com/card/zen/9/day-of-judgment?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/2/a/2aa98fca-972b-46c2-bdec-6ace35c988d5.jpg?1562610835", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/a/2aa98fca-972b-46c2-bdec-6ace35c988d5.jpg?1562610835", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/2/a/2aa98fca-972b-46c2-bdec-6ace35c988d5.jpg?1562610835", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/2/a/2aa98fca-972b-46c2-bdec-6ace35c988d5.png?1562610835", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/a/2aa98fca-972b-46c2-bdec-6ace35c988d5.jpg?1562610835", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/2/a/2aa98fca-972b-46c2-bdec-6ace35c988d5.jpg?1562610835"}, "mana_cost": "{2}{W}{W}", "cmc": 4.0, "type_line": "Sorcery", "oracle_text": "Destroy all creatures.", "colors": ["W"], "color_identity": ["W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "eb16a2bd-a218-4e4e-8339-4aa1afc0c8d2", "set": "zen", "set_name": "Zendikar", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/eb16a2bd-a218-4e4e-8339-4aa1afc0c8d2", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Azen&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/zen?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/2aa98fca-972b-46c2-bdec-6ace35c988d5/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ad057289d-5e28-43d5-8ff3-4a1bc723477d&unique=prints", "collector_number": "9", "digital": false, "rarity": "rare", "flavor_text": "\"I have seen planes leveled and all life rendered to dust. It brought no pleasure, even to a heart as dark as mine.\"\n\u2014Sorin Markov", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Vincent Proce", "artist_ids": ["d82b1138-76d3-49f7-9d8c-bc2e2d3e0b0a"], "illustration_id": "77c74ec0-420b-442e-ac45-63b2dee88b94", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 1060, "penny_rank": 59, "prices": {"usd": "2.31", "usd_foil": "4.91", "usd_etched": null, "eur": "1.30", "eur_foil": "2.24", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=186309", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Day+of+Judgment&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Day+of+Judgment&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Day+of+Judgment"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/33283?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Day+of+Judgment&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/34552?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "5bf85d00-52cc-4594-b4fd-5ec424210524", "oracle_id": "d057289d-5e28-43d5-8ff3-4a1bc723477d", "multiverse_ids": [517552], "mtgo_id": 89061, "arena_id": 77481, "tcgplayer_id": 235191, "tcgplayer_etched_id": 235192, "cardmarket_id": 556548, "name": "Day of Judgment", "lang": "en", "released_at": "2021-04-23", "uri": "https://api.scryfall.com/cards/5bf85d00-52cc-4594-b4fd-5ec424210524", "scryfall_uri": "https://scryfall.com/card/sta/2/day-of-judgment?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/5/b/5bf85d00-52cc-4594-b4fd-5ec424210524.jpg?1623592427", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/b/5bf85d00-52cc-4594-b4fd-5ec424210524.jpg?1623592427", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/5/b/5bf85d00-52cc-4594-b4fd-5ec424210524.jpg?1623592427", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/5/b/5bf85d00-52cc-4594-b4fd-5ec424210524.png?1623592427", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/b/5bf85d00-52cc-4594-b4fd-5ec424210524.jpg?1623592427", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/5/b/5bf85d00-52cc-4594-b4fd-5ec424210524.jpg?1623592427"}, "mana_cost": "{2}{W}{W}", "cmc": 4.0, "type_line": "Sorcery", "oracle_text": "Destroy all creatures.", "colors": ["W"], "color_identity": ["W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil", "etched"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "5064a720-907f-4cb6-a425-766dc1dd7374", "set": "sta", "set_name": "Strixhaven Mystical Archive", "set_type": "masterpiece", "set_uri": "https://api.scryfall.com/sets/5064a720-907f-4cb6-a425-766dc1dd7374", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Asta&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/sta?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/5bf85d00-52cc-4594-b4fd-5ec424210524/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ad057289d-5e28-43d5-8ff3-4a1bc723477d&unique=prints", "collector_number": "2", "digital": false, "rarity": "mythic", "flavor_text": "\"This must not become common knowledge. The consequences of such a spell are too great. Lock it away in the restricted archive, and destroy its record in the catalog.\"\n\u2014Director Taiva, to Isabough", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Anato Finnstark", "artist_ids": ["05d233e7-4958-4f79-83e6-f9bf8b6ff78e"], "illustration_id": "02cf35d6-868c-4b2e-ba2c-683ce2f69aa1", "border_color": "borderless", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "edhrec_rank": 1060, "penny_rank": 59, "preview": {"source": "Emmaskyeward", "source_uri": "https://twitter.com/emmaskyeward/status/1375151533067657216", "previewed_at": "2021-03-26"}, "prices": {"usd": "2.38", "usd_foil": "4.25", "usd_etched": "4.28", "eur": "1.70", "eur_foil": "4.95", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=517552", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Day+of+Judgment&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Day+of+Judgment&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Day+of+Judgment"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/235191?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Day+of+Judgment&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/89061?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "aea87800-6725-4399-b489-651637e1804a", "oracle_id": "d057289d-5e28-43d5-8ff3-4a1bc723477d", "multiverse_ids": [], "tcgplayer_id": 38305, "cardmarket_id": 242592, "name": "Day of Judgment", "lang": "en", "released_at": "2011-01-01", "uri": "https://api.scryfall.com/cards/aea87800-6725-4399-b489-651637e1804a", "scryfall_uri": "https://scryfall.com/card/p11/1/day-of-judgment?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/a/e/aea87800-6725-4399-b489-651637e1804a.jpg?1561757821", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/e/aea87800-6725-4399-b489-651637e1804a.jpg?1561757821", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/a/e/aea87800-6725-4399-b489-651637e1804a.jpg?1561757821", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/a/e/aea87800-6725-4399-b489-651637e1804a.png?1561757821", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/e/aea87800-6725-4399-b489-651637e1804a.jpg?1561757821", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/a/e/aea87800-6725-4399-b489-651637e1804a.jpg?1561757821"}, "mana_cost": "{2}{W}{W}", "cmc": 4.0, "type_line": "Sorcery", "oracle_text": "Destroy all creatures.", "colors": ["W"], "color_identity": ["W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": true, "nonfoil": false, "finishes": ["foil"], "oversized": false, "promo": true, "reprint": true, "variation": false, "set_id": "ba0f80c9-7a21-425b-8a02-cb17c2a50e36", "set": "p11", "set_name": "Magic Player Rewards 2011", "set_type": "promo", "set_uri": "https://api.scryfall.com/sets/ba0f80c9-7a21-425b-8a02-cb17c2a50e36", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ap11&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/p11?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/aea87800-6725-4399-b489-651637e1804a/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ad057289d-5e28-43d5-8ff3-4a1bc723477d&unique=prints", "collector_number": "1", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Svetlin Velinov", "artist_ids": ["ffd063ae-c097-4f26-b2e6-b1e2137708bc"], "illustration_id": "8fbc4283-9e09-48c3-82b5-4ac069dc3ea1", "border_color": "black", "frame": "2003", "full_art": true, "textless": true, "booster": false, "story_spotlight": false, "promo_types": ["playerrewards"], "edhrec_rank": 1060, "penny_rank": 59, "prices": {"usd": null, "usd_foil": "5.39", "usd_etched": null, "eur": null, "eur_foil": "1.75", "tix": null}, "related_uris": {"tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Day+of+Judgment&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Day+of+Judgment&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Day+of+Judgment"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/38305?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Day+of+Judgment&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Day+of+Judgment&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "6ba873f7-a7a4-44aa-84a6-44501424dc7a", "oracle_id": "d057289d-5e28-43d5-8ff3-4a1bc723477d", "multiverse_ids": [], "tcgplayer_id": 38352, "cardmarket_id": 21975, "name": "Day of Judgment", "lang": "en", "released_at": "2009-10-02", "uri": "https://api.scryfall.com/cards/6ba873f7-a7a4-44aa-84a6-44501424dc7a", "scryfall_uri": "https://scryfall.com/card/pzen/*9/day-of-judgment?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/6/b/6ba873f7-a7a4-44aa-84a6-44501424dc7a.jpg?1561757360", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/b/6ba873f7-a7a4-44aa-84a6-44501424dc7a.jpg?1561757360", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/6/b/6ba873f7-a7a4-44aa-84a6-44501424dc7a.jpg?1561757360", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/6/b/6ba873f7-a7a4-44aa-84a6-44501424dc7a.png?1561757360", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/b/6ba873f7-a7a4-44aa-84a6-44501424dc7a.jpg?1561757360", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/6/b/6ba873f7-a7a4-44aa-84a6-44501424dc7a.jpg?1561757360"}, "mana_cost": "{2}{W}{W}", "cmc": 4.0, "type_line": "Sorcery", "oracle_text": "Destroy all creatures.", "colors": ["W"], "color_identity": ["W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": true, "nonfoil": false, "finishes": ["foil"], "oversized": false, "promo": true, "reprint": true, "variation": false, "set_id": "b643670d-7a22-4869-b49c-89cdf9c9b627", "set": "pzen", "set_name": "Zendikar Promos", "set_type": "promo", "set_uri": "https://api.scryfall.com/sets/b643670d-7a22-4869-b49c-89cdf9c9b627", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Apzen&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/pzen?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/6ba873f7-a7a4-44aa-84a6-44501424dc7a/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ad057289d-5e28-43d5-8ff3-4a1bc723477d&unique=prints", "collector_number": "*9", "digital": false, "rarity": "rare", "watermark": "colorpie", "flavor_text": "\"I have seen planes leveled and all life rendered to dust. It brought no pleasure, even to a heart as dark as mine.\"\n\u2014Sorin Markov", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Kev Walker", "artist_ids": ["f366a0ee-a0cd-466d-ba6a-90058c7a31a6"], "illustration_id": "9d7946f1-7301-4bca-a85e-b53d112516a2", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "promo_types": ["setpromo", "buyabox"], "edhrec_rank": 1060, "penny_rank": 59, "prices": {"usd": null, "usd_foil": "5.71", "usd_etched": null, "eur": null, "eur_foil": "2.23", "tix": null}, "related_uris": {"tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Day+of+Judgment&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Day+of+Judgment&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Day+of+Judgment"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/38352?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Day+of+Judgment&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Day+of+Judgment&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "b9ca2810-3c1b-43cf-af1e-078015bf3492", "oracle_id": "b5516bc9-ec8d-4323-8748-96c49d7d0622", "multiverse_ids": [405194], "tcgplayer_id": 107808, "cardmarket_id": 285756, "name": "Deadly Tempest", "lang": "en", "released_at": "2015-11-13", "uri": "https://api.scryfall.com/cards/b9ca2810-3c1b-43cf-af1e-078015bf3492", "scryfall_uri": "https://scryfall.com/card/c15/19/deadly-tempest?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/b/9/b9ca2810-3c1b-43cf-af1e-078015bf3492.jpg?1562708889", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/9/b9ca2810-3c1b-43cf-af1e-078015bf3492.jpg?1562708889", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/b/9/b9ca2810-3c1b-43cf-af1e-078015bf3492.jpg?1562708889", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/b/9/b9ca2810-3c1b-43cf-af1e-078015bf3492.png?1562708889", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/9/b9ca2810-3c1b-43cf-af1e-078015bf3492.jpg?1562708889", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/b/9/b9ca2810-3c1b-43cf-af1e-078015bf3492.jpg?1562708889"}, "mana_cost": "{4}{B}{B}", "cmc": 6.0, "type_line": "Sorcery", "oracle_text": "Destroy all creatures. Each player loses life equal to the number of creatures they controlled that were destroyed this way.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "ea6c99f9-5489-4504-b30c-c819fa3b1fd3", "set": "c15", "set_name": "Commander 2015", "set_type": "commander", "set_uri": "https://api.scryfall.com/sets/ea6c99f9-5489-4504-b30c-c819fa3b1fd3", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ac15&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/c15?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/b9ca2810-3c1b-43cf-af1e-078015bf3492/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ab5516bc9-ec8d-4323-8748-96c49d7d0622&unique=prints", "collector_number": "19", "digital": false, "rarity": "rare", "flavor_text": "When the winds blow out of the abyss, death is the only harvest.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Cliff Childs", "artist_ids": ["ed6f7e03-20ba-4c73-bdda-4a4928480721"], "illustration_id": "df1f8a60-871f-416a-a12a-7cf7cdad0181", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "edhrec_rank": 1640, "prices": {"usd": "0.53", "usd_foil": null, "usd_etched": null, "eur": "0.20", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=405194", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Deadly+Tempest&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Deadly+Tempest&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Deadly+Tempest"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/107808?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Deadly+Tempest&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Deadly+Tempest&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "f480df6d-e227-4ccb-ad6d-a4ad48a360ad", "oracle_id": "4d877c28-5276-4ea6-91c6-eeed890ca545", "multiverse_ids": [464034], "mtgo_id": 72542, "tcgplayer_id": 191139, "cardmarket_id": 375213, "name": "Dead of Winter", "lang": "en", "released_at": "2019-06-14", "uri": "https://api.scryfall.com/cards/f480df6d-e227-4ccb-ad6d-a4ad48a360ad", "scryfall_uri": "https://scryfall.com/card/mh1/85/dead-of-winter?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/f/4/f480df6d-e227-4ccb-ad6d-a4ad48a360ad.jpg?1562201599", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/4/f480df6d-e227-4ccb-ad6d-a4ad48a360ad.jpg?1562201599", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/f/4/f480df6d-e227-4ccb-ad6d-a4ad48a360ad.jpg?1562201599", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/f/4/f480df6d-e227-4ccb-ad6d-a4ad48a360ad.png?1562201599", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/4/f480df6d-e227-4ccb-ad6d-a4ad48a360ad.jpg?1562201599", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/f/4/f480df6d-e227-4ccb-ad6d-a4ad48a360ad.jpg?1562201599"}, "mana_cost": "{2}{B}", "cmc": 3.0, "type_line": "Sorcery", "oracle_text": "All nonsnow creatures get -X/-X until end of turn, where X is the number of snow permanents you control.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "d7efccd6-55bc-4fb8-9138-e72577510a99", "set": "mh1", "set_name": "Modern Horizons", "set_type": "draft_innovation", "set_uri": "https://api.scryfall.com/sets/d7efccd6-55bc-4fb8-9138-e72577510a99", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Amh1&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/mh1?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/f480df6d-e227-4ccb-ad6d-a4ad48a360ad/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A4d877c28-5276-4ea6-91c6-eeed890ca545&unique=prints", "collector_number": "85", "digital": false, "rarity": "rare", "flavor_text": "\"At last, silence.\"\n\u2014Tevesh Szat", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Zack Stella", "artist_ids": ["17bc7f55-958b-43f4-bb40-09746d05b3f9"], "illustration_id": "e26c41af-96a2-47b6-a94f-a3e626c59b37", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 3423, "preview": {"source": "Turn One Thoughtseize", "source_uri": "https://turnonethoughtseize.com/2019/05/28/modern-horizons-free-preview/", "previewed_at": "2019-05-28"}, "prices": {"usd": "0.40", "usd_foil": "3.90", "usd_etched": null, "eur": "0.81", "eur_foil": "4.00", "tix": "0.01"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=464034", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Dead+of+Winter&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Dead+of+Winter&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Dead+of+Winter"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/191139?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Dead+of+Winter&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/72542?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "1e115a81-001d-4e17-98af-6a63f2b0967f", "oracle_id": "c9bbebbd-9f2d-499c-adb1-8d3170c3fd0d", "multiverse_ids": [452915], "mtgo_id": 69703, "arena_id": 68626, "tcgplayer_id": 176417, "cardmarket_id": 363863, "name": "Deafening Clarion", "lang": "en", "released_at": "2018-10-05", "uri": "https://api.scryfall.com/cards/1e115a81-001d-4e17-98af-6a63f2b0967f", "scryfall_uri": "https://scryfall.com/card/grn/165/deafening-clarion?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/1/e/1e115a81-001d-4e17-98af-6a63f2b0967f.jpg?1572893584", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/e/1e115a81-001d-4e17-98af-6a63f2b0967f.jpg?1572893584", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/1/e/1e115a81-001d-4e17-98af-6a63f2b0967f.jpg?1572893584", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/1/e/1e115a81-001d-4e17-98af-6a63f2b0967f.png?1572893584", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/e/1e115a81-001d-4e17-98af-6a63f2b0967f.jpg?1572893584", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/1/e/1e115a81-001d-4e17-98af-6a63f2b0967f.jpg?1572893584"}, "mana_cost": "{1}{R}{W}", "cmc": 3.0, "type_line": "Sorcery", "oracle_text": "Choose one or both \u2014\n\u2022 Deafening Clarion deals 3 damage to each creature.\n\u2022 Creatures you control gain lifelink until end of turn.", "colors": ["R", "W"], "color_identity": ["R", "W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "597c6d4a-8212-4903-a6af-12c4ae9e13f0", "set": "grn", "set_name": "Guilds of Ravnica", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/597c6d4a-8212-4903-a6af-12c4ae9e13f0", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Agrn&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/grn?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/1e115a81-001d-4e17-98af-6a63f2b0967f/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ac9bbebbd-9f2d-499c-adb1-8d3170c3fd0d&unique=prints", "collector_number": "165", "digital": false, "rarity": "rare", "watermark": "boros", "flavor_text": "\"Commander, what's the signal to attack?\"\n\"You'll know.\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Adam Paquette", "artist_ids": ["89023dad-e6c0-41e0-83fb-eb2bfbbdc3f2"], "illustration_id": "bc0bfc55-0209-4838-8e7c-6e2383cbc431", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 3993, "penny_rank": 629, "prices": {"usd": "0.22", "usd_foil": "1.34", "usd_etched": null, "eur": "0.21", "eur_foil": "0.99", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=452915", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Deafening+Clarion&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Deafening+Clarion&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Deafening+Clarion"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/176417?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Deafening+Clarion&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/69703?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "97a0bfb9-859b-4fed-a1c4-1f0924715801", "oracle_id": "680f5eca-b98e-4f73-a852-ab629d94297e", "multiverse_ids": [50647], "mtgo_id": 20461, "mtgo_foil_id": 20462, "tcgplayer_id": 11603, "cardmarket_id": 382, "name": "Death Cloud", "lang": "en", "released_at": "2004-02-06", "uri": "https://api.scryfall.com/cards/97a0bfb9-859b-4fed-a1c4-1f0924715801", "scryfall_uri": "https://scryfall.com/card/dst/40/death-cloud?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/9/7/97a0bfb9-859b-4fed-a1c4-1f0924715801.jpg?1562638297", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/7/97a0bfb9-859b-4fed-a1c4-1f0924715801.jpg?1562638297", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/9/7/97a0bfb9-859b-4fed-a1c4-1f0924715801.jpg?1562638297", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/9/7/97a0bfb9-859b-4fed-a1c4-1f0924715801.png?1562638297", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/7/97a0bfb9-859b-4fed-a1c4-1f0924715801.jpg?1562638297", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/9/7/97a0bfb9-859b-4fed-a1c4-1f0924715801.jpg?1562638297"}, "mana_cost": "{X}{B}{B}{B}", "cmc": 3.0, "type_line": "Sorcery", "oracle_text": "Each player loses X life, discards X cards, sacrifices X creatures, then sacrifices X lands.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "e29cb2dd-1345-4032-abfe-e52e8c8ce074", "set": "dst", "set_name": "Darksteel", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/e29cb2dd-1345-4032-abfe-e52e8c8ce074", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Adst&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/dst?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/97a0bfb9-859b-4fed-a1c4-1f0924715801/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A680f5eca-b98e-4f73-a852-ab629d94297e&unique=prints", "collector_number": "40", "digital": false, "rarity": "rare", "flavor_text": "The swarm's million wings stir the foulest of breezes.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Stephen Tappin", "artist_ids": ["bb596c13-9c39-4b11-8a7b-c88944826e70"], "illustration_id": "01bb3c3b-88bf-4536-a8da-49f15300f097", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 4983, "penny_rank": 1552, "prices": {"usd": "5.93", "usd_foil": "36.88", "usd_etched": null, "eur": "2.53", "eur_foil": "16.99", "tix": "0.01"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=50647", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Death+Cloud&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Death+Cloud&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Death+Cloud"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/11603?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Death+Cloud&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/20461?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "92096311-a3fa-41fc-b7a9-71ac2310f7fe", "oracle_id": "0842cc1d-de1e-4fb7-a54b-78a4c8f40d3e", "multiverse_ids": [386513], "mtgo_id": 54148, "mtgo_foil_id": 54149, "tcgplayer_id": 93219, "cardmarket_id": 269533, "name": "Death Frenzy", "lang": "en", "released_at": "2014-09-26", "uri": "https://api.scryfall.com/cards/92096311-a3fa-41fc-b7a9-71ac2310f7fe", "scryfall_uri": "https://scryfall.com/card/ktk/172/death-frenzy?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/9/2/92096311-a3fa-41fc-b7a9-71ac2310f7fe.jpg?1562790443", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/2/92096311-a3fa-41fc-b7a9-71ac2310f7fe.jpg?1562790443", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/9/2/92096311-a3fa-41fc-b7a9-71ac2310f7fe.jpg?1562790443", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/9/2/92096311-a3fa-41fc-b7a9-71ac2310f7fe.png?1562790443", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/2/92096311-a3fa-41fc-b7a9-71ac2310f7fe.jpg?1562790443", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/9/2/92096311-a3fa-41fc-b7a9-71ac2310f7fe.jpg?1562790443"}, "mana_cost": "{3}{B}{G}", "cmc": 5.0, "type_line": "Sorcery", "oracle_text": "All creatures get -2/-2 until end of turn. Whenever a creature dies this turn, you gain 1 life.", "colors": ["B", "G"], "color_identity": ["B", "G"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "6c7a715c-ded9-449e-89b0-c665773e9c3c", "set": "ktk", "set_name": "Khans of Tarkir", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/6c7a715c-ded9-449e-89b0-c665773e9c3c", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aktk&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ktk?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/92096311-a3fa-41fc-b7a9-71ac2310f7fe/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A0842cc1d-de1e-4fb7-a54b-78a4c8f40d3e&unique=prints", "collector_number": "172", "digital": false, "rarity": "uncommon", "watermark": "sultai", "flavor_text": "The crocodiles' putrid jaws swallow everything but the screams.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Steve Prescott", "artist_ids": ["a1139fb8-41f5-4a9e-9a74-f662e1a23b35"], "illustration_id": "504d5c6b-efd0-4d52-91e2-c9c0af4a12a1", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 15023, "penny_rank": 2975, "prices": {"usd": "0.08", "usd_foil": "0.19", "usd_etched": null, "eur": "0.02", "eur_foil": "0.17", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=386513", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Death+Frenzy&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Death+Frenzy&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Death+Frenzy"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/93219?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Death+Frenzy&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/54148?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "73744717-518c-478e-9da9-201c49124f37", "oracle_id": "6679b462-3c90-418c-8727-acd1a61d988b", "multiverse_ids": [44335], "mtgo_id": 18846, "mtgo_foil_id": 18847, "tcgplayer_id": 10910, "cardmarket_id": 1078, "name": "Decree of Annihilation", "lang": "en", "released_at": "2003-05-26", "uri": "https://api.scryfall.com/cards/73744717-518c-478e-9da9-201c49124f37", "scryfall_uri": "https://scryfall.com/card/scg/85/decree-of-annihilation?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/7/3/73744717-518c-478e-9da9-201c49124f37.jpg?1562530626", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/3/73744717-518c-478e-9da9-201c49124f37.jpg?1562530626", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/7/3/73744717-518c-478e-9da9-201c49124f37.jpg?1562530626", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/7/3/73744717-518c-478e-9da9-201c49124f37.png?1562530626", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/3/73744717-518c-478e-9da9-201c49124f37.jpg?1562530626", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/7/3/73744717-518c-478e-9da9-201c49124f37.jpg?1562530626"}, "mana_cost": "{8}{R}{R}", "cmc": 10.0, "type_line": "Sorcery", "oracle_text": "Exile all artifacts, creatures, and lands from the battlefield, all cards from all graveyards, and all cards from all hands.\nCycling {5}{R}{R} ({5}{R}{R}, Discard this card: Draw a card.)\nWhen you cycle Decree of Annihilation, destroy all lands.", "colors": ["R"], "color_identity": ["R"], "keywords": ["Cycling"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "5133c3a1-1412-4ce6-a1f0-73b695966ded", "set": "scg", "set_name": "Scourge", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/5133c3a1-1412-4ce6-a1f0-73b695966ded", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ascg&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/scg?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/73744717-518c-478e-9da9-201c49124f37/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A6679b462-3c90-418c-8727-acd1a61d988b&unique=prints", "collector_number": "85", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "John Avon", "artist_ids": ["798f3932-30e0-4420-aa3f-db4d613f89ca"], "illustration_id": "487723b1-b991-427d-8317-79f07366147e", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 5676, "penny_rank": 1021, "prices": {"usd": "2.67", "usd_foil": "26.31", "usd_etched": null, "eur": "1.76", "eur_foil": "12.00", "tix": "0.16"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=44335", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Decree+of+Annihilation&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Decree+of+Annihilation&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Decree+of+Annihilation"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/10910?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Decree+of+Annihilation&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/18846?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "e1958a07-fc75-41cd-ac45-d92d49587754", "oracle_id": "932668fa-d6e3-41c0-ad0c-8e0a00e68d11", "multiverse_ids": [43522], "mtgo_id": 18814, "mtgo_foil_id": 18815, "tcgplayer_id": 10890, "cardmarket_id": 1057, "name": "Decree of Pain", "lang": "en", "released_at": "2003-05-26", "uri": "https://api.scryfall.com/cards/e1958a07-fc75-41cd-ac45-d92d49587754", "scryfall_uri": "https://scryfall.com/card/scg/64/decree-of-pain?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/e/1/e1958a07-fc75-41cd-ac45-d92d49587754.jpg?1562536145", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/1/e1958a07-fc75-41cd-ac45-d92d49587754.jpg?1562536145", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/e/1/e1958a07-fc75-41cd-ac45-d92d49587754.jpg?1562536145", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/e/1/e1958a07-fc75-41cd-ac45-d92d49587754.png?1562536145", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/1/e1958a07-fc75-41cd-ac45-d92d49587754.jpg?1562536145", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/e/1/e1958a07-fc75-41cd-ac45-d92d49587754.jpg?1562536145"}, "mana_cost": "{6}{B}{B}", "cmc": 8.0, "type_line": "Sorcery", "oracle_text": "Destroy all creatures. They can't be regenerated. Draw a card for each creature destroyed this way.\nCycling {3}{B}{B} ({3}{B}{B}, Discard this card: Draw a card.)\nWhen you cycle Decree of Pain, all creatures get -2/-2 until end of turn.", "colors": ["B"], "color_identity": ["B"], "keywords": ["Cycling"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "5133c3a1-1412-4ce6-a1f0-73b695966ded", "set": "scg", "set_name": "Scourge", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/5133c3a1-1412-4ce6-a1f0-73b695966ded", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ascg&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/scg?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/e1958a07-fc75-41cd-ac45-d92d49587754/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A932668fa-d6e3-41c0-ad0c-8e0a00e68d11&unique=prints", "collector_number": "64", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Carl Critchlow", "artist_ids": ["17948f16-611a-44b8-8d10-9895a0bdfff1"], "illustration_id": "4627a46d-a6f2-4841-b877-dbea22e394d3", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 1227, "prices": {"usd": "4.20", "usd_foil": "20.49", "usd_etched": null, "eur": "2.45", "eur_foil": "16.99", "tix": "0.39"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=43522", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Decree+of+Pain&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Decree+of+Pain&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Decree+of+Pain"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/10890?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Decree+of+Pain&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/18814?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "03c37c68-cccf-4309-80c5-828108b942a4", "oracle_id": "932668fa-d6e3-41c0-ad0c-8e0a00e68d11", "multiverse_ids": [338453], "tcgplayer_id": 67183, "cardmarket_id": 259313, "name": "Decree of Pain", "lang": "en", "released_at": "2012-11-02", "uri": "https://api.scryfall.com/cards/03c37c68-cccf-4309-80c5-828108b942a4", "scryfall_uri": "https://scryfall.com/card/cm1/3/decree-of-pain?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/0/3/03c37c68-cccf-4309-80c5-828108b942a4.jpg?1569957295", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/3/03c37c68-cccf-4309-80c5-828108b942a4.jpg?1569957295", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/0/3/03c37c68-cccf-4309-80c5-828108b942a4.jpg?1569957295", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/0/3/03c37c68-cccf-4309-80c5-828108b942a4.png?1569957295", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/3/03c37c68-cccf-4309-80c5-828108b942a4.jpg?1569957295", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/0/3/03c37c68-cccf-4309-80c5-828108b942a4.jpg?1569957295"}, "mana_cost": "{6}{B}{B}", "cmc": 8.0, "type_line": "Sorcery", "oracle_text": "Destroy all creatures. They can't be regenerated. Draw a card for each creature destroyed this way.\nCycling {3}{B}{B} ({3}{B}{B}, Discard this card: Draw a card.)\nWhen you cycle Decree of Pain, all creatures get -2/-2 until end of turn.", "colors": ["B"], "color_identity": ["B"], "keywords": ["Cycling"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper"], "reserved": false, "foil": true, "nonfoil": false, "finishes": ["foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "bf95efbe-b991-4f7c-b9e9-04f0bc59969a", "set": "cm1", "set_name": "Commander's Arsenal", "set_type": "arsenal", "set_uri": "https://api.scryfall.com/sets/bf95efbe-b991-4f7c-b9e9-04f0bc59969a", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Acm1&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/cm1?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/03c37c68-cccf-4309-80c5-828108b942a4/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A932668fa-d6e3-41c0-ad0c-8e0a00e68d11&unique=prints", "collector_number": "3", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Mathias Kollros", "artist_ids": ["2ae0dd12-047c-4efb-80d7-bccc3bac5fba"], "illustration_id": "d2102537-6787-4f20-a7a0-034e89c2994d", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "edhrec_rank": 1227, "prices": {"usd": null, "usd_foil": "7.97", "usd_etched": null, "eur": null, "eur_foil": "4.00", "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=338453", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Decree+of+Pain&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Decree+of+Pain&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Decree+of+Pain"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/67183?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Decree+of+Pain&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Decree+of+Pain&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "e59903e3-a344-4218-9d41-8b19a9bc8311", "oracle_id": "99915b5a-5092-4900-8824-6de2aab1b2c1", "multiverse_ids": [567241], "tcgplayer_id": 273623, "cardmarket_id": 661378, "name": "Delayed Blast Fireball", "lang": "en", "released_at": "2022-06-10", "uri": "https://api.scryfall.com/cards/e59903e3-a344-4218-9d41-8b19a9bc8311", "scryfall_uri": "https://scryfall.com/card/clb/676/delayed-blast-fireball?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/e/5/e59903e3-a344-4218-9d41-8b19a9bc8311.jpg?1654082475", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/5/e59903e3-a344-4218-9d41-8b19a9bc8311.jpg?1654082475", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/e/5/e59903e3-a344-4218-9d41-8b19a9bc8311.jpg?1654082475", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/e/5/e59903e3-a344-4218-9d41-8b19a9bc8311.png?1654082475", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/5/e59903e3-a344-4218-9d41-8b19a9bc8311.jpg?1654082475", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/e/5/e59903e3-a344-4218-9d41-8b19a9bc8311.jpg?1654082475"}, "mana_cost": "{1}{R}{R}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Delayed Blast Fireball deals 2 damage to each opponent and each creature they control. If this spell was cast from exile, it deals 5 damage to each opponent and each creature they control instead.\nForetell {4}{R}{R} (During your turn, you may pay {2} and exile this card from your hand face down. Cast it on a later turn for its foretell cost.)", "colors": ["R"], "color_identity": ["R"], "keywords": ["Foretell"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "5e4c3fe8-fd57-4b20-ad56-c03790a16cea", "set": "clb", "set_name": "Commander Legends: Battle for Baldur's Gate", "set_type": "draft_innovation", "set_uri": "https://api.scryfall.com/sets/5e4c3fe8-fd57-4b20-ad56-c03790a16cea", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aclb&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/clb?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/e59903e3-a344-4218-9d41-8b19a9bc8311/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A99915b5a-5092-4900-8824-6de2aab1b2c1&unique=prints", "collector_number": "676", "digital": false, "rarity": "rare", "watermark": "foretell", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Andreas Zafiratos", "artist_ids": ["e2f13a9a-57c5-40de-81d4-3b0723899cdf"], "illustration_id": "cd1d9353-e6e1-4b37-96c4-997225948ead", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "edhrec_rank": 6527, "prices": {"usd": "3.58", "usd_foil": null, "usd_etched": null, "eur": "5.39", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=567241", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Delayed+Blast+Fireball&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Delayed+Blast+Fireball&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Delayed+Blast+Fireball"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/273623?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Delayed+Blast+Fireball&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Delayed+Blast+Fireball&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "c53c1898-9107-4bf8-b249-d0502fb9596d", "oracle_id": "4a83c2fa-f2d2-4b86-8407-4269f127936d", "multiverse_ids": [555211], "mtgo_id": 98239, "arena_id": 80161, "tcgplayer_id": 268680, "cardmarket_id": 651620, "name": "Depopulate", "lang": "en", "released_at": "2022-04-29", "uri": "https://api.scryfall.com/cards/c53c1898-9107-4bf8-b249-d0502fb9596d", "scryfall_uri": "https://scryfall.com/card/snc/10/depopulate?utm_source=api", "layout": "normal", "highres_image": false, "image_status": "lowres", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/c/5/c53c1898-9107-4bf8-b249-d0502fb9596d.jpg?1649698259", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/5/c53c1898-9107-4bf8-b249-d0502fb9596d.jpg?1649698259", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/c/5/c53c1898-9107-4bf8-b249-d0502fb9596d.jpg?1649698259", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/c/5/c53c1898-9107-4bf8-b249-d0502fb9596d.png?1649698259", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/5/c53c1898-9107-4bf8-b249-d0502fb9596d.jpg?1649698259", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/c/5/c53c1898-9107-4bf8-b249-d0502fb9596d.jpg?1649698259"}, "mana_cost": "{2}{W}{W}", "cmc": 4.0, "type_line": "Sorcery", "oracle_text": "Each player who controls a multicolored creature draws a card. Then destroy all creatures.", "colors": ["W"], "color_identity": ["W"], "keywords": [], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo", "arena"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "df837242-8c15-42e4-b049-c933a02dc501", "set": "snc", "set_name": "Streets of New Capenna", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/df837242-8c15-42e4-b049-c933a02dc501", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Asnc&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/snc?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/c53c1898-9107-4bf8-b249-d0502fb9596d/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A4a83c2fa-f2d2-4b86-8407-4269f127936d&unique=prints", "collector_number": "10", "digital": false, "rarity": "rare", "flavor_text": "No screams rang out. No blood stained the streets. In an instant, the bustling metropolis simply fell silent.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Jokubas Uogintas", "artist_ids": ["2c14303e-97a3-45fa-9bd8-59e5332a65f9"], "illustration_id": "d232c3f5-fadd-4898-9e0f-d8830ec82367", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 8906, "preview": {"source": "Wizards of the Coast", "source_uri": "https://magic.wizards.com/en/articles/archive/card-image-gallery/streets-of-new-capenna", "previewed_at": "2022-04-11"}, "prices": {"usd": "0.20", "usd_foil": "0.21", "usd_etched": null, "eur": "0.41", "eur_foil": "0.25", "tix": "0.01"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=555211", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Depopulate&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Depopulate&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Depopulate"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/268680?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Depopulate&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/98239?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "c9ff2cbf-a1dc-4cc5-9a5d-8439899d4e87", "oracle_id": "9cbf95f4-3510-420b-9355-645450f4493d", "multiverse_ids": [409751], "mtgo_id": 60192, "mtgo_foil_id": 60193, "tcgplayer_id": 115274, "cardmarket_id": 288882, "name": "Descend upon the Sinful", "lang": "en", "released_at": "2016-04-08", "uri": "https://api.scryfall.com/cards/c9ff2cbf-a1dc-4cc5-9a5d-8439899d4e87", "scryfall_uri": "https://scryfall.com/card/soi/13/descend-upon-the-sinful?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/c/9/c9ff2cbf-a1dc-4cc5-9a5d-8439899d4e87.jpg?1576383726", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/9/c9ff2cbf-a1dc-4cc5-9a5d-8439899d4e87.jpg?1576383726", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/c/9/c9ff2cbf-a1dc-4cc5-9a5d-8439899d4e87.jpg?1576383726", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/c/9/c9ff2cbf-a1dc-4cc5-9a5d-8439899d4e87.png?1576383726", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/9/c9ff2cbf-a1dc-4cc5-9a5d-8439899d4e87.jpg?1576383726", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/c/9/c9ff2cbf-a1dc-4cc5-9a5d-8439899d4e87.jpg?1576383726"}, "mana_cost": "{4}{W}{W}", "cmc": 6.0, "type_line": "Sorcery", "oracle_text": "Exile all creatures.\nDelirium \u2014 Create a 4/4 white Angel creature token with flying if there are four or more card types among cards in your graveyard.", "colors": ["W"], "color_identity": ["W"], "keywords": ["Delirium"], "all_parts": [{"object": "related_card", "id": "c9ff2cbf-a1dc-4cc5-9a5d-8439899d4e87", "component": "combo_piece", "name": "Descend upon the Sinful", "type_line": "Sorcery", "uri": "https://api.scryfall.com/cards/c9ff2cbf-a1dc-4cc5-9a5d-8439899d4e87"}, {"object": "related_card", "id": "bdb975fe-ac30-4249-bb55-7efb64645e4d", "component": "token", "name": "Angel", "type_line": "Token Creature \u2014 Angel", "uri": "https://api.scryfall.com/cards/bdb975fe-ac30-4249-bb55-7efb64645e4d"}], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "5e914d7e-c1e9-446c-a33d-d093c02b2743", "set": "soi", "set_name": "Shadows over Innistrad", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/5e914d7e-c1e9-446c-a33d-d093c02b2743", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Asoi&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/soi?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/c9ff2cbf-a1dc-4cc5-9a5d-8439899d4e87/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A9cbf95f4-3510-420b-9355-645450f4493d&unique=prints", "collector_number": "13", "digital": false, "rarity": "mythic", "flavor_text": "Above the cries, a phrase rang out: \"You will all be saved.\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Tyler Jacobson", "artist_ids": ["522af130-8db4-4b4b-950c-6e2b246339cf"], "illustration_id": "b74a42a8-a6d6-4713-b7cf-be86cb926846", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 5518, "penny_rank": 1765, "prices": {"usd": "0.33", "usd_foil": "2.84", "usd_etched": null, "eur": "0.44", "eur_foil": "1.79", "tix": "0.01"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=409751", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Descend+upon+the+Sinful&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Descend+upon+the+Sinful&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Descend+upon+the+Sinful"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/115274?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Descend+upon+the+Sinful&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/60192?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "588ad2bf-405d-4c36-b485-e415c22f2703", "oracle_id": "230bf3a4-68a8-4553-b8d7-ad340cbd7371", "multiverse_ids": [10626], "tcgplayer_id": 448, "cardmarket_id": 11300, "name": "Desert Sandstorm", "lang": "en", "released_at": "1999-07-06", "uri": "https://api.scryfall.com/cards/588ad2bf-405d-4c36-b485-e415c22f2703", "scryfall_uri": "https://scryfall.com/card/ptk/107/desert-sandstorm?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/5/8/588ad2bf-405d-4c36-b485-e415c22f2703.jpg?1562256542", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/8/588ad2bf-405d-4c36-b485-e415c22f2703.jpg?1562256542", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/5/8/588ad2bf-405d-4c36-b485-e415c22f2703.jpg?1562256542", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/5/8/588ad2bf-405d-4c36-b485-e415c22f2703.png?1562256542", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/8/588ad2bf-405d-4c36-b485-e415c22f2703.jpg?1562256542", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/5/8/588ad2bf-405d-4c36-b485-e415c22f2703.jpg?1562256542"}, "mana_cost": "{2}{R}", "cmc": 3.0, "type_line": "Sorcery", "oracle_text": "Desert Sandstorm deals 1 damage to each creature.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "2676ff2e-9d86-4b5b-b935-e84e41b0755e", "set": "ptk", "set_name": "Portal Three Kingdoms", "set_type": "starter", "set_uri": "https://api.scryfall.com/sets/2676ff2e-9d86-4b5b-b935-e84e41b0755e", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aptk&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ptk?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/588ad2bf-405d-4c36-b485-e415c22f2703/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A230bf3a4-68a8-4553-b8d7-ad340cbd7371&unique=prints", "collector_number": "107", "digital": false, "rarity": "common", "flavor_text": "While pursuing the remnants of Yuan Shao's forces into the Wuhan Desert, Cao Cao was temporarily turned back by a fierce sandstorm.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Xu Tan", "artist_ids": ["7f865ed1-edcf-4a61-b178-f12f74e0f617"], "illustration_id": "9a191d10-44a2-401a-8bca-2f293acce40f", "border_color": "white", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 22122, "prices": {"usd": "8.33", "usd_foil": null, "usd_etched": null, "eur": "13.95", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=10626", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Desert+Sandstorm&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Desert+Sandstorm&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Desert+Sandstorm"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/448?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Desert+Sandstorm&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Desert+Sandstorm&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "1abde258-08e0-4762-8142-38e08a960f9d", "oracle_id": "b0967525-554b-41eb-b639-75fe36e0fe57", "multiverse_ids": [205046], "mtgo_id": 37434, "mtgo_foil_id": 37435, "tcgplayer_id": 35576, "cardmarket_id": 241984, "name": "Destructive Force", "lang": "en", "released_at": "2010-07-16", "uri": "https://api.scryfall.com/cards/1abde258-08e0-4762-8142-38e08a960f9d", "scryfall_uri": "https://scryfall.com/card/m11/133/destructive-force?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/1/a/1abde258-08e0-4762-8142-38e08a960f9d.jpg?1562452402", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/a/1abde258-08e0-4762-8142-38e08a960f9d.jpg?1562452402", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/1/a/1abde258-08e0-4762-8142-38e08a960f9d.jpg?1562452402", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/1/a/1abde258-08e0-4762-8142-38e08a960f9d.png?1562452402", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/a/1abde258-08e0-4762-8142-38e08a960f9d.jpg?1562452402", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/1/a/1abde258-08e0-4762-8142-38e08a960f9d.jpg?1562452402"}, "mana_cost": "{5}{R}{R}", "cmc": 7.0, "type_line": "Sorcery", "oracle_text": "Each player sacrifices five lands. Destructive Force deals 5 damage to each creature.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "485d2468-18c8-42a4-9482-ca1c51e0470e", "set": "m11", "set_name": "Magic 2011", "set_type": "core", "set_uri": "https://api.scryfall.com/sets/485d2468-18c8-42a4-9482-ca1c51e0470e", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Am11&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/m11?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/1abde258-08e0-4762-8142-38e08a960f9d/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ab0967525-554b-41eb-b639-75fe36e0fe57&unique=prints", "collector_number": "133", "digital": false, "rarity": "rare", "flavor_text": "The end of the world rarely comes quietly.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Jung Park", "artist_ids": ["269392ac-4c06-4650-98e2-d49a5a7f2371"], "illustration_id": "f1edb843-ceff-466b-abee-e233b0f9fbe9", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 10265, "penny_rank": 2946, "prices": {"usd": "0.27", "usd_foil": "1.82", "usd_etched": null, "eur": "0.31", "eur_foil": "1.49", "tix": "0.01"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=205046", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Destructive+Force&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Destructive+Force&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Destructive+Force"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/35576?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Destructive+Force&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/37434?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "bfe7c990-a34b-475e-a612-447c22f998d3", "oracle_id": "90b3e2df-182d-4dad-9934-597a048fefc6", "multiverse_ids": [24631], "mtgo_id": 14271, "mtgo_foil_id": 14272, "tcgplayer_id": 7292, "cardmarket_id": 3981, "name": "Devastate", "lang": "en", "released_at": "2000-06-05", "uri": "https://api.scryfall.com/cards/bfe7c990-a34b-475e-a612-447c22f998d3", "scryfall_uri": "https://scryfall.com/card/pcy/87/devastate?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/b/f/bfe7c990-a34b-475e-a612-447c22f998d3.jpg?1562930849", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/f/bfe7c990-a34b-475e-a612-447c22f998d3.jpg?1562930849", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/b/f/bfe7c990-a34b-475e-a612-447c22f998d3.jpg?1562930849", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/b/f/bfe7c990-a34b-475e-a612-447c22f998d3.png?1562930849", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/f/bfe7c990-a34b-475e-a612-447c22f998d3.jpg?1562930849", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/b/f/bfe7c990-a34b-475e-a612-447c22f998d3.jpg?1562930849"}, "mana_cost": "{3}{R}{R}", "cmc": 5.0, "type_line": "Sorcery", "oracle_text": "Destroy target land. Devastate deals 1 damage to each creature and each player.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "c233bd36-57c0-4aa2-ae6c-7aeabfb4e3ce", "set": "pcy", "set_name": "Prophecy", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/c233bd36-57c0-4aa2-ae6c-7aeabfb4e3ce", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Apcy&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/pcy?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/bfe7c990-a34b-475e-a612-447c22f998d3/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A90b3e2df-182d-4dad-9934-597a048fefc6&unique=prints", "collector_number": "87", "digital": false, "rarity": "common", "flavor_text": "\"You're willing to die for your homeland. I'm willing to kill for it.\"\n\u2014Latulla, Keldon overseer", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Greg Staples", "artist_ids": ["93d65564-bf00-447b-8406-e2031f03b6b1"], "illustration_id": "6f56cfd0-03a2-42b4-8f75-672cceae273a", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 19997, "prices": {"usd": "0.07", "usd_foil": "1.39", "usd_etched": null, "eur": "0.02", "eur_foil": "0.74", "tix": "0.04"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=24631", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Devastate&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Devastate&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Devastate"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/7292?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Devastate&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/14271?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "9fffeed0-a5ea-47ac-a7a4-0cc3bb1d408a", "oracle_id": "18994c4c-9b5d-4b58-a5c3-646fbc92f9c7", "multiverse_ids": [30561], "mtgo_id": 17283, "mtgo_foil_id": 17284, "tcgplayer_id": 9650, "cardmarket_id": 2364, "name": "Devastating Dreams", "lang": "en", "released_at": "2002-02-04", "uri": "https://api.scryfall.com/cards/9fffeed0-a5ea-47ac-a7a4-0cc3bb1d408a", "scryfall_uri": "https://scryfall.com/card/tor/95/devastating-dreams?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/9/f/9fffeed0-a5ea-47ac-a7a4-0cc3bb1d408a.jpg?1562631212", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/f/9fffeed0-a5ea-47ac-a7a4-0cc3bb1d408a.jpg?1562631212", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/9/f/9fffeed0-a5ea-47ac-a7a4-0cc3bb1d408a.jpg?1562631212", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/9/f/9fffeed0-a5ea-47ac-a7a4-0cc3bb1d408a.png?1562631212", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/f/9fffeed0-a5ea-47ac-a7a4-0cc3bb1d408a.jpg?1562631212", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/9/f/9fffeed0-a5ea-47ac-a7a4-0cc3bb1d408a.jpg?1562631212"}, "mana_cost": "{R}{R}", "cmc": 2.0, "type_line": "Sorcery", "oracle_text": "As an additional cost to cast this spell, discard X cards at random.\nEach player sacrifices X lands. Devastating Dreams deals X damage to each creature.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "e0b3fda1-a6ca-4996-849b-08b463d39484", "set": "tor", "set_name": "Torment", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/e0b3fda1-a6ca-4996-849b-08b463d39484", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ator&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/tor?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/9fffeed0-a5ea-47ac-a7a4-0cc3bb1d408a/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A18994c4c-9b5d-4b58-a5c3-646fbc92f9c7&unique=prints", "collector_number": "95", "digital": false, "rarity": "rare", "flavor_text": "Kamahl dreams of storms of fire.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Tony Szczudlo", "artist_ids": ["1952c90b-a5a7-4328-9f7c-e11064f59daf"], "illustration_id": "6808683e-f8c6-4444-9177-7d6f5ca13bf7", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 15533, "penny_rank": 1458, "prices": {"usd": "0.52", "usd_foil": "17.66", "usd_etched": null, "eur": "0.75", "eur_foil": "10.97", "tix": "0.08"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=30561", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Devastating+Dreams&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Devastating+Dreams&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Devastating+Dreams"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/9650?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Devastating+Dreams&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/17283?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "71cce019-162c-4969-89ac-1cf94148a032", "oracle_id": "052838cb-dcf0-46f5-82b1-c3ed863b42b7", "multiverse_ids": [4334], "tcgplayer_id": 652, "cardmarket_id": 10113, "name": "Devastation", "lang": "en", "released_at": "1997-05-01", "uri": "https://api.scryfall.com/cards/71cce019-162c-4969-89ac-1cf94148a032", "scryfall_uri": "https://scryfall.com/card/por/123/devastation?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/7/1/71cce019-162c-4969-89ac-1cf94148a032.jpg?1562446865", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/1/71cce019-162c-4969-89ac-1cf94148a032.jpg?1562446865", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/7/1/71cce019-162c-4969-89ac-1cf94148a032.jpg?1562446865", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/7/1/71cce019-162c-4969-89ac-1cf94148a032.png?1562446865", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/1/71cce019-162c-4969-89ac-1cf94148a032.jpg?1562446865", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/7/1/71cce019-162c-4969-89ac-1cf94148a032.jpg?1562446865"}, "mana_cost": "{5}{R}{R}", "cmc": 7.0, "type_line": "Sorcery", "oracle_text": "Destroy all creatures and lands.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "478c47df-5058-4ce6-830e-7e80732b2ca9", "set": "por", "set_name": "Portal", "set_type": "starter", "set_uri": "https://api.scryfall.com/sets/478c47df-5058-4ce6-830e-7e80732b2ca9", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Apor&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/por?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/71cce019-162c-4969-89ac-1cf94148a032/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A052838cb-dcf0-46f5-82b1-c3ed863b42b7&unique=prints", "collector_number": "123", "digital": false, "rarity": "rare", "flavor_text": "There is much talk about the art of creation. What about the art of destruction?", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Steve Luke", "artist_ids": ["e2b0133e-a28d-45d1-8843-26285b41d61d"], "illustration_id": "ed686dda-d05f-4e7a-9532-eb6764afb651", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 10578, "prices": {"usd": "20.96", "usd_foil": null, "usd_etched": null, "eur": "18.40", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=4334", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Devastation&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Devastation&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Devastation"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/652?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Devastation&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Devastation&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "9318ae4a-1084-49d9-b5de-dbe4d80836cb", "oracle_id": "3322c865-bb2a-4201-9115-979883cd7894", "multiverse_ids": [193579], "mtgo_id": 36564, "mtgo_foil_id": 36565, "tcgplayer_id": 34835, "cardmarket_id": 22501, "name": "Disaster Radius", "lang": "en", "released_at": "2010-04-23", "uri": "https://api.scryfall.com/cards/9318ae4a-1084-49d9-b5de-dbe4d80836cb", "scryfall_uri": "https://scryfall.com/card/roe/141/disaster-radius?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/9/3/9318ae4a-1084-49d9-b5de-dbe4d80836cb.jpg?1562706406", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/3/9318ae4a-1084-49d9-b5de-dbe4d80836cb.jpg?1562706406", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/9/3/9318ae4a-1084-49d9-b5de-dbe4d80836cb.jpg?1562706406", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/9/3/9318ae4a-1084-49d9-b5de-dbe4d80836cb.png?1562706406", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/3/9318ae4a-1084-49d9-b5de-dbe4d80836cb.jpg?1562706406", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/9/3/9318ae4a-1084-49d9-b5de-dbe4d80836cb.jpg?1562706406"}, "mana_cost": "{5}{R}{R}", "cmc": 7.0, "type_line": "Sorcery", "oracle_text": "As an additional cost to cast this spell, reveal a creature card from your hand.\nDisaster Radius deals X damage to each creature your opponents control, where X is the revealed card's mana value.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "eadb8a82-ec56-4623-b50e-42e7e60cb535", "set": "roe", "set_name": "Rise of the Eldrazi", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/eadb8a82-ec56-4623-b50e-42e7e60cb535", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aroe&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/roe?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/9318ae4a-1084-49d9-b5de-dbe4d80836cb/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A3322c865-bb2a-4201-9115-979883cd7894&unique=prints", "collector_number": "141", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "James Paick", "artist_ids": ["1a7be0a2-d8ac-45c7-b0a0-eb0886f47b5f"], "illustration_id": "118cf1a5-a9d6-4ba6-bbf5-b15f3230519a", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 9610, "penny_rank": 11185, "prices": {"usd": "0.22", "usd_foil": "0.99", "usd_etched": null, "eur": "0.15", "eur_foil": "0.99", "tix": "0.01"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=193579", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Disaster+Radius&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Disaster+Radius&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Disaster+Radius"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/34835?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Disaster+Radius&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/36564?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "b6d11422-60a9-4386-8e7f-dd7dcdac58d8", "oracle_id": "586da84b-1384-4da2-983d-340c22b73eb8", "multiverse_ids": [13136], "mtgo_id": 15468, "mtgo_foil_id": 15469, "tcgplayer_id": 2874, "cardmarket_id": 2941, "name": "Disorder", "lang": "en", "released_at": "2001-04-11", "uri": "https://api.scryfall.com/cards/b6d11422-60a9-4386-8e7f-dd7dcdac58d8", "scryfall_uri": "https://scryfall.com/card/7ed/179/disorder?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/b/6/b6d11422-60a9-4386-8e7f-dd7dcdac58d8.jpg?1562246308", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/6/b6d11422-60a9-4386-8e7f-dd7dcdac58d8.jpg?1562246308", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/b/6/b6d11422-60a9-4386-8e7f-dd7dcdac58d8.jpg?1562246308", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/b/6/b6d11422-60a9-4386-8e7f-dd7dcdac58d8.png?1562246308", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/6/b6d11422-60a9-4386-8e7f-dd7dcdac58d8.jpg?1562246308", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/b/6/b6d11422-60a9-4386-8e7f-dd7dcdac58d8.jpg?1562246308"}, "mana_cost": "{1}{R}", "cmc": 2.0, "type_line": "Sorcery", "oracle_text": "Disorder deals 2 damage to each white creature and each player who controls a white creature.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "230f38aa-9511-4db8-a3aa-aeddbc3f7bb9", "set": "7ed", "set_name": "Seventh Edition", "set_type": "core", "set_uri": "https://api.scryfall.com/sets/230f38aa-9511-4db8-a3aa-aeddbc3f7bb9", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3A7ed&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/7ed?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/b6d11422-60a9-4386-8e7f-dd7dcdac58d8/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A586da84b-1384-4da2-983d-340c22b73eb8&unique=prints", "collector_number": "179", "digital": false, "rarity": "uncommon", "flavor_text": "\"Fire hurts them almost as much as the chaos that follows. Almost.\"\n\u2014The Western Paladin", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Glen Angus", "artist_ids": ["7be3b9e4-de9b-4a3d-884e-e67b9681d409"], "illustration_id": "aab3db8a-8edb-4261-9063-b06b49cd8e01", "border_color": "white", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 22705, "penny_rank": 10026, "prices": {"usd": "0.14", "usd_foil": "12.96", "usd_etched": null, "eur": "0.40", "eur_foil": "6.99", "tix": "0.06"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=13136", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Disorder&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Disorder&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Disorder"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/2874?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Disorder&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/15468?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "3fa5ec10-dfea-4e6d-8996-553a4a0eb8a4", "oracle_id": "586da84b-1384-4da2-983d-340c22b73eb8", "multiverse_ids": [5854], "mtgo_id": 12205, "mtgo_foil_id": 12206, "tcgplayer_id": 6846, "cardmarket_id": 10388, "name": "Disorder", "lang": "en", "released_at": "1998-10-12", "uri": "https://api.scryfall.com/cards/3fa5ec10-dfea-4e6d-8996-553a4a0eb8a4", "scryfall_uri": "https://scryfall.com/card/usg/181/disorder?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/3/f/3fa5ec10-dfea-4e6d-8996-553a4a0eb8a4.jpg?1562908220", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/f/3fa5ec10-dfea-4e6d-8996-553a4a0eb8a4.jpg?1562908220", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/3/f/3fa5ec10-dfea-4e6d-8996-553a4a0eb8a4.jpg?1562908220", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/3/f/3fa5ec10-dfea-4e6d-8996-553a4a0eb8a4.png?1562908220", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/f/3fa5ec10-dfea-4e6d-8996-553a4a0eb8a4.jpg?1562908220", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/3/f/3fa5ec10-dfea-4e6d-8996-553a4a0eb8a4.jpg?1562908220"}, "mana_cost": "{1}{R}", "cmc": 2.0, "type_line": "Sorcery", "oracle_text": "Disorder deals 2 damage to each white creature and each player who controls a white creature.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "c330df40-51db-4caf-bde6-48df6c181001", "set": "usg", "set_name": "Urza's Saga", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/c330df40-51db-4caf-bde6-48df6c181001", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ausg&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/usg?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/3fa5ec10-dfea-4e6d-8996-553a4a0eb8a4/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A586da84b-1384-4da2-983d-340c22b73eb8&unique=prints", "collector_number": "181", "digital": false, "rarity": "uncommon", "flavor_text": "\"Then, just when the other guys were winnin', the sky threw up.\"\n\u2014Jula, goblin raider", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Terese Nielsen", "artist_ids": ["eb55171c-2342-45f4-a503-2d5a75baf752"], "illustration_id": "875a21c2-8053-47c3-ae6f-e6a2d9a7f8ee", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 22705, "penny_rank": 10026, "prices": {"usd": "0.19", "usd_foil": null, "usd_etched": null, "eur": "0.10", "eur_foil": null, "tix": "0.18"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=5854", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Disorder&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Disorder&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Disorder"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/6846?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Disorder&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/12205?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "446ea3a4-206a-4097-87c1-c04bb7812972", "oracle_id": "15d8b339-7520-43c9-b2dc-4a936357042b", "multiverse_ids": [245196], "mtgo_id": 42710, "mtgo_foil_id": 42711, "tcgplayer_id": 52198, "cardmarket_id": 250550, "name": "Divine Reckoning", "lang": "en", "released_at": "2011-09-30", "uri": "https://api.scryfall.com/cards/446ea3a4-206a-4097-87c1-c04bb7812972", "scryfall_uri": "https://scryfall.com/card/isd/10/divine-reckoning?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/4/4/446ea3a4-206a-4097-87c1-c04bb7812972.jpg?1562829296", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/4/446ea3a4-206a-4097-87c1-c04bb7812972.jpg?1562829296", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/4/4/446ea3a4-206a-4097-87c1-c04bb7812972.jpg?1562829296", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/4/4/446ea3a4-206a-4097-87c1-c04bb7812972.png?1562829296", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/4/446ea3a4-206a-4097-87c1-c04bb7812972.jpg?1562829296", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/4/4/446ea3a4-206a-4097-87c1-c04bb7812972.jpg?1562829296"}, "mana_cost": "{2}{W}{W}", "cmc": 4.0, "type_line": "Sorcery", "oracle_text": "Each player chooses a creature they control. Destroy the rest.\nFlashback {5}{W}{W} (You may cast this card from your graveyard for its flashback cost. Then exile it.)", "colors": ["W"], "color_identity": ["W"], "keywords": ["Flashback"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "d1026945-2969-42b9-be53-f941405a58cb", "set": "isd", "set_name": "Innistrad", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/d1026945-2969-42b9-be53-f941405a58cb", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aisd&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/isd?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/446ea3a4-206a-4097-87c1-c04bb7812972/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A15d8b339-7520-43c9-b2dc-4a936357042b&unique=prints", "collector_number": "10", "digital": false, "rarity": "rare", "flavor_text": "Survival of the purest.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Greg Staples", "artist_ids": ["93d65564-bf00-447b-8406-e2031f03b6b1"], "illustration_id": "2c3f01ec-4e54-43db-b41c-aa4579ec0628", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 1172, "penny_rank": 6573, "prices": {"usd": "0.42", "usd_foil": "3.96", "usd_etched": null, "eur": "0.37", "eur_foil": "0.50", "tix": "0.01"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=245196", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Divine+Reckoning&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Divine+Reckoning&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Divine+Reckoning"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/52198?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Divine+Reckoning&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/42710?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "130ee895-1e5e-4f82-bb66-e1275bac75dd", "oracle_id": "38ece0fa-2c94-4eae-b6ab-74b783862f3e", "multiverse_ids": [503613], "mtgo_id": 87337, "arena_id": 75044, "tcgplayer_id": 230872, "cardmarket_id": 532432, "name": "Doomskar", "lang": "en", "released_at": "2021-02-05", "uri": "https://api.scryfall.com/cards/130ee895-1e5e-4f82-bb66-e1275bac75dd", "scryfall_uri": "https://scryfall.com/card/khm/9/doomskar?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/1/3/130ee895-1e5e-4f82-bb66-e1275bac75dd.jpg?1631045641", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/3/130ee895-1e5e-4f82-bb66-e1275bac75dd.jpg?1631045641", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/1/3/130ee895-1e5e-4f82-bb66-e1275bac75dd.jpg?1631045641", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/1/3/130ee895-1e5e-4f82-bb66-e1275bac75dd.png?1631045641", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/3/130ee895-1e5e-4f82-bb66-e1275bac75dd.jpg?1631045641", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/1/3/130ee895-1e5e-4f82-bb66-e1275bac75dd.jpg?1631045641"}, "mana_cost": "{3}{W}{W}", "cmc": 5.0, "type_line": "Sorcery", "oracle_text": "Destroy all creatures.\nForetell {1}{W}{W} (During your turn, you may pay {2} and exile this card from your hand face down. Cast it on a later turn for its foretell cost.)", "colors": ["W"], "color_identity": ["W"], "keywords": ["Foretell"], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "43057fad-b1c1-437f-bc48-0045bce6d8c9", "set": "khm", "set_name": "Kaldheim", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/43057fad-b1c1-437f-bc48-0045bce6d8c9", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Akhm&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/khm?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/130ee895-1e5e-4f82-bb66-e1275bac75dd/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A38ece0fa-2c94-4eae-b6ab-74b783862f3e&unique=prints", "collector_number": "9", "digital": false, "rarity": "rare", "watermark": "foretell", "flavor_text": "The realms crashed together, with Bretagard at the center of the calamity.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Piotr Dura", "artist_ids": ["aff176e8-1d15-432e-ad1d-207a474decba"], "illustration_id": "7aa7a9f7-3037-48b6-905e-59b2201e0116", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": true, "story_spotlight": true, "edhrec_rank": 1414, "preview": {"source": "Wizards of the Coast", "source_uri": "https://magic.wizards.com/en/articles/archive/making-magic/norsing-around-part-2-2021-01-18", "previewed_at": "2021-01-18"}, "prices": {"usd": "0.59", "usd_foil": "1.04", "usd_etched": null, "eur": "1.88", "eur_foil": "3.49", "tix": "0.19"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=503613", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Doomskar&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Doomskar&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Doomskar"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/230872?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Doomskar&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/87337?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "05f63cd9-e82b-4cf8-b8ce-f0aa0157692b", "oracle_id": "f25af42d-f1bf-4bd3-aded-ecadafdbf6e6", "multiverse_ids": [23059], "mtgo_id": 14403, "mtgo_foil_id": 14404, "tcgplayer_id": 7478, "cardmarket_id": 3474, "name": "Do or Die", "lang": "en", "released_at": "2000-10-02", "uri": "https://api.scryfall.com/cards/05f63cd9-e82b-4cf8-b8ce-f0aa0157692b", "scryfall_uri": "https://scryfall.com/card/inv/102/do-or-die?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/0/5/05f63cd9-e82b-4cf8-b8ce-f0aa0157692b.jpg?1562896148", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/5/05f63cd9-e82b-4cf8-b8ce-f0aa0157692b.jpg?1562896148", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/0/5/05f63cd9-e82b-4cf8-b8ce-f0aa0157692b.jpg?1562896148", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/0/5/05f63cd9-e82b-4cf8-b8ce-f0aa0157692b.png?1562896148", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/5/05f63cd9-e82b-4cf8-b8ce-f0aa0157692b.jpg?1562896148", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/0/5/05f63cd9-e82b-4cf8-b8ce-f0aa0157692b.jpg?1562896148"}, "mana_cost": "{1}{B}", "cmc": 2.0, "type_line": "Sorcery", "oracle_text": "Separate all creatures target player controls into two piles. Destroy all creatures in the pile of that player's choice. They can't be regenerated.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "b9ae5e02-7726-47ca-b5e4-5ec402b41cd1", "set": "inv", "set_name": "Invasion", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/b9ae5e02-7726-47ca-b5e4-5ec402b41cd1", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ainv&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/inv?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/05f63cd9-e82b-4cf8-b8ce-f0aa0157692b/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Af25af42d-f1bf-4bd3-aded-ecadafdbf6e6&unique=prints", "collector_number": "102", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Christopher Moeller", "artist_ids": ["21e10012-06ae-44f2-b38d-3824dd2e73d4"], "illustration_id": "09845b3e-be95-45d0-bbe9-3e44045777db", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 11389, "prices": {"usd": "6.24", "usd_foil": "26.49", "usd_etched": null, "eur": "1.43", "eur_foil": "14.99", "tix": "0.32"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=23059", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Do+or+Die&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Do+or+Die&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Do+or+Die"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/7478?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Do+or+Die&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/14403?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "657de246-b9fc-47b1-b932-091e9500bb82", "oracle_id": "9fe75f56-c2e4-4c82-8113-039b8c486fae", "multiverse_ids": [513573], "mtgo_id": 88669, "arena_id": 76489, "tcgplayer_id": 235879, "cardmarket_id": 557989, "name": "Draconic Intervention", "lang": "en", "released_at": "2021-04-23", "uri": "https://api.scryfall.com/cards/657de246-b9fc-47b1-b932-091e9500bb82", "scryfall_uri": "https://scryfall.com/card/stx/96/draconic-intervention?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/6/5/657de246-b9fc-47b1-b932-091e9500bb82.jpg?1624591671", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/5/657de246-b9fc-47b1-b932-091e9500bb82.jpg?1624591671", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/6/5/657de246-b9fc-47b1-b932-091e9500bb82.jpg?1624591671", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/6/5/657de246-b9fc-47b1-b932-091e9500bb82.png?1624591671", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/5/657de246-b9fc-47b1-b932-091e9500bb82.jpg?1624591671", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/6/5/657de246-b9fc-47b1-b932-091e9500bb82.jpg?1624591671"}, "mana_cost": "{2}{R}{R}", "cmc": 4.0, "type_line": "Sorcery", "oracle_text": "As an additional cost to cast this spell, exile an instant or sorcery card from your graveyard.\nDraconic Intervention deals X damage to each non-Dragon creature, where X is the exiled card's mana value. If a creature dealt damage this way would die this turn, exile it instead.\nExile Draconic Intervention.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "541c3c28-8747-40e5-a231-8e8f33234859", "set": "stx", "set_name": "Strixhaven: School of Mages", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/541c3c28-8747-40e5-a231-8e8f33234859", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Astx&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/stx?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/657de246-b9fc-47b1-b932-091e9500bb82/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A9fe75f56-c2e4-4c82-8113-039b8c486fae&unique=prints", "collector_number": "96", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Johan Grenier", "artist_ids": ["465e38b8-7eed-4d22-a6d2-d3603ee0c00b"], "illustration_id": "c984a5e8-38db-41ef-8cbc-91300102b9fd", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": true, "story_spotlight": true, "edhrec_rank": 7529, "penny_rank": 5146, "preview": {"source": "Wizards of the Coast", "source_uri": "https://cafe.naver.com/mtgkr?iframe_url_utf8=%2FArticleRead.nhn%253Fclubid%3D30250607%2526articleid%3D2255%2526referrerAllArticles%3Dtrue", "previewed_at": "2021-03-31"}, "prices": {"usd": "0.13", "usd_foil": "0.20", "usd_etched": null, "eur": "0.23", "eur_foil": "0.30", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=513573", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Draconic+Intervention&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Draconic+Intervention&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Draconic+Intervention"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/235879?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Draconic+Intervention&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/88669?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "287c7570-8080-43dc-a586-963e15566446", "oracle_id": "5c93ec85-f87f-4121-9fbf-61fd598d1e65", "multiverse_ids": [378437], "mtgo_id": 51679, "mtgo_foil_id": 51680, "tcgplayer_id": 78754, "cardmarket_id": 265599, "name": "Drown in Sorrow", "lang": "en", "released_at": "2014-02-07", "uri": "https://api.scryfall.com/cards/287c7570-8080-43dc-a586-963e15566446", "scryfall_uri": "https://scryfall.com/card/bng/65/drown-in-sorrow?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/2/8/287c7570-8080-43dc-a586-963e15566446.jpg?1593091908", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/8/287c7570-8080-43dc-a586-963e15566446.jpg?1593091908", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/2/8/287c7570-8080-43dc-a586-963e15566446.jpg?1593091908", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/2/8/287c7570-8080-43dc-a586-963e15566446.png?1593091908", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/8/287c7570-8080-43dc-a586-963e15566446.jpg?1593091908", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/2/8/287c7570-8080-43dc-a586-963e15566446.jpg?1593091908"}, "mana_cost": "{1}{B}{B}", "cmc": 3.0, "type_line": "Sorcery", "oracle_text": "All creatures get -2/-2 until end of turn. Scry 1. (Look at the top card of your library. You may put that card on the bottom of your library.)", "colors": ["B"], "color_identity": ["B"], "keywords": ["Scry"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "50a80fe4-a757-408f-ad23-52c5cc5f45cc", "set": "bng", "set_name": "Born of the Gods", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/50a80fe4-a757-408f-ad23-52c5cc5f45cc", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Abng&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/bng?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/287c7570-8080-43dc-a586-963e15566446/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A5c93ec85-f87f-4121-9fbf-61fd598d1e65&unique=prints", "collector_number": "65", "digital": false, "rarity": "uncommon", "flavor_text": "\"The sad truth is that the whip of Erebos is long enough to wrap around all our throats.\"\n\u2014Perisophia the philosopher", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Noah Bradley", "artist_ids": ["81995d11-da98-4f8b-89bd-b88ca2ddb06b"], "illustration_id": "286a90a1-57b8-4f32-bb6a-05cfb9b01e8b", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 13530, "penny_rank": 2077, "prices": {"usd": "0.08", "usd_foil": "0.28", "usd_etched": null, "eur": "0.06", "eur_foil": "0.99", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=378437", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Drown+in+Sorrow&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Drown+in+Sorrow&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Drown+in+Sorrow"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/78754?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Drown+in+Sorrow&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/51679?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "107cdfa4-da15-4610-9b72-e6e6c59deec4", "oracle_id": "5c93ec85-f87f-4121-9fbf-61fd598d1e65", "multiverse_ids": [], "mtgo_id": 88296, "name": "Drown in Sorrow", "lang": "en", "released_at": "2021-02-28", "uri": "https://api.scryfall.com/cards/107cdfa4-da15-4610-9b72-e6e6c59deec4", "scryfall_uri": "https://scryfall.com/card/prm/88296/drown-in-sorrow?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/1/0/107cdfa4-da15-4610-9b72-e6e6c59deec4.jpg?1630641355", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/0/107cdfa4-da15-4610-9b72-e6e6c59deec4.jpg?1630641355", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/1/0/107cdfa4-da15-4610-9b72-e6e6c59deec4.jpg?1630641355", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/1/0/107cdfa4-da15-4610-9b72-e6e6c59deec4.png?1630641355", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/0/107cdfa4-da15-4610-9b72-e6e6c59deec4.jpg?1630641355", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/1/0/107cdfa4-da15-4610-9b72-e6e6c59deec4.jpg?1630641355"}, "mana_cost": "{1}{B}{B}", "cmc": 3.0, "type_line": "Sorcery", "oracle_text": "All creatures get -2/-2 until end of turn. Scry 1. (Look at the top card of your library. You may put that card on the bottom of your library.)", "colors": ["B"], "color_identity": ["B"], "keywords": ["Scry"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": true, "reprint": true, "variation": false, "set_id": "638940fb-6be9-4be3-b83f-68d3902fbbe5", "set": "prm", "set_name": "Magic Online Promos", "set_type": "promo", "set_uri": "https://api.scryfall.com/sets/638940fb-6be9-4be3-b83f-68d3902fbbe5", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aprm&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/prm?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/107cdfa4-da15-4610-9b72-e6e6c59deec4/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A5c93ec85-f87f-4121-9fbf-61fd598d1e65&unique=prints", "collector_number": "88296", "digital": true, "rarity": "uncommon", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Valera Lutfullina", "artist_ids": ["76bc57c7-47c6-40c5-8797-8ffcce430ac7"], "illustration_id": "67941ba6-f045-403a-8caa-7254ac006705", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "edhrec_rank": 13530, "penny_rank": 2077, "prices": {"usd": null, "usd_foil": null, "usd_etched": null, "eur": null, "eur_foil": null, "tix": "0.04"}, "related_uris": {"tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Drown+in+Sorrow&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Drown+in+Sorrow&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Drown+in+Sorrow"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/search/magic/product?productLineName=magic&q=Drown+in+Sorrow&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall&view=grid", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Drown+in+Sorrow&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/88296?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "a142f369-8fdd-4dc8-b5d9-3493455cc588", "oracle_id": "980a9957-6b52-45c6-b847-f84974d5a653", "multiverse_ids": [4218], "tcgplayer_id": 657, "cardmarket_id": 9997, "name": "Dry Spell", "lang": "en", "released_at": "1997-05-01", "uri": "https://api.scryfall.com/cards/a142f369-8fdd-4dc8-b5d9-3493455cc588", "scryfall_uri": "https://scryfall.com/card/por/90/dry-spell?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/a/1/a142f369-8fdd-4dc8-b5d9-3493455cc588.jpg?1562447357", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/1/a142f369-8fdd-4dc8-b5d9-3493455cc588.jpg?1562447357", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/a/1/a142f369-8fdd-4dc8-b5d9-3493455cc588.jpg?1562447357", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/a/1/a142f369-8fdd-4dc8-b5d9-3493455cc588.png?1562447357", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/1/a142f369-8fdd-4dc8-b5d9-3493455cc588.jpg?1562447357", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/a/1/a142f369-8fdd-4dc8-b5d9-3493455cc588.jpg?1562447357"}, "mana_cost": "{1}{B}", "cmc": 2.0, "type_line": "Sorcery", "oracle_text": "Dry Spell deals 1 damage to each creature and each player.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "478c47df-5058-4ce6-830e-7e80732b2ca9", "set": "por", "set_name": "Portal", "set_type": "starter", "set_uri": "https://api.scryfall.com/sets/478c47df-5058-4ce6-830e-7e80732b2ca9", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Apor&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/por?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/a142f369-8fdd-4dc8-b5d9-3493455cc588/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A980a9957-6b52-45c6-b847-f84974d5a653&unique=prints", "collector_number": "90", "digital": false, "rarity": "uncommon", "flavor_text": "A fist of dust to line your throat, a bowl of sand to fill your belly.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Roger Raupp", "artist_ids": ["79d6f296-1948-4a24-a2ce-a76e89057f23"], "illustration_id": "9ca8dbc5-f2af-4240-bd86-f8ebcf4ddfe0", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 17430, "penny_rank": 7503, "prices": {"usd": "0.28", "usd_foil": null, "usd_etched": null, "eur": "0.19", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=4218", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Dry+Spell&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Dry+Spell&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Dry+Spell"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/657?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Dry+Spell&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Dry+Spell&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "547c10ea-8ace-4496-8b99-61863c0cec1b", "oracle_id": "980a9957-6b52-45c6-b847-f84974d5a653", "multiverse_ids": [2916], "tcgplayer_id": 4482, "cardmarket_id": 7719, "name": "Dry Spell", "lang": "en", "released_at": "1995-10-01", "uri": "https://api.scryfall.com/cards/547c10ea-8ace-4496-8b99-61863c0cec1b", "scryfall_uri": "https://scryfall.com/card/hml/46a/dry-spell?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/5/4/547c10ea-8ace-4496-8b99-61863c0cec1b.jpg?1562587287", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/4/547c10ea-8ace-4496-8b99-61863c0cec1b.jpg?1562587287", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/5/4/547c10ea-8ace-4496-8b99-61863c0cec1b.jpg?1562587287", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/5/4/547c10ea-8ace-4496-8b99-61863c0cec1b.png?1562587287", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/4/547c10ea-8ace-4496-8b99-61863c0cec1b.jpg?1562587287", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/5/4/547c10ea-8ace-4496-8b99-61863c0cec1b.jpg?1562587287"}, "mana_cost": "{1}{B}", "cmc": 2.0, "type_line": "Sorcery", "oracle_text": "Dry Spell deals 1 damage to each creature and each player.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "5ac1f606-e682-46e9-ad0f-122a3783581b", "set": "hml", "set_name": "Homelands", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/5ac1f606-e682-46e9-ad0f-122a3783581b", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ahml&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/hml?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/547c10ea-8ace-4496-8b99-61863c0cec1b/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A980a9957-6b52-45c6-b847-f84974d5a653&unique=prints", "collector_number": "46a", "digital": false, "rarity": "common", "flavor_text": "\"Wherever water is lacking, all things suffer.\"\n\u2014Autumn Willow", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Brian Sn\u00f5ddy", "artist_ids": ["770b4e16-de76-49ed-949f-84e6d2e06d25"], "illustration_id": "4ae1dccc-3671-404d-ba93-551f083fd989", "border_color": "black", "frame": "1993", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 17430, "penny_rank": 7503, "prices": {"usd": "0.09", "usd_foil": null, "usd_etched": null, "eur": "0.16", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=2916", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Dry+Spell&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Dry+Spell&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Dry+Spell"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/4482?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Dry+Spell&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Dry+Spell&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "997ea663-40a1-49b7-80f1-2e1febc1b6fa", "oracle_id": "980a9957-6b52-45c6-b847-f84974d5a653", "multiverse_ids": [2917], "tcgplayer_id": 18275, "cardmarket_id": 7720, "name": "Dry Spell", "lang": "en", "released_at": "1995-10-01", "uri": "https://api.scryfall.com/cards/997ea663-40a1-49b7-80f1-2e1febc1b6fa", "scryfall_uri": "https://scryfall.com/card/hml/46b/dry-spell?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/9/9/997ea663-40a1-49b7-80f1-2e1febc1b6fa.jpg?1562587769", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/9/997ea663-40a1-49b7-80f1-2e1febc1b6fa.jpg?1562587769", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/9/9/997ea663-40a1-49b7-80f1-2e1febc1b6fa.jpg?1562587769", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/9/9/997ea663-40a1-49b7-80f1-2e1febc1b6fa.png?1562587769", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/9/997ea663-40a1-49b7-80f1-2e1febc1b6fa.jpg?1562587769", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/9/9/997ea663-40a1-49b7-80f1-2e1febc1b6fa.jpg?1562587769"}, "mana_cost": "{1}{B}", "cmc": 2.0, "type_line": "Sorcery", "oracle_text": "Dry Spell deals 1 damage to each creature and each player.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "5ac1f606-e682-46e9-ad0f-122a3783581b", "set": "hml", "set_name": "Homelands", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/5ac1f606-e682-46e9-ad0f-122a3783581b", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ahml&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/hml?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/997ea663-40a1-49b7-80f1-2e1febc1b6fa/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A980a9957-6b52-45c6-b847-f84974d5a653&unique=prints", "collector_number": "46b", "digital": false, "rarity": "common", "flavor_text": "\"My soul thirsts for Serra's salvation, as does my body for life's breath.\"\n\u2014Ihsan's Shade", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Brian Sn\u00f5ddy", "artist_ids": ["770b4e16-de76-49ed-949f-84e6d2e06d25"], "illustration_id": "349ff7f9-637a-4a03-9234-2766e8140164", "border_color": "black", "frame": "1993", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 17430, "penny_rank": 7503, "prices": {"usd": "0.12", "usd_foil": null, "usd_etched": null, "eur": "0.08", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=2917", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Dry+Spell&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Dry+Spell&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Dry+Spell"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/18275?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Dry+Spell&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Dry+Spell&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "8e3fba5b-b4cd-4050-b9f0-d8eabe82e7d6", "oracle_id": "14104a52-c4e8-4755-8196-7fa5c5a35f36", "multiverse_ids": [], "tcgplayer_id": 93369, "cardmarket_id": 269673, "name": "Duneblast", "lang": "en", "released_at": "2014-09-26", "uri": "https://api.scryfall.com/cards/8e3fba5b-b4cd-4050-b9f0-d8eabe82e7d6", "scryfall_uri": "https://scryfall.com/card/pktk/174s/duneblast?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/8/e/8e3fba5b-b4cd-4050-b9f0-d8eabe82e7d6.jpg?1562701635", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/e/8e3fba5b-b4cd-4050-b9f0-d8eabe82e7d6.jpg?1562701635", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/8/e/8e3fba5b-b4cd-4050-b9f0-d8eabe82e7d6.jpg?1562701635", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/8/e/8e3fba5b-b4cd-4050-b9f0-d8eabe82e7d6.png?1562701635", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/e/8e3fba5b-b4cd-4050-b9f0-d8eabe82e7d6.jpg?1562701635", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/8/e/8e3fba5b-b4cd-4050-b9f0-d8eabe82e7d6.jpg?1562701635"}, "mana_cost": "{4}{W}{B}{G}", "cmc": 7.0, "type_line": "Sorcery", "oracle_text": "Choose up to one creature. Destroy the rest.", "colors": ["B", "G", "W"], "color_identity": ["B", "G", "W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": true, "nonfoil": false, "finishes": ["foil"], "oversized": false, "promo": true, "reprint": true, "variation": false, "set_id": "95318a25-1983-40ae-b315-140160078e3c", "set": "pktk", "set_name": "Khans of Tarkir Promos", "set_type": "promo", "set_uri": "https://api.scryfall.com/sets/95318a25-1983-40ae-b315-140160078e3c", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Apktk&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/pktk?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/8e3fba5b-b4cd-4050-b9f0-d8eabe82e7d6/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A14104a52-c4e8-4755-8196-7fa5c5a35f36&unique=prints", "collector_number": "174s", "digital": false, "rarity": "rare", "watermark": "abzan", "flavor_text": "The Abzan turn to this spell only as a last resort, for its inevitable result is what they most dread: to be alone.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Ryan Alexander Lee", "artist_ids": ["f4d194b4-958a-4830-8d87-1a84e0b9ffbc"], "illustration_id": "bdf822a7-c8ff-43ba-97fd-a0e492bf395f", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "promo_types": ["setpromo", "datestamped", "prerelease"], "edhrec_rank": 3276, "penny_rank": 10644, "prices": {"usd": null, "usd_foil": "1.03", "usd_etched": null, "eur": null, "eur_foil": "0.40", "tix": null}, "related_uris": {"tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Duneblast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Duneblast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Duneblast"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/93369?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Duneblast&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Duneblast&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "8c1c6932-638a-4df7-bf9b-8d921f7484d9", "oracle_id": "2aae77ed-1a91-41f5-8dc2-e353d63a7586", "multiverse_ids": [1942], "tcgplayer_id": 3623, "cardmarket_id": 7505, "name": "Dwarven Catapult", "lang": "en", "released_at": "1994-11-01", "uri": "https://api.scryfall.com/cards/8c1c6932-638a-4df7-bf9b-8d921f7484d9", "scryfall_uri": "https://scryfall.com/card/fem/51/dwarven-catapult?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/8/c/8c1c6932-638a-4df7-bf9b-8d921f7484d9.jpg?1562921034", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/c/8c1c6932-638a-4df7-bf9b-8d921f7484d9.jpg?1562921034", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/8/c/8c1c6932-638a-4df7-bf9b-8d921f7484d9.jpg?1562921034", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/8/c/8c1c6932-638a-4df7-bf9b-8d921f7484d9.png?1562921034", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/c/8c1c6932-638a-4df7-bf9b-8d921f7484d9.jpg?1562921034", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/8/c/8c1c6932-638a-4df7-bf9b-8d921f7484d9.jpg?1562921034"}, "mana_cost": "{X}{R}", "cmc": 1.0, "type_line": "Instant", "oracle_text": "Dwarven Catapult deals X damage divided evenly, rounded down, among all creatures target opponent controls.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "legal", "premodern": "legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "cf7390b1-341a-4ae8-a325-da0f5f322f13", "set": "fem", "set_name": "Fallen Empires", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/cf7390b1-341a-4ae8-a325-da0f5f322f13", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Afem&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/fem?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/8c1c6932-638a-4df7-bf9b-8d921f7484d9/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A2aae77ed-1a91-41f5-8dc2-e353d63a7586&unique=prints", "collector_number": "51", "digital": false, "rarity": "uncommon", "flavor_text": "\"Often greatly outnumbered in battle, Dwarves relied on catapults as one means of damaging a large army.\"\n\u2014*Sarpadian Empires, vol. IV*", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Jeff A. Menges", "artist_ids": ["14a1de4b-1237-4e7b-8868-b71e87c9a46e"], "illustration_id": "92d57874-f3a3-4f1a-a65a-e838dcdc26b5", "border_color": "black", "frame": "1993", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 18257, "prices": {"usd": "0.17", "usd_foil": null, "usd_etched": null, "eur": "0.05", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=1942", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Dwarven+Catapult&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Dwarven+Catapult&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Dwarven+Catapult"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/3623?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Dwarven+Catapult&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Dwarven+Catapult&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "8f04dc5c-2764-42d0-974e-6d902222c138", "oracle_id": "9a40614b-50a3-422c-849e-53c8b7d3d204", "multiverse_ids": [11254], "mtgo_id": 15478, "mtgo_foil_id": 15479, "tcgplayer_id": 2881, "cardmarket_id": 2942, "name": "Earthquake", "lang": "en", "released_at": "2001-04-11", "uri": "https://api.scryfall.com/cards/8f04dc5c-2764-42d0-974e-6d902222c138", "scryfall_uri": "https://scryfall.com/card/7ed/180/earthquake?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/8/f/8f04dc5c-2764-42d0-974e-6d902222c138.jpg?1562242701", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/f/8f04dc5c-2764-42d0-974e-6d902222c138.jpg?1562242701", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/8/f/8f04dc5c-2764-42d0-974e-6d902222c138.jpg?1562242701", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/8/f/8f04dc5c-2764-42d0-974e-6d902222c138.png?1562242701", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/f/8f04dc5c-2764-42d0-974e-6d902222c138.jpg?1562242701", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/8/f/8f04dc5c-2764-42d0-974e-6d902222c138.jpg?1562242701"}, "mana_cost": "{X}{R}", "cmc": 1.0, "type_line": "Sorcery", "oracle_text": "Earthquake deals X damage to each creature without flying and each player.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "230f38aa-9511-4db8-a3aa-aeddbc3f7bb9", "set": "7ed", "set_name": "Seventh Edition", "set_type": "core", "set_uri": "https://api.scryfall.com/sets/230f38aa-9511-4db8-a3aa-aeddbc3f7bb9", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3A7ed&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/7ed?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/8f04dc5c-2764-42d0-974e-6d902222c138/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A9a40614b-50a3-422c-849e-53c8b7d3d204&unique=prints", "collector_number": "180", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Franz Vohwinkel", "artist_ids": ["3a243c17-3baa-4b53-9599-645311cd7d3d"], "illustration_id": "81a35fce-893f-4249-afef-3933d4935c0d", "border_color": "white", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 1437, "penny_rank": 2455, "prices": {"usd": "1.34", "usd_foil": "38.95", "usd_etched": null, "eur": "0.42", "eur_foil": "2.65", "tix": "0.11"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=11254", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Earthquake&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Earthquake&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Earthquake"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/2881?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Earthquake&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/15478?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "05126438-e806-43e6-bd81-233b629b4a1b", "oracle_id": "9a40614b-50a3-422c-849e-53c8b7d3d204", "multiverse_ids": [6609], "tcgplayer_id": 128, "cardmarket_id": 9914, "name": "Earthquake", "lang": "en", "released_at": "1998-06-24", "uri": "https://api.scryfall.com/cards/05126438-e806-43e6-bd81-233b629b4a1b", "scryfall_uri": "https://scryfall.com/card/p02/94/earthquake?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/0/5/05126438-e806-43e6-bd81-233b629b4a1b.jpg?1562896224", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/5/05126438-e806-43e6-bd81-233b629b4a1b.jpg?1562896224", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/0/5/05126438-e806-43e6-bd81-233b629b4a1b.jpg?1562896224", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/0/5/05126438-e806-43e6-bd81-233b629b4a1b.png?1562896224", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/5/05126438-e806-43e6-bd81-233b629b4a1b.jpg?1562896224", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/0/5/05126438-e806-43e6-bd81-233b629b4a1b.jpg?1562896224"}, "mana_cost": "{X}{R}", "cmc": 1.0, "type_line": "Sorcery", "oracle_text": "Earthquake deals X damage to each creature without flying and each player.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "ac67f18a-4f0e-407e-bab1-a9fe4f659565", "set": "p02", "set_name": "Portal Second Age", "set_type": "starter", "set_uri": "https://api.scryfall.com/sets/ac67f18a-4f0e-407e-bab1-a9fe4f659565", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ap02&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/p02?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/05126438-e806-43e6-bd81-233b629b4a1b/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A9a40614b-50a3-422c-849e-53c8b7d3d204&unique=prints", "collector_number": "94", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Jeffrey R. Busch", "artist_ids": ["b06664f7-1a9b-4b0c-b7d4-80df775d27a2"], "illustration_id": "507eb59a-fdb9-45c3-8c18-793bc4408203", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 1437, "penny_rank": 2455, "prices": {"usd": "6.88", "usd_foil": null, "usd_etched": null, "eur": "3.99", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=6609", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Earthquake&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Earthquake&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Earthquake"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/128?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Earthquake&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Earthquake&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "272f65a3-3c0c-417d-b5b6-276a643d643e", "oracle_id": "9a40614b-50a3-422c-849e-53c8b7d3d204", "multiverse_ids": [4335], "tcgplayer_id": 658, "cardmarket_id": 10114, "name": "Earthquake", "lang": "en", "released_at": "1997-05-01", "uri": "https://api.scryfall.com/cards/272f65a3-3c0c-417d-b5b6-276a643d643e", "scryfall_uri": "https://scryfall.com/card/por/124/earthquake?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/2/7/272f65a3-3c0c-417d-b5b6-276a643d643e.jpg?1562446144", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/7/272f65a3-3c0c-417d-b5b6-276a643d643e.jpg?1562446144", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/2/7/272f65a3-3c0c-417d-b5b6-276a643d643e.jpg?1562446144", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/2/7/272f65a3-3c0c-417d-b5b6-276a643d643e.png?1562446144", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/7/272f65a3-3c0c-417d-b5b6-276a643d643e.jpg?1562446144", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/2/7/272f65a3-3c0c-417d-b5b6-276a643d643e.jpg?1562446144"}, "mana_cost": "{X}{R}", "cmc": 1.0, "type_line": "Sorcery", "oracle_text": "Earthquake deals X damage to each creature without flying and each player.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "478c47df-5058-4ce6-830e-7e80732b2ca9", "set": "por", "set_name": "Portal", "set_type": "starter", "set_uri": "https://api.scryfall.com/sets/478c47df-5058-4ce6-830e-7e80732b2ca9", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Apor&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/por?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/272f65a3-3c0c-417d-b5b6-276a643d643e/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A9a40614b-50a3-422c-849e-53c8b7d3d204&unique=prints", "collector_number": "124", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Adrian Smith", "artist_ids": ["be42f6f3-66d4-4957-9f1e-0591f8b95364"], "illustration_id": "a19ba528-3ba5-468b-bba9-3952589c88b2", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 1437, "penny_rank": 2455, "prices": {"usd": "2.26", "usd_foil": null, "usd_etched": null, "eur": "0.95", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=4335", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Earthquake&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Earthquake&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Earthquake"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/658?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Earthquake&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Earthquake&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "01bde909-899d-4efc-aac5-57b69fa764db", "oracle_id": "9a40614b-50a3-422c-849e-53c8b7d3d204", "multiverse_ids": [4044], "tcgplayer_id": 2126, "cardmarket_id": 9595, "name": "Earthquake", "lang": "en", "released_at": "1997-03-24", "uri": "https://api.scryfall.com/cards/01bde909-899d-4efc-aac5-57b69fa764db", "scryfall_uri": "https://scryfall.com/card/5ed/223/earthquake?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/0/1/01bde909-899d-4efc-aac5-57b69fa764db.jpg?1562588740", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/1/01bde909-899d-4efc-aac5-57b69fa764db.jpg?1562588740", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/0/1/01bde909-899d-4efc-aac5-57b69fa764db.jpg?1562588740", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/0/1/01bde909-899d-4efc-aac5-57b69fa764db.png?1562588740", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/1/01bde909-899d-4efc-aac5-57b69fa764db.jpg?1562588740", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/0/1/01bde909-899d-4efc-aac5-57b69fa764db.jpg?1562588740"}, "mana_cost": "{X}{R}", "cmc": 1.0, "type_line": "Sorcery", "oracle_text": "Earthquake deals X damage to each creature without flying and each player.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "5afd2f4b-8309-4f45-a2b2-3785018474cb", "set": "5ed", "set_name": "Fifth Edition", "set_type": "core", "set_uri": "https://api.scryfall.com/sets/5afd2f4b-8309-4f45-a2b2-3785018474cb", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3A5ed&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/5ed?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/01bde909-899d-4efc-aac5-57b69fa764db/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A9a40614b-50a3-422c-849e-53c8b7d3d204&unique=prints", "collector_number": "223", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Richard Kane Ferguson", "artist_ids": ["191620ed-2361-444e-96a6-1fe7ce32ef3b"], "illustration_id": "f33d1a28-fb86-4731-992e-337ba588c2d1", "border_color": "white", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 1437, "penny_rank": 2455, "prices": {"usd": "1.69", "usd_foil": null, "usd_etched": null, "eur": "0.50", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=4044", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Earthquake&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Earthquake&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Earthquake"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/2126?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Earthquake&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Earthquake&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "e68ac362-6cdc-48a6-bdd3-4f8ea32add64", "oracle_id": "9a40614b-50a3-422c-849e-53c8b7d3d204", "multiverse_ids": [194], "tcgplayer_id": 1100, "cardmarket_id": 5380, "name": "Earthquake", "lang": "en", "released_at": "1993-08-05", "uri": "https://api.scryfall.com/cards/e68ac362-6cdc-48a6-bdd3-4f8ea32add64", "scryfall_uri": "https://scryfall.com/card/lea/146/earthquake?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/e/6/e68ac362-6cdc-48a6-bdd3-4f8ea32add64.jpg?1559591701", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/6/e68ac362-6cdc-48a6-bdd3-4f8ea32add64.jpg?1559591701", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/e/6/e68ac362-6cdc-48a6-bdd3-4f8ea32add64.jpg?1559591701", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/e/6/e68ac362-6cdc-48a6-bdd3-4f8ea32add64.png?1559591701", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/6/e68ac362-6cdc-48a6-bdd3-4f8ea32add64.jpg?1559591701", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/e/6/e68ac362-6cdc-48a6-bdd3-4f8ea32add64.jpg?1559591701"}, "mana_cost": "{X}{R}", "cmc": 1.0, "type_line": "Sorcery", "oracle_text": "Earthquake deals X damage to each creature without flying and each player.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "legal", "premodern": "legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "288bd996-960e-448b-a187-9504c1930c2c", "set": "lea", "set_name": "Limited Edition Alpha", "set_type": "core", "set_uri": "https://api.scryfall.com/sets/288bd996-960e-448b-a187-9504c1930c2c", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Alea&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/lea?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/e68ac362-6cdc-48a6-bdd3-4f8ea32add64/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A9a40614b-50a3-422c-849e-53c8b7d3d204&unique=prints", "collector_number": "146", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Dan Frazier", "artist_ids": ["059bba56-5feb-42e4-8c2e-e2f1e6ba11f9"], "illustration_id": "d7a7740b-7bd7-4c3f-b853-ff8d17f26992", "border_color": "black", "frame": "1993", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 1437, "penny_rank": 2455, "prices": {"usd": null, "usd_foil": null, "usd_etched": null, "eur": "849.99", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=194", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Earthquake&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Earthquake&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Earthquake"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/1100?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Earthquake&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Earthquake&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "5ed81ee8-d5e4-4127-876e-9bff81f9c726", "oracle_id": "99fd4b51-1698-4168-9366-a6ea2df22361", "multiverse_ids": [253545], "mtgo_id": 46339, "mtgo_foil_id": 46340, "tcgplayer_id": 66558, "cardmarket_id": 258451, "name": "Electrickery", "lang": "en", "released_at": "2012-10-05", "uri": "https://api.scryfall.com/cards/5ed81ee8-d5e4-4127-876e-9bff81f9c726", "scryfall_uri": "https://scryfall.com/card/rtr/93/electrickery?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/5/e/5ed81ee8-d5e4-4127-876e-9bff81f9c726.jpg?1562787062", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/e/5ed81ee8-d5e4-4127-876e-9bff81f9c726.jpg?1562787062", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/5/e/5ed81ee8-d5e4-4127-876e-9bff81f9c726.jpg?1562787062", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/5/e/5ed81ee8-d5e4-4127-876e-9bff81f9c726.png?1562787062", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/e/5ed81ee8-d5e4-4127-876e-9bff81f9c726.jpg?1562787062", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/5/e/5ed81ee8-d5e4-4127-876e-9bff81f9c726.jpg?1562787062"}, "mana_cost": "{R}", "cmc": 1.0, "type_line": "Instant", "oracle_text": "Electrickery deals 1 damage to target creature you don't control.\nOverload {1}{R} (You may cast this spell for its overload cost. If you do, change its text by replacing all instances of \"target\" with \"each.\")", "colors": ["R"], "color_identity": ["R"], "keywords": ["Overload"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "80b2374d-c5f1-403e-9772-f6c806fd275e", "set": "rtr", "set_name": "Return to Ravnica", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/80b2374d-c5f1-403e-9772-f6c806fd275e", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Artr&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/rtr?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/5ed81ee8-d5e4-4127-876e-9bff81f9c726/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A99fd4b51-1698-4168-9366-a6ea2df22361&unique=prints", "collector_number": "93", "digital": false, "rarity": "common", "watermark": "izzet", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Greg Staples", "artist_ids": ["93d65564-bf00-447b-8406-e2031f03b6b1"], "illustration_id": "539187ad-fc96-4423-95ae-288db6884159", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 7907, "penny_rank": 13913, "prices": {"usd": "0.25", "usd_foil": "1.97", "usd_etched": null, "eur": "0.42", "eur_foil": "2.49", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=253545", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Electrickery&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Electrickery&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Electrickery"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/66558?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Electrickery&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/46339?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "15326971-a53b-45f2-8f1d-1b82935286e1", "oracle_id": "db982577-1c75-4bc9-ab15-1888ea0be16d", "multiverse_ids": [39612], "mtgo_id": 17989, "mtgo_foil_id": 17990, "tcgplayer_id": 10546, "cardmarket_id": 1773, "name": "Endemic Plague", "lang": "en", "released_at": "2002-10-07", "uri": "https://api.scryfall.com/cards/15326971-a53b-45f2-8f1d-1b82935286e1", "scryfall_uri": "https://scryfall.com/card/ons/142/endemic-plague?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/1/5/15326971-a53b-45f2-8f1d-1b82935286e1.jpg?1562900082", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/5/15326971-a53b-45f2-8f1d-1b82935286e1.jpg?1562900082", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/1/5/15326971-a53b-45f2-8f1d-1b82935286e1.jpg?1562900082", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/1/5/15326971-a53b-45f2-8f1d-1b82935286e1.png?1562900082", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/5/15326971-a53b-45f2-8f1d-1b82935286e1.jpg?1562900082", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/1/5/15326971-a53b-45f2-8f1d-1b82935286e1.jpg?1562900082"}, "mana_cost": "{3}{B}", "cmc": 4.0, "type_line": "Sorcery", "oracle_text": "As an additional cost to cast this spell, sacrifice a creature.\nDestroy all creatures that share a creature type with the sacrificed creature. They can't be regenerated.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "914a6c6d-cb3b-45e8-a2db-9978a2339faf", "set": "ons", "set_name": "Onslaught", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/914a6c6d-cb3b-45e8-a2db-9978a2339faf", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aons&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ons?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/15326971-a53b-45f2-8f1d-1b82935286e1/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Adb982577-1c75-4bc9-ab15-1888ea0be16d&unique=prints", "collector_number": "142", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Nelson DeCastro", "artist_ids": ["0fdb4eb2-3c36-47ee-a207-a90557ff1bbd"], "illustration_id": "e9295ee4-8a3a-4c5d-aa68-e0d6011db2b9", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 19132, "prices": {"usd": "0.20", "usd_foil": "0.74", "usd_etched": null, "eur": "0.20", "eur_foil": "1.00", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=39612", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Endemic+Plague&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Endemic+Plague&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Endemic+Plague"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/10546?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Endemic+Plague&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/17989?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "80a53ed7-a7b7-40d8-9239-cf6f205dbc59", "oracle_id": "7b2e2c4b-b8fd-440c-8a79-de6532022745", "multiverse_ids": [386532], "mtgo_id": 54170, "mtgo_foil_id": 54171, "tcgplayer_id": 92837, "cardmarket_id": 269154, "name": "End Hostilities", "lang": "en", "released_at": "2014-09-26", "uri": "https://api.scryfall.com/cards/80a53ed7-a7b7-40d8-9239-cf6f205dbc59", "scryfall_uri": "https://scryfall.com/card/ktk/8/end-hostilities?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/8/0/80a53ed7-a7b7-40d8-9239-cf6f205dbc59.jpg?1562789330", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/0/80a53ed7-a7b7-40d8-9239-cf6f205dbc59.jpg?1562789330", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/8/0/80a53ed7-a7b7-40d8-9239-cf6f205dbc59.jpg?1562789330", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/8/0/80a53ed7-a7b7-40d8-9239-cf6f205dbc59.png?1562789330", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/0/80a53ed7-a7b7-40d8-9239-cf6f205dbc59.jpg?1562789330", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/8/0/80a53ed7-a7b7-40d8-9239-cf6f205dbc59.jpg?1562789330"}, "mana_cost": "{3}{W}{W}", "cmc": 5.0, "type_line": "Sorcery", "oracle_text": "Destroy all creatures and all permanents attached to creatures.", "colors": ["W"], "color_identity": ["W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "6c7a715c-ded9-449e-89b0-c665773e9c3c", "set": "ktk", "set_name": "Khans of Tarkir", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/6c7a715c-ded9-449e-89b0-c665773e9c3c", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aktk&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ktk?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/80a53ed7-a7b7-40d8-9239-cf6f205dbc59/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A7b2e2c4b-b8fd-440c-8a79-de6532022745&unique=prints", "collector_number": "8", "digital": false, "rarity": "rare", "flavor_text": "Her palm flared like the eye of a waking dragon. Then all was calm.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Jason Rainville", "artist_ids": ["6ed7e669-579b-443d-b223-e5cbcb2a7483"], "illustration_id": "86ad5fae-5ea5-40b0-917d-4e23384e29b2", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 5758, "penny_rank": 634, "prices": {"usd": "0.23", "usd_foil": "0.57", "usd_etched": null, "eur": "0.29", "eur_foil": "0.40", "tix": "0.01"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=386532", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=End+Hostilities&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=End+Hostilities&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=End+Hostilities"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/92837?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=End+Hostilities&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/54170?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "bec748e6-7245-4a71-aeee-cefed8346948", "oracle_id": "09618da4-6e2d-4047-96d7-0576c0754e7d", "multiverse_ids": [541010], "mtgo_id": 94648, "arena_id": 78958, "tcgplayer_id": 253770, "cardmarket_id": 583563, "name": "End the Festivities", "lang": "en", "released_at": "2021-11-19", "uri": "https://api.scryfall.com/cards/bec748e6-7245-4a71-aeee-cefed8346948", "scryfall_uri": "https://scryfall.com/card/vow/155/end-the-festivities?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/b/e/bec748e6-7245-4a71-aeee-cefed8346948.jpg?1643591154", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/e/bec748e6-7245-4a71-aeee-cefed8346948.jpg?1643591154", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/b/e/bec748e6-7245-4a71-aeee-cefed8346948.jpg?1643591154", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/b/e/bec748e6-7245-4a71-aeee-cefed8346948.png?1643591154", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/e/bec748e6-7245-4a71-aeee-cefed8346948.jpg?1643591154", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/b/e/bec748e6-7245-4a71-aeee-cefed8346948.jpg?1643591154"}, "mana_cost": "{R}", "cmc": 1.0, "type_line": "Sorcery", "oracle_text": "End the Festivities deals 1 damage to each opponent and each creature and planeswalker they control.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "8144b676-569f-4716-8005-bc8f0778f3fa", "set": "vow", "set_name": "Innistrad: Crimson Vow", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/8144b676-569f-4716-8005-bc8f0778f3fa", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Avow&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/vow?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/bec748e6-7245-4a71-aeee-cefed8346948/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A09618da4-6e2d-4047-96d7-0576c0754e7d&unique=prints", "collector_number": "155", "digital": false, "rarity": "common", "flavor_text": "When the defenses around Lurenbraum Fortress faltered, the Crimson Ballroom received some unexpected guests.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Chris Rallis", "artist_ids": ["a8e7b854-b15a-421a-b66d-6e68187ae285"], "illustration_id": "6df03a82-20bb-4985-a37b-9bb2f18aa2eb", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": true, "edhrec_rank": 6393, "preview": {"source": "Wizards of the Coast", "source_uri": "https://magic.wizards.com/en/articles/archive/card-image-gallery/innistrad-crimson-vow", "previewed_at": "2021-11-05"}, "prices": {"usd": "0.13", "usd_foil": "0.29", "usd_etched": null, "eur": "0.14", "eur_foil": "0.23", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=541010", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=End+the+Festivities&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=End+the+Festivities&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=End+the+Festivities"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/253770?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=End+the+Festivities&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/94648?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "22909767-a088-49ff-83be-37f967d1da3d", "oracle_id": "a3d4ed7c-c586-4581-96dc-977636d27583", "multiverse_ids": [409801], "mtgo_id": 60274, "mtgo_foil_id": 60275, "tcgplayer_id": 115983, "cardmarket_id": 289064, "name": "Engulf the Shore", "lang": "en", "released_at": "2016-04-08", "uri": "https://api.scryfall.com/cards/22909767-a088-49ff-83be-37f967d1da3d", "scryfall_uri": "https://scryfall.com/card/soi/58/engulf-the-shore?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/2/2/22909767-a088-49ff-83be-37f967d1da3d.jpg?1576384043", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/2/22909767-a088-49ff-83be-37f967d1da3d.jpg?1576384043", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/2/2/22909767-a088-49ff-83be-37f967d1da3d.jpg?1576384043", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/2/2/22909767-a088-49ff-83be-37f967d1da3d.png?1576384043", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/2/22909767-a088-49ff-83be-37f967d1da3d.jpg?1576384043", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/2/2/22909767-a088-49ff-83be-37f967d1da3d.jpg?1576384043"}, "mana_cost": "{3}{U}", "cmc": 4.0, "type_line": "Instant", "oracle_text": "Return to their owners' hands all creatures with toughness less than or equal to the number of Islands you control.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "5e914d7e-c1e9-446c-a33d-d093c02b2743", "set": "soi", "set_name": "Shadows over Innistrad", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/5e914d7e-c1e9-446c-a33d-d093c02b2743", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Asoi&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/soi?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/22909767-a088-49ff-83be-37f967d1da3d/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aa3d4ed7c-c586-4581-96dc-977636d27583&unique=prints", "collector_number": "58", "digital": false, "rarity": "rare", "flavor_text": "\"The tides have begun to ignore the moon.\"\n\u2014Tamiyo's journal", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Cliff Childs", "artist_ids": ["ed6f7e03-20ba-4c73-bdda-4a4928480721"], "illustration_id": "e9d2c512-f34d-495e-b351-16f2a2ebc18c", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 2489, "penny_rank": 1776, "prices": {"usd": "0.54", "usd_foil": "2.06", "usd_etched": null, "eur": "0.28", "eur_foil": "0.90", "tix": "0.01"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=409801", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Engulf+the+Shore&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Engulf+the+Shore&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Engulf+the+Shore"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/115983?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Engulf+the+Shore&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/60274?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "e3e32d1b-e580-4d09-b285-c8d6c5297896", "oracle_id": "0d4bd5e0-8346-4025-8694-d2e1897ee0c2", "multiverse_ids": [518435], "mtgo_id": 89821, "tcgplayer_id": 236543, "cardmarket_id": 559658, "name": "Essence Pulse", "lang": "en", "released_at": "2021-04-23", "uri": "https://api.scryfall.com/cards/e3e32d1b-e580-4d09-b285-c8d6c5297896", "scryfall_uri": "https://scryfall.com/card/c21/39/essence-pulse?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/e/3/e3e32d1b-e580-4d09-b285-c8d6c5297896.jpg?1625191655", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/3/e3e32d1b-e580-4d09-b285-c8d6c5297896.jpg?1625191655", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/e/3/e3e32d1b-e580-4d09-b285-c8d6c5297896.jpg?1625191655", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/e/3/e3e32d1b-e580-4d09-b285-c8d6c5297896.png?1625191655", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/3/e3e32d1b-e580-4d09-b285-c8d6c5297896.jpg?1625191655", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/e/3/e3e32d1b-e580-4d09-b285-c8d6c5297896.jpg?1625191655"}, "mana_cost": "{3}{B}", "cmc": 4.0, "type_line": "Sorcery", "oracle_text": "You gain 2 life. Each creature gets -X/-X until end of turn, where X is the amount of life you gained this turn.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "27bf6dbd-a9e1-4904-afa7-d28fc7745c4f", "set": "c21", "set_name": "Commander 2021", "set_type": "commander", "set_uri": "https://api.scryfall.com/sets/27bf6dbd-a9e1-4904-afa7-d28fc7745c4f", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ac21&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/c21?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/e3e32d1b-e580-4d09-b285-c8d6c5297896/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A0d4bd5e0-8346-4025-8694-d2e1897ee0c2&unique=prints", "collector_number": "39", "digital": false, "rarity": "rare", "flavor_text": "\"There is nothing so invigorating and stubbornly belligerent as the pure energy of life.\"\n\u2014Valentin, Witherbloom dean", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Kieran Yanner", "artist_ids": ["aa7e89ed-d294-4633-9057-ce04dacfcfa4"], "illustration_id": "ce84135c-6576-4388-b0b8-97f8d7c291ee", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "edhrec_rank": 4437, "prices": {"usd": "0.21", "usd_foil": null, "usd_etched": null, "eur": "0.44", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=518435", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Essence+Pulse&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Essence+Pulse&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Essence+Pulse"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/236543?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Essence+Pulse&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/89821?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "a978fa0a-a52b-4464-afe3-d9f7bc202e63", "oracle_id": "fdd94383-b573-439a-8e1c-925af887c5a6", "multiverse_ids": [129541], "mtgo_id": 27128, "mtgo_foil_id": 27129, "tcgplayer_id": 15118, "cardmarket_id": 16247, "name": "Evacuation", "lang": "en", "released_at": "2007-07-13", "uri": "https://api.scryfall.com/cards/a978fa0a-a52b-4464-afe3-d9f7bc202e63", "scryfall_uri": "https://scryfall.com/card/10e/83/evacuation?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/a/9/a978fa0a-a52b-4464-afe3-d9f7bc202e63.jpg?1562553159", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/9/a978fa0a-a52b-4464-afe3-d9f7bc202e63.jpg?1562553159", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/a/9/a978fa0a-a52b-4464-afe3-d9f7bc202e63.jpg?1562553159", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/a/9/a978fa0a-a52b-4464-afe3-d9f7bc202e63.png?1562553159", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/9/a978fa0a-a52b-4464-afe3-d9f7bc202e63.jpg?1562553159", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/a/9/a978fa0a-a52b-4464-afe3-d9f7bc202e63.jpg?1562553159"}, "mana_cost": "{3}{U}{U}", "cmc": 5.0, "type_line": "Instant", "oracle_text": "Return all creatures to their owners' hands.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "a66a6124-0d81-488d-b080-91f5ba7fbad0", "set": "10e", "set_name": "Tenth Edition", "set_type": "core", "set_uri": "https://api.scryfall.com/sets/a66a6124-0d81-488d-b080-91f5ba7fbad0", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3A10e&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/10e?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/a978fa0a-a52b-4464-afe3-d9f7bc202e63/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Afdd94383-b573-439a-8e1c-925af887c5a6&unique=prints", "collector_number": "83", "digital": false, "rarity": "rare", "flavor_text": "\"Once I supply the breeze, you'll see your warriors for the smoke they truly are.\"\n\u2014Alexi, zephyr mage", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Franz Vohwinkel", "artist_ids": ["3a243c17-3baa-4b53-9599-645311cd7d3d"], "illustration_id": "0f1e6d11-36e4-440c-8133-10110d8891a2", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 1291, "penny_rank": 2421, "prices": {"usd": "7.18", "usd_foil": "32.41", "usd_etched": null, "eur": "4.88", "eur_foil": "15.00", "tix": "0.01"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=129541", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Evacuation&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Evacuation&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Evacuation"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/15118?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Evacuation&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/27128?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "1e1144eb-701d-4716-9051-e8b77480e72d", "oracle_id": "fdd94383-b573-439a-8e1c-925af887c5a6", "multiverse_ids": [13075], "mtgo_id": 15500, "mtgo_foil_id": 15501, "tcgplayer_id": 2892, "cardmarket_id": 2834, "name": "Evacuation", "lang": "en", "released_at": "2001-04-11", "uri": "https://api.scryfall.com/cards/1e1144eb-701d-4716-9051-e8b77480e72d", "scryfall_uri": "https://scryfall.com/card/7ed/72/evacuation?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/1/e/1e1144eb-701d-4716-9051-e8b77480e72d.jpg?1595438077", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/e/1e1144eb-701d-4716-9051-e8b77480e72d.jpg?1595438077", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/1/e/1e1144eb-701d-4716-9051-e8b77480e72d.jpg?1595438077", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/1/e/1e1144eb-701d-4716-9051-e8b77480e72d.png?1595438077", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/e/1e1144eb-701d-4716-9051-e8b77480e72d.jpg?1595438077", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/1/e/1e1144eb-701d-4716-9051-e8b77480e72d.jpg?1595438077"}, "mana_cost": "{3}{U}{U}", "cmc": 5.0, "type_line": "Instant", "oracle_text": "Return all creatures to their owners' hands.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "230f38aa-9511-4db8-a3aa-aeddbc3f7bb9", "set": "7ed", "set_name": "Seventh Edition", "set_type": "core", "set_uri": "https://api.scryfall.com/sets/230f38aa-9511-4db8-a3aa-aeddbc3f7bb9", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3A7ed&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/7ed?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/1e1144eb-701d-4716-9051-e8b77480e72d/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Afdd94383-b573-439a-8e1c-925af887c5a6&unique=prints", "collector_number": "72", "digital": false, "rarity": "rare", "flavor_text": "\"How many people can you save in that thing?\"\n\"All of them,\" replied the mage with a smile.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Darrell Riche", "artist_ids": ["262c8e55-4efc-467b-a042-6f734b9d2e01"], "illustration_id": "931304f5-ac77-4846-b25b-f6f6b75392a7", "border_color": "white", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 1291, "penny_rank": 2421, "prices": {"usd": "6.19", "usd_foil": "154.94", "usd_etched": null, "eur": "1.99", "eur_foil": "199.99", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=13075", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Evacuation&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Evacuation&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Evacuation"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/2892?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Evacuation&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/15500?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "1cb8ae53-a53f-4a0f-94f7-559aca041797", "oracle_id": "fdd94383-b573-439a-8e1c-925af887c5a6", "multiverse_ids": [5147], "mtgo_id": 10247, "mtgo_foil_id": 10248, "tcgplayer_id": 5340, "cardmarket_id": 9115, "name": "Evacuation", "lang": "en", "released_at": "1998-03-02", "uri": "https://api.scryfall.com/cards/1cb8ae53-a53f-4a0f-94f7-559aca041797", "scryfall_uri": "https://scryfall.com/card/sth/30/evacuation?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/1/c/1cb8ae53-a53f-4a0f-94f7-559aca041797.jpg?1562595927", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/c/1cb8ae53-a53f-4a0f-94f7-559aca041797.jpg?1562595927", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/1/c/1cb8ae53-a53f-4a0f-94f7-559aca041797.jpg?1562595927", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/1/c/1cb8ae53-a53f-4a0f-94f7-559aca041797.png?1562595927", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/c/1cb8ae53-a53f-4a0f-94f7-559aca041797.jpg?1562595927", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/1/c/1cb8ae53-a53f-4a0f-94f7-559aca041797.jpg?1562595927"}, "mana_cost": "{3}{U}{U}", "cmc": 5.0, "type_line": "Instant", "oracle_text": "Return all creatures to their owners' hands.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "5c83396a-d386-4367-926b-571a75b086a3", "set": "sth", "set_name": "Stronghold", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/5c83396a-d386-4367-926b-571a75b086a3", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Asth&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/sth?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/1cb8ae53-a53f-4a0f-94f7-559aca041797/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Afdd94383-b573-439a-8e1c-925af887c5a6&unique=prints", "collector_number": "30", "digital": false, "rarity": "rare", "flavor_text": "The first step of every exodus is from the blood and the fire onto the trail.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Rob Alexander", "artist_ids": ["35906871-6c78-4ab2-9ed1-e6792c8efb74"], "illustration_id": "bc64353b-feb3-473b-9b17-2e977151f08d", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 1291, "penny_rank": 2421, "prices": {"usd": "4.60", "usd_foil": null, "usd_etched": null, "eur": "4.43", "eur_foil": null, "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=5147", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Evacuation&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Evacuation&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Evacuation"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/5340?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Evacuation&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/10247?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "a3c99939-4854-4e28-a142-4cb7f89fe898", "oracle_id": "3f9e3b79-6ecb-4741-a9f4-fd7d3545d5cf", "multiverse_ids": [3003], "tcgplayer_id": 4490, "cardmarket_id": 7806, "name": "Evaporate", "lang": "en", "released_at": "1995-10-01", "uri": "https://api.scryfall.com/cards/a3c99939-4854-4e28-a142-4cb7f89fe898", "scryfall_uri": "https://scryfall.com/card/hml/74/evaporate?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/a/3/a3c99939-4854-4e28-a142-4cb7f89fe898.jpg?1562587778", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/3/a3c99939-4854-4e28-a142-4cb7f89fe898.jpg?1562587778", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/a/3/a3c99939-4854-4e28-a142-4cb7f89fe898.jpg?1562587778", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/a/3/a3c99939-4854-4e28-a142-4cb7f89fe898.png?1562587778", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/3/a3c99939-4854-4e28-a142-4cb7f89fe898.jpg?1562587778", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/a/3/a3c99939-4854-4e28-a142-4cb7f89fe898.jpg?1562587778"}, "mana_cost": "{2}{R}", "cmc": 3.0, "type_line": "Sorcery", "oracle_text": "Evaporate deals 1 damage to each white and/or blue creature.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "5ac1f606-e682-46e9-ad0f-122a3783581b", "set": "hml", "set_name": "Homelands", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/5ac1f606-e682-46e9-ad0f-122a3783581b", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ahml&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/hml?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/a3c99939-4854-4e28-a142-4cb7f89fe898/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A3f9e3b79-6ecb-4741-a9f4-fd7d3545d5cf&unique=prints", "collector_number": "74", "digital": false, "rarity": "uncommon", "flavor_text": "\"The body is a temple with a foundation of sand.\"\n\u2014Autumn Willow", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Alan Rabinowitz", "artist_ids": ["8562e6e1-f7f3-499e-8309-cc5775b37847"], "illustration_id": "8f15f674-20d3-4f99-bc59-7485694fe02a", "border_color": "black", "frame": "1993", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 23271, "prices": {"usd": "0.14", "usd_foil": null, "usd_etched": null, "eur": "0.16", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=3003", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Evaporate&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Evaporate&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Evaporate"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/4490?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Evaporate&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Evaporate&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "5d53f46f-b069-4b34-af4b-98143328c078", "oracle_id": "c0d3dfc0-1ff2-4ac3-98eb-32eaa5b84c05", "multiverse_ids": [4662], "mtgo_id": 9509, "mtgo_foil_id": 9510, "tcgplayer_id": 5545, "cardmarket_id": 8763, "name": "Evincar's Justice", "lang": "en", "released_at": "1997-10-14", "uri": "https://api.scryfall.com/cards/5d53f46f-b069-4b34-af4b-98143328c078", "scryfall_uri": "https://scryfall.com/card/tmp/134/evincars-justice?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/5/d/5d53f46f-b069-4b34-af4b-98143328c078.jpg?1562054236", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/d/5d53f46f-b069-4b34-af4b-98143328c078.jpg?1562054236", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/5/d/5d53f46f-b069-4b34-af4b-98143328c078.jpg?1562054236", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/5/d/5d53f46f-b069-4b34-af4b-98143328c078.png?1562054236", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/d/5d53f46f-b069-4b34-af4b-98143328c078.jpg?1562054236", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/5/d/5d53f46f-b069-4b34-af4b-98143328c078.jpg?1562054236"}, "mana_cost": "{2}{B}{B}", "cmc": 4.0, "type_line": "Sorcery", "oracle_text": "Buyback {3} (You may pay an additional {3} as you cast this spell. If you do, put this card into your hand as it resolves.)\nEvincar's Justice deals 2 damage to each creature and each player.", "colors": ["B"], "color_identity": ["B"], "keywords": ["Buyback"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "10df3a67-178e-4363-8668-34f0e6edf2a7", "set": "tmp", "set_name": "Tempest", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/10df3a67-178e-4363-8668-34f0e6edf2a7", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Atmp&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/tmp?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/5d53f46f-b069-4b34-af4b-98143328c078/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ac0d3dfc0-1ff2-4ac3-98eb-32eaa5b84c05&unique=prints", "collector_number": "134", "digital": false, "rarity": "common", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Hannibal King", "artist_ids": ["47fa68ed-4d79-4116-a562-fc0c11096e81"], "illustration_id": "01bbf230-a8d3-48e3-9512-603c6e26c739", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 15204, "prices": {"usd": "0.19", "usd_foil": null, "usd_etched": null, "eur": "0.18", "eur_foil": null, "tix": "0.09"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=4662", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Evincar%27s+Justice&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Evincar%27s+Justice&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Evincar%27s+Justice"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/5545?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Evincar%27s+Justice&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/9509?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "a233a244-7f84-4525-b0ce-e10db0a95385", "oracle_id": "f3f01fe8-0a2c-4afa-94d2-268d27c0d252", "multiverse_ids": [4663], "mtgo_id": 9793, "mtgo_foil_id": 9794, "tcgplayer_id": 5547, "cardmarket_id": 8764, "name": "Extinction", "lang": "en", "released_at": "1997-10-14", "uri": "https://api.scryfall.com/cards/a233a244-7f84-4525-b0ce-e10db0a95385", "scryfall_uri": "https://scryfall.com/card/tmp/135/extinction?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/a/2/a233a244-7f84-4525-b0ce-e10db0a95385.jpg?1562055894", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/2/a233a244-7f84-4525-b0ce-e10db0a95385.jpg?1562055894", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/a/2/a233a244-7f84-4525-b0ce-e10db0a95385.jpg?1562055894", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/a/2/a233a244-7f84-4525-b0ce-e10db0a95385.png?1562055894", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/2/a233a244-7f84-4525-b0ce-e10db0a95385.jpg?1562055894", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/a/2/a233a244-7f84-4525-b0ce-e10db0a95385.jpg?1562055894"}, "mana_cost": "{4}{B}", "cmc": 5.0, "type_line": "Sorcery", "oracle_text": "Destroy all creatures of the creature type of your choice.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "10df3a67-178e-4363-8668-34f0e6edf2a7", "set": "tmp", "set_name": "Tempest", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/10df3a67-178e-4363-8668-34f0e6edf2a7", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Atmp&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/tmp?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/a233a244-7f84-4525-b0ce-e10db0a95385/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Af3f01fe8-0a2c-4afa-94d2-268d27c0d252&unique=prints", "collector_number": "135", "digital": false, "rarity": "rare", "flavor_text": "\"I once had an entire race killed just to listen to the rattling of their dried bones as I waded through them.\"\n\u2014Volrath", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Una Fricker", "artist_ids": ["0471a371-1bf8-49f2-8e76-cbe3a0bfa7e8"], "illustration_id": "81e2da81-e93e-4661-aebb-4e6769765841", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 14635, "prices": {"usd": "0.69", "usd_foil": null, "usd_etched": null, "eur": "0.49", "eur_foil": null, "tix": "0.26"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=4663", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Extinction&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Extinction&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Extinction"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/5547?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Extinction&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/9793?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "8725a869-462b-4381-880a-b4bcc63a655b", "oracle_id": "0a11a3a8-ee5f-4caf-bf84-c8248e07c825", "multiverse_ids": [479608], "mtgo_id": 80185, "arena_id": 71155, "tcgplayer_id": 212261, "cardmarket_id": 452953, "name": "Extinction Event", "lang": "en", "released_at": "2020-04-24", "uri": "https://api.scryfall.com/cards/8725a869-462b-4381-880a-b4bcc63a655b", "scryfall_uri": "https://scryfall.com/card/iko/88/extinction-event?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/8/7/8725a869-462b-4381-880a-b4bcc63a655b.jpg?1591226783", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/7/8725a869-462b-4381-880a-b4bcc63a655b.jpg?1591226783", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/8/7/8725a869-462b-4381-880a-b4bcc63a655b.jpg?1591226783", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/8/7/8725a869-462b-4381-880a-b4bcc63a655b.png?1591226783", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/7/8725a869-462b-4381-880a-b4bcc63a655b.jpg?1591226783", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/8/7/8725a869-462b-4381-880a-b4bcc63a655b.jpg?1591226783"}, "mana_cost": "{3}{B}", "cmc": 4.0, "type_line": "Sorcery", "oracle_text": "Choose odd or even. Exile each creature with mana value of the chosen quality. (Zero is even.)", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "19feda43-15ab-427e-a0e4-148a4bf2b03a", "set": "iko", "set_name": "Ikoria: Lair of Behemoths", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/19feda43-15ab-427e-a0e4-148a4bf2b03a", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aiko&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/iko?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/8725a869-462b-4381-880a-b4bcc63a655b/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A0a11a3a8-ee5f-4caf-bf84-c8248e07c825&unique=prints", "collector_number": "88", "digital": false, "rarity": "rare", "flavor_text": "\"Nature is more merciless than any hunter I've ever known.\"\n\u2014Zai, nightsquad captain", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Filip Burburan", "artist_ids": ["66082c3b-a623-4d34-be51-2475214b85d3"], "illustration_id": "ddb040a4-a75c-481b-914b-042c1cd32ec2", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 3932, "penny_rank": 1769, "preview": {"source": "Hand of Uncut", "source_uri": "https://www.youtube.com/watch?v=yGJ1lOouA9M", "previewed_at": "2020-04-03"}, "prices": {"usd": "0.85", "usd_foil": "0.77", "usd_etched": null, "eur": "1.19", "eur_foil": "1.90", "tix": "0.27"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=479608", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Extinction+Event&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Extinction+Event&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Extinction+Event"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/212261?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Extinction+Event&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/80185?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "6895024f-a04b-46cf-b020-df4487d0c758", "oracle_id": "c7ca25f3-7a22-477b-8546-4c2597d5d1ff", "multiverse_ids": [380411], "mtgo_id": 51992, "mtgo_foil_id": 51993, "tcgplayer_id": 81984, "cardmarket_id": 266570, "name": "Extinguish All Hope", "lang": "en", "released_at": "2014-05-02", "uri": "https://api.scryfall.com/cards/6895024f-a04b-46cf-b020-df4487d0c758", "scryfall_uri": "https://scryfall.com/card/jou/68/extinguish-all-hope?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/6/8/6895024f-a04b-46cf-b020-df4487d0c758.jpg?1593095692", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/8/6895024f-a04b-46cf-b020-df4487d0c758.jpg?1593095692", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/6/8/6895024f-a04b-46cf-b020-df4487d0c758.jpg?1593095692", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/6/8/6895024f-a04b-46cf-b020-df4487d0c758.png?1593095692", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/8/6895024f-a04b-46cf-b020-df4487d0c758.jpg?1593095692", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/6/8/6895024f-a04b-46cf-b020-df4487d0c758.jpg?1593095692"}, "mana_cost": "{4}{B}{B}", "cmc": 6.0, "type_line": "Sorcery", "oracle_text": "Destroy all nonenchantment creatures.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "204d2dca-1887-4721-9558-164aa7bbeb4f", "set": "jou", "set_name": "Journey into Nyx", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/204d2dca-1887-4721-9558-164aa7bbeb4f", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ajou&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/jou?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/6895024f-a04b-46cf-b020-df4487d0c758/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ac7ca25f3-7a22-477b-8546-4c2597d5d1ff&unique=prints", "collector_number": "68", "digital": false, "rarity": "rare", "flavor_text": "Phenax offers the hope of life, while Pharika grants the solace of death. Between them stands Erebos, who promises nothing but eternity.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Chase Stone", "artist_ids": ["2d753f61-5f5b-468e-97ea-8e0fdd347340"], "illustration_id": "ff0276ca-a005-43f6-8963-6b3ab3cbcabf", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 4127, "penny_rank": 2159, "prices": {"usd": "0.56", "usd_foil": "1.41", "usd_etched": null, "eur": "0.29", "eur_foil": "1.00", "tix": "0.01"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=380411", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Extinguish+All+Hope&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Extinguish+All+Hope&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Extinguish+All+Hope"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/81984?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Extinguish+All+Hope&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/51992?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "d73484db-5fd0-4a01-83fd-54748cc21a0f", "oracle_id": "3b90dd70-798e-4dc4-99e7-b36d6823af2b", "multiverse_ids": [398645], "mtgo_id": 57816, "mtgo_foil_id": 57817, "tcgplayer_id": 100370, "cardmarket_id": 283600, "name": "Eyeblight Massacre", "lang": "en", "released_at": "2015-07-17", "uri": "https://api.scryfall.com/cards/d73484db-5fd0-4a01-83fd-54748cc21a0f", "scryfall_uri": "https://scryfall.com/card/ori/96/eyeblight-massacre?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/d/7/d73484db-5fd0-4a01-83fd-54748cc21a0f.jpg?1562044208", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/7/d73484db-5fd0-4a01-83fd-54748cc21a0f.jpg?1562044208", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/d/7/d73484db-5fd0-4a01-83fd-54748cc21a0f.jpg?1562044208", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/d/7/d73484db-5fd0-4a01-83fd-54748cc21a0f.png?1562044208", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/7/d73484db-5fd0-4a01-83fd-54748cc21a0f.jpg?1562044208", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/d/7/d73484db-5fd0-4a01-83fd-54748cc21a0f.jpg?1562044208"}, "mana_cost": "{2}{B}{B}", "cmc": 4.0, "type_line": "Sorcery", "oracle_text": "Non-Elf creatures get -2/-2 until end of turn.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "0eeb9a9a-20ac-404d-b55f-aeb7a43a7f62", "set": "ori", "set_name": "Magic Origins", "set_type": "core", "set_uri": "https://api.scryfall.com/sets/0eeb9a9a-20ac-404d-b55f-aeb7a43a7f62", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aori&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ori?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/d73484db-5fd0-4a01-83fd-54748cc21a0f/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A3b90dd70-798e-4dc4-99e7-b36d6823af2b&unique=prints", "collector_number": "96", "digital": false, "rarity": "uncommon", "flavor_text": "\"I've already seen so much evil, so much darkness. Why do you insist on adding more?\"\n\u2014Nissa Revane, to Dwynen", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Igor Kieryluk", "artist_ids": ["9c3e9d17-509f-485c-9360-46d897ce716b"], "illustration_id": "52ad881e-ccb0-43a0-901d-5ea5d0aee57a", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 5680, "penny_rank": 7282, "prices": {"usd": "0.08", "usd_foil": "0.28", "usd_etched": null, "eur": "0.07", "eur_foil": "0.20", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=398645", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Eyeblight+Massacre&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Eyeblight+Massacre&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Eyeblight+Massacre"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/100370?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Eyeblight+Massacre&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/57816?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "4d9b4ad1-3d5c-43b6-9284-9ec427936dd2", "oracle_id": "d0dd425b-fdba-41b4-b9e6-f5161610bd7e", "multiverse_ids": [405222], "tcgplayer_id": 107800, "cardmarket_id": 285751, "name": "Ezuri's Predation", "lang": "en", "released_at": "2015-11-13", "uri": "https://api.scryfall.com/cards/4d9b4ad1-3d5c-43b6-9284-9ec427936dd2", "scryfall_uri": "https://scryfall.com/card/c15/36/ezuris-predation?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/4/d/4d9b4ad1-3d5c-43b6-9284-9ec427936dd2.jpg?1562704058", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/d/4d9b4ad1-3d5c-43b6-9284-9ec427936dd2.jpg?1562704058", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/4/d/4d9b4ad1-3d5c-43b6-9284-9ec427936dd2.jpg?1562704058", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/4/d/4d9b4ad1-3d5c-43b6-9284-9ec427936dd2.png?1562704058", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/d/4d9b4ad1-3d5c-43b6-9284-9ec427936dd2.jpg?1562704058", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/4/d/4d9b4ad1-3d5c-43b6-9284-9ec427936dd2.jpg?1562704058"}, "mana_cost": "{5}{G}{G}{G}", "cmc": 8.0, "type_line": "Sorcery", "oracle_text": "For each creature your opponents control, create a 4/4 green Phyrexian Beast creature token. Each of those tokens fights a different one of those creatures.", "colors": ["G"], "color_identity": ["G"], "keywords": ["Fight"], "all_parts": [{"object": "related_card", "id": "4d9b4ad1-3d5c-43b6-9284-9ec427936dd2", "component": "combo_piece", "name": "Ezuri's Predation", "type_line": "Sorcery", "uri": "https://api.scryfall.com/cards/4d9b4ad1-3d5c-43b6-9284-9ec427936dd2"}, {"object": "related_card", "id": "65f64d14-c203-4401-a379-c6227d1cbac2", "component": "token", "name": "Phyrexian Beast", "type_line": "Token Creature \u2014 Phyrexian Beast", "uri": "https://api.scryfall.com/cards/65f64d14-c203-4401-a379-c6227d1cbac2"}], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "ea6c99f9-5489-4504-b30c-c819fa3b1fd3", "set": "c15", "set_name": "Commander 2015", "set_type": "commander", "set_uri": "https://api.scryfall.com/sets/ea6c99f9-5489-4504-b30c-c819fa3b1fd3", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ac15&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/c15?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/4d9b4ad1-3d5c-43b6-9284-9ec427936dd2/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ad0dd425b-fdba-41b4-b9e6-f5161610bd7e&unique=prints", "collector_number": "36", "digital": false, "rarity": "rare", "flavor_text": "\"Those who do not submit will be consumed.\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Svetlin Velinov", "artist_ids": ["ffd063ae-c097-4f26-b2e6-b1e2137708bc"], "illustration_id": "e6937ca1-6e1b-4ddc-89a6-8d4e87c90259", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "edhrec_rank": 1309, "prices": {"usd": "1.86", "usd_foil": null, "usd_etched": null, "eur": "2.50", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=405222", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Ezuri%27s+Predation&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Ezuri%27s+Predation&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Ezuri%27s+Predation"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/107800?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Ezuri%27s+Predation&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Ezuri%27s+Predation&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "f2b9983e-20d4-4d12-9e2c-ec6d9a345787", "oracle_id": "f5ca7b13-8003-4361-b827-7095c89f2750", "multiverse_ids": [1571], "tcgplayer_id": 3863, "cardmarket_id": 7117, "name": "Falling Star", "lang": "en", "released_at": "1994-06-01", "uri": "https://api.scryfall.com/cards/f2b9983e-20d4-4d12-9e2c-ec6d9a345787", "scryfall_uri": "https://scryfall.com/card/leg/145/falling-star?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/f/2/f2b9983e-20d4-4d12-9e2c-ec6d9a345787.jpg?1562861838", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/2/f2b9983e-20d4-4d12-9e2c-ec6d9a345787.jpg?1562861838", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/f/2/f2b9983e-20d4-4d12-9e2c-ec6d9a345787.jpg?1562861838", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/f/2/f2b9983e-20d4-4d12-9e2c-ec6d9a345787.png?1562861838", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/2/f2b9983e-20d4-4d12-9e2c-ec6d9a345787.jpg?1562861838", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/f/2/f2b9983e-20d4-4d12-9e2c-ec6d9a345787.jpg?1562861838"}, "mana_cost": "{2}{R}", "cmc": 3.0, "type_line": "Sorcery", "oracle_text": "Flip Falling Star onto the playing area from a height of at least one foot. Falling Star deals 3 damage to each creature it lands on. Tap all creatures dealt damage by Falling Star. If Falling Star doesn't turn completely over at least once during the flip, it has no effect.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "banned", "pauper": "not_legal", "vintage": "banned", "penny": "not_legal", "commander": "banned", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "banned", "oldschool": "legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": true, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "78c50b4b-b220-455b-a2d5-cee458fa56f3", "set": "leg", "set_name": "Legends", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/78c50b4b-b220-455b-a2d5-cee458fa56f3", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aleg&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/leg?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/f2b9983e-20d4-4d12-9e2c-ec6d9a345787/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Af5ca7b13-8003-4361-b827-7095c89f2750&unique=prints", "collector_number": "145", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Douglas Shuler", "artist_ids": ["a9ddb513-51c7-455c-ab8f-5b90aae9f75b"], "illustration_id": "65abb51c-2c69-40e1-a904-236e0730974e", "border_color": "black", "frame": "1993", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "prices": {"usd": "169.99", "usd_foil": null, "usd_etched": null, "eur": "180.00", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=1571", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Falling+Star&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Falling+Star&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Falling+Star"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/3863?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Falling+Star&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Falling+Star&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "a56410a7-6f99-4bdf-9385-f23571c263c3", "oracle_id": "1f82fe6b-1ec7-400b-a80d-40921b359723", "multiverse_ids": [376327], "mtgo_id": 51444, "mtgo_foil_id": 51445, "tcgplayer_id": 72110, "cardmarket_id": 264828, "name": "Famine", "lang": "en", "released_at": "2013-11-01", "uri": "https://api.scryfall.com/cards/a56410a7-6f99-4bdf-9385-f23571c263c3", "scryfall_uri": "https://scryfall.com/card/c13/77/famine?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/a/5/a56410a7-6f99-4bdf-9385-f23571c263c3.jpg?1562929852", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/5/a56410a7-6f99-4bdf-9385-f23571c263c3.jpg?1562929852", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/a/5/a56410a7-6f99-4bdf-9385-f23571c263c3.jpg?1562929852", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/a/5/a56410a7-6f99-4bdf-9385-f23571c263c3.png?1562929852", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/5/a56410a7-6f99-4bdf-9385-f23571c263c3.jpg?1562929852", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/a/5/a56410a7-6f99-4bdf-9385-f23571c263c3.jpg?1562929852"}, "mana_cost": "{3}{B}{B}", "cmc": 5.0, "type_line": "Sorcery", "oracle_text": "Famine deals 3 damage to each creature and each player.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "c62e6d4f-af8c-4f27-9bc8-361291890146", "set": "c13", "set_name": "Commander 2013", "set_type": "commander", "set_uri": "https://api.scryfall.com/sets/c62e6d4f-af8c-4f27-9bc8-361291890146", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ac13&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/c13?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/a56410a7-6f99-4bdf-9385-f23571c263c3/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A1f82fe6b-1ec7-400b-a80d-40921b359723&unique=prints", "collector_number": "77", "digital": false, "rarity": "uncommon", "flavor_text": "\"Better to starve to death than be bored to death.\"\n\u2014Liliana Vess", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Karla Ortiz", "artist_ids": ["286a7773-06e5-465c-8a2a-76dfcb4ad110"], "illustration_id": "9768c180-22cb-499f-9995-8a7d38ca0e3a", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "edhrec_rank": 17333, "penny_rank": 7628, "prices": {"usd": "0.15", "usd_foil": null, "usd_etched": null, "eur": "0.15", "eur_foil": null, "tix": "0.05"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=376327", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Famine&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Famine&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Famine"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/72110?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Famine&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/51444?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "8d6c10ca-f6d6-4322-aa17-7e874cb10bb1", "oracle_id": "1f82fe6b-1ec7-400b-a80d-40921b359723", "multiverse_ids": [10518], "tcgplayer_id": 459, "cardmarket_id": 11268, "name": "Famine", "lang": "en", "released_at": "1999-07-06", "uri": "https://api.scryfall.com/cards/8d6c10ca-f6d6-4322-aa17-7e874cb10bb1", "scryfall_uri": "https://scryfall.com/card/ptk/75/famine?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/8/d/8d6c10ca-f6d6-4322-aa17-7e874cb10bb1.jpg?1562257044", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/d/8d6c10ca-f6d6-4322-aa17-7e874cb10bb1.jpg?1562257044", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/8/d/8d6c10ca-f6d6-4322-aa17-7e874cb10bb1.jpg?1562257044", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/8/d/8d6c10ca-f6d6-4322-aa17-7e874cb10bb1.png?1562257044", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/d/8d6c10ca-f6d6-4322-aa17-7e874cb10bb1.jpg?1562257044", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/8/d/8d6c10ca-f6d6-4322-aa17-7e874cb10bb1.jpg?1562257044"}, "mana_cost": "{3}{B}{B}", "cmc": 5.0, "type_line": "Sorcery", "oracle_text": "Famine deals 3 damage to each creature and each player.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "2676ff2e-9d86-4b5b-b935-e84e41b0755e", "set": "ptk", "set_name": "Portal Three Kingdoms", "set_type": "starter", "set_uri": "https://api.scryfall.com/sets/2676ff2e-9d86-4b5b-b935-e84e41b0755e", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aptk&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ptk?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/8d6c10ca-f6d6-4322-aa17-7e874cb10bb1/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A1f82fe6b-1ec7-400b-a80d-40921b359723&unique=prints", "collector_number": "75", "digital": false, "rarity": "uncommon", "flavor_text": "\"But it was a year of dearth. People were reduced to eating leaves of jujube trees. Corpses were seen everywhere in the countryside.\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Sun Nan", "artist_ids": ["d8b1d685-d10e-4caa-81f0-5bf1ee7d88f6"], "illustration_id": "a06ddfef-5e54-478b-9a3c-441564712ad7", "border_color": "white", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 17333, "penny_rank": 7628, "prices": {"usd": "25.63", "usd_foil": null, "usd_etched": null, "eur": "15.00", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=10518", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Famine&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Famine&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Famine"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/459?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Famine&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Famine&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "e1068723-d1ef-4007-97d9-b10dccdbade4", "oracle_id": "4eb813fd-2d5a-4b02-8193-662681ef4e7d", "multiverse_ids": [548306], "mtgo_id": 96936, "arena_id": 79433, "tcgplayer_id": 262726, "cardmarket_id": 608178, "name": "Farewell", "lang": "en", "released_at": "2022-02-18", "uri": "https://api.scryfall.com/cards/e1068723-d1ef-4007-97d9-b10dccdbade4", "scryfall_uri": "https://scryfall.com/card/neo/13/farewell?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/e/1/e1068723-d1ef-4007-97d9-b10dccdbade4.jpg?1654566260", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/1/e1068723-d1ef-4007-97d9-b10dccdbade4.jpg?1654566260", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/e/1/e1068723-d1ef-4007-97d9-b10dccdbade4.jpg?1654566260", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/e/1/e1068723-d1ef-4007-97d9-b10dccdbade4.png?1654566260", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/1/e1068723-d1ef-4007-97d9-b10dccdbade4.jpg?1654566260", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/e/1/e1068723-d1ef-4007-97d9-b10dccdbade4.jpg?1654566260"}, "mana_cost": "{4}{W}{W}", "cmc": 6.0, "type_line": "Sorcery", "oracle_text": "Choose one or more \u2014\n\u2022 Exile all artifacts.\n\u2022 Exile all creatures.\n\u2022 Exile all enchantments.\n\u2022 Exile all graveyards.", "colors": ["W"], "color_identity": ["W"], "keywords": [], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo", "arena"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "59a2059f-5482-433f-8761-eb2e17859b71", "set": "neo", "set_name": "Kamigawa: Neon Dynasty", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/59a2059f-5482-433f-8761-eb2e17859b71", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aneo&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/neo?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/e1068723-d1ef-4007-97d9-b10dccdbade4/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A4eb813fd-2d5a-4b02-8193-662681ef4e7d&unique=prints", "collector_number": "13", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Seb McKinnon", "artist_ids": ["ad4caca0-8d89-44ce-a1a6-d5ca905bd6fb"], "illustration_id": "c235fd39-b850-46df-9a26-d3330f925627", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 539, "prices": {"usd": "5.62", "usd_foil": "6.91", "usd_etched": null, "eur": "4.91", "eur_foil": "5.44", "tix": "0.55"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=548306", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Farewell&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Farewell&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Farewell"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/262726?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Farewell&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/96936?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "98c664bc-9585-47a7-9514-b3e30a4e1b59", "oracle_id": "4eb813fd-2d5a-4b02-8193-662681ef4e7d", "multiverse_ids": [552239], "arena_id": 79778, "tcgplayer_id": 262869, "cardmarket_id": 608334, "name": "Farewell", "lang": "en", "released_at": "2022-02-18", "uri": "https://api.scryfall.com/cards/98c664bc-9585-47a7-9514-b3e30a4e1b59", "scryfall_uri": "https://scryfall.com/card/neo/365/farewell?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/9/8/98c664bc-9585-47a7-9514-b3e30a4e1b59.jpg?1654569820", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/8/98c664bc-9585-47a7-9514-b3e30a4e1b59.jpg?1654569820", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/9/8/98c664bc-9585-47a7-9514-b3e30a4e1b59.jpg?1654569820", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/9/8/98c664bc-9585-47a7-9514-b3e30a4e1b59.png?1654569820", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/8/98c664bc-9585-47a7-9514-b3e30a4e1b59.jpg?1654569820", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/9/8/98c664bc-9585-47a7-9514-b3e30a4e1b59.jpg?1654569820"}, "mana_cost": "{4}{W}{W}", "cmc": 6.0, "type_line": "Sorcery", "oracle_text": "Choose one or more \u2014\n\u2022 Exile all artifacts.\n\u2022 Exile all creatures.\n\u2022 Exile all enchantments.\n\u2022 Exile all graveyards.", "colors": ["W"], "color_identity": ["W"], "keywords": [], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo", "arena"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "59a2059f-5482-433f-8761-eb2e17859b71", "set": "neo", "set_name": "Kamigawa: Neon Dynasty", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/59a2059f-5482-433f-8761-eb2e17859b71", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aneo&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/neo?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/98c664bc-9585-47a7-9514-b3e30a4e1b59/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A4eb813fd-2d5a-4b02-8193-662681ef4e7d&unique=prints", "collector_number": "365", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Fuzichoco", "artist_ids": ["37e363ad-4cd7-4351-9c90-f93f03a68b64"], "illustration_id": "9e67bf77-d472-4752-ba6e-638f2fe8bc70", "border_color": "black", "frame": "2015", "frame_effects": ["showcase"], "security_stamp": "oval", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "promo_types": ["boosterfun"], "edhrec_rank": 539, "prices": {"usd": "8.66", "usd_foil": "12.45", "usd_etched": null, "eur": "5.23", "eur_foil": "12.87", "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=552239", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Farewell&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Farewell&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Farewell"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/262869?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Farewell&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Farewell&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "8158b330-2868-4147-907e-4d86e44cfaad", "oracle_id": "28cfafdb-5014-44e3-9133-4554129c1aee", "multiverse_ids": [378383], "mtgo_id": 51773, "mtgo_foil_id": 51774, "tcgplayer_id": 79130, "cardmarket_id": 265584, "name": "Fated Retribution", "lang": "en", "released_at": "2014-02-07", "uri": "https://api.scryfall.com/cards/8158b330-2868-4147-907e-4d86e44cfaad", "scryfall_uri": "https://scryfall.com/card/bng/11/fated-retribution?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/8/1/8158b330-2868-4147-907e-4d86e44cfaad.jpg?1593091437", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/1/8158b330-2868-4147-907e-4d86e44cfaad.jpg?1593091437", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/8/1/8158b330-2868-4147-907e-4d86e44cfaad.jpg?1593091437", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/8/1/8158b330-2868-4147-907e-4d86e44cfaad.png?1593091437", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/1/8158b330-2868-4147-907e-4d86e44cfaad.jpg?1593091437", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/8/1/8158b330-2868-4147-907e-4d86e44cfaad.jpg?1593091437"}, "mana_cost": "{4}{W}{W}{W}", "cmc": 7.0, "type_line": "Instant", "oracle_text": "Destroy all creatures and planeswalkers. If it's your turn, scry 2. (Look at the top two cards of your library, then put any number of them on the bottom of your library and the rest on top in any order.)", "colors": ["W"], "color_identity": ["W"], "keywords": ["Scry"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "50a80fe4-a757-408f-ad23-52c5cc5f45cc", "set": "bng", "set_name": "Born of the Gods", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/50a80fe4-a757-408f-ad23-52c5cc5f45cc", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Abng&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/bng?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/8158b330-2868-4147-907e-4d86e44cfaad/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A28cfafdb-5014-44e3-9133-4554129c1aee&unique=prints", "collector_number": "11", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Jonas De Ro", "artist_ids": ["561ebf9e-8d93-4b57-8156-8826d0c19601"], "illustration_id": "fb2129ac-7107-4e9c-abfa-62cf34bf4850", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 8934, "penny_rank": 7276, "prices": {"usd": "0.25", "usd_foil": "0.65", "usd_etched": null, "eur": "0.45", "eur_foil": "0.75", "tix": "0.01"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=378383", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Fated+Retribution&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Fated+Retribution&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Fated+Retribution"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/79130?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Fated+Retribution&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/51773?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "cab4fd0e-9f84-4628-92a7-858ad8064531", "oracle_id": "ed743b88-0866-4f88-9f30-d49d2cf36b99", "multiverse_ids": [8867], "mtgo_id": 12125, "mtgo_foil_id": 12126, "tcgplayer_id": 6869, "cardmarket_id": 10392, "name": "Fault Line", "lang": "en", "released_at": "1998-10-12", "uri": "https://api.scryfall.com/cards/cab4fd0e-9f84-4628-92a7-858ad8064531", "scryfall_uri": "https://scryfall.com/card/usg/185/fault-line?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/c/a/cab4fd0e-9f84-4628-92a7-858ad8064531.jpg?1562937807", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/a/cab4fd0e-9f84-4628-92a7-858ad8064531.jpg?1562937807", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/c/a/cab4fd0e-9f84-4628-92a7-858ad8064531.jpg?1562937807", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/c/a/cab4fd0e-9f84-4628-92a7-858ad8064531.png?1562937807", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/a/cab4fd0e-9f84-4628-92a7-858ad8064531.jpg?1562937807", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/c/a/cab4fd0e-9f84-4628-92a7-858ad8064531.jpg?1562937807"}, "mana_cost": "{X}{R}{R}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Fault Line deals X damage to each creature without flying and each player.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "c330df40-51db-4caf-bde6-48df6c181001", "set": "usg", "set_name": "Urza's Saga", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/c330df40-51db-4caf-bde6-48df6c181001", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ausg&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/usg?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/cab4fd0e-9f84-4628-92a7-858ad8064531/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aed743b88-0866-4f88-9f30-d49d2cf36b99&unique=prints", "collector_number": "185", "digital": false, "rarity": "rare", "flavor_text": "We live on the serpent's back.\n\u2014Viashino saying", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Ron Spencer", "artist_ids": ["dab52c11-0564-4207-a4a1-c1735c946a65"], "illustration_id": "dfbf777d-8501-4a94-8cd9-292a1afaf4ea", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 7890, "prices": {"usd": "7.43", "usd_foil": null, "usd_etched": null, "eur": "5.41", "eur_foil": null, "tix": "0.28"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=8867", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Fault+Line&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Fault+Line&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Fault+Line"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/6869?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Fault+Line&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/12125?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "ac83f97d-c8c9-480c-a32c-918035673ab4", "oracle_id": "c3601f22-7b22-4116-8633-ba67841524bd", "multiverse_ids": [497647], "mtgo_id": 85036, "tcgplayer_id": 227067, "cardmarket_id": 513625, "name": "Feast of Succession", "lang": "en", "released_at": "2020-11-20", "uri": "https://api.scryfall.com/cards/ac83f97d-c8c9-480c-a32c-918035673ab4", "scryfall_uri": "https://scryfall.com/card/cmr/127/feast-of-succession?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/a/c/ac83f97d-c8c9-480c-a32c-918035673ab4.jpg?1608909745", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/c/ac83f97d-c8c9-480c-a32c-918035673ab4.jpg?1608909745", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/a/c/ac83f97d-c8c9-480c-a32c-918035673ab4.jpg?1608909745", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/a/c/ac83f97d-c8c9-480c-a32c-918035673ab4.png?1608909745", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/c/ac83f97d-c8c9-480c-a32c-918035673ab4.jpg?1608909745", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/a/c/ac83f97d-c8c9-480c-a32c-918035673ab4.jpg?1608909745"}, "mana_cost": "{4}{B}{B}", "cmc": 6.0, "type_line": "Sorcery", "oracle_text": "All creatures get -4/-4 until end of turn. You become the monarch.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "all_parts": [{"object": "related_card", "id": "ac83f97d-c8c9-480c-a32c-918035673ab4", "component": "combo_piece", "name": "Feast of Succession", "type_line": "Sorcery", "uri": "https://api.scryfall.com/cards/ac83f97d-c8c9-480c-a32c-918035673ab4"}, {"object": "related_card", "id": "bf7f3fc9-35f1-4b8c-b02b-494c71f31107", "component": "combo_piece", "name": "The Monarch", "type_line": "Card", "uri": "https://api.scryfall.com/cards/bf7f3fc9-35f1-4b8c-b02b-494c71f31107"}], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "39de6fbf-1f11-48d0-8f04-f0407f6a0732", "set": "cmr", "set_name": "Commander Legends", "set_type": "draft_innovation", "set_uri": "https://api.scryfall.com/sets/39de6fbf-1f11-48d0-8f04-f0407f6a0732", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Acmr&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/cmr?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/ac83f97d-c8c9-480c-a32c-918035673ab4/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ac3601f22-7b22-4116-8633-ba67841524bd&unique=prints", "collector_number": "127", "digital": false, "rarity": "uncommon", "flavor_text": "\"Beware the eager host.\"\n\u2014Eligeth, crossroads augur", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Seb McKinnon", "artist_ids": ["ad4caca0-8d89-44ce-a1a6-d5ca905bd6fb"], "illustration_id": "3943f399-a42b-422b-9d9a-d1ce26a0e429", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 6956, "prices": {"usd": "0.06", "usd_foil": "0.13", "usd_etched": null, "eur": "0.11", "eur_foil": "0.15", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=497647", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Feast+of+Succession&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Feast+of+Succession&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Feast+of+Succession"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/227067?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Feast+of+Succession&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/85036?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "d4e999d3-c2d7-47dc-81ad-a2baf6cc4757", "oracle_id": "1fbb2a7c-8093-4729-b8fe-cf032d99470f", "multiverse_ids": [389516], "mtgo_id": 55189, "mtgo_foil_id": 55190, "tcgplayer_id": 94196, "cardmarket_id": 270482, "name": "Fell the Mighty", "lang": "en", "released_at": "2014-11-07", "uri": "https://api.scryfall.com/cards/d4e999d3-c2d7-47dc-81ad-a2baf6cc4757", "scryfall_uri": "https://scryfall.com/card/c14/7/fell-the-mighty?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/d/4/d4e999d3-c2d7-47dc-81ad-a2baf6cc4757.jpg?1561960243", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/4/d4e999d3-c2d7-47dc-81ad-a2baf6cc4757.jpg?1561960243", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/d/4/d4e999d3-c2d7-47dc-81ad-a2baf6cc4757.jpg?1561960243", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/d/4/d4e999d3-c2d7-47dc-81ad-a2baf6cc4757.png?1561960243", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/4/d4e999d3-c2d7-47dc-81ad-a2baf6cc4757.jpg?1561960243", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/d/4/d4e999d3-c2d7-47dc-81ad-a2baf6cc4757.jpg?1561960243"}, "mana_cost": "{4}{W}", "cmc": 5.0, "type_line": "Sorcery", "oracle_text": "Destroy all creatures with power greater than target creature's power.", "colors": ["W"], "color_identity": ["W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "0980a6e2-eb78-4ad2-8396-cef08fce365e", "set": "c14", "set_name": "Commander 2014", "set_type": "commander", "set_uri": "https://api.scryfall.com/sets/0980a6e2-eb78-4ad2-8396-cef08fce365e", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ac14&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/c14?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/d4e999d3-c2d7-47dc-81ad-a2baf6cc4757/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A1fbb2a7c-8093-4729-b8fe-cf032d99470f&unique=prints", "collector_number": "7", "digital": false, "rarity": "rare", "flavor_text": "\"They had it coming.\"\n\u2014Squire Imalia, savior of Thiswick", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Raymond Swanland", "artist_ids": ["e956bacc-077d-4c12-b6bc-ba798b718af9"], "illustration_id": "ee106bcd-e7e0-4845-806a-090851ce1bf9", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "edhrec_rank": 2024, "prices": {"usd": "0.66", "usd_foil": null, "usd_etched": null, "eur": "1.20", "eur_foil": null, "tix": "2.80"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=389516", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Fell+the+Mighty&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Fell+the+Mighty&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Fell+the+Mighty"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/94196?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Fell+the+Mighty&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/55189?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "f3125137-bd18-488e-b45e-6fc23828c5bd", "oracle_id": "a653ac26-e9c9-4319-88f6-c83cc64d3bdb", "multiverse_ids": [383238], "mtgo_id": 53670, "mtgo_foil_id": 53671, "tcgplayer_id": 91123, "cardmarket_id": 267739, "name": "Festergloom", "lang": "en", "released_at": "2014-07-18", "uri": "https://api.scryfall.com/cards/f3125137-bd18-488e-b45e-6fc23828c5bd", "scryfall_uri": "https://scryfall.com/card/m15/97/festergloom?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/f/3/f3125137-bd18-488e-b45e-6fc23828c5bd.jpg?1562796922", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/3/f3125137-bd18-488e-b45e-6fc23828c5bd.jpg?1562796922", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/f/3/f3125137-bd18-488e-b45e-6fc23828c5bd.jpg?1562796922", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/f/3/f3125137-bd18-488e-b45e-6fc23828c5bd.png?1562796922", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/3/f3125137-bd18-488e-b45e-6fc23828c5bd.jpg?1562796922", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/f/3/f3125137-bd18-488e-b45e-6fc23828c5bd.jpg?1562796922"}, "mana_cost": "{2}{B}", "cmc": 3.0, "type_line": "Sorcery", "oracle_text": "Nonblack creatures get -1/-1 until end of turn.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "6ce49890-3b37-42a5-8932-dbeef1d7b62c", "set": "m15", "set_name": "Magic 2015", "set_type": "core", "set_uri": "https://api.scryfall.com/sets/6ce49890-3b37-42a5-8932-dbeef1d7b62c", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Am15&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/m15?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/f3125137-bd18-488e-b45e-6fc23828c5bd/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aa653ac26-e9c9-4319-88f6-c83cc64d3bdb&unique=prints", "collector_number": "97", "digital": false, "rarity": "common", "flavor_text": "The death of a scout can be as informative as a safe return.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Mathias Kollros", "artist_ids": ["2ae0dd12-047c-4efb-80d7-bccc3bac5fba"], "illustration_id": "f229d9ac-56f3-41b0-a062-35a95c617a96", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 19670, "prices": {"usd": "0.02", "usd_foil": null, "usd_etched": null, "eur": "0.02", "eur_foil": "0.49", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=383238", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Festergloom&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Festergloom&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Festergloom"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/91123?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Festergloom&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/53670?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "2c34e6aa-0414-45ba-b6eb-1ac4255d7de8", "oracle_id": "5a1d5b0d-335f-4ae4-94d8-60494fedb570", "multiverse_ids": [126131], "mtgo_id": 26596, "mtgo_foil_id": 26597, "tcgplayer_id": 14885, "cardmarket_id": 15057, "name": "Festering March", "lang": "en", "released_at": "2007-05-04", "uri": "https://api.scryfall.com/cards/2c34e6aa-0414-45ba-b6eb-1ac4255d7de8", "scryfall_uri": "https://scryfall.com/card/fut/65/festering-march?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/2/c/2c34e6aa-0414-45ba-b6eb-1ac4255d7de8.jpg?1562903995", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/c/2c34e6aa-0414-45ba-b6eb-1ac4255d7de8.jpg?1562903995", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/2/c/2c34e6aa-0414-45ba-b6eb-1ac4255d7de8.jpg?1562903995", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/2/c/2c34e6aa-0414-45ba-b6eb-1ac4255d7de8.png?1562903995", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/c/2c34e6aa-0414-45ba-b6eb-1ac4255d7de8.jpg?1562903995", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/2/c/2c34e6aa-0414-45ba-b6eb-1ac4255d7de8.jpg?1562903995"}, "mana_cost": "{3}{B}{B}", "cmc": 5.0, "type_line": "Sorcery", "oracle_text": "Creatures your opponents control get -1/-1 until end of turn. Exile Festering March with three time counters on it.\nSuspend 3\u2014{2}{B} (Rather than cast this card from your hand, you may pay {2}{B} and exile it with three time counters on it. At the beginning of your upkeep, remove a time counter. When the last is removed, cast it without paying its mana cost.)", "colors": ["B"], "color_identity": ["B"], "keywords": ["Suspend"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "bf951ddb-4445-4923-87cb-3fe4ac3c6b9a", "set": "fut", "set_name": "Future Sight", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/bf951ddb-4445-4923-87cb-3fe4ac3c6b9a", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Afut&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/fut?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/2c34e6aa-0414-45ba-b6eb-1ac4255d7de8/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A5a1d5b0d-335f-4ae4-94d8-60494fedb570&unique=prints", "collector_number": "65", "digital": false, "rarity": "uncommon", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Brandon Kitkouski", "artist_ids": ["0330b5e8-2cf0-4ecb-8fd7-e20a18bdeb20"], "illustration_id": "34d08075-f2ad-430d-a609-d3ea790105b0", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 17306, "penny_rank": 13645, "prices": {"usd": "0.13", "usd_foil": "0.51", "usd_etched": null, "eur": "0.25", "eur_foil": "0.08", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=126131", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Festering+March&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Festering+March&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Festering+March"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/14885?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Festering+March&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/26596?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "664d21c9-4b6c-4797-845f-7bca79c2b76b", "oracle_id": "7e108b31-2ea3-4129-b324-a2d31c78bbe6", "multiverse_ids": [435297], "mtgo_id": 65302, "mtgo_foil_id": 65303, "arena_id": 66251, "tcgplayer_id": 145808, "cardmarket_id": 301792, "name": "Fiery Cannonade", "lang": "en", "released_at": "2017-09-29", "uri": "https://api.scryfall.com/cards/664d21c9-4b6c-4797-845f-7bca79c2b76b", "scryfall_uri": "https://scryfall.com/card/xln/143/fiery-cannonade?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/6/6/664d21c9-4b6c-4797-845f-7bca79c2b76b.jpg?1562556766", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/6/664d21c9-4b6c-4797-845f-7bca79c2b76b.jpg?1562556766", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/6/6/664d21c9-4b6c-4797-845f-7bca79c2b76b.jpg?1562556766", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/6/6/664d21c9-4b6c-4797-845f-7bca79c2b76b.png?1562556766", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/6/664d21c9-4b6c-4797-845f-7bca79c2b76b.jpg?1562556766", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/6/6/664d21c9-4b6c-4797-845f-7bca79c2b76b.jpg?1562556766"}, "mana_cost": "{2}{R}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Fiery Cannonade deals 2 damage to each non-Pirate creature.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "fe0dad85-54bc-4151-9200-d68da84dd0f2", "set": "xln", "set_name": "Ixalan", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/fe0dad85-54bc-4151-9200-d68da84dd0f2", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Axln&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/xln?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/664d21c9-4b6c-4797-845f-7bca79c2b76b/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A7e108b31-2ea3-4129-b324-a2d31c78bbe6&unique=prints", "collector_number": "143", "digital": false, "rarity": "uncommon", "flavor_text": "Wary of the ferocious dinosaurs, the Legion of Dusk built up the walls of their fort\u2014just in time for the pirates to burn them down.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Ben Wootten", "artist_ids": ["31cdca96-ecde-4245-bfb6-653929d57d9c"], "illustration_id": "bbef4f87-7598-43d4-ae85-3bedcac5c9d8", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 4560, "penny_rank": 5891, "prices": {"usd": "0.17", "usd_foil": "3.06", "usd_etched": null, "eur": "0.18", "eur_foil": "0.50", "tix": "0.13"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=435297", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Fiery+Cannonade&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Fiery+Cannonade&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Fiery+Cannonade"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/145808?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Fiery+Cannonade&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/65302?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "7b61c9bc-16e8-417f-99e7-8bd83d4666c5", "oracle_id": "3c22e031-4804-4c31-bd3c-c3f29d456b34", "multiverse_ids": [405230], "tcgplayer_id": 107740, "cardmarket_id": 285734, "name": "Fiery Confluence", "lang": "en", "released_at": "2015-11-13", "uri": "https://api.scryfall.com/cards/7b61c9bc-16e8-417f-99e7-8bd83d4666c5", "scryfall_uri": "https://scryfall.com/card/c15/26/fiery-confluence?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/7/b/7b61c9bc-16e8-417f-99e7-8bd83d4666c5.jpg?1562706203", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/b/7b61c9bc-16e8-417f-99e7-8bd83d4666c5.jpg?1562706203", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/7/b/7b61c9bc-16e8-417f-99e7-8bd83d4666c5.jpg?1562706203", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/7/b/7b61c9bc-16e8-417f-99e7-8bd83d4666c5.png?1562706203", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/b/7b61c9bc-16e8-417f-99e7-8bd83d4666c5.jpg?1562706203", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/7/b/7b61c9bc-16e8-417f-99e7-8bd83d4666c5.jpg?1562706203"}, "mana_cost": "{2}{R}{R}", "cmc": 4.0, "type_line": "Sorcery", "oracle_text": "Choose three. You may choose the same mode more than once.\n\u2022 Fiery Confluence deals 1 damage to each creature.\n\u2022 Fiery Confluence deals 2 damage to each opponent.\n\u2022 Destroy target artifact.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "ea6c99f9-5489-4504-b30c-c819fa3b1fd3", "set": "c15", "set_name": "Commander 2015", "set_type": "commander", "set_uri": "https://api.scryfall.com/sets/ea6c99f9-5489-4504-b30c-c819fa3b1fd3", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ac15&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/c15?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/7b61c9bc-16e8-417f-99e7-8bd83d4666c5/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A3c22e031-4804-4c31-bd3c-c3f29d456b34&unique=prints", "collector_number": "26", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Kieran Yanner", "artist_ids": ["aa7e89ed-d294-4633-9057-ce04dacfcfa4"], "illustration_id": "7c01324f-f56d-448b-b562-e6366b7ae01d", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "edhrec_rank": 2218, "prices": {"usd": "1.56", "usd_foil": null, "usd_etched": null, "eur": "3.90", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=405230", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Fiery+Confluence&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Fiery+Confluence&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Fiery+Confluence"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/107740?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Fiery+Confluence&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Fiery+Confluence&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "4c454a20-8ec8-41d9-b9c3-acaa510d050b", "oracle_id": "3c22e031-4804-4c31-bd3c-c3f29d456b34", "multiverse_ids": [], "tcgplayer_id": 215319, "cardmarket_id": 465664, "name": "Fiery Confluence", "lang": "en", "released_at": "2020-06-26", "uri": "https://api.scryfall.com/cards/4c454a20-8ec8-41d9-b9c3-acaa510d050b", "scryfall_uri": "https://scryfall.com/card/ss3/3/fiery-confluence?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/4/c/4c454a20-8ec8-41d9-b9c3-acaa510d050b.jpg?1593559583", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/c/4c454a20-8ec8-41d9-b9c3-acaa510d050b.jpg?1593559583", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/4/c/4c454a20-8ec8-41d9-b9c3-acaa510d050b.jpg?1593559583", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/4/c/4c454a20-8ec8-41d9-b9c3-acaa510d050b.png?1593559583", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/c/4c454a20-8ec8-41d9-b9c3-acaa510d050b.jpg?1593559583", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/4/c/4c454a20-8ec8-41d9-b9c3-acaa510d050b.jpg?1593559583"}, "mana_cost": "{2}{R}{R}", "cmc": 4.0, "type_line": "Sorcery", "oracle_text": "Choose three. You may choose the same mode more than once.\n\u2022 Fiery Confluence deals 1 damage to each creature.\n\u2022 Fiery Confluence deals 2 damage to each opponent.\n\u2022 Destroy target artifact.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "4887d21f-71e7-4d7a-a079-e9521fd7e6d7", "set": "ss3", "set_name": "Signature Spellbook: Chandra", "set_type": "spellbook", "set_uri": "https://api.scryfall.com/sets/4887d21f-71e7-4d7a-a079-e9521fd7e6d7", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ass3&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ss3?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/4c454a20-8ec8-41d9-b9c3-acaa510d050b/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A3c22e031-4804-4c31-bd3c-c3f29d456b34&unique=prints", "collector_number": "3", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Micah Epstein", "artist_ids": ["957ec398-9a5e-4f54-9090-37a06d57b96c"], "illustration_id": "2ffa8766-a524-4764-a527-b70c0c16255f", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "edhrec_rank": 2218, "prices": {"usd": "1.16", "usd_foil": "2.92", "usd_etched": null, "eur": "0.90", "eur_foil": "2.95", "tix": null}, "related_uris": {"tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Fiery+Confluence&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Fiery+Confluence&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Fiery+Confluence"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/215319?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Fiery+Confluence&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Fiery+Confluence&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "5552ca9b-0245-4f91-9646-a5b5443863a2", "oracle_id": "7f885ffc-7245-4f00-a903-6e088007c635", "multiverse_ids": [179562], "mtgo_id": 32290, "mtgo_foil_id": 32291, "tcgplayer_id": 31733, "cardmarket_id": 20976, "name": "Fight to the Death", "lang": "en", "released_at": "2009-04-30", "uri": "https://api.scryfall.com/cards/5552ca9b-0245-4f91-9646-a5b5443863a2", "scryfall_uri": "https://scryfall.com/card/arb/97/fight-to-the-death?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/5/5/5552ca9b-0245-4f91-9646-a5b5443863a2.jpg?1562641354", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/5/5552ca9b-0245-4f91-9646-a5b5443863a2.jpg?1562641354", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/5/5/5552ca9b-0245-4f91-9646-a5b5443863a2.jpg?1562641354", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/5/5/5552ca9b-0245-4f91-9646-a5b5443863a2.png?1562641354", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/5/5552ca9b-0245-4f91-9646-a5b5443863a2.jpg?1562641354", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/5/5/5552ca9b-0245-4f91-9646-a5b5443863a2.jpg?1562641354"}, "mana_cost": "{R}{W}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Destroy all blocking creatures and all blocked creatures.", "colors": ["R", "W"], "color_identity": ["R", "W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "db486ec5-141d-4781-9ee5-5456926934c1", "set": "arb", "set_name": "Alara Reborn", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/db486ec5-141d-4781-9ee5-5456926934c1", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aarb&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/arb?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/5552ca9b-0245-4f91-9646-a5b5443863a2/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A7f885ffc-7245-4f00-a903-6e088007c635&unique=prints", "collector_number": "97", "digital": false, "rarity": "rare", "flavor_text": "When a battlefield falls silent, it's rarely due to a cease-fire.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Michael Komarck", "artist_ids": ["96a53b95-fe5f-4fbb-9411-ccf4ee150aca"], "illustration_id": "c7d8bc6d-5062-460e-97e6-1bc586d8e67c", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 9219, "penny_rank": 12174, "prices": {"usd": "1.73", "usd_foil": "4.36", "usd_etched": null, "eur": "0.63", "eur_foil": "0.99", "tix": "0.01"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=179562", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Fight+to+the+Death&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Fight+to+the+Death&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Fight+to+the+Death"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/31733?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Fight+to+the+Death&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/32290?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "2503e136-031f-498a-b042-4077baebe8f8", "oracle_id": "69ef9308-bc25-4f3c-a5fd-1ebaed6e4842", "multiverse_ids": [81991], "mtgo_id": 21605, "mtgo_foil_id": 21606, "tcgplayer_id": 12254, "cardmarket_id": 12812, "name": "Final Judgment", "lang": "en", "released_at": "2005-02-04", "uri": "https://api.scryfall.com/cards/2503e136-031f-498a-b042-4077baebe8f8", "scryfall_uri": "https://scryfall.com/card/bok/4/final-judgment?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/2/5/2503e136-031f-498a-b042-4077baebe8f8.jpg?1562876056", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/5/2503e136-031f-498a-b042-4077baebe8f8.jpg?1562876056", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/2/5/2503e136-031f-498a-b042-4077baebe8f8.jpg?1562876056", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/2/5/2503e136-031f-498a-b042-4077baebe8f8.png?1562876056", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/5/2503e136-031f-498a-b042-4077baebe8f8.jpg?1562876056", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/2/5/2503e136-031f-498a-b042-4077baebe8f8.jpg?1562876056"}, "mana_cost": "{4}{W}{W}", "cmc": 6.0, "type_line": "Sorcery", "oracle_text": "Exile all creatures.", "colors": ["W"], "color_identity": ["W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "d4b88587-a1f5-4b47-9e24-78ec9e57bd0e", "set": "bok", "set_name": "Betrayers of Kamigawa", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/d4b88587-a1f5-4b47-9e24-78ec9e57bd0e", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Abok&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/bok?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/2503e136-031f-498a-b042-4077baebe8f8/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A69ef9308-bc25-4f3c-a5fd-1ebaed6e4842&unique=prints", "collector_number": "4", "digital": false, "rarity": "rare", "flavor_text": "\"The clashing warriors turned to face O-Kagachi, the greatest kami, and their sigh of awe was their last breath.\"\n\u2014*Great Battles of Kamigawa*", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Kev Walker", "artist_ids": ["f366a0ee-a0cd-466d-ba6a-90058c7a31a6"], "illustration_id": "716f1a38-e587-42da-a88e-3fc2ed08c46c", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 11524, "penny_rank": 1189, "prices": {"usd": "3.20", "usd_foil": "9.36", "usd_etched": null, "eur": "2.10", "eur_foil": "2.50", "tix": "0.01"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=81991", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Final+Judgment&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Final+Judgment&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Final+Judgment"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/12254?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Final+Judgment&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/21605?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "99f3744a-71c4-4a54-9e1c-92420526b792", "oracle_id": "978aef8e-6af8-4838-97ce-afb84baa9edc", "multiverse_ids": [146171], "mtgo_id": 28699, "mtgo_foil_id": 28700, "tcgplayer_id": 15488, "cardmarket_id": 17854, "name": "Final Revels", "lang": "en", "released_at": "2007-10-12", "uri": "https://api.scryfall.com/cards/99f3744a-71c4-4a54-9e1c-92420526b792", "scryfall_uri": "https://scryfall.com/card/lrw/113/final-revels?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/9/9/99f3744a-71c4-4a54-9e1c-92420526b792.jpg?1562359766", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/9/99f3744a-71c4-4a54-9e1c-92420526b792.jpg?1562359766", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/9/9/99f3744a-71c4-4a54-9e1c-92420526b792.jpg?1562359766", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/9/9/99f3744a-71c4-4a54-9e1c-92420526b792.png?1562359766", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/9/99f3744a-71c4-4a54-9e1c-92420526b792.jpg?1562359766", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/9/9/99f3744a-71c4-4a54-9e1c-92420526b792.jpg?1562359766"}, "mana_cost": "{4}{B}", "cmc": 5.0, "type_line": "Sorcery", "oracle_text": "Choose one \u2014\n\u2022 All creatures get +2/+0 until end of turn.\n\u2022 All creatures get -0/-2 until end of turn.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "30ec97cb-dca9-4bf4-a98b-310f9d8ceaff", "set": "lrw", "set_name": "Lorwyn", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/30ec97cb-dca9-4bf4-a98b-310f9d8ceaff", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Alrw&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/lrw?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/99f3744a-71c4-4a54-9e1c-92420526b792/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A978aef8e-6af8-4838-97ce-afb84baa9edc&unique=prints", "collector_number": "113", "digital": false, "rarity": "uncommon", "flavor_text": "One whiff of the sweet, pungent scent leads to euphoria\u2014or to an early grave.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Omar Rayyan", "artist_ids": ["256b61a2-b9af-4ff5-b485-47a61818f818"], "illustration_id": "8f6646fc-f102-4971-a471-c4307db3761c", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 22708, "prices": {"usd": "0.09", "usd_foil": "0.25", "usd_etched": null, "eur": "0.04", "eur_foil": "0.09", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=146171", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Final+Revels&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Final+Revels&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Final+Revels"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/15488?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Final+Revels&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/28699?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "13454f69-1458-4c03-ab02-bd697a32eb17", "oracle_id": "eb2524ae-899a-4f91-9feb-0716cf689db3", "multiverse_ids": [153314], "mtgo_id": 29637, "mtgo_foil_id": 29638, "tcgplayer_id": 18628, "cardmarket_id": 19219, "name": "Firespout", "lang": "en", "released_at": "2008-05-02", "uri": "https://api.scryfall.com/cards/13454f69-1458-4c03-ab02-bd697a32eb17", "scryfall_uri": "https://scryfall.com/card/shm/205/firespout?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/1/3/13454f69-1458-4c03-ab02-bd697a32eb17.jpg?1562826991", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/3/13454f69-1458-4c03-ab02-bd697a32eb17.jpg?1562826991", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/1/3/13454f69-1458-4c03-ab02-bd697a32eb17.jpg?1562826991", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/1/3/13454f69-1458-4c03-ab02-bd697a32eb17.png?1562826991", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/3/13454f69-1458-4c03-ab02-bd697a32eb17.jpg?1562826991", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/1/3/13454f69-1458-4c03-ab02-bd697a32eb17.jpg?1562826991"}, "mana_cost": "{2}{R/G}", "cmc": 3.0, "type_line": "Sorcery", "oracle_text": "Firespout deals 3 damage to each creature without flying if {R} was spent to cast this spell and 3 damage to each creature with flying if {G} was spent to cast this spell. (Do both if {R}{G} was spent.)", "colors": ["G", "R"], "color_identity": ["G", "R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "c18c0ba1-2081-4808-9b2e-549bc3a666f3", "set": "shm", "set_name": "Shadowmoor", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/c18c0ba1-2081-4808-9b2e-549bc3a666f3", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ashm&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/shm?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/13454f69-1458-4c03-ab02-bd697a32eb17/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aeb2524ae-899a-4f91-9feb-0716cf689db3&unique=prints", "collector_number": "205", "digital": false, "rarity": "uncommon", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Jeff Miracola", "artist_ids": ["9b465bde-3656-4495-ace4-af4ce29999ed"], "illustration_id": "2717c3f0-f269-49b3-af23-d37c3e4aa031", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 12997, "penny_rank": 1622, "prices": {"usd": "0.43", "usd_foil": "3.71", "usd_etched": null, "eur": "0.41", "eur_foil": "2.09", "tix": "0.07"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=153314", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Firespout&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Firespout&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Firespout"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/18628?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Firespout&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/29637?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "8fecd098-bbf2-44f1-b9f1-7b93ea660880", "oracle_id": "eb2524ae-899a-4f91-9feb-0716cf689db3", "multiverse_ids": [386289], "mtgo_id": 53937, "mtgo_foil_id": 53938, "tcgplayer_id": 92300, "cardmarket_id": 268640, "name": "Firespout", "lang": "en", "released_at": "2014-08-22", "uri": "https://api.scryfall.com/cards/8fecd098-bbf2-44f1-b9f1-7b93ea660880", "scryfall_uri": "https://scryfall.com/card/v14/6/firespout?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/8/f/8fecd098-bbf2-44f1-b9f1-7b93ea660880.jpg?1559966438", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/f/8fecd098-bbf2-44f1-b9f1-7b93ea660880.jpg?1559966438", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/8/f/8fecd098-bbf2-44f1-b9f1-7b93ea660880.jpg?1559966438", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/8/f/8fecd098-bbf2-44f1-b9f1-7b93ea660880.png?1559966438", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/f/8fecd098-bbf2-44f1-b9f1-7b93ea660880.jpg?1559966438", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/8/f/8fecd098-bbf2-44f1-b9f1-7b93ea660880.jpg?1559966438"}, "mana_cost": "{2}{R/G}", "cmc": 3.0, "type_line": "Sorcery", "oracle_text": "Firespout deals 3 damage to each creature without flying if {R} was spent to cast this spell and 3 damage to each creature with flying if {G} was spent to cast this spell. (Do both if {R}{G} was spent.)", "colors": ["G", "R"], "color_identity": ["G", "R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": false, "finishes": ["foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "21dd7ae2-1196-46d4-9acf-4ff9d82797be", "set": "v14", "set_name": "From the Vault: Annihilation", "set_type": "from_the_vault", "set_uri": "https://api.scryfall.com/sets/21dd7ae2-1196-46d4-9acf-4ff9d82797be", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Av14&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/v14?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/8fecd098-bbf2-44f1-b9f1-7b93ea660880/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aeb2524ae-899a-4f91-9feb-0716cf689db3&unique=prints", "collector_number": "6", "digital": false, "rarity": "mythic", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Raymond Swanland", "artist_ids": ["e956bacc-077d-4c12-b6bc-ba798b718af9"], "illustration_id": "04777d30-0e7c-4a48-b8c7-c85a4dc565bb", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "edhrec_rank": 12997, "penny_rank": 1622, "prices": {"usd": null, "usd_foil": "0.63", "usd_etched": null, "eur": null, "eur_foil": "0.89", "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=386289", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Firespout&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Firespout&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Firespout"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/92300?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Firespout&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/53937?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "92334ebe-3d7a-46de-8b91-931e5d56a5a5", "oracle_id": "ede6a352-52de-4ae0-816f-50140033dedf", "multiverse_ids": [4339], "tcgplayer_id": 672, "cardmarket_id": 10118, "name": "Fire Tempest", "lang": "en", "released_at": "1997-05-01", "uri": "https://api.scryfall.com/cards/92334ebe-3d7a-46de-8b91-931e5d56a5a5", "scryfall_uri": "https://scryfall.com/card/por/128/fire-tempest?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/9/2/92334ebe-3d7a-46de-8b91-931e5d56a5a5.jpg?1562447336", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/2/92334ebe-3d7a-46de-8b91-931e5d56a5a5.jpg?1562447336", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/9/2/92334ebe-3d7a-46de-8b91-931e5d56a5a5.jpg?1562447336", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/9/2/92334ebe-3d7a-46de-8b91-931e5d56a5a5.png?1562447336", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/2/92334ebe-3d7a-46de-8b91-931e5d56a5a5.jpg?1562447336", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/9/2/92334ebe-3d7a-46de-8b91-931e5d56a5a5.jpg?1562447336"}, "mana_cost": "{5}{R}{R}", "cmc": 7.0, "type_line": "Sorcery", "oracle_text": "Fire Tempest deals 6 damage to each creature and each player.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "478c47df-5058-4ce6-830e-7e80732b2ca9", "set": "por", "set_name": "Portal", "set_type": "starter", "set_uri": "https://api.scryfall.com/sets/478c47df-5058-4ce6-830e-7e80732b2ca9", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Apor&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/por?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/92334ebe-3d7a-46de-8b91-931e5d56a5a5/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aede6a352-52de-4ae0-816f-50140033dedf&unique=prints", "collector_number": "128", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Mike Dringenberg", "artist_ids": ["a1407afa-0f54-43f8-938b-88b268074f91"], "illustration_id": "c81d15a8-5111-432a-aac8-04eba4d3b506", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 17139, "penny_rank": 12542, "prices": {"usd": "0.98", "usd_foil": null, "usd_etched": null, "eur": "0.75", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=4339", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Fire+Tempest&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Fire+Tempest&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Fire+Tempest"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/672?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Fire+Tempest&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Fire+Tempest&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "87e1f06f-7c87-4da8-b339-e571e391cab1", "oracle_id": "9e608ace-2844-419b-9204-9054127557b2", "multiverse_ids": [50539], "mtgo_id": 20459, "mtgo_foil_id": 20460, "tcgplayer_id": 11605, "cardmarket_id": 424, "name": "Flamebreak", "lang": "en", "released_at": "2004-02-06", "uri": "https://api.scryfall.com/cards/87e1f06f-7c87-4da8-b339-e571e391cab1", "scryfall_uri": "https://scryfall.com/card/dst/61/flamebreak?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/8/7/87e1f06f-7c87-4da8-b339-e571e391cab1.jpg?1562637920", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/7/87e1f06f-7c87-4da8-b339-e571e391cab1.jpg?1562637920", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/8/7/87e1f06f-7c87-4da8-b339-e571e391cab1.jpg?1562637920", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/8/7/87e1f06f-7c87-4da8-b339-e571e391cab1.png?1562637920", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/7/87e1f06f-7c87-4da8-b339-e571e391cab1.jpg?1562637920", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/8/7/87e1f06f-7c87-4da8-b339-e571e391cab1.jpg?1562637920"}, "mana_cost": "{R}{R}{R}", "cmc": 3.0, "type_line": "Sorcery", "oracle_text": "Flamebreak deals 3 damage to each creature without flying and each player. Creatures dealt damage this way can't be regenerated this turn.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "e29cb2dd-1345-4032-abfe-e52e8c8ce074", "set": "dst", "set_name": "Darksteel", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/e29cb2dd-1345-4032-abfe-e52e8c8ce074", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Adst&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/dst?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/87e1f06f-7c87-4da8-b339-e571e391cab1/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A9e608ace-2844-419b-9204-9054127557b2&unique=prints", "collector_number": "61", "digital": false, "rarity": "rare", "flavor_text": "\"Now I'm thirsty.\"\n\u2014Korva, Vulshok battlemaster", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Trevor Hairsine", "artist_ids": ["7c1d7b59-dbf1-4ca8-9975-8e01c593da6e"], "illustration_id": "c0d65360-80eb-4cfb-8449-f61188d27e2e", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 10064, "penny_rank": 4720, "prices": {"usd": "1.51", "usd_foil": "2.49", "usd_etched": null, "eur": "0.48", "eur_foil": "3.00", "tix": "0.01"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=50539", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Flamebreak&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Flamebreak&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Flamebreak"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/11605?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Flamebreak&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/20459?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "16957271-12bb-4031-b476-f7678b753ae3", "oracle_id": "da8dd2ee-0ce3-4ce6-abb9-7444cefcbe83", "multiverse_ids": [457245], "mtgo_id": 71202, "arena_id": 69229, "tcgplayer_id": 183389, "cardmarket_id": 368587, "name": "Flames of the Raze-Boar", "lang": "en", "released_at": "2019-01-25", "uri": "https://api.scryfall.com/cards/16957271-12bb-4031-b476-f7678b753ae3", "scryfall_uri": "https://scryfall.com/card/rna/101/flames-of-the-raze-boar?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/1/6/16957271-12bb-4031-b476-f7678b753ae3.jpg?1584830878", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/6/16957271-12bb-4031-b476-f7678b753ae3.jpg?1584830878", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/1/6/16957271-12bb-4031-b476-f7678b753ae3.jpg?1584830878", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/1/6/16957271-12bb-4031-b476-f7678b753ae3.png?1584830878", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/6/16957271-12bb-4031-b476-f7678b753ae3.jpg?1584830878", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/1/6/16957271-12bb-4031-b476-f7678b753ae3.jpg?1584830878"}, "mana_cost": "{5}{R}", "cmc": 6.0, "type_line": "Instant", "oracle_text": "Flames of the Raze-Boar deals 4 damage to target creature an opponent controls. Then Flames of the Raze-Boar deals 2 damage to each other creature that player controls if you control a creature with power 4 or greater.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "97a7fd84-8d89-45a3-b48b-c951f6a3f9f1", "set": "rna", "set_name": "Ravnica Allegiance", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/97a7fd84-8d89-45a3-b48b-c951f6a3f9f1", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Arna&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/rna?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/16957271-12bb-4031-b476-f7678b753ae3/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ada8dd2ee-0ce3-4ce6-abb9-7444cefcbe83&unique=prints", "collector_number": "101", "digital": false, "rarity": "uncommon", "flavor_text": "\"Fire will cure a multitude of ills.\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Jason A. Engle", "artist_ids": ["02e2b5de-4341-464c-8fdb-a1adbf873bc0"], "illustration_id": "9dac8e74-b7b0-4a67-8c26-ef6b8ec8b689", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 16021, "penny_rank": 11700, "prices": {"usd": "0.04", "usd_foil": "0.10", "usd_etched": null, "eur": "0.02", "eur_foil": "0.31", "tix": "0.04"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=457245", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Flames+of+the+Raze-Boar&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Flames+of+the+Raze-Boar&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Flames+of+the+Raze-Boar"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/183389?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Flames+of+the+Raze-Boar&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/71202?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "8e489d6c-2eb2-4914-ae71-c9da55b51d0b", "oracle_id": "0b34f471-40da-4c7a-81df-245fc3d14092", "multiverse_ids": [], "tcgplayer_id": 193782, "cardmarket_id": 378321, "name": "Flame Sweep", "lang": "en", "released_at": "2019-07-12", "uri": "https://api.scryfall.com/cards/8e489d6c-2eb2-4914-ae71-c9da55b51d0b", "scryfall_uri": "https://scryfall.com/card/pm20/139/flame-sweep?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/8/e/8e489d6c-2eb2-4914-ae71-c9da55b51d0b.jpg?1586187261", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/e/8e489d6c-2eb2-4914-ae71-c9da55b51d0b.jpg?1586187261", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/8/e/8e489d6c-2eb2-4914-ae71-c9da55b51d0b.jpg?1586187261", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/8/e/8e489d6c-2eb2-4914-ae71-c9da55b51d0b.png?1586187261", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/e/8e489d6c-2eb2-4914-ae71-c9da55b51d0b.jpg?1586187261", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/8/e/8e489d6c-2eb2-4914-ae71-c9da55b51d0b.jpg?1586187261"}, "mana_cost": "{2}{R}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Flame Sweep deals 2 damage to each creature except for creatures you control with flying.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": true, "reprint": true, "variation": false, "set_id": "bb017236-6da1-4558-a8bd-cf020e964530", "set": "pm20", "set_name": "Core Set 2020 Promos", "set_type": "promo", "set_uri": "https://api.scryfall.com/sets/bb017236-6da1-4558-a8bd-cf020e964530", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Apm20&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/pm20?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/8e489d6c-2eb2-4914-ae71-c9da55b51d0b/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A0b34f471-40da-4c7a-81df-245fc3d14092&unique=prints", "collector_number": "139", "digital": false, "rarity": "uncommon", "watermark": "planeswalker", "flavor_text": "\"I have calculated that a dragon in flight, in a single strafing run, can cover an area of\u2014\"\n\u2014Thaedus the Clever, last words", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Viktor Titov", "artist_ids": ["2270c0b0-afb4-42b0-bcb6-25fe4ad6eef2"], "illustration_id": "2e9c568e-b762-4702-9c5f-59e15436fa86", "border_color": "black", "frame": "2015", "frame_effects": ["inverted"], "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "promo_types": ["promopack"], "edhrec_rank": 7876, "penny_rank": 743, "prices": {"usd": "0.16", "usd_foil": "0.62", "usd_etched": null, "eur": "0.02", "eur_foil": "0.25", "tix": null}, "related_uris": {"tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Flame+Sweep&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Flame+Sweep&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Flame+Sweep"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/193782?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Flame+Sweep&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Flame+Sweep&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "e069d90a-e7d9-4967-a872-0dd8a0a9934a", "oracle_id": "cee8ec5f-e36d-4bca-9b19-cb33113835b1", "multiverse_ids": [5150], "mtgo_id": 10253, "mtgo_foil_id": 10254, "tcgplayer_id": 5342, "cardmarket_id": 9166, "name": "Flame Wave", "lang": "en", "released_at": "1998-03-02", "uri": "https://api.scryfall.com/cards/e069d90a-e7d9-4967-a872-0dd8a0a9934a", "scryfall_uri": "https://scryfall.com/card/sth/81/flame-wave?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/e/0/e069d90a-e7d9-4967-a872-0dd8a0a9934a.jpg?1562597824", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/0/e069d90a-e7d9-4967-a872-0dd8a0a9934a.jpg?1562597824", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/e/0/e069d90a-e7d9-4967-a872-0dd8a0a9934a.jpg?1562597824", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/e/0/e069d90a-e7d9-4967-a872-0dd8a0a9934a.png?1562597824", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/0/e069d90a-e7d9-4967-a872-0dd8a0a9934a.jpg?1562597824", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/e/0/e069d90a-e7d9-4967-a872-0dd8a0a9934a.jpg?1562597824"}, "mana_cost": "{3}{R}{R}{R}{R}", "cmc": 7.0, "type_line": "Sorcery", "oracle_text": "Flame Wave deals 4 damage to target player or planeswalker and each creature that player or that planeswalker's controller controls.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "5c83396a-d386-4367-926b-571a75b086a3", "set": "sth", "set_name": "Stronghold", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/5c83396a-d386-4367-926b-571a75b086a3", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Asth&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/sth?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/e069d90a-e7d9-4967-a872-0dd8a0a9934a/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Acee8ec5f-e36d-4bca-9b19-cb33113835b1&unique=prints", "collector_number": "81", "digital": false, "rarity": "uncommon", "flavor_text": "\"I hear the roaring of a wave whose waters are red and whose mists are black.\"\n\u2014Oracle *en*-Vec", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Donato Giancola", "artist_ids": ["90332db2-aecb-4d79-917b-95cbeb8d0cb6"], "illustration_id": "bea15e10-8acc-4811-b63e-98bb69430510", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 16328, "penny_rank": 9970, "prices": {"usd": "0.13", "usd_foil": null, "usd_etched": null, "eur": "0.22", "eur_foil": null, "tix": "0.09"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=5150", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Flame+Wave&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Flame+Wave&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Flame+Wave"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/5342?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Flame+Wave&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/10253?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "77899cb2-4d87-4c2d-99ae-1ae75bc5dc86", "oracle_id": "cc2d016a-af44-427b-a25a-593274369449", "multiverse_ids": [407580], "mtgo_id": 59535, "mtgo_foil_id": 59536, "tcgplayer_id": 110821, "cardmarket_id": 287235, "name": "Flaying Tendrils", "lang": "en", "released_at": "2016-01-22", "uri": "https://api.scryfall.com/cards/77899cb2-4d87-4c2d-99ae-1ae75bc5dc86", "scryfall_uri": "https://scryfall.com/card/ogw/70/flaying-tendrils?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/7/7/77899cb2-4d87-4c2d-99ae-1ae75bc5dc86.jpg?1562918962", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/7/77899cb2-4d87-4c2d-99ae-1ae75bc5dc86.jpg?1562918962", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/7/7/77899cb2-4d87-4c2d-99ae-1ae75bc5dc86.jpg?1562918962", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/7/7/77899cb2-4d87-4c2d-99ae-1ae75bc5dc86.png?1562918962", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/7/77899cb2-4d87-4c2d-99ae-1ae75bc5dc86.jpg?1562918962", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/7/7/77899cb2-4d87-4c2d-99ae-1ae75bc5dc86.jpg?1562918962"}, "mana_cost": "{1}{B}{B}", "cmc": 3.0, "type_line": "Sorcery", "oracle_text": "Devoid (This card has no color.)\nAll creatures get -2/-2 until end of turn. If a creature would die this turn, exile it instead.", "colors": [], "color_identity": ["B"], "keywords": ["Devoid"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "cd51d245-8f95-45b0-ab5f-e2b3a3eb5dfe", "set": "ogw", "set_name": "Oath of the Gatewatch", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/cd51d245-8f95-45b0-ab5f-e2b3a3eb5dfe", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aogw&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ogw?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/77899cb2-4d87-4c2d-99ae-1ae75bc5dc86/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Acc2d016a-af44-427b-a25a-593274369449&unique=prints", "collector_number": "70", "digital": false, "rarity": "uncommon", "flavor_text": "Only one Eldrazi stood against them, yet the defenders were outnumbered.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Slawomir Maniak", "artist_ids": ["d887bc66-2779-416c-a1ff-d8720242063e"], "illustration_id": "c9ecb977-e83d-43fa-9b25-f4022a6cc53a", "border_color": "black", "frame": "2015", "frame_effects": ["devoid"], "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 15171, "penny_rank": 724, "prices": {"usd": "0.10", "usd_foil": "0.29", "usd_etched": null, "eur": "0.06", "eur_foil": "0.10", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=407580", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Flaying+Tendrils&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Flaying+Tendrils&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Flaying+Tendrils"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/110821?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Flaying+Tendrils&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/59535?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "10bf8dbf-ae2e-41cd-904c-84b9cca14c27", "oracle_id": "cc2d016a-af44-427b-a25a-593274369449", "multiverse_ids": [], "tcgplayer_id": 119740, "cardmarket_id": 290914, "name": "Flaying Tendrils", "lang": "en", "released_at": "2016-01-01", "uri": "https://api.scryfall.com/cards/10bf8dbf-ae2e-41cd-904c-84b9cca14c27", "scryfall_uri": "https://scryfall.com/card/f16/9/flaying-tendrils?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/1/0/10bf8dbf-ae2e-41cd-904c-84b9cca14c27.jpg?1575936034", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/0/10bf8dbf-ae2e-41cd-904c-84b9cca14c27.jpg?1575936034", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/1/0/10bf8dbf-ae2e-41cd-904c-84b9cca14c27.jpg?1575936034", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/1/0/10bf8dbf-ae2e-41cd-904c-84b9cca14c27.png?1575936034", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/0/10bf8dbf-ae2e-41cd-904c-84b9cca14c27.jpg?1575936034", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/1/0/10bf8dbf-ae2e-41cd-904c-84b9cca14c27.jpg?1575936034"}, "mana_cost": "{1}{B}{B}", "cmc": 3.0, "type_line": "Sorcery", "oracle_text": "Devoid (This card has no color.)\nAll creatures get -2/-2 until end of turn. If a creature would die this turn, exile it instead.", "colors": [], "color_identity": ["B"], "keywords": ["Devoid"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": true, "nonfoil": false, "finishes": ["foil"], "oversized": false, "promo": true, "reprint": true, "variation": false, "set_id": "820ba719-0234-4ca7-9d72-e0f8d56460bb", "set": "f16", "set_name": "Friday Night Magic 2016", "set_type": "promo", "set_uri": "https://api.scryfall.com/sets/820ba719-0234-4ca7-9d72-e0f8d56460bb", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Af16&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/f16?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/10bf8dbf-ae2e-41cd-904c-84b9cca14c27/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Acc2d016a-af44-427b-a25a-593274369449&unique=prints", "collector_number": "9", "digital": false, "rarity": "rare", "flavor_text": "Only one Eldrazi stood against them, yet the defenders were outnumbered.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Svetlin Velinov", "artist_ids": ["ffd063ae-c097-4f26-b2e6-b1e2137708bc"], "illustration_id": "6e442c14-66cc-4d4b-a39e-08dc1318c0fa", "border_color": "black", "frame": "2015", "frame_effects": ["devoid"], "security_stamp": "oval", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "promo_types": ["tourney", "fnm"], "edhrec_rank": 15171, "penny_rank": 724, "prices": {"usd": null, "usd_foil": "0.26", "usd_etched": null, "eur": null, "eur_foil": "0.25", "tix": null}, "related_uris": {"tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Flaying+Tendrils&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Flaying+Tendrils&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Flaying+Tendrils"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/119740?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Flaying+Tendrils&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Flaying+Tendrils&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "ec7b02e1-0a20-4247-ae2a-056c5356f168", "oracle_id": "ad779760-1197-4248-8e21-7a048122640f", "multiverse_ids": [21355], "mtgo_id": 13847, "mtgo_foil_id": 13848, "tcgplayer_id": 7158, "cardmarket_id": 11806, "name": "Flowstone Slide", "lang": "en", "released_at": "2000-02-14", "uri": "https://api.scryfall.com/cards/ec7b02e1-0a20-4247-ae2a-056c5356f168", "scryfall_uri": "https://scryfall.com/card/nem/83/flowstone-slide?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/e/c/ec7b02e1-0a20-4247-ae2a-056c5356f168.jpg?1562632691", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/c/ec7b02e1-0a20-4247-ae2a-056c5356f168.jpg?1562632691", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/e/c/ec7b02e1-0a20-4247-ae2a-056c5356f168.jpg?1562632691", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/e/c/ec7b02e1-0a20-4247-ae2a-056c5356f168.png?1562632691", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/c/ec7b02e1-0a20-4247-ae2a-056c5356f168.jpg?1562632691", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/e/c/ec7b02e1-0a20-4247-ae2a-056c5356f168.jpg?1562632691"}, "mana_cost": "{X}{2}{R}{R}", "cmc": 4.0, "type_line": "Sorcery", "oracle_text": "All creatures get +X/-X until end of turn.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "fa5d1fdb-f781-473d-b14d-50396d40d43f", "set": "nem", "set_name": "Nemesis", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/fa5d1fdb-f781-473d-b14d-50396d40d43f", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Anem&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/nem?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/ec7b02e1-0a20-4247-ae2a-056c5356f168/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aad779760-1197-4248-8e21-7a048122640f&unique=prints", "collector_number": "83", "digital": false, "rarity": "rare", "flavor_text": "It may look like soil, but its nature is malice.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Chippy", "artist_ids": ["a36f01a0-e51a-48b2-a556-b9b3bc73f969"], "illustration_id": "bddf30f2-c008-4f9e-af3e-4a7508c911a4", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 16559, "prices": {"usd": "0.25", "usd_foil": "15.98", "usd_etched": null, "eur": "0.35", "eur_foil": "19.99", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=21355", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Flowstone+Slide&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Flowstone+Slide&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Flowstone+Slide"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/7158?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Flowstone+Slide&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/13847?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "36eae0e1-7100-449d-a259-7abfcd429117", "oracle_id": "457dc141-bc72-42ad-b482-c78183462e34", "multiverse_ids": [19826], "mtgo_id": 13707, "mtgo_foil_id": 13708, "tcgplayer_id": 6530, "cardmarket_id": 11509, "name": "Forced March", "lang": "en", "released_at": "1999-10-04", "uri": "https://api.scryfall.com/cards/36eae0e1-7100-449d-a259-7abfcd429117", "scryfall_uri": "https://scryfall.com/card/mmq/136/forced-march?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/3/6/36eae0e1-7100-449d-a259-7abfcd429117.jpg?1562379925", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/6/36eae0e1-7100-449d-a259-7abfcd429117.jpg?1562379925", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/3/6/36eae0e1-7100-449d-a259-7abfcd429117.jpg?1562379925", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/3/6/36eae0e1-7100-449d-a259-7abfcd429117.png?1562379925", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/6/36eae0e1-7100-449d-a259-7abfcd429117.jpg?1562379925", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/3/6/36eae0e1-7100-449d-a259-7abfcd429117.jpg?1562379925"}, "mana_cost": "{X}{B}{B}{B}", "cmc": 3.0, "type_line": "Sorcery", "oracle_text": "Destroy all creatures with mana value X or less.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "385e11a4-492b-4d07-b4a6-a1409ef829b8", "set": "mmq", "set_name": "Mercadian Masques", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/385e11a4-492b-4d07-b4a6-a1409ef829b8", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ammq&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/mmq?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/36eae0e1-7100-449d-a259-7abfcd429117/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A457dc141-bc72-42ad-b482-c78183462e34&unique=prints", "collector_number": "136", "digital": false, "rarity": "rare", "flavor_text": "The Caterans call it a screening process. The dead are in no condition to argue.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Greg Hildebrandt & Tim Hildebrandt", "artist_ids": ["020f967b-0d2f-4166-aabe-901dba8bc7ec", "caa7228c-f74c-4145-91fb-1af8d623c353"], "illustration_id": "30c19c3b-f6ac-474d-bda2-19774e67f23e", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 14409, "prices": {"usd": "0.70", "usd_foil": "29.99", "usd_etched": null, "eur": "0.70", "eur_foil": "11.00", "tix": "0.16"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=19826", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Forced+March&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Forced+March&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Forced+March"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/6530?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Forced+March&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/13707?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "f00f27a7-9e92-4fbf-baa8-f47a5eee48a6", "oracle_id": "b17ea905-0696-4e58-b564-557e87236e27", "multiverse_ids": [417588], "mtgo_id": 61631, "mtgo_foil_id": 61632, "tcgplayer_id": 123068, "cardmarket_id": 292782, "name": "Fumigate", "lang": "en", "released_at": "2016-09-30", "uri": "https://api.scryfall.com/cards/f00f27a7-9e92-4fbf-baa8-f47a5eee48a6", "scryfall_uri": "https://scryfall.com/card/kld/15/fumigate?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/f/0/f00f27a7-9e92-4fbf-baa8-f47a5eee48a6.jpg?1576380863", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/0/f00f27a7-9e92-4fbf-baa8-f47a5eee48a6.jpg?1576380863", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/f/0/f00f27a7-9e92-4fbf-baa8-f47a5eee48a6.jpg?1576380863", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/f/0/f00f27a7-9e92-4fbf-baa8-f47a5eee48a6.png?1576380863", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/0/f00f27a7-9e92-4fbf-baa8-f47a5eee48a6.jpg?1576380863", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/f/0/f00f27a7-9e92-4fbf-baa8-f47a5eee48a6.jpg?1576380863"}, "mana_cost": "{3}{W}{W}", "cmc": 5.0, "type_line": "Sorcery", "oracle_text": "Destroy all creatures. You gain 1 life for each creature destroyed this way.", "colors": ["W"], "color_identity": ["W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "d667e468-be8f-411f-a030-473d148deb74", "set": "kld", "set_name": "Kaladesh", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/d667e468-be8f-411f-a030-473d148deb74", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Akld&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/kld?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/f00f27a7-9e92-4fbf-baa8-f47a5eee48a6/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ab17ea905-0696-4e58-b564-557e87236e27&unique=prints", "collector_number": "15", "digital": false, "rarity": "rare", "flavor_text": "\"Ghirapur's gremlin population poses a threat to the infrastructure of the fairgrounds. Threats must be eliminated.\"\n\u2014Sram, senior edificer", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Svetlin Velinov", "artist_ids": ["ffd063ae-c097-4f26-b2e6-b1e2137708bc"], "illustration_id": "63732ba2-5872-4653-adba-7435bf2b68d0", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 851, "penny_rank": 789, "prices": {"usd": "1.27", "usd_foil": "2.86", "usd_etched": null, "eur": "0.56", "eur_foil": "1.58", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=417588", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Fumigate&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Fumigate&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Fumigate"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/123068?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Fumigate&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/61631?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "26c5c233-a373-4ac4-9b99-81ed97df1f9b", "oracle_id": "337b0807-94cb-48d0-b752-61fbd05560e4", "multiverse_ids": [79244], "mtgo_id": 21433, "mtgo_foil_id": 21434, "tcgplayer_id": 11997, "cardmarket_id": 12016, "name": "Gale Force", "lang": "en", "released_at": "2004-10-01", "uri": "https://api.scryfall.com/cards/26c5c233-a373-4ac4-9b99-81ed97df1f9b", "scryfall_uri": "https://scryfall.com/card/chk/209/gale-force?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/2/6/26c5c233-a373-4ac4-9b99-81ed97df1f9b.jpg?1562758454", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/6/26c5c233-a373-4ac4-9b99-81ed97df1f9b.jpg?1562758454", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/2/6/26c5c233-a373-4ac4-9b99-81ed97df1f9b.jpg?1562758454", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/2/6/26c5c233-a373-4ac4-9b99-81ed97df1f9b.png?1562758454", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/6/26c5c233-a373-4ac4-9b99-81ed97df1f9b.jpg?1562758454", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/2/6/26c5c233-a373-4ac4-9b99-81ed97df1f9b.jpg?1562758454"}, "mana_cost": "{4}{G}", "cmc": 5.0, "type_line": "Sorcery", "oracle_text": "Gale Force deals 5 damage to each creature with flying.", "colors": ["G"], "color_identity": ["G"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "6183d21f-a0af-4118-ba58-aca1d8719c01", "set": "chk", "set_name": "Champions of Kamigawa", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/6183d21f-a0af-4118-ba58-aca1d8719c01", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Achk&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/chk?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/26c5c233-a373-4ac4-9b99-81ed97df1f9b/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A337b0807-94cb-48d0-b752-61fbd05560e4&unique=prints", "collector_number": "209", "digital": false, "rarity": "uncommon", "flavor_text": "Everything the kami had done, they did with more force. Gentle breezes became typhoons, rolling rivers turned to crushing rapids, and gentle growth became overnight masses of thorns and vines.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Lars Grant-West", "artist_ids": ["21ed6499-c4d3-4965-ab02-6c7228275bec"], "illustration_id": "58dc4867-f706-484e-a411-923b0c4749b0", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 21857, "prices": {"usd": "0.09", "usd_foil": "0.26", "usd_etched": null, "eur": "0.02", "eur_foil": "0.30", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=79244", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Gale+Force&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Gale+Force&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Gale+Force"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/11997?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Gale+Force&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/21433?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "2b574b44-01e1-4197-99bd-57e54aebc5ff", "oracle_id": "3b97bf8e-d5c4-4eae-a453-73456e0461a1", "multiverse_ids": [457246], "mtgo_id": 71204, "arena_id": 69230, "tcgplayer_id": 183212, "cardmarket_id": 368357, "name": "Gates Ablaze", "lang": "en", "released_at": "2019-01-25", "uri": "https://api.scryfall.com/cards/2b574b44-01e1-4197-99bd-57e54aebc5ff", "scryfall_uri": "https://scryfall.com/card/rna/102/gates-ablaze?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/2/b/2b574b44-01e1-4197-99bd-57e54aebc5ff.jpg?1584830891", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/b/2b574b44-01e1-4197-99bd-57e54aebc5ff.jpg?1584830891", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/2/b/2b574b44-01e1-4197-99bd-57e54aebc5ff.jpg?1584830891", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/2/b/2b574b44-01e1-4197-99bd-57e54aebc5ff.png?1584830891", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/b/2b574b44-01e1-4197-99bd-57e54aebc5ff.jpg?1584830891", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/2/b/2b574b44-01e1-4197-99bd-57e54aebc5ff.jpg?1584830891"}, "mana_cost": "{2}{R}", "cmc": 3.0, "type_line": "Sorcery", "oracle_text": "Gates Ablaze deals X damage to each creature, where X is the number of Gates you control.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "97a7fd84-8d89-45a3-b48b-c951f6a3f9f1", "set": "rna", "set_name": "Ravnica Allegiance", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/97a7fd84-8d89-45a3-b48b-c951f6a3f9f1", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Arna&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/rna?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/2b574b44-01e1-4197-99bd-57e54aebc5ff/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A3b97bf8e-d5c4-4eae-a453-73456e0461a1&unique=prints", "collector_number": "102", "digital": false, "rarity": "uncommon", "flavor_text": "When the Izzet's spirit of invention extends to the city's infrastructure, the results are sometimes explosive.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Eytan Zana", "artist_ids": ["0d8d6726-4051-445a-8374-a919aad98f38"], "illustration_id": "75802fa9-b1c3-4ddd-9382-f1e1ca13f99a", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 8846, "penny_rank": 700, "preview": {"source": "Petrify", "source_uri": "https://www.youtube.com/watch?v=sTqiuwkBcUs&feature=youtu.be", "previewed_at": "2019-01-09"}, "prices": {"usd": "0.35", "usd_foil": "3.22", "usd_etched": null, "eur": "0.13", "eur_foil": "0.98", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=457246", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Gates+Ablaze&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Gates+Ablaze&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Gates+Ablaze"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/183212?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Gates+Ablaze&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/71204?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "88bb420a-8bf1-4504-b1b5-2d929be978be", "oracle_id": "e4648fa3-0343-414b-b04d-07fe0d132145", "multiverse_ids": [439730], "mtgo_id": 66599, "arena_id": 66763, "tcgplayer_id": 155686, "cardmarket_id": 315338, "name": "Golden Demise", "lang": "en", "released_at": "2018-01-19", "uri": "https://api.scryfall.com/cards/88bb420a-8bf1-4504-b1b5-2d929be978be", "scryfall_uri": "https://scryfall.com/card/rix/73/golden-demise?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/8/8/88bb420a-8bf1-4504-b1b5-2d929be978be.jpg?1555040232", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/8/88bb420a-8bf1-4504-b1b5-2d929be978be.jpg?1555040232", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/8/8/88bb420a-8bf1-4504-b1b5-2d929be978be.jpg?1555040232", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/8/8/88bb420a-8bf1-4504-b1b5-2d929be978be.png?1555040232", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/8/88bb420a-8bf1-4504-b1b5-2d929be978be.jpg?1555040232", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/8/8/88bb420a-8bf1-4504-b1b5-2d929be978be.jpg?1555040232"}, "mana_cost": "{1}{B}{B}", "cmc": 3.0, "type_line": "Sorcery", "oracle_text": "Ascend (If you control ten or more permanents, you get the city's blessing for the rest of the game.)\nAll creatures get -2/-2 until end of turn. If you have the city's blessing, instead only creatures your opponents control get -2/-2 until end of turn.", "colors": ["B"], "color_identity": ["B"], "keywords": ["Ascend"], "all_parts": [{"object": "related_card", "id": "88bb420a-8bf1-4504-b1b5-2d929be978be", "component": "combo_piece", "name": "Golden Demise", "type_line": "Sorcery", "uri": "https://api.scryfall.com/cards/88bb420a-8bf1-4504-b1b5-2d929be978be"}, {"object": "related_card", "id": "ba64ed3e-93c5-406f-a38d-65cc68472122", "component": "combo_piece", "name": "City's Blessing", "type_line": "Card", "uri": "https://api.scryfall.com/cards/ba64ed3e-93c5-406f-a38d-65cc68472122"}], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "2f7e40fc-772d-4a85-bfdd-01653c41d0fa", "set": "rix", "set_name": "Rivals of Ixalan", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/2f7e40fc-772d-4a85-bfdd-01653c41d0fa", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Arix&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/rix?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/88bb420a-8bf1-4504-b1b5-2d929be978be/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ae4648fa3-0343-414b-b04d-07fe0d132145&unique=prints", "collector_number": "73", "digital": false, "rarity": "uncommon", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Deruchenko Alexander", "artist_ids": ["806f6ff9-6ed4-4e93-998a-a562c0b792e6"], "illustration_id": "744fbf88-b9e1-4c37-8f80-be7d3b84854c", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 12075, "penny_rank": 4241, "prices": {"usd": "0.06", "usd_foil": "0.21", "usd_etched": null, "eur": "0.25", "eur_foil": "0.21", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=439730", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Golden+Demise&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Golden+Demise&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Golden+Demise"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/155686?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Golden+Demise&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/66599?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "48fce388-eefc-4234-8dd9-1260c1ba97eb", "oracle_id": "f0ab7166-9fcf-46e5-af2c-b7f628db4789", "multiverse_ids": [265385], "mtgo_id": 46451, "mtgo_foil_id": 46452, "tcgplayer_id": 66662, "cardmarket_id": 258527, "name": "Golgari Charm", "lang": "en", "released_at": "2012-10-05", "uri": "https://api.scryfall.com/cards/48fce388-eefc-4234-8dd9-1260c1ba97eb", "scryfall_uri": "https://scryfall.com/card/rtr/164/golgari-charm?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/4/8/48fce388-eefc-4234-8dd9-1260c1ba97eb.jpg?1562785737", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/8/48fce388-eefc-4234-8dd9-1260c1ba97eb.jpg?1562785737", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/4/8/48fce388-eefc-4234-8dd9-1260c1ba97eb.jpg?1562785737", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/4/8/48fce388-eefc-4234-8dd9-1260c1ba97eb.png?1562785737", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/8/48fce388-eefc-4234-8dd9-1260c1ba97eb.jpg?1562785737", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/4/8/48fce388-eefc-4234-8dd9-1260c1ba97eb.jpg?1562785737"}, "mana_cost": "{B}{G}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Choose one \u2014\n\u2022 All creatures get -1/-1 until end of turn.\n\u2022 Destroy target enchantment.\n\u2022 Regenerate each creature you control.", "colors": ["B", "G"], "color_identity": ["B", "G"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "80b2374d-c5f1-403e-9772-f6c806fd275e", "set": "rtr", "set_name": "Return to Ravnica", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/80b2374d-c5f1-403e-9772-f6c806fd275e", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Artr&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/rtr?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/48fce388-eefc-4234-8dd9-1260c1ba97eb/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Af0ab7166-9fcf-46e5-af2c-b7f628db4789&unique=prints", "collector_number": "164", "digital": false, "rarity": "uncommon", "watermark": "golgari", "flavor_text": "\"Let the rest of Ravnica sneer. One way or another, they all end up in the undercity.\"\n\u2014Jarad", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Zoltan Boros", "artist_ids": ["1885e6cb-c827-4896-994e-3d0a027d602f"], "illustration_id": "9d1d55ab-757b-4a1a-a3d6-e1357442b1e4", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 858, "penny_rank": 6746, "prices": {"usd": "0.53", "usd_foil": "4.85", "usd_etched": null, "eur": "0.46", "eur_foil": "0.90", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=265385", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Golgari+Charm&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Golgari+Charm&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Golgari+Charm"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/66662?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Golgari+Charm&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/46451?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "9235afe5-0a6b-43c2-921c-18524cf032f1", "oracle_id": "e552cab2-cee0-4420-9419-4bada4b2f241", "multiverse_ids": [366360], "mtgo_id": 47483, "mtgo_foil_id": 47484, "tcgplayer_id": 67437, "cardmarket_id": 259931, "name": "Gruul Charm", "lang": "en", "released_at": "2013-02-01", "uri": "https://api.scryfall.com/cards/9235afe5-0a6b-43c2-921c-18524cf032f1", "scryfall_uri": "https://scryfall.com/card/gtc/169/gruul-charm?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/9/2/9235afe5-0a6b-43c2-921c-18524cf032f1.jpg?1561836885", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/2/9235afe5-0a6b-43c2-921c-18524cf032f1.jpg?1561836885", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/9/2/9235afe5-0a6b-43c2-921c-18524cf032f1.jpg?1561836885", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/9/2/9235afe5-0a6b-43c2-921c-18524cf032f1.png?1561836885", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/2/9235afe5-0a6b-43c2-921c-18524cf032f1.jpg?1561836885", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/9/2/9235afe5-0a6b-43c2-921c-18524cf032f1.jpg?1561836885"}, "mana_cost": "{R}{G}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Choose one \u2014\n\u2022 Creatures without flying can't block this turn.\n\u2022 Gain control of all permanents you own.\n\u2022 Gruul Charm deals 3 damage to each creature with flying.", "colors": ["G", "R"], "color_identity": ["G", "R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "035a05f7-e020-4f50-a141-ed16ba704bd2", "set": "gtc", "set_name": "Gatecrash", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/035a05f7-e020-4f50-a141-ed16ba704bd2", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Agtc&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/gtc?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/9235afe5-0a6b-43c2-921c-18524cf032f1/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ae552cab2-cee0-4420-9419-4bada4b2f241&unique=prints", "collector_number": "169", "digital": false, "rarity": "uncommon", "watermark": "gruul", "flavor_text": "\"Not Gruul? Then die!\"\n\u2014Borborygmos", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Zoltan Boros", "artist_ids": ["1885e6cb-c827-4896-994e-3d0a027d602f"], "illustration_id": "c5a14968-8d24-45df-9f86-402710f01c6f", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 6197, "penny_rank": 8220, "prices": {"usd": "0.12", "usd_foil": "1.94", "usd_etched": null, "eur": "0.14", "eur_foil": "0.45", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=366360", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Gruul+Charm&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Gruul+Charm&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Gruul+Charm"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/67437?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Gruul+Charm&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/47483?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "8fa7526a-7a4e-4b3d-b96e-91f2bbf1c7bd", "oracle_id": "a1b87d5d-9493-4001-8c7e-553f40de61ea", "multiverse_ids": [10597], "tcgplayer_id": 470, "cardmarket_id": 11200, "name": "Guan Yu's 1,000-Li March", "lang": "en", "released_at": "1999-07-06", "uri": "https://api.scryfall.com/cards/8fa7526a-7a4e-4b3d-b96e-91f2bbf1c7bd", "scryfall_uri": "https://scryfall.com/card/ptk/7/guan-yus-1000-li-march?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/8/f/8fa7526a-7a4e-4b3d-b96e-91f2bbf1c7bd.jpg?1562257048", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/f/8fa7526a-7a4e-4b3d-b96e-91f2bbf1c7bd.jpg?1562257048", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/8/f/8fa7526a-7a4e-4b3d-b96e-91f2bbf1c7bd.jpg?1562257048", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/8/f/8fa7526a-7a4e-4b3d-b96e-91f2bbf1c7bd.png?1562257048", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/f/8fa7526a-7a4e-4b3d-b96e-91f2bbf1c7bd.jpg?1562257048", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/8/f/8fa7526a-7a4e-4b3d-b96e-91f2bbf1c7bd.jpg?1562257048"}, "mana_cost": "{4}{W}{W}", "cmc": 6.0, "type_line": "Sorcery", "oracle_text": "Destroy all tapped creatures.", "colors": ["W"], "color_identity": ["W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "2676ff2e-9d86-4b5b-b935-e84e41b0755e", "set": "ptk", "set_name": "Portal Three Kingdoms", "set_type": "starter", "set_uri": "https://api.scryfall.com/sets/2676ff2e-9d86-4b5b-b935-e84e41b0755e", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aptk&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ptk?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/8fa7526a-7a4e-4b3d-b96e-91f2bbf1c7bd/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aa1b87d5d-9493-4001-8c7e-553f40de61ea&unique=prints", "collector_number": "7", "digital": false, "rarity": "rare", "flavor_text": "\"He [Guan Yu] covered the ground on a thousand-*li* horse; / With dragon blade he took each pass by force.\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Yang Guangmai", "artist_ids": ["efbc593f-cfe8-4e97-b658-d3ecd8f00625"], "illustration_id": "0e52338b-76a5-4298-b370-61691d6f2b64", "border_color": "white", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 21087, "penny_rank": 12388, "prices": {"usd": "120.00", "usd_foil": null, "usd_etched": null, "eur": "12.00", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=10597", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Guan+Yu%27s+1%2C000-Li+March&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Guan+Yu%27s+1%2C000-Li+March&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Guan+Yu%27s+1%2C000-Li+March"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/470?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Guan+Yu%27s+1%2C000-Li+March&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Guan+Yu%27s+1%2C000-Li+March&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "a7e9d786-4e9b-447b-a5dc-ca117c4961c5", "oracle_id": "73eacb1f-3d35-4ead-bead-f85e6cfc17ab", "multiverse_ids": [3144], "tcgplayer_id": 4165, "cardmarket_id": 7931, "name": "Hail Storm", "lang": "en", "released_at": "1996-06-10", "uri": "https://api.scryfall.com/cards/a7e9d786-4e9b-447b-a5dc-ca117c4961c5", "scryfall_uri": "https://scryfall.com/card/all/95/hail-storm?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/a/7/a7e9d786-4e9b-447b-a5dc-ca117c4961c5.jpg?1562769694", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/7/a7e9d786-4e9b-447b-a5dc-ca117c4961c5.jpg?1562769694", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/a/7/a7e9d786-4e9b-447b-a5dc-ca117c4961c5.jpg?1562769694", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/a/7/a7e9d786-4e9b-447b-a5dc-ca117c4961c5.png?1562769694", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/7/a7e9d786-4e9b-447b-a5dc-ca117c4961c5.jpg?1562769694", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/a/7/a7e9d786-4e9b-447b-a5dc-ca117c4961c5.jpg?1562769694"}, "mana_cost": "{1}{G}{G}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Hail Storm deals 2 damage to each attacking creature and 1 damage to you and each creature you control.", "colors": ["G"], "color_identity": ["G"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "64987b06-4a5c-443d-b560-ff5691744582", "set": "all", "set_name": "Alliances", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/64987b06-4a5c-443d-b560-ff5691744582", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aall&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/all?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/a7e9d786-4e9b-447b-a5dc-ca117c4961c5/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A73eacb1f-3d35-4ead-bead-f85e6cfc17ab&unique=prints", "collector_number": "95", "digital": false, "rarity": "uncommon", "flavor_text": "\"If they can't take the hail, they'd better stay home.\"\n\u2014Arna Kenner\u00fcd, Skycaptain", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Jeff A. Menges", "artist_ids": ["14a1de4b-1237-4e7b-8868-b71e87c9a46e"], "illustration_id": "df935588-77d9-454c-8fd3-5c9e7c7db00a", "border_color": "black", "frame": "1993", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 20520, "penny_rank": 11143, "prices": {"usd": "0.11", "usd_foil": null, "usd_etched": null, "eur": "0.15", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=3144", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Hail+Storm&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Hail+Storm&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Hail+Storm"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/4165?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Hail+Storm&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Hail+Storm&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "c42fad4b-caeb-4aa2-9586-cb26bdec56cd", "oracle_id": "dcaaddee-00b1-495c-9161-40c91c900aac", "multiverse_ids": [157394], "mtgo_id": 30182, "mtgo_foil_id": 30183, "tcgplayer_id": 27129, "cardmarket_id": 19469, "name": "Hallowed Burial", "lang": "en", "released_at": "2008-07-25", "uri": "https://api.scryfall.com/cards/c42fad4b-caeb-4aa2-9586-cb26bdec56cd", "scryfall_uri": "https://scryfall.com/card/eve/7/hallowed-burial?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/c/4/c42fad4b-caeb-4aa2-9586-cb26bdec56cd.jpg?1562936481", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/4/c42fad4b-caeb-4aa2-9586-cb26bdec56cd.jpg?1562936481", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/c/4/c42fad4b-caeb-4aa2-9586-cb26bdec56cd.jpg?1562936481", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/c/4/c42fad4b-caeb-4aa2-9586-cb26bdec56cd.png?1562936481", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/4/c42fad4b-caeb-4aa2-9586-cb26bdec56cd.jpg?1562936481", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/c/4/c42fad4b-caeb-4aa2-9586-cb26bdec56cd.jpg?1562936481"}, "mana_cost": "{3}{W}{W}", "cmc": 5.0, "type_line": "Sorcery", "oracle_text": "Put all creatures on the bottom of their owners' libraries.", "colors": ["W"], "color_identity": ["W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "86b4dfef-f2d1-49d6-825d-7df6bda44357", "set": "eve", "set_name": "Eventide", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/86b4dfef-f2d1-49d6-825d-7df6bda44357", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aeve&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/eve?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/c42fad4b-caeb-4aa2-9586-cb26bdec56cd/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Adcaaddee-00b1-495c-9161-40c91c900aac&unique=prints", "collector_number": "7", "digital": false, "rarity": "rare", "flavor_text": "\"I'd rather hear the screams of battle than the quiet that follows.\"\n\u2014Talara, elvish safewright", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Dave Kendall", "artist_ids": ["8a5540a8-18c9-4fa9-802c-59d6866114d5"], "illustration_id": "72270e69-cda0-4deb-81f7-2d191bb0c572", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 6732, "penny_rank": 2309, "prices": {"usd": "1.42", "usd_foil": "6.12", "usd_etched": null, "eur": "0.52", "eur_foil": "6.99", "tix": "0.01"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=157394", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Hallowed+Burial&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Hallowed+Burial&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Hallowed+Burial"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/27129?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Hallowed+Burial&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/30182?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "b6473b4d-1f59-4216-ace9-f3e5306266fb", "oracle_id": "dcd65c9b-4aaa-42af-869f-de179ae57c9f", "multiverse_ids": [39614], "mtgo_id": 17767, "mtgo_foil_id": 17768, "tcgplayer_id": 10432, "cardmarket_id": 1670, "name": "Harsh Mercy", "lang": "en", "released_at": "2002-10-07", "uri": "https://api.scryfall.com/cards/b6473b4d-1f59-4216-ace9-f3e5306266fb", "scryfall_uri": "https://scryfall.com/card/ons/39/harsh-mercy?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/b/6/b6473b4d-1f59-4216-ace9-f3e5306266fb.jpg?1562937932", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/6/b6473b4d-1f59-4216-ace9-f3e5306266fb.jpg?1562937932", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/b/6/b6473b4d-1f59-4216-ace9-f3e5306266fb.jpg?1562937932", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/b/6/b6473b4d-1f59-4216-ace9-f3e5306266fb.png?1562937932", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/6/b6473b4d-1f59-4216-ace9-f3e5306266fb.jpg?1562937932", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/b/6/b6473b4d-1f59-4216-ace9-f3e5306266fb.jpg?1562937932"}, "mana_cost": "{2}{W}", "cmc": 3.0, "type_line": "Sorcery", "oracle_text": "Each player chooses a creature type. Destroy all creatures that aren't of a type chosen this way. They can't be regenerated.", "colors": ["W"], "color_identity": ["W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "914a6c6d-cb3b-45e8-a2db-9978a2339faf", "set": "ons", "set_name": "Onslaught", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/914a6c6d-cb3b-45e8-a2db-9978a2339faf", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aons&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ons?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/b6473b4d-1f59-4216-ace9-f3e5306266fb/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Adcd65c9b-4aaa-42af-869f-de179ae57c9f&unique=prints", "collector_number": "39", "digital": false, "rarity": "rare", "flavor_text": "\"There is no greater burden than choosing who to save.\"\n\u2014Kamahl, druid acolyte", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "John Matson", "artist_ids": ["a1685587-4b55-446b-b420-c37b202ed3f1"], "illustration_id": "f9b96da8-d455-4222-adb1-7934ee1254d8", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 8173, "penny_rank": 12229, "prices": {"usd": "3.43", "usd_foil": "13.60", "usd_etched": null, "eur": "0.94", "eur_foil": "8.34", "tix": "0.08"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=39614", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Harsh+Mercy&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Harsh+Mercy&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Harsh+Mercy"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/10432?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Harsh+Mercy&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/17767?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "daa9b08b-c56f-480e-874e-069e72d979c8", "oracle_id": "ebdd2ac6-5159-4e71-9a12-3005c843686b", "multiverse_ids": [417755], "mtgo_id": 61769, "mtgo_foil_id": 61770, "tcgplayer_id": 123132, "cardmarket_id": 292864, "name": "Hazardous Conditions", "lang": "en", "released_at": "2016-09-30", "uri": "https://api.scryfall.com/cards/daa9b08b-c56f-480e-874e-069e72d979c8", "scryfall_uri": "https://scryfall.com/card/kld/182/hazardous-conditions?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/d/a/daa9b08b-c56f-480e-874e-069e72d979c8.jpg?1576382835", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/a/daa9b08b-c56f-480e-874e-069e72d979c8.jpg?1576382835", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/d/a/daa9b08b-c56f-480e-874e-069e72d979c8.jpg?1576382835", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/d/a/daa9b08b-c56f-480e-874e-069e72d979c8.png?1576382835", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/a/daa9b08b-c56f-480e-874e-069e72d979c8.jpg?1576382835", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/d/a/daa9b08b-c56f-480e-874e-069e72d979c8.jpg?1576382835"}, "mana_cost": "{2}{B}{G}", "cmc": 4.0, "type_line": "Sorcery", "oracle_text": "Creatures with no counters on them get -2/-2 until end of turn.", "colors": ["B", "G"], "color_identity": ["B", "G"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "d667e468-be8f-411f-a030-473d148deb74", "set": "kld", "set_name": "Kaladesh", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/d667e468-be8f-411f-a030-473d148deb74", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Akld&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/kld?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/daa9b08b-c56f-480e-874e-069e72d979c8/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aebdd2ac6-5159-4e71-9a12-3005c843686b&unique=prints", "collector_number": "182", "digital": false, "rarity": "uncommon", "flavor_text": "\"There are many reasons we invent, of which survival is not the least.\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Anastasia Ovchinnikova", "artist_ids": ["3605d81f-5c97-4958-9dcc-d44a85e10305"], "illustration_id": "3b9b2e95-05b3-4112-975f-849a427db60c", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 18418, "penny_rank": 11914, "prices": {"usd": "0.03", "usd_foil": null, "usd_etched": null, "eur": "0.02", "eur_foil": "0.16", "tix": "0.04"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=417755", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Hazardous+Conditions&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Hazardous+Conditions&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Hazardous+Conditions"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/123132?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Hazardous+Conditions&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/61769?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "362f1fe9-20af-434c-9957-7a1a564d89e6", "oracle_id": "e7b1975d-9574-4333-8530-33167948078a", "multiverse_ids": [1445], "tcgplayer_id": 3901, "cardmarket_id": 6991, "name": "Hellfire", "lang": "en", "released_at": "1994-06-01", "uri": "https://api.scryfall.com/cards/362f1fe9-20af-434c-9957-7a1a564d89e6", "scryfall_uri": "https://scryfall.com/card/leg/105/hellfire?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/3/6/362f1fe9-20af-434c-9957-7a1a564d89e6.jpg?1592364391", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/6/362f1fe9-20af-434c-9957-7a1a564d89e6.jpg?1592364391", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/3/6/362f1fe9-20af-434c-9957-7a1a564d89e6.jpg?1592364391", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/3/6/362f1fe9-20af-434c-9957-7a1a564d89e6.png?1592364391", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/6/362f1fe9-20af-434c-9957-7a1a564d89e6.jpg?1592364391", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/3/6/362f1fe9-20af-434c-9957-7a1a564d89e6.jpg?1592364391"}, "mana_cost": "{2}{B}{B}{B}", "cmc": 5.0, "type_line": "Sorcery", "oracle_text": "Destroy all nonblack creatures. Hellfire deals X plus 3 damage to you, where X is the number of creatures that died this way.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": true, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "78c50b4b-b220-455b-a2d5-cee458fa56f3", "set": "leg", "set_name": "Legends", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/78c50b4b-b220-455b-a2d5-cee458fa56f3", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aleg&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/leg?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/362f1fe9-20af-434c-9957-7a1a564d89e6/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ae7b1975d-9574-4333-8530-33167948078a&unique=prints", "collector_number": "105", "digital": false, "rarity": "rare", "flavor_text": "\"High on a throne of royal state . . . insatiate to pursue vain war with heav'n.\" \u2014John Milton, *Paradise Lost*", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Pete Venters", "artist_ids": ["d54c4a1a-c0c5-4834-84db-125d341f3ad8"], "illustration_id": "115d34d8-3400-478f-a576-cf99dd93ec6c", "border_color": "black", "frame": "1993", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 16612, "penny_rank": 11047, "prices": {"usd": "224.46", "usd_foil": null, "usd_etched": null, "eur": "178.00", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=1445", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Hellfire&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Hellfire&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Hellfire"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/3901?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Hellfire&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Hellfire&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "6529c92e-c79b-4953-8bd0-50ceae2ce261", "oracle_id": "e1894a57-0faa-4e0d-8ab9-e4785f0457a4", "multiverse_ids": [198306], "mtgo_id": 36772, "mtgo_foil_id": 36773, "tcgplayer_id": 34845, "cardmarket_id": 22642, "name": "Hellion Eruption", "lang": "en", "released_at": "2010-04-23", "uri": "https://api.scryfall.com/cards/6529c92e-c79b-4953-8bd0-50ceae2ce261", "scryfall_uri": "https://scryfall.com/card/roe/151/hellion-eruption?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/6/5/6529c92e-c79b-4953-8bd0-50ceae2ce261.jpg?1562704497", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/5/6529c92e-c79b-4953-8bd0-50ceae2ce261.jpg?1562704497", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/6/5/6529c92e-c79b-4953-8bd0-50ceae2ce261.jpg?1562704497", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/6/5/6529c92e-c79b-4953-8bd0-50ceae2ce261.png?1562704497", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/5/6529c92e-c79b-4953-8bd0-50ceae2ce261.jpg?1562704497", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/6/5/6529c92e-c79b-4953-8bd0-50ceae2ce261.jpg?1562704497"}, "mana_cost": "{5}{R}", "cmc": 6.0, "type_line": "Sorcery", "oracle_text": "Sacrifice all creatures you control, then create that many 4/4 red Hellion creature tokens.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "all_parts": [{"object": "related_card", "id": "6529c92e-c79b-4953-8bd0-50ceae2ce261", "component": "combo_piece", "name": "Hellion Eruption", "type_line": "Sorcery", "uri": "https://api.scryfall.com/cards/6529c92e-c79b-4953-8bd0-50ceae2ce261"}, {"object": "related_card", "id": "acabc3ce-a3c1-4c6c-8022-9a96ffba59c6", "component": "token", "name": "Hellion", "type_line": "Token Creature \u2014 Hellion", "uri": "https://api.scryfall.com/cards/acabc3ce-a3c1-4c6c-8022-9a96ffba59c6"}], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "eadb8a82-ec56-4623-b50e-42e7e60cb535", "set": "roe", "set_name": "Rise of the Eldrazi", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/eadb8a82-ec56-4623-b50e-42e7e60cb535", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aroe&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/roe?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/6529c92e-c79b-4953-8bd0-50ceae2ce261/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ae1894a57-0faa-4e0d-8ab9-e4785f0457a4&unique=prints", "collector_number": "151", "digital": false, "rarity": "rare", "flavor_text": "Just when you thought you'd be safe, in the middle of an open field with no Eldrazi around for miles.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Anthony Francisco", "artist_ids": ["6ac24c4b-70e9-4286-8f4b-b40c92ab5847"], "illustration_id": "2796cb1d-f566-4a33-b4ab-305de9741ec3", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 11761, "penny_rank": 9733, "prices": {"usd": "0.14", "usd_foil": "0.99", "usd_etched": null, "eur": "0.10", "eur_foil": "0.35", "tix": "0.01"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=198306", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Hellion+Eruption&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Hellion+Eruption&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Hellion+Eruption"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/34845?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Hellion+Eruption&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/36772?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "941fd135-1c5a-4650-8faf-dfa2c93ec8c9", "oracle_id": "e9022d1c-2f5c-4a1f-a44e-0e4f9651e729", "multiverse_ids": [79204], "mtgo_id": 21403, "mtgo_foil_id": 21404, "tcgplayer_id": 12017, "cardmarket_id": 12036, "name": "Hideous Laughter", "lang": "en", "released_at": "2004-10-01", "uri": "https://api.scryfall.com/cards/941fd135-1c5a-4650-8faf-dfa2c93ec8c9", "scryfall_uri": "https://scryfall.com/card/chk/115/hideous-laughter?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/9/4/941fd135-1c5a-4650-8faf-dfa2c93ec8c9.jpg?1562762525", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/4/941fd135-1c5a-4650-8faf-dfa2c93ec8c9.jpg?1562762525", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/9/4/941fd135-1c5a-4650-8faf-dfa2c93ec8c9.jpg?1562762525", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/9/4/941fd135-1c5a-4650-8faf-dfa2c93ec8c9.png?1562762525", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/4/941fd135-1c5a-4650-8faf-dfa2c93ec8c9.jpg?1562762525", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/9/4/941fd135-1c5a-4650-8faf-dfa2c93ec8c9.jpg?1562762525"}, "mana_cost": "{2}{B}{B}", "cmc": 4.0, "type_line": "Instant \u2014 Arcane", "oracle_text": "All creatures get -2/-2 until end of turn.\nSplice onto Arcane {3}{B}{B} (As you cast an Arcane spell, you may reveal this card from your hand and pay its splice cost. If you do, add this card's effects to that spell.)", "colors": ["B"], "color_identity": ["B"], "keywords": ["Splice"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "6183d21f-a0af-4118-ba58-aca1d8719c01", "set": "chk", "set_name": "Champions of Kamigawa", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/6183d21f-a0af-4118-ba58-aca1d8719c01", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Achk&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/chk?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/941fd135-1c5a-4650-8faf-dfa2c93ec8c9/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ae9022d1c-2f5c-4a1f-a44e-0e4f9651e729&unique=prints", "collector_number": "115", "digital": false, "rarity": "uncommon", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Greg Staples", "artist_ids": ["93d65564-bf00-447b-8406-e2031f03b6b1"], "illustration_id": "e19e3254-b35a-4e24-80f2-a175a53d2884", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 17680, "penny_rank": 7955, "prices": {"usd": "0.15", "usd_foil": "0.27", "usd_etched": null, "eur": "0.05", "eur_foil": "0.22", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=79204", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Hideous+Laughter&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Hideous+Laughter&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Hideous+Laughter"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/12017?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Hideous+Laughter&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/21403?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}]} \ No newline at end of file +{"has_more": true, "data": [{"name": "Aetherize", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/3/33303859-c6e0-4ebd-bb5f-44be7f5d7459.jpg?1561821990", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/3/33303859-c6e0-4ebd-bb5f-44be7f5d7459.jpg?1561821990"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Aetherspouts", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/6/46f1b48f-6528-46bd-a384-2358af25e500.jpg?1562786278", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/6/46f1b48f-6528-46bd-a384-2358af25e500.jpg?1562786278"}, "reprint": false, "digital": false, "set_type": "core"}, {"name": "Aggravate", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/9/999f40a7-b723-42e1-83c1-f45a72a26dd4.jpg?1592709004", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/9/999f40a7-b723-42e1-83c1-f45a72a26dd4.jpg?1592709004"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Akroma's Vengeance", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/e/5e33aaf7-7490-4b64-a966-82fbf7ca8686.jpg?1562917166", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/e/5e33aaf7-7490-4b64-a966-82fbf7ca8686.jpg?1562917166"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Akroma's Vengeance", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/f/4f112edd-1d2f-45ad-aaeb-6c0934d24c1f.jpg?1570203942", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/f/4f112edd-1d2f-45ad-aaeb-6c0934d24c1f.jpg?1570203942"}, "reprint": true, "digital": false, "set_type": "from_the_vault"}, {"name": "Alpha Brawl", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/2/e2ec168a-3e4f-4527-901a-bc28cc28d125.jpg?1562949045", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/2/e2ec168a-3e4f-4527-901a-bc28cc28d125.jpg?1562949045"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Anger of the Gods", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/0/90795891-5e67-47c0-8d52-a5e5c5a9ef81.jpg?1562821425", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/0/90795891-5e67-47c0-8d52-a5e5c5a9ef81.jpg?1562821425"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Anger of the Gods", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/e/dedcbd3b-7e30-44cf-b9b7-1bb32c11ef67.jpg?1655825935", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/e/dedcbd3b-7e30-44cf-b9b7-1bb32c11ef67.jpg?1655825935"}, "reprint": true, "frame_effects": ["inverted"], "digital": false, "set_type": "masters"}, {"name": "Anger of the Gods", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/c/ec898bc9-9ab8-4394-8c4c-8d652f313919.jpg?1607042506", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/c/ec898bc9-9ab8-4394-8c4c-8d652f313919.jpg?1607042506"}, "reprint": true, "digital": false, "set_type": "box"}, {"name": "Anger of the Gods", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/8/88f2ca85-de02-4471-b90f-d13ccb93c8bb.jpg?1597250046", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/8/88f2ca85-de02-4471-b90f-d13ccb93c8bb.jpg?1597250046"}, "reprint": true, "digital": true, "set_type": "masters"}, {"name": "Arcbond", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/b/9bc397d1-50a8-46cd-98b2-7104f2241420.jpg?1562828028", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/b/9bc397d1-50a8-46cd-98b2-7104f2241420.jpg?1562828028"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Arms of Hadar", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/b/db1fd431-8f6d-4ca5-bc0c-53881c500da1.jpg?1653767219", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/b/db1fd431-8f6d-4ca5-bc0c-53881c500da1.jpg?1653767219"}, "reprint": false, "digital": false, "set_type": "draft_innovation"}, {"name": "Austere Command", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/e/bef16a71-5ed2-4f30-a844-c02a0754f679.jpg?1562853529", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/e/bef16a71-5ed2-4f30-a844-c02a0754f679.jpg?1562853529"}, "reprint": true, "digital": false, "set_type": "masters"}, {"name": "Austere Command", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/e/8ee73fe8-d52b-43bb-ab91-5545192be676.jpg?1562357897", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/e/8ee73fe8-d52b-43bb-ab91-5545192be676.jpg?1562357897"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Austere Command", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/b/dbbf55bc-6bb3-458a-8cf0-1f603bb2acb3.jpg?1562939169", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/b/dbbf55bc-6bb3-458a-8cf0-1f603bb2acb3.jpg?1562939169"}, "reprint": true, "digital": false, "set_type": "masterpiece"}, {"name": "Baki's Curse", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/3/e3261b4c-7963-4ca0-875d-77b7c8571b3f.jpg?1562588703", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/3/e3261b4c-7963-4ca0-875d-77b7c8571b3f.jpg?1562588703"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Barrage of Boulders", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/e/2eb1a9f7-32ba-48fd-a7f7-788b0ec052c6.jpg?1562784418", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/e/2eb1a9f7-32ba-48fd-a7f7-788b0ec052c6.jpg?1562784418"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Begin Anew", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/8/d885aedb-2c65-4099-af2e-0a540caf8d33.jpg?1645417110", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/8/d885aedb-2c65-4099-af2e-0a540caf8d33.jpg?1645417110"}, "reprint": false, "digital": true, "set_type": "alchemy"}, {"name": "Bite of the Black Rose", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/5/254d1363-1204-41d2-9799-34484a3eb211.jpg?1562864493", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/5/254d1363-1204-41d2-9799-34484a3eb211.jpg?1562864493"}, "reprint": false, "digital": false, "set_type": "draft_innovation"}, {"name": "Biting Rain", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/a/5ac62d2f-6834-4d98-b69d-bd7b5831d981.jpg?1576384359", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/a/5ac62d2f-6834-4d98-b69d-bd7b5831d981.jpg?1576384359"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Black Sun's Zenith", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/3/03bdcf52-50b8-42c0-9665-931d83f5f314.jpg?1562609329", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/3/03bdcf52-50b8-42c0-9665-931d83f5f314.jpg?1562609329"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Black Sun's Zenith", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/d/dd88131a-2811-4a1f-bb9a-c82e12c1493b.jpg?1561758222", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/d/dd88131a-2811-4a1f-bb9a-c82e12c1493b.jpg?1561758222"}, "reprint": true, "digital": false, "set_type": "promo"}, {"name": "Blasphemous Act", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/0/509ce648-fb76-486d-8b39-183e368b7cb7.jpg?1562830111", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/0/509ce648-fb76-486d-8b39-183e368b7cb7.jpg?1562830111"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Blazing Volley", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/a/3adc0288-acdf-4a99-9bfb-919cae1aeb69.jpg?1591227065", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/a/3adc0288-acdf-4a99-9bfb-919cae1aeb69.jpg?1591227065"}, "reprint": true, "digital": false, "set_type": "expansion"}, {"name": "Blazing Volley", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/a/ba450179-4591-4e8a-b6ca-66cbef1817f2.jpg?1543675486", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/a/ba450179-4591-4e8a-b6ca-66cbef1817f2.jpg?1543675486"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Bloodline Culling", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/a/fac827f7-a587-4adf-8408-2d9ccd9c1343.jpg?1634349575", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/a/fac827f7-a587-4adf-8408-2d9ccd9c1343.jpg?1634349575"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Blood Money", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/d/5d45c18c-b8eb-465c-8dfc-fd6da73e25b5.jpg?1653442044", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/d/5d45c18c-b8eb-465c-8dfc-fd6da73e25b5.jpg?1653442044"}, "reprint": false, "digital": false, "set_type": "draft_innovation"}, {"name": "Blood on the Snow", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/8/d8606f40-0af4-443b-a413-a88dc3e8f32e.jpg?1631047655", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/8/d8606f40-0af4-443b-a413-a88dc3e8f32e.jpg?1631047655"}, "reprint": false, "frame_effects": ["snow"], "digital": false, "set_type": "expansion"}, {"name": "Boiling Earth", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/d/cdaab44c-4ce1-43fb-915c-c687fe8559ce.jpg?1562943558", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/d/cdaab44c-4ce1-43fb-915c-c687fe8559ce.jpg?1562943558"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Bonfire of the Damned", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/6/e60610fe-891d-46de-b556-d03b637dccec.jpg?1592709031", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/6/e60610fe-891d-46de-b556-d03b637dccec.jpg?1592709031"}, "reprint": false, "frame_effects": ["miracle"], "digital": false, "set_type": "expansion"}, {"name": "Bontu's Last Reckoning", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/b/1b4d0102-c0d6-4d50-941a-dd1c3575a3a8.jpg?1562791273", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/b/1b4d0102-c0d6-4d50-941a-dd1c3575a3a8.jpg?1562791273"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Borrowing the East Wind", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/6/96ba9014-d750-4924-aa6f-8b9f421807f9.jpg?1562257056", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/6/96ba9014-d750-4924-aa6f-8b9f421807f9.jpg?1562257056"}, "reprint": false, "digital": false, "set_type": "starter"}, {"name": "Breaking Point", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/6/765ec2c9-8ffe-488a-bebe-e5dd63825a8c.jpg?1562630501", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/6/765ec2c9-8ffe-488a-bebe-e5dd63825a8c.jpg?1562630501"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Breath of Darigaaz", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/8/480bb7e3-df03-454d-ada0-592ef8a4a6f0.jpg?1562909692", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/8/480bb7e3-df03-454d-ada0-592ef8a4a6f0.jpg?1562909692"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Breath Weapon", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/1/0174e40a-0ef5-4439-91e6-3fc39f482520.jpg?1653596065", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/1/0174e40a-0ef5-4439-91e6-3fc39f482520.jpg?1653596065"}, "reprint": false, "digital": false, "set_type": "draft_innovation"}, {"name": "Burn Down the House", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/0/20ded7af-8086-465e-a980-3099217d324c.jpg?1634350460", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/0/20ded7af-8086-465e-a980-3099217d324c.jpg?1634350460"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Burning of Xinye", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/3/33a1fe45-52d2-4c50-bedc-eee156ab69c8.jpg?1562256064", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/3/33a1fe45-52d2-4c50-bedc-eee156ab69c8.jpg?1562256064"}, "reprint": false, "digital": false, "set_type": "starter"}, {"name": "By Invitation Only", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/6/46764e49-64da-4a94-b61c-75e006b2c5a9.jpg?1643585907", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/6/46764e49-64da-4a94-b61c-75e006b2c5a9.jpg?1643585907"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Canopy Surge", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/e/2e19d68e-7554-4627-a316-beb1f75fa494.jpg?1562904391", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/e/2e19d68e-7554-4627-a316-beb1f75fa494.jpg?1562904391"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Cataclysm", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/2/024ae668-a1ae-4020-89c8-acbd8bd0a691.jpg?1593863070", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/2/024ae668-a1ae-4020-89c8-acbd8bd0a691.jpg?1593863070"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Cataclysm", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/e/3ed0d87b-1ce8-452b-9558-fa1923407f16.jpg?1559618030", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/e/3ed0d87b-1ce8-452b-9558-fa1923407f16.jpg?1559618030"}, "reprint": true, "digital": false, "set_type": "from_the_vault"}, {"name": "Catastrophe", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/9/294d21dc-5c76-4449-936f-9b7541d37c86.jpg?1562903769", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/9/294d21dc-5c76-4449-936f-9b7541d37c86.jpg?1562903769"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Cave-In", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/4/440d9d26-f304-467d-af79-914cc65f082e.jpg?1562380418", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/4/440d9d26-f304-467d-af79-914cc65f082e.jpg?1562380418"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Celestial Judgment", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/f/5fd29cd7-9950-49c0-9e71-d6b0f944292c.jpg?1637627823", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/f/5fd29cd7-9950-49c0-9e71-d6b0f944292c.jpg?1637627823"}, "reprint": false, "digital": false, "set_type": "commander"}, {"name": "Cerebral Eruption", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/7/77161159-ee2c-485d-8674-d8590ccc62e1.jpg?1562819165", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/7/77161159-ee2c-485d-8674-d8590ccc62e1.jpg?1562819165"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Chain Reaction", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/1/614b9df9-c959-4bdb-91c0-75ae60b724e4.jpg?1567754665", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/1/614b9df9-c959-4bdb-91c0-75ae60b724e4.jpg?1567754665"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Chandra's Flame Wave", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/f/5f13b6a7-fa62-4d94-a56c-f2e64c8c1666.jpg?1592518162", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/f/5f13b6a7-fa62-4d94-a56c-f2e64c8c1666.jpg?1592518162"}, "reprint": false, "digital": false, "set_type": "core"}, {"name": "Chandra's Fury", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/7/e761acf6-6618-44cc-8f65-1d7ad7e520fe.jpg?1561758344", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/7/e761acf6-6618-44cc-8f65-1d7ad7e520fe.jpg?1561758344"}, "reprint": true, "digital": false, "set_type": "promo"}, {"name": "Chandra's Ignition", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/d/7d4c90de-49aa-43ed-a18a-f7f96268e5eb.jpg?1562027623", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/d/7d4c90de-49aa-43ed-a18a-f7f96268e5eb.jpg?1562027623"}, "reprint": false, "digital": false, "set_type": "core"}, {"name": "Cinderclasm", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/5/5516cf97-805f-4a21-a4c6-2d6e55865336.jpg?1604196918", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/5/5516cf97-805f-4a21-a4c6-2d6e55865336.jpg?1604196918"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Citywide Bust", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/9/a995200f-1e9d-4ff3-9e04-4a4309e0e09c.jpg?1572892490", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/9/a995200f-1e9d-4ff3-9e04-4a4309e0e09c.jpg?1572892490"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Claws of Wirewood", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/9/b94cd33f-40b6-4b11-97a4-8676ef27631e.jpg?1562533774", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/9/b94cd33f-40b6-4b11-97a4-8676ef27631e.jpg?1562533774"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Cleanse", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/f/2fbd611b-ac97-4516-bad7-cc9ee4ef74f7.jpg?1591836785", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/f/2fbd611b-ac97-4516-bad7-cc9ee4ef74f7.jpg?1591836785"}, "content_warning": true, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Cleansing Nova", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/1/11f1b6cd-d89a-4468-a097-7a54efe22f2c.jpg?1625192921", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/1/11f1b6cd-d89a-4468-a097-7a54efe22f2c.jpg?1625192921"}, "reprint": true, "digital": false, "set_type": "commander"}, {"name": "Cleansing Nova", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/b/5be8eed7-c033-42cc-bd21-4512db7af66c.jpg?1562302239", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/b/5be8eed7-c033-42cc-bd21-4512db7af66c.jpg?1562302239"}, "reprint": false, "digital": false, "set_type": "core"}, {"name": "Cloudkill", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/c/7c71b2b8-f5ef-4885-9f8d-284fe335d184.jpg?1654365309", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/c/7c71b2b8-f5ef-4885-9f8d-284fe335d184.jpg?1654365309"}, "reprint": false, "digital": false, "set_type": "draft_innovation"}, {"name": "Collision of Realms", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/9/49618217-1bbb-498a-a6f0-f269ce7166a6.jpg?1651655330", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/9/49618217-1bbb-498a-a6f0-f269ce7166a6.jpg?1651655330"}, "reprint": false, "digital": false, "set_type": "commander"}, {"name": "Conductive Current", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/3/43adef3c-87f0-4db1-9fbb-017c96c815ff.jpg?1645416694", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/3/43adef3c-87f0-4db1-9fbb-017c96c815ff.jpg?1645416694"}, "reprint": false, "digital": true, "set_type": "alchemy"}, {"name": "Consume the Meek", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/9/c94dcaed-55da-41f4-a61f-2a79ef6c1459.jpg?1593095734", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/9/c94dcaed-55da-41f4-a61f-2a79ef6c1459.jpg?1593095734"}, "reprint": true, "digital": false, "set_type": "duel_deck"}, {"name": "Consume the Meek", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/2/921ebea0-48bf-4338-9e84-2cd06ffe6f4b.jpg?1562706383", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/2/921ebea0-48bf-4338-9e84-2cd06ffe6f4b.jpg?1562706383"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Corpse Explosion", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/7/c700eff3-138b-4d4c-ba36-58b98986168c.jpg?1650029916", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/7/c700eff3-138b-4d4c-ba36-58b98986168c.jpg?1650029916"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Corrosive Gale", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/4/04a13825-ab9b-4ffd-9b59-6198181891b9.jpg?1562875245", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/4/04a13825-ab9b-4ffd-9b59-6198181891b9.jpg?1562875245"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Cosmotronic Wave", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/9/69c5bafa-8cd8-4158-98e0-46dc74c027c0.jpg?1572893121", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/9/69c5bafa-8cd8-4158-98e0-46dc74c027c0.jpg?1572893121"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Cower in Fear", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/f/bf2d53b8-7847-4b94-9711-eca29facccba.jpg?1562559508", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/f/bf2d53b8-7847-4b94-9711-eca29facccba.jpg?1562559508"}, "reprint": false, "digital": false, "set_type": "core"}, {"name": "Crippling Fear", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/d/7d9bd181-b99f-477e-bcfb-9b78cbf51224.jpg?1631047737", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/d/7d9bd181-b99f-477e-bcfb-9b78cbf51224.jpg?1631047737"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Crush the Weak", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/7/875a20c2-1d17-46ea-b4d2-3e70bc05aae3.jpg?1631049096", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/7/875a20c2-1d17-46ea-b4d2-3e70bc05aae3.jpg?1631049096"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Crux of Fate", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/1/e1d45374-a41b-4b3f-a7c8-3eb5ca767cf6.jpg?1648060698", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/1/e1d45374-a41b-4b3f-a7c8-3eb5ca767cf6.jpg?1648060698"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Crux of Fate", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/3/f3ccea48-ee90-4da8-832d-8c30c98bf1dd.jpg?1623779891", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/3/f3ccea48-ee90-4da8-832d-8c30c98bf1dd.jpg?1623779891"}, "reprint": true, "digital": false, "set_type": "masterpiece"}, {"name": "Cry of the Carnarium", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/1/715a14a3-046e-45ca-b943-dd630e5202b7.jpg?1584830546", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/1/715a14a3-046e-45ca-b943-dd630e5202b7.jpg?1584830546"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Culling Sun", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/e/5ec5a956-c846-46b6-91bd-37e4db542280.jpg?1593272635", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/e/5ec5a956-c846-46b6-91bd-37e4db542280.jpg?1593272635"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Dakmor Plague", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/8/58b38ef1-5839-4292-91d6-e45698c69a75.jpg?1562915882", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/8/58b38ef1-5839-4292-91d6-e45698c69a75.jpg?1562915882"}, "reprint": false, "digital": false, "set_type": "starter"}, {"name": "Damn", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/f/efeae088-9ac5-4d2f-a15c-d8675a471ac5.jpg?1626095400", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/f/efeae088-9ac5-4d2f-a15c-d8675a471ac5.jpg?1626095400"}, "reprint": false, "digital": false, "set_type": "draft_innovation"}, {"name": "Damnation", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/6/26c68473-70ca-40ba-b5c6-71ec30f88a2c.jpg?1562568132", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/6/26c68473-70ca-40ba-b5c6-71ec30f88a2c.jpg?1562568132"}, "reprint": false, "frame_effects": ["colorshifted"], "digital": false, "set_type": "expansion"}, {"name": "Damnation", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/c/dca972d7-fcf8-4ac4-a98b-fffb2fbb4dbc.jpg?1656326586", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/c/dca972d7-fcf8-4ac4-a98b-fffb2fbb4dbc.jpg?1656326586"}, "reprint": true, "frame_effects": ["inverted"], "digital": false, "set_type": "masters"}, {"name": "Damnation", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/f/7fc1d7db-11a3-4ff9-8d27-1fe401053080.jpg?1615223046", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/f/7fc1d7db-11a3-4ff9-8d27-1fe401053080.jpg?1615223046"}, "reprint": true, "digital": false, "set_type": "box"}, {"name": "Damnation", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/9/c916a119-9eee-440d-90ef-05ab35bf3fbe.jpg?1562935376", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/9/c916a119-9eee-440d-90ef-05ab35bf3fbe.jpg?1562935376"}, "reprint": true, "digital": false, "set_type": "masterpiece"}, {"name": "Damnation", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/c/6c5823bb-d56d-4bed-ba3f-09bdd93c52dc.jpg?1561757368", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/c/6c5823bb-d56d-4bed-ba3f-09bdd93c52dc.jpg?1561757368"}, "reprint": true, "digital": false, "set_type": "promo"}, {"name": "Damning Verdict", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/b/5be40c34-6df0-4471-b99b-850ae2be9923.jpg?1650406359", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/b/5be40c34-6df0-4471-b99b-850ae2be9923.jpg?1650406359"}, "reprint": false, "digital": false, "set_type": "commander"}, {"name": "Day of Judgment", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/a/2aa98fca-972b-46c2-bdec-6ace35c988d5.jpg?1562610835", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/a/2aa98fca-972b-46c2-bdec-6ace35c988d5.jpg?1562610835"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Day of Judgment", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/b/5bf85d00-52cc-4594-b4fd-5ec424210524.jpg?1623592427", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/b/5bf85d00-52cc-4594-b4fd-5ec424210524.jpg?1623592427"}, "reprint": true, "digital": false, "set_type": "masterpiece"}, {"name": "Day of Judgment", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/e/aea87800-6725-4399-b489-651637e1804a.jpg?1561757821", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/e/aea87800-6725-4399-b489-651637e1804a.jpg?1561757821"}, "reprint": true, "digital": false, "set_type": "promo"}, {"name": "Day of Judgment", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/b/6ba873f7-a7a4-44aa-84a6-44501424dc7a.jpg?1561757360", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/b/6ba873f7-a7a4-44aa-84a6-44501424dc7a.jpg?1561757360"}, "reprint": true, "digital": false, "set_type": "promo"}, {"name": "Deadly Tempest", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/9/b9ca2810-3c1b-43cf-af1e-078015bf3492.jpg?1562708889", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/9/b9ca2810-3c1b-43cf-af1e-078015bf3492.jpg?1562708889"}, "reprint": false, "digital": false, "set_type": "commander"}, {"name": "Dead of Winter", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/4/f480df6d-e227-4ccb-ad6d-a4ad48a360ad.jpg?1562201599", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/4/f480df6d-e227-4ccb-ad6d-a4ad48a360ad.jpg?1562201599"}, "reprint": false, "digital": false, "set_type": "draft_innovation"}, {"name": "Deafening Clarion", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/e/1e115a81-001d-4e17-98af-6a63f2b0967f.jpg?1572893584", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/e/1e115a81-001d-4e17-98af-6a63f2b0967f.jpg?1572893584"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Death Cloud", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/7/97a0bfb9-859b-4fed-a1c4-1f0924715801.jpg?1562638297", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/7/97a0bfb9-859b-4fed-a1c4-1f0924715801.jpg?1562638297"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Death Frenzy", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/2/92096311-a3fa-41fc-b7a9-71ac2310f7fe.jpg?1562790443", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/2/92096311-a3fa-41fc-b7a9-71ac2310f7fe.jpg?1562790443"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Decree of Annihilation", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/3/73744717-518c-478e-9da9-201c49124f37.jpg?1562530626", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/3/73744717-518c-478e-9da9-201c49124f37.jpg?1562530626"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Decree of Pain", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/1/e1958a07-fc75-41cd-ac45-d92d49587754.jpg?1562536145", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/1/e1958a07-fc75-41cd-ac45-d92d49587754.jpg?1562536145"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Decree of Pain", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/3/03c37c68-cccf-4309-80c5-828108b942a4.jpg?1569957295", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/3/03c37c68-cccf-4309-80c5-828108b942a4.jpg?1569957295"}, "reprint": true, "digital": false, "set_type": "arsenal"}, {"name": "Delayed Blast Fireball", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/5/e59903e3-a344-4218-9d41-8b19a9bc8311.jpg?1654082475", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/5/e59903e3-a344-4218-9d41-8b19a9bc8311.jpg?1654082475"}, "reprint": false, "digital": false, "set_type": "draft_innovation"}, {"name": "Depopulate", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/5/c53c1898-9107-4bf8-b249-d0502fb9596d.jpg?1649698259", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/5/c53c1898-9107-4bf8-b249-d0502fb9596d.jpg?1649698259"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Descend upon the Sinful", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/9/c9ff2cbf-a1dc-4cc5-9a5d-8439899d4e87.jpg?1576383726", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/9/c9ff2cbf-a1dc-4cc5-9a5d-8439899d4e87.jpg?1576383726"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Desert Sandstorm", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/8/588ad2bf-405d-4c36-b485-e415c22f2703.jpg?1562256542", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/8/588ad2bf-405d-4c36-b485-e415c22f2703.jpg?1562256542"}, "reprint": false, "digital": false, "set_type": "starter"}, {"name": "Destructive Force", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/a/1abde258-08e0-4762-8142-38e08a960f9d.jpg?1562452402", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/a/1abde258-08e0-4762-8142-38e08a960f9d.jpg?1562452402"}, "reprint": false, "digital": false, "set_type": "core"}, {"name": "Devastate", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/f/bfe7c990-a34b-475e-a612-447c22f998d3.jpg?1562930849", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/f/bfe7c990-a34b-475e-a612-447c22f998d3.jpg?1562930849"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Devastating Dreams", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/f/9fffeed0-a5ea-47ac-a7a4-0cc3bb1d408a.jpg?1562631212", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/f/9fffeed0-a5ea-47ac-a7a4-0cc3bb1d408a.jpg?1562631212"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Devastation", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/1/71cce019-162c-4969-89ac-1cf94148a032.jpg?1562446865", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/1/71cce019-162c-4969-89ac-1cf94148a032.jpg?1562446865"}, "reprint": false, "digital": false, "set_type": "starter"}, {"name": "Disaster Radius", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/3/9318ae4a-1084-49d9-b5de-dbe4d80836cb.jpg?1562706406", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/3/9318ae4a-1084-49d9-b5de-dbe4d80836cb.jpg?1562706406"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Disorder", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/6/b6d11422-60a9-4386-8e7f-dd7dcdac58d8.jpg?1562246308", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/6/b6d11422-60a9-4386-8e7f-dd7dcdac58d8.jpg?1562246308"}, "reprint": true, "digital": false, "set_type": "core"}, {"name": "Disorder", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/f/3fa5ec10-dfea-4e6d-8996-553a4a0eb8a4.jpg?1562908220", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/f/3fa5ec10-dfea-4e6d-8996-553a4a0eb8a4.jpg?1562908220"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Divine Reckoning", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/4/446ea3a4-206a-4097-87c1-c04bb7812972.jpg?1562829296", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/4/446ea3a4-206a-4097-87c1-c04bb7812972.jpg?1562829296"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Doomskar", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/3/130ee895-1e5e-4f82-bb66-e1275bac75dd.jpg?1631045641", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/3/130ee895-1e5e-4f82-bb66-e1275bac75dd.jpg?1631045641"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Do or Die", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/5/05f63cd9-e82b-4cf8-b8ce-f0aa0157692b.jpg?1562896148", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/5/05f63cd9-e82b-4cf8-b8ce-f0aa0157692b.jpg?1562896148"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Draconic Intervention", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/5/657de246-b9fc-47b1-b932-091e9500bb82.jpg?1624591671", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/5/657de246-b9fc-47b1-b932-091e9500bb82.jpg?1624591671"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Drown in Sorrow", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/8/287c7570-8080-43dc-a586-963e15566446.jpg?1593091908", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/8/287c7570-8080-43dc-a586-963e15566446.jpg?1593091908"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Drown in Sorrow", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/0/107cdfa4-da15-4610-9b72-e6e6c59deec4.jpg?1630641355", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/0/107cdfa4-da15-4610-9b72-e6e6c59deec4.jpg?1630641355"}, "reprint": true, "digital": true, "set_type": "promo"}, {"name": "Dry Spell", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/1/a142f369-8fdd-4dc8-b5d9-3493455cc588.jpg?1562447357", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/1/a142f369-8fdd-4dc8-b5d9-3493455cc588.jpg?1562447357"}, "reprint": true, "digital": false, "set_type": "starter"}, {"name": "Dry Spell", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/4/547c10ea-8ace-4496-8b99-61863c0cec1b.jpg?1562587287", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/4/547c10ea-8ace-4496-8b99-61863c0cec1b.jpg?1562587287"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Dry Spell", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/9/997ea663-40a1-49b7-80f1-2e1febc1b6fa.jpg?1562587769", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/9/997ea663-40a1-49b7-80f1-2e1febc1b6fa.jpg?1562587769"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Duneblast", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/e/8e3fba5b-b4cd-4050-b9f0-d8eabe82e7d6.jpg?1562701635", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/e/8e3fba5b-b4cd-4050-b9f0-d8eabe82e7d6.jpg?1562701635"}, "reprint": true, "digital": false, "set_type": "promo"}, {"name": "Dwarven Catapult", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/c/8c1c6932-638a-4df7-bf9b-8d921f7484d9.jpg?1562921034", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/c/8c1c6932-638a-4df7-bf9b-8d921f7484d9.jpg?1562921034"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Earthquake", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/f/8f04dc5c-2764-42d0-974e-6d902222c138.jpg?1562242701", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/f/8f04dc5c-2764-42d0-974e-6d902222c138.jpg?1562242701"}, "reprint": true, "digital": false, "set_type": "core"}, {"name": "Earthquake", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/5/05126438-e806-43e6-bd81-233b629b4a1b.jpg?1562896224", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/5/05126438-e806-43e6-bd81-233b629b4a1b.jpg?1562896224"}, "reprint": true, "digital": false, "set_type": "starter"}, {"name": "Earthquake", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/7/272f65a3-3c0c-417d-b5b6-276a643d643e.jpg?1562446144", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/7/272f65a3-3c0c-417d-b5b6-276a643d643e.jpg?1562446144"}, "reprint": true, "digital": false, "set_type": "starter"}, {"name": "Earthquake", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/1/01bde909-899d-4efc-aac5-57b69fa764db.jpg?1562588740", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/1/01bde909-899d-4efc-aac5-57b69fa764db.jpg?1562588740"}, "reprint": true, "digital": false, "set_type": "core"}, {"name": "Earthquake", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/6/e68ac362-6cdc-48a6-bdd3-4f8ea32add64.jpg?1559591701", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/6/e68ac362-6cdc-48a6-bdd3-4f8ea32add64.jpg?1559591701"}, "reprint": false, "digital": false, "set_type": "core"}, {"name": "Electrickery", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/e/5ed81ee8-d5e4-4127-876e-9bff81f9c726.jpg?1562787062", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/e/5ed81ee8-d5e4-4127-876e-9bff81f9c726.jpg?1562787062"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Endemic Plague", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/5/15326971-a53b-45f2-8f1d-1b82935286e1.jpg?1562900082", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/5/15326971-a53b-45f2-8f1d-1b82935286e1.jpg?1562900082"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "End Hostilities", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/0/80a53ed7-a7b7-40d8-9239-cf6f205dbc59.jpg?1562789330", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/0/80a53ed7-a7b7-40d8-9239-cf6f205dbc59.jpg?1562789330"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "End the Festivities", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/e/bec748e6-7245-4a71-aeee-cefed8346948.jpg?1643591154", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/e/bec748e6-7245-4a71-aeee-cefed8346948.jpg?1643591154"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Engulf the Shore", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/2/22909767-a088-49ff-83be-37f967d1da3d.jpg?1576384043", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/2/22909767-a088-49ff-83be-37f967d1da3d.jpg?1576384043"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Essence Pulse", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/3/e3e32d1b-e580-4d09-b285-c8d6c5297896.jpg?1625191655", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/3/e3e32d1b-e580-4d09-b285-c8d6c5297896.jpg?1625191655"}, "reprint": false, "digital": false, "set_type": "commander"}, {"name": "Evacuation", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/9/a978fa0a-a52b-4464-afe3-d9f7bc202e63.jpg?1562553159", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/9/a978fa0a-a52b-4464-afe3-d9f7bc202e63.jpg?1562553159"}, "reprint": true, "digital": false, "set_type": "core"}, {"name": "Evacuation", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/e/1e1144eb-701d-4716-9051-e8b77480e72d.jpg?1595438077", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/e/1e1144eb-701d-4716-9051-e8b77480e72d.jpg?1595438077"}, "reprint": true, "digital": false, "set_type": "core"}, {"name": "Evacuation", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/c/1cb8ae53-a53f-4a0f-94f7-559aca041797.jpg?1562595927", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/c/1cb8ae53-a53f-4a0f-94f7-559aca041797.jpg?1562595927"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Evaporate", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/3/a3c99939-4854-4e28-a142-4cb7f89fe898.jpg?1562587778", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/3/a3c99939-4854-4e28-a142-4cb7f89fe898.jpg?1562587778"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Evincar's Justice", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/d/5d53f46f-b069-4b34-af4b-98143328c078.jpg?1562054236", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/d/5d53f46f-b069-4b34-af4b-98143328c078.jpg?1562054236"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Extinction", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/2/a233a244-7f84-4525-b0ce-e10db0a95385.jpg?1562055894", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/2/a233a244-7f84-4525-b0ce-e10db0a95385.jpg?1562055894"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Extinction Event", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/7/8725a869-462b-4381-880a-b4bcc63a655b.jpg?1591226783", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/7/8725a869-462b-4381-880a-b4bcc63a655b.jpg?1591226783"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Extinguish All Hope", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/8/6895024f-a04b-46cf-b020-df4487d0c758.jpg?1593095692", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/8/6895024f-a04b-46cf-b020-df4487d0c758.jpg?1593095692"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Eyeblight Massacre", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/7/d73484db-5fd0-4a01-83fd-54748cc21a0f.jpg?1562044208", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/7/d73484db-5fd0-4a01-83fd-54748cc21a0f.jpg?1562044208"}, "reprint": false, "digital": false, "set_type": "core"}, {"name": "Ezuri's Predation", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/d/4d9b4ad1-3d5c-43b6-9284-9ec427936dd2.jpg?1562704058", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/d/4d9b4ad1-3d5c-43b6-9284-9ec427936dd2.jpg?1562704058"}, "reprint": false, "digital": false, "set_type": "commander"}, {"name": "Falling Star", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/2/f2b9983e-20d4-4d12-9e2c-ec6d9a345787.jpg?1562861838", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/2/f2b9983e-20d4-4d12-9e2c-ec6d9a345787.jpg?1562861838"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Famine", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/5/a56410a7-6f99-4bdf-9385-f23571c263c3.jpg?1562929852", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/5/a56410a7-6f99-4bdf-9385-f23571c263c3.jpg?1562929852"}, "reprint": true, "digital": false, "set_type": "commander"}, {"name": "Famine", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/d/8d6c10ca-f6d6-4322-aa17-7e874cb10bb1.jpg?1562257044", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/d/8d6c10ca-f6d6-4322-aa17-7e874cb10bb1.jpg?1562257044"}, "reprint": false, "digital": false, "set_type": "starter"}, {"name": "Farewell", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/1/e1068723-d1ef-4007-97d9-b10dccdbade4.jpg?1654566260", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/1/e1068723-d1ef-4007-97d9-b10dccdbade4.jpg?1654566260"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Farewell", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/8/98c664bc-9585-47a7-9514-b3e30a4e1b59.jpg?1654569820", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/8/98c664bc-9585-47a7-9514-b3e30a4e1b59.jpg?1654569820"}, "reprint": false, "frame_effects": ["showcase"], "digital": false, "set_type": "expansion"}, {"name": "Fated Retribution", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/1/8158b330-2868-4147-907e-4d86e44cfaad.jpg?1593091437", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/1/8158b330-2868-4147-907e-4d86e44cfaad.jpg?1593091437"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Fault Line", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/a/cab4fd0e-9f84-4628-92a7-858ad8064531.jpg?1562937807", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/a/cab4fd0e-9f84-4628-92a7-858ad8064531.jpg?1562937807"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Feast of Succession", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/c/ac83f97d-c8c9-480c-a32c-918035673ab4.jpg?1608909745", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/c/ac83f97d-c8c9-480c-a32c-918035673ab4.jpg?1608909745"}, "reprint": false, "digital": false, "set_type": "draft_innovation"}, {"name": "Fell the Mighty", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/4/d4e999d3-c2d7-47dc-81ad-a2baf6cc4757.jpg?1561960243", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/4/d4e999d3-c2d7-47dc-81ad-a2baf6cc4757.jpg?1561960243"}, "reprint": false, "digital": false, "set_type": "commander"}, {"name": "Festergloom", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/3/f3125137-bd18-488e-b45e-6fc23828c5bd.jpg?1562796922", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/3/f3125137-bd18-488e-b45e-6fc23828c5bd.jpg?1562796922"}, "reprint": false, "digital": false, "set_type": "core"}, {"name": "Festering March", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/c/2c34e6aa-0414-45ba-b6eb-1ac4255d7de8.jpg?1562903995", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/c/2c34e6aa-0414-45ba-b6eb-1ac4255d7de8.jpg?1562903995"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Fiery Cannonade", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/6/664d21c9-4b6c-4797-845f-7bca79c2b76b.jpg?1562556766", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/6/664d21c9-4b6c-4797-845f-7bca79c2b76b.jpg?1562556766"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Fiery Confluence", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/b/7b61c9bc-16e8-417f-99e7-8bd83d4666c5.jpg?1562706203", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/b/7b61c9bc-16e8-417f-99e7-8bd83d4666c5.jpg?1562706203"}, "reprint": false, "digital": false, "set_type": "commander"}, {"name": "Fiery Confluence", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/c/4c454a20-8ec8-41d9-b9c3-acaa510d050b.jpg?1593559583", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/c/4c454a20-8ec8-41d9-b9c3-acaa510d050b.jpg?1593559583"}, "reprint": true, "digital": false, "set_type": "spellbook"}, {"name": "Fight to the Death", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/5/5552ca9b-0245-4f91-9646-a5b5443863a2.jpg?1562641354", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/5/5552ca9b-0245-4f91-9646-a5b5443863a2.jpg?1562641354"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Final Judgment", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/5/2503e136-031f-498a-b042-4077baebe8f8.jpg?1562876056", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/5/2503e136-031f-498a-b042-4077baebe8f8.jpg?1562876056"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Final Revels", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/9/99f3744a-71c4-4a54-9e1c-92420526b792.jpg?1562359766", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/9/99f3744a-71c4-4a54-9e1c-92420526b792.jpg?1562359766"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Firespout", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/3/13454f69-1458-4c03-ab02-bd697a32eb17.jpg?1562826991", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/3/13454f69-1458-4c03-ab02-bd697a32eb17.jpg?1562826991"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Firespout", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/f/8fecd098-bbf2-44f1-b9f1-7b93ea660880.jpg?1559966438", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/f/8fecd098-bbf2-44f1-b9f1-7b93ea660880.jpg?1559966438"}, "reprint": true, "digital": false, "set_type": "from_the_vault"}, {"name": "Fire Tempest", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/2/92334ebe-3d7a-46de-8b91-931e5d56a5a5.jpg?1562447336", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/2/92334ebe-3d7a-46de-8b91-931e5d56a5a5.jpg?1562447336"}, "reprint": false, "digital": false, "set_type": "starter"}, {"name": "Flamebreak", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/7/87e1f06f-7c87-4da8-b339-e571e391cab1.jpg?1562637920", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/7/87e1f06f-7c87-4da8-b339-e571e391cab1.jpg?1562637920"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Flames of the Raze-Boar", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/6/16957271-12bb-4031-b476-f7678b753ae3.jpg?1584830878", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/6/16957271-12bb-4031-b476-f7678b753ae3.jpg?1584830878"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Flame Sweep", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/e/8e489d6c-2eb2-4914-ae71-c9da55b51d0b.jpg?1586187261", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/e/8e489d6c-2eb2-4914-ae71-c9da55b51d0b.jpg?1586187261"}, "reprint": true, "frame_effects": ["inverted"], "digital": false, "set_type": "promo"}, {"name": "Flame Wave", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/0/e069d90a-e7d9-4967-a872-0dd8a0a9934a.jpg?1562597824", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/0/e069d90a-e7d9-4967-a872-0dd8a0a9934a.jpg?1562597824"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Flaying Tendrils", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/7/77899cb2-4d87-4c2d-99ae-1ae75bc5dc86.jpg?1562918962", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/7/77899cb2-4d87-4c2d-99ae-1ae75bc5dc86.jpg?1562918962"}, "reprint": false, "frame_effects": ["devoid"], "digital": false, "set_type": "expansion"}, {"name": "Flaying Tendrils", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/0/10bf8dbf-ae2e-41cd-904c-84b9cca14c27.jpg?1575936034", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/0/10bf8dbf-ae2e-41cd-904c-84b9cca14c27.jpg?1575936034"}, "reprint": true, "frame_effects": ["devoid"], "digital": false, "set_type": "promo"}, {"name": "Flowstone Slide", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/c/ec7b02e1-0a20-4247-ae2a-056c5356f168.jpg?1562632691", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/c/ec7b02e1-0a20-4247-ae2a-056c5356f168.jpg?1562632691"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Forced March", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/6/36eae0e1-7100-449d-a259-7abfcd429117.jpg?1562379925", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/6/36eae0e1-7100-449d-a259-7abfcd429117.jpg?1562379925"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Fumigate", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/0/f00f27a7-9e92-4fbf-baa8-f47a5eee48a6.jpg?1576380863", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/0/f00f27a7-9e92-4fbf-baa8-f47a5eee48a6.jpg?1576380863"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Gale Force", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/6/26c5c233-a373-4ac4-9b99-81ed97df1f9b.jpg?1562758454", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/6/26c5c233-a373-4ac4-9b99-81ed97df1f9b.jpg?1562758454"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Gates Ablaze", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/b/2b574b44-01e1-4197-99bd-57e54aebc5ff.jpg?1584830891", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/b/2b574b44-01e1-4197-99bd-57e54aebc5ff.jpg?1584830891"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Golden Demise", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/8/88bb420a-8bf1-4504-b1b5-2d929be978be.jpg?1555040232", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/8/88bb420a-8bf1-4504-b1b5-2d929be978be.jpg?1555040232"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Golgari Charm", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/8/48fce388-eefc-4234-8dd9-1260c1ba97eb.jpg?1562785737", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/8/48fce388-eefc-4234-8dd9-1260c1ba97eb.jpg?1562785737"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Gruul Charm", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/2/9235afe5-0a6b-43c2-921c-18524cf032f1.jpg?1561836885", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/2/9235afe5-0a6b-43c2-921c-18524cf032f1.jpg?1561836885"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Guan Yu's 1,000-Li March", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/f/8fa7526a-7a4e-4b3d-b96e-91f2bbf1c7bd.jpg?1562257048", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/f/8fa7526a-7a4e-4b3d-b96e-91f2bbf1c7bd.jpg?1562257048"}, "reprint": false, "digital": false, "set_type": "starter"}, {"name": "Hail Storm", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/7/a7e9d786-4e9b-447b-a5dc-ca117c4961c5.jpg?1562769694", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/7/a7e9d786-4e9b-447b-a5dc-ca117c4961c5.jpg?1562769694"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Hallowed Burial", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/4/c42fad4b-caeb-4aa2-9586-cb26bdec56cd.jpg?1562936481", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/4/c42fad4b-caeb-4aa2-9586-cb26bdec56cd.jpg?1562936481"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Harsh Mercy", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/6/b6473b4d-1f59-4216-ace9-f3e5306266fb.jpg?1562937932", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/6/b6473b4d-1f59-4216-ace9-f3e5306266fb.jpg?1562937932"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Hazardous Conditions", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/a/daa9b08b-c56f-480e-874e-069e72d979c8.jpg?1576382835", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/a/daa9b08b-c56f-480e-874e-069e72d979c8.jpg?1576382835"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Hellfire", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/6/362f1fe9-20af-434c-9957-7a1a564d89e6.jpg?1592364391", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/6/362f1fe9-20af-434c-9957-7a1a564d89e6.jpg?1592364391"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Hellion Eruption", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/5/6529c92e-c79b-4953-8bd0-50ceae2ce261.jpg?1562704497", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/5/6529c92e-c79b-4953-8bd0-50ceae2ce261.jpg?1562704497"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Hideous Laughter", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/4/941fd135-1c5a-4650-8faf-dfa2c93ec8c9.jpg?1562762525", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/4/941fd135-1c5a-4650-8faf-dfa2c93ec8c9.jpg?1562762525"}, "reprint": false, "digital": false, "set_type": "expansion"}]} \ No newline at end of file diff --git a/web/public/mtg/jsons/wrath2.json b/web/public/mtg/jsons/wrath2.json index 5102cf66..ea785118 100644 --- a/web/public/mtg/jsons/wrath2.json +++ b/web/public/mtg/jsons/wrath2.json @@ -1 +1 @@ -{"object": "list", "total_cards": 422, "has_more": true, "next_page": "https://api.scryfall.com/cards/search?format=json&include_extras=true&include_multilingual=false&order=name&page=3&q=otag%3Asweeper-creature+%28t%3Ainstant+or+t%3Asorcery%29+not%3Aadventure+-%28set%3Asld+%28%28cn%3E%3D231+cn%3C%3D233%29+or+%28cn%3E%3D321+cn%3C%3D324%29+or+%28cn%3E%3D185+cn%3C%3D189%29+or+%28cn%3E%3D138+cn%3C%3D142%29+or+%28cn%3E%3D364+cn%3C%3D368%29+or+cn%3A669+or+cn%3A670%29%29+-name%3A%2F%5Ea-%2F+not%3Adfc+not%3Asplit+-set%3Acmb2+-set%3Acmb1+-set%3Aplist+-set%3Adbl+-frame%3Aextendedart+language%3Aenglish&unique=art", "data": [{"object": "card", "id": "c3c8a850-bc99-4679-a316-45ecdea696b2", "oracle_id": "8f7dd328-b367-4546-ba79-1efc1e97f2ab", "multiverse_ids": [1810], "tcgplayer_id": 3532, "cardmarket_id": 7364, "name": "Holy Light", "lang": "en", "released_at": "1994-08-01", "uri": "https://api.scryfall.com/cards/c3c8a850-bc99-4679-a316-45ecdea696b2", "scryfall_uri": "https://scryfall.com/card/drk/10/holy-light?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/c/3/c3c8a850-bc99-4679-a316-45ecdea696b2.jpg?1592364686", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/3/c3c8a850-bc99-4679-a316-45ecdea696b2.jpg?1592364686", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/c/3/c3c8a850-bc99-4679-a316-45ecdea696b2.jpg?1592364686", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/c/3/c3c8a850-bc99-4679-a316-45ecdea696b2.png?1592364686", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/3/c3c8a850-bc99-4679-a316-45ecdea696b2.jpg?1592364686", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/c/3/c3c8a850-bc99-4679-a316-45ecdea696b2.jpg?1592364686"}, "mana_cost": "{2}{W}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Nonwhite creatures get -1/-1 until end of turn.", "colors": ["W"], "color_identity": ["W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "a21c6836-c435-459a-81e3-22d2da174549", "set": "drk", "set_name": "The Dark", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/a21c6836-c435-459a-81e3-22d2da174549", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Adrk&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/drk?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/c3c8a850-bc99-4679-a316-45ecdea696b2/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A8f7dd328-b367-4546-ba79-1efc1e97f2ab&unique=prints", "collector_number": "10", "digital": false, "rarity": "common", "flavor_text": "\"Bathed in hallowed light, the infidels looked upon the impurities of their souls and despaired.\" \u2014*The Book of Tal*", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Drew Tucker", "artist_ids": ["22eef389-7b21-4dda-95dc-4c9a0f1bf4dd"], "illustration_id": "bf727f2f-98de-419d-9a49-19fd6124eae3", "border_color": "black", "frame": "1993", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 21794, "prices": {"usd": "0.49", "usd_foil": null, "usd_etched": null, "eur": "1.00", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=1810", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Holy+Light&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Holy+Light&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Holy+Light"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/3532?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Holy+Light&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Holy+Light&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "bd7df727-50ea-4ea8-bdb9-d7ef16199d8a", "oracle_id": "5c7f91af-8bac-4da1-b9e5-f15989c9d53c", "multiverse_ids": [555392], "mtgo_id": 98601, "arena_id": 80342, "tcgplayer_id": 268657, "cardmarket_id": 651652, "name": "Hostile Takeover", "lang": "en", "released_at": "2022-04-29", "uri": "https://api.scryfall.com/cards/bd7df727-50ea-4ea8-bdb9-d7ef16199d8a", "scryfall_uri": "https://scryfall.com/card/snc/191/hostile-takeover?utm_source=api", "layout": "normal", "highres_image": false, "image_status": "lowres", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/b/d/bd7df727-50ea-4ea8-bdb9-d7ef16199d8a.jpg?1649697248", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/d/bd7df727-50ea-4ea8-bdb9-d7ef16199d8a.jpg?1649697248", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/b/d/bd7df727-50ea-4ea8-bdb9-d7ef16199d8a.jpg?1649697248", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/b/d/bd7df727-50ea-4ea8-bdb9-d7ef16199d8a.png?1649697248", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/d/bd7df727-50ea-4ea8-bdb9-d7ef16199d8a.jpg?1649697248", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/b/d/bd7df727-50ea-4ea8-bdb9-d7ef16199d8a.jpg?1649697248"}, "mana_cost": "{2}{U}{B}{R}", "cmc": 5.0, "type_line": "Sorcery", "oracle_text": "Up to one target creature has base power and toughness 1/1 until end of turn. Up to one other target creature has base power and toughness 4/4 until end of turn. Then Hostile Takeover deals 3 damage to each creature.", "colors": ["B", "R", "U"], "color_identity": ["B", "R", "U"], "keywords": [], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo", "arena"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "df837242-8c15-42e4-b049-c933a02dc501", "set": "snc", "set_name": "Streets of New Capenna", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/df837242-8c15-42e4-b049-c933a02dc501", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Asnc&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/snc?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/bd7df727-50ea-4ea8-bdb9-d7ef16199d8a/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A5c7f91af-8bac-4da1-b9e5-f15989c9d53c&unique=prints", "collector_number": "191", "digital": false, "rarity": "rare", "watermark": "maestros", "flavor_text": "Ob Nixilis smiled. It had been over one thousand years since his last conquest.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Vincent Proce", "artist_ids": ["d82b1138-76d3-49f7-9d8c-bc2e2d3e0b0a"], "illustration_id": "5b2b5c59-c3d1-46a8-9cd2-7d1b51aaf3a8", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": true, "story_spotlight": true, "edhrec_rank": 14721, "preview": {"source": "Wizards of the Coast", "source_uri": "https://magic.wizards.com/en/articles/archive/card-image-gallery/streets-of-new-capenna", "previewed_at": "2022-04-11"}, "prices": {"usd": "0.06", "usd_foil": "0.11", "usd_etched": null, "eur": "0.15", "eur_foil": "0.24", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=555392", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Hostile+Takeover&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Hostile+Takeover&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Hostile+Takeover"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/268657?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Hostile+Takeover&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/98601?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "8137f134-0148-4df1-b575-ec861192c65c", "oracle_id": "5c7f91af-8bac-4da1-b9e5-f15989c9d53c", "multiverse_ids": [558708], "arena_id": 80488, "tcgplayer_id": 268578, "cardmarket_id": 651665, "name": "Hostile Takeover", "lang": "en", "released_at": "2022-04-29", "uri": "https://api.scryfall.com/cards/8137f134-0148-4df1-b575-ec861192c65c", "scryfall_uri": "https://scryfall.com/card/snc/310/hostile-takeover?utm_source=api", "layout": "normal", "highres_image": false, "image_status": "lowres", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/8/1/8137f134-0148-4df1-b575-ec861192c65c.jpg?1649695787", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/1/8137f134-0148-4df1-b575-ec861192c65c.jpg?1649695787", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/8/1/8137f134-0148-4df1-b575-ec861192c65c.jpg?1649695787", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/8/1/8137f134-0148-4df1-b575-ec861192c65c.png?1649695787", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/1/8137f134-0148-4df1-b575-ec861192c65c.jpg?1649695787", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/8/1/8137f134-0148-4df1-b575-ec861192c65c.jpg?1649695787"}, "mana_cost": "{2}{U}{B}{R}", "cmc": 5.0, "type_line": "Sorcery", "oracle_text": "Up to one target creature has base power and toughness 1/1 until end of turn. Up to one other target creature has base power and toughness 4/4 until end of turn. Then Hostile Takeover deals 3 damage to each creature.", "colors": ["B", "R", "U"], "color_identity": ["B", "R", "U"], "keywords": [], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo", "arena"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "df837242-8c15-42e4-b049-c933a02dc501", "set": "snc", "set_name": "Streets of New Capenna", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/df837242-8c15-42e4-b049-c933a02dc501", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Asnc&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/snc?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/8137f134-0148-4df1-b575-ec861192c65c/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A5c7f91af-8bac-4da1-b9e5-f15989c9d53c&unique=prints", "collector_number": "310", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Isis", "artist_ids": ["4d12227a-8657-48b7-884a-ff70cc6428a5"], "illustration_id": "85a69ce5-b770-4ac5-a84c-0fc70333e706", "border_color": "black", "frame": "2015", "frame_effects": ["showcase"], "security_stamp": "oval", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "promo_types": ["boosterfun"], "edhrec_rank": 14721, "preview": {"source": "Wizards of the Coast", "source_uri": "https://magic.wizards.com/en/articles/archive/card-image-gallery/streets-of-new-capenna", "previewed_at": "2022-04-11"}, "prices": {"usd": "0.10", "usd_foil": "0.15", "usd_etched": null, "eur": "0.15", "eur_foil": "0.23", "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=558708", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Hostile+Takeover&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Hostile+Takeover&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Hostile+Takeover"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/268578?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Hostile+Takeover&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Hostile+Takeover&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "d420cc12-cfd7-4007-a0c2-b16c8f63a754", "oracle_id": "b9ea0d4c-cd71-4817-8213-96899e1a14bb", "multiverse_ids": [430786], "mtgo_id": 64678, "mtgo_foil_id": 64679, "tcgplayer_id": 136610, "cardmarket_id": 298794, "name": "Hour of Devastation", "lang": "en", "released_at": "2017-07-14", "uri": "https://api.scryfall.com/cards/d420cc12-cfd7-4007-a0c2-b16c8f63a754", "scryfall_uri": "https://scryfall.com/card/hou/97/hour-of-devastation?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/d/4/d420cc12-cfd7-4007-a0c2-b16c8f63a754.jpg?1562816057", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/4/d420cc12-cfd7-4007-a0c2-b16c8f63a754.jpg?1562816057", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/d/4/d420cc12-cfd7-4007-a0c2-b16c8f63a754.jpg?1562816057", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/d/4/d420cc12-cfd7-4007-a0c2-b16c8f63a754.png?1562816057", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/4/d420cc12-cfd7-4007-a0c2-b16c8f63a754.jpg?1562816057", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/d/4/d420cc12-cfd7-4007-a0c2-b16c8f63a754.jpg?1562816057"}, "mana_cost": "{3}{R}{R}", "cmc": 5.0, "type_line": "Sorcery", "oracle_text": "All creatures lose indestructible until end of turn. Hour of Devastation deals 5 damage to each creature and each non-Bolas planeswalker.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "65ff168b-bb94-47a5-a8f9-4ec6c213e768", "set": "hou", "set_name": "Hour of Devastation", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/65ff168b-bb94-47a5-a8f9-4ec6c213e768", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ahou&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/hou?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/d420cc12-cfd7-4007-a0c2-b16c8f63a754/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ab9ea0d4c-cd71-4817-8213-96899e1a14bb&unique=prints", "collector_number": "97", "digital": false, "rarity": "rare", "watermark": "planeswalker", "flavor_text": "\"Everything here exists or perishes at my whim. Including you, Gatewatch.\"\n\u2014Nicol Bolas", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Simon Dominic", "artist_ids": ["b0e80135-db5a-4b88-a0bc-815a0e94faa1"], "illustration_id": "4783f718-4700-48dd-b11f-c5a397bdc58a", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": true, "story_spotlight": true, "edhrec_rank": 3494, "penny_rank": 3615, "prices": {"usd": "0.64", "usd_foil": "2.83", "usd_etched": null, "eur": "0.55", "eur_foil": "1.74", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=430786", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Hour+of+Devastation&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Hour+of+Devastation&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Hour+of+Devastation"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/136610?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Hour+of+Devastation&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/64678?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "d12768a5-8ee6-407b-87cf-703e69a0c32a", "oracle_id": "3bc13640-03f8-4b19-b0a4-7e7cb5271c0c", "multiverse_ids": [470611], "mtgo_id": 77244, "tcgplayer_id": 196542, "cardmarket_id": 392032, "name": "Hour of Reckoning", "lang": "en", "released_at": "2019-08-23", "uri": "https://api.scryfall.com/cards/d12768a5-8ee6-407b-87cf-703e69a0c32a", "scryfall_uri": "https://scryfall.com/card/c19/65/hour-of-reckoning?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/d/1/d12768a5-8ee6-407b-87cf-703e69a0c32a.jpg?1568003844", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/1/d12768a5-8ee6-407b-87cf-703e69a0c32a.jpg?1568003844", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/d/1/d12768a5-8ee6-407b-87cf-703e69a0c32a.jpg?1568003844", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/d/1/d12768a5-8ee6-407b-87cf-703e69a0c32a.png?1568003844", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/1/d12768a5-8ee6-407b-87cf-703e69a0c32a.jpg?1568003844", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/d/1/d12768a5-8ee6-407b-87cf-703e69a0c32a.jpg?1568003844"}, "mana_cost": "{4}{W}{W}{W}", "cmc": 7.0, "type_line": "Sorcery", "oracle_text": "Convoke (Your creatures can help cast this spell. Each creature you tap while casting this spell pays for {1} or one mana of that creature's color.)\nDestroy all nontoken creatures.", "colors": ["W"], "color_identity": ["W"], "keywords": ["Convoke"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "0fa3ccbb-d86d-4a2e-a55e-c4979c4feeb2", "set": "c19", "set_name": "Commander 2019", "set_type": "commander", "set_uri": "https://api.scryfall.com/sets/0fa3ccbb-d86d-4a2e-a55e-c4979c4feeb2", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ac19&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/c19?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/d12768a5-8ee6-407b-87cf-703e69a0c32a/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A3bc13640-03f8-4b19-b0a4-7e7cb5271c0c&unique=prints", "collector_number": "65", "digital": false, "rarity": "rare", "flavor_text": "Those who are chosen do not doubt. Those who remain do not lament.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Joseph Meehan", "artist_ids": ["6befd6d5-7f8d-4b7c-87e3-5511391a3359"], "illustration_id": "4dd79780-1ef7-46b5-9cfd-b70dce8136bd", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "edhrec_rank": 1198, "penny_rank": 2965, "preview": {"source": "Sheldon Menery", "source_uri": "https://twitter.com/SheldonMenery/status/1159118094436044800", "previewed_at": "2019-08-07"}, "prices": {"usd": "0.48", "usd_foil": null, "usd_etched": null, "eur": "0.15", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=470611", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Hour+of+Reckoning&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Hour+of+Reckoning&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Hour+of+Reckoning"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/196542?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Hour+of+Reckoning&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/77244?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "bec7a987-1ef2-40aa-a744-92d90b246df4", "oracle_id": "3bc13640-03f8-4b19-b0a4-7e7cb5271c0c", "multiverse_ids": [88985], "mtgo_id": 23352, "mtgo_foil_id": 23353, "tcgplayer_id": 13322, "cardmarket_id": 13428, "name": "Hour of Reckoning", "lang": "en", "released_at": "2005-10-07", "uri": "https://api.scryfall.com/cards/bec7a987-1ef2-40aa-a744-92d90b246df4", "scryfall_uri": "https://scryfall.com/card/rav/21/hour-of-reckoning?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/b/e/bec7a987-1ef2-40aa-a744-92d90b246df4.jpg?1598913735", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/e/bec7a987-1ef2-40aa-a744-92d90b246df4.jpg?1598913735", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/b/e/bec7a987-1ef2-40aa-a744-92d90b246df4.jpg?1598913735", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/b/e/bec7a987-1ef2-40aa-a744-92d90b246df4.png?1598913735", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/e/bec7a987-1ef2-40aa-a744-92d90b246df4.jpg?1598913735", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/b/e/bec7a987-1ef2-40aa-a744-92d90b246df4.jpg?1598913735"}, "mana_cost": "{4}{W}{W}{W}", "cmc": 7.0, "type_line": "Sorcery", "oracle_text": "Convoke (Your creatures can help cast this spell. Each creature you tap while casting this spell pays for {1} or one mana of that creature's color.)\nDestroy all nontoken creatures.", "colors": ["W"], "color_identity": ["W"], "keywords": ["Convoke"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "15fccbe8-2825-41ca-9d0a-67aebdf91c4a", "set": "rav", "set_name": "Ravnica: City of Guilds", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/15fccbe8-2825-41ca-9d0a-67aebdf91c4a", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Arav&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/rav?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/bec7a987-1ef2-40aa-a744-92d90b246df4/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A3bc13640-03f8-4b19-b0a4-7e7cb5271c0c&unique=prints", "collector_number": "21", "digital": false, "rarity": "rare", "watermark": "selesnya", "flavor_text": "\"Ravnica, like a hedge, must be pruned, leaving only leaves of verdant uniformity.\"\n\u2014Niszka, Selesnya evangel", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Randy Gallegos", "artist_ids": ["a5048cc7-438a-4378-98e4-da99b78e1db0"], "illustration_id": "8959d1bc-5d90-4562-869e-7d74a9eec9a9", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 1198, "penny_rank": 2965, "prices": {"usd": "0.52", "usd_foil": "15.39", "usd_etched": null, "eur": "0.79", "eur_foil": "4.20", "tix": "0.01"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=88985", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Hour+of+Reckoning&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Hour+of+Reckoning&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Hour+of+Reckoning"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/13322?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Hour+of+Reckoning&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/23352?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "9917cf32-0236-4463-9b1d-e8193754ff97", "oracle_id": "06118cec-ae63-4720-988d-df9cc15ccfab", "multiverse_ids": [29776], "mtgo_id": 16623, "mtgo_foil_id": 16624, "tcgplayer_id": 9519, "cardmarket_id": 2656, "name": "Howling Gale", "lang": "en", "released_at": "2001-10-01", "uri": "https://api.scryfall.com/cards/9917cf32-0236-4463-9b1d-e8193754ff97", "scryfall_uri": "https://scryfall.com/card/ody/244/howling-gale?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/9/9/9917cf32-0236-4463-9b1d-e8193754ff97.jpg?1562923428", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/9/9917cf32-0236-4463-9b1d-e8193754ff97.jpg?1562923428", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/9/9/9917cf32-0236-4463-9b1d-e8193754ff97.jpg?1562923428", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/9/9/9917cf32-0236-4463-9b1d-e8193754ff97.png?1562923428", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/9/9917cf32-0236-4463-9b1d-e8193754ff97.jpg?1562923428", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/9/9/9917cf32-0236-4463-9b1d-e8193754ff97.jpg?1562923428"}, "mana_cost": "{1}{G}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Howling Gale deals 1 damage to each creature with flying and each player.\nFlashback {1}{G} (You may cast this card from your graveyard for its flashback cost. Then exile it.)", "colors": ["G"], "color_identity": ["G"], "keywords": ["Flashback"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "b0d90d2d-494a-4224-bfa0-36ce5ee281b1", "set": "ody", "set_name": "Odyssey", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/b0d90d2d-494a-4224-bfa0-36ce5ee281b1", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aody&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ody?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/9917cf32-0236-4463-9b1d-e8193754ff97/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A06118cec-ae63-4720-988d-df9cc15ccfab&unique=prints", "collector_number": "244", "digital": false, "rarity": "uncommon", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Greg Staples", "artist_ids": ["93d65564-bf00-447b-8406-e2031f03b6b1"], "illustration_id": "b7f4c912-78e4-44ad-b9ea-d28edf2ea214", "border_color": "black", "frame": "1997", "frame_effects": ["tombstone"], "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 19760, "prices": {"usd": "0.13", "usd_foil": "1.29", "usd_etched": null, "eur": "0.02", "eur_foil": "0.50", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=29776", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Howling+Gale&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Howling+Gale&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Howling+Gale"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/9519?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Howling+Gale&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/16623?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "7a6e0b97-c2a9-4cd6-957e-87e9b22f7b48", "oracle_id": "2149f9f2-adcf-47d3-9564-326b5c0ced32", "multiverse_ids": [143381], "mtgo_id": 28563, "mtgo_foil_id": 28564, "tcgplayer_id": 15532, "cardmarket_id": 17918, "name": "Hurly-Burly", "lang": "en", "released_at": "2007-10-12", "uri": "https://api.scryfall.com/cards/7a6e0b97-c2a9-4cd6-957e-87e9b22f7b48", "scryfall_uri": "https://scryfall.com/card/lrw/177/hurly-burly?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/7/a/7a6e0b97-c2a9-4cd6-957e-87e9b22f7b48.jpg?1562354283", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/a/7a6e0b97-c2a9-4cd6-957e-87e9b22f7b48.jpg?1562354283", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/7/a/7a6e0b97-c2a9-4cd6-957e-87e9b22f7b48.jpg?1562354283", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/7/a/7a6e0b97-c2a9-4cd6-957e-87e9b22f7b48.png?1562354283", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/a/7a6e0b97-c2a9-4cd6-957e-87e9b22f7b48.jpg?1562354283", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/7/a/7a6e0b97-c2a9-4cd6-957e-87e9b22f7b48.jpg?1562354283"}, "mana_cost": "{1}{R}", "cmc": 2.0, "type_line": "Sorcery", "oracle_text": "Choose one \u2014\n\u2022 Hurly-Burly deals 1 damage to each creature without flying.\n\u2022 Hurly-Burly deals 1 damage to each creature with flying.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "30ec97cb-dca9-4bf4-a98b-310f9d8ceaff", "set": "lrw", "set_name": "Lorwyn", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/30ec97cb-dca9-4bf4-a98b-310f9d8ceaff", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Alrw&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/lrw?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/7a6e0b97-c2a9-4cd6-957e-87e9b22f7b48/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A2149f9f2-adcf-47d3-9564-326b5c0ced32&unique=prints", "collector_number": "177", "digital": false, "rarity": "common", "flavor_text": "\"Things were popping like corn in a skillet. Olly landed in the pig pen with his prize sow on top of him, both squealin' like boggarts.\"\n\u2014Deagan, cenn of Burrenton", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Steve Prescott", "artist_ids": ["a1139fb8-41f5-4a9e-9a74-f662e1a23b35"], "illustration_id": "94424082-1137-4182-9b87-7c01c6af2dae", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 17681, "prices": {"usd": "0.05", "usd_foil": "0.25", "usd_etched": null, "eur": "0.08", "eur_foil": "0.10", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=143381", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Hurly-Burly&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Hurly-Burly&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Hurly-Burly"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/15532?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Hurly-Burly&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/28563?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "f0526077-79b6-40ae-8178-8b97c33a53fb", "oracle_id": "9c021685-4017-49c7-9f58-2ae0243361a0", "multiverse_ids": [10844], "mtgo_id": 16010, "mtgo_foil_id": 16011, "tcgplayer_id": 2951, "cardmarket_id": 3014, "name": "Hurricane", "lang": "en", "released_at": "2001-04-11", "uri": "https://api.scryfall.com/cards/f0526077-79b6-40ae-8178-8b97c33a53fb", "scryfall_uri": "https://scryfall.com/card/7ed/252/hurricane?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/f/0/f0526077-79b6-40ae-8178-8b97c33a53fb.jpg?1562250875", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/0/f0526077-79b6-40ae-8178-8b97c33a53fb.jpg?1562250875", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/f/0/f0526077-79b6-40ae-8178-8b97c33a53fb.jpg?1562250875", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/f/0/f0526077-79b6-40ae-8178-8b97c33a53fb.png?1562250875", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/0/f0526077-79b6-40ae-8178-8b97c33a53fb.jpg?1562250875", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/f/0/f0526077-79b6-40ae-8178-8b97c33a53fb.jpg?1562250875"}, "mana_cost": "{X}{G}", "cmc": 1.0, "type_line": "Sorcery", "oracle_text": "Hurricane deals X damage to each creature with flying and each player.", "colors": ["G"], "color_identity": ["G"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "230f38aa-9511-4db8-a3aa-aeddbc3f7bb9", "set": "7ed", "set_name": "Seventh Edition", "set_type": "core", "set_uri": "https://api.scryfall.com/sets/230f38aa-9511-4db8-a3aa-aeddbc3f7bb9", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3A7ed&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/7ed?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/f0526077-79b6-40ae-8178-8b97c33a53fb/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A9c021685-4017-49c7-9f58-2ae0243361a0&unique=prints", "collector_number": "252", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "John Howe", "artist_ids": ["040fab39-e3db-4d09-9b2d-214a4e40c6fa"], "illustration_id": "3bc80d3e-237e-479b-a55c-a503529016ef", "border_color": "white", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 5205, "penny_rank": 3401, "prices": {"usd": "0.27", "usd_foil": "35.90", "usd_etched": null, "eur": "0.25", "eur_foil": "65.25", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=10844", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Hurricane&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Hurricane&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Hurricane"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/2951?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Hurricane&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/16010?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "6b4dd722-4729-444a-9d81-e2e93317fbd5", "oracle_id": "9c021685-4017-49c7-9f58-2ae0243361a0", "multiverse_ids": [6640], "tcgplayer_id": 153, "cardmarket_id": 9889, "name": "Hurricane", "lang": "en", "released_at": "1998-06-24", "uri": "https://api.scryfall.com/cards/6b4dd722-4729-444a-9d81-e2e93317fbd5", "scryfall_uri": "https://scryfall.com/card/p02/129/hurricane?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/6/b/6b4dd722-4729-444a-9d81-e2e93317fbd5.jpg?1562920277", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/b/6b4dd722-4729-444a-9d81-e2e93317fbd5.jpg?1562920277", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/6/b/6b4dd722-4729-444a-9d81-e2e93317fbd5.jpg?1562920277", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/6/b/6b4dd722-4729-444a-9d81-e2e93317fbd5.png?1562920277", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/b/6b4dd722-4729-444a-9d81-e2e93317fbd5.jpg?1562920277", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/6/b/6b4dd722-4729-444a-9d81-e2e93317fbd5.jpg?1562920277"}, "mana_cost": "{X}{G}", "cmc": 1.0, "type_line": "Sorcery", "oracle_text": "Hurricane deals X damage to each creature with flying and each player.", "colors": ["G"], "color_identity": ["G"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "ac67f18a-4f0e-407e-bab1-a9fe4f659565", "set": "p02", "set_name": "Portal Second Age", "set_type": "starter", "set_uri": "https://api.scryfall.com/sets/ac67f18a-4f0e-407e-bab1-a9fe4f659565", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ap02&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/p02?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/6b4dd722-4729-444a-9d81-e2e93317fbd5/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A9c021685-4017-49c7-9f58-2ae0243361a0&unique=prints", "collector_number": "129", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Rob Alexander", "artist_ids": ["35906871-6c78-4ab2-9ed1-e6792c8efb74"], "illustration_id": "0b611468-9fe7-41f3-b7f0-b0bace6825e3", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 5205, "penny_rank": 3401, "prices": {"usd": "0.87", "usd_foil": null, "usd_etched": null, "eur": "0.62", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=6640", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Hurricane&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Hurricane&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Hurricane"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/153?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Hurricane&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Hurricane&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "7b97904e-80ba-4d65-808a-a528200430f8", "oracle_id": "9c021685-4017-49c7-9f58-2ae0243361a0", "multiverse_ids": [4301], "tcgplayer_id": 699, "cardmarket_id": 10080, "name": "Hurricane", "lang": "en", "released_at": "1997-05-01", "uri": "https://api.scryfall.com/cards/7b97904e-80ba-4d65-808a-a528200430f8", "scryfall_uri": "https://scryfall.com/card/por/170/hurricane?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/7/b/7b97904e-80ba-4d65-808a-a528200430f8.jpg?1562446872", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/b/7b97904e-80ba-4d65-808a-a528200430f8.jpg?1562446872", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/7/b/7b97904e-80ba-4d65-808a-a528200430f8.jpg?1562446872", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/7/b/7b97904e-80ba-4d65-808a-a528200430f8.png?1562446872", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/b/7b97904e-80ba-4d65-808a-a528200430f8.jpg?1562446872", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/7/b/7b97904e-80ba-4d65-808a-a528200430f8.jpg?1562446872"}, "mana_cost": "{X}{G}", "cmc": 1.0, "type_line": "Sorcery", "oracle_text": "Hurricane deals X damage to each creature with flying and each player.", "colors": ["G"], "color_identity": ["G"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "478c47df-5058-4ce6-830e-7e80732b2ca9", "set": "por", "set_name": "Portal", "set_type": "starter", "set_uri": "https://api.scryfall.com/sets/478c47df-5058-4ce6-830e-7e80732b2ca9", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Apor&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/por?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/7b97904e-80ba-4d65-808a-a528200430f8/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A9c021685-4017-49c7-9f58-2ae0243361a0&unique=prints", "collector_number": "170", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Andrew Robinson", "artist_ids": ["cb577db7-7f47-4f78-8682-6eaef8a77bd1"], "illustration_id": "b2022af8-4078-4075-9e76-48cbc6c054f4", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 5205, "penny_rank": 3401, "prices": {"usd": "0.74", "usd_foil": null, "usd_etched": null, "eur": "1.45", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=4301", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Hurricane&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Hurricane&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Hurricane"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/699?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Hurricane&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Hurricane&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "a8cc6db7-1f40-40e3-a7ea-92f1d05e2e3d", "oracle_id": "9c021685-4017-49c7-9f58-2ae0243361a0", "multiverse_ids": [2573], "tcgplayer_id": 4725, "cardmarket_id": 6349, "name": "Hurricane", "lang": "en", "released_at": "1995-06-03", "uri": "https://api.scryfall.com/cards/a8cc6db7-1f40-40e3-a7ea-92f1d05e2e3d", "scryfall_uri": "https://scryfall.com/card/ice/249/hurricane?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/a/8/a8cc6db7-1f40-40e3-a7ea-92f1d05e2e3d.jpg?1562926538", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/8/a8cc6db7-1f40-40e3-a7ea-92f1d05e2e3d.jpg?1562926538", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/a/8/a8cc6db7-1f40-40e3-a7ea-92f1d05e2e3d.jpg?1562926538", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/a/8/a8cc6db7-1f40-40e3-a7ea-92f1d05e2e3d.png?1562926538", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/8/a8cc6db7-1f40-40e3-a7ea-92f1d05e2e3d.jpg?1562926538", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/a/8/a8cc6db7-1f40-40e3-a7ea-92f1d05e2e3d.jpg?1562926538"}, "mana_cost": "{X}{G}", "cmc": 1.0, "type_line": "Sorcery", "oracle_text": "Hurricane deals X damage to each creature with flying and each player.", "colors": ["G"], "color_identity": ["G"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "b0e08eea-5c01-4406-a6e2-dcd09c5e5b67", "set": "ice", "set_name": "Ice Age", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/b0e08eea-5c01-4406-a6e2-dcd09c5e5b67", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aice&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ice?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/a8cc6db7-1f40-40e3-a7ea-92f1d05e2e3d/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A9c021685-4017-49c7-9f58-2ae0243361a0&unique=prints", "collector_number": "249", "digital": false, "rarity": "uncommon", "flavor_text": "\"This was quite possibly the least pleasant occurrence on the entire expedition.\"\n\u2014Disa the Restless, journal entry", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Cornelius Brudi", "artist_ids": ["1dac5a8b-ce8d-43f0-95ee-2180a4502344"], "illustration_id": "e1b57f5e-2ccf-48fd-878a-7dd0a07c296f", "border_color": "black", "frame": "1993", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 5205, "penny_rank": 3401, "prices": {"usd": "0.25", "usd_foil": null, "usd_etched": null, "eur": "0.39", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=2573", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Hurricane&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Hurricane&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Hurricane"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/4725?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Hurricane&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Hurricane&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "52f5a19f-16e4-4d35-89e1-969ac8202f88", "oracle_id": "9c021685-4017-49c7-9f58-2ae0243361a0", "multiverse_ids": [156], "tcgplayer_id": 1143, "cardmarket_id": 5342, "name": "Hurricane", "lang": "en", "released_at": "1993-08-05", "uri": "https://api.scryfall.com/cards/52f5a19f-16e4-4d35-89e1-969ac8202f88", "scryfall_uri": "https://scryfall.com/card/lea/200/hurricane?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/5/2/52f5a19f-16e4-4d35-89e1-969ac8202f88.jpg?1559591426", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/2/52f5a19f-16e4-4d35-89e1-969ac8202f88.jpg?1559591426", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/5/2/52f5a19f-16e4-4d35-89e1-969ac8202f88.jpg?1559591426", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/5/2/52f5a19f-16e4-4d35-89e1-969ac8202f88.png?1559591426", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/2/52f5a19f-16e4-4d35-89e1-969ac8202f88.jpg?1559591426", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/5/2/52f5a19f-16e4-4d35-89e1-969ac8202f88.jpg?1559591426"}, "mana_cost": "{X}{G}", "cmc": 1.0, "type_line": "Sorcery", "oracle_text": "Hurricane deals X damage to each creature with flying and each player.", "colors": ["G"], "color_identity": ["G"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "legal", "premodern": "legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "288bd996-960e-448b-a187-9504c1930c2c", "set": "lea", "set_name": "Limited Edition Alpha", "set_type": "core", "set_uri": "https://api.scryfall.com/sets/288bd996-960e-448b-a187-9504c1930c2c", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Alea&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/lea?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/52f5a19f-16e4-4d35-89e1-969ac8202f88/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A9c021685-4017-49c7-9f58-2ae0243361a0&unique=prints", "collector_number": "200", "digital": false, "rarity": "uncommon", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Dameon Willich", "artist_ids": ["606a37b0-9d2d-477b-b679-100bc30b46b3"], "illustration_id": "6f2e014e-7806-44fa-b98a-f6bbe813df0d", "border_color": "black", "frame": "1993", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 5205, "penny_rank": 3401, "prices": {"usd": "349.00", "usd_foil": null, "usd_etched": null, "eur": "264.98", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=156", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Hurricane&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Hurricane&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Hurricane"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/1143?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Hurricane&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Hurricane&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "0b207e2f-4604-43c5-bb35-a877e35ddd81", "oracle_id": "d33aa11b-011b-4d12-85a9-4f956153fb1d", "multiverse_ids": [218066], "mtgo_id": 39854, "mtgo_foil_id": 39855, "tcgplayer_id": 39530, "cardmarket_id": 245893, "name": "Ichor Explosion", "lang": "en", "released_at": "2011-05-13", "uri": "https://api.scryfall.com/cards/0b207e2f-4604-43c5-bb35-a877e35ddd81", "scryfall_uri": "https://scryfall.com/card/nph/64/ichor-explosion?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/0/b/0b207e2f-4604-43c5-bb35-a877e35ddd81.jpg?1562875473", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/b/0b207e2f-4604-43c5-bb35-a877e35ddd81.jpg?1562875473", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/0/b/0b207e2f-4604-43c5-bb35-a877e35ddd81.jpg?1562875473", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/0/b/0b207e2f-4604-43c5-bb35-a877e35ddd81.png?1562875473", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/b/0b207e2f-4604-43c5-bb35-a877e35ddd81.jpg?1562875473", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/0/b/0b207e2f-4604-43c5-bb35-a877e35ddd81.jpg?1562875473"}, "mana_cost": "{5}{B}{B}", "cmc": 7.0, "type_line": "Sorcery", "oracle_text": "As an additional cost to cast this spell, sacrifice a creature.\nAll creatures get -X/-X until end of turn, where X is the sacrificed creature's power.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "e8e356d8-6d01-4dab-aa07-d0999dc9359f", "set": "nph", "set_name": "New Phyrexia", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/e8e356d8-6d01-4dab-aa07-d0999dc9359f", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Anph&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/nph?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/0b207e2f-4604-43c5-bb35-a877e35ddd81/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ad33aa11b-011b-4d12-85a9-4f956153fb1d&unique=prints", "collector_number": "64", "digital": false, "rarity": "uncommon", "watermark": "phyrexian", "flavor_text": "The first explosion that didn't excite goblins.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "James Ryman", "artist_ids": ["3852bbc9-11c0-4fe3-8722-a06ad7e2bcc5"], "illustration_id": "40586302-8da3-45a2-bf54-2879baf11ed1", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 18301, "prices": {"usd": "0.06", "usd_foil": "0.26", "usd_etched": null, "eur": "0.02", "eur_foil": "0.25", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=218066", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Ichor+Explosion&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Ichor+Explosion&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Ichor+Explosion"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/39530?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Ichor+Explosion&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/39854?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "bd0b8aee-fbfb-470f-9ac2-64fce0b4b2fb", "oracle_id": "1888b473-e26a-4882-ae18-5a0a6caee410", "multiverse_ids": [489187], "mtgo_id": 81787, "arena_id": 72123, "tcgplayer_id": 216590, "cardmarket_id": 474184, "name": "Immolating Gyre", "lang": "en", "released_at": "2020-07-17", "uri": "https://api.scryfall.com/cards/bd0b8aee-fbfb-470f-9ac2-64fce0b4b2fb", "scryfall_uri": "https://scryfall.com/card/jmp/20/immolating-gyre?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/b/d/bd0b8aee-fbfb-470f-9ac2-64fce0b4b2fb.jpg?1632261825", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/d/bd0b8aee-fbfb-470f-9ac2-64fce0b4b2fb.jpg?1632261825", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/b/d/bd0b8aee-fbfb-470f-9ac2-64fce0b4b2fb.jpg?1632261825", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/b/d/bd0b8aee-fbfb-470f-9ac2-64fce0b4b2fb.png?1632261825", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/d/bd0b8aee-fbfb-470f-9ac2-64fce0b4b2fb.jpg?1632261825", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/b/d/bd0b8aee-fbfb-470f-9ac2-64fce0b4b2fb.jpg?1632261825"}, "mana_cost": "{4}{R}{R}", "cmc": 6.0, "type_line": "Sorcery", "oracle_text": "Immolating Gyre deals X damage to each creature and planeswalker you don't control, where X is the number of instant and sorcery cards in your graveyard.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "0f6ccf25-a627-4263-86df-5757137f1696", "set": "jmp", "set_name": "Jumpstart", "set_type": "draft_innovation", "set_uri": "https://api.scryfall.com/sets/0f6ccf25-a627-4263-86df-5757137f1696", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ajmp&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/jmp?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/bd0b8aee-fbfb-470f-9ac2-64fce0b4b2fb/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A1888b473-e26a-4882-ae18-5a0a6caee410&unique=prints", "collector_number": "20", "digital": false, "rarity": "mythic", "flavor_text": "\"Nice army you had there.\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Campbell White", "artist_ids": ["d281eab4-463a-4ba8-9039-8943737960a0"], "illustration_id": "166ce622-4fc7-4aee-b156-faaff1d790d0", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 7183, "preview": {"source": "Wizards of the Coast", "source_uri": "", "previewed_at": "2020-06-19"}, "prices": {"usd": "0.31", "usd_foil": null, "usd_etched": null, "eur": "0.81", "eur_foil": null, "tix": "0.60"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=489187", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Immolating+Gyre&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Immolating+Gyre&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Immolating+Gyre"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/216590?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Immolating+Gyre&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/81787?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "77e2ed9e-ee1d-440a-94b4-d4b17d30b800", "oracle_id": "d031b482-b33d-4eb4-a5bc-ea96e66a1d99", "multiverse_ids": [555393], "mtgo_id": 98603, "arena_id": 80343, "tcgplayer_id": 268741, "cardmarket_id": 651858, "name": "Incandescent Aria", "lang": "en", "released_at": "2022-04-29", "uri": "https://api.scryfall.com/cards/77e2ed9e-ee1d-440a-94b4-d4b17d30b800", "scryfall_uri": "https://scryfall.com/card/snc/192/incandescent-aria?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/7/7/77e2ed9e-ee1d-440a-94b4-d4b17d30b800.jpg?1649801687", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/7/77e2ed9e-ee1d-440a-94b4-d4b17d30b800.jpg?1649801687", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/7/7/77e2ed9e-ee1d-440a-94b4-d4b17d30b800.jpg?1649801687", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/7/7/77e2ed9e-ee1d-440a-94b4-d4b17d30b800.png?1649801687", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/7/77e2ed9e-ee1d-440a-94b4-d4b17d30b800.jpg?1649801687", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/7/7/77e2ed9e-ee1d-440a-94b4-d4b17d30b800.jpg?1649801687"}, "mana_cost": "{R}{G}{W}", "cmc": 3.0, "type_line": "Sorcery", "oracle_text": "Incandescent Aria deals 3 damage to each nontoken creature.", "colors": ["G", "R", "W"], "color_identity": ["G", "R", "W"], "keywords": [], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo", "arena"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "df837242-8c15-42e4-b049-c933a02dc501", "set": "snc", "set_name": "Streets of New Capenna", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/df837242-8c15-42e4-b049-c933a02dc501", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Asnc&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/snc?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/77e2ed9e-ee1d-440a-94b4-d4b17d30b800/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ad031b482-b33d-4eb4-a5bc-ea96e66a1d99&unique=prints", "collector_number": "192", "digital": false, "rarity": "rare", "watermark": "cabaretti", "flavor_text": "As the assassins converged on Kitt Kanto, she struck a high note and held it, unbroken, for nearly a minute. When the room fell silent, she was surrounded only by rose petals falling gently to the floor.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Randy Gallegos", "artist_ids": ["a5048cc7-438a-4378-98e4-da99b78e1db0"], "illustration_id": "6a91ea83-e8ea-408d-a5c3-6e6508d75f34", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 11399, "penny_rank": 6785, "preview": {"source": "ChannelFireball", "source_uri": "https://strategy.channelfireball.com/all-strategy/home/cfbs-exclusive-new-capenna-preview-card-incandescent-aria/", "previewed_at": "2022-04-12"}, "prices": {"usd": "0.08", "usd_foil": "0.13", "usd_etched": null, "eur": "0.13", "eur_foil": "0.24", "tix": "0.01"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=555393", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Incandescent+Aria&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Incandescent+Aria&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Incandescent+Aria"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/268741?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Incandescent+Aria&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/98603?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "63167d77-a8d5-468f-9132-a5000c57901a", "oracle_id": "d031b482-b33d-4eb4-a5bc-ea96e66a1d99", "multiverse_ids": [558709], "arena_id": 80489, "tcgplayer_id": 268742, "cardmarket_id": 651871, "name": "Incandescent Aria", "lang": "en", "released_at": "2022-04-29", "uri": "https://api.scryfall.com/cards/63167d77-a8d5-468f-9132-a5000c57901a", "scryfall_uri": "https://scryfall.com/card/snc/311/incandescent-aria?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/6/3/63167d77-a8d5-468f-9132-a5000c57901a.jpg?1649801714", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/3/63167d77-a8d5-468f-9132-a5000c57901a.jpg?1649801714", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/6/3/63167d77-a8d5-468f-9132-a5000c57901a.jpg?1649801714", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/6/3/63167d77-a8d5-468f-9132-a5000c57901a.png?1649801714", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/3/63167d77-a8d5-468f-9132-a5000c57901a.jpg?1649801714", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/6/3/63167d77-a8d5-468f-9132-a5000c57901a.jpg?1649801714"}, "mana_cost": "{R}{G}{W}", "cmc": 3.0, "type_line": "Sorcery", "oracle_text": "Incandescent Aria deals 3 damage to each nontoken creature.", "colors": ["G", "R", "W"], "color_identity": ["G", "R", "W"], "keywords": [], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo", "arena"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "df837242-8c15-42e4-b049-c933a02dc501", "set": "snc", "set_name": "Streets of New Capenna", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/df837242-8c15-42e4-b049-c933a02dc501", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Asnc&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/snc?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/63167d77-a8d5-468f-9132-a5000c57901a/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ad031b482-b33d-4eb4-a5bc-ea96e66a1d99&unique=prints", "collector_number": "311", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Yoshi Yoshitani", "artist_ids": ["3a96e529-d79b-415c-acdc-c6a6a62fb3ec"], "illustration_id": "2262cbfe-7177-4c84-9d3b-251f1d17b0d8", "border_color": "black", "frame": "2015", "frame_effects": ["showcase"], "security_stamp": "oval", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "promo_types": ["boosterfun"], "edhrec_rank": 11399, "penny_rank": 6785, "preview": {"source": "ChannelFireball", "source_uri": "https://strategy.channelfireball.com/all-strategy/home/cfbs-exclusive-new-capenna-preview-card-incandescent-aria/", "previewed_at": "2022-04-12"}, "prices": {"usd": "0.11", "usd_foil": "0.20", "usd_etched": null, "eur": "0.12", "eur_foil": "0.75", "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=558709", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Incandescent+Aria&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Incandescent+Aria&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Incandescent+Aria"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/268742?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Incandescent+Aria&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Incandescent+Aria&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "512367a2-f8f6-4c28-9eb3-8e04d2694e4b", "oracle_id": "d45a4924-daa0-4ac3-afd7-b66f636ce870", "multiverse_ids": [141830], "mtgo_id": 28509, "mtgo_foil_id": 28510, "tcgplayer_id": 15536, "cardmarket_id": 17920, "name": "Incendiary Command", "lang": "en", "released_at": "2007-10-12", "uri": "https://api.scryfall.com/cards/512367a2-f8f6-4c28-9eb3-8e04d2694e4b", "scryfall_uri": "https://scryfall.com/card/lrw/179/incendiary-command?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/5/1/512367a2-f8f6-4c28-9eb3-8e04d2694e4b.jpg?1562348065", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/1/512367a2-f8f6-4c28-9eb3-8e04d2694e4b.jpg?1562348065", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/5/1/512367a2-f8f6-4c28-9eb3-8e04d2694e4b.jpg?1562348065", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/5/1/512367a2-f8f6-4c28-9eb3-8e04d2694e4b.png?1562348065", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/1/512367a2-f8f6-4c28-9eb3-8e04d2694e4b.jpg?1562348065", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/5/1/512367a2-f8f6-4c28-9eb3-8e04d2694e4b.jpg?1562348065"}, "mana_cost": "{3}{R}{R}", "cmc": 5.0, "type_line": "Sorcery", "oracle_text": "Choose two \u2014\n\u2022 Incendiary Command deals 4 damage to target player or planeswalker.\n\u2022 Incendiary Command deals 2 damage to each creature.\n\u2022 Destroy target nonbasic land.\n\u2022 Each player discards all the cards in their hand, then draws that many cards.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "30ec97cb-dca9-4bf4-a98b-310f9d8ceaff", "set": "lrw", "set_name": "Lorwyn", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/30ec97cb-dca9-4bf4-a98b-310f9d8ceaff", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Alrw&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/lrw?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/512367a2-f8f6-4c28-9eb3-8e04d2694e4b/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ad45a4924-daa0-4ac3-afd7-b66f636ce870&unique=prints", "collector_number": "179", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Wayne England", "artist_ids": ["62dc90c0-4bc2-4d42-ad76-59cad9243566"], "illustration_id": "ffe30ed6-5341-4446-9f16-acef7e52e97e", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 3725, "penny_rank": 4921, "prices": {"usd": "2.41", "usd_foil": "10.97", "usd_etched": null, "eur": "0.30", "eur_foil": "0.95", "tix": "0.01"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=141830", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Incendiary+Command&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Incendiary+Command&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Incendiary+Command"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/15536?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Incendiary+Command&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/28509?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "0ee44ca0-1989-42fa-8024-b6b3e5c3883c", "oracle_id": "28da6443-4acc-4f1c-a54f-9153286f18c4", "multiverse_ids": [417692], "mtgo_id": 61979, "mtgo_foil_id": 61980, "tcgplayer_id": 122742, "cardmarket_id": 292596, "name": "Incendiary Sabotage", "lang": "en", "released_at": "2016-09-30", "uri": "https://api.scryfall.com/cards/0ee44ca0-1989-42fa-8024-b6b3e5c3883c", "scryfall_uri": "https://scryfall.com/card/kld/119/incendiary-sabotage?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/0/e/0ee44ca0-1989-42fa-8024-b6b3e5c3883c.jpg?1576382098", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/e/0ee44ca0-1989-42fa-8024-b6b3e5c3883c.jpg?1576382098", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/0/e/0ee44ca0-1989-42fa-8024-b6b3e5c3883c.jpg?1576382098", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/0/e/0ee44ca0-1989-42fa-8024-b6b3e5c3883c.png?1576382098", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/e/0ee44ca0-1989-42fa-8024-b6b3e5c3883c.jpg?1576382098", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/0/e/0ee44ca0-1989-42fa-8024-b6b3e5c3883c.jpg?1576382098"}, "mana_cost": "{2}{R}{R}", "cmc": 4.0, "type_line": "Instant", "oracle_text": "As an additional cost to cast this spell, sacrifice an artifact.\nIncendiary Sabotage deals 3 damage to each creature.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "d667e468-be8f-411f-a030-473d148deb74", "set": "kld", "set_name": "Kaladesh", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/d667e468-be8f-411f-a030-473d148deb74", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Akld&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/kld?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/0ee44ca0-1989-42fa-8024-b6b3e5c3883c/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A28da6443-4acc-4f1c-a54f-9153286f18c4&unique=prints", "collector_number": "119", "digital": false, "rarity": "uncommon", "flavor_text": "\"All of those Consulate safety measures undone with one simple tweak.\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Ben Maier", "artist_ids": ["7bc582c5-4733-4022-8cef-844b800be9f7"], "illustration_id": "918f11e3-a317-4c2e-accc-993c9d8b316f", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 16968, "penny_rank": 9622, "prices": {"usd": "0.02", "usd_foil": "0.10", "usd_etched": null, "eur": "0.02", "eur_foil": "0.14", "tix": "0.04"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=417692", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Incendiary+Sabotage&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Incendiary+Sabotage&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Incendiary+Sabotage"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/122742?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Incendiary+Sabotage&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/61979?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "628c4a6f-6970-407d-a774-e67bfcdf7ee2", "oracle_id": "26bbc473-cf99-4a82-b432-604757a832c4", "multiverse_ids": [389555], "mtgo_id": 55105, "mtgo_foil_id": 55106, "tcgplayer_id": 94342, "cardmarket_id": 270639, "name": "Incite Rebellion", "lang": "en", "released_at": "2014-11-07", "uri": "https://api.scryfall.com/cards/628c4a6f-6970-407d-a774-e67bfcdf7ee2", "scryfall_uri": "https://scryfall.com/card/c14/37/incite-rebellion?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/6/2/628c4a6f-6970-407d-a774-e67bfcdf7ee2.jpg?1561944371", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/2/628c4a6f-6970-407d-a774-e67bfcdf7ee2.jpg?1561944371", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/6/2/628c4a6f-6970-407d-a774-e67bfcdf7ee2.jpg?1561944371", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/6/2/628c4a6f-6970-407d-a774-e67bfcdf7ee2.png?1561944371", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/2/628c4a6f-6970-407d-a774-e67bfcdf7ee2.jpg?1561944371", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/6/2/628c4a6f-6970-407d-a774-e67bfcdf7ee2.jpg?1561944371"}, "mana_cost": "{4}{R}{R}", "cmc": 6.0, "type_line": "Sorcery", "oracle_text": "For each player, Incite Rebellion deals damage to that player and each creature that player controls equal to the number of creatures they control.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "0980a6e2-eb78-4ad2-8396-cef08fce365e", "set": "c14", "set_name": "Commander 2014", "set_type": "commander", "set_uri": "https://api.scryfall.com/sets/0980a6e2-eb78-4ad2-8396-cef08fce365e", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ac14&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/c14?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/628c4a6f-6970-407d-a774-e67bfcdf7ee2/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A26bbc473-cf99-4a82-b432-604757a832c4&unique=prints", "collector_number": "37", "digital": false, "rarity": "rare", "flavor_text": "Nothing breaks the monotony like a good old-fashioned riot.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Alex Horley-Orlandelli", "artist_ids": ["1631a2ad-bf03-4ab9-b86c-60da982d58a1"], "illustration_id": "22ad5302-a3e5-47dd-ae12-fcf06cbeaf55", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "edhrec_rank": 9324, "prices": {"usd": "0.25", "usd_foil": null, "usd_etched": null, "eur": "0.40", "eur_foil": null, "tix": "0.39"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=389555", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Incite+Rebellion&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Incite+Rebellion&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Incite+Rebellion"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/94342?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Incite+Rebellion&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/55105?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "e411b7b5-ab91-410a-af6d-b3a21a8e3b70", "oracle_id": "69e2df4e-c7f3-4c3a-be5b-1c4afb29cead", "multiverse_ids": [15815], "mtgo_id": 15614, "mtgo_foil_id": 15615, "tcgplayer_id": 2954, "cardmarket_id": 2960, "name": "Inferno", "lang": "en", "released_at": "2001-04-11", "uri": "https://api.scryfall.com/cards/e411b7b5-ab91-410a-af6d-b3a21a8e3b70", "scryfall_uri": "https://scryfall.com/card/7ed/198/inferno?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/e/4/e411b7b5-ab91-410a-af6d-b3a21a8e3b70.jpg?1562249896", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/4/e411b7b5-ab91-410a-af6d-b3a21a8e3b70.jpg?1562249896", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/e/4/e411b7b5-ab91-410a-af6d-b3a21a8e3b70.jpg?1562249896", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/e/4/e411b7b5-ab91-410a-af6d-b3a21a8e3b70.png?1562249896", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/4/e411b7b5-ab91-410a-af6d-b3a21a8e3b70.jpg?1562249896", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/e/4/e411b7b5-ab91-410a-af6d-b3a21a8e3b70.jpg?1562249896"}, "mana_cost": "{5}{R}{R}", "cmc": 7.0, "type_line": "Instant", "oracle_text": "Inferno deals 6 damage to each creature and each player.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "230f38aa-9511-4db8-a3aa-aeddbc3f7bb9", "set": "7ed", "set_name": "Seventh Edition", "set_type": "core", "set_uri": "https://api.scryfall.com/sets/230f38aa-9511-4db8-a3aa-aeddbc3f7bb9", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3A7ed&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/7ed?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/e411b7b5-ab91-410a-af6d-b3a21a8e3b70/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A69e2df4e-c7f3-4c3a-be5b-1c4afb29cead&unique=prints", "collector_number": "198", "digital": false, "rarity": "rare", "flavor_text": "\"Some have said there is no subtlety to destruction. You know what? They're dead.\"\n\u2014Wandering mage", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Don Hazeltine", "artist_ids": ["b4117364-73af-47e5-8cf0-901eeea09e01"], "illustration_id": "a102dcb2-34d7-40d9-a303-e93ad3155171", "border_color": "white", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 10782, "penny_rank": 10258, "prices": {"usd": "0.32", "usd_foil": null, "usd_etched": null, "eur": "0.30", "eur_foil": "59.57", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=15815", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Inferno&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Inferno&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Inferno"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/2954?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Inferno&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/15614?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "68d04a75-647f-400f-b0dc-c4544f7db2d4", "oracle_id": "69e2df4e-c7f3-4c3a-be5b-1c4afb29cead", "multiverse_ids": [4064], "tcgplayer_id": 2212, "cardmarket_id": 9615, "name": "Inferno", "lang": "en", "released_at": "1997-03-24", "uri": "https://api.scryfall.com/cards/68d04a75-647f-400f-b0dc-c4544f7db2d4", "scryfall_uri": "https://scryfall.com/card/5ed/243/inferno?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/6/8/68d04a75-647f-400f-b0dc-c4544f7db2d4.jpg?1562591355", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/8/68d04a75-647f-400f-b0dc-c4544f7db2d4.jpg?1562591355", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/6/8/68d04a75-647f-400f-b0dc-c4544f7db2d4.jpg?1562591355", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/6/8/68d04a75-647f-400f-b0dc-c4544f7db2d4.png?1562591355", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/8/68d04a75-647f-400f-b0dc-c4544f7db2d4.jpg?1562591355", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/6/8/68d04a75-647f-400f-b0dc-c4544f7db2d4.jpg?1562591355"}, "mana_cost": "{5}{R}{R}", "cmc": 7.0, "type_line": "Instant", "oracle_text": "Inferno deals 6 damage to each creature and each player.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "5afd2f4b-8309-4f45-a2b2-3785018474cb", "set": "5ed", "set_name": "Fifth Edition", "set_type": "core", "set_uri": "https://api.scryfall.com/sets/5afd2f4b-8309-4f45-a2b2-3785018474cb", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3A5ed&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/5ed?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/68d04a75-647f-400f-b0dc-c4544f7db2d4/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A69e2df4e-c7f3-4c3a-be5b-1c4afb29cead&unique=prints", "collector_number": "243", "digital": false, "rarity": "rare", "flavor_text": "\"Some have said there is no subtlety to destruction. You know what? They're dead.\"\n\u2014Jaya Ballard, task mage", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Mike Kerr", "artist_ids": ["5a31751b-ee0e-42be-922b-c264ec7a8cfe"], "illustration_id": "8be1cb5e-1ac4-49a2-84cb-fe2bad250369", "border_color": "white", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 10782, "penny_rank": 10258, "prices": {"usd": "0.33", "usd_foil": null, "usd_etched": null, "eur": "0.45", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=4064", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Inferno&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Inferno&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Inferno"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/2212?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Inferno&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Inferno&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "a6b61512-5b24-424c-966f-36b595781e14", "oracle_id": "69e2df4e-c7f3-4c3a-be5b-1c4afb29cead", "multiverse_ids": [1797], "tcgplayer_id": 3533, "cardmarket_id": 7351, "name": "Inferno", "lang": "en", "released_at": "1994-08-01", "uri": "https://api.scryfall.com/cards/a6b61512-5b24-424c-966f-36b595781e14", "scryfall_uri": "https://scryfall.com/card/drk/71/inferno?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/a/6/a6b61512-5b24-424c-966f-36b595781e14.jpg?1562934483", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/6/a6b61512-5b24-424c-966f-36b595781e14.jpg?1562934483", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/a/6/a6b61512-5b24-424c-966f-36b595781e14.jpg?1562934483", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/a/6/a6b61512-5b24-424c-966f-36b595781e14.png?1562934483", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/6/a6b61512-5b24-424c-966f-36b595781e14.jpg?1562934483", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/a/6/a6b61512-5b24-424c-966f-36b595781e14.jpg?1562934483"}, "mana_cost": "{5}{R}{R}", "cmc": 7.0, "type_line": "Instant", "oracle_text": "Inferno deals 6 damage to each creature and each player.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "legal", "premodern": "legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "a21c6836-c435-459a-81e3-22d2da174549", "set": "drk", "set_name": "The Dark", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/a21c6836-c435-459a-81e3-22d2da174549", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Adrk&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/drk?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/a6b61512-5b24-424c-966f-36b595781e14/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A69e2df4e-c7f3-4c3a-be5b-1c4afb29cead&unique=prints", "collector_number": "71", "digital": false, "rarity": "rare", "flavor_text": "\"Any scrap of compassion that still existed in my soul was permanently snuffed out when they cast me out into the flames.\" \u2014Mairsil, called the Pretender", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Randy Asplund-Faith", "artist_ids": ["d2da8270-bbdb-4c49-b84d-bf5a380e8a78"], "illustration_id": "a197d923-8ffd-4063-a70c-48f939f379ff", "border_color": "black", "frame": "1993", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 10782, "penny_rank": 10258, "prices": {"usd": "10.01", "usd_foil": null, "usd_etched": null, "eur": "12.89", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=1797", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Inferno&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Inferno&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Inferno"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/3533?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Inferno&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Inferno&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "3ac1649a-629b-4598-be09-74a57905753f", "oracle_id": "69e2df4e-c7f3-4c3a-be5b-1c4afb29cead", "multiverse_ids": [], "mtgo_id": 62439, "name": "Inferno", "lang": "en", "released_at": "2017-05-31", "uri": "https://api.scryfall.com/cards/3ac1649a-629b-4598-be09-74a57905753f", "scryfall_uri": "https://scryfall.com/card/prm/62439/inferno?utm_source=api", "layout": "normal", "highres_image": false, "image_status": "lowres", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/3/a/3ac1649a-629b-4598-be09-74a57905753f.jpg?1562544107", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/a/3ac1649a-629b-4598-be09-74a57905753f.jpg?1562544107", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/3/a/3ac1649a-629b-4598-be09-74a57905753f.jpg?1562544107", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/3/a/3ac1649a-629b-4598-be09-74a57905753f.png?1562544107", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/a/3ac1649a-629b-4598-be09-74a57905753f.jpg?1562544107", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/3/a/3ac1649a-629b-4598-be09-74a57905753f.jpg?1562544107"}, "mana_cost": "{5}{R}{R}", "cmc": 7.0, "type_line": "Instant", "oracle_text": "Inferno deals 6 damage to each creature and each player.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["mtgo"], "reserved": false, "foil": true, "nonfoil": false, "finishes": ["foil"], "oversized": false, "promo": true, "reprint": true, "variation": false, "set_id": "638940fb-6be9-4be3-b83f-68d3902fbbe5", "set": "prm", "set_name": "Magic Online Promos", "set_type": "promo", "set_uri": "https://api.scryfall.com/sets/638940fb-6be9-4be3-b83f-68d3902fbbe5", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aprm&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/prm?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/3ac1649a-629b-4598-be09-74a57905753f/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A69e2df4e-c7f3-4c3a-be5b-1c4afb29cead&unique=prints", "collector_number": "62439", "digital": true, "rarity": "rare", "flavor_text": "\"Some have said there is no subtlety to destruction. You know what? They're dead.\"\n\u2014Jaya Ballard, task mage", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Vance Kovacs", "artist_ids": ["b5516011-4722-4fc8-8542-102cecc52b71"], "illustration_id": "fde7a034-5cdd-4dfa-8ffa-1923f49b8b75", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "edhrec_rank": 10782, "penny_rank": 10258, "prices": {"usd": null, "usd_foil": null, "usd_etched": null, "eur": null, "eur_foil": null, "tix": null}, "related_uris": {"tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Inferno&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Inferno&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Inferno"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/search/magic/product?productLineName=magic&q=Inferno&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall&view=grid", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Inferno&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/62439?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "fb9dd080-5e13-4334-8614-8eec41ae89c2", "oracle_id": "d6850616-7db5-4141-9ab0-ae8d1f08114f", "multiverse_ids": [179424], "mtgo_id": 30965, "mtgo_foil_id": 30966, "tcgplayer_id": 27699, "cardmarket_id": 19846, "name": "Infest", "lang": "en", "released_at": "2008-10-03", "uri": "https://api.scryfall.com/cards/fb9dd080-5e13-4334-8614-8eec41ae89c2", "scryfall_uri": "https://scryfall.com/card/ala/80/infest?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/f/b/fb9dd080-5e13-4334-8614-8eec41ae89c2.jpg?1562711058", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/b/fb9dd080-5e13-4334-8614-8eec41ae89c2.jpg?1562711058", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/f/b/fb9dd080-5e13-4334-8614-8eec41ae89c2.jpg?1562711058", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/f/b/fb9dd080-5e13-4334-8614-8eec41ae89c2.png?1562711058", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/b/fb9dd080-5e13-4334-8614-8eec41ae89c2.jpg?1562711058", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/f/b/fb9dd080-5e13-4334-8614-8eec41ae89c2.jpg?1562711058"}, "mana_cost": "{1}{B}{B}", "cmc": 3.0, "type_line": "Sorcery", "oracle_text": "All creatures get -2/-2 until end of turn.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "d667aaec-09b7-4406-b6fa-60795132dc11", "set": "ala", "set_name": "Shards of Alara", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/d667aaec-09b7-4406-b6fa-60795132dc11", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aala&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ala?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/fb9dd080-5e13-4334-8614-8eec41ae89c2/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ad6850616-7db5-4141-9ab0-ae8d1f08114f&unique=prints", "collector_number": "80", "digital": false, "rarity": "uncommon", "flavor_text": "\"This is why we don't go out in banewasp weather.\"\n\u2014Rannon, Vithian holdout", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Karl Kopinski", "artist_ids": ["0fad2c48-a56e-4a0b-b512-224f6f238f20"], "illustration_id": "13a45360-27f5-4761-8760-f1009097076f", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 14448, "penny_rank": 2913, "prices": {"usd": "0.07", "usd_foil": "0.21", "usd_etched": null, "eur": "0.02", "eur_foil": "0.15", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=179424", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Infest&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Infest&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Infest"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/27699?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Infest&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/30965?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "b7890ba2-aa42-4c8d-bbc1-94fb1d4150fc", "oracle_id": "d6850616-7db5-4141-9ab0-ae8d1f08114f", "multiverse_ids": [23280], "mtgo_id": 17955, "mtgo_foil_id": 17956, "tcgplayer_id": 10559, "cardmarket_id": 1788, "name": "Infest", "lang": "en", "released_at": "2002-10-07", "uri": "https://api.scryfall.com/cards/b7890ba2-aa42-4c8d-bbc1-94fb1d4150fc", "scryfall_uri": "https://scryfall.com/card/ons/157/infest?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/b/7/b7890ba2-aa42-4c8d-bbc1-94fb1d4150fc.jpg?1562938305", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/7/b7890ba2-aa42-4c8d-bbc1-94fb1d4150fc.jpg?1562938305", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/b/7/b7890ba2-aa42-4c8d-bbc1-94fb1d4150fc.jpg?1562938305", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/b/7/b7890ba2-aa42-4c8d-bbc1-94fb1d4150fc.png?1562938305", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/7/b7890ba2-aa42-4c8d-bbc1-94fb1d4150fc.jpg?1562938305", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/b/7/b7890ba2-aa42-4c8d-bbc1-94fb1d4150fc.jpg?1562938305"}, "mana_cost": "{1}{B}{B}", "cmc": 3.0, "type_line": "Sorcery", "oracle_text": "All creatures get -2/-2 until end of turn.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "914a6c6d-cb3b-45e8-a2db-9978a2339faf", "set": "ons", "set_name": "Onslaught", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/914a6c6d-cb3b-45e8-a2db-9978a2339faf", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aons&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ons?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/b7890ba2-aa42-4c8d-bbc1-94fb1d4150fc/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ad6850616-7db5-4141-9ab0-ae8d1f08114f&unique=prints", "collector_number": "157", "digital": false, "rarity": "uncommon", "flavor_text": "\"It is from Phage that this evil springs, and to her it shall return.\"\n\u2014Akroma, angelic avenger", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Ben Thompson", "artist_ids": ["f3116c88-57f4-4fd1-95f3-cfd163977661"], "illustration_id": "1bb4ef8a-76d7-44ae-9001-32b4a8ed39a8", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 14448, "penny_rank": 2913, "prices": {"usd": "0.14", "usd_foil": "0.93", "usd_etched": null, "eur": "0.09", "eur_foil": "0.79", "tix": "0.06"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=23280", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Infest&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Infest&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Infest"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/10559?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Infest&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/17955?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "9350a640-3f22-478f-b463-6b50cfe766e1", "oracle_id": "d6850616-7db5-4141-9ab0-ae8d1f08114f", "multiverse_ids": [], "tcgplayer_id": 38316, "cardmarket_id": 22116, "name": "Infest", "lang": "en", "released_at": "2010-01-01", "uri": "https://api.scryfall.com/cards/9350a640-3f22-478f-b463-6b50cfe766e1", "scryfall_uri": "https://scryfall.com/card/p10/4/infest?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/9/3/9350a640-3f22-478f-b463-6b50cfe766e1.jpg?1561757603", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/3/9350a640-3f22-478f-b463-6b50cfe766e1.jpg?1561757603", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/9/3/9350a640-3f22-478f-b463-6b50cfe766e1.jpg?1561757603", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/9/3/9350a640-3f22-478f-b463-6b50cfe766e1.png?1561757603", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/3/9350a640-3f22-478f-b463-6b50cfe766e1.jpg?1561757603", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/9/3/9350a640-3f22-478f-b463-6b50cfe766e1.jpg?1561757603"}, "mana_cost": "{1}{B}{B}", "cmc": 3.0, "type_line": "Sorcery", "oracle_text": "All creatures get -2/-2 until end of turn.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": true, "reprint": true, "variation": false, "set_id": "d871e33b-7086-4549-89d6-fedd4422161f", "set": "p10", "set_name": "Magic Player Rewards 2010", "set_type": "promo", "set_uri": "https://api.scryfall.com/sets/d871e33b-7086-4549-89d6-fedd4422161f", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ap10&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/p10?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/9350a640-3f22-478f-b463-6b50cfe766e1/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ad6850616-7db5-4141-9ab0-ae8d1f08114f&unique=prints", "collector_number": "4", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Pete Venters", "artist_ids": ["d54c4a1a-c0c5-4834-84db-125d341f3ad8"], "illustration_id": "ad73a23a-2033-49c9-9fb3-ac07c075a8f5", "border_color": "black", "frame": "2003", "full_art": true, "textless": true, "booster": false, "story_spotlight": false, "promo_types": ["playerrewards"], "edhrec_rank": 14448, "penny_rank": 2913, "prices": {"usd": "0.44", "usd_foil": null, "usd_etched": null, "eur": "0.29", "eur_foil": null, "tix": null}, "related_uris": {"tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Infest&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Infest&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Infest"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/38316?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Infest&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Infest&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "e1efad9a-2fcf-4045-8105-bf9f5e79d12c", "oracle_id": "8426bdb6-b002-4d27-9eaf-d7f8353aa7e8", "multiverse_ids": [48120], "mtgo_id": 20545, "mtgo_foil_id": 20546, "tcgplayer_id": 11711, "cardmarket_id": 427, "name": "Inflame", "lang": "en", "released_at": "2004-02-06", "uri": "https://api.scryfall.com/cards/e1efad9a-2fcf-4045-8105-bf9f5e79d12c", "scryfall_uri": "https://scryfall.com/card/dst/64/inflame?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/e/1/e1efad9a-2fcf-4045-8105-bf9f5e79d12c.jpg?1562640129", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/1/e1efad9a-2fcf-4045-8105-bf9f5e79d12c.jpg?1562640129", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/e/1/e1efad9a-2fcf-4045-8105-bf9f5e79d12c.jpg?1562640129", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/e/1/e1efad9a-2fcf-4045-8105-bf9f5e79d12c.png?1562640129", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/1/e1efad9a-2fcf-4045-8105-bf9f5e79d12c.jpg?1562640129", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/e/1/e1efad9a-2fcf-4045-8105-bf9f5e79d12c.jpg?1562640129"}, "mana_cost": "{R}", "cmc": 1.0, "type_line": "Instant", "oracle_text": "Inflame deals 2 damage to each creature dealt damage this turn.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "e29cb2dd-1345-4032-abfe-e52e8c8ce074", "set": "dst", "set_name": "Darksteel", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/e29cb2dd-1345-4032-abfe-e52e8c8ce074", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Adst&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/dst?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/e1efad9a-2fcf-4045-8105-bf9f5e79d12c/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A8426bdb6-b002-4d27-9eaf-d7f8353aa7e8&unique=prints", "collector_number": "64", "digital": false, "rarity": "common", "flavor_text": "A Vulshok weapon strikes with the fire of the forge that made it.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Hugh Jamieson", "artist_ids": ["ae735af7-4895-45e0-aeb5-58c82343942e"], "illustration_id": "eebbedee-9055-4379-a870-3b0896e2653c", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 17838, "prices": {"usd": "0.18", "usd_foil": "0.10", "usd_etched": null, "eur": "0.02", "eur_foil": "0.13", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=48120", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Inflame&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Inflame&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Inflame"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/11711?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Inflame&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/20545?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "cd7bc4c0-9bfd-444b-b22c-f1b7e1426807", "oracle_id": "8426bdb6-b002-4d27-9eaf-d7f8353aa7e8", "multiverse_ids": [24640], "mtgo_id": 14119, "mtgo_foil_id": 14120, "tcgplayer_id": 7317, "cardmarket_id": 3985, "name": "Inflame", "lang": "en", "released_at": "2000-06-05", "uri": "https://api.scryfall.com/cards/cd7bc4c0-9bfd-444b-b22c-f1b7e1426807", "scryfall_uri": "https://scryfall.com/card/pcy/91/inflame?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/c/d/cd7bc4c0-9bfd-444b-b22c-f1b7e1426807.jpg?1562933469", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/d/cd7bc4c0-9bfd-444b-b22c-f1b7e1426807.jpg?1562933469", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/c/d/cd7bc4c0-9bfd-444b-b22c-f1b7e1426807.jpg?1562933469", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/c/d/cd7bc4c0-9bfd-444b-b22c-f1b7e1426807.png?1562933469", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/d/cd7bc4c0-9bfd-444b-b22c-f1b7e1426807.jpg?1562933469", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/c/d/cd7bc4c0-9bfd-444b-b22c-f1b7e1426807.jpg?1562933469"}, "mana_cost": "{R}", "cmc": 1.0, "type_line": "Instant", "oracle_text": "Inflame deals 2 damage to each creature dealt damage this turn.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "c233bd36-57c0-4aa2-ae6c-7aeabfb4e3ce", "set": "pcy", "set_name": "Prophecy", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/c233bd36-57c0-4aa2-ae6c-7aeabfb4e3ce", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Apcy&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/pcy?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/cd7bc4c0-9bfd-444b-b22c-f1b7e1426807/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A8426bdb6-b002-4d27-9eaf-d7f8353aa7e8&unique=prints", "collector_number": "91", "digital": false, "rarity": "common", "flavor_text": "Wound, maim, kill: it's all the same to a Keldon.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Eric Peterson", "artist_ids": ["0fc26d3b-4c0e-41d1-8eb3-286ab55a2328"], "illustration_id": "e8458c70-50e7-42bd-be43-2f6cf06089f2", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 17838, "prices": {"usd": "0.07", "usd_foil": "3.97", "usd_etched": null, "eur": "0.02", "eur_foil": "0.09", "tix": "0.09"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=24640", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Inflame&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Inflame&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Inflame"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/7317?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Inflame&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/14119?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "f6f2c2f6-d07f-42af-9944-70d3dac8348c", "oracle_id": "a6899b94-427d-4851-a474-4087e0a0918a", "multiverse_ids": [383275], "mtgo_id": 53704, "mtgo_foil_id": 53705, "tcgplayer_id": 90990, "cardmarket_id": 267561, "name": "In Garruk's Wake", "lang": "en", "released_at": "2014-07-18", "uri": "https://api.scryfall.com/cards/f6f2c2f6-d07f-42af-9944-70d3dac8348c", "scryfall_uri": "https://scryfall.com/card/m15/100/in-garruks-wake?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/f/6/f6f2c2f6-d07f-42af-9944-70d3dac8348c.jpg?1562797158", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/6/f6f2c2f6-d07f-42af-9944-70d3dac8348c.jpg?1562797158", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/f/6/f6f2c2f6-d07f-42af-9944-70d3dac8348c.jpg?1562797158", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/f/6/f6f2c2f6-d07f-42af-9944-70d3dac8348c.png?1562797158", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/6/f6f2c2f6-d07f-42af-9944-70d3dac8348c.jpg?1562797158", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/f/6/f6f2c2f6-d07f-42af-9944-70d3dac8348c.jpg?1562797158"}, "mana_cost": "{7}{B}{B}", "cmc": 9.0, "type_line": "Sorcery", "oracle_text": "Destroy all creatures you don't control and all planeswalkers you don't control.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "6ce49890-3b37-42a5-8932-dbeef1d7b62c", "set": "m15", "set_name": "Magic 2015", "set_type": "core", "set_uri": "https://api.scryfall.com/sets/6ce49890-3b37-42a5-8932-dbeef1d7b62c", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Am15&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/m15?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/f6f2c2f6-d07f-42af-9944-70d3dac8348c/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aa6899b94-427d-4851-a474-4087e0a0918a&unique=prints", "collector_number": "100", "digital": false, "rarity": "rare", "flavor_text": "Beyond pain, beyond obsession and wild despair, there lies a place of twisted power only the most tormented souls can reach.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Chase Stone", "artist_ids": ["2d753f61-5f5b-468e-97ea-8e0fdd347340"], "illustration_id": "7d93b581-1f2f-4574-a9d0-983d24c43155", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 567, "penny_rank": 12595, "prices": {"usd": "0.84", "usd_foil": "3.09", "usd_etched": null, "eur": "0.54", "eur_foil": "3.99", "tix": "0.01"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=383275", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=In+Garruk%27s+Wake&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=In+Garruk%27s+Wake&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=In+Garruk%27s+Wake"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/90990?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=In+Garruk%27s+Wake&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/53704?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "987ace55-8f39-4d5e-8604-9e99d065b4d5", "oracle_id": "a6899b94-427d-4851-a474-4087e0a0918a", "multiverse_ids": [], "tcgplayer_id": 90909, "cardmarket_id": 268047, "name": "In Garruk's Wake", "lang": "en", "released_at": "2014-07-17", "uri": "https://api.scryfall.com/cards/987ace55-8f39-4d5e-8604-9e99d065b4d5", "scryfall_uri": "https://scryfall.com/card/pm15/100/in-garruks-wake?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/9/8/987ace55-8f39-4d5e-8604-9e99d065b4d5.jpg?1561757636", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/8/987ace55-8f39-4d5e-8604-9e99d065b4d5.jpg?1561757636", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/9/8/987ace55-8f39-4d5e-8604-9e99d065b4d5.jpg?1561757636", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/9/8/987ace55-8f39-4d5e-8604-9e99d065b4d5.png?1561757636", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/8/987ace55-8f39-4d5e-8604-9e99d065b4d5.jpg?1561757636", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/9/8/987ace55-8f39-4d5e-8604-9e99d065b4d5.jpg?1561757636"}, "mana_cost": "{7}{B}{B}", "cmc": 9.0, "type_line": "Sorcery", "oracle_text": "Destroy all creatures you don't control and all planeswalkers you don't control.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": true, "nonfoil": false, "finishes": ["foil"], "oversized": false, "promo": true, "reprint": true, "variation": false, "set_id": "b263197c-a306-4795-937f-32fabc532d9e", "set": "pm15", "set_name": "Magic 2015 Promos", "set_type": "promo", "set_uri": "https://api.scryfall.com/sets/b263197c-a306-4795-937f-32fabc532d9e", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Apm15&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/pm15?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/987ace55-8f39-4d5e-8604-9e99d065b4d5/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aa6899b94-427d-4851-a474-4087e0a0918a&unique=prints", "collector_number": "100", "digital": false, "rarity": "rare", "watermark": "set", "flavor_text": "Beyond pain, beyond obsession and wild despair, there lies a place of twisted power only the most tormented souls can reach.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Brad Rigney", "artist_ids": ["f17194b9-10e9-44ea-9b65-6812ab398624"], "illustration_id": "7cfebe5a-4cce-42d3-9e15-33056166f641", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "promo_types": ["setpromo", "datestamped", "release"], "edhrec_rank": 567, "penny_rank": 12595, "prices": {"usd": null, "usd_foil": "1.21", "usd_etched": null, "eur": null, "eur_foil": "0.44", "tix": null}, "related_uris": {"tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=In+Garruk%27s+Wake&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=In+Garruk%27s+Wake&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=In+Garruk%27s+Wake"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/90909?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=In+Garruk%27s+Wake&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=In+Garruk%27s+Wake&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "d5047c92-2885-4a7b-b51f-f3e093dca5ad", "oracle_id": "0390a3dc-386c-402f-a89c-b94867bfb0a2", "multiverse_ids": [142010], "mtgo_id": 29934, "mtgo_foil_id": 29935, "tcgplayer_id": 27143, "cardmarket_id": 19487, "name": "Inundate", "lang": "en", "released_at": "2008-07-25", "uri": "https://api.scryfall.com/cards/d5047c92-2885-4a7b-b51f-f3e093dca5ad", "scryfall_uri": "https://scryfall.com/card/eve/25/inundate?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/d/5/d5047c92-2885-4a7b-b51f-f3e093dca5ad.jpg?1562940048", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/5/d5047c92-2885-4a7b-b51f-f3e093dca5ad.jpg?1562940048", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/d/5/d5047c92-2885-4a7b-b51f-f3e093dca5ad.jpg?1562940048", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/d/5/d5047c92-2885-4a7b-b51f-f3e093dca5ad.png?1562940048", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/5/d5047c92-2885-4a7b-b51f-f3e093dca5ad.jpg?1562940048", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/d/5/d5047c92-2885-4a7b-b51f-f3e093dca5ad.jpg?1562940048"}, "mana_cost": "{3}{U}{U}{U}", "cmc": 6.0, "type_line": "Sorcery", "oracle_text": "Return all nonblue creatures to their owners' hands.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "86b4dfef-f2d1-49d6-825d-7df6bda44357", "set": "eve", "set_name": "Eventide", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/86b4dfef-f2d1-49d6-825d-7df6bda44357", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aeve&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/eve?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/d5047c92-2885-4a7b-b51f-f3e093dca5ad/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A0390a3dc-386c-402f-a89c-b94867bfb0a2&unique=prints", "collector_number": "25", "digital": false, "rarity": "rare", "flavor_text": "\"For years, the landfolk have emptied their refuse into the waters. It's time to return the favor.\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Mark Zug", "artist_ids": ["48e2b98c-5467-4671-bd42-4c3746115117"], "illustration_id": "7c13d4d8-349b-43f4-aecb-3f917c7c039d", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 7156, "penny_rank": 10276, "prices": {"usd": "8.29", "usd_foil": "15.45", "usd_etched": null, "eur": "2.00", "eur_foil": "11.99", "tix": "0.01"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=142010", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Inundate&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Inundate&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Inundate"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/27143?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Inundate&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/29934?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "6d81e479-45b7-4237-a0eb-95245582e87d", "oracle_id": "7bdfe368-353c-4f8d-851f-05b7ea9f905d", "multiverse_ids": [4067], "tcgplayer_id": 2233, "cardmarket_id": 9618, "name": "Jokulhaups", "lang": "en", "released_at": "1997-03-24", "uri": "https://api.scryfall.com/cards/6d81e479-45b7-4237-a0eb-95245582e87d", "scryfall_uri": "https://scryfall.com/card/5ed/246/jokulhaups?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/6/d/6d81e479-45b7-4237-a0eb-95245582e87d.jpg?1562591373", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/d/6d81e479-45b7-4237-a0eb-95245582e87d.jpg?1562591373", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/6/d/6d81e479-45b7-4237-a0eb-95245582e87d.jpg?1562591373", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/6/d/6d81e479-45b7-4237-a0eb-95245582e87d.png?1562591373", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/d/6d81e479-45b7-4237-a0eb-95245582e87d.jpg?1562591373", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/6/d/6d81e479-45b7-4237-a0eb-95245582e87d.jpg?1562591373"}, "mana_cost": "{4}{R}{R}", "cmc": 6.0, "type_line": "Sorcery", "oracle_text": "Destroy all artifacts, creatures, and lands. They can't be regenerated.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "5afd2f4b-8309-4f45-a2b2-3785018474cb", "set": "5ed", "set_name": "Fifth Edition", "set_type": "core", "set_uri": "https://api.scryfall.com/sets/5afd2f4b-8309-4f45-a2b2-3785018474cb", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3A5ed&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/5ed?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/6d81e479-45b7-4237-a0eb-95245582e87d/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A7bdfe368-353c-4f8d-851f-05b7ea9f905d&unique=prints", "collector_number": "246", "digital": false, "rarity": "rare", "flavor_text": "\"The raging waters had swept away trees, bridges, and even houses. My healers had much work to do.\"\n\u2014Halvor Arenson, Kjeldoran priest", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Mike Kerr", "artist_ids": ["5a31751b-ee0e-42be-922b-c264ec7a8cfe"], "illustration_id": "2613e1f7-b1f9-4543-96c5-b5b713ef33b3", "border_color": "white", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 5243, "penny_rank": 398, "prices": {"usd": "4.33", "usd_foil": null, "usd_etched": null, "eur": "4.05", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=4067", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Jokulhaups&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Jokulhaups&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Jokulhaups"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/2233?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Jokulhaups&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Jokulhaups&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "3bf0d325-5928-4593-8faa-64ffa414cb48", "oracle_id": "7bdfe368-353c-4f8d-851f-05b7ea9f905d", "multiverse_ids": [2631], "tcgplayer_id": 4753, "cardmarket_id": 6407, "name": "Jokulhaups", "lang": "en", "released_at": "1995-06-03", "uri": "https://api.scryfall.com/cards/3bf0d325-5928-4593-8faa-64ffa414cb48", "scryfall_uri": "https://scryfall.com/card/ice/195/jokulhaups?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/3/b/3bf0d325-5928-4593-8faa-64ffa414cb48.jpg?1562906050", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/b/3bf0d325-5928-4593-8faa-64ffa414cb48.jpg?1562906050", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/3/b/3bf0d325-5928-4593-8faa-64ffa414cb48.jpg?1562906050", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/3/b/3bf0d325-5928-4593-8faa-64ffa414cb48.png?1562906050", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/b/3bf0d325-5928-4593-8faa-64ffa414cb48.jpg?1562906050", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/3/b/3bf0d325-5928-4593-8faa-64ffa414cb48.jpg?1562906050"}, "mana_cost": "{4}{R}{R}", "cmc": 6.0, "type_line": "Sorcery", "oracle_text": "Destroy all artifacts, creatures, and lands. They can't be regenerated.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "b0e08eea-5c01-4406-a6e2-dcd09c5e5b67", "set": "ice", "set_name": "Ice Age", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/b0e08eea-5c01-4406-a6e2-dcd09c5e5b67", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aice&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ice?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/3bf0d325-5928-4593-8faa-64ffa414cb48/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A7bdfe368-353c-4f8d-851f-05b7ea9f905d&unique=prints", "collector_number": "195", "digital": false, "rarity": "rare", "flavor_text": "\"I was shocked when I first saw the aftermath of the Yavimaya Valley disaster. The raging waters had swept away trees, bridges, and even houses. My healers had much work to do.\"\n\u2014Halvor Arenson, Kjeldoran Priest", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Richard Thomas", "artist_ids": ["596b3aac-b331-4e1e-ae41-9ec2d3b653e1"], "illustration_id": "9c87e48c-9cc3-453e-b53d-1d41473474a0", "border_color": "black", "frame": "1993", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 5243, "penny_rank": 398, "prices": {"usd": "6.58", "usd_foil": null, "usd_etched": null, "eur": "5.50", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=2631", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Jokulhaups&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Jokulhaups&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Jokulhaups"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/4753?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Jokulhaups&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Jokulhaups&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "7a0ddf00-926c-4283-a8b2-daa02fa99b8b", "oracle_id": "7bd2ac13-d598-4cf1-a483-2a6878aed93b", "multiverse_ids": [137900], "mtgo_id": 30863, "mtgo_foil_id": 30864, "tcgplayer_id": 27708, "cardmarket_id": 19723, "name": "Jund Charm", "lang": "en", "released_at": "2008-10-03", "uri": "https://api.scryfall.com/cards/7a0ddf00-926c-4283-a8b2-daa02fa99b8b", "scryfall_uri": "https://scryfall.com/card/ala/175/jund-charm?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/7/a/7a0ddf00-926c-4283-a8b2-daa02fa99b8b.jpg?1562705657", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/a/7a0ddf00-926c-4283-a8b2-daa02fa99b8b.jpg?1562705657", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/7/a/7a0ddf00-926c-4283-a8b2-daa02fa99b8b.jpg?1562705657", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/7/a/7a0ddf00-926c-4283-a8b2-daa02fa99b8b.png?1562705657", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/a/7a0ddf00-926c-4283-a8b2-daa02fa99b8b.jpg?1562705657", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/7/a/7a0ddf00-926c-4283-a8b2-daa02fa99b8b.jpg?1562705657"}, "mana_cost": "{B}{R}{G}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Choose one \u2014\n\u2022 Exile target player's graveyard.\n\u2022 Jund Charm deals 2 damage to each creature.\n\u2022 Put two +1/+1 counters on target creature.", "colors": ["B", "G", "R"], "color_identity": ["B", "G", "R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "d667aaec-09b7-4406-b6fa-60795132dc11", "set": "ala", "set_name": "Shards of Alara", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/d667aaec-09b7-4406-b6fa-60795132dc11", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aala&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ala?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/7a0ddf00-926c-4283-a8b2-daa02fa99b8b/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A7bd2ac13-d598-4cf1-a483-2a6878aed93b&unique=prints", "collector_number": "175", "digital": false, "rarity": "uncommon", "flavor_text": "Jund pulses with raw energy, waiting for shamans to shape it into useful form.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Brandon Kitkouski", "artist_ids": ["0330b5e8-2cf0-4ecb-8fd7-e20a18bdeb20"], "illustration_id": "e856a920-8ec5-444b-ac9c-7fc2d7de684b", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 7436, "penny_rank": 2939, "prices": {"usd": "0.23", "usd_foil": "1.43", "usd_etched": null, "eur": "0.26", "eur_foil": "0.50", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=137900", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Jund+Charm&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Jund+Charm&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Jund+Charm"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/27708?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Jund+Charm&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/30863?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "097910fb-7c48-4535-8ffc-b521d08294b0", "oracle_id": "7c69cb2b-14f1-4215-aba8-c107493c3036", "multiverse_ids": [3299], "mtgo_id": 7085, "mtgo_foil_id": 7086, "tcgplayer_id": 5120, "cardmarket_id": 8079, "name": "Kaervek's Hex", "lang": "en", "released_at": "1996-10-08", "uri": "https://api.scryfall.com/cards/097910fb-7c48-4535-8ffc-b521d08294b0", "scryfall_uri": "https://scryfall.com/card/mir/130/kaerveks-hex?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/0/9/097910fb-7c48-4535-8ffc-b521d08294b0.jpg?1562717830", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/9/097910fb-7c48-4535-8ffc-b521d08294b0.jpg?1562717830", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/0/9/097910fb-7c48-4535-8ffc-b521d08294b0.jpg?1562717830", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/0/9/097910fb-7c48-4535-8ffc-b521d08294b0.png?1562717830", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/9/097910fb-7c48-4535-8ffc-b521d08294b0.jpg?1562717830", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/0/9/097910fb-7c48-4535-8ffc-b521d08294b0.jpg?1562717830"}, "mana_cost": "{3}{B}", "cmc": 4.0, "type_line": "Sorcery", "oracle_text": "Kaervek's Hex deals 1 damage to each nonblack creature and an additional 1 damage to each green creature.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "5f06acf3-8123-4a78-b2e7-089b0b775a4a", "set": "mir", "set_name": "Mirage", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/5f06acf3-8123-4a78-b2e7-089b0b775a4a", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Amir&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/mir?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/097910fb-7c48-4535-8ffc-b521d08294b0/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A7c69cb2b-14f1-4215-aba8-c107493c3036&unique=prints", "collector_number": "130", "digital": false, "rarity": "uncommon", "flavor_text": "\"If the curse does not strike you dead, question your soul.\"\n\u2014Kaervek", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Ian Miller", "artist_ids": ["d2200e9f-c40d-45d4-8d87-3f1412c61770"], "illustration_id": "c6654464-701c-4708-b5b0-0028f3b6494c", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 22566, "prices": {"usd": "0.16", "usd_foil": null, "usd_etched": null, "eur": "0.25", "eur_foil": null, "tix": "0.09"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=3299", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Kaervek%27s+Hex&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Kaervek%27s+Hex&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Kaervek%27s+Hex"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/5120?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Kaervek%27s+Hex&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/7085?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "5ed140c1-752b-4539-88f2-1fa354049b17", "oracle_id": "bc8de6c7-c69d-4add-8f25-825d945874f9", "multiverse_ids": [457331], "mtgo_id": 71374, "arena_id": 69315, "tcgplayer_id": 183178, "cardmarket_id": 368252, "name": "Kaya's Wrath", "lang": "en", "released_at": "2019-01-25", "uri": "https://api.scryfall.com/cards/5ed140c1-752b-4539-88f2-1fa354049b17", "scryfall_uri": "https://scryfall.com/card/rna/187/kayas-wrath?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/5/e/5ed140c1-752b-4539-88f2-1fa354049b17.jpg?1584831638", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/e/5ed140c1-752b-4539-88f2-1fa354049b17.jpg?1584831638", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/5/e/5ed140c1-752b-4539-88f2-1fa354049b17.jpg?1584831638", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/5/e/5ed140c1-752b-4539-88f2-1fa354049b17.png?1584831638", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/e/5ed140c1-752b-4539-88f2-1fa354049b17.jpg?1584831638", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/5/e/5ed140c1-752b-4539-88f2-1fa354049b17.jpg?1584831638"}, "mana_cost": "{W}{W}{B}{B}", "cmc": 4.0, "type_line": "Sorcery", "oracle_text": "Destroy all creatures. You gain life equal to the number of creatures you controlled that were destroyed this way.", "colors": ["B", "W"], "color_identity": ["B", "W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "97a7fd84-8d89-45a3-b48b-c951f6a3f9f1", "set": "rna", "set_name": "Ravnica Allegiance", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/97a7fd84-8d89-45a3-b48b-c951f6a3f9f1", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Arna&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/rna?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/5ed140c1-752b-4539-88f2-1fa354049b17/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Abc8de6c7-c69d-4add-8f25-825d945874f9&unique=prints", "collector_number": "187", "digital": false, "rarity": "rare", "watermark": "planeswalker", "flavor_text": "Teysa convened the meeting of the Obzedat. Kaya ended it.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Victor Adame Minguez", "artist_ids": ["bd8f7368-5b10-4554-b6b8-d052c6aca89f"], "illustration_id": "30d998cb-1ecb-4f3b-85e9-dde0712a610d", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": true, "story_spotlight": true, "edhrec_rank": 1500, "penny_rank": 4316, "preview": {"source": "ChannelFireball", "source_uri": "https://twitter.com/ChannelFireball/status/1082305916354088960", "previewed_at": "2019-01-07"}, "prices": {"usd": "0.85", "usd_foil": "2.25", "usd_etched": null, "eur": "0.70", "eur_foil": "1.00", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=457331", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Kaya%27s+Wrath&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Kaya%27s+Wrath&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Kaya%27s+Wrath"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/183178?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Kaya%27s+Wrath&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/71374?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "33de2371-175e-4f8a-9636-35f996e3cf24", "oracle_id": "69d6b906-5461-4eba-8667-dbb8c0ce3fcb", "multiverse_ids": [240180], "mtgo_id": 44109, "mtgo_foil_id": 44110, "tcgplayer_id": 58192, "cardmarket_id": 254230, "name": "Killing Wave", "lang": "en", "released_at": "2012-05-04", "uri": "https://api.scryfall.com/cards/33de2371-175e-4f8a-9636-35f996e3cf24", "scryfall_uri": "https://scryfall.com/card/avr/111/killing-wave?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/3/3/33de2371-175e-4f8a-9636-35f996e3cf24.jpg?1592708920", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/3/33de2371-175e-4f8a-9636-35f996e3cf24.jpg?1592708920", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/3/3/33de2371-175e-4f8a-9636-35f996e3cf24.jpg?1592708920", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/3/3/33de2371-175e-4f8a-9636-35f996e3cf24.png?1592708920", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/3/33de2371-175e-4f8a-9636-35f996e3cf24.jpg?1592708920", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/3/3/33de2371-175e-4f8a-9636-35f996e3cf24.jpg?1592708920"}, "mana_cost": "{X}{B}", "cmc": 1.0, "type_line": "Sorcery", "oracle_text": "For each creature, its controller sacrifices it unless they pay X life.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "039810a9-92d7-4f2d-b2d0-ca661ac586c0", "set": "avr", "set_name": "Avacyn Restored", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/039810a9-92d7-4f2d-b2d0-ca661ac586c0", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aavr&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/avr?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/33de2371-175e-4f8a-9636-35f996e3cf24/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A69d6b906-5461-4eba-8667-dbb8c0ce3fcb&unique=prints", "collector_number": "111", "digital": false, "rarity": "rare", "flavor_text": "\"I come looking for demons and I find a plane full of angels. I hate angels.\"\n\u2014Liliana Vess", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Steve Argyle", "artist_ids": ["a44ddda4-5331-4f83-aac9-3e00ed36bd7b"], "illustration_id": "137f417c-ee21-401a-9266-f86b075cf2b8", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 4508, "penny_rank": 9624, "prices": {"usd": "2.75", "usd_foil": "5.23", "usd_etched": null, "eur": "1.54", "eur_foil": "6.99", "tix": "0.01"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=240180", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Killing+Wave&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Killing+Wave&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Killing+Wave"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/58192?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Killing+Wave&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/44109?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "e40ed6b1-7b92-4ba4-b197-07c3f171a935", "oracle_id": "69d6b906-5461-4eba-8667-dbb8c0ce3fcb", "multiverse_ids": [], "tcgplayer_id": 58193, "cardmarket_id": 255444, "name": "Killing Wave", "lang": "en", "released_at": "2012-04-28", "uri": "https://api.scryfall.com/cards/e40ed6b1-7b92-4ba4-b197-07c3f171a935", "scryfall_uri": "https://scryfall.com/card/pavr/111/killing-wave?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/e/4/e40ed6b1-7b92-4ba4-b197-07c3f171a935.jpg?1561758322", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/4/e40ed6b1-7b92-4ba4-b197-07c3f171a935.jpg?1561758322", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/e/4/e40ed6b1-7b92-4ba4-b197-07c3f171a935.jpg?1561758322", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/e/4/e40ed6b1-7b92-4ba4-b197-07c3f171a935.png?1561758322", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/4/e40ed6b1-7b92-4ba4-b197-07c3f171a935.jpg?1561758322", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/e/4/e40ed6b1-7b92-4ba4-b197-07c3f171a935.jpg?1561758322"}, "mana_cost": "{X}{B}", "cmc": 1.0, "type_line": "Sorcery", "oracle_text": "For each creature, its controller sacrifices it unless they pay X life.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": true, "nonfoil": false, "finishes": ["foil"], "oversized": false, "promo": true, "reprint": true, "variation": false, "set_id": "b933d4a1-3d0a-45fb-a73c-a9ae2ba928b0", "set": "pavr", "set_name": "Avacyn Restored Promos", "set_type": "promo", "set_uri": "https://api.scryfall.com/sets/b933d4a1-3d0a-45fb-a73c-a9ae2ba928b0", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Apavr&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/pavr?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/e40ed6b1-7b92-4ba4-b197-07c3f171a935/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A69d6b906-5461-4eba-8667-dbb8c0ce3fcb&unique=prints", "collector_number": "111", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Michael Komarck", "artist_ids": ["96a53b95-fe5f-4fbb-9411-ccf4ee150aca"], "illustration_id": "d0d8f077-0015-4a7a-8fc9-a5aff4652891", "border_color": "black", "frame": "2003", "full_art": true, "textless": false, "booster": false, "story_spotlight": false, "promo_types": ["setpromo", "gameday"], "edhrec_rank": 4508, "penny_rank": 9624, "prices": {"usd": null, "usd_foil": "10.57", "usd_etched": null, "eur": null, "eur_foil": "0.99", "tix": null}, "related_uris": {"tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Killing+Wave&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Killing+Wave&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Killing+Wave"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/58193?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Killing+Wave&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Killing+Wave&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "4b5dfa91-8f93-41b7-95e9-3374550f1617", "oracle_id": "6562f141-7f57-4218-b873-f2fc0211e124", "multiverse_ids": [107446], "mtgo_id": 24233, "mtgo_foil_id": 24234, "tcgplayer_id": 13886, "cardmarket_id": 13022, "name": "Kindle the Carnage", "lang": "en", "released_at": "2006-05-05", "uri": "https://api.scryfall.com/cards/4b5dfa91-8f93-41b7-95e9-3374550f1617", "scryfall_uri": "https://scryfall.com/card/dis/66/kindle-the-carnage?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/4/b/4b5dfa91-8f93-41b7-95e9-3374550f1617.jpg?1593273180", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/b/4b5dfa91-8f93-41b7-95e9-3374550f1617.jpg?1593273180", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/4/b/4b5dfa91-8f93-41b7-95e9-3374550f1617.jpg?1593273180", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/4/b/4b5dfa91-8f93-41b7-95e9-3374550f1617.png?1593273180", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/b/4b5dfa91-8f93-41b7-95e9-3374550f1617.jpg?1593273180", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/4/b/4b5dfa91-8f93-41b7-95e9-3374550f1617.jpg?1593273180"}, "mana_cost": "{1}{R}{R}", "cmc": 3.0, "type_line": "Sorcery", "oracle_text": "Discard a card at random. If you do, Kindle the Carnage deals damage equal to that card's mana value to each creature. You may repeat this process any number of times.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "fdebeda1-b95f-4343-8a94-d125821e6b5c", "set": "dis", "set_name": "Dissension", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/fdebeda1-b95f-4343-8a94-d125821e6b5c", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Adis&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/dis?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/4b5dfa91-8f93-41b7-95e9-3374550f1617/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A6562f141-7f57-4218-b873-f2fc0211e124&unique=prints", "collector_number": "66", "digital": false, "rarity": "uncommon", "flavor_text": "\"Start knockin' heads, boys, and don't stop 'til the ragamuffyn sings!\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Dany Orizio", "artist_ids": ["fcd5ea36-64e0-4af0-992a-3c68a34a400f"], "illustration_id": "101a6a52-11b7-4d56-bdb8-1edd134adaa4", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 15623, "penny_rank": 4180, "prices": {"usd": "0.22", "usd_foil": "0.69", "usd_etched": null, "eur": "0.09", "eur_foil": "0.05", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=107446", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Kindle+the+Carnage&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Kindle+the+Carnage&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Kindle+the+Carnage"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/13886?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Kindle+the+Carnage&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/24233?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "9794115a-5509-4d9a-b119-d2b61942e87b", "oracle_id": "ccaa44f2-96be-44e2-884f-c31baa3908d5", "multiverse_ids": [433259], "tcgplayer_id": 140146, "cardmarket_id": 300377, "name": "Kindred Dominance", "lang": "en", "released_at": "2017-08-25", "uri": "https://api.scryfall.com/cards/9794115a-5509-4d9a-b119-d2b61942e87b", "scryfall_uri": "https://scryfall.com/card/c17/18/kindred-dominance?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/9/7/9794115a-5509-4d9a-b119-d2b61942e87b.jpg?1562617149", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/7/9794115a-5509-4d9a-b119-d2b61942e87b.jpg?1562617149", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/9/7/9794115a-5509-4d9a-b119-d2b61942e87b.jpg?1562617149", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/9/7/9794115a-5509-4d9a-b119-d2b61942e87b.png?1562617149", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/7/9794115a-5509-4d9a-b119-d2b61942e87b.jpg?1562617149", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/9/7/9794115a-5509-4d9a-b119-d2b61942e87b.jpg?1562617149"}, "mana_cost": "{5}{B}{B}", "cmc": 7.0, "type_line": "Sorcery", "oracle_text": "Choose a creature type. Destroy all creatures that aren't of the chosen type.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "5caec427-0c78-4c37-b4ec-30f7e0ba9abf", "set": "c17", "set_name": "Commander 2017", "set_type": "commander", "set_uri": "https://api.scryfall.com/sets/5caec427-0c78-4c37-b4ec-30f7e0ba9abf", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ac17&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/c17?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/9794115a-5509-4d9a-b119-d2b61942e87b/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Accaa44f2-96be-44e2-884f-c31baa3908d5&unique=prints", "collector_number": "18", "digital": false, "rarity": "rare", "flavor_text": "In the end, the lights fade, the land withers, and only the dead and vile remain.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Bram Sels", "artist_ids": ["2e90d3c1-e8ac-45c7-9d5a-63385c1a384d"], "illustration_id": "2756999a-fbd6-425d-b751-34a1a520fbf6", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "edhrec_rank": 1648, "prices": {"usd": "22.21", "usd_foil": null, "usd_etched": null, "eur": "19.64", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=433259", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Kindred+Dominance&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Kindred+Dominance&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Kindred+Dominance"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/140146?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Kindred+Dominance&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Kindred+Dominance&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "b5a0c4e6-d50e-42e8-b062-8f6ef5950ab7", "oracle_id": "4f66d82a-492f-4638-9f77-190d4a33ad7f", "multiverse_ids": [29921], "mtgo_id": 16957, "mtgo_foil_id": 16958, "tcgplayer_id": 9303, "cardmarket_id": 2440, "name": "Kirtar's Wrath", "lang": "en", "released_at": "2001-10-01", "uri": "https://api.scryfall.com/cards/b5a0c4e6-d50e-42e8-b062-8f6ef5950ab7", "scryfall_uri": "https://scryfall.com/card/ody/28/kirtars-wrath?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/b/5/b5a0c4e6-d50e-42e8-b062-8f6ef5950ab7.jpg?1562928851", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/5/b5a0c4e6-d50e-42e8-b062-8f6ef5950ab7.jpg?1562928851", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/b/5/b5a0c4e6-d50e-42e8-b062-8f6ef5950ab7.jpg?1562928851", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/b/5/b5a0c4e6-d50e-42e8-b062-8f6ef5950ab7.png?1562928851", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/5/b5a0c4e6-d50e-42e8-b062-8f6ef5950ab7.jpg?1562928851", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/b/5/b5a0c4e6-d50e-42e8-b062-8f6ef5950ab7.jpg?1562928851"}, "mana_cost": "{4}{W}{W}", "cmc": 6.0, "type_line": "Sorcery", "oracle_text": "Destroy all creatures. They can't be regenerated.\nThreshold \u2014 If seven or more cards are in your graveyard, instead destroy all creatures, then create two 1/1 white Spirit creature tokens with flying. Creatures destroyed this way can't be regenerated.", "colors": ["W"], "color_identity": ["W"], "keywords": ["Threshold"], "all_parts": [{"object": "related_card", "id": "b5a0c4e6-d50e-42e8-b062-8f6ef5950ab7", "component": "combo_piece", "name": "Kirtar's Wrath", "type_line": "Sorcery", "uri": "https://api.scryfall.com/cards/b5a0c4e6-d50e-42e8-b062-8f6ef5950ab7"}, {"object": "related_card", "id": "58be6a05-8021-4fca-8e9f-0ebb4769c635", "component": "token", "name": "Spirit", "type_line": "Token Creature \u2014 Spirit", "uri": "https://api.scryfall.com/cards/58be6a05-8021-4fca-8e9f-0ebb4769c635"}], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "b0d90d2d-494a-4224-bfa0-36ce5ee281b1", "set": "ody", "set_name": "Odyssey", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/b0d90d2d-494a-4224-bfa0-36ce5ee281b1", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aody&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ody?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/b5a0c4e6-d50e-42e8-b062-8f6ef5950ab7/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A4f66d82a-492f-4638-9f77-190d4a33ad7f&unique=prints", "collector_number": "28", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Kev Walker", "artist_ids": ["f366a0ee-a0cd-466d-ba6a-90058c7a31a6"], "illustration_id": "fb7593e3-5f8b-4b91-a8bd-3680b71f9193", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 7113, "prices": {"usd": "0.44", "usd_foil": "8.29", "usd_etched": null, "eur": "0.39", "eur_foil": "9.99", "tix": "0.14"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=29921", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Kirtar%27s+Wrath&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Kirtar%27s+Wrath&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Kirtar%27s+Wrath"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/9303?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Kirtar%27s+Wrath&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/16957?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "761e1f77-5231-4008-829f-99650b429fb3", "oracle_id": "639926c1-c4b4-4a49-b125-0e1b584c5bb8", "multiverse_ids": [531954], "mtgo_id": 92584, "tcgplayer_id": 243788, "cardmarket_id": 572216, "name": "Klauth's Will", "lang": "en", "released_at": "2021-07-23", "uri": "https://api.scryfall.com/cards/761e1f77-5231-4008-829f-99650b429fb3", "scryfall_uri": "https://scryfall.com/card/afc/51/klauths-will?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/7/6/761e1f77-5231-4008-829f-99650b429fb3.jpg?1631585593", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/6/761e1f77-5231-4008-829f-99650b429fb3.jpg?1631585593", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/7/6/761e1f77-5231-4008-829f-99650b429fb3.jpg?1631585593", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/7/6/761e1f77-5231-4008-829f-99650b429fb3.png?1631585593", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/6/761e1f77-5231-4008-829f-99650b429fb3.jpg?1631585593", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/7/6/761e1f77-5231-4008-829f-99650b429fb3.jpg?1631585593"}, "mana_cost": "{X}{R}{R}{G}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Choose one. If you control a commander as you cast this spell, you may choose both.\n\u2022 Breathe Flame \u2014 Klauth's Will deals X damage to each creature without flying.\n\u2022 Smash Relics \u2014 Destroy up to X target artifacts and/or enchantments.", "colors": ["G", "R"], "color_identity": ["G", "R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "db1b46f9-893c-4623-9465-985ff6e4472c", "set": "afc", "set_name": "Forgotten Realms Commander", "set_type": "commander", "set_uri": "https://api.scryfall.com/sets/db1b46f9-893c-4623-9465-985ff6e4472c", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aafc&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/afc?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/761e1f77-5231-4008-829f-99650b429fb3/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A639926c1-c4b4-4a49-b125-0e1b584c5bb8&unique=prints", "collector_number": "51", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Olivier Bernard", "artist_ids": ["11c6f325-68c2-4f2a-972d-98d2ffe6c224"], "illustration_id": "484aee50-cad9-43d0-870d-355679da306a", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "edhrec_rank": 2713, "prices": {"usd": "0.64", "usd_foil": null, "usd_etched": null, "eur": "0.52", "eur_foil": null, "tix": "2.29"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=531954", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Klauth%27s+Will&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Klauth%27s+Will&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Klauth%27s+Will"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/243788?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Klauth%27s+Will&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/92584?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "72765559-0a78-4aa3-827e-cb4612720991", "oracle_id": "6caafe5a-884d-49e8-a62a-7bf609f0ce53", "multiverse_ids": [407608], "mtgo_id": 59331, "mtgo_foil_id": 59332, "tcgplayer_id": 110829, "cardmarket_id": 287046, "name": "Kozilek's Return", "lang": "en", "released_at": "2016-01-22", "uri": "https://api.scryfall.com/cards/72765559-0a78-4aa3-827e-cb4612720991", "scryfall_uri": "https://scryfall.com/card/ogw/98/kozileks-return?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/7/2/72765559-0a78-4aa3-827e-cb4612720991.jpg?1618608556", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/2/72765559-0a78-4aa3-827e-cb4612720991.jpg?1618608556", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/7/2/72765559-0a78-4aa3-827e-cb4612720991.jpg?1618608556", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/7/2/72765559-0a78-4aa3-827e-cb4612720991.png?1618608556", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/2/72765559-0a78-4aa3-827e-cb4612720991.jpg?1618608556", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/7/2/72765559-0a78-4aa3-827e-cb4612720991.jpg?1618608556"}, "mana_cost": "{2}{R}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Devoid (This card has no color.)\nKozilek's Return deals 2 damage to each creature.\nWhenever you cast an Eldrazi creature spell with mana value 7 or greater, you may exile Kozilek's Return from your graveyard. If you do, Kozilek's Return deals 5 damage to each creature.", "colors": [], "color_identity": ["R"], "keywords": ["Devoid"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "cd51d245-8f95-45b0-ab5f-e2b3a3eb5dfe", "set": "ogw", "set_name": "Oath of the Gatewatch", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/cd51d245-8f95-45b0-ab5f-e2b3a3eb5dfe", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aogw&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ogw?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/72765559-0a78-4aa3-827e-cb4612720991/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A6caafe5a-884d-49e8-a62a-7bf609f0ce53&unique=prints", "collector_number": "98", "digital": false, "rarity": "mythic", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Lius Lasahido", "artist_ids": ["0a0e9093-ce44-4a69-93a7-09b63e7c330d"], "illustration_id": "54a50c67-1fa4-481b-a583-922546bc4f2e", "border_color": "black", "frame": "2015", "frame_effects": ["devoid"], "security_stamp": "oval", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 11467, "prices": {"usd": "1.33", "usd_foil": "17.57", "usd_etched": null, "eur": "3.32", "eur_foil": "12.74", "tix": "0.84"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=407608", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Kozilek%27s+Return&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Kozilek%27s+Return&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Kozilek%27s+Return"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/110829?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Kozilek%27s+Return&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/59331?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "d3593efa-0a05-4061-9f6e-edd0a5ca9a1f", "oracle_id": "ef1a83f2-6707-41a2-b5ed-861c8e45ae07", "multiverse_ids": [398597], "mtgo_id": 58156, "mtgo_foil_id": 58157, "tcgplayer_id": 100030, "cardmarket_id": 283368, "name": "Languish", "lang": "en", "released_at": "2015-07-17", "uri": "https://api.scryfall.com/cards/d3593efa-0a05-4061-9f6e-edd0a5ca9a1f", "scryfall_uri": "https://scryfall.com/card/ori/105/languish?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/d/3/d3593efa-0a05-4061-9f6e-edd0a5ca9a1f.jpg?1562043520", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/3/d3593efa-0a05-4061-9f6e-edd0a5ca9a1f.jpg?1562043520", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/d/3/d3593efa-0a05-4061-9f6e-edd0a5ca9a1f.jpg?1562043520", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/d/3/d3593efa-0a05-4061-9f6e-edd0a5ca9a1f.png?1562043520", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/3/d3593efa-0a05-4061-9f6e-edd0a5ca9a1f.jpg?1562043520", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/d/3/d3593efa-0a05-4061-9f6e-edd0a5ca9a1f.jpg?1562043520"}, "mana_cost": "{2}{B}{B}", "cmc": 4.0, "type_line": "Sorcery", "oracle_text": "All creatures get -4/-4 until end of turn.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "0eeb9a9a-20ac-404d-b55f-aeb7a43a7f62", "set": "ori", "set_name": "Magic Origins", "set_type": "core", "set_uri": "https://api.scryfall.com/sets/0eeb9a9a-20ac-404d-b55f-aeb7a43a7f62", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aori&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ori?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/d3593efa-0a05-4061-9f6e-edd0a5ca9a1f/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aef1a83f2-6707-41a2-b5ed-861c8e45ae07&unique=prints", "collector_number": "105", "digital": false, "rarity": "rare", "flavor_text": "Life is such a fragile thing.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Jeff Simpson", "artist_ids": ["bb21cc10-54bf-4d10-b90c-72ba55dd3d37"], "illustration_id": "42a8fb9a-e4a8-4341-b11d-c86d131f5e40", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 3690, "penny_rank": 618, "prices": {"usd": "0.47", "usd_foil": "1.42", "usd_etched": null, "eur": "0.56", "eur_foil": "1.00", "tix": "0.01"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=398597", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Languish&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Languish&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Languish"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/100030?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Languish&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/58156?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "87e2ee71-293d-452b-89a5-b15990186f5b", "oracle_id": "b01465ea-cab9-4a59-81a6-8db4648b89f4", "multiverse_ids": [446044], "mtgo_id": 68880, "tcgplayer_id": 167656, "cardmarket_id": 358599, "name": "Last One Standing", "lang": "en", "released_at": "2018-06-08", "uri": "https://api.scryfall.com/cards/87e2ee71-293d-452b-89a5-b15990186f5b", "scryfall_uri": "https://scryfall.com/card/bbd/76/last-one-standing?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/8/7/87e2ee71-293d-452b-89a5-b15990186f5b.jpg?1562922467", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/7/87e2ee71-293d-452b-89a5-b15990186f5b.jpg?1562922467", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/8/7/87e2ee71-293d-452b-89a5-b15990186f5b.jpg?1562922467", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/8/7/87e2ee71-293d-452b-89a5-b15990186f5b.png?1562922467", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/7/87e2ee71-293d-452b-89a5-b15990186f5b.jpg?1562922467", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/8/7/87e2ee71-293d-452b-89a5-b15990186f5b.jpg?1562922467"}, "mana_cost": "{1}{B}{R}", "cmc": 3.0, "type_line": "Sorcery", "oracle_text": "Choose a creature at random, then destroy the rest.", "colors": ["B", "R"], "color_identity": ["B", "R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "95f97fbc-58ef-4645-982e-43e2db6f1124", "set": "bbd", "set_name": "Battlebond", "set_type": "draft_innovation", "set_uri": "https://api.scryfall.com/sets/95f97fbc-58ef-4645-982e-43e2db6f1124", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Abbd&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/bbd?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/87e2ee71-293d-452b-89a5-b15990186f5b/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ab01465ea-cab9-4a59-81a6-8db4648b89f4&unique=prints", "collector_number": "76", "digital": false, "rarity": "rare", "flavor_text": "Some train all their lives for a shot at the title. Some just get really, really lucky.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Svetlin Velinov", "artist_ids": ["ffd063ae-c097-4f26-b2e6-b1e2137708bc"], "illustration_id": "ac6fb6f0-bd25-4870-9f64-8aac3b7e959a", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 3137, "penny_rank": 4218, "prices": {"usd": "2.79", "usd_foil": "5.34", "usd_etched": null, "eur": "3.64", "eur_foil": "7.95", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=446044", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Last+One+Standing&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Last+One+Standing&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Last+One+Standing"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/167656?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Last+One+Standing&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/68880?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "c0d411e1-5488-4818-95a4-9f637efb9be6", "oracle_id": "a9cdfb6c-6087-4b0d-b8a5-175f3546b23a", "multiverse_ids": [197528], "mtgo_id": 34796, "mtgo_foil_id": 34797, "tcgplayer_id": 33352, "cardmarket_id": 21734, "name": "Lavaball Trap", "lang": "en", "released_at": "2009-10-02", "uri": "https://api.scryfall.com/cards/c0d411e1-5488-4818-95a4-9f637efb9be6", "scryfall_uri": "https://scryfall.com/card/zen/135/lavaball-trap?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/c/0/c0d411e1-5488-4818-95a4-9f637efb9be6.jpg?1562616217", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/0/c0d411e1-5488-4818-95a4-9f637efb9be6.jpg?1562616217", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/c/0/c0d411e1-5488-4818-95a4-9f637efb9be6.jpg?1562616217", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/c/0/c0d411e1-5488-4818-95a4-9f637efb9be6.png?1562616217", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/0/c0d411e1-5488-4818-95a4-9f637efb9be6.jpg?1562616217", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/c/0/c0d411e1-5488-4818-95a4-9f637efb9be6.jpg?1562616217"}, "mana_cost": "{6}{R}{R}", "cmc": 8.0, "type_line": "Instant \u2014 Trap", "oracle_text": "If an opponent had two or more lands enter the battlefield under their control this turn, you may pay {3}{R}{R} rather than pay this spell's mana cost.\nDestroy two target lands. Lavaball Trap deals 4 damage to each creature.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "eb16a2bd-a218-4e4e-8339-4aa1afc0c8d2", "set": "zen", "set_name": "Zendikar", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/eb16a2bd-a218-4e4e-8339-4aa1afc0c8d2", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Azen&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/zen?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/c0d411e1-5488-4818-95a4-9f637efb9be6/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aa9cdfb6c-6087-4b0d-b8a5-175f3546b23a&unique=prints", "collector_number": "135", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Zoltan Boros & Gabor Szikszai", "artist_ids": ["1885e6cb-c827-4896-994e-3d0a027d602f", "44c3877f-8771-43dc-9e40-f4c765f59d2e"], "illustration_id": "039344a9-cf16-434f-b89e-deb4d7092bb2", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 14923, "penny_rank": 2686, "prices": {"usd": "0.19", "usd_foil": "0.64", "usd_etched": null, "eur": "0.15", "eur_foil": "0.20", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=197528", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Lavaball+Trap&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Lavaball+Trap&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Lavaball+Trap"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/33352?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Lavaball+Trap&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/34796?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "749981d6-78e7-4f53-80a8-f211e61bd532", "oracle_id": "4475e9a7-4e94-4965-8e7e-211d40a98217", "multiverse_ids": [180612], "mtgo_id": 32386, "mtgo_foil_id": 32387, "tcgplayer_id": 31760, "cardmarket_id": 20997, "name": "Lavalanche", "lang": "en", "released_at": "2009-04-30", "uri": "https://api.scryfall.com/cards/749981d6-78e7-4f53-80a8-f211e61bd532", "scryfall_uri": "https://scryfall.com/card/arb/118/lavalanche?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/7/4/749981d6-78e7-4f53-80a8-f211e61bd532.jpg?1562642149", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/4/749981d6-78e7-4f53-80a8-f211e61bd532.jpg?1562642149", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/7/4/749981d6-78e7-4f53-80a8-f211e61bd532.jpg?1562642149", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/7/4/749981d6-78e7-4f53-80a8-f211e61bd532.png?1562642149", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/4/749981d6-78e7-4f53-80a8-f211e61bd532.jpg?1562642149", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/7/4/749981d6-78e7-4f53-80a8-f211e61bd532.jpg?1562642149"}, "mana_cost": "{X}{B}{R}{G}", "cmc": 3.0, "type_line": "Sorcery", "oracle_text": "Lavalanche deals X damage to target player or planeswalker and each creature that player or that planeswalker's controller controls.", "colors": ["B", "G", "R"], "color_identity": ["B", "G", "R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "db486ec5-141d-4781-9ee5-5456926934c1", "set": "arb", "set_name": "Alara Reborn", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/db486ec5-141d-4781-9ee5-5456926934c1", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aarb&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/arb?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/749981d6-78e7-4f53-80a8-f211e61bd532/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A4475e9a7-4e94-4965-8e7e-211d40a98217&unique=prints", "collector_number": "118", "digital": false, "rarity": "rare", "flavor_text": "Alara's burning blood cannot be contained by mere earth and stone.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Steve Argyle", "artist_ids": ["a44ddda4-5331-4f83-aac9-3e00ed36bd7b"], "illustration_id": "e8cc7f2b-950e-47d1-bd69-bf732d613902", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 5447, "penny_rank": 8361, "prices": {"usd": "0.27", "usd_foil": "1.73", "usd_etched": null, "eur": "0.15", "eur_foil": "0.49", "tix": "0.01"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=180612", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Lavalanche&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Lavalanche&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Lavalanche"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/31760?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Lavalanche&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/32386?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "ffd3fbd2-87c7-4f08-baaa-91d61c1114da", "oracle_id": "0c1d5e6b-f6b6-4dc6-9bc1-3cc00b78da36", "multiverse_ids": [214362], "mtgo_id": 39722, "mtgo_foil_id": 39723, "tcgplayer_id": 39541, "cardmarket_id": 245894, "name": "Life's Finale", "lang": "en", "released_at": "2011-05-13", "uri": "https://api.scryfall.com/cards/ffd3fbd2-87c7-4f08-baaa-91d61c1114da", "scryfall_uri": "https://scryfall.com/card/nph/65/lifes-finale?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/f/f/ffd3fbd2-87c7-4f08-baaa-91d61c1114da.jpg?1562883140", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/f/ffd3fbd2-87c7-4f08-baaa-91d61c1114da.jpg?1562883140", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/f/f/ffd3fbd2-87c7-4f08-baaa-91d61c1114da.jpg?1562883140", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/f/f/ffd3fbd2-87c7-4f08-baaa-91d61c1114da.png?1562883140", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/f/ffd3fbd2-87c7-4f08-baaa-91d61c1114da.jpg?1562883140", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/f/f/ffd3fbd2-87c7-4f08-baaa-91d61c1114da.jpg?1562883140"}, "mana_cost": "{4}{B}{B}", "cmc": 6.0, "type_line": "Sorcery", "oracle_text": "Destroy all creatures, then search target opponent's library for up to three creature cards and put them into their graveyard. Then that player shuffles.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "e8e356d8-6d01-4dab-aa07-d0999dc9359f", "set": "nph", "set_name": "New Phyrexia", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/e8e356d8-6d01-4dab-aa07-d0999dc9359f", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Anph&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/nph?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/ffd3fbd2-87c7-4f08-baaa-91d61c1114da/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A0c1d5e6b-f6b6-4dc6-9bc1-3cc00b78da36&unique=prints", "collector_number": "65", "digital": false, "rarity": "rare", "watermark": "phyrexian", "flavor_text": "The feeble resistance of the flesh is over. Phyrexia spreads its shadow over all.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Svetlin Velinov", "artist_ids": ["ffd063ae-c097-4f26-b2e6-b1e2137708bc"], "illustration_id": "224f1f52-4301-4dbf-8873-da530767c434", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 4048, "penny_rank": 2682, "prices": {"usd": "4.45", "usd_foil": "8.01", "usd_etched": null, "eur": "2.70", "eur_foil": "2.99", "tix": "0.01"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=214362", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Life%27s+Finale&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Life%27s+Finale&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Life%27s+Finale"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/39541?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Life%27s+Finale&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/39722?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "0e73682a-56a2-4796-9902-a03aaa3815e8", "oracle_id": "9e6a3df4-67a3-452e-a6ef-f04dbadb21ef", "multiverse_ids": [383001], "mtgo_id": 53215, "mtgo_foil_id": 53216, "name": "Living Death", "lang": "en", "released_at": "2014-06-16", "uri": "https://api.scryfall.com/cards/0e73682a-56a2-4796-9902-a03aaa3815e8", "scryfall_uri": "https://scryfall.com/card/vma/126/living-death?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/0/e/0e73682a-56a2-4796-9902-a03aaa3815e8.jpg?1562897968", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/e/0e73682a-56a2-4796-9902-a03aaa3815e8.jpg?1562897968", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/0/e/0e73682a-56a2-4796-9902-a03aaa3815e8.jpg?1562897968", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/0/e/0e73682a-56a2-4796-9902-a03aaa3815e8.png?1562897968", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/e/0e73682a-56a2-4796-9902-a03aaa3815e8.jpg?1562897968", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/0/e/0e73682a-56a2-4796-9902-a03aaa3815e8.jpg?1562897968"}, "mana_cost": "{3}{B}{B}", "cmc": 5.0, "type_line": "Sorcery", "oracle_text": "Each player exiles all creature cards from their graveyard, then sacrifices all creatures they control, then puts all cards they exiled this way onto the battlefield.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "a944551a-73fa-41cd-9159-e8d0e4674403", "set": "vma", "set_name": "Vintage Masters", "set_type": "masters", "set_uri": "https://api.scryfall.com/sets/a944551a-73fa-41cd-9159-e8d0e4674403", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Avma&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/vma?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/0e73682a-56a2-4796-9902-a03aaa3815e8/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A9e6a3df4-67a3-452e-a6ef-f04dbadb21ef&unique=prints", "collector_number": "126", "digital": true, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Mark Winters", "artist_ids": ["3d8a379d-f4e8-440d-99d5-5ec107757348"], "illustration_id": "ec2dabbc-90d8-4f31-8f6f-08a4a7430fbf", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 476, "penny_rank": 112, "prices": {"usd": null, "usd_foil": null, "usd_etched": null, "eur": null, "eur_foil": null, "tix": "0.22"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=383001", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Living+Death&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Living+Death&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Living+Death"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/search/magic/product?productLineName=magic&q=Living+Death&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall&view=grid", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Living+Death&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/53215?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "6c820476-fbda-4073-baf6-51e71f45ed58", "oracle_id": "9e6a3df4-67a3-452e-a6ef-f04dbadb21ef", "multiverse_ids": [4671], "mtgo_id": 9795, "mtgo_foil_id": 9796, "tcgplayer_id": 5613, "cardmarket_id": 8771, "name": "Living Death", "lang": "en", "released_at": "1997-10-14", "uri": "https://api.scryfall.com/cards/6c820476-fbda-4073-baf6-51e71f45ed58", "scryfall_uri": "https://scryfall.com/card/tmp/142/living-death?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/6/c/6c820476-fbda-4073-baf6-51e71f45ed58.jpg?1562054465", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/c/6c820476-fbda-4073-baf6-51e71f45ed58.jpg?1562054465", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/6/c/6c820476-fbda-4073-baf6-51e71f45ed58.jpg?1562054465", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/6/c/6c820476-fbda-4073-baf6-51e71f45ed58.png?1562054465", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/c/6c820476-fbda-4073-baf6-51e71f45ed58.jpg?1562054465", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/6/c/6c820476-fbda-4073-baf6-51e71f45ed58.jpg?1562054465"}, "mana_cost": "{3}{B}{B}", "cmc": 5.0, "type_line": "Sorcery", "oracle_text": "Each player exiles all creature cards from their graveyard, then sacrifices all creatures they control, then puts all cards they exiled this way onto the battlefield.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "10df3a67-178e-4363-8668-34f0e6edf2a7", "set": "tmp", "set_name": "Tempest", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/10df3a67-178e-4363-8668-34f0e6edf2a7", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Atmp&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/tmp?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/6c820476-fbda-4073-baf6-51e71f45ed58/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A9e6a3df4-67a3-452e-a6ef-f04dbadb21ef&unique=prints", "collector_number": "142", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Charles Gillespie", "artist_ids": ["ec2c14ea-79eb-4c55-963f-c46f7cef1c22"], "illustration_id": "f6bb80d3-d715-44a1-9160-d476b9588330", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 476, "penny_rank": 112, "prices": {"usd": "11.41", "usd_foil": null, "usd_etched": null, "eur": "8.50", "eur_foil": null, "tix": "0.70"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=4671", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Living+Death&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Living+Death&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Living+Death"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/5613?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Living+Death&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/9795?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "3be0ff69-d9f3-4b81-b02f-1360e4064aff", "oracle_id": "3939fbe0-3be4-41ef-828d-c93f2cb33b4f", "multiverse_ids": [113521], "mtgo_id": 25627, "mtgo_foil_id": 25628, "tcgplayer_id": 14281, "cardmarket_id": 13894, "name": "Living End", "lang": "en", "released_at": "2006-10-06", "uri": "https://api.scryfall.com/cards/3be0ff69-d9f3-4b81-b02f-1360e4064aff", "scryfall_uri": "https://scryfall.com/card/tsp/115/living-end?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/3/b/3be0ff69-d9f3-4b81-b02f-1360e4064aff.jpg?1562907448", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/b/3be0ff69-d9f3-4b81-b02f-1360e4064aff.jpg?1562907448", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/3/b/3be0ff69-d9f3-4b81-b02f-1360e4064aff.jpg?1562907448", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/3/b/3be0ff69-d9f3-4b81-b02f-1360e4064aff.png?1562907448", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/b/3be0ff69-d9f3-4b81-b02f-1360e4064aff.jpg?1562907448", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/3/b/3be0ff69-d9f3-4b81-b02f-1360e4064aff.jpg?1562907448"}, "mana_cost": "", "cmc": 0.0, "type_line": "Sorcery", "oracle_text": "Suspend 3\u2014{2}{B}{B}\nEach player exiles all creature cards from their graveyard, then sacrifices all creatures they control, then puts all cards they exiled this way onto the battlefield.", "colors": ["B"], "color_indicator": ["B"], "color_identity": ["B"], "keywords": ["Suspend"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "c1d109bc-ffd8-428f-8d7d-3f8d7e648046", "set": "tsp", "set_name": "Time Spiral", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/c1d109bc-ffd8-428f-8d7d-3f8d7e648046", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Atsp&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/tsp?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/3be0ff69-d9f3-4b81-b02f-1360e4064aff/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A3939fbe0-3be4-41ef-828d-c93f2cb33b4f&unique=prints", "collector_number": "115", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Greg Staples", "artist_ids": ["93d65564-bf00-447b-8406-e2031f03b6b1"], "illustration_id": "db29b534-be48-4109-ad58-97c694633ccb", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 9035, "prices": {"usd": "8.66", "usd_foil": "24.58", "usd_etched": null, "eur": "5.43", "eur_foil": "13.75", "tix": "0.87"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=113521", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Living+End&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Living+End&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Living+End"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/14281?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Living+End&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/25627?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "ac85679e-17c7-4525-8eed-979d04feb8f1", "oracle_id": "a52037df-0be1-4c99-b9eb-b033157af203", "multiverse_ids": [276205], "mtgo_id": 45670, "mtgo_foil_id": 45671, "tcgplayer_id": 59823, "cardmarket_id": 256791, "name": "Magmaquake", "lang": "en", "released_at": "2012-07-13", "uri": "https://api.scryfall.com/cards/ac85679e-17c7-4525-8eed-979d04feb8f1", "scryfall_uri": "https://scryfall.com/card/m13/140/magmaquake?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/a/c/ac85679e-17c7-4525-8eed-979d04feb8f1.jpg?1562558550", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/c/ac85679e-17c7-4525-8eed-979d04feb8f1.jpg?1562558550", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/a/c/ac85679e-17c7-4525-8eed-979d04feb8f1.jpg?1562558550", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/a/c/ac85679e-17c7-4525-8eed-979d04feb8f1.png?1562558550", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/c/ac85679e-17c7-4525-8eed-979d04feb8f1.jpg?1562558550", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/a/c/ac85679e-17c7-4525-8eed-979d04feb8f1.jpg?1562558550"}, "mana_cost": "{X}{R}{R}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Magmaquake deals X damage to each creature without flying and each planeswalker.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "f9b0c6f4-8a4f-4f36-ad3c-e1e16fb8535d", "set": "m13", "set_name": "Magic 2013", "set_type": "core", "set_uri": "https://api.scryfall.com/sets/f9b0c6f4-8a4f-4f36-ad3c-e1e16fb8535d", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Am13&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/m13?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/ac85679e-17c7-4525-8eed-979d04feb8f1/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aa52037df-0be1-4c99-b9eb-b033157af203&unique=prints", "collector_number": "140", "digital": false, "rarity": "rare", "flavor_text": "\"Where will you run when I punish you with the very ground you flee on?\"\n\u2014Nicol Bolas", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Gabor Szikszai", "artist_ids": ["44c3877f-8771-43dc-9e40-f4c765f59d2e"], "illustration_id": "1675a1f8-8485-43ec-ab54-dc90d1492118", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 2050, "penny_rank": 4436, "prices": {"usd": "0.16", "usd_foil": "0.78", "usd_etched": null, "eur": "0.10", "eur_foil": "1.99", "tix": "0.01"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=276205", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Magmaquake&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Magmaquake&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Magmaquake"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/59823?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Magmaquake&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/45670?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "1476d42e-6cf8-4612-ae75-b3044d1eebbe", "oracle_id": "a52037df-0be1-4c99-b9eb-b033157af203", "multiverse_ids": [], "tcgplayer_id": 59824, "cardmarket_id": 256761, "name": "Magmaquake", "lang": "en", "released_at": "2012-07-12", "uri": "https://api.scryfall.com/cards/1476d42e-6cf8-4612-ae75-b3044d1eebbe", "scryfall_uri": "https://scryfall.com/card/pm13/140%E2%98%85/magmaquake?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/1/4/1476d42e-6cf8-4612-ae75-b3044d1eebbe.jpg?1605361705", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/4/1476d42e-6cf8-4612-ae75-b3044d1eebbe.jpg?1605361705", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/1/4/1476d42e-6cf8-4612-ae75-b3044d1eebbe.jpg?1605361705", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/1/4/1476d42e-6cf8-4612-ae75-b3044d1eebbe.png?1605361705", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/4/1476d42e-6cf8-4612-ae75-b3044d1eebbe.jpg?1605361705", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/1/4/1476d42e-6cf8-4612-ae75-b3044d1eebbe.jpg?1605361705"}, "mana_cost": "{X}{R}{R}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Magmaquake deals X damage to each creature without flying and each planeswalker.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": true, "nonfoil": false, "finishes": ["foil"], "oversized": false, "promo": true, "reprint": true, "variation": false, "set_id": "9403aa68-56ab-48ce-86c1-10a53c54a172", "set": "pm13", "set_name": "Magic 2013 Promos", "set_type": "promo", "set_uri": "https://api.scryfall.com/sets/9403aa68-56ab-48ce-86c1-10a53c54a172", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Apm13&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/pm13?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/1476d42e-6cf8-4612-ae75-b3044d1eebbe/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aa52037df-0be1-4c99-b9eb-b033157af203&unique=prints", "collector_number": "140\u2605", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Sam Burley", "artist_ids": ["f89f4b78-cefb-41f7-b7cb-4f4d28de0c4f"], "illustration_id": "bad0cb06-3f48-471a-9933-5132255e92db", "border_color": "black", "frame": "2003", "full_art": true, "textless": false, "booster": false, "story_spotlight": false, "promo_types": ["setpromo", "gameday"], "edhrec_rank": 2050, "penny_rank": 4436, "prices": {"usd": null, "usd_foil": "3.04", "usd_etched": null, "eur": null, "eur_foil": "1.46", "tix": null}, "related_uris": {"tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Magmaquake&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Magmaquake&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Magmaquake"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/59824?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Magmaquake&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Magmaquake&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "e0a96feb-accc-4c30-8ecd-7d9272ebd45b", "oracle_id": "3ce755f5-855f-4b88-aa10-22f4ee76b28a", "multiverse_ids": [417662], "mtgo_id": 61691, "mtgo_foil_id": 61692, "tcgplayer_id": 123141, "cardmarket_id": 292825, "name": "Make Obsolete", "lang": "en", "released_at": "2016-09-30", "uri": "https://api.scryfall.com/cards/e0a96feb-accc-4c30-8ecd-7d9272ebd45b", "scryfall_uri": "https://scryfall.com/card/kld/89/make-obsolete?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/e/0/e0a96feb-accc-4c30-8ecd-7d9272ebd45b.jpg?1576381736", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/0/e0a96feb-accc-4c30-8ecd-7d9272ebd45b.jpg?1576381736", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/e/0/e0a96feb-accc-4c30-8ecd-7d9272ebd45b.jpg?1576381736", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/e/0/e0a96feb-accc-4c30-8ecd-7d9272ebd45b.png?1576381736", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/0/e0a96feb-accc-4c30-8ecd-7d9272ebd45b.jpg?1576381736", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/e/0/e0a96feb-accc-4c30-8ecd-7d9272ebd45b.jpg?1576381736"}, "mana_cost": "{2}{B}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Creatures your opponents control get -1/-1 until end of turn.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "d667e468-be8f-411f-a030-473d148deb74", "set": "kld", "set_name": "Kaladesh", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/d667e468-be8f-411f-a030-473d148deb74", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Akld&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/kld?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/e0a96feb-accc-4c30-8ecd-7d9272ebd45b/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A3ce755f5-855f-4b88-aa10-22f4ee76b28a&unique=prints", "collector_number": "89", "digital": false, "rarity": "uncommon", "flavor_text": "Yesterday's marvels are today's antiques.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Darek Zabrocki", "artist_ids": ["904ed2e7-9850-4472-802f-2657c53dd4d8"], "illustration_id": "3ade0a08-bbcb-4823-afe1-208a1de9be00", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 17688, "penny_rank": 8610, "prices": {"usd": "0.04", "usd_foil": "0.09", "usd_etched": null, "eur": "0.24", "eur_foil": "0.05", "tix": "0.05"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=417662", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Make+Obsolete&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Make+Obsolete&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Make+Obsolete"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/123141?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Make+Obsolete&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/61691?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "56e7415f-f014-4ece-81db-d8271444d9e9", "oracle_id": "c7ecaa1a-fbf7-436b-a1c9-d7810b0dc5dc", "multiverse_ids": [548410], "mtgo_id": 97144, "arena_id": 79537, "tcgplayer_id": 262239, "cardmarket_id": 607369, "name": "Malicious Malfunction", "lang": "en", "released_at": "2022-02-18", "uri": "https://api.scryfall.com/cards/56e7415f-f014-4ece-81db-d8271444d9e9", "scryfall_uri": "https://scryfall.com/card/neo/110/malicious-malfunction?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/5/6/56e7415f-f014-4ece-81db-d8271444d9e9.jpg?1654567289", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/6/56e7415f-f014-4ece-81db-d8271444d9e9.jpg?1654567289", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/5/6/56e7415f-f014-4ece-81db-d8271444d9e9.jpg?1654567289", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/5/6/56e7415f-f014-4ece-81db-d8271444d9e9.png?1654567289", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/6/56e7415f-f014-4ece-81db-d8271444d9e9.jpg?1654567289", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/5/6/56e7415f-f014-4ece-81db-d8271444d9e9.jpg?1654567289"}, "mana_cost": "{1}{B}{B}", "cmc": 3.0, "type_line": "Sorcery", "oracle_text": "All creatures get -2/-2 until end of turn. If a creature would die this turn, exile it instead.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo", "arena"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "59a2059f-5482-433f-8761-eb2e17859b71", "set": "neo", "set_name": "Kamigawa: Neon Dynasty", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/59a2059f-5482-433f-8761-eb2e17859b71", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aneo&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/neo?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/56e7415f-f014-4ece-81db-d8271444d9e9/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ac7ecaa1a-fbf7-436b-a1c9-d7810b0dc5dc&unique=prints", "collector_number": "110", "digital": false, "rarity": "uncommon", "flavor_text": "\"That? A minor test, nothing more. Incompleat flesh is weak.\"\n\u2014Jin-Gitaxias", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Deruchenko Alexander", "artist_ids": ["806f6ff9-6ed4-4e93-998a-a562c0b792e6"], "illustration_id": "007a9c6f-f424-455c-b095-76b8d1690db0", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 15030, "preview": {"source": "Cho Jaeseok", "source_uri": "https://twitter.com/JS2mtg/status/1487010742092300289", "previewed_at": "2022-01-28"}, "prices": {"usd": "0.02", "usd_foil": "0.04", "usd_etched": null, "eur": "0.08", "eur_foil": "0.10", "tix": "0.01"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=548410", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Malicious+Malfunction&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Malicious+Malfunction&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Malicious+Malfunction"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/262239?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Malicious+Malfunction&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/97144?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "f07dd0f1-b80b-4af0-ae76-907ec55ec7d5", "oracle_id": "bca7101b-e74b-42af-ac63-1b3defb4137d", "multiverse_ids": [26277], "mtgo_id": 15161, "mtgo_foil_id": 15162, "tcgplayer_id": 7827, "cardmarket_id": 3265, "name": "March of Souls", "lang": "en", "released_at": "2001-02-05", "uri": "https://api.scryfall.com/cards/f07dd0f1-b80b-4af0-ae76-907ec55ec7d5", "scryfall_uri": "https://scryfall.com/card/pls/10/march-of-souls?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/f/0/f07dd0f1-b80b-4af0-ae76-907ec55ec7d5.jpg?1562945732", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/0/f07dd0f1-b80b-4af0-ae76-907ec55ec7d5.jpg?1562945732", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/f/0/f07dd0f1-b80b-4af0-ae76-907ec55ec7d5.jpg?1562945732", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/f/0/f07dd0f1-b80b-4af0-ae76-907ec55ec7d5.png?1562945732", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/0/f07dd0f1-b80b-4af0-ae76-907ec55ec7d5.jpg?1562945732", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/f/0/f07dd0f1-b80b-4af0-ae76-907ec55ec7d5.jpg?1562945732"}, "mana_cost": "{4}{W}", "cmc": 5.0, "type_line": "Sorcery", "oracle_text": "Destroy all creatures. They can't be regenerated. For each creature destroyed this way, its controller creates a 1/1 white Spirit creature token with flying.", "colors": ["W"], "color_identity": ["W"], "keywords": [], "all_parts": [{"object": "related_card", "id": "f07dd0f1-b80b-4af0-ae76-907ec55ec7d5", "component": "combo_piece", "name": "March of Souls", "type_line": "Sorcery", "uri": "https://api.scryfall.com/cards/f07dd0f1-b80b-4af0-ae76-907ec55ec7d5"}, {"object": "related_card", "id": "58be6a05-8021-4fca-8e9f-0ebb4769c635", "component": "token", "name": "Spirit", "type_line": "Token Creature \u2014 Spirit", "uri": "https://api.scryfall.com/cards/58be6a05-8021-4fca-8e9f-0ebb4769c635"}], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "82dc193b-bd5f-4883-a93f-a4155b467ee0", "set": "pls", "set_name": "Planeshift", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/82dc193b-bd5f-4883-a93f-a4155b467ee0", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Apls&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/pls?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/f07dd0f1-b80b-4af0-ae76-907ec55ec7d5/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Abca7101b-e74b-42af-ac63-1b3defb4137d&unique=prints", "collector_number": "10", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Marc Fishman", "artist_ids": ["d50dd2c3-34ae-4eb1-8948-cb4b38d7e4b9"], "illustration_id": "ab40d584-79dc-419e-a52d-88ea6e1850ce", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 9214, "prices": {"usd": "6.36", "usd_foil": "32.50", "usd_etched": null, "eur": "2.50", "eur_foil": "29.00", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=26277", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=March+of+Souls&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=March+of+Souls&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=March+of+Souls"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/7827?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=March+of+Souls&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/15161?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "28476d0d-60ea-4d08-890c-0e6502ee3d2a", "oracle_id": "d2bd182c-532f-4c77-adb8-754f2c2fcd82", "multiverse_ids": [177543], "mtgo_id": 34400, "mtgo_foil_id": 34401, "tcgplayer_id": 33364, "cardmarket_id": 21908, "name": "Marsh Casualties", "lang": "en", "released_at": "2009-10-02", "uri": "https://api.scryfall.com/cards/28476d0d-60ea-4d08-890c-0e6502ee3d2a", "scryfall_uri": "https://scryfall.com/card/zen/101/marsh-casualties?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/2/8/28476d0d-60ea-4d08-890c-0e6502ee3d2a.jpg?1562610765", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/8/28476d0d-60ea-4d08-890c-0e6502ee3d2a.jpg?1562610765", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/2/8/28476d0d-60ea-4d08-890c-0e6502ee3d2a.jpg?1562610765", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/2/8/28476d0d-60ea-4d08-890c-0e6502ee3d2a.png?1562610765", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/8/28476d0d-60ea-4d08-890c-0e6502ee3d2a.jpg?1562610765", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/2/8/28476d0d-60ea-4d08-890c-0e6502ee3d2a.jpg?1562610765"}, "mana_cost": "{B}{B}", "cmc": 2.0, "type_line": "Sorcery", "oracle_text": "Kicker {3} (You may pay an additional {3} as you cast this spell.)\nCreatures target player controls get -1/-1 until end of turn. If this spell was kicked, those creatures get -2/-2 until end of turn instead.", "colors": ["B"], "color_identity": ["B"], "keywords": ["Kicker"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "eb16a2bd-a218-4e4e-8339-4aa1afc0c8d2", "set": "zen", "set_name": "Zendikar", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/eb16a2bd-a218-4e4e-8339-4aa1afc0c8d2", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Azen&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/zen?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/28476d0d-60ea-4d08-890c-0e6502ee3d2a/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ad2bd182c-532f-4c77-adb8-754f2c2fcd82&unique=prints", "collector_number": "101", "digital": false, "rarity": "uncommon", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Scott Chou", "artist_ids": ["9e048547-f9c3-4958-9c2c-91e45df7c6ae"], "illustration_id": "78fed4fd-f436-4634-abd8-5afa0947d086", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 19723, "penny_rank": 4409, "prices": {"usd": "0.07", "usd_foil": null, "usd_etched": null, "eur": "0.05", "eur_foil": "0.99", "tix": "0.04"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=177543", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Marsh+Casualties&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Marsh+Casualties&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Marsh+Casualties"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/33364?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Marsh+Casualties&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/34400?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "4201385f-6f74-4e3d-aafb-0eff82cb24c1", "oracle_id": "2b7c4dab-e432-4b34-b058-3cec5c0d72df", "multiverse_ids": [178560], "mtgo_id": 31731, "mtgo_foil_id": 31732, "tcgplayer_id": 28568, "cardmarket_id": 20654, "name": "Martial Coup", "lang": "en", "released_at": "2009-02-06", "uri": "https://api.scryfall.com/cards/4201385f-6f74-4e3d-aafb-0eff82cb24c1", "scryfall_uri": "https://scryfall.com/card/con/11/martial-coup?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/4/2/4201385f-6f74-4e3d-aafb-0eff82cb24c1.jpg?1562800634", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/2/4201385f-6f74-4e3d-aafb-0eff82cb24c1.jpg?1562800634", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/4/2/4201385f-6f74-4e3d-aafb-0eff82cb24c1.jpg?1562800634", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/4/2/4201385f-6f74-4e3d-aafb-0eff82cb24c1.png?1562800634", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/2/4201385f-6f74-4e3d-aafb-0eff82cb24c1.jpg?1562800634", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/4/2/4201385f-6f74-4e3d-aafb-0eff82cb24c1.jpg?1562800634"}, "mana_cost": "{X}{W}{W}", "cmc": 2.0, "type_line": "Sorcery", "oracle_text": "Create X 1/1 white Soldier creature tokens. If X is 5 or more, destroy all other creatures.", "colors": ["W"], "color_identity": ["W"], "keywords": [], "all_parts": [{"object": "related_card", "id": "4201385f-6f74-4e3d-aafb-0eff82cb24c1", "component": "combo_piece", "name": "Martial Coup", "type_line": "Sorcery", "uri": "https://api.scryfall.com/cards/4201385f-6f74-4e3d-aafb-0eff82cb24c1"}, {"object": "related_card", "id": "05e8f775-02bd-46dc-a618-07a9a127fa69", "component": "token", "name": "Soldier", "type_line": "Token Creature \u2014 Soldier", "uri": "https://api.scryfall.com/cards/05e8f775-02bd-46dc-a618-07a9a127fa69"}], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "76b2db58-904c-4e49-8580-9f62f7b3cca4", "set": "con", "set_name": "Conflux", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/76b2db58-904c-4e49-8580-9f62f7b3cca4", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Acon&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/con?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/4201385f-6f74-4e3d-aafb-0eff82cb24c1/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A2b7c4dab-e432-4b34-b058-3cec5c0d72df&unique=prints", "collector_number": "11", "digital": false, "rarity": "rare", "flavor_text": "Their war forgotten, the nations of Bant stood united in the face of a common threat.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Greg Staples", "artist_ids": ["93d65564-bf00-447b-8406-e2031f03b6b1"], "illustration_id": "deafc641-f0b8-4ef1-bded-26599b9eac2a", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 1288, "penny_rank": 2765, "prices": {"usd": "1.00", "usd_foil": "4.92", "usd_etched": null, "eur": "0.02", "eur_foil": "1.50", "tix": "0.01"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=178560", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Martial+Coup&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Martial+Coup&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Martial+Coup"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/28568?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Martial+Coup&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/31731?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "e2c9f463-d1cc-4f11-aad2-d4a4520aa978", "oracle_id": "b636f17d-b54a-4a72-9a5e-ce13e7b4f00a", "multiverse_ids": [1812], "tcgplayer_id": 3545, "cardmarket_id": 7366, "name": "Martyr's Cry", "lang": "en", "released_at": "1994-08-01", "uri": "https://api.scryfall.com/cards/e2c9f463-d1cc-4f11-aad2-d4a4520aa978", "scryfall_uri": "https://scryfall.com/card/drk/12/martyrs-cry?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/e/2/e2c9f463-d1cc-4f11-aad2-d4a4520aa978.jpg?1562949002", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/2/e2c9f463-d1cc-4f11-aad2-d4a4520aa978.jpg?1562949002", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/e/2/e2c9f463-d1cc-4f11-aad2-d4a4520aa978.jpg?1562949002", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/e/2/e2c9f463-d1cc-4f11-aad2-d4a4520aa978.png?1562949002", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/2/e2c9f463-d1cc-4f11-aad2-d4a4520aa978.jpg?1562949002", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/e/2/e2c9f463-d1cc-4f11-aad2-d4a4520aa978.jpg?1562949002"}, "mana_cost": "{W}{W}", "cmc": 2.0, "type_line": "Sorcery", "oracle_text": "Exile all white creatures. For each creature exiled this way, its controller draws a card.", "colors": ["W"], "color_identity": ["W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": true, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "a21c6836-c435-459a-81e3-22d2da174549", "set": "drk", "set_name": "The Dark", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/a21c6836-c435-459a-81e3-22d2da174549", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Adrk&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/drk?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/e2c9f463-d1cc-4f11-aad2-d4a4520aa978/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ab636f17d-b54a-4a72-9a5e-ce13e7b4f00a&unique=prints", "collector_number": "12", "digital": false, "rarity": "rare", "flavor_text": "\"It is only fitting that one such as I should die in pursuit of knowledge.\" \u2014Vervamon the Elder", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Jeff A. Menges", "artist_ids": ["14a1de4b-1237-4e7b-8868-b71e87c9a46e"], "illustration_id": "0aef0388-3a19-4731-ab0e-b357216099ba", "border_color": "black", "frame": "1993", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 17840, "penny_rank": 12426, "prices": {"usd": "22.02", "usd_foil": null, "usd_etched": null, "eur": "30.65", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=1812", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Martyr%27s+Cry&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Martyr%27s+Cry&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Martyr%27s+Cry"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/3545?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Martyr%27s+Cry&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Martyr%27s+Cry&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "f05f5d93-50d1-4aa6-af05-383a6808345b", "oracle_id": "ce1866e9-28de-4bcc-9999-11958e6c13a6", "multiverse_ids": [21324], "mtgo_id": 13997, "mtgo_foil_id": 13998, "tcgplayer_id": 7179, "cardmarket_id": 11781, "name": "Massacre", "lang": "en", "released_at": "2000-02-14", "uri": "https://api.scryfall.com/cards/f05f5d93-50d1-4aa6-af05-383a6808345b", "scryfall_uri": "https://scryfall.com/card/nem/58/massacre?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/f/0/f05f5d93-50d1-4aa6-af05-383a6808345b.jpg?1562632742", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/0/f05f5d93-50d1-4aa6-af05-383a6808345b.jpg?1562632742", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/f/0/f05f5d93-50d1-4aa6-af05-383a6808345b.jpg?1562632742", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/f/0/f05f5d93-50d1-4aa6-af05-383a6808345b.png?1562632742", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/0/f05f5d93-50d1-4aa6-af05-383a6808345b.jpg?1562632742", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/f/0/f05f5d93-50d1-4aa6-af05-383a6808345b.jpg?1562632742"}, "mana_cost": "{2}{B}{B}", "cmc": 4.0, "type_line": "Sorcery", "oracle_text": "If an opponent controls a Plains and you control a Swamp, you may cast this spell without paying its mana cost.\nAll creatures get -2/-2 until end of turn.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "fa5d1fdb-f781-473d-b14d-50396d40d43f", "set": "nem", "set_name": "Nemesis", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/fa5d1fdb-f781-473d-b14d-50396d40d43f", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Anem&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/nem?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/f05f5d93-50d1-4aa6-af05-383a6808345b/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ace1866e9-28de-4bcc-9999-11958e6c13a6&unique=prints", "collector_number": "58", "digital": false, "rarity": "uncommon", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Pete Venters", "artist_ids": ["d54c4a1a-c0c5-4834-84db-125d341f3ad8"], "illustration_id": "3cbb90d3-2add-463c-bee3-056dfcd37899", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 9697, "prices": {"usd": "0.51", "usd_foil": "29.75", "usd_etched": null, "eur": "0.89", "eur_foil": "37.75", "tix": "0.77"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=21324", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Massacre&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Massacre&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Massacre"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/7179?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Massacre&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/13997?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "3d24be94-9922-43bb-83c8-98090adc3f32", "oracle_id": "3ab3996f-aa3f-4041-8634-8e197d51f108", "multiverse_ids": [146053], "mtgo_id": 29447, "mtgo_foil_id": 29448, "tcgplayer_id": 18701, "cardmarket_id": 19026, "name": "Mass Calcify", "lang": "en", "released_at": "2008-05-02", "uri": "https://api.scryfall.com/cards/3d24be94-9922-43bb-83c8-98090adc3f32", "scryfall_uri": "https://scryfall.com/card/shm/12/mass-calcify?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/3/d/3d24be94-9922-43bb-83c8-98090adc3f32.jpg?1562829041", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/d/3d24be94-9922-43bb-83c8-98090adc3f32.jpg?1562829041", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/3/d/3d24be94-9922-43bb-83c8-98090adc3f32.jpg?1562829041", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/3/d/3d24be94-9922-43bb-83c8-98090adc3f32.png?1562829041", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/d/3d24be94-9922-43bb-83c8-98090adc3f32.jpg?1562829041", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/3/d/3d24be94-9922-43bb-83c8-98090adc3f32.jpg?1562829041"}, "mana_cost": "{5}{W}{W}", "cmc": 7.0, "type_line": "Sorcery", "oracle_text": "Destroy all nonwhite creatures.", "colors": ["W"], "color_identity": ["W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "c18c0ba1-2081-4808-9b2e-549bc3a666f3", "set": "shm", "set_name": "Shadowmoor", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/c18c0ba1-2081-4808-9b2e-549bc3a666f3", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ashm&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/shm?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/3d24be94-9922-43bb-83c8-98090adc3f32/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A3ab3996f-aa3f-4041-8634-8e197d51f108&unique=prints", "collector_number": "12", "digital": false, "rarity": "rare", "flavor_text": "The dead serve as their own tombstones.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Brandon Kitkouski", "artist_ids": ["0330b5e8-2cf0-4ecb-8fd7-e20a18bdeb20"], "illustration_id": "e7666531-b9c6-40f8-bde9-4eaaf76d4fa5", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 3302, "penny_rank": 7278, "prices": {"usd": "1.20", "usd_foil": "7.34", "usd_etched": null, "eur": "0.64", "eur_foil": "3.50", "tix": "0.01"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=146053", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Mass+Calcify&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Mass+Calcify&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Mass+Calcify"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/18701?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Mass+Calcify&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/29447?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "675640ba-37e7-4231-8524-87e8b87ea46f", "oracle_id": "5731ecb5-6ddc-4452-990c-b69986367f25", "multiverse_ids": [452826], "mtgo_id": 69525, "arena_id": 68537, "tcgplayer_id": 176933, "cardmarket_id": 364270, "name": "Mephitic Vapors", "lang": "en", "released_at": "2018-10-05", "uri": "https://api.scryfall.com/cards/675640ba-37e7-4231-8524-87e8b87ea46f", "scryfall_uri": "https://scryfall.com/card/grn/76/mephitic-vapors?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/6/7/675640ba-37e7-4231-8524-87e8b87ea46f.jpg?1572892991", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/7/675640ba-37e7-4231-8524-87e8b87ea46f.jpg?1572892991", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/6/7/675640ba-37e7-4231-8524-87e8b87ea46f.jpg?1572892991", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/6/7/675640ba-37e7-4231-8524-87e8b87ea46f.png?1572892991", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/7/675640ba-37e7-4231-8524-87e8b87ea46f.jpg?1572892991", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/6/7/675640ba-37e7-4231-8524-87e8b87ea46f.jpg?1572892991"}, "mana_cost": "{2}{B}", "cmc": 3.0, "type_line": "Sorcery", "oracle_text": "All creatures get -1/-1 until end of turn.\nSurveil 2. (Look at the top two cards of your library, then put any number of them into your graveyard and the rest on top of your library in any order.)", "colors": ["B"], "color_identity": ["B"], "keywords": ["Surveil"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "597c6d4a-8212-4903-a6af-12c4ae9e13f0", "set": "grn", "set_name": "Guilds of Ravnica", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/597c6d4a-8212-4903-a6af-12c4ae9e13f0", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Agrn&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/grn?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/675640ba-37e7-4231-8524-87e8b87ea46f/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A5731ecb5-6ddc-4452-990c-b69986367f25&unique=prints", "collector_number": "76", "digital": false, "rarity": "common", "watermark": "dimir", "flavor_text": "Ravnica's safest strongholds are often neither.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Darek Zabrocki", "artist_ids": ["904ed2e7-9850-4472-802f-2657c53dd4d8"], "illustration_id": "0510c0e9-1ddf-45f7-8818-fe9aabf58e50", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 14845, "penny_rank": 11354, "prices": {"usd": "0.02", "usd_foil": "0.17", "usd_etched": null, "eur": "0.02", "eur_foil": "0.35", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=452826", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Mephitic+Vapors&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Mephitic+Vapors&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Mephitic+Vapors"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/176933?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Mephitic+Vapors&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/69525?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "d9876a4c-714b-47e5-9589-148a623af96a", "oracle_id": "3c8d4999-e18b-48d8-8ed9-f2feaa38300d", "multiverse_ids": [366316], "mtgo_id": 47749, "mtgo_foil_id": 47750, "tcgplayer_id": 67445, "cardmarket_id": 259952, "name": "Merciless Eviction", "lang": "en", "released_at": "2013-02-01", "uri": "https://api.scryfall.com/cards/d9876a4c-714b-47e5-9589-148a623af96a", "scryfall_uri": "https://scryfall.com/card/gtc/177/merciless-eviction?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/d/9/d9876a4c-714b-47e5-9589-148a623af96a.jpg?1561848654", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/9/d9876a4c-714b-47e5-9589-148a623af96a.jpg?1561848654", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/d/9/d9876a4c-714b-47e5-9589-148a623af96a.jpg?1561848654", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/d/9/d9876a4c-714b-47e5-9589-148a623af96a.png?1561848654", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/9/d9876a4c-714b-47e5-9589-148a623af96a.jpg?1561848654", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/d/9/d9876a4c-714b-47e5-9589-148a623af96a.jpg?1561848654"}, "mana_cost": "{4}{W}{B}", "cmc": 6.0, "type_line": "Sorcery", "oracle_text": "Choose one \u2014\n\u2022 Exile all artifacts.\n\u2022 Exile all creatures.\n\u2022 Exile all enchantments.\n\u2022 Exile all planeswalkers.", "colors": ["B", "W"], "color_identity": ["B", "W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "035a05f7-e020-4f50-a141-ed16ba704bd2", "set": "gtc", "set_name": "Gatecrash", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/035a05f7-e020-4f50-a141-ed16ba704bd2", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Agtc&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/gtc?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/d9876a4c-714b-47e5-9589-148a623af96a/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A3c8d4999-e18b-48d8-8ed9-f2feaa38300d&unique=prints", "collector_number": "177", "digital": false, "rarity": "rare", "watermark": "orzhov", "flavor_text": "\"I once saw the Obzedat moved to action. Since that day, I've been thankful that they're mainly lazy, and dead.\"\n\u2014Aurelia, to Gideon Jura", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Richard Wright", "artist_ids": ["7b1b0ce9-2c58-4321-a2a7-cdc94feae082"], "illustration_id": "845c2339-fc42-4184-a220-4899c5186bf8", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 552, "penny_rank": 3566, "prices": {"usd": "1.52", "usd_foil": "6.48", "usd_etched": null, "eur": "1.55", "eur_foil": "7.99", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=366316", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Merciless+Eviction&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Merciless+Eviction&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Merciless+Eviction"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/67445?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Merciless+Eviction&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/47749?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "544b2931-0af1-4743-b7c1-91e1dc9294d5", "oracle_id": "48ddba1e-2ad7-463f-9307-d2379a800e51", "multiverse_ids": [567620], "tcgplayer_id": 273799, "cardmarket_id": 661944, "name": "Mizzium Mortars", "lang": "en", "released_at": "2022-06-10", "uri": "https://api.scryfall.com/cards/544b2931-0af1-4743-b7c1-91e1dc9294d5", "scryfall_uri": "https://scryfall.com/card/clb/803/mizzium-mortars?utm_source=api", "layout": "normal", "highres_image": false, "image_status": "lowres", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/5/4/544b2931-0af1-4743-b7c1-91e1dc9294d5.jpg?1654120304", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/4/544b2931-0af1-4743-b7c1-91e1dc9294d5.jpg?1654120304", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/5/4/544b2931-0af1-4743-b7c1-91e1dc9294d5.jpg?1654120304", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/5/4/544b2931-0af1-4743-b7c1-91e1dc9294d5.png?1654120304", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/4/544b2931-0af1-4743-b7c1-91e1dc9294d5.jpg?1654120304", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/5/4/544b2931-0af1-4743-b7c1-91e1dc9294d5.jpg?1654120304"}, "mana_cost": "{1}{R}", "cmc": 2.0, "type_line": "Sorcery", "oracle_text": "Mizzium Mortars deals 4 damage to target creature you don't control.\nOverload {3}{R}{R}{R} (You may cast this spell for its overload cost. If you do, change \"target\" in its text to \"each.\")", "colors": ["R"], "color_identity": ["R"], "keywords": ["Overload"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "5e4c3fe8-fd57-4b20-ad56-c03790a16cea", "set": "clb", "set_name": "Commander Legends: Battle for Baldur's Gate", "set_type": "draft_innovation", "set_uri": "https://api.scryfall.com/sets/5e4c3fe8-fd57-4b20-ad56-c03790a16cea", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aclb&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/clb?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/544b2931-0af1-4743-b7c1-91e1dc9294d5/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A48ddba1e-2ad7-463f-9307-d2379a800e51&unique=prints", "collector_number": "803", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Christina Davis", "artist_ids": ["01352a25-8032-471e-a6b1-c9642b1ee825"], "illustration_id": "b9adb8a2-7ae1-4bcf-8566-6e5314fe49bc", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "edhrec_rank": 1647, "penny_rank": 704, "prices": {"usd": "0.19", "usd_foil": null, "usd_etched": null, "eur": "0.21", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=567620", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Mizzium+Mortars&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Mizzium+Mortars&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Mizzium+Mortars"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/273799?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Mizzium+Mortars&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Mizzium+Mortars&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "d4ded88d-2688-4f5e-a8b2-16216cf9c792", "oracle_id": "48ddba1e-2ad7-463f-9307-d2379a800e51", "multiverse_ids": [253632], "mtgo_id": 46473, "mtgo_foil_id": 46474, "tcgplayer_id": 66387, "cardmarket_id": 258312, "name": "Mizzium Mortars", "lang": "en", "released_at": "2012-10-05", "uri": "https://api.scryfall.com/cards/d4ded88d-2688-4f5e-a8b2-16216cf9c792", "scryfall_uri": "https://scryfall.com/card/rtr/101/mizzium-mortars?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/d/4/d4ded88d-2688-4f5e-a8b2-16216cf9c792.jpg?1562793745", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/4/d4ded88d-2688-4f5e-a8b2-16216cf9c792.jpg?1562793745", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/d/4/d4ded88d-2688-4f5e-a8b2-16216cf9c792.jpg?1562793745", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/d/4/d4ded88d-2688-4f5e-a8b2-16216cf9c792.png?1562793745", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/4/d4ded88d-2688-4f5e-a8b2-16216cf9c792.jpg?1562793745", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/d/4/d4ded88d-2688-4f5e-a8b2-16216cf9c792.jpg?1562793745"}, "mana_cost": "{1}{R}", "cmc": 2.0, "type_line": "Sorcery", "oracle_text": "Mizzium Mortars deals 4 damage to target creature you don't control.\nOverload {3}{R}{R}{R} (You may cast this spell for its overload cost. If you do, change \"target\" in its text to \"each.\")", "colors": ["R"], "color_identity": ["R"], "keywords": ["Overload"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "80b2374d-c5f1-403e-9772-f6c806fd275e", "set": "rtr", "set_name": "Return to Ravnica", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/80b2374d-c5f1-403e-9772-f6c806fd275e", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Artr&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/rtr?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/d4ded88d-2688-4f5e-a8b2-16216cf9c792/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A48ddba1e-2ad7-463f-9307-d2379a800e51&unique=prints", "collector_number": "101", "digital": false, "rarity": "rare", "watermark": "izzet", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Noah Bradley", "artist_ids": ["81995d11-da98-4f8b-89bd-b88ca2ddb06b"], "illustration_id": "20f3b2cc-4218-473f-b8e3-20554794cfed", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 1647, "penny_rank": 704, "prices": {"usd": "0.40", "usd_foil": "3.42", "usd_etched": null, "eur": "0.37", "eur_foil": "1.49", "tix": "0.01"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=253632", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Mizzium+Mortars&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Mizzium+Mortars&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Mizzium+Mortars"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/66387?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Mizzium+Mortars&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/46473?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "5a91aa6f-cb2f-4aad-9415-bba4eb9b76ca", "oracle_id": "cfd61b53-83c6-4886-8503-ddcb92dc7f85", "multiverse_ids": [5107], "mtgo_id": 10179, "mtgo_foil_id": 10180, "tcgplayer_id": 5378, "cardmarket_id": 9178, "name": "Mogg Infestation", "lang": "en", "released_at": "1998-03-02", "uri": "https://api.scryfall.com/cards/5a91aa6f-cb2f-4aad-9415-bba4eb9b76ca", "scryfall_uri": "https://scryfall.com/card/sth/93/mogg-infestation?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/5/a/5a91aa6f-cb2f-4aad-9415-bba4eb9b76ca.jpg?1562596412", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/a/5a91aa6f-cb2f-4aad-9415-bba4eb9b76ca.jpg?1562596412", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/5/a/5a91aa6f-cb2f-4aad-9415-bba4eb9b76ca.jpg?1562596412", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/5/a/5a91aa6f-cb2f-4aad-9415-bba4eb9b76ca.png?1562596412", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/a/5a91aa6f-cb2f-4aad-9415-bba4eb9b76ca.jpg?1562596412", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/5/a/5a91aa6f-cb2f-4aad-9415-bba4eb9b76ca.jpg?1562596412"}, "mana_cost": "{3}{R}{R}", "cmc": 5.0, "type_line": "Sorcery", "oracle_text": "Destroy all creatures target player controls. For each creature that died this way, that player creates two 1/1 red Goblin creature tokens.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "all_parts": [{"object": "related_card", "id": "5a91aa6f-cb2f-4aad-9415-bba4eb9b76ca", "component": "combo_piece", "name": "Mogg Infestation", "type_line": "Sorcery", "uri": "https://api.scryfall.com/cards/5a91aa6f-cb2f-4aad-9415-bba4eb9b76ca"}, {"object": "related_card", "id": "062043de-a199-408d-8d77-09531ad38b16", "component": "token", "name": "Goblin", "type_line": "Token Creature \u2014 Goblin", "uri": "https://api.scryfall.com/cards/062043de-a199-408d-8d77-09531ad38b16"}], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "5c83396a-d386-4367-926b-571a75b086a3", "set": "sth", "set_name": "Stronghold", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/5c83396a-d386-4367-926b-571a75b086a3", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Asth&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/sth?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/5a91aa6f-cb2f-4aad-9415-bba4eb9b76ca/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Acfd61b53-83c6-4886-8503-ddcb92dc7f85&unique=prints", "collector_number": "93", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Pete Venters", "artist_ids": ["d54c4a1a-c0c5-4834-84db-125d341f3ad8"], "illustration_id": "7bda7a62-3af6-4b0f-b2c5-3cfffac43bfd", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 6890, "prices": {"usd": "10.34", "usd_foil": null, "usd_etched": null, "eur": "3.25", "eur_foil": null, "tix": "0.24"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=5107", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Mogg+Infestation&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Mogg+Infestation&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Mogg+Infestation"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/5378?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Mogg+Infestation&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/10179?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "31e0713c-dbf4-4403-ae69-58fd483e2481", "oracle_id": "21390513-1ed0-48f2-a7fa-020da8f803c0", "multiverse_ids": [136154], "mtgo_id": 26862, "mtgo_foil_id": 26863, "tcgplayer_id": 14942, "cardmarket_id": 15094, "name": "Molten Disaster", "lang": "en", "released_at": "2007-05-04", "uri": "https://api.scryfall.com/cards/31e0713c-dbf4-4403-ae69-58fd483e2481", "scryfall_uri": "https://scryfall.com/card/fut/102/molten-disaster?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/3/1/31e0713c-dbf4-4403-ae69-58fd483e2481.jpg?1562905110", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/1/31e0713c-dbf4-4403-ae69-58fd483e2481.jpg?1562905110", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/3/1/31e0713c-dbf4-4403-ae69-58fd483e2481.jpg?1562905110", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/3/1/31e0713c-dbf4-4403-ae69-58fd483e2481.png?1562905110", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/1/31e0713c-dbf4-4403-ae69-58fd483e2481.jpg?1562905110", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/3/1/31e0713c-dbf4-4403-ae69-58fd483e2481.jpg?1562905110"}, "mana_cost": "{X}{R}{R}", "cmc": 2.0, "type_line": "Sorcery", "oracle_text": "Kicker {R} (You may pay an additional {R} as you cast this spell.)\nIf this spell was kicked, it has split second. (As long as this spell is on the stack, players can't cast spells or activate abilities that aren't mana abilities.)\nMolten Disaster deals X damage to each creature without flying and each player.", "colors": ["R"], "color_identity": ["R"], "keywords": ["Kicker"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "bf951ddb-4445-4923-87cb-3fe4ac3c6b9a", "set": "fut", "set_name": "Future Sight", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/bf951ddb-4445-4923-87cb-3fe4ac3c6b9a", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Afut&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/fut?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/31e0713c-dbf4-4403-ae69-58fd483e2481/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A21390513-1ed0-48f2-a7fa-020da8f803c0&unique=prints", "collector_number": "102", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Ittoku", "artist_ids": ["d3a47c28-84e9-4b53-a236-5066ae1bb62f"], "illustration_id": "bbf80862-0e9e-4fd5-aeae-83bea9ea1ae5", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 4774, "penny_rank": 5386, "prices": {"usd": "0.53", "usd_foil": "2.68", "usd_etched": null, "eur": "0.52", "eur_foil": "3.90", "tix": "0.01"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=136154", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Molten+Disaster&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Molten+Disaster&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Molten+Disaster"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/14942?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Molten+Disaster&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/26862?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "c48bc86b-df0a-4a9c-8aad-c3ffb742a5ff", "oracle_id": "698e79ec-c2bc-4973-a095-f3c57b50e39c", "multiverse_ids": [265134], "mtgo_id": 45652, "mtgo_foil_id": 45653, "tcgplayer_id": 59900, "cardmarket_id": 256992, "name": "Mutilate", "lang": "en", "released_at": "2012-07-13", "uri": "https://api.scryfall.com/cards/c48bc86b-df0a-4a9c-8aad-c3ffb742a5ff", "scryfall_uri": "https://scryfall.com/card/m13/102/mutilate?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/c/4/c48bc86b-df0a-4a9c-8aad-c3ffb742a5ff.jpg?1588005547", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/4/c48bc86b-df0a-4a9c-8aad-c3ffb742a5ff.jpg?1588005547", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/c/4/c48bc86b-df0a-4a9c-8aad-c3ffb742a5ff.jpg?1588005547", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/c/4/c48bc86b-df0a-4a9c-8aad-c3ffb742a5ff.png?1588005547", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/4/c48bc86b-df0a-4a9c-8aad-c3ffb742a5ff.jpg?1588005547", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/c/4/c48bc86b-df0a-4a9c-8aad-c3ffb742a5ff.jpg?1588005547"}, "mana_cost": "{2}{B}{B}", "cmc": 4.0, "type_line": "Sorcery", "oracle_text": "All creatures get -1/-1 until end of turn for each Swamp you control.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "f9b0c6f4-8a4f-4f36-ad3c-e1e16fb8535d", "set": "m13", "set_name": "Magic 2013", "set_type": "core", "set_uri": "https://api.scryfall.com/sets/f9b0c6f4-8a4f-4f36-ad3c-e1e16fb8535d", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Am13&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/m13?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/c48bc86b-df0a-4a9c-8aad-c3ffb742a5ff/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A698e79ec-c2bc-4973-a095-f3c57b50e39c&unique=prints", "collector_number": "102", "digital": false, "rarity": "rare", "flavor_text": "\"It's only torture if you're strong enough to survive. Otherwise, it's a simple, gruesome death. I'm happy either way.\"\n\u2014Liliana Vess", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Tyler Jacobson", "artist_ids": ["522af130-8db4-4b4b-950c-6e2b246339cf"], "illustration_id": "dadbfc62-7647-4540-95f8-21fafada6717", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 1624, "penny_rank": 1668, "prices": {"usd": "1.59", "usd_foil": "4.19", "usd_etched": null, "eur": "1.52", "eur_foil": "2.99", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=265134", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Mutilate&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Mutilate&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Mutilate"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/59900?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Mutilate&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/45652?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "d9cbdabf-18e3-4c0c-b37b-097aaa650066", "oracle_id": "698e79ec-c2bc-4973-a095-f3c57b50e39c", "multiverse_ids": [201819], "mtgo_id": 34948, "mtgo_foil_id": 34949, "tcgplayer_id": 37676, "cardmarket_id": 21992, "name": "Mutilate", "lang": "en", "released_at": "2009-10-30", "uri": "https://api.scryfall.com/cards/d9cbdabf-18e3-4c0c-b37b-097aaa650066", "scryfall_uri": "https://scryfall.com/card/ddd/55/mutilate?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/d/9/d9cbdabf-18e3-4c0c-b37b-097aaa650066.jpg?1562090221", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/9/d9cbdabf-18e3-4c0c-b37b-097aaa650066.jpg?1562090221", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/d/9/d9cbdabf-18e3-4c0c-b37b-097aaa650066.jpg?1562090221", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/d/9/d9cbdabf-18e3-4c0c-b37b-097aaa650066.png?1562090221", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/9/d9cbdabf-18e3-4c0c-b37b-097aaa650066.jpg?1562090221", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/d/9/d9cbdabf-18e3-4c0c-b37b-097aaa650066.jpg?1562090221"}, "mana_cost": "{2}{B}{B}", "cmc": 4.0, "type_line": "Sorcery", "oracle_text": "All creatures get -1/-1 until end of turn for each Swamp you control.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "15f41db6-1810-475b-bf2c-24a488050a37", "set": "ddd", "set_name": "Duel Decks: Garruk vs. Liliana", "set_type": "duel_deck", "set_uri": "https://api.scryfall.com/sets/15f41db6-1810-475b-bf2c-24a488050a37", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Addd&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ddd?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/d9cbdabf-18e3-4c0c-b37b-097aaa650066/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A698e79ec-c2bc-4973-a095-f3c57b50e39c&unique=prints", "collector_number": "55", "digital": false, "rarity": "rare", "flavor_text": "Liliana developed a fondness for the moment when roaring becomes squealing.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Zoltan Boros & Gabor Szikszai", "artist_ids": ["1885e6cb-c827-4896-994e-3d0a027d602f", "44c3877f-8771-43dc-9e40-f4c765f59d2e"], "illustration_id": "5c65e52b-239a-4281-9d90-128cb13c559e", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "edhrec_rank": 1624, "penny_rank": 1668, "prices": {"usd": "1.95", "usd_foil": null, "usd_etched": null, "eur": "1.77", "eur_foil": null, "tix": "0.10"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=201819", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Mutilate&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Mutilate&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Mutilate"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/37676?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Mutilate&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/34948?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "6189cab3-1963-4590-9cbc-7ab4a693d7c6", "oracle_id": "698e79ec-c2bc-4973-a095-f3c57b50e39c", "multiverse_ids": [35194], "mtgo_id": 17337, "mtgo_foil_id": 17338, "tcgplayer_id": 9674, "cardmarket_id": 2342, "name": "Mutilate", "lang": "en", "released_at": "2002-02-04", "uri": "https://api.scryfall.com/cards/6189cab3-1963-4590-9cbc-7ab4a693d7c6", "scryfall_uri": "https://scryfall.com/card/tor/73/mutilate?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/6/1/6189cab3-1963-4590-9cbc-7ab4a693d7c6.jpg?1562629994", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/1/6189cab3-1963-4590-9cbc-7ab4a693d7c6.jpg?1562629994", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/6/1/6189cab3-1963-4590-9cbc-7ab4a693d7c6.jpg?1562629994", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/6/1/6189cab3-1963-4590-9cbc-7ab4a693d7c6.png?1562629994", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/1/6189cab3-1963-4590-9cbc-7ab4a693d7c6.jpg?1562629994", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/6/1/6189cab3-1963-4590-9cbc-7ab4a693d7c6.jpg?1562629994"}, "mana_cost": "{2}{B}{B}", "cmc": 4.0, "type_line": "Sorcery", "oracle_text": "All creatures get -1/-1 until end of turn for each Swamp you control.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "e0b3fda1-a6ca-4996-849b-08b463d39484", "set": "tor", "set_name": "Torment", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/e0b3fda1-a6ca-4996-849b-08b463d39484", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ator&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/tor?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/6189cab3-1963-4590-9cbc-7ab4a693d7c6/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A698e79ec-c2bc-4973-a095-f3c57b50e39c&unique=prints", "collector_number": "73", "digital": false, "rarity": "rare", "flavor_text": "\"They appreciate my handiwork. I hear their joy in every scream.\"\n\u2014Chainer, dementia master", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Eric Peterson", "artist_ids": ["0fc26d3b-4c0e-41d1-8eb3-286ab55a2328"], "illustration_id": "69368abd-dda7-4259-89ec-77f2545078a3", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 1624, "penny_rank": 1668, "prices": {"usd": "3.67", "usd_foil": "68.58", "usd_etched": null, "eur": "1.50", "eur_foil": "33.33", "tix": "0.21"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=35194", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Mutilate&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Mutilate&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Mutilate"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/9674?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Mutilate&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/17337?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "5950f52a-493e-432e-9175-0272c0edb232", "oracle_id": "d119ca9a-ee82-42c2-81e6-684205ca5183", "multiverse_ids": [4232], "tcgplayer_id": 734, "cardmarket_id": 10011, "name": "Nature's Ruin", "lang": "en", "released_at": "1997-05-01", "uri": "https://api.scryfall.com/cards/5950f52a-493e-432e-9175-0272c0edb232", "scryfall_uri": "https://scryfall.com/card/por/103/natures-ruin?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/5/9/5950f52a-493e-432e-9175-0272c0edb232.jpg?1562446647", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/9/5950f52a-493e-432e-9175-0272c0edb232.jpg?1562446647", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/5/9/5950f52a-493e-432e-9175-0272c0edb232.jpg?1562446647", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/5/9/5950f52a-493e-432e-9175-0272c0edb232.png?1562446647", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/9/5950f52a-493e-432e-9175-0272c0edb232.jpg?1562446647", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/5/9/5950f52a-493e-432e-9175-0272c0edb232.jpg?1562446647"}, "mana_cost": "{2}{B}", "cmc": 3.0, "type_line": "Sorcery", "oracle_text": "Destroy all green creatures.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "478c47df-5058-4ce6-830e-7e80732b2ca9", "set": "por", "set_name": "Portal", "set_type": "starter", "set_uri": "https://api.scryfall.com/sets/478c47df-5058-4ce6-830e-7e80732b2ca9", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Apor&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/por?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/5950f52a-493e-432e-9175-0272c0edb232/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ad119ca9a-ee82-42c2-81e6-684205ca5183&unique=prints", "collector_number": "103", "digital": false, "rarity": "uncommon", "flavor_text": "One chill blast\u2014the exhalation of the grave.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Mike Dringenberg", "artist_ids": ["a1407afa-0f54-43f8-938b-88b268074f91"], "illustration_id": "9a3571c6-e8b1-4aa8-bfcd-f10f77ac4be3", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 18871, "penny_rank": 8527, "prices": {"usd": "0.65", "usd_foil": null, "usd_etched": null, "eur": "0.25", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=4232", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Nature%27s+Ruin&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Nature%27s+Ruin&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Nature%27s+Ruin"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/734?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Nature%27s+Ruin&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Nature%27s+Ruin&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "2569173f-df5e-4518-9fb3-f972210595df", "oracle_id": "2b8abae2-dd15-41ee-81ae-6a463723b43e", "multiverse_ids": [413639], "mtgo_id": 60931, "mtgo_foil_id": 60932, "tcgplayer_id": 118482, "cardmarket_id": 290225, "name": "Nausea", "lang": "en", "released_at": "2016-06-10", "uri": "https://api.scryfall.com/cards/2569173f-df5e-4518-9fb3-f972210595df", "scryfall_uri": "https://scryfall.com/card/ema/97/nausea?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/2/5/2569173f-df5e-4518-9fb3-f972210595df.jpg?1580014299", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/5/2569173f-df5e-4518-9fb3-f972210595df.jpg?1580014299", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/2/5/2569173f-df5e-4518-9fb3-f972210595df.jpg?1580014299", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/2/5/2569173f-df5e-4518-9fb3-f972210595df.png?1580014299", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/5/2569173f-df5e-4518-9fb3-f972210595df.jpg?1580014299", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/2/5/2569173f-df5e-4518-9fb3-f972210595df.jpg?1580014299"}, "mana_cost": "{1}{B}", "cmc": 2.0, "type_line": "Sorcery", "oracle_text": "All creatures get -1/-1 until end of turn.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "1f29f022-3ace-4c96-85e8-1f7b63aadf7e", "set": "ema", "set_name": "Eternal Masters", "set_type": "masters", "set_uri": "https://api.scryfall.com/sets/1f29f022-3ace-4c96-85e8-1f7b63aadf7e", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aema&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ema?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/2569173f-df5e-4518-9fb3-f972210595df/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A2b8abae2-dd15-41ee-81ae-6a463723b43e&unique=prints", "collector_number": "97", "digital": false, "rarity": "common", "flavor_text": "\"Was it something I said?\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Willian Murai", "artist_ids": ["5a553c8e-e3b9-40e0-bde5-1db621c53939"], "illustration_id": "1e43be0d-84e6-42be-9c65-f24629921546", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 19270, "penny_rank": 9231, "prices": {"usd": "0.06", "usd_foil": "0.11", "usd_etched": null, "eur": "0.02", "eur_foil": "0.12", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=413639", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Nausea&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Nausea&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Nausea"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/118482?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Nausea&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/60931?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "b71315e3-14c1-433b-97be-2cdf99213bba", "oracle_id": "2b8abae2-dd15-41ee-81ae-6a463723b43e", "multiverse_ids": [25623], "mtgo_id": 15710, "mtgo_foil_id": 15711, "tcgplayer_id": 3005, "cardmarket_id": 2910, "name": "Nausea", "lang": "en", "released_at": "2001-04-11", "uri": "https://api.scryfall.com/cards/b71315e3-14c1-433b-97be-2cdf99213bba", "scryfall_uri": "https://scryfall.com/card/7ed/148/nausea?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/b/7/b71315e3-14c1-433b-97be-2cdf99213bba.jpg?1562246310", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/7/b71315e3-14c1-433b-97be-2cdf99213bba.jpg?1562246310", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/b/7/b71315e3-14c1-433b-97be-2cdf99213bba.jpg?1562246310", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/b/7/b71315e3-14c1-433b-97be-2cdf99213bba.png?1562246310", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/7/b71315e3-14c1-433b-97be-2cdf99213bba.jpg?1562246310", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/b/7/b71315e3-14c1-433b-97be-2cdf99213bba.jpg?1562246310"}, "mana_cost": "{1}{B}", "cmc": 2.0, "type_line": "Sorcery", "oracle_text": "All creatures get -1/-1 until end of turn.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "230f38aa-9511-4db8-a3aa-aeddbc3f7bb9", "set": "7ed", "set_name": "Seventh Edition", "set_type": "core", "set_uri": "https://api.scryfall.com/sets/230f38aa-9511-4db8-a3aa-aeddbc3f7bb9", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3A7ed&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/7ed?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/b71315e3-14c1-433b-97be-2cdf99213bba/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A2b8abae2-dd15-41ee-81ae-6a463723b43e&unique=prints", "collector_number": "148", "digital": false, "rarity": "common", "flavor_text": "No fear. No sense. And soon, no lunch.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "James Bernardin", "artist_ids": ["9b287d6b-17a3-4e6e-8221-5057166fd608"], "illustration_id": "896db766-4f66-4c44-b46e-3e1218f4059e", "border_color": "white", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 19270, "penny_rank": 9231, "prices": {"usd": "0.14", "usd_foil": "6.26", "usd_etched": null, "eur": "0.10", "eur_foil": "11.54", "tix": "0.06"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=25623", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Nausea&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Nausea&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Nausea"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/3005?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Nausea&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/15710?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "a10531d8-fc99-4a2b-94b0-97a25521d725", "oracle_id": "2b8abae2-dd15-41ee-81ae-6a463723b43e", "multiverse_ids": [6088], "mtgo_id": 10595, "mtgo_foil_id": 10596, "tcgplayer_id": 4357, "cardmarket_id": 9295, "name": "Nausea", "lang": "en", "released_at": "1998-06-15", "uri": "https://api.scryfall.com/cards/a10531d8-fc99-4a2b-94b0-97a25521d725", "scryfall_uri": "https://scryfall.com/card/exo/67/nausea?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/a/1/a10531d8-fc99-4a2b-94b0-97a25521d725.jpg?1562088332", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/1/a10531d8-fc99-4a2b-94b0-97a25521d725.jpg?1562088332", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/a/1/a10531d8-fc99-4a2b-94b0-97a25521d725.jpg?1562088332", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/a/1/a10531d8-fc99-4a2b-94b0-97a25521d725.png?1562088332", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/1/a10531d8-fc99-4a2b-94b0-97a25521d725.jpg?1562088332", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/a/1/a10531d8-fc99-4a2b-94b0-97a25521d725.jpg?1562088332"}, "mana_cost": "{1}{B}", "cmc": 2.0, "type_line": "Sorcery", "oracle_text": "All creatures get -1/-1 until end of turn.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "1401f7af-2e71-476d-9813-991084ed0bb9", "set": "exo", "set_name": "Exodus", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/1401f7af-2e71-476d-9813-991084ed0bb9", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aexo&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/exo?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/a10531d8-fc99-4a2b-94b0-97a25521d725/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A2b8abae2-dd15-41ee-81ae-6a463723b43e&unique=prints", "collector_number": "67", "digital": false, "rarity": "common", "flavor_text": "Any mogg will tell you there's nothing more nauseating than the smell of cute.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Jeff Miracola", "artist_ids": ["9b465bde-3656-4495-ace4-af4ce29999ed"], "illustration_id": "cfc8f6b0-55f9-4057-8f4b-6b007a93b319", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 19270, "penny_rank": 9231, "prices": {"usd": "0.12", "usd_foil": null, "usd_etched": null, "eur": "0.10", "eur_foil": null, "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=6088", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Nausea&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Nausea&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Nausea"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/4357?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Nausea&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/10595?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "9462680e-b83d-44cc-a7a6-505fbc69ab41", "oracle_id": "b48a149c-aead-43b2-a99e-c964d6d28aa0", "multiverse_ids": [389614], "mtgo_id": 55123, "mtgo_foil_id": 55124, "tcgplayer_id": 94128, "cardmarket_id": 270454, "name": "Necromantic Selection", "lang": "en", "released_at": "2014-11-07", "uri": "https://api.scryfall.com/cards/9462680e-b83d-44cc-a7a6-505fbc69ab41", "scryfall_uri": "https://scryfall.com/card/c14/26/necromantic-selection?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/9/4/9462680e-b83d-44cc-a7a6-505fbc69ab41.jpg?1561950631", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/4/9462680e-b83d-44cc-a7a6-505fbc69ab41.jpg?1561950631", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/9/4/9462680e-b83d-44cc-a7a6-505fbc69ab41.jpg?1561950631", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/9/4/9462680e-b83d-44cc-a7a6-505fbc69ab41.png?1561950631", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/4/9462680e-b83d-44cc-a7a6-505fbc69ab41.jpg?1561950631", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/9/4/9462680e-b83d-44cc-a7a6-505fbc69ab41.jpg?1561950631"}, "mana_cost": "{4}{B}{B}{B}", "cmc": 7.0, "type_line": "Sorcery", "oracle_text": "Destroy all creatures, then return a creature card put into a graveyard this way to the battlefield under your control. It's a black Zombie in addition to its other colors and types. Exile Necromantic Selection.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "0980a6e2-eb78-4ad2-8396-cef08fce365e", "set": "c14", "set_name": "Commander 2014", "set_type": "commander", "set_uri": "https://api.scryfall.com/sets/0980a6e2-eb78-4ad2-8396-cef08fce365e", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ac14&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/c14?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/9462680e-b83d-44cc-a7a6-505fbc69ab41/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ab48a149c-aead-43b2-a99e-c964d6d28aa0&unique=prints", "collector_number": "26", "digital": false, "rarity": "rare", "flavor_text": "It shambled from the cloud of ash and bone dust, undeterred by its own extinction.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Dave Kendall", "artist_ids": ["8a5540a8-18c9-4fa9-802c-59d6866114d5"], "illustration_id": "872cdb07-38bd-450d-aef5-6a05fc860a81", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "edhrec_rank": 1852, "prices": {"usd": "0.52", "usd_foil": null, "usd_etched": null, "eur": "0.20", "eur_foil": null, "tix": "8.29"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=389614", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Necromantic+Selection&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Necromantic+Selection&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Necromantic+Selection"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/94128?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Necromantic+Selection&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/55123?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "be80dd2d-f595-4d80-84ae-66d3d18e7399", "oracle_id": "1f513d1e-03ca-4e0f-af48-6490d71d5c41", "multiverse_ids": [4775], "mtgo_id": 10029, "mtgo_foil_id": 10030, "tcgplayer_id": 5649, "cardmarket_id": 8870, "name": "Needle Storm", "lang": "en", "released_at": "1997-10-14", "uri": "https://api.scryfall.com/cards/be80dd2d-f595-4d80-84ae-66d3d18e7399", "scryfall_uri": "https://scryfall.com/card/tmp/241/needle-storm?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/b/e/be80dd2d-f595-4d80-84ae-66d3d18e7399.jpg?1562056388", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/e/be80dd2d-f595-4d80-84ae-66d3d18e7399.jpg?1562056388", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/b/e/be80dd2d-f595-4d80-84ae-66d3d18e7399.jpg?1562056388", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/b/e/be80dd2d-f595-4d80-84ae-66d3d18e7399.png?1562056388", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/e/be80dd2d-f595-4d80-84ae-66d3d18e7399.jpg?1562056388", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/b/e/be80dd2d-f595-4d80-84ae-66d3d18e7399.jpg?1562056388"}, "mana_cost": "{2}{G}", "cmc": 3.0, "type_line": "Sorcery", "oracle_text": "Needle Storm deals 4 damage to each creature with flying.", "colors": ["G"], "color_identity": ["G"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "10df3a67-178e-4363-8668-34f0e6edf2a7", "set": "tmp", "set_name": "Tempest", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/10df3a67-178e-4363-8668-34f0e6edf2a7", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Atmp&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/tmp?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/be80dd2d-f595-4d80-84ae-66d3d18e7399/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A1f513d1e-03ca-4e0f-af48-6490d71d5c41&unique=prints", "collector_number": "241", "digital": false, "rarity": "uncommon", "flavor_text": "The rain is driven like nails.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Val Mayerik", "artist_ids": ["289e552e-3b58-484f-a939-64a01426e84d"], "illustration_id": "f22a9200-1969-4e95-9223-b165523cfb12", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 21539, "penny_rank": 5972, "prices": {"usd": "0.11", "usd_foil": null, "usd_etched": null, "eur": "0.20", "eur_foil": null, "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=4775", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Needle+Storm&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Needle+Storm&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Needle+Storm"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/5649?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Needle+Storm&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/10029?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "29a44e44-94b1-4bd2-8e00-6bd2ec07ee4c", "oracle_id": "1f513d1e-03ca-4e0f-af48-6490d71d5c41", "multiverse_ids": [4311], "tcgplayer_id": 735, "cardmarket_id": 10090, "name": "Needle Storm", "lang": "en", "released_at": "1997-05-01", "uri": "https://api.scryfall.com/cards/29a44e44-94b1-4bd2-8e00-6bd2ec07ee4c", "scryfall_uri": "https://scryfall.com/card/por/179/needle-storm?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/2/9/29a44e44-94b1-4bd2-8e00-6bd2ec07ee4c.jpg?1562446151", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/9/29a44e44-94b1-4bd2-8e00-6bd2ec07ee4c.jpg?1562446151", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/2/9/29a44e44-94b1-4bd2-8e00-6bd2ec07ee4c.jpg?1562446151", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/2/9/29a44e44-94b1-4bd2-8e00-6bd2ec07ee4c.png?1562446151", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/9/29a44e44-94b1-4bd2-8e00-6bd2ec07ee4c.jpg?1562446151", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/2/9/29a44e44-94b1-4bd2-8e00-6bd2ec07ee4c.jpg?1562446151"}, "mana_cost": "{2}{G}", "cmc": 3.0, "type_line": "Sorcery", "oracle_text": "Needle Storm deals 4 damage to each creature with flying.", "colors": ["G"], "color_identity": ["G"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "478c47df-5058-4ce6-830e-7e80732b2ca9", "set": "por", "set_name": "Portal", "set_type": "starter", "set_uri": "https://api.scryfall.com/sets/478c47df-5058-4ce6-830e-7e80732b2ca9", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Apor&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/por?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/29a44e44-94b1-4bd2-8e00-6bd2ec07ee4c/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A1f513d1e-03ca-4e0f-af48-6490d71d5c41&unique=prints", "collector_number": "179", "digital": false, "rarity": "uncommon", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Charles Gillespie", "artist_ids": ["ec2c14ea-79eb-4c55-963f-c46f7cef1c22"], "illustration_id": "30bb8bb8-064b-489d-9779-1d31736975ff", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 21539, "penny_rank": 5972, "prices": {"usd": "0.14", "usd_foil": null, "usd_etched": null, "eur": "0.40", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=4311", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Needle+Storm&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Needle+Storm&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Needle+Storm"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/735?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Needle+Storm&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Needle+Storm&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "95c0ff1b-bd97-4115-8486-62a18bab2610", "oracle_id": "285fecb7-f872-454d-ac2f-bc5615c70cd8", "multiverse_ids": [470566], "mtgo_id": 77094, "tcgplayer_id": 196687, "cardmarket_id": 392582, "name": "Nightmare Unmaking", "lang": "en", "released_at": "2019-08-23", "uri": "https://api.scryfall.com/cards/95c0ff1b-bd97-4115-8486-62a18bab2610", "scryfall_uri": "https://scryfall.com/card/c19/20/nightmare-unmaking?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/9/5/95c0ff1b-bd97-4115-8486-62a18bab2610.jpg?1568003505", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/5/95c0ff1b-bd97-4115-8486-62a18bab2610.jpg?1568003505", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/9/5/95c0ff1b-bd97-4115-8486-62a18bab2610.jpg?1568003505", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/9/5/95c0ff1b-bd97-4115-8486-62a18bab2610.png?1568003505", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/5/95c0ff1b-bd97-4115-8486-62a18bab2610.jpg?1568003505", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/9/5/95c0ff1b-bd97-4115-8486-62a18bab2610.jpg?1568003505"}, "mana_cost": "{3}{B}{B}", "cmc": 5.0, "type_line": "Sorcery", "oracle_text": "Choose one \u2014\n\u2022 Exile each creature with power greater than the number of cards in your hand.\n\u2022 Exile each creature with power less than the number of cards in your hand.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "0fa3ccbb-d86d-4a2e-a55e-c4979c4feeb2", "set": "c19", "set_name": "Commander 2019", "set_type": "commander", "set_uri": "https://api.scryfall.com/sets/0fa3ccbb-d86d-4a2e-a55e-c4979c4feeb2", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ac19&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/c19?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/95c0ff1b-bd97-4115-8486-62a18bab2610/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A285fecb7-f872-454d-ac2f-bc5615c70cd8&unique=prints", "collector_number": "20", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Izzy", "artist_ids": ["2c3d2473-ff5d-4309-8194-e0b2def2ab65"], "illustration_id": "b0bd3e9b-3371-4387-aea0-4215d95ecd4a", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "edhrec_rank": 4480, "preview": {"source": "Salty Commander", "source_uri": "https://www.youtube.com/watch?v=hAonLhi8bew", "previewed_at": "2019-08-08"}, "prices": {"usd": "0.22", "usd_foil": null, "usd_etched": null, "eur": "0.40", "eur_foil": null, "tix": "0.18"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=470566", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Nightmare+Unmaking&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Nightmare+Unmaking&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Nightmare+Unmaking"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/196687?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Nightmare+Unmaking&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/77094?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "daa2f963-9d16-4224-b24e-b6a79f2b9d75", "oracle_id": "acf388b2-c4e3-4f1b-a16c-88f991d5c17b", "multiverse_ids": [476439], "mtgo_id": 79500, "arena_id": 70699, "tcgplayer_id": 206689, "cardmarket_id": 430304, "name": "Nylea's Intervention", "lang": "en", "released_at": "2020-01-24", "uri": "https://api.scryfall.com/cards/daa2f963-9d16-4224-b24e-b6a79f2b9d75", "scryfall_uri": "https://scryfall.com/card/thb/188/nyleas-intervention?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/d/a/daa2f963-9d16-4224-b24e-b6a79f2b9d75.jpg?1581480794", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/a/daa2f963-9d16-4224-b24e-b6a79f2b9d75.jpg?1581480794", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/d/a/daa2f963-9d16-4224-b24e-b6a79f2b9d75.jpg?1581480794", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/d/a/daa2f963-9d16-4224-b24e-b6a79f2b9d75.png?1581480794", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/a/daa2f963-9d16-4224-b24e-b6a79f2b9d75.jpg?1581480794", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/d/a/daa2f963-9d16-4224-b24e-b6a79f2b9d75.jpg?1581480794"}, "mana_cost": "{X}{G}{G}", "cmc": 2.0, "type_line": "Sorcery", "oracle_text": "Choose one \u2014\n\u2022 Search your library for up to X land cards, reveal them, put them into your hand, then shuffle.\n\u2022 Nylea's Intervention deals twice X damage to each creature with flying.", "colors": ["G"], "color_identity": ["G"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "5f23a78d-cda1-462a-8be3-a62b40c34913", "set": "thb", "set_name": "Theros Beyond Death", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/5f23a78d-cda1-462a-8be3-a62b40c34913", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Athb&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/thb?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/daa2f963-9d16-4224-b24e-b6a79f2b9d75/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aacf388b2-c4e3-4f1b-a16c-88f991d5c17b&unique=prints", "collector_number": "188", "digital": false, "rarity": "rare", "flavor_text": "\"I bring a wilderness no law can tame.\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Zezhou Chen", "artist_ids": ["810677e5-a502-4c03-b726-78cd808a75d4"], "illustration_id": "50d065ef-66d7-4375-bda2-79b0048b3c4d", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 1950, "penny_rank": 1331, "preview": {"source": "CoolStuffInc", "source_uri": "https://www.coolstuffinc.com/a/jimdavis-01022020-mind-spring-and-sylvan-scrying-had-a-baby", "previewed_at": "2020-01-02"}, "prices": {"usd": "0.39", "usd_foil": "0.93", "usd_etched": null, "eur": "0.38", "eur_foil": "0.75", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=476439", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Nylea%27s+Intervention&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Nylea%27s+Intervention&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Nylea%27s+Intervention"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/206689?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Nylea%27s+Intervention&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/79500?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "cdabde40-2143-4677-b7b4-ea8fbf9b1f25", "oracle_id": "47496941-8007-45a0-a981-76c683cbddc1", "multiverse_ids": [23098], "mtgo_id": 14377, "mtgo_foil_id": 14378, "tcgplayer_id": 7570, "cardmarket_id": 3566, "name": "Obliterate", "lang": "en", "released_at": "2000-10-02", "uri": "https://api.scryfall.com/cards/cdabde40-2143-4677-b7b4-ea8fbf9b1f25", "scryfall_uri": "https://scryfall.com/card/inv/156/obliterate?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/c/d/cdabde40-2143-4677-b7b4-ea8fbf9b1f25.jpg?1562936357", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/d/cdabde40-2143-4677-b7b4-ea8fbf9b1f25.jpg?1562936357", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/c/d/cdabde40-2143-4677-b7b4-ea8fbf9b1f25.jpg?1562936357", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/c/d/cdabde40-2143-4677-b7b4-ea8fbf9b1f25.png?1562936357", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/d/cdabde40-2143-4677-b7b4-ea8fbf9b1f25.jpg?1562936357", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/c/d/cdabde40-2143-4677-b7b4-ea8fbf9b1f25.jpg?1562936357"}, "mana_cost": "{6}{R}{R}", "cmc": 8.0, "type_line": "Sorcery", "oracle_text": "This spell can't be countered.\nDestroy all artifacts, creatures, and lands. They can't be regenerated.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "b9ae5e02-7726-47ca-b5e4-5ec402b41cd1", "set": "inv", "set_name": "Invasion", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/b9ae5e02-7726-47ca-b5e4-5ec402b41cd1", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ainv&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/inv?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/cdabde40-2143-4677-b7b4-ea8fbf9b1f25/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A47496941-8007-45a0-a981-76c683cbddc1&unique=prints", "collector_number": "156", "digital": false, "rarity": "rare", "flavor_text": "For his family, Barrin made a funeral pyre of Tolaria.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Kev Walker", "artist_ids": ["f366a0ee-a0cd-466d-ba6a-90058c7a31a6"], "illustration_id": "8c72fdff-a3a4-42a0-a5cb-c39a8716c26f", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 5015, "penny_rank": 1278, "prices": {"usd": "6.00", "usd_foil": "83.16", "usd_etched": null, "eur": "3.45", "eur_foil": "92.65", "tix": "0.18"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=23098", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Obliterate&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Obliterate&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Obliterate"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/7570?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Obliterate&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/14377?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "830d5f87-1c8b-414a-a91e-4805f5bdca54", "oracle_id": "ef2ca5fc-aadb-4490-98b0-fa34d9554c27", "multiverse_ids": [439404], "tcgplayer_id": 153200, "cardmarket_id": 313935, "name": "Oddly Uneven", "lang": "en", "released_at": "2017-12-08", "uri": "https://api.scryfall.com/cards/830d5f87-1c8b-414a-a91e-4805f5bdca54", "scryfall_uri": "https://scryfall.com/card/ust/15/oddly-uneven?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/8/3/830d5f87-1c8b-414a-a91e-4805f5bdca54.jpg?1562922623", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/3/830d5f87-1c8b-414a-a91e-4805f5bdca54.jpg?1562922623", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/8/3/830d5f87-1c8b-414a-a91e-4805f5bdca54.jpg?1562922623", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/8/3/830d5f87-1c8b-414a-a91e-4805f5bdca54.png?1562922623", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/3/830d5f87-1c8b-414a-a91e-4805f5bdca54.jpg?1562922623", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/8/3/830d5f87-1c8b-414a-a91e-4805f5bdca54.jpg?1562922623"}, "mana_cost": "{3}{W}{W}", "cmc": 5.0, "type_line": "Sorcery", "oracle_text": "Choose one \u2014\n\u2022 Destroy each creature with an odd number of words in its name. (Hyphenated words are one word.)\n\u2022 Destroy each creature with an even number of words in its name.", "colors": ["W"], "color_identity": ["W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "not_legal", "pauper": "not_legal", "vintage": "not_legal", "penny": "not_legal", "commander": "not_legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "not_legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "83491685-880d-41dd-a4af-47d2b3b17c10", "set": "ust", "set_name": "Unstable", "set_type": "funny", "set_uri": "https://api.scryfall.com/sets/83491685-880d-41dd-a4af-47d2b3b17c10", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aust&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ust?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/830d5f87-1c8b-414a-a91e-4805f5bdca54/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aef2ca5fc-aadb-4490-98b0-fa34d9554c27&unique=prints", "collector_number": "15", "digital": false, "rarity": "rare", "flavor_text": "The odds are good, but the goods are odd.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Ben Wootten", "artist_ids": ["31cdca96-ecde-4245-bfb6-653929d57d9c"], "illustration_id": "f969d6cb-bf57-4233-8f79-64743cefcf2b", "border_color": "silver", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "prices": {"usd": "0.22", "usd_foil": "0.51", "usd_etched": null, "eur": "0.15", "eur_foil": "0.73", "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=439404", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Oddly+Uneven&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Oddly+Uneven&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Oddly+Uneven"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/153200?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Oddly+Uneven&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Oddly+Uneven&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "98893cc1-f502-4ca6-b6c1-e09fa1f4ef7a", "oracle_id": "9aebd891-c8c5-4309-a07b-6cab1b204172", "multiverse_ids": [546984], "tcgplayer_id": 254304, "cardmarket_id": 584034, "name": "Olivia's Wrath", "lang": "en", "released_at": "2021-11-19", "uri": "https://api.scryfall.com/cards/98893cc1-f502-4ca6-b6c1-e09fa1f4ef7a", "scryfall_uri": "https://scryfall.com/card/voc/20/olivias-wrath?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/9/8/98893cc1-f502-4ca6-b6c1-e09fa1f4ef7a.jpg?1641600703", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/8/98893cc1-f502-4ca6-b6c1-e09fa1f4ef7a.jpg?1641600703", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/9/8/98893cc1-f502-4ca6-b6c1-e09fa1f4ef7a.jpg?1641600703", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/9/8/98893cc1-f502-4ca6-b6c1-e09fa1f4ef7a.png?1641600703", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/8/98893cc1-f502-4ca6-b6c1-e09fa1f4ef7a.jpg?1641600703", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/9/8/98893cc1-f502-4ca6-b6c1-e09fa1f4ef7a.jpg?1641600703"}, "mana_cost": "{4}{B}", "cmc": 5.0, "type_line": "Sorcery", "oracle_text": "Each non-Vampire creature gets -X/-X until end of turn, where X is the number of Vampires you control.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "b2e444f7-41e6-4172-ba01-47d91d5e7bbc", "set": "voc", "set_name": "Crimson Vow Commander", "set_type": "commander", "set_uri": "https://api.scryfall.com/sets/b2e444f7-41e6-4172-ba01-47d91d5e7bbc", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Avoc&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/voc?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/98893cc1-f502-4ca6-b6c1-e09fa1f4ef7a/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A9aebd891-c8c5-4309-a07b-6cab1b204172&unique=prints", "collector_number": "20", "digital": false, "rarity": "rare", "flavor_text": "\"These worthless cattle think they can sneak unnoticed into my wedding? Dispose of them.\"\n\u2014Olivia Voldaren", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Nestor Ossandon Leal", "artist_ids": ["7a6f1667-a8ac-47f5-a302-f71cb54b2adf"], "illustration_id": "42f6539f-8555-4613-a316-3d43bfeef9db", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "edhrec_rank": 3922, "prices": {"usd": "0.56", "usd_foil": null, "usd_etched": null, "eur": "0.85", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=546984", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Olivia%27s+Wrath&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Olivia%27s+Wrath&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Olivia%27s+Wrath"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/254304?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Olivia%27s+Wrath&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Olivia%27s+Wrath&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "fea0f8be-c242-49dd-bae3-0b306107ac0b", "oracle_id": "d9e24d7c-0907-45c1-b5d3-9fb16a929868", "multiverse_ids": [553905], "mtgo_id": 97764, "tcgplayer_id": 263100, "cardmarket_id": 608588, "name": "Organic Extinction", "lang": "en", "released_at": "2022-02-18", "uri": "https://api.scryfall.com/cards/fea0f8be-c242-49dd-bae3-0b306107ac0b", "scryfall_uri": "https://scryfall.com/card/nec/8/organic-extinction?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/f/e/fea0f8be-c242-49dd-bae3-0b306107ac0b.jpg?1651655197", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/e/fea0f8be-c242-49dd-bae3-0b306107ac0b.jpg?1651655197", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/f/e/fea0f8be-c242-49dd-bae3-0b306107ac0b.jpg?1651655197", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/f/e/fea0f8be-c242-49dd-bae3-0b306107ac0b.png?1651655197", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/e/fea0f8be-c242-49dd-bae3-0b306107ac0b.jpg?1651655197", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/f/e/fea0f8be-c242-49dd-bae3-0b306107ac0b.jpg?1651655197"}, "mana_cost": "{8}{W}{W}", "cmc": 10.0, "type_line": "Sorcery", "oracle_text": "Improvise (Your artifacts can help cast this spell. Each artifact you tap after you're done activating mana abilities pays for {1}.)\nDestroy all nonartifact creatures.", "colors": ["W"], "color_identity": ["W"], "keywords": ["Improvise"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "5b4d929d-bdf9-4bbf-858e-e248f53325ad", "set": "nec", "set_name": "Neon Dynasty Commander", "set_type": "commander", "set_uri": "https://api.scryfall.com/sets/5b4d929d-bdf9-4bbf-858e-e248f53325ad", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Anec&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/nec?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/fea0f8be-c242-49dd-bae3-0b306107ac0b/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ad9e24d7c-0907-45c1-b5d3-9fb16a929868&unique=prints", "collector_number": "8", "digital": false, "rarity": "rare", "flavor_text": "\"Technology evolves faster than a blade can swing.\"\n\u2014Arima, lead inventor of the Futurists", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Cristi Balanescu", "artist_ids": ["c09ede88-a1b5-4a18-9895-dc8a965d28a5"], "illustration_id": "64bc8810-10f4-4e5c-9e8a-611615523847", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "edhrec_rank": 3620, "prices": {"usd": "0.46", "usd_foil": null, "usd_etched": null, "eur": "0.75", "eur_foil": null, "tix": "0.42"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=553905", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Organic+Extinction&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Organic+Extinction&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Organic+Extinction"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/263100?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Organic+Extinction&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/97764?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "f43c30d9-23a5-4872-925d-3427f5f57995", "oracle_id": "05079cee-b190-42d7-b59f-130cb545cab7", "multiverse_ids": [24613], "mtgo_id": 14277, "mtgo_foil_id": 14278, "tcgplayer_id": 7339, "cardmarket_id": 3965, "name": "Outbreak", "lang": "en", "released_at": "2000-06-05", "uri": "https://api.scryfall.com/cards/f43c30d9-23a5-4872-925d-3427f5f57995", "scryfall_uri": "https://scryfall.com/card/pcy/71/outbreak?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/f/4/f43c30d9-23a5-4872-925d-3427f5f57995.jpg?1562940897", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/4/f43c30d9-23a5-4872-925d-3427f5f57995.jpg?1562940897", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/f/4/f43c30d9-23a5-4872-925d-3427f5f57995.jpg?1562940897", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/f/4/f43c30d9-23a5-4872-925d-3427f5f57995.png?1562940897", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/4/f43c30d9-23a5-4872-925d-3427f5f57995.jpg?1562940897", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/f/4/f43c30d9-23a5-4872-925d-3427f5f57995.jpg?1562940897"}, "mana_cost": "{3}{B}", "cmc": 4.0, "type_line": "Sorcery", "oracle_text": "You may discard a Swamp card rather than pay this spell's mana cost.\nChoose a creature type. All creatures of that type get -1/-1 until end of turn.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "c233bd36-57c0-4aa2-ae6c-7aeabfb4e3ce", "set": "pcy", "set_name": "Prophecy", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/c233bd36-57c0-4aa2-ae6c-7aeabfb4e3ce", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Apcy&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/pcy?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/f43c30d9-23a5-4872-925d-3427f5f57995/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A05079cee-b190-42d7-b59f-130cb545cab7&unique=prints", "collector_number": "71", "digital": false, "rarity": "uncommon", "flavor_text": "This plague chooses its victims.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Quinton Hoover", "artist_ids": ["1a2db619-92a5-431a-822b-101cdcc5bd5d"], "illustration_id": "d5338c25-7d1c-4aa3-87a9-ed948a7d34ac", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 21544, "prices": {"usd": "0.13", "usd_foil": "3.75", "usd_etched": null, "eur": "0.05", "eur_foil": "1.10", "tix": "0.11"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=24613", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Outbreak&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Outbreak&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Outbreak"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/7339?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Outbreak&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/14277?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "56eae179-f850-4661-b3f0-4d10be77ed8a", "oracle_id": "25e1d5fe-c2d8-4a11-ad54-bf1626f9ab45", "multiverse_ids": [518468], "mtgo_id": 89887, "tcgplayer_id": 236277, "cardmarket_id": 559087, "name": "Oversimplify", "lang": "en", "released_at": "2021-04-23", "uri": "https://api.scryfall.com/cards/56eae179-f850-4661-b3f0-4d10be77ed8a", "scryfall_uri": "https://scryfall.com/card/c21/72/oversimplify?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/5/6/56eae179-f850-4661-b3f0-4d10be77ed8a.jpg?1629806259", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/6/56eae179-f850-4661-b3f0-4d10be77ed8a.jpg?1629806259", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/5/6/56eae179-f850-4661-b3f0-4d10be77ed8a.jpg?1629806259", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/5/6/56eae179-f850-4661-b3f0-4d10be77ed8a.png?1629806259", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/6/56eae179-f850-4661-b3f0-4d10be77ed8a.jpg?1629806259", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/5/6/56eae179-f850-4661-b3f0-4d10be77ed8a.jpg?1629806259"}, "mana_cost": "{3}{G}{U}", "cmc": 5.0, "type_line": "Sorcery", "oracle_text": "Exile all creatures. Each player creates a 0/0 green and blue Fractal creature token and puts a number of +1/+1 counters on it equal to the total power of creatures they controlled that were exiled this way.", "colors": ["G", "U"], "color_identity": ["G", "U"], "keywords": [], "all_parts": [{"object": "related_card", "id": "56eae179-f850-4661-b3f0-4d10be77ed8a", "component": "combo_piece", "name": "Oversimplify", "type_line": "Sorcery", "uri": "https://api.scryfall.com/cards/56eae179-f850-4661-b3f0-4d10be77ed8a"}, {"object": "related_card", "id": "910f48ab-b04e-4874-b31d-a86a7bc5af14", "component": "token", "name": "Fractal", "type_line": "Token Creature \u2014 Fractal", "uri": "https://api.scryfall.com/cards/910f48ab-b04e-4874-b31d-a86a7bc5af14"}], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "27bf6dbd-a9e1-4904-afa7-d28fc7745c4f", "set": "c21", "set_name": "Commander 2021", "set_type": "commander", "set_uri": "https://api.scryfall.com/sets/27bf6dbd-a9e1-4904-afa7-d28fc7745c4f", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ac21&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/c21?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/56eae179-f850-4661-b3f0-4d10be77ed8a/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A25e1d5fe-c2d8-4a11-ad54-bf1626f9ab45&unique=prints", "collector_number": "72", "digital": false, "rarity": "rare", "watermark": "quandrix", "flavor_text": "\"A fine example of addition by subtraction.\"\n\u2014Deekah, professor of fractal theory", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Liiga Smilshkalne", "artist_ids": ["5a50ced2-b301-4195-8af4-f7e1bae07d28"], "illustration_id": "efc27ecb-f15c-453d-be56-e50cac2ab8d5", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "edhrec_rank": 3764, "prices": {"usd": "0.27", "usd_foil": null, "usd_etched": null, "eur": "0.15", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=518468", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Oversimplify&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Oversimplify&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Oversimplify"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/236277?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Oversimplify&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/89887?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "c56c7fb4-8b7b-40fc-879c-76cfb5d417b8", "oracle_id": "bdccceb6-ad3c-4a75-a8a6-ca796ede4185", "multiverse_ids": [10521], "tcgplayer_id": 503, "cardmarket_id": 11272, "name": "Overwhelming Forces", "lang": "en", "released_at": "1999-07-06", "uri": "https://api.scryfall.com/cards/c56c7fb4-8b7b-40fc-879c-76cfb5d417b8", "scryfall_uri": "https://scryfall.com/card/ptk/79/overwhelming-forces?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/c/5/c56c7fb4-8b7b-40fc-879c-76cfb5d417b8.jpg?1562257531", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/5/c56c7fb4-8b7b-40fc-879c-76cfb5d417b8.jpg?1562257531", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/c/5/c56c7fb4-8b7b-40fc-879c-76cfb5d417b8.jpg?1562257531", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/c/5/c56c7fb4-8b7b-40fc-879c-76cfb5d417b8.png?1562257531", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/5/c56c7fb4-8b7b-40fc-879c-76cfb5d417b8.jpg?1562257531", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/c/5/c56c7fb4-8b7b-40fc-879c-76cfb5d417b8.jpg?1562257531"}, "mana_cost": "{6}{B}{B}", "cmc": 8.0, "type_line": "Sorcery", "oracle_text": "Destroy all creatures target opponent controls. Draw a card for each creature destroyed this way.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "2676ff2e-9d86-4b5b-b935-e84e41b0755e", "set": "ptk", "set_name": "Portal Three Kingdoms", "set_type": "starter", "set_uri": "https://api.scryfall.com/sets/2676ff2e-9d86-4b5b-b935-e84e41b0755e", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aptk&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ptk?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/c56c7fb4-8b7b-40fc-879c-76cfb5d417b8/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Abdccceb6-ad3c-4a75-a8a6-ca796ede4185&unique=prints", "collector_number": "79", "digital": false, "rarity": "rare", "flavor_text": "By the year 208, Cao Cao commanded more than 1,000 experienced generals and a million infantry, cavalry, and naval troops.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Gao Yan", "artist_ids": ["0d253eb0-2579-4201-bde4-f0a9f0963827"], "illustration_id": "19c19878-d5be-45c2-add1-34cd846722b1", "border_color": "white", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 13856, "prices": {"usd": "350.23", "usd_foil": null, "usd_etched": null, "eur": "15.99", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=10521", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Overwhelming+Forces&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Overwhelming+Forces&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Overwhelming+Forces"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/503?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Overwhelming+Forces&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Overwhelming+Forces&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "d870e607-1607-46f3-bc9f-925d0164bcf9", "oracle_id": "c8ca2523-0511-4415-b85e-7834d3cb1d0c", "multiverse_ids": [80291], "mtgo_id": 21543, "mtgo_foil_id": 21544, "tcgplayer_id": 12131, "cardmarket_id": 12150, "name": "Part the Veil", "lang": "en", "released_at": "2004-10-01", "uri": "https://api.scryfall.com/cards/d870e607-1607-46f3-bc9f-925d0164bcf9", "scryfall_uri": "https://scryfall.com/card/chk/77/part-the-veil?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/d/8/d870e607-1607-46f3-bc9f-925d0164bcf9.jpg?1562764693", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/8/d870e607-1607-46f3-bc9f-925d0164bcf9.jpg?1562764693", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/d/8/d870e607-1607-46f3-bc9f-925d0164bcf9.jpg?1562764693", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/d/8/d870e607-1607-46f3-bc9f-925d0164bcf9.png?1562764693", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/8/d870e607-1607-46f3-bc9f-925d0164bcf9.jpg?1562764693", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/d/8/d870e607-1607-46f3-bc9f-925d0164bcf9.jpg?1562764693"}, "mana_cost": "{3}{U}", "cmc": 4.0, "type_line": "Instant \u2014 Arcane", "oracle_text": "Return all creatures you control to their owner's hand.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "6183d21f-a0af-4118-ba58-aca1d8719c01", "set": "chk", "set_name": "Champions of Kamigawa", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/6183d21f-a0af-4118-ba58-aca1d8719c01", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Achk&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/chk?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/d870e607-1607-46f3-bc9f-925d0164bcf9/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ac8ca2523-0511-4415-b85e-7834d3cb1d0c&unique=prints", "collector_number": "77", "digital": false, "rarity": "rare", "flavor_text": "At the waterfall, the border between the humanoid and the spirit worlds was weakest. The kami moved across it with ease and at will.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Arnie Swekel", "artist_ids": ["af10ecf2-eb82-4100-97b2-6c236b0fa644"], "illustration_id": "a40c3440-faca-410d-9009-438e938f8630", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 18422, "prices": {"usd": "0.19", "usd_foil": "0.50", "usd_etched": null, "eur": "0.40", "eur_foil": "0.95", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=80291", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Part+the+Veil&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Part+the+Veil&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Part+the+Veil"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/12131?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Part+the+Veil&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/21543?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "f0c5449a-d63b-4b22-9432-8f0365c3c4d9", "oracle_id": "d41987b0-2ea0-4cc7-8608-70c486db76eb", "multiverse_ids": [540974], "mtgo_id": 94576, "arena_id": 78922, "tcgplayer_id": 252969, "cardmarket_id": 581663, "name": "Path of Peril", "lang": "en", "released_at": "2021-11-19", "uri": "https://api.scryfall.com/cards/f0c5449a-d63b-4b22-9432-8f0365c3c4d9", "scryfall_uri": "https://scryfall.com/card/vow/124/path-of-peril?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/f/0/f0c5449a-d63b-4b22-9432-8f0365c3c4d9.jpg?1643590080", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/0/f0c5449a-d63b-4b22-9432-8f0365c3c4d9.jpg?1643590080", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/f/0/f0c5449a-d63b-4b22-9432-8f0365c3c4d9.jpg?1643590080", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/f/0/f0c5449a-d63b-4b22-9432-8f0365c3c4d9.png?1643590080", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/0/f0c5449a-d63b-4b22-9432-8f0365c3c4d9.jpg?1643590080", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/f/0/f0c5449a-d63b-4b22-9432-8f0365c3c4d9.jpg?1643590080"}, "mana_cost": "{1}{B}{B}", "cmc": 3.0, "type_line": "Sorcery", "oracle_text": "Cleave {4}{W}{B} (You may cast this spell for its cleave cost. If you do, remove the words in square brackets.)\nDestroy all creatures [with mana value 2 or less].", "colors": ["B"], "color_identity": ["B", "W"], "keywords": ["Cleave"], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "8144b676-569f-4716-8005-bc8f0778f3fa", "set": "vow", "set_name": "Innistrad: Crimson Vow", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/8144b676-569f-4716-8005-bc8f0778f3fa", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Avow&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/vow?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/f0c5449a-d63b-4b22-9432-8f0365c3c4d9/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ad41987b0-2ea0-4cc7-8608-70c486db76eb&unique=prints", "collector_number": "124", "digital": false, "rarity": "rare", "flavor_text": "To Olivia's guests, a welcome. To everyone else, a warning.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Kasia 'Kafis' Zieli\u0144ska", "artist_ids": ["a662cb71-4770-4b49-8b03-2cf8497049a7"], "illustration_id": "f336939b-dff5-4444-8dc1-5facab5fa2ec", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 10453, "preview": {"source": "Destructoid", "source_uri": "https://www.destructoid.com/here-are-two-exclusive-magic-the-gathering-innistrad-crimson-vow-spoiler-cards/", "previewed_at": "2021-10-29"}, "prices": {"usd": "0.34", "usd_foil": "0.42", "usd_etched": null, "eur": "0.47", "eur_foil": "0.60", "tix": "1.18"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=540974", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Path+of+Peril&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Path+of+Peril&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Path+of+Peril"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/252969?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Path+of+Peril&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/94576?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "e47ace1d-73de-44aa-a3fe-2e2a21ebec79", "oracle_id": "dd84d291-cb7a-4f44-81cd-9f1181bb5ae5", "multiverse_ids": [4676], "mtgo_id": 9999, "mtgo_foil_id": 10000, "tcgplayer_id": 5662, "cardmarket_id": 8776, "name": "Perish", "lang": "en", "released_at": "1997-10-14", "uri": "https://api.scryfall.com/cards/e47ace1d-73de-44aa-a3fe-2e2a21ebec79", "scryfall_uri": "https://scryfall.com/card/tmp/147/perish?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/e/4/e47ace1d-73de-44aa-a3fe-2e2a21ebec79.jpg?1562057337", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/4/e47ace1d-73de-44aa-a3fe-2e2a21ebec79.jpg?1562057337", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/e/4/e47ace1d-73de-44aa-a3fe-2e2a21ebec79.jpg?1562057337", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/e/4/e47ace1d-73de-44aa-a3fe-2e2a21ebec79.png?1562057337", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/4/e47ace1d-73de-44aa-a3fe-2e2a21ebec79.jpg?1562057337", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/e/4/e47ace1d-73de-44aa-a3fe-2e2a21ebec79.jpg?1562057337"}, "mana_cost": "{2}{B}", "cmc": 3.0, "type_line": "Sorcery", "oracle_text": "Destroy all green creatures. They can't be regenerated.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "10df3a67-178e-4363-8668-34f0e6edf2a7", "set": "tmp", "set_name": "Tempest", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/10df3a67-178e-4363-8668-34f0e6edf2a7", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Atmp&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/tmp?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/e47ace1d-73de-44aa-a3fe-2e2a21ebec79/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Add84d291-cb7a-4f44-81cd-9f1181bb5ae5&unique=prints", "collector_number": "147", "digital": false, "rarity": "uncommon", "flavor_text": "\"There will come a time when the voices of soil and seedling will sing only laments.\"\n\u2014Oracle *en*-Vec", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Rebecca Guay", "artist_ids": ["f8f662fa-d597-46a3-afb2-91d6e13243e2"], "illustration_id": "aefbf475-f60a-434f-9f78-bd0873970172", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 14943, "prices": {"usd": "0.24", "usd_foil": null, "usd_etched": null, "eur": "0.54", "eur_foil": null, "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=4676", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Perish&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Perish&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Perish"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/5662?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Perish&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/9999?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "31f2cbcc-d5b8-4659-ae51-e567c555a743", "oracle_id": "8682266c-2b0f-496e-b1c6-1fb338feac24", "multiverse_ids": [518426], "mtgo_id": 89803, "tcgplayer_id": 236280, "cardmarket_id": 559077, "name": "Perplexing Test", "lang": "en", "released_at": "2021-04-23", "uri": "https://api.scryfall.com/cards/31f2cbcc-d5b8-4659-ae51-e567c555a743", "scryfall_uri": "https://scryfall.com/card/c21/30/perplexing-test?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/3/1/31f2cbcc-d5b8-4659-ae51-e567c555a743.jpg?1625191389", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/1/31f2cbcc-d5b8-4659-ae51-e567c555a743.jpg?1625191389", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/3/1/31f2cbcc-d5b8-4659-ae51-e567c555a743.jpg?1625191389", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/3/1/31f2cbcc-d5b8-4659-ae51-e567c555a743.png?1625191389", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/1/31f2cbcc-d5b8-4659-ae51-e567c555a743.jpg?1625191389", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/3/1/31f2cbcc-d5b8-4659-ae51-e567c555a743.jpg?1625191389"}, "mana_cost": "{3}{U}{U}", "cmc": 5.0, "type_line": "Instant", "oracle_text": "Choose one \u2014\n\u2022 Return all creature tokens to their owners' hands.\n\u2022 Return all nontoken creatures to their owners' hands.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "27bf6dbd-a9e1-4904-afa7-d28fc7745c4f", "set": "c21", "set_name": "Commander 2021", "set_type": "commander", "set_uri": "https://api.scryfall.com/sets/27bf6dbd-a9e1-4904-afa7-d28fc7745c4f", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ac21&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/c21?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/31f2cbcc-d5b8-4659-ae51-e567c555a743/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A8682266c-2b0f-496e-b1c6-1fb338feac24&unique=prints", "collector_number": "30", "digital": false, "rarity": "rare", "flavor_text": "\"Your proofs were a bit nontraditional, but effective nonetheless. Full marks.\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Fariba Khamseh", "artist_ids": ["f18a7bd6-4aca-4201-b2f5-942c28ee4f18"], "illustration_id": "5a22f20c-0799-4f99-afc3-12cd77fda2b4", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "edhrec_rank": 2096, "prices": {"usd": "1.92", "usd_foil": null, "usd_etched": null, "eur": "3.00", "eur_foil": null, "tix": "0.18"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=518426", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Perplexing+Test&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Perplexing+Test&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Perplexing+Test"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/236280?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Perplexing+Test&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/89803?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "08b78aa8-a63a-4aa2-bb82-3fbf2595ed7c", "oracle_id": "b24d1540-ed8b-4df3-abfe-1b8492a58388", "multiverse_ids": [485441], "mtgo_id": 81463, "arena_id": 71900, "tcgplayer_id": 215520, "cardmarket_id": 468034, "name": "Pestilent Haze", "lang": "en", "released_at": "2020-07-03", "uri": "https://api.scryfall.com/cards/08b78aa8-a63a-4aa2-bb82-3fbf2595ed7c", "scryfall_uri": "https://scryfall.com/card/m21/118/pestilent-haze?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/0/8/08b78aa8-a63a-4aa2-bb82-3fbf2595ed7c.jpg?1594736339", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/8/08b78aa8-a63a-4aa2-bb82-3fbf2595ed7c.jpg?1594736339", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/0/8/08b78aa8-a63a-4aa2-bb82-3fbf2595ed7c.jpg?1594736339", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/0/8/08b78aa8-a63a-4aa2-bb82-3fbf2595ed7c.png?1594736339", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/8/08b78aa8-a63a-4aa2-bb82-3fbf2595ed7c.jpg?1594736339", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/0/8/08b78aa8-a63a-4aa2-bb82-3fbf2595ed7c.jpg?1594736339"}, "mana_cost": "{1}{B}{B}", "cmc": 3.0, "type_line": "Sorcery", "oracle_text": "Choose one \u2014\n\u2022 All creatures get -2/-2 until end of turn.\n\u2022 Remove two loyalty counters from each planeswalker.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "bc94aba1-7376-4e02-a12d-3a2efb66ab0f", "set": "m21", "set_name": "Core Set 2021", "set_type": "core", "set_uri": "https://api.scryfall.com/sets/bc94aba1-7376-4e02-a12d-3a2efb66ab0f", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Am21&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/m21?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/08b78aa8-a63a-4aa2-bb82-3fbf2595ed7c/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ab24d1540-ed8b-4df3-abfe-1b8492a58388&unique=prints", "collector_number": "118", "digital": false, "rarity": "uncommon", "flavor_text": "\"Your crops will rot. The air itself will turn against you. You will suffer as I have suffered.\"\n\u2014Karaz, outcast", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Sidharth Chaturvedi", "artist_ids": ["55e6d846-2f73-4fba-9b88-441686bb8dcb"], "illustration_id": "842ab63a-9172-4abc-a9a3-c5b50c23a7b0", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 14203, "penny_rank": 7481, "preview": {"source": "Metabomb", "source_uri": "https://www.metabomb.net/off-meta/news/magic-the-gathering-arena-card-reveal-pestilent-haze", "previewed_at": "2020-06-08"}, "prices": {"usd": "0.03", "usd_foil": "0.13", "usd_etched": null, "eur": "0.10", "eur_foil": "0.15", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=485441", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Pestilent+Haze&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Pestilent+Haze&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Pestilent+Haze"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/215520?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Pestilent+Haze&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/81463?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "36b7536d-6b0b-4906-ba88-7fcfe9b854ee", "oracle_id": "6ef3c75d-6af2-4ea0-b98d-96c5d7d3af58", "multiverse_ids": [214048], "mtgo_id": 39515, "mtgo_foil_id": 39516, "tcgplayer_id": 39056, "cardmarket_id": 245341, "name": "Phyrexian Rebirth", "lang": "en", "released_at": "2011-02-04", "uri": "https://api.scryfall.com/cards/36b7536d-6b0b-4906-ba88-7fcfe9b854ee", "scryfall_uri": "https://scryfall.com/card/mbs/15/phyrexian-rebirth?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/3/6/36b7536d-6b0b-4906-ba88-7fcfe9b854ee.jpg?1562610586", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/6/36b7536d-6b0b-4906-ba88-7fcfe9b854ee.jpg?1562610586", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/3/6/36b7536d-6b0b-4906-ba88-7fcfe9b854ee.jpg?1562610586", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/3/6/36b7536d-6b0b-4906-ba88-7fcfe9b854ee.png?1562610586", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/6/36b7536d-6b0b-4906-ba88-7fcfe9b854ee.jpg?1562610586", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/3/6/36b7536d-6b0b-4906-ba88-7fcfe9b854ee.jpg?1562610586"}, "mana_cost": "{4}{W}{W}", "cmc": 6.0, "type_line": "Sorcery", "oracle_text": "Destroy all creatures, then create an X/X colorless Phyrexian Horror artifact creature token, where X is the number of creatures destroyed this way.", "colors": ["W"], "color_identity": ["W"], "keywords": [], "all_parts": [{"object": "related_card", "id": "36b7536d-6b0b-4906-ba88-7fcfe9b854ee", "component": "combo_piece", "name": "Phyrexian Rebirth", "type_line": "Sorcery", "uri": "https://api.scryfall.com/cards/36b7536d-6b0b-4906-ba88-7fcfe9b854ee"}, {"object": "related_card", "id": "5a4c5954-da2b-498a-9e86-eb4d6dc95cb8", "component": "token", "name": "Horror", "type_line": "Token Artifact Creature \u2014 Horror", "uri": "https://api.scryfall.com/cards/5a4c5954-da2b-498a-9e86-eb4d6dc95cb8"}], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "f46c57e3-9301-4006-a6ca-06f3f65961fb", "set": "mbs", "set_name": "Mirrodin Besieged", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/f46c57e3-9301-4006-a6ca-06f3f65961fb", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ambs&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/mbs?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/36b7536d-6b0b-4906-ba88-7fcfe9b854ee/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A6ef3c75d-6af2-4ea0-b98d-96c5d7d3af58&unique=prints", "collector_number": "15", "digital": false, "rarity": "rare", "watermark": "phyrexian", "flavor_text": "As long as one drop of the oil exists, the joyous work continues.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Scott Chou", "artist_ids": ["9e048547-f9c3-4958-9c2c-91e45df7c6ae"], "illustration_id": "5dee7001-3d6e-4562-bfa3-c539008253c8", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 2021, "penny_rank": 5593, "prices": {"usd": "0.35", "usd_foil": "2.82", "usd_etched": null, "eur": "0.25", "eur_foil": "1.50", "tix": "0.01"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=214048", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Phyrexian+Rebirth&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Phyrexian+Rebirth&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Phyrexian+Rebirth"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/39056?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Phyrexian+Rebirth&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/39515?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "b0d4bd20-7422-45ed-aa76-3ef055c556e7", "oracle_id": "18ec721f-c1ac-4581-a61d-2f0b09d6bf92", "multiverse_ids": [24622], "mtgo_id": 14147, "mtgo_foil_id": 14148, "tcgplayer_id": 7344, "cardmarket_id": 3968, "name": "Plague Wind", "lang": "en", "released_at": "2000-06-05", "uri": "https://api.scryfall.com/cards/b0d4bd20-7422-45ed-aa76-3ef055c556e7", "scryfall_uri": "https://scryfall.com/card/pcy/74/plague-wind?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/b/0/b0d4bd20-7422-45ed-aa76-3ef055c556e7.jpg?1562927896", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/0/b0d4bd20-7422-45ed-aa76-3ef055c556e7.jpg?1562927896", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/b/0/b0d4bd20-7422-45ed-aa76-3ef055c556e7.jpg?1562927896", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/b/0/b0d4bd20-7422-45ed-aa76-3ef055c556e7.png?1562927896", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/0/b0d4bd20-7422-45ed-aa76-3ef055c556e7.jpg?1562927896", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/b/0/b0d4bd20-7422-45ed-aa76-3ef055c556e7.jpg?1562927896"}, "mana_cost": "{7}{B}{B}", "cmc": 9.0, "type_line": "Sorcery", "oracle_text": "Destroy all creatures you don't control. They can't be regenerated.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "c233bd36-57c0-4aa2-ae6c-7aeabfb4e3ce", "set": "pcy", "set_name": "Prophecy", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/c233bd36-57c0-4aa2-ae6c-7aeabfb4e3ce", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Apcy&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/pcy?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/b0d4bd20-7422-45ed-aa76-3ef055c556e7/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A18ec721f-c1ac-4581-a61d-2f0b09d6bf92&unique=prints", "collector_number": "74", "digital": false, "rarity": "rare", "flavor_text": "\"The second wind of ascension is Reaver, slaying the unworthy.\"\n\u2014*Keld Triumphant*", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Alan Pollack", "artist_ids": ["70c20ea3-5ad6-4082-a337-6e994ae5828e"], "illustration_id": "df923ea8-9151-4bca-a895-d8a8eb4cb4a1", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 3732, "penny_rank": 5810, "prices": {"usd": "3.36", "usd_foil": "23.01", "usd_etched": null, "eur": "2.39", "eur_foil": "49.90", "tix": "0.20"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=24622", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Plague+Wind&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Plague+Wind&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Plague+Wind"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/7344?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Plague+Wind&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/14147?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "3a92d454-3f23-45bf-921f-25b0da4ce138", "oracle_id": "1ba36042-8902-4abb-a4ae-a8d26d81a0de", "multiverse_ids": [25859], "mtgo_id": 16232, "mtgo_foil_id": 16233, "tcgplayer_id": 8011, "cardmarket_id": 3162, "name": "Planar Despair", "lang": "en", "released_at": "2001-06-04", "uri": "https://api.scryfall.com/cards/3a92d454-3f23-45bf-921f-25b0da4ce138", "scryfall_uri": "https://scryfall.com/card/apc/50/planar-despair?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/3/a/3a92d454-3f23-45bf-921f-25b0da4ce138.jpg?1562908776", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/a/3a92d454-3f23-45bf-921f-25b0da4ce138.jpg?1562908776", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/3/a/3a92d454-3f23-45bf-921f-25b0da4ce138.jpg?1562908776", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/3/a/3a92d454-3f23-45bf-921f-25b0da4ce138.png?1562908776", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/a/3a92d454-3f23-45bf-921f-25b0da4ce138.jpg?1562908776", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/3/a/3a92d454-3f23-45bf-921f-25b0da4ce138.jpg?1562908776"}, "mana_cost": "{3}{B}{B}", "cmc": 5.0, "type_line": "Sorcery", "oracle_text": "Domain \u2014 All creatures get -1/-1 until end of turn for each basic land type among lands you control.", "colors": ["B"], "color_identity": ["B"], "keywords": ["Domain"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "e4e00913-d08d-4899-86ea-5cf631e09ce0", "set": "apc", "set_name": "Apocalypse", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/e4e00913-d08d-4899-86ea-5cf631e09ce0", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aapc&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/apc?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/3a92d454-3f23-45bf-921f-25b0da4ce138/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A1ba36042-8902-4abb-a4ae-a8d26d81a0de&unique=prints", "collector_number": "50", "digital": false, "rarity": "rare", "flavor_text": "All of Dominaria recoiled as Yawgmoth and his retainers arrived.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Mike Sass", "artist_ids": ["155bc2cb-038d-4b1f-9990-6178db1d1a21"], "illustration_id": "ae010e7f-7d15-4efc-b75a-931272fd1ece", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 20648, "penny_rank": 10672, "prices": {"usd": "0.22", "usd_foil": "9.97", "usd_etched": null, "eur": "0.28", "eur_foil": "11.00", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=25859", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Planar+Despair&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Planar+Despair&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Planar+Despair"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/8011?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Planar+Despair&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/16232?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "5f34f930-a7c6-400d-b6e8-b9908e0f0404", "oracle_id": "ff0d05b9-0c9c-4217-abd2-7e7757a0c4c9", "multiverse_ids": [401995], "mtgo_id": 58339, "mtgo_foil_id": 58340, "tcgplayer_id": 104812, "cardmarket_id": 284442, "name": "Planar Outburst", "lang": "en", "released_at": "2015-10-02", "uri": "https://api.scryfall.com/cards/5f34f930-a7c6-400d-b6e8-b9908e0f0404", "scryfall_uri": "https://scryfall.com/card/bfz/42/planar-outburst?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/5/f/5f34f930-a7c6-400d-b6e8-b9908e0f0404.jpg?1562917450", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/f/5f34f930-a7c6-400d-b6e8-b9908e0f0404.jpg?1562917450", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/5/f/5f34f930-a7c6-400d-b6e8-b9908e0f0404.jpg?1562917450", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/5/f/5f34f930-a7c6-400d-b6e8-b9908e0f0404.png?1562917450", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/f/5f34f930-a7c6-400d-b6e8-b9908e0f0404.jpg?1562917450", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/5/f/5f34f930-a7c6-400d-b6e8-b9908e0f0404.jpg?1562917450"}, "mana_cost": "{3}{W}{W}", "cmc": 5.0, "type_line": "Sorcery", "oracle_text": "Destroy all nonland creatures.\nAwaken 4\u2014{5}{W}{W}{W} (If you cast this spell for {5}{W}{W}{W}, also put four +1/+1 counters on target land you control and it becomes a 0/0 Elemental creature with haste. It's still a land.)", "colors": ["W"], "color_identity": ["W"], "keywords": ["Awaken"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "91719374-7ac5-4afa-ada8-5da964dcf1d4", "set": "bfz", "set_name": "Battle for Zendikar", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/91719374-7ac5-4afa-ada8-5da964dcf1d4", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Abfz&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/bfz?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/5f34f930-a7c6-400d-b6e8-b9908e0f0404/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aff0d05b9-0c9c-4217-abd2-7e7757a0c4c9&unique=prints", "collector_number": "42", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Vincent Proce", "artist_ids": ["d82b1138-76d3-49f7-9d8c-bc2e2d3e0b0a"], "illustration_id": "f4ab74cd-064c-4b83-99bb-fb5301527e5b", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 4083, "penny_rank": 364, "prices": {"usd": "0.18", "usd_foil": "0.41", "usd_etched": null, "eur": "0.05", "eur_foil": "0.59", "tix": "0.01"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=401995", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Planar+Outburst&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Planar+Outburst&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Planar+Outburst"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/104812?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Planar+Outburst&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/58339?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "fc21e7d5-3641-47fe-add0-8becf5173e28", "oracle_id": "e1d294e8-67b1-4a4a-86b8-f98f28a327d9", "multiverse_ids": [518417], "mtgo_id": 89785, "tcgplayer_id": 236390, "cardmarket_id": 559473, "name": "Promise of Loyalty", "lang": "en", "released_at": "2021-04-23", "uri": "https://api.scryfall.com/cards/fc21e7d5-3641-47fe-add0-8becf5173e28", "scryfall_uri": "https://scryfall.com/card/c21/21/promise-of-loyalty?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/f/c/fc21e7d5-3641-47fe-add0-8becf5173e28.jpg?1625191123", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/c/fc21e7d5-3641-47fe-add0-8becf5173e28.jpg?1625191123", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/f/c/fc21e7d5-3641-47fe-add0-8becf5173e28.jpg?1625191123", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/f/c/fc21e7d5-3641-47fe-add0-8becf5173e28.png?1625191123", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/c/fc21e7d5-3641-47fe-add0-8becf5173e28.jpg?1625191123", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/f/c/fc21e7d5-3641-47fe-add0-8becf5173e28.jpg?1625191123"}, "mana_cost": "{4}{W}", "cmc": 5.0, "type_line": "Sorcery", "oracle_text": "Each player puts a vow counter on a creature they control and sacrifices the rest. Each of those creatures can't attack you or planeswalkers you control for as long as it has a vow counter on it.", "colors": ["W"], "color_identity": ["W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "27bf6dbd-a9e1-4904-afa7-d28fc7745c4f", "set": "c21", "set_name": "Commander 2021", "set_type": "commander", "set_uri": "https://api.scryfall.com/sets/27bf6dbd-a9e1-4904-afa7-d28fc7745c4f", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ac21&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/c21?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/fc21e7d5-3641-47fe-add0-8becf5173e28/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ae1d294e8-67b1-4a4a-86b8-f98f28a327d9&unique=prints", "collector_number": "21", "digital": false, "rarity": "rare", "flavor_text": "\"It's us against the world. Forever.\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Sara Winters", "artist_ids": ["56be33dc-a2da-40e9-a4f7-94077dcea31e"], "illustration_id": "63b87e17-f4dd-4966-a26e-dba2b111698e", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "edhrec_rank": 1995, "prices": {"usd": "3.06", "usd_foil": null, "usd_etched": null, "eur": "1.06", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=518417", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Promise+of+Loyalty&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Promise+of+Loyalty&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Promise+of+Loyalty"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/236390?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Promise+of+Loyalty&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/89785?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "8d3f6cd2-0138-40e7-a975-3f7c68db0d93", "oracle_id": "4b6aa5e2-b539-46cd-804b-cd9e996a9456", "multiverse_ids": [33691], "mtgo_id": 17183, "mtgo_foil_id": 17184, "tcgplayer_id": 9647, "cardmarket_id": 2345, "name": "Psychotic Haze", "lang": "en", "released_at": "2002-02-04", "uri": "https://api.scryfall.com/cards/8d3f6cd2-0138-40e7-a975-3f7c68db0d93", "scryfall_uri": "https://scryfall.com/card/tor/76/psychotic-haze?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/8/d/8d3f6cd2-0138-40e7-a975-3f7c68db0d93.jpg?1562630817", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/d/8d3f6cd2-0138-40e7-a975-3f7c68db0d93.jpg?1562630817", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/8/d/8d3f6cd2-0138-40e7-a975-3f7c68db0d93.jpg?1562630817", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/8/d/8d3f6cd2-0138-40e7-a975-3f7c68db0d93.png?1562630817", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/d/8d3f6cd2-0138-40e7-a975-3f7c68db0d93.jpg?1562630817", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/8/d/8d3f6cd2-0138-40e7-a975-3f7c68db0d93.jpg?1562630817"}, "mana_cost": "{2}{B}{B}", "cmc": 4.0, "type_line": "Instant", "oracle_text": "Psychotic Haze deals 1 damage to each creature and each player.\nMadness {1}{B} (If you discard this card, discard it into exile. When you do, cast it for its madness cost or put it into your graveyard.)", "colors": ["B"], "color_identity": ["B"], "keywords": ["Madness"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "e0b3fda1-a6ca-4996-849b-08b463d39484", "set": "tor", "set_name": "Torment", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/e0b3fda1-a6ca-4996-849b-08b463d39484", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ator&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/tor?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/8d3f6cd2-0138-40e7-a975-3f7c68db0d93/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A4b6aa5e2-b539-46cd-804b-cd9e996a9456&unique=prints", "collector_number": "76", "digital": false, "rarity": "common", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Alex Horley-Orlandelli", "artist_ids": ["1631a2ad-bf03-4ab9-b86c-60da982d58a1"], "illustration_id": "cb0d6c75-a3de-4148-ad3e-f1be07721c52", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 8414, "penny_rank": 9968, "prices": {"usd": "0.25", "usd_foil": "8.68", "usd_etched": null, "eur": "0.19", "eur_foil": "0.20", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=33691", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Psychotic+Haze&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Psychotic+Haze&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Psychotic+Haze"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/9647?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Psychotic+Haze&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/17183?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "052b743a-456d-49c3-881e-4f30c7645fa5", "oracle_id": "e07a7c75-b7b7-4c2d-bd7d-5f056cde871d", "multiverse_ids": [19721], "mtgo_id": 13101, "mtgo_foil_id": 13102, "tcgplayer_id": 6643, "cardmarket_id": 11581, "name": "Puppet's Verdict", "lang": "en", "released_at": "1999-10-04", "uri": "https://api.scryfall.com/cards/052b743a-456d-49c3-881e-4f30c7645fa5", "scryfall_uri": "https://scryfall.com/card/mmq/208/puppets-verdict?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/0/5/052b743a-456d-49c3-881e-4f30c7645fa5.jpg?1562378946", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/5/052b743a-456d-49c3-881e-4f30c7645fa5.jpg?1562378946", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/0/5/052b743a-456d-49c3-881e-4f30c7645fa5.jpg?1562378946", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/0/5/052b743a-456d-49c3-881e-4f30c7645fa5.png?1562378946", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/5/052b743a-456d-49c3-881e-4f30c7645fa5.jpg?1562378946", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/0/5/052b743a-456d-49c3-881e-4f30c7645fa5.jpg?1562378946"}, "mana_cost": "{1}{R}{R}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Flip a coin. If you win the flip, destroy all creatures with power 2 or less. If you lose the flip, destroy all creatures with power 3 or greater.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "385e11a4-492b-4d07-b4a6-a1409ef829b8", "set": "mmq", "set_name": "Mercadian Masques", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/385e11a4-492b-4d07-b4a6-a1409ef829b8", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ammq&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/mmq?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/052b743a-456d-49c3-881e-4f30c7645fa5/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ae07a7c75-b7b7-4c2d-bd7d-5f056cde871d&unique=prints", "collector_number": "208", "digital": false, "rarity": "rare", "flavor_text": "\"What was heads again?\"\n\u2014Mercadian magistrate", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Edward P. Beard, Jr.", "artist_ids": ["b845b8ee-aeea-4822-bcf9-7230625ac95c"], "illustration_id": "a4f9912a-c288-4aec-872a-7cc76bcd3350", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 8543, "penny_rank": 13707, "prices": {"usd": "4.90", "usd_foil": "100.90", "usd_etched": null, "eur": "2.75", "eur_foil": "21.00", "tix": "0.40"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=19721", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Puppet%27s+Verdict&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Puppet%27s+Verdict&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Puppet%27s+Verdict"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/6643?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Puppet%27s+Verdict&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/13101?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "34ec6e8f-a8be-4efe-8082-d807378066b1", "oracle_id": "e4bcd4ea-e7cd-4471-8f3b-18bb51d3d70c", "multiverse_ids": [45374], "mtgo_id": 19639, "mtgo_foil_id": 19640, "tcgplayer_id": 11170, "cardmarket_id": 846, "name": "Pyroclasm", "lang": "en", "released_at": "2003-07-28", "uri": "https://api.scryfall.com/cards/34ec6e8f-a8be-4efe-8082-d807378066b1", "scryfall_uri": "https://scryfall.com/card/8ed/210/pyroclasm?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/3/4/34ec6e8f-a8be-4efe-8082-d807378066b1.jpg?1562905712", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/4/34ec6e8f-a8be-4efe-8082-d807378066b1.jpg?1562905712", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/3/4/34ec6e8f-a8be-4efe-8082-d807378066b1.jpg?1562905712", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/3/4/34ec6e8f-a8be-4efe-8082-d807378066b1.png?1562905712", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/4/34ec6e8f-a8be-4efe-8082-d807378066b1.jpg?1562905712", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/3/4/34ec6e8f-a8be-4efe-8082-d807378066b1.jpg?1562905712"}, "mana_cost": "{1}{R}", "cmc": 2.0, "type_line": "Sorcery", "oracle_text": "Pyroclasm deals 2 damage to each creature.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "cae8d29d-5979-4d8f-884d-7f3183bcc886", "set": "8ed", "set_name": "Eighth Edition", "set_type": "core", "set_uri": "https://api.scryfall.com/sets/cae8d29d-5979-4d8f-884d-7f3183bcc886", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3A8ed&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/8ed?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/34ec6e8f-a8be-4efe-8082-d807378066b1/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ae4bcd4ea-e7cd-4471-8f3b-18bb51d3d70c&unique=prints", "collector_number": "210", "digital": false, "rarity": "uncommon", "flavor_text": "\"When the air burns, only death breathes deep.\"\n\u2014Bogardan mage", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "John Avon", "artist_ids": ["798f3932-30e0-4420-aa3f-db4d613f89ca"], "illustration_id": "7cf5a2b4-8b93-419c-a719-ebd0424424a4", "border_color": "white", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 3920, "penny_rank": 427, "prices": {"usd": "0.23", "usd_foil": "3.32", "usd_etched": null, "eur": "0.02", "eur_foil": "1.64", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=45374", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Pyroclasm&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Pyroclasm&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Pyroclasm"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/11170?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Pyroclasm&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/19639?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "7afce33f-2ead-4943-9655-bff6eaa9fe6b", "oracle_id": "e4bcd4ea-e7cd-4471-8f3b-18bb51d3d70c", "multiverse_ids": [25677], "mtgo_id": 15768, "mtgo_foil_id": 15769, "tcgplayer_id": 3036, "cardmarket_id": 2971, "name": "Pyroclasm", "lang": "en", "released_at": "2001-04-11", "uri": "https://api.scryfall.com/cards/7afce33f-2ead-4943-9655-bff6eaa9fe6b", "scryfall_uri": "https://scryfall.com/card/7ed/209/pyroclasm?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/7/a/7afce33f-2ead-4943-9655-bff6eaa9fe6b.jpg?1562241054", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/a/7afce33f-2ead-4943-9655-bff6eaa9fe6b.jpg?1562241054", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/7/a/7afce33f-2ead-4943-9655-bff6eaa9fe6b.jpg?1562241054", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/7/a/7afce33f-2ead-4943-9655-bff6eaa9fe6b.png?1562241054", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/a/7afce33f-2ead-4943-9655-bff6eaa9fe6b.jpg?1562241054", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/7/a/7afce33f-2ead-4943-9655-bff6eaa9fe6b.jpg?1562241054"}, "mana_cost": "{1}{R}", "cmc": 2.0, "type_line": "Sorcery", "oracle_text": "Pyroclasm deals 2 damage to each creature.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "230f38aa-9511-4db8-a3aa-aeddbc3f7bb9", "set": "7ed", "set_name": "Seventh Edition", "set_type": "core", "set_uri": "https://api.scryfall.com/sets/230f38aa-9511-4db8-a3aa-aeddbc3f7bb9", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3A7ed&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/7ed?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/7afce33f-2ead-4943-9655-bff6eaa9fe6b/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ae4bcd4ea-e7cd-4471-8f3b-18bb51d3d70c&unique=prints", "collector_number": "209", "digital": false, "rarity": "uncommon", "flavor_text": "\"When the air burns, only death breathes deep.\"\n\u2014Bogardan mage", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Monte Michael Moore", "artist_ids": ["a77227ad-26f9-40da-b0f2-664b5196cea0"], "illustration_id": "edbf54d6-4856-48eb-9b93-8024763def93", "border_color": "white", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 3920, "penny_rank": 427, "prices": {"usd": "0.24", "usd_foil": "43.50", "usd_etched": null, "eur": "0.24", "eur_foil": "52.50", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=25677", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Pyroclasm&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Pyroclasm&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Pyroclasm"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/3036?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Pyroclasm&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/15768?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "de214247-e5e3-4d8f-935a-797218416be1", "oracle_id": "e4bcd4ea-e7cd-4471-8f3b-18bb51d3d70c", "multiverse_ids": [4354], "tcgplayer_id": 751, "cardmarket_id": 10133, "name": "Pyroclasm", "lang": "en", "released_at": "1997-05-01", "uri": "https://api.scryfall.com/cards/de214247-e5e3-4d8f-935a-797218416be1", "scryfall_uri": "https://scryfall.com/card/por/143/pyroclasm?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/d/e/de214247-e5e3-4d8f-935a-797218416be1.jpg?1562448294", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/e/de214247-e5e3-4d8f-935a-797218416be1.jpg?1562448294", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/d/e/de214247-e5e3-4d8f-935a-797218416be1.jpg?1562448294", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/d/e/de214247-e5e3-4d8f-935a-797218416be1.png?1562448294", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/e/de214247-e5e3-4d8f-935a-797218416be1.jpg?1562448294", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/d/e/de214247-e5e3-4d8f-935a-797218416be1.jpg?1562448294"}, "mana_cost": "{1}{R}", "cmc": 2.0, "type_line": "Sorcery", "oracle_text": "Pyroclasm deals 2 damage to each creature.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "478c47df-5058-4ce6-830e-7e80732b2ca9", "set": "por", "set_name": "Portal", "set_type": "starter", "set_uri": "https://api.scryfall.com/sets/478c47df-5058-4ce6-830e-7e80732b2ca9", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Apor&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/por?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/de214247-e5e3-4d8f-935a-797218416be1/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ae4bcd4ea-e7cd-4471-8f3b-18bb51d3d70c&unique=prints", "collector_number": "143", "digital": false, "rarity": "rare", "flavor_text": "Chaos does not choose its enemies.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "John Matson", "artist_ids": ["a1685587-4b55-446b-b420-c37b202ed3f1"], "illustration_id": "5d182bb9-9e9a-4fb3-bf10-e39d676d8f68", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 3920, "penny_rank": 427, "prices": {"usd": "4.12", "usd_foil": null, "usd_etched": null, "eur": "2.40", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=4354", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Pyroclasm&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Pyroclasm&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Pyroclasm"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/751?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Pyroclasm&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Pyroclasm&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "88040748-ad76-4b9a-bd4e-87e5980e9816", "oracle_id": "e4bcd4ea-e7cd-4471-8f3b-18bb51d3d70c", "multiverse_ids": [2650], "tcgplayer_id": 4849, "cardmarket_id": 6426, "name": "Pyroclasm", "lang": "en", "released_at": "1995-06-03", "uri": "https://api.scryfall.com/cards/88040748-ad76-4b9a-bd4e-87e5980e9816", "scryfall_uri": "https://scryfall.com/card/ice/214/pyroclasm?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/8/8/88040748-ad76-4b9a-bd4e-87e5980e9816.jpg?1562920179", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/8/88040748-ad76-4b9a-bd4e-87e5980e9816.jpg?1562920179", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/8/8/88040748-ad76-4b9a-bd4e-87e5980e9816.jpg?1562920179", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/8/8/88040748-ad76-4b9a-bd4e-87e5980e9816.png?1562920179", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/8/88040748-ad76-4b9a-bd4e-87e5980e9816.jpg?1562920179", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/8/8/88040748-ad76-4b9a-bd4e-87e5980e9816.jpg?1562920179"}, "mana_cost": "{1}{R}", "cmc": 2.0, "type_line": "Sorcery", "oracle_text": "Pyroclasm deals 2 damage to each creature.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "b0e08eea-5c01-4406-a6e2-dcd09c5e5b67", "set": "ice", "set_name": "Ice Age", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/b0e08eea-5c01-4406-a6e2-dcd09c5e5b67", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aice&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ice?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/88040748-ad76-4b9a-bd4e-87e5980e9816/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ae4bcd4ea-e7cd-4471-8f3b-18bb51d3d70c&unique=prints", "collector_number": "214", "digital": false, "rarity": "uncommon", "flavor_text": "\"Leaves more room for the big ones to fight in, you know.\"\n\u2014Jaya Ballard, Task Mage", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Pat Morrissey", "artist_ids": ["3130411f-ddd5-4cab-a2f4-0a9c3b95a26e"], "illustration_id": "988987e7-7f3b-46c3-9d4e-676e6d779fa6", "border_color": "black", "frame": "1993", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 3920, "penny_rank": 427, "prices": {"usd": "0.43", "usd_foil": null, "usd_etched": null, "eur": "1.00", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=2650", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Pyroclasm&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Pyroclasm&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Pyroclasm"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/4849?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Pyroclasm&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Pyroclasm&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "e0581322-d901-465e-b22c-cd99ddbb4839", "oracle_id": "e4bcd4ea-e7cd-4471-8f3b-18bb51d3d70c", "multiverse_ids": [], "tcgplayer_id": 38332, "cardmarket_id": 17576, "name": "Pyroclasm", "lang": "en", "released_at": "2006-01-01", "uri": "https://api.scryfall.com/cards/e0581322-d901-465e-b22c-cd99ddbb4839", "scryfall_uri": "https://scryfall.com/card/p06/3/pyroclasm?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/e/0/e0581322-d901-465e-b22c-cd99ddbb4839.jpg?1561758268", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/0/e0581322-d901-465e-b22c-cd99ddbb4839.jpg?1561758268", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/e/0/e0581322-d901-465e-b22c-cd99ddbb4839.jpg?1561758268", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/e/0/e0581322-d901-465e-b22c-cd99ddbb4839.png?1561758268", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/0/e0581322-d901-465e-b22c-cd99ddbb4839.jpg?1561758268", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/e/0/e0581322-d901-465e-b22c-cd99ddbb4839.jpg?1561758268"}, "mana_cost": "{1}{R}", "cmc": 2.0, "type_line": "Sorcery", "oracle_text": "Pyroclasm deals 2 damage to each creature.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": true, "reprint": true, "variation": false, "set_id": "619f656b-94dc-4772-bc99-62bac48f1eb9", "set": "p06", "set_name": "Magic Player Rewards 2006", "set_type": "promo", "set_uri": "https://api.scryfall.com/sets/619f656b-94dc-4772-bc99-62bac48f1eb9", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ap06&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/p06?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/e0581322-d901-465e-b22c-cd99ddbb4839/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ae4bcd4ea-e7cd-4471-8f3b-18bb51d3d70c&unique=prints", "collector_number": "3", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Dave Dorman", "artist_ids": ["9235458b-ce92-45bd-a430-a72ecd8e6176"], "illustration_id": "ca98db44-47a1-4c02-ad16-c760601bdf0b", "border_color": "black", "frame": "2003", "full_art": true, "textless": true, "booster": false, "story_spotlight": false, "promo_types": ["playerrewards"], "edhrec_rank": 3920, "penny_rank": 427, "prices": {"usd": "3.42", "usd_foil": null, "usd_etched": null, "eur": "1.50", "eur_foil": null, "tix": null}, "related_uris": {"tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Pyroclasm&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Pyroclasm&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Pyroclasm"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/38332?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Pyroclasm&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Pyroclasm&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "70f4fe69-c541-4320-9074-9c6a3bc70ea3", "oracle_id": "cfc8372f-13b6-4628-84c7-066881b287f5", "multiverse_ids": [402002], "mtgo_id": 58741, "mtgo_foil_id": 58742, "tcgplayer_id": 104278, "cardmarket_id": 284308, "name": "Radiant Flames", "lang": "en", "released_at": "2015-10-02", "uri": "https://api.scryfall.com/cards/70f4fe69-c541-4320-9074-9c6a3bc70ea3", "scryfall_uri": "https://scryfall.com/card/bfz/151/radiant-flames?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/7/0/70f4fe69-c541-4320-9074-9c6a3bc70ea3.jpg?1562921619", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/0/70f4fe69-c541-4320-9074-9c6a3bc70ea3.jpg?1562921619", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/7/0/70f4fe69-c541-4320-9074-9c6a3bc70ea3.jpg?1562921619", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/7/0/70f4fe69-c541-4320-9074-9c6a3bc70ea3.png?1562921619", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/0/70f4fe69-c541-4320-9074-9c6a3bc70ea3.jpg?1562921619", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/7/0/70f4fe69-c541-4320-9074-9c6a3bc70ea3.jpg?1562921619"}, "mana_cost": "{2}{R}", "cmc": 3.0, "type_line": "Sorcery", "oracle_text": "Converge \u2014 Radiant Flames deals X damage to each creature, where X is the number of colors of mana spent to cast this spell.", "colors": ["R"], "color_identity": ["R"], "keywords": ["Converge"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "91719374-7ac5-4afa-ada8-5da964dcf1d4", "set": "bfz", "set_name": "Battle for Zendikar", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/91719374-7ac5-4afa-ada8-5da964dcf1d4", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Abfz&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/bfz?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/70f4fe69-c541-4320-9074-9c6a3bc70ea3/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Acfc8372f-13b6-4628-84c7-066881b287f5&unique=prints", "collector_number": "151", "digital": false, "rarity": "rare", "flavor_text": "The fires of Zendikar are always hungry, and there is much on which they can feed.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Slawomir Maniak", "artist_ids": ["d887bc66-2779-416c-a1ff-d8720242063e"], "illustration_id": "8674f50f-7925-48ad-b493-d16a3a210a4f", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 15253, "penny_rank": 411, "prices": {"usd": "0.22", "usd_foil": "0.35", "usd_etched": null, "eur": "0.20", "eur_foil": "0.58", "tix": "0.01"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=402002", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Radiant+Flames&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Radiant+Flames&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Radiant+Flames"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/104278?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Radiant+Flames&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/58741?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "2548487e-a355-4a05-acbc-3031d98f4289", "oracle_id": "cfc8372f-13b6-4628-84c7-066881b287f5", "multiverse_ids": [], "tcgplayer_id": 104829, "cardmarket_id": 284449, "name": "Radiant Flames", "lang": "en", "released_at": "2015-10-02", "uri": "https://api.scryfall.com/cards/2548487e-a355-4a05-acbc-3031d98f4289", "scryfall_uri": "https://scryfall.com/card/pbfz/151/radiant-flames?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/2/5/2548487e-a355-4a05-acbc-3031d98f4289.jpg?1562132516", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/5/2548487e-a355-4a05-acbc-3031d98f4289.jpg?1562132516", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/2/5/2548487e-a355-4a05-acbc-3031d98f4289.jpg?1562132516", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/2/5/2548487e-a355-4a05-acbc-3031d98f4289.png?1562132516", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/5/2548487e-a355-4a05-acbc-3031d98f4289.jpg?1562132516", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/2/5/2548487e-a355-4a05-acbc-3031d98f4289.jpg?1562132516"}, "mana_cost": "{2}{R}", "cmc": 3.0, "type_line": "Sorcery", "oracle_text": "Converge \u2014 Radiant Flames deals X damage to each creature, where X is the number of colors of mana spent to cast this spell.", "colors": ["R"], "color_identity": ["R"], "keywords": ["Converge"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": true, "nonfoil": false, "finishes": ["foil"], "oversized": false, "promo": true, "reprint": true, "variation": false, "set_id": "1b5e95bd-4947-4991-8d7d-b770d6b2aaff", "set": "pbfz", "set_name": "Battle for Zendikar Promos", "set_type": "promo", "set_uri": "https://api.scryfall.com/sets/1b5e95bd-4947-4991-8d7d-b770d6b2aaff", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Apbfz&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/pbfz?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/2548487e-a355-4a05-acbc-3031d98f4289/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Acfc8372f-13b6-4628-84c7-066881b287f5&unique=prints", "collector_number": "151", "digital": false, "rarity": "rare", "flavor_text": "The fires of Zendikar are always hungry, and there is much on which they can feed.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Ryan Barger", "artist_ids": ["a4e0102e-bbeb-497c-babc-1c0741fea914"], "illustration_id": "ebca03a8-50d7-4670-b336-2e84ea7a8420", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": true, "textless": false, "booster": false, "story_spotlight": false, "promo_types": ["setpromo", "gameday"], "edhrec_rank": 15253, "penny_rank": 411, "prices": {"usd": null, "usd_foil": "0.31", "usd_etched": null, "eur": null, "eur_foil": "0.06", "tix": null}, "related_uris": {"tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Radiant+Flames&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Radiant+Flames&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Radiant+Flames"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/104829?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Radiant+Flames&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Radiant+Flames&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "94454128-92f1-475d-abc4-c235f501eeb6", "oracle_id": "9794f397-dd86-4cfe-a431-5f8d8c6b68ea", "multiverse_ids": [443026], "mtgo_id": 67741, "arena_id": 67380, "tcgplayer_id": 162177, "cardmarket_id": 319839, "name": "Radiating Lightning", "lang": "en", "released_at": "2018-04-27", "uri": "https://api.scryfall.com/cards/94454128-92f1-475d-abc4-c235f501eeb6", "scryfall_uri": "https://scryfall.com/card/dom/138/radiating-lightning?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/9/4/94454128-92f1-475d-abc4-c235f501eeb6.jpg?1562739709", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/4/94454128-92f1-475d-abc4-c235f501eeb6.jpg?1562739709", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/9/4/94454128-92f1-475d-abc4-c235f501eeb6.jpg?1562739709", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/9/4/94454128-92f1-475d-abc4-c235f501eeb6.png?1562739709", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/4/94454128-92f1-475d-abc4-c235f501eeb6.jpg?1562739709", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/9/4/94454128-92f1-475d-abc4-c235f501eeb6.jpg?1562739709"}, "mana_cost": "{3}{R}", "cmc": 4.0, "type_line": "Instant", "oracle_text": "Radiating Lightning deals 3 damage to target player and 1 damage to each creature that player controls.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "be1daba3-51c9-4e7e-9212-36e68addc26c", "set": "dom", "set_name": "Dominaria", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/be1daba3-51c9-4e7e-9212-36e68addc26c", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Adom&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/dom?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/94454128-92f1-475d-abc4-c235f501eeb6/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A9794f397-dd86-4cfe-a431-5f8d8c6b68ea&unique=prints", "collector_number": "138", "digital": false, "rarity": "common", "flavor_text": "As the Cabal legions pushed into Shiv, they learned not to stand so close together.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Suzanne Helmigh", "artist_ids": ["65d77b0b-6cca-4adf-a7ee-610c96d02371"], "illustration_id": "d4f8eb58-e7ad-4134-8b11-e76ad2602985", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 13399, "penny_rank": 8687, "prices": {"usd": "0.03", "usd_foil": "0.10", "usd_etched": null, "eur": "0.01", "eur_foil": "0.06", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=443026", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Radiating+Lightning&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Radiating+Lightning&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Radiating+Lightning"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/162177?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Radiating+Lightning&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/67741?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "bb09a5bb-9730-43cd-8dea-3842634c9983", "oracle_id": "e2048201-6dc9-4cf5-916f-1d867ae8dbdd", "multiverse_ids": [6580], "tcgplayer_id": 197, "cardmarket_id": 9845, "name": "Rain of Daggers", "lang": "en", "released_at": "1998-06-24", "uri": "https://api.scryfall.com/cards/bb09a5bb-9730-43cd-8dea-3842634c9983", "scryfall_uri": "https://scryfall.com/card/p02/85/rain-of-daggers?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/b/b/bb09a5bb-9730-43cd-8dea-3842634c9983.jpg?1562939110", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/b/bb09a5bb-9730-43cd-8dea-3842634c9983.jpg?1562939110", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/b/b/bb09a5bb-9730-43cd-8dea-3842634c9983.jpg?1562939110", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/b/b/bb09a5bb-9730-43cd-8dea-3842634c9983.png?1562939110", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/b/bb09a5bb-9730-43cd-8dea-3842634c9983.jpg?1562939110", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/b/b/bb09a5bb-9730-43cd-8dea-3842634c9983.jpg?1562939110"}, "mana_cost": "{4}{B}{B}", "cmc": 6.0, "type_line": "Sorcery", "oracle_text": "Destroy all creatures target opponent controls. You lose 2 life for each creature destroyed this way.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "ac67f18a-4f0e-407e-bab1-a9fe4f659565", "set": "p02", "set_name": "Portal Second Age", "set_type": "starter", "set_uri": "https://api.scryfall.com/sets/ac67f18a-4f0e-407e-bab1-a9fe4f659565", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ap02&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/p02?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/bb09a5bb-9730-43cd-8dea-3842634c9983/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ae2048201-6dc9-4cf5-916f-1d867ae8dbdd&unique=prints", "collector_number": "85", "digital": false, "rarity": "rare", "flavor_text": "Knives in the sky, cries in the air, and blood on the ground.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Melissa A. Benson", "artist_ids": ["9ade7727-1436-4828-9a1d-487c3d2ad1d9"], "illustration_id": "bfa34825-277f-4e82-92a5-bbe4bcbf00c5", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 19558, "prices": {"usd": "11.20", "usd_foil": null, "usd_etched": null, "eur": "4.99", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=6580", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Rain+of+Daggers&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Rain+of+Daggers&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Rain+of+Daggers"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/197?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Rain+of+Daggers&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Rain+of+Daggers&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "2d5391a9-6c30-4f9b-b746-a4427a3e63fc", "oracle_id": "041e2a01-3652-46c1-a9d1-d38ae7ee0551", "multiverse_ids": [87943], "mtgo_id": 23214, "mtgo_foil_id": 23215, "tcgplayer_id": 13385, "cardmarket_id": 13500, "name": "Rain of Embers", "lang": "en", "released_at": "2005-10-07", "uri": "https://api.scryfall.com/cards/2d5391a9-6c30-4f9b-b746-a4427a3e63fc", "scryfall_uri": "https://scryfall.com/card/rav/138/rain-of-embers?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/2/d/2d5391a9-6c30-4f9b-b746-a4427a3e63fc.jpg?1598915805", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/d/2d5391a9-6c30-4f9b-b746-a4427a3e63fc.jpg?1598915805", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/2/d/2d5391a9-6c30-4f9b-b746-a4427a3e63fc.jpg?1598915805", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/2/d/2d5391a9-6c30-4f9b-b746-a4427a3e63fc.png?1598915805", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/d/2d5391a9-6c30-4f9b-b746-a4427a3e63fc.jpg?1598915805", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/2/d/2d5391a9-6c30-4f9b-b746-a4427a3e63fc.jpg?1598915805"}, "mana_cost": "{1}{R}", "cmc": 2.0, "type_line": "Sorcery", "oracle_text": "Rain of Embers deals 1 damage to each creature and each player.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "15fccbe8-2825-41ca-9d0a-67aebdf91c4a", "set": "rav", "set_name": "Ravnica: City of Guilds", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/15fccbe8-2825-41ca-9d0a-67aebdf91c4a", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Arav&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/rav?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/2d5391a9-6c30-4f9b-b746-a4427a3e63fc/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A041e2a01-3652-46c1-a9d1-d38ae7ee0551&unique=prints", "collector_number": "138", "digital": false, "rarity": "common", "flavor_text": "There's plenty to talk about in the marketplaces of Ravnica, be it the latest feud between guilds or the terrible weather.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Tsutomu Kawade", "artist_ids": ["433a40d2-2caa-4cba-ba8d-0308a951d026"], "illustration_id": "d0d89a68-4ba2-46fc-aec8-22588d364ca6", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 12216, "penny_rank": 3719, "prices": {"usd": "0.11", "usd_foil": "0.28", "usd_etched": null, "eur": "0.02", "eur_foil": "0.45", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=87943", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Rain+of+Embers&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Rain+of+Embers&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Rain+of+Embers"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/13385?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Rain+of+Embers&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/23214?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "23d07a96-85ba-4714-94a5-4a8125954f58", "oracle_id": "c1972a20-5308-4ee4-b234-751b805d30e4", "multiverse_ids": [31598], "mtgo_id": 17069, "mtgo_foil_id": 17070, "tcgplayer_id": 9684, "cardmarket_id": 2347, "name": "Rancid Earth", "lang": "en", "released_at": "2002-02-04", "uri": "https://api.scryfall.com/cards/23d07a96-85ba-4714-94a5-4a8125954f58", "scryfall_uri": "https://scryfall.com/card/tor/78/rancid-earth?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/2/3/23d07a96-85ba-4714-94a5-4a8125954f58.jpg?1562628959", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/3/23d07a96-85ba-4714-94a5-4a8125954f58.jpg?1562628959", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/2/3/23d07a96-85ba-4714-94a5-4a8125954f58.jpg?1562628959", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/2/3/23d07a96-85ba-4714-94a5-4a8125954f58.png?1562628959", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/3/23d07a96-85ba-4714-94a5-4a8125954f58.jpg?1562628959", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/2/3/23d07a96-85ba-4714-94a5-4a8125954f58.jpg?1562628959"}, "mana_cost": "{1}{B}{B}", "cmc": 3.0, "type_line": "Sorcery", "oracle_text": "Destroy target land.\nThreshold \u2014 If seven or more cards are in your graveyard, instead destroy that land and Rancid Earth deals 1 damage to each creature and each player.", "colors": ["B"], "color_identity": ["B"], "keywords": ["Threshold"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "e0b3fda1-a6ca-4996-849b-08b463d39484", "set": "tor", "set_name": "Torment", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/e0b3fda1-a6ca-4996-849b-08b463d39484", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ator&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/tor?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/23d07a96-85ba-4714-94a5-4a8125954f58/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ac1972a20-5308-4ee4-b234-751b805d30e4&unique=prints", "collector_number": "78", "digital": false, "rarity": "common", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Ciruelo", "artist_ids": ["1761c216-72b5-4a9b-afee-ad47a00fe1ad"], "illustration_id": "707184d4-e4d8-4462-95fc-85637545f9b0", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 16562, "prices": {"usd": "0.23", "usd_foil": "3.03", "usd_etched": null, "eur": "0.50", "eur_foil": "2.95", "tix": "0.12"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=31598", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Rancid+Earth&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Rancid+Earth&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Rancid+Earth"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/9684?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Rancid+Earth&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/17069?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "ba98a4bd-e217-4dba-aee9-315b4f843cdf", "oracle_id": "928bf0d9-89be-462d-aeb7-74a65e95535c", "multiverse_ids": [531938], "tcgplayer_id": 243740, "cardmarket_id": 572177, "name": "Reckless Endeavor", "lang": "en", "released_at": "2021-07-23", "uri": "https://api.scryfall.com/cards/ba98a4bd-e217-4dba-aee9-315b4f843cdf", "scryfall_uri": "https://scryfall.com/card/afc/33/reckless-endeavor?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/b/a/ba98a4bd-e217-4dba-aee9-315b4f843cdf.jpg?1631585239", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/a/ba98a4bd-e217-4dba-aee9-315b4f843cdf.jpg?1631585239", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/b/a/ba98a4bd-e217-4dba-aee9-315b4f843cdf.jpg?1631585239", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/b/a/ba98a4bd-e217-4dba-aee9-315b4f843cdf.png?1631585239", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/a/ba98a4bd-e217-4dba-aee9-315b4f843cdf.jpg?1631585239", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/b/a/ba98a4bd-e217-4dba-aee9-315b4f843cdf.jpg?1631585239"}, "mana_cost": "{5}{R}{R}", "cmc": 7.0, "type_line": "Sorcery", "oracle_text": "Roll two d12 and choose one result. Reckless Endeavor deals damage equal to that result to each creature. Then create a number of Treasure tokens equal to the other result.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "all_parts": [{"object": "related_card", "id": "ba98a4bd-e217-4dba-aee9-315b4f843cdf", "component": "combo_piece", "name": "Reckless Endeavor", "type_line": "Sorcery", "uri": "https://api.scryfall.com/cards/ba98a4bd-e217-4dba-aee9-315b4f843cdf"}, {"object": "related_card", "id": "a3a684b7-27e0-4d9e-a064-9e03c6e50c89", "component": "token", "name": "Treasure", "type_line": "Token Artifact \u2014 Treasure", "uri": "https://api.scryfall.com/cards/a3a684b7-27e0-4d9e-a064-9e03c6e50c89"}], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "db1b46f9-893c-4623-9465-985ff6e4472c", "set": "afc", "set_name": "Forgotten Realms Commander", "set_type": "commander", "set_uri": "https://api.scryfall.com/sets/db1b46f9-893c-4623-9465-985ff6e4472c", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aafc&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/afc?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/ba98a4bd-e217-4dba-aee9-315b4f843cdf/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A928bf0d9-89be-462d-aeb7-74a65e95535c&unique=prints", "collector_number": "33", "digital": false, "rarity": "rare", "flavor_text": "Which burns more fiercely? Your ambition, or the flame?", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Billy Christian", "artist_ids": ["10f26f94-64fc-4174-856e-701bea4f1521"], "illustration_id": "58bb9da8-e493-4696-b136-ce5629a5f169", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "edhrec_rank": 2261, "prices": {"usd": "0.79", "usd_foil": null, "usd_etched": null, "eur": "0.83", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=531938", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Reckless+Endeavor&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Reckless+Endeavor&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Reckless+Endeavor"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/243740?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Reckless+Endeavor&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Reckless+Endeavor&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "7bd83049-aec1-4911-bc70-39adba04b174", "oracle_id": "67d12a5a-9e0c-4550-86ad-cd1e173fea8f", "multiverse_ids": [3306], "mtgo_id": 7249, "mtgo_foil_id": 7250, "tcgplayer_id": 5202, "cardmarket_id": 8086, "name": "Reign of Terror", "lang": "en", "released_at": "1996-10-08", "uri": "https://api.scryfall.com/cards/7bd83049-aec1-4911-bc70-39adba04b174", "scryfall_uri": "https://scryfall.com/card/mir/137/reign-of-terror?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/7/b/7bd83049-aec1-4911-bc70-39adba04b174.jpg?1587856923", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/b/7bd83049-aec1-4911-bc70-39adba04b174.jpg?1587856923", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/7/b/7bd83049-aec1-4911-bc70-39adba04b174.jpg?1587856923", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/7/b/7bd83049-aec1-4911-bc70-39adba04b174.png?1587856923", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/b/7bd83049-aec1-4911-bc70-39adba04b174.jpg?1587856923", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/7/b/7bd83049-aec1-4911-bc70-39adba04b174.jpg?1587856923"}, "mana_cost": "{3}{B}{B}", "cmc": 5.0, "type_line": "Sorcery", "oracle_text": "Destroy all green creatures or all white creatures. They can't be regenerated. You lose 2 life for each creature that died this way.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "5f06acf3-8123-4a78-b2e7-089b0b775a4a", "set": "mir", "set_name": "Mirage", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/5f06acf3-8123-4a78-b2e7-089b0b775a4a", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Amir&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/mir?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/7bd83049-aec1-4911-bc70-39adba04b174/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A67d12a5a-9e0c-4550-86ad-cd1e173fea8f&unique=prints", "collector_number": "137", "digital": false, "rarity": "uncommon", "flavor_text": "\"I don't know what takes them; they die around me without time to scream.\"\n\u2014Scout Ekemet, final journal", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Gary Leach", "artist_ids": ["fb608209-fd37-435a-b2fb-a158aeb3f927"], "illustration_id": "706e8817-f844-47b2-98b1-dbdf3185ada3", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 21945, "prices": {"usd": "0.16", "usd_foil": null, "usd_etched": null, "eur": "0.49", "eur_foil": null, "tix": "0.11"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=3306", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Reign+of+Terror&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Reign+of+Terror&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Reign+of+Terror"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/5202?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Reign+of+Terror&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/7249?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "58acdda6-6754-46f2-ad68-f1580b8ab0dd", "oracle_id": "37f5d022-2989-4b44-9bca-dc6b606afe10", "multiverse_ids": [50213], "mtgo_id": 20750, "mtgo_foil_id": 20751, "tcgplayer_id": 11915, "cardmarket_id": 629, "name": "Retaliate", "lang": "en", "released_at": "2004-06-04", "uri": "https://api.scryfall.com/cards/58acdda6-6754-46f2-ad68-f1580b8ab0dd", "scryfall_uri": "https://scryfall.com/card/5dn/13/retaliate?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/5/8/58acdda6-6754-46f2-ad68-f1580b8ab0dd.jpg?1562877159", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/8/58acdda6-6754-46f2-ad68-f1580b8ab0dd.jpg?1562877159", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/5/8/58acdda6-6754-46f2-ad68-f1580b8ab0dd.jpg?1562877159", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/5/8/58acdda6-6754-46f2-ad68-f1580b8ab0dd.png?1562877159", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/8/58acdda6-6754-46f2-ad68-f1580b8ab0dd.jpg?1562877159", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/5/8/58acdda6-6754-46f2-ad68-f1580b8ab0dd.jpg?1562877159"}, "mana_cost": "{2}{W}{W}", "cmc": 4.0, "type_line": "Instant", "oracle_text": "Destroy all creatures that dealt damage to you this turn.", "colors": ["W"], "color_identity": ["W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "e4bc1b87-5476-463c-8640-4c414ecf1763", "set": "5dn", "set_name": "Fifth Dawn", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/e4bc1b87-5476-463c-8640-4c414ecf1763", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3A5dn&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/5dn?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/58acdda6-6754-46f2-ad68-f1580b8ab0dd/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A37f5d022-2989-4b44-9bca-dc6b606afe10&unique=prints", "collector_number": "13", "digital": false, "rarity": "rare", "flavor_text": "The Auriok learned perseverance from their forebears. They learned justice from the leonin.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Vance Kovacs", "artist_ids": ["b5516011-4722-4fc8-8542-102cecc52b71"], "illustration_id": "058dbe8f-f569-4bef-8e68-06a72f5d03bc", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 15855, "penny_rank": 9035, "prices": {"usd": "0.46", "usd_foil": "1.75", "usd_etched": null, "eur": "0.05", "eur_foil": "1.25", "tix": "0.01"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=50213", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Retaliate&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Retaliate&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Retaliate"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/11915?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Retaliate&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/20750?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "860b8633-1bfc-426a-8666-5e6a584d4525", "oracle_id": "61f2083b-3018-43a4-8852-8e6d2a97d5d6", "multiverse_ids": [3726], "mtgo_id": 7695, "mtgo_foil_id": 7696, "tcgplayer_id": 5913, "cardmarket_id": 8520, "name": "Retribution of the Meek", "lang": "en", "released_at": "1997-02-03", "uri": "https://api.scryfall.com/cards/860b8633-1bfc-426a-8666-5e6a584d4525", "scryfall_uri": "https://scryfall.com/card/vis/19/retribution-of-the-meek?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/8/6/860b8633-1bfc-426a-8666-5e6a584d4525.jpg?1587857186", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/6/860b8633-1bfc-426a-8666-5e6a584d4525.jpg?1587857186", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/8/6/860b8633-1bfc-426a-8666-5e6a584d4525.jpg?1587857186", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/8/6/860b8633-1bfc-426a-8666-5e6a584d4525.png?1587857186", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/6/860b8633-1bfc-426a-8666-5e6a584d4525.jpg?1587857186", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/8/6/860b8633-1bfc-426a-8666-5e6a584d4525.jpg?1587857186"}, "mana_cost": "{2}{W}", "cmc": 3.0, "type_line": "Sorcery", "oracle_text": "Destroy all creatures with power 4 or greater. They can't be regenerated.", "colors": ["W"], "color_identity": ["W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": true, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "2c32f1a9-7921-4826-bea0-80bbac70532c", "set": "vis", "set_name": "Visions", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/2c32f1a9-7921-4826-bea0-80bbac70532c", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Avis&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/vis?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/860b8633-1bfc-426a-8666-5e6a584d4525/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A61f2083b-3018-43a4-8852-8e6d2a97d5d6&unique=prints", "collector_number": "19", "digital": false, "rarity": "rare", "flavor_text": "\"Tread upon the meek, and they shall wound your feet and make you crawl.\"\n\u2014Asmira, Holy Avenger", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Nathalie Hertz", "artist_ids": ["bd85e4b9-1938-4a16-817f-17e7815f7df3"], "illustration_id": "91dc37c8-2f07-46a1-9472-64276edb4130", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 7205, "prices": {"usd": "11.92", "usd_foil": null, "usd_etched": null, "eur": "7.00", "eur_foil": null, "tix": "0.60"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=3726", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Retribution+of+the+Meek&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Retribution+of+the+Meek&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Retribution+of+the+Meek"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/5913?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Retribution+of+the+Meek&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/7695?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "c408f43e-9092-440d-a15f-bef4ad58bcc6", "oracle_id": "f0ff2c1c-702d-406b-a426-4282117afe8e", "multiverse_ids": [6518], "tcgplayer_id": 207, "cardmarket_id": 9961, "name": "Righteous Fury", "lang": "en", "released_at": "1998-06-24", "uri": "https://api.scryfall.com/cards/c408f43e-9092-440d-a15f-bef4ad58bcc6", "scryfall_uri": "https://scryfall.com/card/p02/21/righteous-fury?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/c/4/c408f43e-9092-440d-a15f-bef4ad58bcc6.jpg?1562941331", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/4/c408f43e-9092-440d-a15f-bef4ad58bcc6.jpg?1562941331", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/c/4/c408f43e-9092-440d-a15f-bef4ad58bcc6.jpg?1562941331", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/c/4/c408f43e-9092-440d-a15f-bef4ad58bcc6.png?1562941331", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/4/c408f43e-9092-440d-a15f-bef4ad58bcc6.jpg?1562941331", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/c/4/c408f43e-9092-440d-a15f-bef4ad58bcc6.jpg?1562941331"}, "mana_cost": "{4}{W}{W}", "cmc": 6.0, "type_line": "Sorcery", "oracle_text": "Destroy all tapped creatures. You gain 2 life for each creature destroyed this way.", "colors": ["W"], "color_identity": ["W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "ac67f18a-4f0e-407e-bab1-a9fe4f659565", "set": "p02", "set_name": "Portal Second Age", "set_type": "starter", "set_uri": "https://api.scryfall.com/sets/ac67f18a-4f0e-407e-bab1-a9fe4f659565", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ap02&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/p02?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/c408f43e-9092-440d-a15f-bef4ad58bcc6/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Af0ff2c1c-702d-406b-a426-4282117afe8e&unique=prints", "collector_number": "21", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Edward P. Beard, Jr.", "artist_ids": ["b845b8ee-aeea-4822-bcf9-7230625ac95c"], "illustration_id": "8ffb394b-3c4d-4e17-ba17-be52dbcabe34", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 16138, "penny_rank": 7577, "prices": {"usd": "5.80", "usd_foil": null, "usd_etched": null, "eur": "3.49", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=6518", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Righteous+Fury&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Righteous+Fury&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Righteous+Fury"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/207?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Righteous+Fury&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Righteous+Fury&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "4f9a8e87-3b8b-4dbf-9c1e-0a3290a33a0b", "oracle_id": "83fb7dfb-64a4-4320-b544-830c29f24df9", "multiverse_ids": [402011], "mtgo_id": 58397, "mtgo_foil_id": 58398, "tcgplayer_id": 105666, "cardmarket_id": 284857, "name": "Rising Miasma", "lang": "en", "released_at": "2015-10-02", "uri": "https://api.scryfall.com/cards/4f9a8e87-3b8b-4dbf-9c1e-0a3290a33a0b", "scryfall_uri": "https://scryfall.com/card/bfz/122/rising-miasma?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/4/f/4f9a8e87-3b8b-4dbf-9c1e-0a3290a33a0b.jpg?1562913657", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/f/4f9a8e87-3b8b-4dbf-9c1e-0a3290a33a0b.jpg?1562913657", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/4/f/4f9a8e87-3b8b-4dbf-9c1e-0a3290a33a0b.jpg?1562913657", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/4/f/4f9a8e87-3b8b-4dbf-9c1e-0a3290a33a0b.png?1562913657", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/f/4f9a8e87-3b8b-4dbf-9c1e-0a3290a33a0b.jpg?1562913657", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/4/f/4f9a8e87-3b8b-4dbf-9c1e-0a3290a33a0b.jpg?1562913657"}, "mana_cost": "{3}{B}", "cmc": 4.0, "type_line": "Sorcery", "oracle_text": "All creatures get -2/-2 until end of turn.\nAwaken 3\u2014{5}{B}{B} (If you cast this spell for {5}{B}{B}, also put three +1/+1 counters on target land you control and it becomes a 0/0 Elemental creature with haste. It's still a land.)", "colors": ["B"], "color_identity": ["B"], "keywords": ["Awaken"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "91719374-7ac5-4afa-ada8-5da964dcf1d4", "set": "bfz", "set_name": "Battle for Zendikar", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/91719374-7ac5-4afa-ada8-5da964dcf1d4", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Abfz&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/bfz?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/4f9a8e87-3b8b-4dbf-9c1e-0a3290a33a0b/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A83fb7dfb-64a4-4320-b544-830c29f24df9&unique=prints", "collector_number": "122", "digital": false, "rarity": "uncommon", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Deruchenko Alexander", "artist_ids": ["806f6ff9-6ed4-4e93-998a-a562c0b792e6"], "illustration_id": "91cc27ad-4348-4343-bd2d-0dc8f2811f70", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 19773, "penny_rank": 4074, "prices": {"usd": "0.06", "usd_foil": "0.21", "usd_etched": null, "eur": "0.02", "eur_foil": "0.20", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=402011", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Rising+Miasma&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Rising+Miasma&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Rising+Miasma"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/105666?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Rising+Miasma&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/58397?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "269af993-4894-4bf1-b55a-af4d736cb3cc", "oracle_id": "29e9cf1c-a6bd-4bee-9000-ac1b4e19d6b0", "multiverse_ids": [452834], "mtgo_id": 69541, "arena_id": 68545, "tcgplayer_id": 176681, "cardmarket_id": 364146, "name": "Ritual of Soot", "lang": "en", "released_at": "2018-10-05", "uri": "https://api.scryfall.com/cards/269af993-4894-4bf1-b55a-af4d736cb3cc", "scryfall_uri": "https://scryfall.com/card/grn/84/ritual-of-soot?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/2/6/269af993-4894-4bf1-b55a-af4d736cb3cc.jpg?1572893045", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/6/269af993-4894-4bf1-b55a-af4d736cb3cc.jpg?1572893045", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/2/6/269af993-4894-4bf1-b55a-af4d736cb3cc.jpg?1572893045", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/2/6/269af993-4894-4bf1-b55a-af4d736cb3cc.png?1572893045", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/6/269af993-4894-4bf1-b55a-af4d736cb3cc.jpg?1572893045", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/2/6/269af993-4894-4bf1-b55a-af4d736cb3cc.jpg?1572893045"}, "mana_cost": "{2}{B}{B}", "cmc": 4.0, "type_line": "Sorcery", "oracle_text": "Destroy all creatures with mana value 3 or less.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "597c6d4a-8212-4903-a6af-12c4ae9e13f0", "set": "grn", "set_name": "Guilds of Ravnica", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/597c6d4a-8212-4903-a6af-12c4ae9e13f0", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Agrn&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/grn?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/269af993-4894-4bf1-b55a-af4d736cb3cc/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A29e9cf1c-a6bd-4bee-9000-ac1b4e19d6b0&unique=prints", "collector_number": "84", "digital": false, "rarity": "rare", "flavor_text": "Only the patrol's armor was found, so tainted with the acrid smell of sudden death that it could never be worn again.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Dimitar Marinski", "artist_ids": ["ad53afd6-d00f-4bc8-98ec-deab3f6aec50"], "illustration_id": "71cba05e-764c-43d6-b058-50d893fafd53", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 8446, "penny_rank": 651, "prices": {"usd": "0.22", "usd_foil": "0.63", "usd_etched": null, "eur": "0.17", "eur_foil": "0.20", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=452834", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Ritual+of+Soot&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Ritual+of+Soot&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Ritual+of+Soot"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/176681?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Ritual+of+Soot&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/69541?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "eb15ba71-c3b3-4a9f-b000-bd788514211c", "oracle_id": "9f0bd777-f79d-47cd-83e3-85b80d5e7942", "multiverse_ids": [], "tcgplayer_id": 269714, "cardmarket_id": 652473, "name": "Riveteers Confluence", "lang": "en", "released_at": "2022-04-29", "uri": "https://api.scryfall.com/cards/eb15ba71-c3b3-4a9f-b000-bd788514211c", "scryfall_uri": "https://scryfall.com/card/ncc/79/riveteers-confluence?utm_source=api", "layout": "normal", "highres_image": false, "image_status": "lowres", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/e/b/eb15ba71-c3b3-4a9f-b000-bd788514211c.jpg?1650549265", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/b/eb15ba71-c3b3-4a9f-b000-bd788514211c.jpg?1650549265", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/e/b/eb15ba71-c3b3-4a9f-b000-bd788514211c.jpg?1650549265", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/e/b/eb15ba71-c3b3-4a9f-b000-bd788514211c.png?1650549265", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/b/eb15ba71-c3b3-4a9f-b000-bd788514211c.jpg?1650549265", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/e/b/eb15ba71-c3b3-4a9f-b000-bd788514211c.jpg?1650549265"}, "mana_cost": "{2}{B}{R}{G}", "cmc": 5.0, "type_line": "Sorcery", "oracle_text": "Choose three. You may choose the same mode more than once.\n\u2022 You draw a card and you lose 1 life.\n\u2022 Riveteers Confluence deals 1 damage to each creature and planeswalker you don't control.\n\u2022 You may put a land card from your hand or graveyard onto the battlefield tapped.", "colors": ["B", "G", "R"], "color_identity": ["B", "G", "R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "c51de34b-d4d6-4179-a432-573744ded119", "set": "ncc", "set_name": "New Capenna Commander", "set_type": "commander", "set_uri": "https://api.scryfall.com/sets/c51de34b-d4d6-4179-a432-573744ded119", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ancc&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ncc?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/eb15ba71-c3b3-4a9f-b000-bd788514211c/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A9f0bd777-f79d-47cd-83e3-85b80d5e7942&unique=prints", "collector_number": "79", "digital": false, "rarity": "rare", "watermark": "riveteers", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Vladimir Krisetskiy", "artist_ids": ["6a6d08a4-77eb-4345-9ac4-21248cce900f"], "illustration_id": "57852fd6-19e9-47c1-b4d5-4213cad7ac06", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "edhrec_rank": 9704, "prices": {"usd": "0.18", "usd_foil": null, "usd_etched": null, "eur": "0.22", "eur_foil": null, "tix": null}, "related_uris": {"tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Riveteers+Confluence&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Riveteers+Confluence&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Riveteers+Confluence"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/269714?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Riveteers+Confluence&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Riveteers+Confluence&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "3f1a80c4-8119-437d-bf5b-549c5679c90a", "oracle_id": "ecda721d-ec5d-484b-a834-f4de96083b08", "multiverse_ids": [380488], "mtgo_id": 52280, "mtgo_foil_id": 52281, "tcgplayer_id": 82330, "cardmarket_id": 266726, "name": "Rollick of Abandon", "lang": "en", "released_at": "2014-05-02", "uri": "https://api.scryfall.com/cards/3f1a80c4-8119-437d-bf5b-549c5679c90a", "scryfall_uri": "https://scryfall.com/card/jou/108/rollick-of-abandon?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/3/f/3f1a80c4-8119-437d-bf5b-549c5679c90a.jpg?1593096073", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/f/3f1a80c4-8119-437d-bf5b-549c5679c90a.jpg?1593096073", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/3/f/3f1a80c4-8119-437d-bf5b-549c5679c90a.jpg?1593096073", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/3/f/3f1a80c4-8119-437d-bf5b-549c5679c90a.png?1593096073", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/f/3f1a80c4-8119-437d-bf5b-549c5679c90a.jpg?1593096073", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/3/f/3f1a80c4-8119-437d-bf5b-549c5679c90a.jpg?1593096073"}, "mana_cost": "{3}{R}{R}", "cmc": 5.0, "type_line": "Sorcery", "oracle_text": "All creatures get +2/-2 until end of turn.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "204d2dca-1887-4721-9558-164aa7bbeb4f", "set": "jou", "set_name": "Journey into Nyx", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/204d2dca-1887-4721-9558-164aa7bbeb4f", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ajou&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/jou?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/3f1a80c4-8119-437d-bf5b-549c5679c90a/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aecda721d-ec5d-484b-a834-f4de96083b08&unique=prints", "collector_number": "108", "digital": false, "rarity": "uncommon", "flavor_text": "\"Embrace every moment, for it could be your last.\"\n\u2014Xenagos, god of revels", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Mathias Kollros", "artist_ids": ["2ae0dd12-047c-4efb-80d7-bccc3bac5fba"], "illustration_id": "c637e2d3-0f74-49df-89ee-59d1849eeadd", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 20926, "prices": {"usd": "0.04", "usd_foil": "0.10", "usd_etched": null, "eur": "0.02", "eur_foil": "0.25", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=380488", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Rollick+of+Abandon&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Rollick+of+Abandon&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Rollick+of+Abandon"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/82330?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Rollick+of+Abandon&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/52280?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "3c1bf210-ecdb-4b49-8504-51360c269e66", "oracle_id": "46b96552-830e-4732-9560-9872aeec858b", "multiverse_ids": [10526], "tcgplayer_id": 521, "cardmarket_id": 11315, "name": "Rolling Earthquake", "lang": "en", "released_at": "1999-07-06", "uri": "https://api.scryfall.com/cards/3c1bf210-ecdb-4b49-8504-51360c269e66", "scryfall_uri": "https://scryfall.com/card/ptk/122/rolling-earthquake?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/3/c/3c1bf210-ecdb-4b49-8504-51360c269e66.jpg?1562256070", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/c/3c1bf210-ecdb-4b49-8504-51360c269e66.jpg?1562256070", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/3/c/3c1bf210-ecdb-4b49-8504-51360c269e66.jpg?1562256070", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/3/c/3c1bf210-ecdb-4b49-8504-51360c269e66.png?1562256070", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/c/3c1bf210-ecdb-4b49-8504-51360c269e66.jpg?1562256070", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/3/c/3c1bf210-ecdb-4b49-8504-51360c269e66.jpg?1562256070"}, "mana_cost": "{X}{R}", "cmc": 1.0, "type_line": "Sorcery", "oracle_text": "Rolling Earthquake deals X damage to each creature without horsemanship and each player.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "2676ff2e-9d86-4b5b-b935-e84e41b0755e", "set": "ptk", "set_name": "Portal Three Kingdoms", "set_type": "starter", "set_uri": "https://api.scryfall.com/sets/2676ff2e-9d86-4b5b-b935-e84e41b0755e", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aptk&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ptk?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/3c1bf210-ecdb-4b49-8504-51360c269e66/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A46b96552-830e-4732-9560-9872aeec858b&unique=prints", "collector_number": "122", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Yang Hong", "artist_ids": ["4a9bbac6-55de-440a-bb65-58aedc3380ed"], "illustration_id": "bedbf88f-36ca-4926-86c7-a627ebd0a9d9", "border_color": "white", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 2302, "penny_rank": 3611, "prices": {"usd": "121.24", "usd_foil": null, "usd_etched": null, "eur": "57.50", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=10526", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Rolling+Earthquake&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Rolling+Earthquake&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Rolling+Earthquake"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/521?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Rolling+Earthquake&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Rolling+Earthquake&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "e6c5546f-2429-4099-a9bd-eda3f52779b7", "oracle_id": "9abe09fb-17ab-41e8-9d89-1467ed62f87b", "multiverse_ids": [89024], "mtgo_id": 23410, "mtgo_foil_id": 23411, "tcgplayer_id": 13393, "cardmarket_id": 13508, "name": "Rolling Spoil", "lang": "en", "released_at": "2005-10-07", "uri": "https://api.scryfall.com/cards/e6c5546f-2429-4099-a9bd-eda3f52779b7", "scryfall_uri": "https://scryfall.com/card/rav/179/rolling-spoil?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/e/6/e6c5546f-2429-4099-a9bd-eda3f52779b7.jpg?1598916497", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/6/e6c5546f-2429-4099-a9bd-eda3f52779b7.jpg?1598916497", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/e/6/e6c5546f-2429-4099-a9bd-eda3f52779b7.jpg?1598916497", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/e/6/e6c5546f-2429-4099-a9bd-eda3f52779b7.png?1598916497", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/6/e6c5546f-2429-4099-a9bd-eda3f52779b7.jpg?1598916497", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/e/6/e6c5546f-2429-4099-a9bd-eda3f52779b7.jpg?1598916497"}, "mana_cost": "{2}{G}{G}", "cmc": 4.0, "type_line": "Sorcery", "oracle_text": "Destroy target land. If {B} was spent to cast this spell, all creatures get -1/-1 until end of turn.", "colors": ["G"], "color_identity": ["B", "G"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "15fccbe8-2825-41ca-9d0a-67aebdf91c4a", "set": "rav", "set_name": "Ravnica: City of Guilds", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/15fccbe8-2825-41ca-9d0a-67aebdf91c4a", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Arav&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/rav?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/e6c5546f-2429-4099-a9bd-eda3f52779b7/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A9abe09fb-17ab-41e8-9d89-1467ed62f87b&unique=prints", "collector_number": "179", "digital": false, "rarity": "uncommon", "watermark": "golgari", "flavor_text": "The shadow that fell over the grove was silent yet horribly alive, roiling with millions of tiny minions dedicated to the process of rot.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Ron Spencer", "artist_ids": ["dab52c11-0564-4207-a4a1-c1735c946a65"], "illustration_id": "5c6c88ef-f260-40ea-8715-529998a9d916", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 20065, "penny_rank": 7781, "prices": {"usd": "0.09", "usd_foil": "0.26", "usd_etched": null, "eur": "0.15", "eur_foil": "0.10", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=89024", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Rolling+Spoil&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Rolling+Spoil&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Rolling+Spoil"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/13393?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Rolling+Spoil&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/23410?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "060ce982-94dd-4b9e-b240-15da297e29f9", "oracle_id": "e450014f-7152-476b-ae6e-0d49fcb91d18", "multiverse_ids": [249660], "mtgo_id": 42788, "mtgo_foil_id": 42789, "tcgplayer_id": 56304, "cardmarket_id": 250745, "name": "Rolling Temblor", "lang": "en", "released_at": "2011-09-30", "uri": "https://api.scryfall.com/cards/060ce982-94dd-4b9e-b240-15da297e29f9", "scryfall_uri": "https://scryfall.com/card/isd/161/rolling-temblor?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/0/6/060ce982-94dd-4b9e-b240-15da297e29f9.jpg?1562825667", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/6/060ce982-94dd-4b9e-b240-15da297e29f9.jpg?1562825667", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/0/6/060ce982-94dd-4b9e-b240-15da297e29f9.jpg?1562825667", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/0/6/060ce982-94dd-4b9e-b240-15da297e29f9.png?1562825667", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/6/060ce982-94dd-4b9e-b240-15da297e29f9.jpg?1562825667", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/0/6/060ce982-94dd-4b9e-b240-15da297e29f9.jpg?1562825667"}, "mana_cost": "{2}{R}", "cmc": 3.0, "type_line": "Sorcery", "oracle_text": "Rolling Temblor deals 2 damage to each creature without flying.\nFlashback {4}{R}{R} (You may cast this card from your graveyard for its flashback cost. Then exile it.)", "colors": ["R"], "color_identity": ["R"], "keywords": ["Flashback"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "d1026945-2969-42b9-be53-f941405a58cb", "set": "isd", "set_name": "Innistrad", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/d1026945-2969-42b9-be53-f941405a58cb", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aisd&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/isd?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/060ce982-94dd-4b9e-b240-15da297e29f9/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ae450014f-7152-476b-ae6e-0d49fcb91d18&unique=prints", "collector_number": "161", "digital": false, "rarity": "uncommon", "flavor_text": "When demons open a path to your front door, it's time to move.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Cliff Childs", "artist_ids": ["ed6f7e03-20ba-4c73-bdda-4a4928480721"], "illustration_id": "83ec0854-37df-4f85-87a2-6d2c606138ba", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 12211, "penny_rank": 9209, "prices": {"usd": "0.06", "usd_foil": "0.19", "usd_etched": null, "eur": "0.15", "eur_foil": "0.20", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=249660", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Rolling+Temblor&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Rolling+Temblor&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Rolling+Temblor"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/56304?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Rolling+Temblor&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/42788?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "6c3da3f0-bf90-461a-b62d-5c00d5c9aebd", "oracle_id": "d69aa624-23d1-406a-b7e0-9140a6f57929", "multiverse_ids": [382349], "tcgplayer_id": 82892, "cardmarket_id": 267052, "name": "Rout", "lang": "en", "released_at": "2014-06-06", "uri": "https://api.scryfall.com/cards/6c3da3f0-bf90-461a-b62d-5c00d5c9aebd", "scryfall_uri": "https://scryfall.com/card/cns/80/rout?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/6/c/6c3da3f0-bf90-461a-b62d-5c00d5c9aebd.jpg?1562865454", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/c/6c3da3f0-bf90-461a-b62d-5c00d5c9aebd.jpg?1562865454", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/6/c/6c3da3f0-bf90-461a-b62d-5c00d5c9aebd.jpg?1562865454", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/6/c/6c3da3f0-bf90-461a-b62d-5c00d5c9aebd.png?1562865454", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/c/6c3da3f0-bf90-461a-b62d-5c00d5c9aebd.jpg?1562865454", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/6/c/6c3da3f0-bf90-461a-b62d-5c00d5c9aebd.jpg?1562865454"}, "mana_cost": "{3}{W}{W}", "cmc": 5.0, "type_line": "Sorcery", "oracle_text": "You may cast Rout as though it had flash if you pay {2} more to cast it. (You may cast it any time you could cast an instant.)\nDestroy all creatures. They can't be regenerated.", "colors": ["W"], "color_identity": ["W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "7d4ebb59-a50b-45b8-8fff-ab70767819a5", "set": "cns", "set_name": "Conspiracy", "set_type": "draft_innovation", "set_uri": "https://api.scryfall.com/sets/7d4ebb59-a50b-45b8-8fff-ab70767819a5", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Acns&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/cns?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/6c3da3f0-bf90-461a-b62d-5c00d5c9aebd/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ad69aa624-23d1-406a-b7e0-9140a6f57929&unique=prints", "collector_number": "80", "digital": false, "rarity": "rare", "flavor_text": "\"End this. What I seek is far greater.\"\n\u2014Elesh Norn, Grand Cenobite", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Igor Kieryluk", "artist_ids": ["9c3e9d17-509f-485c-9360-46d897ce716b"], "illustration_id": "1489e3ec-2bd4-40c8-8796-5756bce8f90d", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 2470, "prices": {"usd": "0.47", "usd_foil": "4.47", "usd_etched": null, "eur": "0.35", "eur_foil": "0.50", "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=382349", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Rout&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Rout&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Rout"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/82892?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Rout&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Rout&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "94bc55ed-b89b-4e22-b3f1-4ce0f8d180d7", "oracle_id": "d69aa624-23d1-406a-b7e0-9140a6f57929", "multiverse_ids": [22971], "mtgo_id": 14551, "mtgo_foil_id": 14552, "tcgplayer_id": 7631, "cardmarket_id": 3625, "name": "Rout", "lang": "en", "released_at": "2000-10-02", "uri": "https://api.scryfall.com/cards/94bc55ed-b89b-4e22-b3f1-4ce0f8d180d7", "scryfall_uri": "https://scryfall.com/card/inv/34/rout?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/9/4/94bc55ed-b89b-4e22-b3f1-4ce0f8d180d7.jpg?1562924999", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/4/94bc55ed-b89b-4e22-b3f1-4ce0f8d180d7.jpg?1562924999", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/9/4/94bc55ed-b89b-4e22-b3f1-4ce0f8d180d7.jpg?1562924999", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/9/4/94bc55ed-b89b-4e22-b3f1-4ce0f8d180d7.png?1562924999", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/4/94bc55ed-b89b-4e22-b3f1-4ce0f8d180d7.jpg?1562924999", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/9/4/94bc55ed-b89b-4e22-b3f1-4ce0f8d180d7.jpg?1562924999"}, "mana_cost": "{3}{W}{W}", "cmc": 5.0, "type_line": "Sorcery", "oracle_text": "You may cast Rout as though it had flash if you pay {2} more to cast it. (You may cast it any time you could cast an instant.)\nDestroy all creatures. They can't be regenerated.", "colors": ["W"], "color_identity": ["W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "b9ae5e02-7726-47ca-b5e4-5ec402b41cd1", "set": "inv", "set_name": "Invasion", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/b9ae5e02-7726-47ca-b5e4-5ec402b41cd1", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ainv&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/inv?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/94bc55ed-b89b-4e22-b3f1-4ce0f8d180d7/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ad69aa624-23d1-406a-b7e0-9140a6f57929&unique=prints", "collector_number": "34", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Ron Spencer", "artist_ids": ["dab52c11-0564-4207-a4a1-c1735c946a65"], "illustration_id": "fee39873-6a02-4276-8b44-400fbfcc1b65", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 2470, "prices": {"usd": "1.51", "usd_foil": "42.49", "usd_etched": null, "eur": "0.75", "eur_foil": "26.60", "tix": "1.18"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=22971", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Rout&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Rout&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Rout"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/7631?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Rout&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/14551?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "db53c1fb-3641-44a3-b0b4-b7b2ba993646", "oracle_id": "d2179a54-4b45-4b67-a31c-aa1a7bcfda2c", "multiverse_ids": [21347], "mtgo_id": 14017, "mtgo_foil_id": 14018, "tcgplayer_id": 7218, "cardmarket_id": 11820, "name": "Rupture", "lang": "en", "released_at": "2000-02-14", "uri": "https://api.scryfall.com/cards/db53c1fb-3641-44a3-b0b4-b7b2ba993646", "scryfall_uri": "https://scryfall.com/card/nem/97/rupture?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/d/b/db53c1fb-3641-44a3-b0b4-b7b2ba993646.jpg?1562632349", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/b/db53c1fb-3641-44a3-b0b4-b7b2ba993646.jpg?1562632349", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/d/b/db53c1fb-3641-44a3-b0b4-b7b2ba993646.jpg?1562632349", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/d/b/db53c1fb-3641-44a3-b0b4-b7b2ba993646.png?1562632349", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/b/db53c1fb-3641-44a3-b0b4-b7b2ba993646.jpg?1562632349", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/d/b/db53c1fb-3641-44a3-b0b4-b7b2ba993646.jpg?1562632349"}, "mana_cost": "{2}{R}", "cmc": 3.0, "type_line": "Sorcery", "oracle_text": "Sacrifice a creature. Rupture deals damage equal to that creature's power to each creature without flying and each player.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "fa5d1fdb-f781-473d-b14d-50396d40d43f", "set": "nem", "set_name": "Nemesis", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/fa5d1fdb-f781-473d-b14d-50396d40d43f", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Anem&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/nem?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/db53c1fb-3641-44a3-b0b4-b7b2ba993646/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ad2179a54-4b45-4b67-a31c-aa1a7bcfda2c&unique=prints", "collector_number": "97", "digital": false, "rarity": "uncommon", "flavor_text": "All creatures have an inner fire. Releasing it can be dangerous.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Gao Yan", "artist_ids": ["0d253eb0-2579-4201-bde4-f0a9f0963827"], "illustration_id": "be903e05-ece5-4e8e-aead-861c015df416", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 12648, "prices": {"usd": "0.25", "usd_foil": "28.52", "usd_etched": null, "eur": "0.15", "eur_foil": "4.49", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=21347", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Rupture&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Rupture&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Rupture"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/7218?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Rupture&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/14017?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "d2a2a4e7-3173-4b73-8898-2c668f9eebf9", "oracle_id": "d2179a54-4b45-4b67-a31c-aa1a7bcfda2c", "multiverse_ids": [], "mtgo_id": 62417, "name": "Rupture", "lang": "en", "released_at": "2017-05-31", "uri": "https://api.scryfall.com/cards/d2a2a4e7-3173-4b73-8898-2c668f9eebf9", "scryfall_uri": "https://scryfall.com/card/prm/62417/rupture?utm_source=api", "layout": "normal", "highres_image": false, "image_status": "lowres", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/d/2/d2a2a4e7-3173-4b73-8898-2c668f9eebf9.jpg?1562548310", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/2/d2a2a4e7-3173-4b73-8898-2c668f9eebf9.jpg?1562548310", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/d/2/d2a2a4e7-3173-4b73-8898-2c668f9eebf9.jpg?1562548310", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/d/2/d2a2a4e7-3173-4b73-8898-2c668f9eebf9.png?1562548310", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/2/d2a2a4e7-3173-4b73-8898-2c668f9eebf9.jpg?1562548310", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/d/2/d2a2a4e7-3173-4b73-8898-2c668f9eebf9.jpg?1562548310"}, "mana_cost": "{2}{R}", "cmc": 3.0, "type_line": "Sorcery", "oracle_text": "Sacrifice a creature. Rupture deals damage equal to that creature's power to each creature without flying and each player.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["mtgo"], "reserved": false, "foil": true, "nonfoil": false, "finishes": ["foil"], "oversized": false, "promo": true, "reprint": true, "variation": false, "set_id": "638940fb-6be9-4be3-b83f-68d3902fbbe5", "set": "prm", "set_name": "Magic Online Promos", "set_type": "promo", "set_uri": "https://api.scryfall.com/sets/638940fb-6be9-4be3-b83f-68d3902fbbe5", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aprm&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/prm?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/d2a2a4e7-3173-4b73-8898-2c668f9eebf9/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ad2179a54-4b45-4b67-a31c-aa1a7bcfda2c&unique=prints", "collector_number": "62417", "digital": true, "rarity": "rare", "flavor_text": "All creatures have an inner fire. Releasing it can be dangerous.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "BD", "artist_ids": ["250546e6-6342-4362-b229-1bed633bd8c6"], "illustration_id": "acd6954b-9fee-486f-a4f7-183496a5bf86", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "edhrec_rank": 12648, "prices": {"usd": null, "usd_foil": null, "usd_etched": null, "eur": null, "eur_foil": null, "tix": null}, "related_uris": {"tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Rupture&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Rupture&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Rupture"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/search/magic/product?productLineName=magic&q=Rupture&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall&view=grid", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Rupture&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/62417?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "d3104cad-e684-4bd7-b26b-5aa862f7a2b3", "oracle_id": "d4c4c7d7-744a-4548-adad-a5fc4fb3f586", "multiverse_ids": [457282], "mtgo_id": 71276, "arena_id": 69266, "tcgplayer_id": 183428, "cardmarket_id": 368607, "name": "Sagittars' Volley", "lang": "en", "released_at": "2019-01-25", "uri": "https://api.scryfall.com/cards/d3104cad-e684-4bd7-b26b-5aa862f7a2b3", "scryfall_uri": "https://scryfall.com/card/rna/138/sagittars-volley?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/d/3/d3104cad-e684-4bd7-b26b-5aa862f7a2b3.jpg?1584831248", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/3/d3104cad-e684-4bd7-b26b-5aa862f7a2b3.jpg?1584831248", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/d/3/d3104cad-e684-4bd7-b26b-5aa862f7a2b3.jpg?1584831248", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/d/3/d3104cad-e684-4bd7-b26b-5aa862f7a2b3.png?1584831248", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/3/d3104cad-e684-4bd7-b26b-5aa862f7a2b3.jpg?1584831248", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/d/3/d3104cad-e684-4bd7-b26b-5aa862f7a2b3.jpg?1584831248"}, "mana_cost": "{2}{G}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Destroy target creature with flying. Sagittars' Volley deals 1 damage to each creature with flying your opponents control.", "colors": ["G"], "color_identity": ["G"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "97a7fd84-8d89-45a3-b48b-c951f6a3f9f1", "set": "rna", "set_name": "Ravnica Allegiance", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/97a7fd84-8d89-45a3-b48b-c951f6a3f9f1", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Arna&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/rna?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/d3104cad-e684-4bd7-b26b-5aa862f7a2b3/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ad4c4c7d7-744a-4548-adad-a5fc4fb3f586&unique=prints", "collector_number": "138", "digital": false, "rarity": "common", "flavor_text": "\"My bowstring hums in tune with the song of the Worldsoul.\"\n\u2014Alcarus, Selesnya sagittar", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Dan Scott", "artist_ids": ["f852fa13-137e-40f2-bbc1-0f01df09c0e0"], "illustration_id": "e789d71b-70b2-47f3-b980-d094d805abdc", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 18608, "penny_rank": 10481, "prices": {"usd": "0.02", "usd_foil": "0.14", "usd_etched": null, "eur": "0.02", "eur_foil": "0.99", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=457282", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Sagittars%27+Volley&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Sagittars%27+Volley&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Sagittars%27+Volley"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/183428?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Sagittars%27+Volley&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/71276?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "b5255da8-8511-48a7-98e5-ba43ca6e8681", "oracle_id": "57da1d3f-7469-4efa-9b82-b2d915177d89", "multiverse_ids": [414439], "mtgo_id": 61426, "mtgo_foil_id": 61427, "tcgplayer_id": 120524, "cardmarket_id": 291163, "name": "Savage Alliance", "lang": "en", "released_at": "2016-07-22", "uri": "https://api.scryfall.com/cards/b5255da8-8511-48a7-98e5-ba43ca6e8681", "scryfall_uri": "https://scryfall.com/card/emn/140/savage-alliance?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/b/5/b5255da8-8511-48a7-98e5-ba43ca6e8681.jpg?1576384658", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/5/b5255da8-8511-48a7-98e5-ba43ca6e8681.jpg?1576384658", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/b/5/b5255da8-8511-48a7-98e5-ba43ca6e8681.jpg?1576384658", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/b/5/b5255da8-8511-48a7-98e5-ba43ca6e8681.png?1576384658", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/5/b5255da8-8511-48a7-98e5-ba43ca6e8681.jpg?1576384658", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/b/5/b5255da8-8511-48a7-98e5-ba43ca6e8681.jpg?1576384658"}, "mana_cost": "{2}{R}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Escalate {1} (Pay this cost for each mode chosen beyond the first.)\nChoose one or more \u2014\n\u2022 Creatures target player controls gain trample until end of turn.\n\u2022 Savage Alliance deals 2 damage to target creature.\n\u2022 Savage Alliance deals 1 damage to each creature target opponent controls.", "colors": ["R"], "color_identity": ["R"], "keywords": ["Escalate"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "5f0e4093-334f-4439-bbb5-a0affafd0ffc", "set": "emn", "set_name": "Eldritch Moon", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/5f0e4093-334f-4439-bbb5-a0affafd0ffc", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aemn&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/emn?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/b5255da8-8511-48a7-98e5-ba43ca6e8681/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A57da1d3f-7469-4efa-9b82-b2d915177d89&unique=prints", "collector_number": "140", "digital": false, "rarity": "uncommon", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Johann Bodin", "artist_ids": ["d92e2dd9-9ef6-43f6-81f8-df87f9066983"], "illustration_id": "f5409cab-bed1-45ba-a336-6c2e61dc599c", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 15608, "penny_rank": 9061, "prices": {"usd": "0.09", "usd_foil": "0.35", "usd_etched": null, "eur": "0.04", "eur_foil": "0.39", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=414439", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Savage+Alliance&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Savage+Alliance&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Savage+Alliance"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/120524?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Savage+Alliance&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/61426?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "99d22b83-381d-47da-b983-8f77d19b0c01", "oracle_id": "5268518e-7631-4149-8eea-c2475b9b14df", "multiverse_ids": [376482], "mtgo_id": 51110, "mtgo_foil_id": 51111, "tcgplayer_id": 72250, "cardmarket_id": 264936, "name": "Savage Twister", "lang": "en", "released_at": "2013-11-01", "uri": "https://api.scryfall.com/cards/99d22b83-381d-47da-b983-8f77d19b0c01", "scryfall_uri": "https://scryfall.com/card/c13/208/savage-twister?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/9/9/99d22b83-381d-47da-b983-8f77d19b0c01.jpg?1562927484", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/9/99d22b83-381d-47da-b983-8f77d19b0c01.jpg?1562927484", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/9/9/99d22b83-381d-47da-b983-8f77d19b0c01.jpg?1562927484", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/9/9/99d22b83-381d-47da-b983-8f77d19b0c01.png?1562927484", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/9/99d22b83-381d-47da-b983-8f77d19b0c01.jpg?1562927484", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/9/9/99d22b83-381d-47da-b983-8f77d19b0c01.jpg?1562927484"}, "mana_cost": "{X}{R}{G}", "cmc": 2.0, "type_line": "Sorcery", "oracle_text": "Savage Twister deals X damage to each creature.", "colors": ["G", "R"], "color_identity": ["G", "R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "c62e6d4f-af8c-4f27-9bc8-361291890146", "set": "c13", "set_name": "Commander 2013", "set_type": "commander", "set_uri": "https://api.scryfall.com/sets/c62e6d4f-af8c-4f27-9bc8-361291890146", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ac13&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/c13?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/99d22b83-381d-47da-b983-8f77d19b0c01/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A5268518e-7631-4149-8eea-c2475b9b14df&unique=prints", "collector_number": "208", "digital": false, "rarity": "uncommon", "flavor_text": "\"Nature is the ultimate mindless destroyer, capable of power and ferocity no army can match, and the Gruul follow its example.\"\n\u2014Trigori, Azorius senator", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "John Avon", "artist_ids": ["798f3932-30e0-4420-aa3f-db4d613f89ca"], "illustration_id": "4ef8a858-165c-4366-aa63-ea0f1927f108", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "edhrec_rank": 4755, "penny_rank": 4848, "prices": {"usd": "0.18", "usd_foil": null, "usd_etched": null, "eur": "0.23", "eur_foil": null, "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=376482", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Savage+Twister&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Savage+Twister&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Savage+Twister"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/72250?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Savage+Twister&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/51110?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "682ee5a9-2995-4868-b7ea-8735b2aee77e", "oracle_id": "5268518e-7631-4149-8eea-c2475b9b14df", "multiverse_ids": [97216], "mtgo_id": 23837, "mtgo_foil_id": 23838, "tcgplayer_id": 13764, "cardmarket_id": 13246, "name": "Savage Twister", "lang": "en", "released_at": "2006-02-03", "uri": "https://api.scryfall.com/cards/682ee5a9-2995-4868-b7ea-8735b2aee77e", "scryfall_uri": "https://scryfall.com/card/gpt/127/savage-twister?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/6/8/682ee5a9-2995-4868-b7ea-8735b2aee77e.jpg?1593272763", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/8/682ee5a9-2995-4868-b7ea-8735b2aee77e.jpg?1593272763", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/6/8/682ee5a9-2995-4868-b7ea-8735b2aee77e.jpg?1593272763", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/6/8/682ee5a9-2995-4868-b7ea-8735b2aee77e.png?1593272763", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/8/682ee5a9-2995-4868-b7ea-8735b2aee77e.jpg?1593272763", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/6/8/682ee5a9-2995-4868-b7ea-8735b2aee77e.jpg?1593272763"}, "mana_cost": "{X}{R}{G}", "cmc": 2.0, "type_line": "Sorcery", "oracle_text": "Savage Twister deals X damage to each creature.", "colors": ["G", "R"], "color_identity": ["G", "R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "594b4d09-8ce1-494d-bdb2-842c124bd087", "set": "gpt", "set_name": "Guildpact", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/594b4d09-8ce1-494d-bdb2-842c124bd087", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Agpt&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/gpt?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/682ee5a9-2995-4868-b7ea-8735b2aee77e/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A5268518e-7631-4149-8eea-c2475b9b14df&unique=prints", "collector_number": "127", "digital": false, "rarity": "uncommon", "watermark": "gruul", "flavor_text": "\"Nature is the ultimate mindless destroyer, capable of power and ferocity no army can match, and the Gruul follow its example.\"\n\u2014Trigori, Azorius senator", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Luca Zontini", "artist_ids": ["aa57d42a-72c1-4d94-a200-3571233c4b20"], "illustration_id": "8ef07723-283e-47a5-9b65-1b84fb40437a", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 4755, "penny_rank": 4848, "prices": {"usd": "0.20", "usd_foil": "1.97", "usd_etched": null, "eur": "0.08", "eur_foil": "0.70", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=97216", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Savage+Twister&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Savage+Twister&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Savage+Twister"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/13764?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Savage+Twister&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/23837?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "eb73313b-d39a-46ab-abfc-76f94a75dfca", "oracle_id": "5268518e-7631-4149-8eea-c2475b9b14df", "multiverse_ids": [3551], "mtgo_id": 7275, "mtgo_foil_id": 7276, "tcgplayer_id": 5215, "cardmarket_id": 8391, "name": "Savage Twister", "lang": "en", "released_at": "1996-10-08", "uri": "https://api.scryfall.com/cards/eb73313b-d39a-46ab-abfc-76f94a75dfca", "scryfall_uri": "https://scryfall.com/card/mir/280/savage-twister?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/e/b/eb73313b-d39a-46ab-abfc-76f94a75dfca.jpg?1593014734", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/b/eb73313b-d39a-46ab-abfc-76f94a75dfca.jpg?1593014734", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/e/b/eb73313b-d39a-46ab-abfc-76f94a75dfca.jpg?1593014734", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/e/b/eb73313b-d39a-46ab-abfc-76f94a75dfca.png?1593014734", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/b/eb73313b-d39a-46ab-abfc-76f94a75dfca.jpg?1593014734", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/e/b/eb73313b-d39a-46ab-abfc-76f94a75dfca.jpg?1593014734"}, "mana_cost": "{X}{R}{G}", "cmc": 2.0, "type_line": "Sorcery", "oracle_text": "Savage Twister deals X damage to each creature.", "colors": ["G", "R"], "color_identity": ["G", "R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "5f06acf3-8123-4a78-b2e7-089b0b775a4a", "set": "mir", "set_name": "Mirage", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/5f06acf3-8123-4a78-b2e7-089b0b775a4a", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Amir&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/mir?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/eb73313b-d39a-46ab-abfc-76f94a75dfca/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A5268518e-7631-4149-8eea-c2475b9b14df&unique=prints", "collector_number": "280", "digital": false, "rarity": "uncommon", "flavor_text": "\"Frozen, we watched the funnel pluck up three of the goats\u2014pook! pook! pook!\u2014before we ran for the wadi.\"\n\u2014*Travelogue of Najat*", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Bob Eggleton", "artist_ids": ["fc0fb0e9-aa30-4143-a43e-d20b4aa9d8ed"], "illustration_id": "765a47c2-38b2-4c52-a11d-59df9220cd3b", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 4755, "penny_rank": 4848, "prices": {"usd": "0.20", "usd_foil": null, "usd_etched": null, "eur": "0.10", "eur_foil": null, "tix": "0.04"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=3551", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Savage+Twister&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Savage+Twister&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Savage+Twister"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/5215?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Savage+Twister&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/7275?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "273f25fc-9c9f-4b73-a28b-1461d8fcd443", "oracle_id": "f7f32fec-b384-4021-a69f-2dc9220ebc64", "multiverse_ids": [378482], "mtgo_id": 51633, "mtgo_foil_id": 51634, "tcgplayer_id": 79166, "cardmarket_id": 266046, "name": "Scouring Sands", "lang": "en", "released_at": "2014-02-07", "uri": "https://api.scryfall.com/cards/273f25fc-9c9f-4b73-a28b-1461d8fcd443", "scryfall_uri": "https://scryfall.com/card/bng/110/scouring-sands?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/2/7/273f25fc-9c9f-4b73-a28b-1461d8fcd443.jpg?1593092358", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/7/273f25fc-9c9f-4b73-a28b-1461d8fcd443.jpg?1593092358", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/2/7/273f25fc-9c9f-4b73-a28b-1461d8fcd443.jpg?1593092358", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/2/7/273f25fc-9c9f-4b73-a28b-1461d8fcd443.png?1593092358", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/7/273f25fc-9c9f-4b73-a28b-1461d8fcd443.jpg?1593092358", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/2/7/273f25fc-9c9f-4b73-a28b-1461d8fcd443.jpg?1593092358"}, "mana_cost": "{1}{R}", "cmc": 2.0, "type_line": "Sorcery", "oracle_text": "Scouring Sands deals 1 damage to each creature your opponents control. Scry 1. (Look at the top card of your library. You may put that card on the bottom of your library.)", "colors": ["R"], "color_identity": ["R"], "keywords": ["Scry"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "50a80fe4-a757-408f-ad23-52c5cc5f45cc", "set": "bng", "set_name": "Born of the Gods", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/50a80fe4-a757-408f-ad23-52c5cc5f45cc", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Abng&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/bng?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/273f25fc-9c9f-4b73-a28b-1461d8fcd443/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Af7f32fec-b384-4021-a69f-2dc9220ebc64&unique=prints", "collector_number": "110", "digital": false, "rarity": "common", "flavor_text": "When Purphoros cleans the ashes from his forge, entire cities vanish.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Jonas De Ro", "artist_ids": ["561ebf9e-8d93-4b57-8156-8826d0c19601"], "illustration_id": "9795ffdf-6cb5-4b49-9bce-4bd94a46c6eb", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 14349, "penny_rank": 10614, "prices": {"usd": "0.05", "usd_foil": "0.19", "usd_etched": null, "eur": "0.02", "eur_foil": "0.09", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=378482", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Scouring+Sands&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Scouring+Sands&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Scouring+Sands"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/79166?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Scouring+Sands&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/51633?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "2d16d8fe-a770-4bbd-bf20-447c0165de5a", "oracle_id": "aee0388f-544e-4c28-a34f-29cc0a97d424", "multiverse_ids": [562925], "tcgplayer_id": 273332, "cardmarket_id": 660816, "name": "Sculpted Sunburst", "lang": "en", "released_at": "2022-06-10", "uri": "https://api.scryfall.com/cards/2d16d8fe-a770-4bbd-bf20-447c0165de5a", "scryfall_uri": "https://scryfall.com/card/clb/42/sculpted-sunburst?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/2/d/2d16d8fe-a770-4bbd-bf20-447c0165de5a.jpg?1654291825", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/d/2d16d8fe-a770-4bbd-bf20-447c0165de5a.jpg?1654291825", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/2/d/2d16d8fe-a770-4bbd-bf20-447c0165de5a.jpg?1654291825", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/2/d/2d16d8fe-a770-4bbd-bf20-447c0165de5a.png?1654291825", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/d/2d16d8fe-a770-4bbd-bf20-447c0165de5a.jpg?1654291825", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/2/d/2d16d8fe-a770-4bbd-bf20-447c0165de5a.jpg?1654291825"}, "mana_cost": "{3}{W}{W}", "cmc": 5.0, "type_line": "Sorcery", "oracle_text": "Choose a creature you control, then each opponent chooses a creature they control with equal or lesser power. If you chose a creature this way, exile each creature not chosen by any player this way.", "colors": ["W"], "color_identity": ["W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "5e4c3fe8-fd57-4b20-ad56-c03790a16cea", "set": "clb", "set_name": "Commander Legends: Battle for Baldur's Gate", "set_type": "draft_innovation", "set_uri": "https://api.scryfall.com/sets/5e4c3fe8-fd57-4b20-ad56-c03790a16cea", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aclb&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/clb?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/2d16d8fe-a770-4bbd-bf20-447c0165de5a/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aaee0388f-544e-4c28-a34f-29cc0a97d424&unique=prints", "collector_number": "42", "digital": false, "rarity": "rare", "flavor_text": "A searing light that spares only the chosen.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Evyn Fong", "artist_ids": ["6777be9f-5724-4fdb-b6a0-a83f63efa4ca"], "illustration_id": "631607c6-d591-4822-933a-0d77be11ea6c", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 13958, "preview": {"source": "Wizards of the Coast", "source_uri": "https://www.twitch.tv/videos/1309876135", "previewed_at": "2022-05-26"}, "prices": {"usd": "0.15", "usd_foil": "0.17", "usd_etched": null, "eur": "0.24", "eur_foil": "0.58", "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=562925", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Sculpted+Sunburst&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Sculpted+Sunburst&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Sculpted+Sunburst"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/273332?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Sculpted+Sunburst&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Sculpted+Sunburst&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "9b952e4e-c1ed-4455-90d5-46b56478e6b0", "oracle_id": "3b1f1a57-d83a-443f-b190-03df63d2bfe6", "multiverse_ids": [394685], "mtgo_id": 55984, "mtgo_foil_id": 55985, "tcgplayer_id": 96712, "cardmarket_id": 273374, "name": "Seismic Rupture", "lang": "en", "released_at": "2015-03-27", "uri": "https://api.scryfall.com/cards/9b952e4e-c1ed-4455-90d5-46b56478e6b0", "scryfall_uri": "https://scryfall.com/card/dtk/156/seismic-rupture?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/9/b/9b952e4e-c1ed-4455-90d5-46b56478e6b0.jpg?1562790481", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/b/9b952e4e-c1ed-4455-90d5-46b56478e6b0.jpg?1562790481", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/9/b/9b952e4e-c1ed-4455-90d5-46b56478e6b0.jpg?1562790481", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/9/b/9b952e4e-c1ed-4455-90d5-46b56478e6b0.png?1562790481", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/b/9b952e4e-c1ed-4455-90d5-46b56478e6b0.jpg?1562790481", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/9/b/9b952e4e-c1ed-4455-90d5-46b56478e6b0.jpg?1562790481"}, "mana_cost": "{2}{R}", "cmc": 3.0, "type_line": "Sorcery", "oracle_text": "Seismic Rupture deals 2 damage to each creature without flying.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "7e72625f-f320-4552-a719-d11e2f1853bd", "set": "dtk", "set_name": "Dragons of Tarkir", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/7e72625f-f320-4552-a719-d11e2f1853bd", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Adtk&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/dtk?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/9b952e4e-c1ed-4455-90d5-46b56478e6b0/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A3b1f1a57-d83a-443f-b190-03df63d2bfe6&unique=prints", "collector_number": "156", "digital": false, "rarity": "uncommon", "flavor_text": "The shaman opened the earth beneath their feet, trapping the survivors within the crevices of Ayagor for Atarka to devour at her leisure.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Jason A. Engle", "artist_ids": ["02e2b5de-4341-464c-8fdb-a1adbf873bc0"], "illustration_id": "967e64d5-35d9-412c-bd9c-7a4392c6320b", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 18432, "prices": {"usd": "0.08", "usd_foil": "0.10", "usd_etched": null, "eur": "0.02", "eur_foil": "0.15", "tix": "0.05"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=394685", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Seismic+Rupture&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Seismic+Rupture&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Seismic+Rupture"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/96712?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Seismic+Rupture&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/55984?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "20365082-6102-4e3b-8791-c9b66846270d", "oracle_id": "10c0f705-4c23-4761-afa9-4a29cf90e8ae", "multiverse_ids": [180134], "mtgo_id": 34454, "mtgo_foil_id": 34455, "tcgplayer_id": 33422, "cardmarket_id": 21936, "name": "Seismic Shudder", "lang": "en", "released_at": "2009-10-02", "uri": "https://api.scryfall.com/cards/20365082-6102-4e3b-8791-c9b66846270d", "scryfall_uri": "https://scryfall.com/card/zen/147/seismic-shudder?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/2/0/20365082-6102-4e3b-8791-c9b66846270d.jpg?1562610483", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/0/20365082-6102-4e3b-8791-c9b66846270d.jpg?1562610483", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/2/0/20365082-6102-4e3b-8791-c9b66846270d.jpg?1562610483", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/2/0/20365082-6102-4e3b-8791-c9b66846270d.png?1562610483", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/0/20365082-6102-4e3b-8791-c9b66846270d.jpg?1562610483", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/2/0/20365082-6102-4e3b-8791-c9b66846270d.jpg?1562610483"}, "mana_cost": "{1}{R}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Seismic Shudder deals 1 damage to each creature without flying.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "eb16a2bd-a218-4e4e-8339-4aa1afc0c8d2", "set": "zen", "set_name": "Zendikar", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/eb16a2bd-a218-4e4e-8339-4aa1afc0c8d2", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Azen&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/zen?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/20365082-6102-4e3b-8791-c9b66846270d/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A10c0f705-4c23-4761-afa9-4a29cf90e8ae&unique=prints", "collector_number": "147", "digital": false, "rarity": "common", "flavor_text": "\"The land here seems to go out of its way to kill you.\"\n\u2014Chandra Nalaar", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Vincent Proce", "artist_ids": ["d82b1138-76d3-49f7-9d8c-bc2e2d3e0b0a"], "illustration_id": "ba33dbd8-aec7-4029-8d41-5523025be078", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 18010, "prices": {"usd": "0.05", "usd_foil": "0.20", "usd_etched": null, "eur": "0.05", "eur_foil": "0.35", "tix": "0.04"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=180134", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Seismic+Shudder&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Seismic+Shudder&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Seismic+Shudder"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/33422?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Seismic+Shudder&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/34454?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "e55b8ffb-c2e4-4676-9051-ff6c686cad0b", "oracle_id": "6a56e2ef-75dd-47d5-b61c-11faaba8cd9a", "multiverse_ids": [548465], "mtgo_id": 97254, "arena_id": 79592, "tcgplayer_id": 262816, "cardmarket_id": 608247, "name": "Seismic Wave", "lang": "en", "released_at": "2022-02-18", "uri": "https://api.scryfall.com/cards/e55b8ffb-c2e4-4676-9051-ff6c686cad0b", "scryfall_uri": "https://scryfall.com/card/neo/161/seismic-wave?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/e/5/e55b8ffb-c2e4-4676-9051-ff6c686cad0b.jpg?1654567822", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/5/e55b8ffb-c2e4-4676-9051-ff6c686cad0b.jpg?1654567822", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/e/5/e55b8ffb-c2e4-4676-9051-ff6c686cad0b.jpg?1654567822", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/e/5/e55b8ffb-c2e4-4676-9051-ff6c686cad0b.png?1654567822", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/5/e55b8ffb-c2e4-4676-9051-ff6c686cad0b.jpg?1654567822", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/e/5/e55b8ffb-c2e4-4676-9051-ff6c686cad0b.jpg?1654567822"}, "mana_cost": "{2}{R}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Seismic Wave deals 2 damage to any target and 1 damage to each nonartifact creature target opponent controls.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo", "arena"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "59a2059f-5482-433f-8761-eb2e17859b71", "set": "neo", "set_name": "Kamigawa: Neon Dynasty", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/59a2059f-5482-433f-8761-eb2e17859b71", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aneo&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/neo?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/e55b8ffb-c2e4-4676-9051-ff6c686cad0b/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A6a56e2ef-75dd-47d5-b61c-11faaba8cd9a&unique=prints", "collector_number": "161", "digital": false, "rarity": "uncommon", "flavor_text": "\"Step carefully, Imperial. Even the earth rises against you.\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Aaron J. Riley", "artist_ids": ["f21b412c-aef5-4d15-88be-4f40615acde3"], "illustration_id": "9b56e683-6fda-490a-9898-33eb014ca89e", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 14510, "preview": {"source": "J\u00fapiter Juegos", "source_uri": "https://twitter.com/JupiterJuegos/status/1489214702269906950", "previewed_at": "2022-02-03"}, "prices": {"usd": "0.05", "usd_foil": "0.05", "usd_etched": null, "eur": "0.08", "eur_foil": "0.14", "tix": "0.01"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=548465", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Seismic+Wave&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Seismic+Wave&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Seismic+Wave"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/262816?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Seismic+Wave&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/97254?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "9cbd346e-098a-4cf6-a72f-468376fd2e8f", "oracle_id": "2a2ea189-b663-4f4a-bb23-ff7a4af25f71", "multiverse_ids": [435186], "mtgo_id": 65080, "mtgo_foil_id": 65081, "arena_id": 66029, "tcgplayer_id": 141999, "cardmarket_id": 301198, "name": "Settle the Wreckage", "lang": "en", "released_at": "2017-09-29", "uri": "https://api.scryfall.com/cards/9cbd346e-098a-4cf6-a72f-468376fd2e8f", "scryfall_uri": "https://scryfall.com/card/xln/34/settle-the-wreckage?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/9/c/9cbd346e-098a-4cf6-a72f-468376fd2e8f.jpg?1562560853", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/c/9cbd346e-098a-4cf6-a72f-468376fd2e8f.jpg?1562560853", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/9/c/9cbd346e-098a-4cf6-a72f-468376fd2e8f.jpg?1562560853", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/9/c/9cbd346e-098a-4cf6-a72f-468376fd2e8f.png?1562560853", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/c/9cbd346e-098a-4cf6-a72f-468376fd2e8f.jpg?1562560853", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/9/c/9cbd346e-098a-4cf6-a72f-468376fd2e8f.jpg?1562560853"}, "mana_cost": "{2}{W}{W}", "cmc": 4.0, "type_line": "Instant", "oracle_text": "Exile all attacking creatures target player controls. That player may search their library for that many basic land cards, put those cards onto the battlefield tapped, then shuffle.", "colors": ["W"], "color_identity": ["W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "fe0dad85-54bc-4151-9200-d68da84dd0f2", "set": "xln", "set_name": "Ixalan", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/fe0dad85-54bc-4151-9200-d68da84dd0f2", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Axln&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/xln?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/9cbd346e-098a-4cf6-a72f-468376fd2e8f/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A2a2ea189-b663-4f4a-bb23-ff7a4af25f71&unique=prints", "collector_number": "34", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Dimitar Marinski", "artist_ids": ["ad53afd6-d00f-4bc8-98ec-deab3f6aec50"], "illustration_id": "1b39b6df-9250-4213-a8ae-0db0c8e2c520", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 1916, "penny_rank": 157, "prices": {"usd": "3.64", "usd_foil": "7.12", "usd_etched": null, "eur": "2.48", "eur_foil": "3.99", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=435186", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Settle+the+Wreckage&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Settle+the+Wreckage&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Settle+the+Wreckage"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/141999?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Settle+the+Wreckage&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/65080?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "367c4ad6-973d-47ba-9431-312f9f2996f6", "oracle_id": "6e66e983-6349-428b-b511-8738c03ef8fc", "multiverse_ids": [4846], "mtgo_id": 10073, "mtgo_foil_id": 10074, "tcgplayer_id": 5723, "cardmarket_id": 8937, "name": "Shadowstorm", "lang": "en", "released_at": "1997-10-14", "uri": "https://api.scryfall.com/cards/367c4ad6-973d-47ba-9431-312f9f2996f6", "scryfall_uri": "https://scryfall.com/card/tmp/202/shadowstorm?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/3/6/367c4ad6-973d-47ba-9431-312f9f2996f6.jpg?1562053739", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/6/367c4ad6-973d-47ba-9431-312f9f2996f6.jpg?1562053739", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/3/6/367c4ad6-973d-47ba-9431-312f9f2996f6.jpg?1562053739", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/3/6/367c4ad6-973d-47ba-9431-312f9f2996f6.png?1562053739", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/6/367c4ad6-973d-47ba-9431-312f9f2996f6.jpg?1562053739", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/3/6/367c4ad6-973d-47ba-9431-312f9f2996f6.jpg?1562053739"}, "mana_cost": "{R}", "cmc": 1.0, "type_line": "Sorcery", "oracle_text": "Shadowstorm deals 2 damage to each creature with shadow.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "10df3a67-178e-4363-8668-34f0e6edf2a7", "set": "tmp", "set_name": "Tempest", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/10df3a67-178e-4363-8668-34f0e6edf2a7", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Atmp&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/tmp?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/367c4ad6-973d-47ba-9431-312f9f2996f6/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A6e66e983-6349-428b-b511-8738c03ef8fc&unique=prints", "collector_number": "202", "digital": false, "rarity": "uncommon", "flavor_text": "\"You've not seen a storm until you've seen the kind that roars between worlds.\"\n\u2014Lyna, Soltari emissary", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Adam Rex", "artist_ids": ["445bd2fb-4a70-4599-87a4-83cf5979fc56"], "illustration_id": "0a89deb5-f9e1-4cbc-a46a-3dd1327c88aa", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 23098, "prices": {"usd": "0.10", "usd_foil": null, "usd_etched": null, "eur": "0.05", "eur_foil": null, "tix": "0.09"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=4846", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Shadowstorm&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Shadowstorm&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Shadowstorm"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/5723?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Shadowstorm&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/10073?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "52470883-b44d-415b-9324-8074e66f79ae", "oracle_id": "83e99691-bc25-4b3e-b828-670ef2027592", "multiverse_ids": [491762], "mtgo_id": 83217, "arena_id": 73323, "tcgplayer_id": 222137, "cardmarket_id": 496575, "name": "Shadows' Verdict", "lang": "en", "released_at": "2020-09-25", "uri": "https://api.scryfall.com/cards/52470883-b44d-415b-9324-8074e66f79ae", "scryfall_uri": "https://scryfall.com/card/znr/124/shadows-verdict?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/5/2/52470883-b44d-415b-9324-8074e66f79ae.jpg?1604196514", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/2/52470883-b44d-415b-9324-8074e66f79ae.jpg?1604196514", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/5/2/52470883-b44d-415b-9324-8074e66f79ae.jpg?1604196514", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/5/2/52470883-b44d-415b-9324-8074e66f79ae.png?1604196514", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/2/52470883-b44d-415b-9324-8074e66f79ae.jpg?1604196514", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/5/2/52470883-b44d-415b-9324-8074e66f79ae.jpg?1604196514"}, "mana_cost": "{3}{B}{B}", "cmc": 5.0, "type_line": "Sorcery", "oracle_text": "Exile all creatures and planeswalkers with mana value 3 or less from the battlefield and all creature and planeswalker cards with mana value 3 or less from all graveyards.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "f4e01fa7-b254-42dd-849f-69b58027a8c4", "set": "znr", "set_name": "Zendikar Rising", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/f4e01fa7-b254-42dd-849f-69b58027a8c4", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aznr&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/znr?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/52470883-b44d-415b-9324-8074e66f79ae/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A83e99691-bc25-4b3e-b828-670ef2027592&unique=prints", "collector_number": "124", "digital": false, "rarity": "rare", "flavor_text": "The shadows of death fall over everyone in the end.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Lius Lasahido", "artist_ids": ["0a0e9093-ce44-4a69-93a7-09b63e7c330d"], "illustration_id": "3881aad0-bf51-4b84-bc7b-88e8dd6034e2", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 10970, "penny_rank": 3388, "preview": {"source": "Merchant", "source_uri": "https://twitter.com/Merchant_MTG/status/1303297808024375296", "previewed_at": "2020-09-08"}, "prices": {"usd": "0.18", "usd_foil": "0.17", "usd_etched": null, "eur": "0.48", "eur_foil": "1.00", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=491762", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Shadows%27+Verdict&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Shadows%27+Verdict&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Shadows%27+Verdict"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/222137?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Shadows%27+Verdict&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/83217?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "b5bd4bdd-3a2a-40d9-9f86-fefe0a462cd2", "oracle_id": "99eb5cda-684d-4f6c-bc34-1f03c8797150", "multiverse_ids": [439770], "mtgo_id": 66679, "arena_id": 66843, "tcgplayer_id": 155717, "cardmarket_id": 315428, "name": "Shake the Foundations", "lang": "en", "released_at": "2018-01-19", "uri": "https://api.scryfall.com/cards/b5bd4bdd-3a2a-40d9-9f86-fefe0a462cd2", "scryfall_uri": "https://scryfall.com/card/rix/113/shake-the-foundations?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/b/5/b5bd4bdd-3a2a-40d9-9f86-fefe0a462cd2.jpg?1555040519", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/5/b5bd4bdd-3a2a-40d9-9f86-fefe0a462cd2.jpg?1555040519", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/b/5/b5bd4bdd-3a2a-40d9-9f86-fefe0a462cd2.jpg?1555040519", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/b/5/b5bd4bdd-3a2a-40d9-9f86-fefe0a462cd2.png?1555040519", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/5/b5bd4bdd-3a2a-40d9-9f86-fefe0a462cd2.jpg?1555040519", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/b/5/b5bd4bdd-3a2a-40d9-9f86-fefe0a462cd2.jpg?1555040519"}, "mana_cost": "{2}{R}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Shake the Foundations deals 1 damage to each creature without flying.\nDraw a card.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "2f7e40fc-772d-4a85-bfdd-01653c41d0fa", "set": "rix", "set_name": "Rivals of Ixalan", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/2f7e40fc-772d-4a85-bfdd-01653c41d0fa", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Arix&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/rix?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/b5bd4bdd-3a2a-40d9-9f86-fefe0a462cd2/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A99eb5cda-684d-4f6c-bc34-1f03c8797150&unique=prints", "collector_number": "113", "digital": false, "rarity": "uncommon", "flavor_text": "A threefold calamity with a single will.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Zack Stella", "artist_ids": ["17bc7f55-958b-43f4-bb40-09746d05b3f9"], "illustration_id": "82cc8b32-089a-4e13-8f1e-67a42e589b72", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 8775, "prices": {"usd": "0.14", "usd_foil": "0.50", "usd_etched": null, "eur": "0.15", "eur_foil": "0.59", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=439770", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Shake+the+Foundations&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Shake+the+Foundations&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Shake+the+Foundations"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/155717?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Shake+the+Foundations&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/66679?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "b706977b-db8e-4810-882d-ed3745404489", "oracle_id": "2ffc7509-c7ce-44c4-a8cf-90ed161b5d10", "multiverse_ids": [476288], "mtgo_id": 79198, "arena_id": 70548, "tcgplayer_id": 207069, "cardmarket_id": 431999, "name": "Shatter the Sky", "lang": "en", "released_at": "2020-01-24", "uri": "https://api.scryfall.com/cards/b706977b-db8e-4810-882d-ed3745404489", "scryfall_uri": "https://scryfall.com/card/thb/37/shatter-the-sky?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/b/7/b706977b-db8e-4810-882d-ed3745404489.jpg?1581479244", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/7/b706977b-db8e-4810-882d-ed3745404489.jpg?1581479244", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/b/7/b706977b-db8e-4810-882d-ed3745404489.jpg?1581479244", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/b/7/b706977b-db8e-4810-882d-ed3745404489.png?1581479244", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/7/b706977b-db8e-4810-882d-ed3745404489.jpg?1581479244", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/b/7/b706977b-db8e-4810-882d-ed3745404489.jpg?1581479244"}, "mana_cost": "{2}{W}{W}", "cmc": 4.0, "type_line": "Sorcery", "oracle_text": "Each player who controls a creature with power 4 or greater draws a card. Then destroy all creatures.", "colors": ["W"], "color_identity": ["W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "5f23a78d-cda1-462a-8be3-a62b40c34913", "set": "thb", "set_name": "Theros Beyond Death", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/5f23a78d-cda1-462a-8be3-a62b40c34913", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Athb&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/thb?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/b706977b-db8e-4810-882d-ed3745404489/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A2ffc7509-c7ce-44c4-a8cf-90ed161b5d10&unique=prints", "collector_number": "37", "digital": false, "rarity": "rare", "flavor_text": "When the gods go to war, mortals pay the highest price.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Bayard Wu", "artist_ids": ["b089963c-610a-4d50-9206-d64b7caedef1"], "illustration_id": "2abbea4d-6f1b-4875-84c2-b19195b46f91", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 3526, "penny_rank": 312, "preview": {"source": "AliasV", "source_uri": "https://twitter.com/coL_AliasV/status/1215332662602129409", "previewed_at": "2020-01-09"}, "prices": {"usd": "0.18", "usd_foil": "0.26", "usd_etched": null, "eur": "0.21", "eur_foil": "0.49", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=476288", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Shatter+the+Sky&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Shatter+the+Sky&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Shatter+the+Sky"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/207069?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Shatter+the+Sky&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/79198?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "a87c80a1-5818-45fd-9a37-a2ee3396626e", "oracle_id": "1be478ee-87f3-4265-94d7-08521703c888", "multiverse_ids": [193534], "mtgo_id": 36508, "mtgo_foil_id": 36509, "tcgplayer_id": 34820, "cardmarket_id": 22568, "name": "Shrivel", "lang": "en", "released_at": "2010-04-23", "uri": "https://api.scryfall.com/cards/a87c80a1-5818-45fd-9a37-a2ee3396626e", "scryfall_uri": "https://scryfall.com/card/roe/126/shrivel?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/a/8/a87c80a1-5818-45fd-9a37-a2ee3396626e.jpg?1562707116", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/8/a87c80a1-5818-45fd-9a37-a2ee3396626e.jpg?1562707116", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/a/8/a87c80a1-5818-45fd-9a37-a2ee3396626e.jpg?1562707116", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/a/8/a87c80a1-5818-45fd-9a37-a2ee3396626e.png?1562707116", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/8/a87c80a1-5818-45fd-9a37-a2ee3396626e.jpg?1562707116", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/a/8/a87c80a1-5818-45fd-9a37-a2ee3396626e.jpg?1562707116"}, "mana_cost": "{1}{B}", "cmc": 2.0, "type_line": "Sorcery", "oracle_text": "All creatures get -1/-1 until end of turn.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "eadb8a82-ec56-4623-b50e-42e7e60cb535", "set": "roe", "set_name": "Rise of the Eldrazi", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/eadb8a82-ec56-4623-b50e-42e7e60cb535", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aroe&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/roe?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/a87c80a1-5818-45fd-9a37-a2ee3396626e/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A1be478ee-87f3-4265-94d7-08521703c888&unique=prints", "collector_number": "126", "digital": false, "rarity": "common", "flavor_text": "\"Have you ever killed insects nibbling at your crops? I think that's what the Eldrazi believe they're doing to us.\"\n\u2014Sheyda, Ondu gamekeeper", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Jung Park", "artist_ids": ["269392ac-4c06-4650-98e2-d49a5a7f2371"], "illustration_id": "36773e6a-841c-4186-8cf5-c164ded564e0", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 18395, "penny_rank": 13868, "prices": {"usd": "0.09", "usd_foil": "0.37", "usd_etched": null, "eur": "0.05", "eur_foil": "0.25", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=193534", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Shrivel&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Shrivel&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Shrivel"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/34820?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Shrivel&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/36508?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "9396ac77-9f53-46bd-b126-02441a0f5594", "oracle_id": "728d2e30-2f36-4054-81db-29b01e376a82", "multiverse_ids": [35063], "mtgo_id": 17207, "mtgo_foil_id": 17208, "tcgplayer_id": 9744, "cardmarket_id": 2352, "name": "Sickening Dreams", "lang": "en", "released_at": "2002-02-04", "uri": "https://api.scryfall.com/cards/9396ac77-9f53-46bd-b126-02441a0f5594", "scryfall_uri": "https://scryfall.com/card/tor/83/sickening-dreams?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/9/3/9396ac77-9f53-46bd-b126-02441a0f5594.jpg?1562630974", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/3/9396ac77-9f53-46bd-b126-02441a0f5594.jpg?1562630974", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/9/3/9396ac77-9f53-46bd-b126-02441a0f5594.jpg?1562630974", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/9/3/9396ac77-9f53-46bd-b126-02441a0f5594.png?1562630974", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/3/9396ac77-9f53-46bd-b126-02441a0f5594.jpg?1562630974", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/9/3/9396ac77-9f53-46bd-b126-02441a0f5594.jpg?1562630974"}, "mana_cost": "{1}{B}", "cmc": 2.0, "type_line": "Sorcery", "oracle_text": "As an additional cost to cast this spell, discard X cards.\nSickening Dreams deals X damage to each creature and each player.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "e0b3fda1-a6ca-4996-849b-08b463d39484", "set": "tor", "set_name": "Torment", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/e0b3fda1-a6ca-4996-849b-08b463d39484", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ator&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/tor?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/9396ac77-9f53-46bd-b126-02441a0f5594/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A728d2e30-2f36-4054-81db-29b01e376a82&unique=prints", "collector_number": "83", "digital": false, "rarity": "uncommon", "flavor_text": "The Patriarch dreams of vile plague.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Scott M. Fischer", "artist_ids": ["23b0cf43-3e43-44c6-8329-96446eca5bce"], "illustration_id": "965c6834-bb6d-466b-870f-31f43a015077", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 7594, "penny_rank": 5801, "prices": {"usd": "0.33", "usd_foil": "15.18", "usd_etched": null, "eur": "0.38", "eur_foil": "0.90", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=35063", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Sickening+Dreams&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Sickening+Dreams&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Sickening+Dreams"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/9744?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Sickening+Dreams&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/17207?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "84b1930d-2e4b-472f-98a9-008fd632f3be", "oracle_id": "128e201a-f520-4917-a1a4-2f3836f1f92d", "multiverse_ids": [23175], "mtgo_id": 14581, "mtgo_foil_id": 14582, "tcgplayer_id": 7657, "cardmarket_id": 3651, "name": "Simoon", "lang": "en", "released_at": "2000-10-02", "uri": "https://api.scryfall.com/cards/84b1930d-2e4b-472f-98a9-008fd632f3be", "scryfall_uri": "https://scryfall.com/card/inv/272/simoon?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/8/4/84b1930d-2e4b-472f-98a9-008fd632f3be.jpg?1562921826", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/4/84b1930d-2e4b-472f-98a9-008fd632f3be.jpg?1562921826", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/8/4/84b1930d-2e4b-472f-98a9-008fd632f3be.jpg?1562921826", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/8/4/84b1930d-2e4b-472f-98a9-008fd632f3be.png?1562921826", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/4/84b1930d-2e4b-472f-98a9-008fd632f3be.jpg?1562921826", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/8/4/84b1930d-2e4b-472f-98a9-008fd632f3be.jpg?1562921826"}, "mana_cost": "{R}{G}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Simoon deals 1 damage to each creature target opponent controls.", "colors": ["G", "R"], "color_identity": ["G", "R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "b9ae5e02-7726-47ca-b5e4-5ec402b41cd1", "set": "inv", "set_name": "Invasion", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/b9ae5e02-7726-47ca-b5e4-5ec402b41cd1", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ainv&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/inv?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/84b1930d-2e4b-472f-98a9-008fd632f3be/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A128e201a-f520-4917-a1a4-2f3836f1f92d&unique=prints", "collector_number": "272", "digital": false, "rarity": "uncommon", "flavor_text": "Hot wind whipped up as if the weather itself wanted to fight Phyrexians.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Tony Szczudlo", "artist_ids": ["1952c90b-a5a7-4328-9f7c-e11064f59daf"], "illustration_id": "e7e49ceb-f0ea-47b2-a279-2eb43b09099e", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 21427, "prices": {"usd": "0.18", "usd_foil": "1.16", "usd_etched": null, "eur": "0.05", "eur_foil": "3.00", "tix": "0.04"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=23175", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Simoon&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Simoon&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Simoon"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/7657?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Simoon&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/14581?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "642d9239-82e0-4696-ad99-10796042d1f8", "oracle_id": "128e201a-f520-4917-a1a4-2f3836f1f92d", "multiverse_ids": [3743], "mtgo_id": 7715, "mtgo_foil_id": 7716, "tcgplayer_id": 5923, "cardmarket_id": 8537, "name": "Simoon", "lang": "en", "released_at": "1997-02-03", "uri": "https://api.scryfall.com/cards/642d9239-82e0-4696-ad99-10796042d1f8", "scryfall_uri": "https://scryfall.com/card/vis/136/simoon?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/6/4/642d9239-82e0-4696-ad99-10796042d1f8.jpg?1587913163", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/4/642d9239-82e0-4696-ad99-10796042d1f8.jpg?1587913163", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/6/4/642d9239-82e0-4696-ad99-10796042d1f8.jpg?1587913163", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/6/4/642d9239-82e0-4696-ad99-10796042d1f8.png?1587913163", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/4/642d9239-82e0-4696-ad99-10796042d1f8.jpg?1587913163", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/6/4/642d9239-82e0-4696-ad99-10796042d1f8.jpg?1587913163"}, "mana_cost": "{R}{G}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Simoon deals 1 damage to each creature target opponent controls.", "colors": ["G", "R"], "color_identity": ["G", "R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "2c32f1a9-7921-4826-bea0-80bbac70532c", "set": "vis", "set_name": "Visions", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/2c32f1a9-7921-4826-bea0-80bbac70532c", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Avis&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/vis?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/642d9239-82e0-4696-ad99-10796042d1f8/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A128e201a-f520-4917-a1a4-2f3836f1f92d&unique=prints", "collector_number": "136", "digital": false, "rarity": "uncommon", "flavor_text": "\"The black-and-white sacred monkey holds her children to her, and waits.\"\n\u2014\"Love Song of Night and Day\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Randy Gallegos", "artist_ids": ["a5048cc7-438a-4378-98e4-da99b78e1db0"], "illustration_id": "47c60cd5-3c97-4160-ad9b-62d3426b4a76", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 21427, "prices": {"usd": "0.10", "usd_foil": null, "usd_etched": null, "eur": "0.21", "eur_foil": null, "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=3743", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Simoon&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Simoon&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Simoon"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/5923?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Simoon&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/7715?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "ce0e7c6a-e628-4327-a16f-2062c5a662df", "oracle_id": "822ef47e-3f1b-40a6-8c5c-fea3d7deba5b", "multiverse_ids": [460957], "mtgo_id": 71666, "arena_id": 69481, "tcgplayer_id": 187255, "cardmarket_id": 371910, "name": "Single Combat", "lang": "en", "released_at": "2019-05-03", "uri": "https://api.scryfall.com/cards/ce0e7c6a-e628-4327-a16f-2062c5a662df", "scryfall_uri": "https://scryfall.com/card/war/30/single-combat?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/c/e/ce0e7c6a-e628-4327-a16f-2062c5a662df.jpg?1557576066", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/e/ce0e7c6a-e628-4327-a16f-2062c5a662df.jpg?1557576066", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/c/e/ce0e7c6a-e628-4327-a16f-2062c5a662df.jpg?1557576066", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/c/e/ce0e7c6a-e628-4327-a16f-2062c5a662df.png?1557576066", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/e/ce0e7c6a-e628-4327-a16f-2062c5a662df.jpg?1557576066", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/c/e/ce0e7c6a-e628-4327-a16f-2062c5a662df.jpg?1557576066"}, "mana_cost": "{3}{W}{W}", "cmc": 5.0, "type_line": "Sorcery", "oracle_text": "Each player chooses a creature or planeswalker they control, then sacrifices the rest. Players can't cast creature or planeswalker spells until the end of your next turn.", "colors": ["W"], "color_identity": ["W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "ee044f0b-e101-4ead-8d0e-aa510aad4277", "set": "war", "set_name": "War of the Spark", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/ee044f0b-e101-4ead-8d0e-aa510aad4277", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Awar&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/war?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/ce0e7c6a-e628-4327-a16f-2062c5a662df/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A822ef47e-3f1b-40a6-8c5c-fea3d7deba5b&unique=prints", "collector_number": "30", "digital": false, "rarity": "rare", "flavor_text": "Not even a threat to the entire Multiverse could persuade them to put aside their feud.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Livia Prima", "artist_ids": ["0f41e561-bc26-4d85-aab6-66c384e01b74"], "illustration_id": "3c7c0875-701d-4999-87df-8e9dc0c32d2c", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 1451, "penny_rank": 1618, "preview": {"source": "Wizards of the Coast", "source_uri": "https://magic.wizards.com/en/articles/archive/card-preview/single-combat-2019-04-03", "previewed_at": "2019-04-03"}, "prices": {"usd": "0.38", "usd_foil": "1.27", "usd_etched": null, "eur": "0.12", "eur_foil": "0.60", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=460957", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Single+Combat&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Single+Combat&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Single+Combat"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/187255?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Single+Combat&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/71666?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "40eb76b3-b527-4ed8-8ce3-d3de48562b6e", "oracle_id": "dcdc60ae-1858-4b51-8b64-58a4942bc3d7", "multiverse_ids": [378512], "mtgo_id": 51705, "mtgo_foil_id": 51706, "tcgplayer_id": 78656, "cardmarket_id": 265552, "name": "Skyreaping", "lang": "en", "released_at": "2014-02-07", "uri": "https://api.scryfall.com/cards/40eb76b3-b527-4ed8-8ce3-d3de48562b6e", "scryfall_uri": "https://scryfall.com/card/bng/140/skyreaping?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/4/0/40eb76b3-b527-4ed8-8ce3-d3de48562b6e.jpg?1593092666", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/0/40eb76b3-b527-4ed8-8ce3-d3de48562b6e.jpg?1593092666", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/4/0/40eb76b3-b527-4ed8-8ce3-d3de48562b6e.jpg?1593092666", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/4/0/40eb76b3-b527-4ed8-8ce3-d3de48562b6e.png?1593092666", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/0/40eb76b3-b527-4ed8-8ce3-d3de48562b6e.jpg?1593092666", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/4/0/40eb76b3-b527-4ed8-8ce3-d3de48562b6e.jpg?1593092666"}, "mana_cost": "{1}{G}", "cmc": 2.0, "type_line": "Sorcery", "oracle_text": "Skyreaping deals damage to each creature with flying equal to your devotion to green. (Each {G} in the mana costs of permanents you control counts toward your devotion to green.)", "colors": ["G"], "color_identity": ["G"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "50a80fe4-a757-408f-ad23-52c5cc5f45cc", "set": "bng", "set_name": "Born of the Gods", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/50a80fe4-a757-408f-ad23-52c5cc5f45cc", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Abng&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/bng?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/40eb76b3-b527-4ed8-8ce3-d3de48562b6e/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Adcdc60ae-1858-4b51-8b64-58a4942bc3d7&unique=prints", "collector_number": "140", "digital": false, "rarity": "uncommon", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Seb McKinnon", "artist_ids": ["ad4caca0-8d89-44ce-a1a6-d5ca905bd6fb"], "illustration_id": "7c8e38ec-5d96-46c8-8df3-de8bed795ec9", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 16269, "prices": {"usd": "0.09", "usd_foil": "0.32", "usd_etched": null, "eur": "0.15", "eur_foil": "0.33", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=378512", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Skyreaping&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Skyreaping&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Skyreaping"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/78656?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Skyreaping&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/51705?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "9e318b03-2aad-462b-a2a9-8b6bdf0e93d6", "oracle_id": "2ed1879a-83b8-48df-a6d2-fe28e912b4c5", "multiverse_ids": [214054], "mtgo_id": 39523, "mtgo_foil_id": 39524, "tcgplayer_id": 39101, "cardmarket_id": 245379, "name": "Slagstorm", "lang": "en", "released_at": "2011-02-04", "uri": "https://api.scryfall.com/cards/9e318b03-2aad-462b-a2a9-8b6bdf0e93d6", "scryfall_uri": "https://scryfall.com/card/mbs/75/slagstorm?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/9/e/9e318b03-2aad-462b-a2a9-8b6bdf0e93d6.jpg?1562613393", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/e/9e318b03-2aad-462b-a2a9-8b6bdf0e93d6.jpg?1562613393", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/9/e/9e318b03-2aad-462b-a2a9-8b6bdf0e93d6.jpg?1562613393", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/9/e/9e318b03-2aad-462b-a2a9-8b6bdf0e93d6.png?1562613393", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/e/9e318b03-2aad-462b-a2a9-8b6bdf0e93d6.jpg?1562613393", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/9/e/9e318b03-2aad-462b-a2a9-8b6bdf0e93d6.jpg?1562613393"}, "mana_cost": "{1}{R}{R}", "cmc": 3.0, "type_line": "Sorcery", "oracle_text": "Choose one \u2014\n\u2022 Slagstorm deals 3 damage to each creature.\n\u2022 Slagstorm deals 3 damage to each player.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "f46c57e3-9301-4006-a6ca-06f3f65961fb", "set": "mbs", "set_name": "Mirrodin Besieged", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/f46c57e3-9301-4006-a6ca-06f3f65961fb", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ambs&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/mbs?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/9e318b03-2aad-462b-a2a9-8b6bdf0e93d6/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A2ed1879a-83b8-48df-a6d2-fe28e912b4c5&unique=prints", "collector_number": "75", "digital": false, "rarity": "rare", "watermark": "mirran", "flavor_text": "\"As long as we have the will to fight, we are never without weapons.\"\n\u2014Koth of the Hammer", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Dan Scott", "artist_ids": ["f852fa13-137e-40f2-bbc1-0f01df09c0e0"], "illustration_id": "218856da-b078-4d42-aa99-83971c0fbfc9", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 6151, "penny_rank": 469, "prices": {"usd": "0.33", "usd_foil": "1.21", "usd_etched": null, "eur": "0.55", "eur_foil": "1.90", "tix": "0.01"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=214054", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Slagstorm&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Slagstorm&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Slagstorm"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/39101?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Slagstorm&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/39523?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "0913a5e8-7f77-44f2-a7cf-c8c0d6270a86", "oracle_id": "ba7f1b09-5727-484d-a502-3dcf4d618c56", "multiverse_ids": [497567], "mtgo_id": 84876, "tcgplayer_id": 226666, "cardmarket_id": 510755, "name": "Slash the Ranks", "lang": "en", "released_at": "2020-11-20", "uri": "https://api.scryfall.com/cards/0913a5e8-7f77-44f2-a7cf-c8c0d6270a86", "scryfall_uri": "https://scryfall.com/card/cmr/47/slash-the-ranks?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/0/9/0913a5e8-7f77-44f2-a7cf-c8c0d6270a86.jpg?1608909011", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/9/0913a5e8-7f77-44f2-a7cf-c8c0d6270a86.jpg?1608909011", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/0/9/0913a5e8-7f77-44f2-a7cf-c8c0d6270a86.jpg?1608909011", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/0/9/0913a5e8-7f77-44f2-a7cf-c8c0d6270a86.png?1608909011", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/9/0913a5e8-7f77-44f2-a7cf-c8c0d6270a86.jpg?1608909011", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/0/9/0913a5e8-7f77-44f2-a7cf-c8c0d6270a86.jpg?1608909011"}, "mana_cost": "{3}{W}{W}", "cmc": 5.0, "type_line": "Sorcery", "oracle_text": "Destroy all creatures and planeswalkers except for commanders.", "colors": ["W"], "color_identity": ["W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "39de6fbf-1f11-48d0-8f04-f0407f6a0732", "set": "cmr", "set_name": "Commander Legends", "set_type": "draft_innovation", "set_uri": "https://api.scryfall.com/sets/39de6fbf-1f11-48d0-8f04-f0407f6a0732", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Acmr&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/cmr?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/0913a5e8-7f77-44f2-a7cf-c8c0d6270a86/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aba7f1b09-5727-484d-a502-3dcf4d618c56&unique=prints", "collector_number": "47", "digital": false, "rarity": "rare", "flavor_text": "The generals each surveyed their devastated forces. Then, slowly, they turned to each other and raised their swords.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Svetlin Velinov", "artist_ids": ["ffd063ae-c097-4f26-b2e6-b1e2137708bc"], "illustration_id": "3f06a114-4236-465f-a96d-221ecb0b0919", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 1943, "preview": {"source": "The Command Zone", "source_uri": "https://www.youtube.com/watch?v=Yc_clSPaPyA", "previewed_at": "2020-10-29"}, "prices": {"usd": "0.64", "usd_foil": "0.67", "usd_etched": null, "eur": "0.26", "eur_foil": "0.22", "tix": "0.57"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=497567", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Slash+the+Ranks&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Slash+the+Ranks&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Slash+the+Ranks"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/226666?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Slash+the+Ranks&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/84876?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "6c9f8aea-0c9a-4686-b551-35e2a72ef701", "oracle_id": "7a3569a0-a55f-40c9-9588-92db35e26567", "multiverse_ids": [562926], "tcgplayer_id": 273334, "cardmarket_id": 660714, "name": "Slaughter the Strong", "lang": "en", "released_at": "2022-06-10", "uri": "https://api.scryfall.com/cards/6c9f8aea-0c9a-4686-b551-35e2a72ef701", "scryfall_uri": "https://scryfall.com/card/clb/43/slaughter-the-strong?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/6/c/6c9f8aea-0c9a-4686-b551-35e2a72ef701.jpg?1653521934", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/c/6c9f8aea-0c9a-4686-b551-35e2a72ef701.jpg?1653521934", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/6/c/6c9f8aea-0c9a-4686-b551-35e2a72ef701.jpg?1653521934", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/6/c/6c9f8aea-0c9a-4686-b551-35e2a72ef701.png?1653521934", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/c/6c9f8aea-0c9a-4686-b551-35e2a72ef701.jpg?1653521934", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/6/c/6c9f8aea-0c9a-4686-b551-35e2a72ef701.jpg?1653521934"}, "mana_cost": "{1}{W}{W}", "cmc": 3.0, "type_line": "Sorcery", "oracle_text": "Each player chooses any number of creatures they control with total power 4 or less, then sacrifices all other creatures they control.", "colors": ["W"], "color_identity": ["W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "5e4c3fe8-fd57-4b20-ad56-c03790a16cea", "set": "clb", "set_name": "Commander Legends: Battle for Baldur's Gate", "set_type": "draft_innovation", "set_uri": "https://api.scryfall.com/sets/5e4c3fe8-fd57-4b20-ad56-c03790a16cea", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aclb&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/clb?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/6c9f8aea-0c9a-4686-b551-35e2a72ef701/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A7a3569a0-a55f-40c9-9588-92db35e26567&unique=prints", "collector_number": "43", "digital": false, "rarity": "uncommon", "flavor_text": "It was a big day for the gravediggers at Cliffside Cemetery.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Leonardo Santanna", "artist_ids": ["f1f8e6d8-8fb3-472a-a32f-a4b1225bd054"], "illustration_id": "4c729bb5-19fa-4756-9a3a-3222a28ed5aa", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 1928, "penny_rank": 5052, "preview": {"source": "CovertGoBlue", "source_uri": "https://twitter.com/covertgoblue/status/1529546530738380802", "previewed_at": "2022-05-25"}, "prices": {"usd": "0.08", "usd_foil": "0.19", "usd_etched": null, "eur": "0.15", "eur_foil": "0.19", "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=562926", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Slaughter+the+Strong&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Slaughter+the+Strong&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Slaughter+the+Strong"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/273334?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Slaughter+the+Strong&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Slaughter+the+Strong&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "4217ab21-181e-4c32-97c3-d8bd441287e0", "oracle_id": "7a3569a0-a55f-40c9-9588-92db35e26567", "multiverse_ids": [439679], "mtgo_id": 66497, "arena_id": 66661, "tcgplayer_id": 155745, "cardmarket_id": 315371, "name": "Slaughter the Strong", "lang": "en", "released_at": "2018-01-19", "uri": "https://api.scryfall.com/cards/4217ab21-181e-4c32-97c3-d8bd441287e0", "scryfall_uri": "https://scryfall.com/card/rix/22/slaughter-the-strong?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/4/2/4217ab21-181e-4c32-97c3-d8bd441287e0.jpg?1555039791", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/2/4217ab21-181e-4c32-97c3-d8bd441287e0.jpg?1555039791", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/4/2/4217ab21-181e-4c32-97c3-d8bd441287e0.jpg?1555039791", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/4/2/4217ab21-181e-4c32-97c3-d8bd441287e0.png?1555039791", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/2/4217ab21-181e-4c32-97c3-d8bd441287e0.jpg?1555039791", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/4/2/4217ab21-181e-4c32-97c3-d8bd441287e0.jpg?1555039791"}, "mana_cost": "{1}{W}{W}", "cmc": 3.0, "type_line": "Sorcery", "oracle_text": "Each player chooses any number of creatures they control with total power 4 or less, then sacrifices all other creatures they control.", "colors": ["W"], "color_identity": ["W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "2f7e40fc-772d-4a85-bfdd-01653c41d0fa", "set": "rix", "set_name": "Rivals of Ixalan", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/2f7e40fc-772d-4a85-bfdd-01653c41d0fa", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Arix&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/rix?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/4217ab21-181e-4c32-97c3-d8bd441287e0/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A7a3569a0-a55f-40c9-9588-92db35e26567&unique=prints", "collector_number": "22", "digital": false, "rarity": "rare", "flavor_text": "\"Cut the beasts out from under them and their strength is nothing.\"\n\u2014Vona of Iedo, Butcher of Magan", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Randy Vargas", "artist_ids": ["d20672ca-0555-4238-a984-fd171d36b247"], "illustration_id": "9a04516e-1a84-4cdf-b483-75f1aadd21ed", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 1928, "penny_rank": 5052, "prices": {"usd": "0.30", "usd_foil": "1.56", "usd_etched": null, "eur": "0.75", "eur_foil": "1.25", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=439679", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Slaughter+the+Strong&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Slaughter+the+Strong&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Slaughter+the+Strong"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/155745?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Slaughter+the+Strong&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/66497?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "59262684-86e3-4485-9e35-202771c3eaa6", "oracle_id": "463fc961-d34e-4f40-b383-5b78a0fcb5c8", "multiverse_ids": [41171], "mtgo_id": 18087, "mtgo_foil_id": 18088, "tcgplayer_id": 10614, "cardmarket_id": 1863, "name": "Slice and Dice", "lang": "en", "released_at": "2002-10-07", "uri": "https://api.scryfall.com/cards/59262684-86e3-4485-9e35-202771c3eaa6", "scryfall_uri": "https://scryfall.com/card/ons/232/slice-and-dice?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/5/9/59262684-86e3-4485-9e35-202771c3eaa6.jpg?1562916006", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/9/59262684-86e3-4485-9e35-202771c3eaa6.jpg?1562916006", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/5/9/59262684-86e3-4485-9e35-202771c3eaa6.jpg?1562916006", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/5/9/59262684-86e3-4485-9e35-202771c3eaa6.png?1562916006", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/9/59262684-86e3-4485-9e35-202771c3eaa6.jpg?1562916006", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/5/9/59262684-86e3-4485-9e35-202771c3eaa6.jpg?1562916006"}, "mana_cost": "{4}{R}{R}", "cmc": 6.0, "type_line": "Sorcery", "oracle_text": "Slice and Dice deals 4 damage to each creature.\nCycling {2}{R} ({2}{R}, Discard this card: Draw a card.)\nWhen you cycle Slice and Dice, you may have it deal 1 damage to each creature.", "colors": ["R"], "color_identity": ["R"], "keywords": ["Cycling"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "914a6c6d-cb3b-45e8-a2db-9978a2339faf", "set": "ons", "set_name": "Onslaught", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/914a6c6d-cb3b-45e8-a2db-9978a2339faf", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aons&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ons?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/59262684-86e3-4485-9e35-202771c3eaa6/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A463fc961-d34e-4f40-b383-5b78a0fcb5c8&unique=prints", "collector_number": "232", "digital": false, "rarity": "uncommon", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Mark Brill", "artist_ids": ["46dc4b5e-e42c-4d65-a4f3-ad75b0f6f6dd"], "illustration_id": "d5ba5359-a178-4895-871f-f157b0ca6694", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 6856, "penny_rank": 3063, "prices": {"usd": "0.20", "usd_foil": "4.60", "usd_etched": null, "eur": "0.09", "eur_foil": "3.98", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=41171", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Slice+and+Dice&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Slice+and+Dice&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Slice+and+Dice"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/10614?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Slice+and+Dice&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/18087?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "eb72ba0f-ab3a-41e6-906d-a84039efa0af", "oracle_id": "424f3d53-47e7-4212-8267-53279ea8900a", "multiverse_ids": [461143], "mtgo_id": 72038, "arena_id": 69665, "tcgplayer_id": 188319, "cardmarket_id": 372072, "name": "Solar Blaze", "lang": "en", "released_at": "2019-05-03", "uri": "https://api.scryfall.com/cards/eb72ba0f-ab3a-41e6-906d-a84039efa0af", "scryfall_uri": "https://scryfall.com/card/war/216/solar-blaze?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/e/b/eb72ba0f-ab3a-41e6-906d-a84039efa0af.jpg?1557577261", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/b/eb72ba0f-ab3a-41e6-906d-a84039efa0af.jpg?1557577261", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/e/b/eb72ba0f-ab3a-41e6-906d-a84039efa0af.jpg?1557577261", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/e/b/eb72ba0f-ab3a-41e6-906d-a84039efa0af.png?1557577261", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/b/eb72ba0f-ab3a-41e6-906d-a84039efa0af.jpg?1557577261", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/e/b/eb72ba0f-ab3a-41e6-906d-a84039efa0af.jpg?1557577261"}, "mana_cost": "{2}{R}{W}", "cmc": 4.0, "type_line": "Sorcery", "oracle_text": "Each creature deals damage to itself equal to its power.", "colors": ["R", "W"], "color_identity": ["R", "W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "ee044f0b-e101-4ead-8d0e-aa510aad4277", "set": "war", "set_name": "War of the Spark", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/ee044f0b-e101-4ead-8d0e-aa510aad4277", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Awar&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/war?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/eb72ba0f-ab3a-41e6-906d-a84039efa0af/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A424f3d53-47e7-4212-8267-53279ea8900a&unique=prints", "collector_number": "216", "digital": false, "rarity": "rare", "flavor_text": "\"The primary weapon is nothing more than light. It shows them what they are, and they burn of their own accord.\"\n\u2014Aurelia", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Adam Paquette", "artist_ids": ["89023dad-e6c0-41e0-83fb-eb2bfbbdc3f2"], "illustration_id": "c961889a-8f8f-49af-b5f2-bc5b171ae8c3", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 5029, "penny_rank": 3066, "preview": {"source": "Good Luck High Five", "source_uri": "https://www.patreon.com/posts/glh5-exclusive-25963801", "previewed_at": "2019-04-08"}, "prices": {"usd": "0.21", "usd_foil": "0.58", "usd_etched": null, "eur": "0.05", "eur_foil": "0.29", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=461143", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Solar+Blaze&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Solar+Blaze&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Solar+Blaze"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/188319?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Solar+Blaze&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/72038?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "57ce33b6-267f-4ee8-a3f7-f41c619d0cfa", "oracle_id": "0f7a7348-3081-4fbb-9386-719a4ae7fa57", "multiverse_ids": [48437], "mtgo_id": 20141, "mtgo_foil_id": 20142, "tcgplayer_id": 11347, "cardmarket_id": 24, "name": "Solar Tide", "lang": "en", "released_at": "2003-10-02", "uri": "https://api.scryfall.com/cards/57ce33b6-267f-4ee8-a3f7-f41c619d0cfa", "scryfall_uri": "https://scryfall.com/card/mrd/24/solar-tide?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/5/7/57ce33b6-267f-4ee8-a3f7-f41c619d0cfa.jpg?1562144484", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/7/57ce33b6-267f-4ee8-a3f7-f41c619d0cfa.jpg?1562144484", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/5/7/57ce33b6-267f-4ee8-a3f7-f41c619d0cfa.jpg?1562144484", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/5/7/57ce33b6-267f-4ee8-a3f7-f41c619d0cfa.png?1562144484", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/7/57ce33b6-267f-4ee8-a3f7-f41c619d0cfa.jpg?1562144484", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/5/7/57ce33b6-267f-4ee8-a3f7-f41c619d0cfa.jpg?1562144484"}, "mana_cost": "{4}{W}{W}", "cmc": 6.0, "type_line": "Sorcery", "oracle_text": "Choose one \u2014\n\u2022 Destroy all creatures with power 2 or less.\n\u2022 Destroy all creatures with power 3 or greater.\nEntwine\u2014Sacrifice two lands. (Choose both if you pay the entwine cost.)", "colors": ["W"], "color_identity": ["W"], "keywords": ["Entwine"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "1d4f90ba-8d4a-4ee5-bc2f-e2d6bffe4955", "set": "mrd", "set_name": "Mirrodin", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/1d4f90ba-8d4a-4ee5-bc2f-e2d6bffe4955", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Amrd&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/mrd?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/57ce33b6-267f-4ee8-a3f7-f41c619d0cfa/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A0f7a7348-3081-4fbb-9386-719a4ae7fa57&unique=prints", "collector_number": "24", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Dave Dorman", "artist_ids": ["9235458b-ce92-45bd-a430-a72ecd8e6176"], "illustration_id": "862e2ceb-8769-4f47-b091-c2a9c05d22b3", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 10477, "penny_rank": 7517, "prices": {"usd": "0.96", "usd_foil": "3.22", "usd_etched": null, "eur": "0.95", "eur_foil": "0.96", "tix": "0.01"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=48437", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Solar+Tide&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Solar+Tide&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Solar+Tide"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/11347?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Solar+Tide&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/20141?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "4b3a7470-b93e-4c3a-ab1c-0a4dd401e95a", "oracle_id": "0b9a477b-f2dd-47b2-8493-eb63f44a2688", "multiverse_ids": [179409], "mtgo_id": 32256, "mtgo_foil_id": 32257, "tcgplayer_id": 31809, "cardmarket_id": 20909, "name": "Soulquake", "lang": "en", "released_at": "2009-04-30", "uri": "https://api.scryfall.com/cards/4b3a7470-b93e-4c3a-ab1c-0a4dd401e95a", "scryfall_uri": "https://scryfall.com/card/arb/30/soulquake?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/4/b/4b3a7470-b93e-4c3a-ab1c-0a4dd401e95a.jpg?1562641103", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/b/4b3a7470-b93e-4c3a-ab1c-0a4dd401e95a.jpg?1562641103", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/4/b/4b3a7470-b93e-4c3a-ab1c-0a4dd401e95a.jpg?1562641103", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/4/b/4b3a7470-b93e-4c3a-ab1c-0a4dd401e95a.png?1562641103", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/b/4b3a7470-b93e-4c3a-ab1c-0a4dd401e95a.jpg?1562641103", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/4/b/4b3a7470-b93e-4c3a-ab1c-0a4dd401e95a.jpg?1562641103"}, "mana_cost": "{3}{U}{U}{B}{B}", "cmc": 7.0, "type_line": "Sorcery", "oracle_text": "Return all creatures on the battlefield and all creature cards in graveyards to their owners' hands.", "colors": ["B", "U"], "color_identity": ["B", "U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "db486ec5-141d-4781-9ee5-5456926934c1", "set": "arb", "set_name": "Alara Reborn", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/db486ec5-141d-4781-9ee5-5456926934c1", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aarb&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/arb?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/4b3a7470-b93e-4c3a-ab1c-0a4dd401e95a/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A0b9a477b-f2dd-47b2-8493-eb63f44a2688&unique=prints", "collector_number": "30", "digital": false, "rarity": "rare", "flavor_text": "The Maelstrom sent a wave of raw mana through the battlefield, carrying off the fighting and fallen alike.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Warren Mahy", "artist_ids": ["002c739e-aa1f-4c1d-921b-37cb2d1b1c5b"], "illustration_id": "08ca0c53-19cf-4104-a02a-a81584f83bb6", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 16411, "penny_rank": 6868, "prices": {"usd": "0.20", "usd_foil": "0.34", "usd_etched": null, "eur": "0.10", "eur_foil": "0.45", "tix": "0.01"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=179409", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Soulquake&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Soulquake&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Soulquake"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/31809?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Soulquake&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/32256?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "7238c46e-6338-4aca-96f2-934c44c8cc36", "oracle_id": "bb9bb65e-504f-4edd-8d47-d0efa03e7d17", "multiverse_ids": [508153], "mtgo_id": 88157, "tcgplayer_id": 230966, "cardmarket_id": 533127, "name": "Spectral Deluge", "lang": "en", "released_at": "2021-02-05", "uri": "https://api.scryfall.com/cards/7238c46e-6338-4aca-96f2-934c44c8cc36", "scryfall_uri": "https://scryfall.com/card/khc/7/spectral-deluge?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/7/2/7238c46e-6338-4aca-96f2-934c44c8cc36.jpg?1631233619", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/2/7238c46e-6338-4aca-96f2-934c44c8cc36.jpg?1631233619", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/7/2/7238c46e-6338-4aca-96f2-934c44c8cc36.jpg?1631233619", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/7/2/7238c46e-6338-4aca-96f2-934c44c8cc36.png?1631233619", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/2/7238c46e-6338-4aca-96f2-934c44c8cc36.jpg?1631233619", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/7/2/7238c46e-6338-4aca-96f2-934c44c8cc36.jpg?1631233619"}, "mana_cost": "{4}{U}{U}", "cmc": 6.0, "type_line": "Sorcery", "oracle_text": "Return each creature your opponents control with toughness X or less to its owner's hand, where X is the number of Islands you control.\nForetell {1}{U}{U} (During your turn, you may pay {2} and exile this card from your hand face down. Cast it on a later turn for its foretell cost.)", "colors": ["U"], "color_identity": ["U"], "keywords": ["Foretell"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "d532ef25-e52b-4276-941a-3a1c095544b0", "set": "khc", "set_name": "Kaldheim Commander", "set_type": "commander", "set_uri": "https://api.scryfall.com/sets/d532ef25-e52b-4276-941a-3a1c095544b0", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Akhc&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/khc?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/7238c46e-6338-4aca-96f2-934c44c8cc36/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Abb9bb65e-504f-4edd-8d47-d0efa03e7d17&unique=prints", "collector_number": "7", "digital": false, "rarity": "rare", "watermark": "foretell", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Kieran Yanner", "artist_ids": ["aa7e89ed-d294-4633-9057-ce04dacfcfa4"], "illustration_id": "e1704d05-2fe2-41c2-9357-23d93a8b7488", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "edhrec_rank": 2528, "prices": {"usd": "0.57", "usd_foil": null, "usd_etched": null, "eur": "0.28", "eur_foil": null, "tix": "1.15"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=508153", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Spectral+Deluge&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Spectral+Deluge&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Spectral+Deluge"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/230966?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Spectral+Deluge&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/88157?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "55d50177-736a-44d6-a2a3-f6892d7037b3", "oracle_id": "0f81064d-01cd-4a61-8aea-2544e4d14b70", "multiverse_ids": [382372], "tcgplayer_id": 83272, "cardmarket_id": 267118, "name": "Spontaneous Combustion", "lang": "en", "released_at": "2014-06-06", "uri": "https://api.scryfall.com/cards/55d50177-736a-44d6-a2a3-f6892d7037b3", "scryfall_uri": "https://scryfall.com/card/cns/194/spontaneous-combustion?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/5/5/55d50177-736a-44d6-a2a3-f6892d7037b3.jpg?1562865429", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/5/55d50177-736a-44d6-a2a3-f6892d7037b3.jpg?1562865429", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/5/5/55d50177-736a-44d6-a2a3-f6892d7037b3.jpg?1562865429", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/5/5/55d50177-736a-44d6-a2a3-f6892d7037b3.png?1562865429", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/5/55d50177-736a-44d6-a2a3-f6892d7037b3.jpg?1562865429", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/5/5/55d50177-736a-44d6-a2a3-f6892d7037b3.jpg?1562865429"}, "mana_cost": "{1}{B}{R}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "As an additional cost to cast this spell, sacrifice a creature.\nSpontaneous Combustion deals 3 damage to each creature.", "colors": ["B", "R"], "color_identity": ["B", "R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "7d4ebb59-a50b-45b8-8fff-ab70767819a5", "set": "cns", "set_name": "Conspiracy", "set_type": "draft_innovation", "set_uri": "https://api.scryfall.com/sets/7d4ebb59-a50b-45b8-8fff-ab70767819a5", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Acns&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/cns?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/55d50177-736a-44d6-a2a3-f6892d7037b3/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A0f81064d-01cd-4a61-8aea-2544e4d14b70&unique=prints", "collector_number": "194", "digital": false, "rarity": "uncommon", "flavor_text": "\"Heat of battle\" is usually a metaphor.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Jason Rainville", "artist_ids": ["6ed7e669-579b-443d-b223-e5cbcb2a7483"], "illustration_id": "16630f76-4161-4134-a0d8-442707749526", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 16546, "prices": {"usd": "0.06", "usd_foil": "0.37", "usd_etched": null, "eur": "0.05", "eur_foil": "0.25", "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=382372", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Spontaneous+Combustion&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Spontaneous+Combustion&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Spontaneous+Combustion"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/83272?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Spontaneous+Combustion&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Spontaneous+Combustion&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "34e6c04f-9d1a-497b-bc96-a0e48a1c1904", "oracle_id": "0f81064d-01cd-4a61-8aea-2544e4d14b70", "multiverse_ids": [4919], "mtgo_id": 10161, "mtgo_foil_id": 10162, "tcgplayer_id": 5747, "cardmarket_id": 9083, "name": "Spontaneous Combustion", "lang": "en", "released_at": "1997-10-14", "uri": "https://api.scryfall.com/cards/34e6c04f-9d1a-497b-bc96-a0e48a1c1904", "scryfall_uri": "https://scryfall.com/card/tmp/273/spontaneous-combustion?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/3/4/34e6c04f-9d1a-497b-bc96-a0e48a1c1904.jpg?1562053293", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/4/34e6c04f-9d1a-497b-bc96-a0e48a1c1904.jpg?1562053293", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/3/4/34e6c04f-9d1a-497b-bc96-a0e48a1c1904.jpg?1562053293", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/3/4/34e6c04f-9d1a-497b-bc96-a0e48a1c1904.png?1562053293", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/4/34e6c04f-9d1a-497b-bc96-a0e48a1c1904.jpg?1562053293", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/3/4/34e6c04f-9d1a-497b-bc96-a0e48a1c1904.jpg?1562053293"}, "mana_cost": "{1}{B}{R}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "As an additional cost to cast this spell, sacrifice a creature.\nSpontaneous Combustion deals 3 damage to each creature.", "colors": ["B", "R"], "color_identity": ["B", "R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "10df3a67-178e-4363-8668-34f0e6edf2a7", "set": "tmp", "set_name": "Tempest", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/10df3a67-178e-4363-8668-34f0e6edf2a7", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Atmp&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/tmp?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/34e6c04f-9d1a-497b-bc96-a0e48a1c1904/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A0f81064d-01cd-4a61-8aea-2544e4d14b70&unique=prints", "collector_number": "273", "digital": false, "rarity": "uncommon", "flavor_text": "\"Heat of battle\" is usually a metaphor.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Doug Chaffee", "artist_ids": ["dd587b27-dca3-4219-aa55-b285a7a77030"], "illustration_id": "9604e111-0ed5-4000-b3dd-af7529a3e880", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 16546, "prices": {"usd": "0.12", "usd_foil": null, "usd_etched": null, "eur": "0.62", "eur_foil": null, "tix": "0.11"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=4919", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Spontaneous+Combustion&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Spontaneous+Combustion&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Spontaneous+Combustion"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/5747?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Spontaneous+Combustion&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/10161?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "46460e5f-2756-486b-99a6-c3a9a209bfaa", "oracle_id": "16fe0abe-04fa-4023-8ee0-043a076e78bb", "multiverse_ids": [25586], "mtgo_id": 15608, "mtgo_foil_id": 15609, "tcgplayer_id": 3091, "cardmarket_id": 3033, "name": "Squall", "lang": "en", "released_at": "2001-04-11", "uri": "https://api.scryfall.com/cards/46460e5f-2756-486b-99a6-c3a9a209bfaa", "scryfall_uri": "https://scryfall.com/card/7ed/271/squall?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/4/6/46460e5f-2756-486b-99a6-c3a9a209bfaa.jpg?1594065372", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/6/46460e5f-2756-486b-99a6-c3a9a209bfaa.jpg?1594065372", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/4/6/46460e5f-2756-486b-99a6-c3a9a209bfaa.jpg?1594065372", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/4/6/46460e5f-2756-486b-99a6-c3a9a209bfaa.png?1594065372", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/6/46460e5f-2756-486b-99a6-c3a9a209bfaa.jpg?1594065372", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/4/6/46460e5f-2756-486b-99a6-c3a9a209bfaa.jpg?1594065372"}, "mana_cost": "{2}{G}", "cmc": 3.0, "type_line": "Sorcery", "oracle_text": "Squall deals 2 damage to each creature with flying.", "colors": ["G"], "color_identity": ["G"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "230f38aa-9511-4db8-a3aa-aeddbc3f7bb9", "set": "7ed", "set_name": "Seventh Edition", "set_type": "core", "set_uri": "https://api.scryfall.com/sets/230f38aa-9511-4db8-a3aa-aeddbc3f7bb9", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3A7ed&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/7ed?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/46460e5f-2756-486b-99a6-c3a9a209bfaa/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A16fe0abe-04fa-4023-8ee0-043a076e78bb&unique=prints", "collector_number": "271", "digital": false, "rarity": "common", "flavor_text": "\"May the winds blow till they have wakened death. . . .\"\n\u2014William Shakespeare,\n*Othello*", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Greg Staples", "artist_ids": ["93d65564-bf00-447b-8406-e2031f03b6b1"], "illustration_id": "0910f796-1a2f-4c1d-9a1c-5d1195bc3620", "border_color": "white", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 22528, "prices": {"usd": "0.10", "usd_foil": "3.11", "usd_etched": null, "eur": "0.09", "eur_foil": "18.90", "tix": "0.11"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=25586", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Squall&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Squall&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Squall"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/3091?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Squall&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/15608?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "e5409b54-66ed-4add-bf43-cfeb074b1c50", "oracle_id": "16fe0abe-04fa-4023-8ee0-043a076e78bb", "multiverse_ids": [19636], "mtgo_id": 13395, "mtgo_foil_id": 13396, "tcgplayer_id": 6711, "cardmarket_id": 11648, "name": "Squall", "lang": "en", "released_at": "1999-10-04", "uri": "https://api.scryfall.com/cards/e5409b54-66ed-4add-bf43-cfeb074b1c50", "scryfall_uri": "https://scryfall.com/card/mmq/275/squall?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/e/5/e5409b54-66ed-4add-bf43-cfeb074b1c50.jpg?1562383517", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/5/e5409b54-66ed-4add-bf43-cfeb074b1c50.jpg?1562383517", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/e/5/e5409b54-66ed-4add-bf43-cfeb074b1c50.jpg?1562383517", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/e/5/e5409b54-66ed-4add-bf43-cfeb074b1c50.png?1562383517", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/5/e5409b54-66ed-4add-bf43-cfeb074b1c50.jpg?1562383517", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/e/5/e5409b54-66ed-4add-bf43-cfeb074b1c50.jpg?1562383517"}, "mana_cost": "{2}{G}", "cmc": 3.0, "type_line": "Sorcery", "oracle_text": "Squall deals 2 damage to each creature with flying.", "colors": ["G"], "color_identity": ["G"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "385e11a4-492b-4d07-b4a6-a1409ef829b8", "set": "mmq", "set_name": "Mercadian Masques", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/385e11a4-492b-4d07-b4a6-a1409ef829b8", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ammq&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/mmq?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/e5409b54-66ed-4add-bf43-cfeb074b1c50/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A16fe0abe-04fa-4023-8ee0-043a076e78bb&unique=prints", "collector_number": "275", "digital": false, "rarity": "common", "flavor_text": "The air that holds them aloft can just as easily put them down.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Val Mayerik", "artist_ids": ["289e552e-3b58-484f-a939-64a01426e84d"], "illustration_id": "72dd5984-43eb-49e3-a23d-5767d7d3bf89", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 22528, "prices": {"usd": "0.05", "usd_foil": "0.46", "usd_etched": null, "eur": "0.06", "eur_foil": "0.40", "tix": "0.09"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=19636", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Squall&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Squall&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Squall"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/6711?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Squall&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/13395?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "63c1b2f6-e47f-4f18-a94a-1d08eb009ef3", "oracle_id": "16fe0abe-04fa-4023-8ee0-043a076e78bb", "multiverse_ids": [20220], "tcgplayer_id": 386, "cardmarket_id": 14577, "name": "Squall", "lang": "en", "released_at": "1999-07-01", "uri": "https://api.scryfall.com/cards/63c1b2f6-e47f-4f18-a94a-1d08eb009ef3", "scryfall_uri": "https://scryfall.com/card/s99/143/squall?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/6/3/63c1b2f6-e47f-4f18-a94a-1d08eb009ef3.jpg?1594065383", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/3/63c1b2f6-e47f-4f18-a94a-1d08eb009ef3.jpg?1594065383", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/6/3/63c1b2f6-e47f-4f18-a94a-1d08eb009ef3.jpg?1594065383", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/6/3/63c1b2f6-e47f-4f18-a94a-1d08eb009ef3.png?1594065383", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/3/63c1b2f6-e47f-4f18-a94a-1d08eb009ef3.jpg?1594065383", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/6/3/63c1b2f6-e47f-4f18-a94a-1d08eb009ef3.jpg?1594065383"}, "mana_cost": "{2}{G}", "cmc": 3.0, "type_line": "Sorcery", "oracle_text": "Squall deals 2 damage to each creature with flying.", "colors": ["G"], "color_identity": ["G"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "7e345c51-7a88-4c7a-8184-4e1ba493b40d", "set": "s99", "set_name": "Starter 1999", "set_type": "starter", "set_uri": "https://api.scryfall.com/sets/7e345c51-7a88-4c7a-8184-4e1ba493b40d", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3As99&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/s99?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/63c1b2f6-e47f-4f18-a94a-1d08eb009ef3/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A16fe0abe-04fa-4023-8ee0-043a076e78bb&unique=prints", "collector_number": "143", "digital": false, "rarity": "common", "flavor_text": "\"To-night the winds begin to rise . . . The rooks are blown about the skies . . . .\"\n\u2014Alfred, Lord Tennyson, *In Memoriam*", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Carl Critchlow", "artist_ids": ["17948f16-611a-44b8-8d10-9895a0bdfff1"], "illustration_id": "9f4d8c56-c2c4-405e-84e5-3aa2dda9586c", "border_color": "white", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 22528, "prices": {"usd": "0.20", "usd_foil": null, "usd_etched": null, "eur": "0.25", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=20220", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Squall&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Squall&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Squall"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/386?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Squall&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Squall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "3f368729-a6f2-4bf7-8b06-39c551f0b24a", "oracle_id": "cdf9fab2-bfdb-4bf3-a06a-b21e07600e23", "multiverse_ids": [109702], "mtgo_id": 25505, "mtgo_foil_id": 25506, "tcgplayer_id": 14372, "cardmarket_id": 13991, "name": "Squall Line", "lang": "en", "released_at": "2006-10-06", "uri": "https://api.scryfall.com/cards/3f368729-a6f2-4bf7-8b06-39c551f0b24a", "scryfall_uri": "https://scryfall.com/card/tsp/222/squall-line?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/3/f/3f368729-a6f2-4bf7-8b06-39c551f0b24a.jpg?1562908127", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/f/3f368729-a6f2-4bf7-8b06-39c551f0b24a.jpg?1562908127", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/3/f/3f368729-a6f2-4bf7-8b06-39c551f0b24a.jpg?1562908127", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/3/f/3f368729-a6f2-4bf7-8b06-39c551f0b24a.png?1562908127", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/f/3f368729-a6f2-4bf7-8b06-39c551f0b24a.jpg?1562908127", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/3/f/3f368729-a6f2-4bf7-8b06-39c551f0b24a.jpg?1562908127"}, "mana_cost": "{X}{G}{G}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Squall Line deals X damage to each creature with flying and each player.", "colors": ["G"], "color_identity": ["G"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "c1d109bc-ffd8-428f-8d7d-3f8d7e648046", "set": "tsp", "set_name": "Time Spiral", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/c1d109bc-ffd8-428f-8d7d-3f8d7e648046", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Atsp&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/tsp?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/3f368729-a6f2-4bf7-8b06-39c551f0b24a/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Acdf9fab2-bfdb-4bf3-a06a-b21e07600e23&unique=prints", "collector_number": "222", "digital": false, "rarity": "rare", "flavor_text": "The constant shifting of Dominaria's shredded timeline played havoc with its atmosphere, combining savage electrical storms from ages past.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Lars Grant-West", "artist_ids": ["21ed6499-c4d3-4965-ab02-6c7228275bec"], "illustration_id": "1193eb39-d0de-4af1-a534-6d0663ad419c", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 7591, "penny_rank": 9091, "prices": {"usd": "1.60", "usd_foil": "7.35", "usd_etched": null, "eur": "0.02", "eur_foil": "6.00", "tix": "0.01"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=109702", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Squall+Line&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Squall+Line&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Squall+Line"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/14372?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Squall+Line&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/25505?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "021f57dc-80f3-4ede-99d5-4a44aade44e2", "oracle_id": "48220e6c-5752-46e0-9b7f-f0eef274d929", "multiverse_ids": [435315], "mtgo_id": 65338, "mtgo_foil_id": 65339, "arena_id": 66287, "tcgplayer_id": 142019, "cardmarket_id": 301215, "name": "Star of Extinction", "lang": "en", "released_at": "2017-09-29", "uri": "https://api.scryfall.com/cards/021f57dc-80f3-4ede-99d5-4a44aade44e2", "scryfall_uri": "https://scryfall.com/card/xln/161/star-of-extinction?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/0/2/021f57dc-80f3-4ede-99d5-4a44aade44e2.jpg?1562549822", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/2/021f57dc-80f3-4ede-99d5-4a44aade44e2.jpg?1562549822", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/0/2/021f57dc-80f3-4ede-99d5-4a44aade44e2.jpg?1562549822", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/0/2/021f57dc-80f3-4ede-99d5-4a44aade44e2.png?1562549822", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/2/021f57dc-80f3-4ede-99d5-4a44aade44e2.jpg?1562549822", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/0/2/021f57dc-80f3-4ede-99d5-4a44aade44e2.jpg?1562549822"}, "mana_cost": "{5}{R}{R}", "cmc": 7.0, "type_line": "Sorcery", "oracle_text": "Destroy target land. Star of Extinction deals 20 damage to each creature and each planeswalker.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "fe0dad85-54bc-4151-9200-d68da84dd0f2", "set": "xln", "set_name": "Ixalan", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/fe0dad85-54bc-4151-9200-d68da84dd0f2", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Axln&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/xln?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/021f57dc-80f3-4ede-99d5-4a44aade44e2/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A48220e6c-5752-46e0-9b7f-f0eef274d929&unique=prints", "collector_number": "161", "digital": false, "rarity": "mythic", "flavor_text": "\"The visions haunt me. I see the end of the world, brought on by the search for the Immortal Sun.\"\n\u2014Shaper Pashona", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Chris Rahn", "artist_ids": ["7742047e-0f80-4c0f-a530-d07460165e86"], "illustration_id": "901f34ae-5ef7-411d-bcba-30884226502f", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 2334, "prices": {"usd": "3.36", "usd_foil": "7.48", "usd_etched": null, "eur": "1.37", "eur_foil": "3.00", "tix": "0.10"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=435315", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Star+of+Extinction&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Star+of+Extinction&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Star+of+Extinction"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/142019?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Star+of+Extinction&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/65338?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "439aa3eb-fa1f-46b2-a13a-369b6a88d97c", "oracle_id": "34d112c3-cc2d-4428-bd7f-568bda61bd30", "multiverse_ids": [376522], "mtgo_id": 51326, "mtgo_foil_id": 51327, "tcgplayer_id": 72285, "cardmarket_id": 264865, "name": "Starstorm", "lang": "en", "released_at": "2013-11-01", "uri": "https://api.scryfall.com/cards/439aa3eb-fa1f-46b2-a13a-369b6a88d97c", "scryfall_uri": "https://scryfall.com/card/c13/122/starstorm?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/4/3/439aa3eb-fa1f-46b2-a13a-369b6a88d97c.jpg?1562908992", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/3/439aa3eb-fa1f-46b2-a13a-369b6a88d97c.jpg?1562908992", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/4/3/439aa3eb-fa1f-46b2-a13a-369b6a88d97c.jpg?1562908992", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/4/3/439aa3eb-fa1f-46b2-a13a-369b6a88d97c.png?1562908992", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/3/439aa3eb-fa1f-46b2-a13a-369b6a88d97c.jpg?1562908992", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/4/3/439aa3eb-fa1f-46b2-a13a-369b6a88d97c.jpg?1562908992"}, "mana_cost": "{X}{R}{R}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Starstorm deals X damage to each creature.\nCycling {3} ({3}, Discard this card: Draw a card.)", "colors": ["R"], "color_identity": ["R"], "keywords": ["Cycling"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "c62e6d4f-af8c-4f27-9bc8-361291890146", "set": "c13", "set_name": "Commander 2013", "set_type": "commander", "set_uri": "https://api.scryfall.com/sets/c62e6d4f-af8c-4f27-9bc8-361291890146", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ac13&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/c13?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/439aa3eb-fa1f-46b2-a13a-369b6a88d97c/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A34d112c3-cc2d-4428-bd7f-568bda61bd30&unique=prints", "collector_number": "122", "digital": false, "rarity": "rare", "flavor_text": "Ever since the disaster, the city's survivors viewed the star-strewn sky with dread.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Jonas De Ro", "artist_ids": ["561ebf9e-8d93-4b57-8156-8826d0c19601"], "illustration_id": "80cbd5f4-4810-4b66-8135-bd91fb6cbd3d", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "edhrec_rank": 1522, "penny_rank": 1051, "prices": {"usd": "0.23", "usd_foil": null, "usd_etched": null, "eur": "0.25", "eur_foil": null, "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=376522", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Starstorm&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Starstorm&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Starstorm"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/72285?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Starstorm&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/51326?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "b54d72ba-05ce-4299-a7c3-a9e9f126fffb", "oracle_id": "34d112c3-cc2d-4428-bd7f-568bda61bd30", "multiverse_ids": [41167], "mtgo_id": 18099, "mtgo_foil_id": 18100, "tcgplayer_id": 10525, "cardmarket_id": 1869, "name": "Starstorm", "lang": "en", "released_at": "2002-10-07", "uri": "https://api.scryfall.com/cards/b54d72ba-05ce-4299-a7c3-a9e9f126fffb", "scryfall_uri": "https://scryfall.com/card/ons/238/starstorm?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/b/5/b54d72ba-05ce-4299-a7c3-a9e9f126fffb.jpg?1562937719", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/5/b54d72ba-05ce-4299-a7c3-a9e9f126fffb.jpg?1562937719", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/b/5/b54d72ba-05ce-4299-a7c3-a9e9f126fffb.jpg?1562937719", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/b/5/b54d72ba-05ce-4299-a7c3-a9e9f126fffb.png?1562937719", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/5/b54d72ba-05ce-4299-a7c3-a9e9f126fffb.jpg?1562937719", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/b/5/b54d72ba-05ce-4299-a7c3-a9e9f126fffb.jpg?1562937719"}, "mana_cost": "{X}{R}{R}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Starstorm deals X damage to each creature.\nCycling {3} ({3}, Discard this card: Draw a card.)", "colors": ["R"], "color_identity": ["R"], "keywords": ["Cycling"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "914a6c6d-cb3b-45e8-a2db-9978a2339faf", "set": "ons", "set_name": "Onslaught", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/914a6c6d-cb3b-45e8-a2db-9978a2339faf", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aons&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ons?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/b54d72ba-05ce-4299-a7c3-a9e9f126fffb/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A34d112c3-cc2d-4428-bd7f-568bda61bd30&unique=prints", "collector_number": "238", "digital": false, "rarity": "rare", "flavor_text": "Pardic barbarians didn't complain when the Order started blaming every crisis on the Cabal.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "David Martin", "artist_ids": ["996ad764-4ae0-4952-8bb5-5a75c9d68275"], "illustration_id": "78656da0-7e34-4718-a606-7451dc79532d", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 1522, "penny_rank": 1051, "prices": {"usd": "0.99", "usd_foil": "55.00", "usd_etched": null, "eur": "0.37", "eur_foil": "15.57", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=41167", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Starstorm&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Starstorm&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Starstorm"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/10525?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Starstorm&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/18099?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "144a1b4e-d960-4c3a-810b-11a0c78635ad", "oracle_id": "92f4bdfd-1c84-4541-bc46-2a65c39de717", "multiverse_ids": [5563], "mtgo_id": 12261, "mtgo_foil_id": 12262, "tcgplayer_id": 7054, "cardmarket_id": 10426, "name": "Steam Blast", "lang": "en", "released_at": "1998-10-12", "uri": "https://api.scryfall.com/cards/144a1b4e-d960-4c3a-810b-11a0c78635ad", "scryfall_uri": "https://scryfall.com/card/usg/219/steam-blast?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/1/4/144a1b4e-d960-4c3a-810b-11a0c78635ad.jpg?1562899291", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/4/144a1b4e-d960-4c3a-810b-11a0c78635ad.jpg?1562899291", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/1/4/144a1b4e-d960-4c3a-810b-11a0c78635ad.jpg?1562899291", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/1/4/144a1b4e-d960-4c3a-810b-11a0c78635ad.png?1562899291", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/4/144a1b4e-d960-4c3a-810b-11a0c78635ad.jpg?1562899291", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/1/4/144a1b4e-d960-4c3a-810b-11a0c78635ad.jpg?1562899291"}, "mana_cost": "{2}{R}", "cmc": 3.0, "type_line": "Sorcery", "oracle_text": "Steam Blast deals 2 damage to each creature and each player.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "c330df40-51db-4caf-bde6-48df6c181001", "set": "usg", "set_name": "Urza's Saga", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/c330df40-51db-4caf-bde6-48df6c181001", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ausg&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/usg?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/144a1b4e-d960-4c3a-810b-11a0c78635ad/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A92f4bdfd-1c84-4541-bc46-2a65c39de717&unique=prints", "collector_number": "219", "digital": false, "rarity": "uncommon", "flavor_text": "The viashino knew of the cracked pipes but deliberately left them unmended to bolster the rig's defenses.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Mike Raabe", "artist_ids": ["d29cd67f-30a7-4fb9-a081-36c3d5982442"], "illustration_id": "9a04d5d2-17eb-4bb2-a39a-ab5622cf5884", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 14377, "penny_rank": 5924, "prices": {"usd": "0.15", "usd_foil": null, "usd_etched": null, "eur": "0.05", "eur_foil": null, "tix": "0.09"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=5563", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Steam+Blast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Steam+Blast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Steam+Blast"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/7054?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Steam+Blast&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/12261?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "f9a45644-549a-4eaa-8367-b170027bd5a2", "oracle_id": "4d4fbb16-0421-4e9c-af9e-e2c12a11c4ed", "multiverse_ids": [3093], "tcgplayer_id": 81848, "cardmarket_id": 7880, "name": "Stench of Decay", "lang": "en", "released_at": "1996-06-10", "uri": "https://api.scryfall.com/cards/f9a45644-549a-4eaa-8367-b170027bd5a2", "scryfall_uri": "https://scryfall.com/card/all/61a/stench-of-decay?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/f/9/f9a45644-549a-4eaa-8367-b170027bd5a2.jpg?1562770859", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/9/f9a45644-549a-4eaa-8367-b170027bd5a2.jpg?1562770859", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/f/9/f9a45644-549a-4eaa-8367-b170027bd5a2.jpg?1562770859", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/f/9/f9a45644-549a-4eaa-8367-b170027bd5a2.png?1562770859", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/9/f9a45644-549a-4eaa-8367-b170027bd5a2.jpg?1562770859", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/f/9/f9a45644-549a-4eaa-8367-b170027bd5a2.jpg?1562770859"}, "mana_cost": "{1}{B}{B}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Nonartifact creatures get -1/-1 until end of turn.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "64987b06-4a5c-443d-b560-ff5691744582", "set": "all", "set_name": "Alliances", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/64987b06-4a5c-443d-b560-ff5691744582", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aall&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/all?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/f9a45644-549a-4eaa-8367-b170027bd5a2/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A4d4fbb16-0421-4e9c-af9e-e2c12a11c4ed&unique=prints", "collector_number": "61a", "digital": false, "rarity": "common", "flavor_text": "\"Disa is dead, and I am left. I shall allow no others to succumb to this pestilence.\"\n\u2014Kolbj\u00f6rn, High Honored Druid", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Heather Hudson", "artist_ids": ["4441fe52-9e41-40c1-9b74-8510426279ab"], "illustration_id": "bf78a165-b8db-4d8d-8930-5c0d637b1d47", "border_color": "black", "frame": "1993", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 22175, "prices": {"usd": "0.08", "usd_foil": null, "usd_etched": null, "eur": "0.16", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=3093", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Stench+of+Decay&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Stench+of+Decay&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Stench+of+Decay"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/81848?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Stench+of+Decay&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Stench+of+Decay&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "b4b93845-f17a-4892-a1ce-a4630dced218", "oracle_id": "4d4fbb16-0421-4e9c-af9e-e2c12a11c4ed", "multiverse_ids": [3092], "tcgplayer_id": 4249, "cardmarket_id": 7879, "name": "Stench of Decay", "lang": "en", "released_at": "1996-06-10", "uri": "https://api.scryfall.com/cards/b4b93845-f17a-4892-a1ce-a4630dced218", "scryfall_uri": "https://scryfall.com/card/all/61b/stench-of-decay?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/b/4/b4b93845-f17a-4892-a1ce-a4630dced218.jpg?1562770150", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/4/b4b93845-f17a-4892-a1ce-a4630dced218.jpg?1562770150", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/b/4/b4b93845-f17a-4892-a1ce-a4630dced218.jpg?1562770150", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/b/4/b4b93845-f17a-4892-a1ce-a4630dced218.png?1562770150", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/4/b4b93845-f17a-4892-a1ce-a4630dced218.jpg?1562770150", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/b/4/b4b93845-f17a-4892-a1ce-a4630dced218.jpg?1562770150"}, "mana_cost": "{1}{B}{B}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Nonartifact creatures get -1/-1 until end of turn.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "64987b06-4a5c-443d-b560-ff5691744582", "set": "all", "set_name": "Alliances", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/64987b06-4a5c-443d-b560-ff5691744582", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aall&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/all?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/b4b93845-f17a-4892-a1ce-a4630dced218/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A4d4fbb16-0421-4e9c-af9e-e2c12a11c4ed&unique=prints", "collector_number": "61b", "digital": false, "rarity": "common", "flavor_text": "\"My lord, there is only so much I can do. This plague infests Krov worse than any other city.\"\n\u2014Halvor Arensson, Kjeldoran Priest", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Heather Hudson", "artist_ids": ["4441fe52-9e41-40c1-9b74-8510426279ab"], "illustration_id": "fbf02607-c359-4f0a-887f-a0bdd9f46e30", "border_color": "black", "frame": "1993", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 22175, "prices": {"usd": "0.08", "usd_foil": null, "usd_etched": null, "eur": "0.49", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=3092", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Stench+of+Decay&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Stench+of+Decay&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Stench+of+Decay"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/4249?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Stench+of+Decay&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Stench+of+Decay&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "8d77a57a-e30b-46d7-acb8-1d164c7dff78", "oracle_id": "4abda0ad-0a2b-4bd9-81c7-56329e62311d", "multiverse_ids": [567226], "tcgplayer_id": 273661, "cardmarket_id": 661375, "name": "Stick Together", "lang": "en", "released_at": "2022-06-10", "uri": "https://api.scryfall.com/cards/8d77a57a-e30b-46d7-acb8-1d164c7dff78", "scryfall_uri": "https://scryfall.com/card/clb/661/stick-together?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/8/d/8d77a57a-e30b-46d7-acb8-1d164c7dff78.jpg?1654036983", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/d/8d77a57a-e30b-46d7-acb8-1d164c7dff78.jpg?1654036983", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/8/d/8d77a57a-e30b-46d7-acb8-1d164c7dff78.jpg?1654036983", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/8/d/8d77a57a-e30b-46d7-acb8-1d164c7dff78.png?1654036983", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/d/8d77a57a-e30b-46d7-acb8-1d164c7dff78.jpg?1654036983", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/8/d/8d77a57a-e30b-46d7-acb8-1d164c7dff78.jpg?1654036983"}, "mana_cost": "{3}{W}{W}", "cmc": 5.0, "type_line": "Sorcery", "oracle_text": "Each player chooses a party from among creatures they control, then sacrifices the rest. (To choose a party, choose up to one each of Cleric, Rogue, Warrior, and Wizard.)", "colors": ["W"], "color_identity": ["W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "5e4c3fe8-fd57-4b20-ad56-c03790a16cea", "set": "clb", "set_name": "Commander Legends: Battle for Baldur's Gate", "set_type": "draft_innovation", "set_uri": "https://api.scryfall.com/sets/5e4c3fe8-fd57-4b20-ad56-c03790a16cea", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aclb&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/clb?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/8d77a57a-e30b-46d7-acb8-1d164c7dff78/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A4abda0ad-0a2b-4bd9-81c7-56329e62311d&unique=prints", "collector_number": "661", "digital": false, "rarity": "rare", "flavor_text": "Every veteran adventurer will tell you to stick with your party, because the ones who split up aren't around to give advice.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Dave Greco", "artist_ids": ["2b466c0f-fad2-46fe-adc9-0007371d01bf"], "illustration_id": "d7e40305-1d15-4a69-9edf-cda663f4dca1", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "edhrec_rank": 8239, "prices": {"usd": "0.09", "usd_foil": null, "usd_etched": null, "eur": "0.30", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=567226", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Stick+Together&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Stick+Together&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Stick+Together"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/273661?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Stick+Together&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Stick+Together&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "4bc9ecd2-7664-471b-90f2-2d0dd1acec80", "oracle_id": "eeb6f5eb-0e16-468e-9dfe-6ec8d8172f86", "multiverse_ids": [476408], "mtgo_id": 79438, "arena_id": 70668, "tcgplayer_id": 206714, "cardmarket_id": 430354, "name": "Storm's Wrath", "lang": "en", "released_at": "2020-01-24", "uri": "https://api.scryfall.com/cards/4bc9ecd2-7664-471b-90f2-2d0dd1acec80", "scryfall_uri": "https://scryfall.com/card/thb/157/storms-wrath?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/4/b/4bc9ecd2-7664-471b-90f2-2d0dd1acec80.jpg?1581480444", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/b/4bc9ecd2-7664-471b-90f2-2d0dd1acec80.jpg?1581480444", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/4/b/4bc9ecd2-7664-471b-90f2-2d0dd1acec80.jpg?1581480444", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/4/b/4bc9ecd2-7664-471b-90f2-2d0dd1acec80.png?1581480444", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/b/4bc9ecd2-7664-471b-90f2-2d0dd1acec80.jpg?1581480444", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/4/b/4bc9ecd2-7664-471b-90f2-2d0dd1acec80.jpg?1581480444"}, "mana_cost": "{2}{R}{R}", "cmc": 4.0, "type_line": "Sorcery", "oracle_text": "Storm's Wrath deals 4 damage to each creature and each planeswalker.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "5f23a78d-cda1-462a-8be3-a62b40c34913", "set": "thb", "set_name": "Theros Beyond Death", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/5f23a78d-cda1-462a-8be3-a62b40c34913", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Athb&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/thb?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/4bc9ecd2-7664-471b-90f2-2d0dd1acec80/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aeeb6f5eb-0e16-468e-9dfe-6ec8d8172f86&unique=prints", "collector_number": "157", "digital": false, "rarity": "rare", "flavor_text": "Distant thunder rumbled, a dread forewarning of Keranos's displeasure.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Yeong-Hao Han", "artist_ids": ["f8e7f8d6-6dde-4059-973c-30f1fd1bbe4e"], "illustration_id": "17a010d0-4cc1-4f7d-bbd7-e665bb2325f0", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 3984, "penny_rank": 6447, "preview": {"source": "Wizards of the Coast", "source_uri": "https://www.weibo.com/6508506764/InaZRshl2", "previewed_at": "2019-12-30"}, "prices": {"usd": "0.31", "usd_foil": "0.31", "usd_etched": null, "eur": "0.54", "eur_foil": "0.15", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=476408", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Storm%27s+Wrath&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Storm%27s+Wrath&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Storm%27s+Wrath"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/206714?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Storm%27s+Wrath&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/79438?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "a2996a63-9fb6-4455-906d-13f917a8bb29", "oracle_id": "9b02fc38-d155-4bde-b8c3-e3b92975cfc5", "multiverse_ids": [9784], "tcgplayer_id": 905, "cardmarket_id": 11945, "name": "Strategy, Schmategy", "lang": "en", "released_at": "1998-08-11", "uri": "https://api.scryfall.com/cards/a2996a63-9fb6-4455-906d-13f917a8bb29", "scryfall_uri": "https://scryfall.com/card/ugl/52/strategy-schmategy?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/a/2/a2996a63-9fb6-4455-906d-13f917a8bb29.jpg?1562799134", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/2/a2996a63-9fb6-4455-906d-13f917a8bb29.jpg?1562799134", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/a/2/a2996a63-9fb6-4455-906d-13f917a8bb29.jpg?1562799134", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/a/2/a2996a63-9fb6-4455-906d-13f917a8bb29.png?1562799134", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/2/a2996a63-9fb6-4455-906d-13f917a8bb29.jpg?1562799134", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/a/2/a2996a63-9fb6-4455-906d-13f917a8bb29.jpg?1562799134"}, "mana_cost": "{1}{R}", "cmc": 2.0, "type_line": "Sorcery", "oracle_text": "Roll a six-sided die. Strategy, Schmategy has the indicated effect.\n1 \u2014 Do nothing.\n2 \u2014 Destroy all artifacts.\n3 \u2014 Destroy all lands.\n4 \u2014 Strategy, Schmategy deals 3 damage to each creature and each player.\n5 \u2014 Each player discards their hand and draws seven cards.\n6 \u2014 Repeat this process two more times.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "not_legal", "pauper": "not_legal", "vintage": "not_legal", "penny": "not_legal", "commander": "not_legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "not_legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "3404fc78-6678-4cf4-bd39-4c0be3bb7baf", "set": "ugl", "set_name": "Unglued", "set_type": "funny", "set_uri": "https://api.scryfall.com/sets/3404fc78-6678-4cf4-bd39-4c0be3bb7baf", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Augl&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ugl?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/a2996a63-9fb6-4455-906d-13f917a8bb29/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A9b02fc38-d155-4bde-b8c3-e3b92975cfc5&unique=prints", "collector_number": "52", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Daniel Gelon", "artist_ids": ["63ac31a8-dd1a-4679-9f82-ece89429a084"], "illustration_id": "6def1c73-f22a-46e6-b4a4-6245bbe2b440", "border_color": "silver", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "prices": {"usd": "2.81", "usd_foil": null, "usd_etched": null, "eur": "5.49", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=9784", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Strategy%2C+Schmategy&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Strategy%2C+Schmategy&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Strategy%2C+Schmategy"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/905?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Strategy%2C+Schmategy&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Strategy%2C+Schmategy&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "f599948f-1561-415f-b415-c9c991896704", "oracle_id": "95385d84-550c-4d6c-a889-62bdbc1d518d", "multiverse_ids": [338411], "mtgo_id": 46135, "mtgo_foil_id": 46136, "tcgplayer_id": 66308, "cardmarket_id": 258138, "name": "Street Spasm", "lang": "en", "released_at": "2012-09-07", "uri": "https://api.scryfall.com/cards/f599948f-1561-415f-b415-c9c991896704", "scryfall_uri": "https://scryfall.com/card/ddj/30/street-spasm?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/f/5/f599948f-1561-415f-b415-c9c991896704.jpg?1592713487", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/5/f599948f-1561-415f-b415-c9c991896704.jpg?1592713487", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/f/5/f599948f-1561-415f-b415-c9c991896704.jpg?1592713487", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/f/5/f599948f-1561-415f-b415-c9c991896704.png?1592713487", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/5/f599948f-1561-415f-b415-c9c991896704.jpg?1592713487", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/f/5/f599948f-1561-415f-b415-c9c991896704.jpg?1592713487"}, "mana_cost": "{X}{R}", "cmc": 1.0, "type_line": "Instant", "oracle_text": "Street Spasm deals X damage to target creature without flying you don't control.\nOverload {X}{X}{R}{R} (You may cast this spell for its overload cost. If you do, change its text by replacing all instances of \"target\" with \"each.\")", "colors": ["R"], "color_identity": ["R"], "keywords": ["Overload"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "2dfea68b-b0c4-4f63-ba6c-36c9a6e3030f", "set": "ddj", "set_name": "Duel Decks: Izzet vs. Golgari", "set_type": "duel_deck", "set_uri": "https://api.scryfall.com/sets/2dfea68b-b0c4-4f63-ba6c-36c9a6e3030f", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Addj&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ddj?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/f599948f-1561-415f-b415-c9c991896704/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A95385d84-550c-4d6c-a889-62bdbc1d518d&unique=prints", "collector_number": "30", "digital": false, "rarity": "uncommon", "watermark": "izzet", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Raymond Swanland", "artist_ids": ["e956bacc-077d-4c12-b6bc-ba798b718af9"], "illustration_id": "848e9c2a-5224-4d2c-b096-8fa1cbadd0b7", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "edhrec_rank": 11629, "penny_rank": 12048, "prices": {"usd": "0.10", "usd_foil": null, "usd_etched": null, "eur": "0.02", "eur_foil": null, "tix": "0.06"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=338411", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Street+Spasm&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Street+Spasm&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Street+Spasm"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/66308?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Street+Spasm&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/46135?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "cbdb50e3-fe15-4431-b9bd-c4de65820734", "oracle_id": "23cf22fe-483f-4841-882e-e1513bb1d495", "multiverse_ids": [555327], "mtgo_id": 98471, "arena_id": 80277, "tcgplayer_id": 268918, "cardmarket_id": 652188, "name": "Structural Assault", "lang": "en", "released_at": "2022-04-29", "uri": "https://api.scryfall.com/cards/cbdb50e3-fe15-4431-b9bd-c4de65820734", "scryfall_uri": "https://scryfall.com/card/snc/126/structural-assault?utm_source=api", "layout": "normal", "highres_image": false, "image_status": "lowres", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/c/b/cbdb50e3-fe15-4431-b9bd-c4de65820734.jpg?1650025267", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/b/cbdb50e3-fe15-4431-b9bd-c4de65820734.jpg?1650025267", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/c/b/cbdb50e3-fe15-4431-b9bd-c4de65820734.jpg?1650025267", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/c/b/cbdb50e3-fe15-4431-b9bd-c4de65820734.png?1650025267", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/b/cbdb50e3-fe15-4431-b9bd-c4de65820734.jpg?1650025267", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/c/b/cbdb50e3-fe15-4431-b9bd-c4de65820734.jpg?1650025267"}, "mana_cost": "{3}{R}{R}", "cmc": 5.0, "type_line": "Sorcery", "oracle_text": "Destroy all artifacts, then Structural Assault deals damage to each creature equal to the number of artifacts that were put into graveyards from the battlefield this turn.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo", "arena"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "df837242-8c15-42e4-b049-c933a02dc501", "set": "snc", "set_name": "Streets of New Capenna", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/df837242-8c15-42e4-b049-c933a02dc501", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Asnc&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/snc?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/cbdb50e3-fe15-4431-b9bd-c4de65820734/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A23cf22fe-483f-4841-882e-e1513bb1d495&unique=prints", "collector_number": "126", "digital": false, "rarity": "rare", "flavor_text": "After the attack on the Vantoleone, the fragile balance of power shattered completely, and the city descended into chaos.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Liiga Smilshkalne", "artist_ids": ["5a50ced2-b301-4195-8af4-f7e1bae07d28"], "illustration_id": "f611bcbb-fe8b-43af-81ff-8eae42c75f17", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": true, "story_spotlight": true, "edhrec_rank": 9053, "preview": {"source": "manatorsk", "source_uri": "https://www.instagram.com/p/CcVs0ywIq9N/", "previewed_at": "2022-04-14"}, "prices": {"usd": "0.15", "usd_foil": "0.16", "usd_etched": null, "eur": "0.19", "eur_foil": "0.20", "tix": "0.01"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=555327", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Structural+Assault&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Structural+Assault&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Structural+Assault"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/268918?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Structural+Assault&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/98471?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "ac6d4a9e-a7fd-480e-96cf-5cf6d2390189", "oracle_id": "9e0c66e9-7d2b-46bd-890e-886d0c029d1d", "multiverse_ids": [420622], "tcgplayer_id": 123982, "cardmarket_id": 293344, "name": "Sublime Exhalation", "lang": "en", "released_at": "2016-11-11", "uri": "https://api.scryfall.com/cards/ac6d4a9e-a7fd-480e-96cf-5cf6d2390189", "scryfall_uri": "https://scryfall.com/card/c16/5/sublime-exhalation?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/a/c/ac6d4a9e-a7fd-480e-96cf-5cf6d2390189.jpg?1562414946", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/c/ac6d4a9e-a7fd-480e-96cf-5cf6d2390189.jpg?1562414946", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/a/c/ac6d4a9e-a7fd-480e-96cf-5cf6d2390189.jpg?1562414946", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/a/c/ac6d4a9e-a7fd-480e-96cf-5cf6d2390189.png?1562414946", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/c/ac6d4a9e-a7fd-480e-96cf-5cf6d2390189.jpg?1562414946", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/a/c/ac6d4a9e-a7fd-480e-96cf-5cf6d2390189.jpg?1562414946"}, "mana_cost": "{6}{W}", "cmc": 7.0, "type_line": "Sorcery", "oracle_text": "Undaunted (This spell costs {1} less to cast for each opponent.)\nDestroy all creatures.", "colors": ["W"], "color_identity": ["W"], "keywords": ["Undaunted"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "3e0d713a-b5cb-4287-81b9-a57d4dcaf415", "set": "c16", "set_name": "Commander 2016", "set_type": "commander", "set_uri": "https://api.scryfall.com/sets/3e0d713a-b5cb-4287-81b9-a57d4dcaf415", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ac16&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/c16?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/ac6d4a9e-a7fd-480e-96cf-5cf6d2390189/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A9e0c66e9-7d2b-46bd-890e-886d0c029d1d&unique=prints", "collector_number": "5", "digital": false, "rarity": "rare", "flavor_text": "Exhale, and let the winds carry your soul for all eternity.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Lake Hurwitz", "artist_ids": ["3677c64b-55e6-4a0d-a952-bdbb05531220"], "illustration_id": "27a8ba30-71df-4678-8e72-882f89274074", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "edhrec_rank": 7383, "prices": {"usd": "0.88", "usd_foil": null, "usd_etched": null, "eur": "0.49", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=420622", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Sublime+Exhalation&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Sublime+Exhalation&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Sublime+Exhalation"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/123982?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Sublime+Exhalation&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Sublime+Exhalation&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "1b9510b8-6601-4116-8713-ff7649c000eb", "oracle_id": "f0881756-de74-43b1-a9fe-c2fde93faf5a", "multiverse_ids": [416815], "tcgplayer_id": 121769, "cardmarket_id": 291790, "name": "Subterranean Tremors", "lang": "en", "released_at": "2016-08-26", "uri": "https://api.scryfall.com/cards/1b9510b8-6601-4116-8713-ff7649c000eb", "scryfall_uri": "https://scryfall.com/card/cn2/58/subterranean-tremors?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/1/b/1b9510b8-6601-4116-8713-ff7649c000eb.jpg?1576381980", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/b/1b9510b8-6601-4116-8713-ff7649c000eb.jpg?1576381980", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/1/b/1b9510b8-6601-4116-8713-ff7649c000eb.jpg?1576381980", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/1/b/1b9510b8-6601-4116-8713-ff7649c000eb.png?1576381980", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/b/1b9510b8-6601-4116-8713-ff7649c000eb.jpg?1576381980", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/1/b/1b9510b8-6601-4116-8713-ff7649c000eb.jpg?1576381980"}, "mana_cost": "{X}{R}", "cmc": 1.0, "type_line": "Sorcery", "oracle_text": "Subterranean Tremors deals X damage to each creature without flying. If X is 4 or more, destroy all artifacts. If X is 8 or more, create an 8/8 red Lizard creature token.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "all_parts": [{"object": "related_card", "id": "1b9510b8-6601-4116-8713-ff7649c000eb", "component": "combo_piece", "name": "Subterranean Tremors", "type_line": "Sorcery", "uri": "https://api.scryfall.com/cards/1b9510b8-6601-4116-8713-ff7649c000eb"}, {"object": "related_card", "id": "70345006-5cde-44f8-ab66-9d8163d4c4f6", "component": "token", "name": "Lizard", "type_line": "Token Creature \u2014 Lizard", "uri": "https://api.scryfall.com/cards/70345006-5cde-44f8-ab66-9d8163d4c4f6"}], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "ad1b8847-1905-4080-9e26-80691ea7c1ef", "set": "cn2", "set_name": "Conspiracy: Take the Crown", "set_type": "draft_innovation", "set_uri": "https://api.scryfall.com/sets/ad1b8847-1905-4080-9e26-80691ea7c1ef", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Acn2&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/cn2?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/1b9510b8-6601-4116-8713-ff7649c000eb/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Af0881756-de74-43b1-a9fe-c2fde93faf5a&unique=prints", "collector_number": "58", "digital": false, "rarity": "mythic", "flavor_text": "The market is now closed.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Filip Burburan", "artist_ids": ["66082c3b-a623-4d34-be51-2475214b85d3"], "illustration_id": "a265def8-98c9-4093-99e2-a34710907f2a", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 7110, "prices": {"usd": "5.11", "usd_foil": "22.12", "usd_etched": null, "eur": "6.18", "eur_foil": "28.00", "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=416815", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Subterranean+Tremors&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Subterranean+Tremors&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Subterranean+Tremors"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/121769?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Subterranean+Tremors&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Subterranean+Tremors&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}]} \ No newline at end of file +{"has_more": true, "data": [{"name": "Holy Light", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/3/c3c8a850-bc99-4679-a316-45ecdea696b2.jpg?1592364686", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/3/c3c8a850-bc99-4679-a316-45ecdea696b2.jpg?1592364686"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Hostile Takeover", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/d/bd7df727-50ea-4ea8-bdb9-d7ef16199d8a.jpg?1649697248", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/d/bd7df727-50ea-4ea8-bdb9-d7ef16199d8a.jpg?1649697248"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Hostile Takeover", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/1/8137f134-0148-4df1-b575-ec861192c65c.jpg?1649695787", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/1/8137f134-0148-4df1-b575-ec861192c65c.jpg?1649695787"}, "reprint": false, "frame_effects": ["showcase"], "digital": false, "set_type": "expansion"}, {"name": "Hour of Devastation", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/4/d420cc12-cfd7-4007-a0c2-b16c8f63a754.jpg?1562816057", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/4/d420cc12-cfd7-4007-a0c2-b16c8f63a754.jpg?1562816057"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Hour of Reckoning", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/1/d12768a5-8ee6-407b-87cf-703e69a0c32a.jpg?1568003844", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/1/d12768a5-8ee6-407b-87cf-703e69a0c32a.jpg?1568003844"}, "reprint": true, "digital": false, "set_type": "commander"}, {"name": "Hour of Reckoning", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/e/bec7a987-1ef2-40aa-a744-92d90b246df4.jpg?1598913735", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/e/bec7a987-1ef2-40aa-a744-92d90b246df4.jpg?1598913735"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Howling Gale", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/9/9917cf32-0236-4463-9b1d-e8193754ff97.jpg?1562923428", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/9/9917cf32-0236-4463-9b1d-e8193754ff97.jpg?1562923428"}, "reprint": false, "frame_effects": ["tombstone"], "digital": false, "set_type": "expansion"}, {"name": "Hurly-Burly", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/a/7a6e0b97-c2a9-4cd6-957e-87e9b22f7b48.jpg?1562354283", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/a/7a6e0b97-c2a9-4cd6-957e-87e9b22f7b48.jpg?1562354283"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Hurricane", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/0/f0526077-79b6-40ae-8178-8b97c33a53fb.jpg?1562250875", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/0/f0526077-79b6-40ae-8178-8b97c33a53fb.jpg?1562250875"}, "reprint": true, "digital": false, "set_type": "core"}, {"name": "Hurricane", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/b/6b4dd722-4729-444a-9d81-e2e93317fbd5.jpg?1562920277", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/b/6b4dd722-4729-444a-9d81-e2e93317fbd5.jpg?1562920277"}, "reprint": true, "digital": false, "set_type": "starter"}, {"name": "Hurricane", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/b/7b97904e-80ba-4d65-808a-a528200430f8.jpg?1562446872", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/b/7b97904e-80ba-4d65-808a-a528200430f8.jpg?1562446872"}, "reprint": true, "digital": false, "set_type": "starter"}, {"name": "Hurricane", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/8/a8cc6db7-1f40-40e3-a7ea-92f1d05e2e3d.jpg?1562926538", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/8/a8cc6db7-1f40-40e3-a7ea-92f1d05e2e3d.jpg?1562926538"}, "reprint": true, "digital": false, "set_type": "expansion"}, {"name": "Hurricane", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/2/52f5a19f-16e4-4d35-89e1-969ac8202f88.jpg?1559591426", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/2/52f5a19f-16e4-4d35-89e1-969ac8202f88.jpg?1559591426"}, "reprint": false, "digital": false, "set_type": "core"}, {"name": "Ichor Explosion", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/b/0b207e2f-4604-43c5-bb35-a877e35ddd81.jpg?1562875473", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/b/0b207e2f-4604-43c5-bb35-a877e35ddd81.jpg?1562875473"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Immolating Gyre", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/d/bd0b8aee-fbfb-470f-9ac2-64fce0b4b2fb.jpg?1632261825", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/d/bd0b8aee-fbfb-470f-9ac2-64fce0b4b2fb.jpg?1632261825"}, "reprint": false, "digital": false, "set_type": "draft_innovation"}, {"name": "Incandescent Aria", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/7/77e2ed9e-ee1d-440a-94b4-d4b17d30b800.jpg?1649801687", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/7/77e2ed9e-ee1d-440a-94b4-d4b17d30b800.jpg?1649801687"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Incandescent Aria", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/3/63167d77-a8d5-468f-9132-a5000c57901a.jpg?1649801714", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/3/63167d77-a8d5-468f-9132-a5000c57901a.jpg?1649801714"}, "reprint": false, "frame_effects": ["showcase"], "digital": false, "set_type": "expansion"}, {"name": "Incendiary Command", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/1/512367a2-f8f6-4c28-9eb3-8e04d2694e4b.jpg?1562348065", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/1/512367a2-f8f6-4c28-9eb3-8e04d2694e4b.jpg?1562348065"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Incendiary Sabotage", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/e/0ee44ca0-1989-42fa-8024-b6b3e5c3883c.jpg?1576382098", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/e/0ee44ca0-1989-42fa-8024-b6b3e5c3883c.jpg?1576382098"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Incite Rebellion", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/2/628c4a6f-6970-407d-a774-e67bfcdf7ee2.jpg?1561944371", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/2/628c4a6f-6970-407d-a774-e67bfcdf7ee2.jpg?1561944371"}, "reprint": false, "digital": false, "set_type": "commander"}, {"name": "Inferno", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/4/e411b7b5-ab91-410a-af6d-b3a21a8e3b70.jpg?1562249896", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/4/e411b7b5-ab91-410a-af6d-b3a21a8e3b70.jpg?1562249896"}, "reprint": true, "digital": false, "set_type": "core"}, {"name": "Inferno", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/8/68d04a75-647f-400f-b0dc-c4544f7db2d4.jpg?1562591355", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/8/68d04a75-647f-400f-b0dc-c4544f7db2d4.jpg?1562591355"}, "reprint": true, "digital": false, "set_type": "core"}, {"name": "Inferno", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/6/a6b61512-5b24-424c-966f-36b595781e14.jpg?1562934483", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/6/a6b61512-5b24-424c-966f-36b595781e14.jpg?1562934483"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Inferno", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/a/3ac1649a-629b-4598-be09-74a57905753f.jpg?1562544107", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/a/3ac1649a-629b-4598-be09-74a57905753f.jpg?1562544107"}, "reprint": true, "digital": true, "set_type": "promo"}, {"name": "Infest", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/b/fb9dd080-5e13-4334-8614-8eec41ae89c2.jpg?1562711058", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/b/fb9dd080-5e13-4334-8614-8eec41ae89c2.jpg?1562711058"}, "reprint": true, "digital": false, "set_type": "expansion"}, {"name": "Infest", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/7/b7890ba2-aa42-4c8d-bbc1-94fb1d4150fc.jpg?1562938305", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/7/b7890ba2-aa42-4c8d-bbc1-94fb1d4150fc.jpg?1562938305"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Infest", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/3/9350a640-3f22-478f-b463-6b50cfe766e1.jpg?1561757603", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/3/9350a640-3f22-478f-b463-6b50cfe766e1.jpg?1561757603"}, "reprint": true, "digital": false, "set_type": "promo"}, {"name": "Inflame", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/1/e1efad9a-2fcf-4045-8105-bf9f5e79d12c.jpg?1562640129", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/1/e1efad9a-2fcf-4045-8105-bf9f5e79d12c.jpg?1562640129"}, "reprint": true, "digital": false, "set_type": "expansion"}, {"name": "Inflame", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/d/cd7bc4c0-9bfd-444b-b22c-f1b7e1426807.jpg?1562933469", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/d/cd7bc4c0-9bfd-444b-b22c-f1b7e1426807.jpg?1562933469"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "In Garruk's Wake", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/6/f6f2c2f6-d07f-42af-9944-70d3dac8348c.jpg?1562797158", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/6/f6f2c2f6-d07f-42af-9944-70d3dac8348c.jpg?1562797158"}, "reprint": false, "digital": false, "set_type": "core"}, {"name": "In Garruk's Wake", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/8/987ace55-8f39-4d5e-8604-9e99d065b4d5.jpg?1561757636", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/8/987ace55-8f39-4d5e-8604-9e99d065b4d5.jpg?1561757636"}, "reprint": true, "digital": false, "set_type": "promo"}, {"name": "Inundate", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/5/d5047c92-2885-4a7b-b51f-f3e093dca5ad.jpg?1562940048", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/5/d5047c92-2885-4a7b-b51f-f3e093dca5ad.jpg?1562940048"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Jokulhaups", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/d/6d81e479-45b7-4237-a0eb-95245582e87d.jpg?1562591373", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/d/6d81e479-45b7-4237-a0eb-95245582e87d.jpg?1562591373"}, "reprint": true, "digital": false, "set_type": "core"}, {"name": "Jokulhaups", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/b/3bf0d325-5928-4593-8faa-64ffa414cb48.jpg?1562906050", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/b/3bf0d325-5928-4593-8faa-64ffa414cb48.jpg?1562906050"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Jund Charm", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/a/7a0ddf00-926c-4283-a8b2-daa02fa99b8b.jpg?1562705657", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/a/7a0ddf00-926c-4283-a8b2-daa02fa99b8b.jpg?1562705657"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Kaervek's Hex", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/9/097910fb-7c48-4535-8ffc-b521d08294b0.jpg?1562717830", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/9/097910fb-7c48-4535-8ffc-b521d08294b0.jpg?1562717830"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Kaya's Wrath", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/e/5ed140c1-752b-4539-88f2-1fa354049b17.jpg?1584831638", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/e/5ed140c1-752b-4539-88f2-1fa354049b17.jpg?1584831638"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Killing Wave", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/3/33de2371-175e-4f8a-9636-35f996e3cf24.jpg?1592708920", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/3/33de2371-175e-4f8a-9636-35f996e3cf24.jpg?1592708920"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Killing Wave", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/4/e40ed6b1-7b92-4ba4-b197-07c3f171a935.jpg?1561758322", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/4/e40ed6b1-7b92-4ba4-b197-07c3f171a935.jpg?1561758322"}, "reprint": true, "digital": false, "set_type": "promo"}, {"name": "Kindle the Carnage", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/b/4b5dfa91-8f93-41b7-95e9-3374550f1617.jpg?1593273180", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/b/4b5dfa91-8f93-41b7-95e9-3374550f1617.jpg?1593273180"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Kindred Dominance", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/7/9794115a-5509-4d9a-b119-d2b61942e87b.jpg?1562617149", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/7/9794115a-5509-4d9a-b119-d2b61942e87b.jpg?1562617149"}, "reprint": false, "digital": false, "set_type": "commander"}, {"name": "Kirtar's Wrath", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/5/b5a0c4e6-d50e-42e8-b062-8f6ef5950ab7.jpg?1562928851", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/5/b5a0c4e6-d50e-42e8-b062-8f6ef5950ab7.jpg?1562928851"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Klauth's Will", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/6/761e1f77-5231-4008-829f-99650b429fb3.jpg?1631585593", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/6/761e1f77-5231-4008-829f-99650b429fb3.jpg?1631585593"}, "reprint": false, "digital": false, "set_type": "commander"}, {"name": "Kozilek's Return", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/2/72765559-0a78-4aa3-827e-cb4612720991.jpg?1618608556", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/2/72765559-0a78-4aa3-827e-cb4612720991.jpg?1618608556"}, "reprint": false, "frame_effects": ["devoid"], "digital": false, "set_type": "expansion"}, {"name": "Languish", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/3/d3593efa-0a05-4061-9f6e-edd0a5ca9a1f.jpg?1562043520", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/3/d3593efa-0a05-4061-9f6e-edd0a5ca9a1f.jpg?1562043520"}, "reprint": false, "digital": false, "set_type": "core"}, {"name": "Last One Standing", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/7/87e2ee71-293d-452b-89a5-b15990186f5b.jpg?1562922467", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/7/87e2ee71-293d-452b-89a5-b15990186f5b.jpg?1562922467"}, "reprint": false, "digital": false, "set_type": "draft_innovation"}, {"name": "Lavaball Trap", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/0/c0d411e1-5488-4818-95a4-9f637efb9be6.jpg?1562616217", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/0/c0d411e1-5488-4818-95a4-9f637efb9be6.jpg?1562616217"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Lavalanche", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/4/749981d6-78e7-4f53-80a8-f211e61bd532.jpg?1562642149", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/4/749981d6-78e7-4f53-80a8-f211e61bd532.jpg?1562642149"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Life's Finale", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/f/ffd3fbd2-87c7-4f08-baaa-91d61c1114da.jpg?1562883140", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/f/ffd3fbd2-87c7-4f08-baaa-91d61c1114da.jpg?1562883140"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Living Death", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/e/0e73682a-56a2-4796-9902-a03aaa3815e8.jpg?1562897968", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/e/0e73682a-56a2-4796-9902-a03aaa3815e8.jpg?1562897968"}, "reprint": true, "digital": true, "set_type": "masters"}, {"name": "Living Death", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/c/6c820476-fbda-4073-baf6-51e71f45ed58.jpg?1562054465", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/c/6c820476-fbda-4073-baf6-51e71f45ed58.jpg?1562054465"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Living End", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/b/3be0ff69-d9f3-4b81-b02f-1360e4064aff.jpg?1562907448", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/b/3be0ff69-d9f3-4b81-b02f-1360e4064aff.jpg?1562907448"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Magmaquake", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/c/ac85679e-17c7-4525-8eed-979d04feb8f1.jpg?1562558550", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/c/ac85679e-17c7-4525-8eed-979d04feb8f1.jpg?1562558550"}, "reprint": false, "digital": false, "set_type": "core"}, {"name": "Magmaquake", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/4/1476d42e-6cf8-4612-ae75-b3044d1eebbe.jpg?1605361705", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/4/1476d42e-6cf8-4612-ae75-b3044d1eebbe.jpg?1605361705"}, "reprint": true, "digital": false, "set_type": "promo"}, {"name": "Make Obsolete", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/0/e0a96feb-accc-4c30-8ecd-7d9272ebd45b.jpg?1576381736", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/0/e0a96feb-accc-4c30-8ecd-7d9272ebd45b.jpg?1576381736"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Malicious Malfunction", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/6/56e7415f-f014-4ece-81db-d8271444d9e9.jpg?1654567289", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/6/56e7415f-f014-4ece-81db-d8271444d9e9.jpg?1654567289"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "March of Souls", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/0/f07dd0f1-b80b-4af0-ae76-907ec55ec7d5.jpg?1562945732", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/0/f07dd0f1-b80b-4af0-ae76-907ec55ec7d5.jpg?1562945732"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Marsh Casualties", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/8/28476d0d-60ea-4d08-890c-0e6502ee3d2a.jpg?1562610765", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/8/28476d0d-60ea-4d08-890c-0e6502ee3d2a.jpg?1562610765"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Martial Coup", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/2/4201385f-6f74-4e3d-aafb-0eff82cb24c1.jpg?1562800634", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/2/4201385f-6f74-4e3d-aafb-0eff82cb24c1.jpg?1562800634"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Martyr's Cry", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/2/e2c9f463-d1cc-4f11-aad2-d4a4520aa978.jpg?1562949002", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/2/e2c9f463-d1cc-4f11-aad2-d4a4520aa978.jpg?1562949002"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Massacre", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/0/f05f5d93-50d1-4aa6-af05-383a6808345b.jpg?1562632742", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/0/f05f5d93-50d1-4aa6-af05-383a6808345b.jpg?1562632742"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Mass Calcify", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/d/3d24be94-9922-43bb-83c8-98090adc3f32.jpg?1562829041", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/d/3d24be94-9922-43bb-83c8-98090adc3f32.jpg?1562829041"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Mephitic Vapors", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/7/675640ba-37e7-4231-8524-87e8b87ea46f.jpg?1572892991", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/7/675640ba-37e7-4231-8524-87e8b87ea46f.jpg?1572892991"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Merciless Eviction", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/9/d9876a4c-714b-47e5-9589-148a623af96a.jpg?1561848654", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/9/d9876a4c-714b-47e5-9589-148a623af96a.jpg?1561848654"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Mizzium Mortars", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/4/544b2931-0af1-4743-b7c1-91e1dc9294d5.jpg?1654120304", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/4/544b2931-0af1-4743-b7c1-91e1dc9294d5.jpg?1654120304"}, "reprint": true, "digital": false, "set_type": "draft_innovation"}, {"name": "Mizzium Mortars", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/4/d4ded88d-2688-4f5e-a8b2-16216cf9c792.jpg?1562793745", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/4/d4ded88d-2688-4f5e-a8b2-16216cf9c792.jpg?1562793745"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Mogg Infestation", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/a/5a91aa6f-cb2f-4aad-9415-bba4eb9b76ca.jpg?1562596412", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/a/5a91aa6f-cb2f-4aad-9415-bba4eb9b76ca.jpg?1562596412"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Molten Disaster", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/1/31e0713c-dbf4-4403-ae69-58fd483e2481.jpg?1562905110", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/1/31e0713c-dbf4-4403-ae69-58fd483e2481.jpg?1562905110"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Mutilate", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/4/c48bc86b-df0a-4a9c-8aad-c3ffb742a5ff.jpg?1588005547", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/4/c48bc86b-df0a-4a9c-8aad-c3ffb742a5ff.jpg?1588005547"}, "reprint": true, "digital": false, "set_type": "core"}, {"name": "Mutilate", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/9/d9cbdabf-18e3-4c0c-b37b-097aaa650066.jpg?1562090221", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/9/d9cbdabf-18e3-4c0c-b37b-097aaa650066.jpg?1562090221"}, "reprint": true, "digital": false, "set_type": "duel_deck"}, {"name": "Mutilate", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/1/6189cab3-1963-4590-9cbc-7ab4a693d7c6.jpg?1562629994", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/1/6189cab3-1963-4590-9cbc-7ab4a693d7c6.jpg?1562629994"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Nature's Ruin", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/9/5950f52a-493e-432e-9175-0272c0edb232.jpg?1562446647", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/9/5950f52a-493e-432e-9175-0272c0edb232.jpg?1562446647"}, "reprint": false, "digital": false, "set_type": "starter"}, {"name": "Nausea", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/5/2569173f-df5e-4518-9fb3-f972210595df.jpg?1580014299", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/5/2569173f-df5e-4518-9fb3-f972210595df.jpg?1580014299"}, "reprint": true, "digital": false, "set_type": "masters"}, {"name": "Nausea", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/7/b71315e3-14c1-433b-97be-2cdf99213bba.jpg?1562246310", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/7/b71315e3-14c1-433b-97be-2cdf99213bba.jpg?1562246310"}, "reprint": true, "digital": false, "set_type": "core"}, {"name": "Nausea", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/1/a10531d8-fc99-4a2b-94b0-97a25521d725.jpg?1562088332", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/1/a10531d8-fc99-4a2b-94b0-97a25521d725.jpg?1562088332"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Necromantic Selection", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/4/9462680e-b83d-44cc-a7a6-505fbc69ab41.jpg?1561950631", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/4/9462680e-b83d-44cc-a7a6-505fbc69ab41.jpg?1561950631"}, "reprint": false, "digital": false, "set_type": "commander"}, {"name": "Needle Storm", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/e/be80dd2d-f595-4d80-84ae-66d3d18e7399.jpg?1562056388", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/e/be80dd2d-f595-4d80-84ae-66d3d18e7399.jpg?1562056388"}, "reprint": true, "digital": false, "set_type": "expansion"}, {"name": "Needle Storm", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/9/29a44e44-94b1-4bd2-8e00-6bd2ec07ee4c.jpg?1562446151", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/9/29a44e44-94b1-4bd2-8e00-6bd2ec07ee4c.jpg?1562446151"}, "reprint": false, "digital": false, "set_type": "starter"}, {"name": "Nightmare Unmaking", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/5/95c0ff1b-bd97-4115-8486-62a18bab2610.jpg?1568003505", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/5/95c0ff1b-bd97-4115-8486-62a18bab2610.jpg?1568003505"}, "reprint": false, "digital": false, "set_type": "commander"}, {"name": "Nylea's Intervention", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/a/daa2f963-9d16-4224-b24e-b6a79f2b9d75.jpg?1581480794", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/a/daa2f963-9d16-4224-b24e-b6a79f2b9d75.jpg?1581480794"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Obliterate", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/d/cdabde40-2143-4677-b7b4-ea8fbf9b1f25.jpg?1562936357", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/d/cdabde40-2143-4677-b7b4-ea8fbf9b1f25.jpg?1562936357"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Oddly Uneven", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/3/830d5f87-1c8b-414a-a91e-4805f5bdca54.jpg?1562922623", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/3/830d5f87-1c8b-414a-a91e-4805f5bdca54.jpg?1562922623"}, "reprint": false, "digital": false, "set_type": "funny"}, {"name": "Olivia's Wrath", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/8/98893cc1-f502-4ca6-b6c1-e09fa1f4ef7a.jpg?1641600703", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/8/98893cc1-f502-4ca6-b6c1-e09fa1f4ef7a.jpg?1641600703"}, "reprint": false, "digital": false, "set_type": "commander"}, {"name": "Organic Extinction", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/e/fea0f8be-c242-49dd-bae3-0b306107ac0b.jpg?1651655197", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/e/fea0f8be-c242-49dd-bae3-0b306107ac0b.jpg?1651655197"}, "reprint": false, "digital": false, "set_type": "commander"}, {"name": "Outbreak", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/4/f43c30d9-23a5-4872-925d-3427f5f57995.jpg?1562940897", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/4/f43c30d9-23a5-4872-925d-3427f5f57995.jpg?1562940897"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Oversimplify", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/6/56eae179-f850-4661-b3f0-4d10be77ed8a.jpg?1629806259", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/6/56eae179-f850-4661-b3f0-4d10be77ed8a.jpg?1629806259"}, "reprint": false, "digital": false, "set_type": "commander"}, {"name": "Overwhelming Forces", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/5/c56c7fb4-8b7b-40fc-879c-76cfb5d417b8.jpg?1562257531", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/5/c56c7fb4-8b7b-40fc-879c-76cfb5d417b8.jpg?1562257531"}, "reprint": false, "digital": false, "set_type": "starter"}, {"name": "Part the Veil", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/8/d870e607-1607-46f3-bc9f-925d0164bcf9.jpg?1562764693", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/8/d870e607-1607-46f3-bc9f-925d0164bcf9.jpg?1562764693"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Path of Peril", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/0/f0c5449a-d63b-4b22-9432-8f0365c3c4d9.jpg?1643590080", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/0/f0c5449a-d63b-4b22-9432-8f0365c3c4d9.jpg?1643590080"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Perish", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/4/e47ace1d-73de-44aa-a3fe-2e2a21ebec79.jpg?1562057337", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/4/e47ace1d-73de-44aa-a3fe-2e2a21ebec79.jpg?1562057337"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Perplexing Test", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/1/31f2cbcc-d5b8-4659-ae51-e567c555a743.jpg?1625191389", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/1/31f2cbcc-d5b8-4659-ae51-e567c555a743.jpg?1625191389"}, "reprint": false, "digital": false, "set_type": "commander"}, {"name": "Pestilent Haze", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/8/08b78aa8-a63a-4aa2-bb82-3fbf2595ed7c.jpg?1594736339", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/8/08b78aa8-a63a-4aa2-bb82-3fbf2595ed7c.jpg?1594736339"}, "reprint": false, "digital": false, "set_type": "core"}, {"name": "Phyrexian Rebirth", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/6/36b7536d-6b0b-4906-ba88-7fcfe9b854ee.jpg?1562610586", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/6/36b7536d-6b0b-4906-ba88-7fcfe9b854ee.jpg?1562610586"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Plague Wind", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/0/b0d4bd20-7422-45ed-aa76-3ef055c556e7.jpg?1562927896", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/0/b0d4bd20-7422-45ed-aa76-3ef055c556e7.jpg?1562927896"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Planar Despair", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/a/3a92d454-3f23-45bf-921f-25b0da4ce138.jpg?1562908776", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/a/3a92d454-3f23-45bf-921f-25b0da4ce138.jpg?1562908776"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Planar Outburst", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/f/5f34f930-a7c6-400d-b6e8-b9908e0f0404.jpg?1562917450", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/f/5f34f930-a7c6-400d-b6e8-b9908e0f0404.jpg?1562917450"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Promise of Loyalty", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/c/fc21e7d5-3641-47fe-add0-8becf5173e28.jpg?1625191123", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/c/fc21e7d5-3641-47fe-add0-8becf5173e28.jpg?1625191123"}, "reprint": false, "digital": false, "set_type": "commander"}, {"name": "Psychotic Haze", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/d/8d3f6cd2-0138-40e7-a975-3f7c68db0d93.jpg?1562630817", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/d/8d3f6cd2-0138-40e7-a975-3f7c68db0d93.jpg?1562630817"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Puppet's Verdict", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/5/052b743a-456d-49c3-881e-4f30c7645fa5.jpg?1562378946", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/5/052b743a-456d-49c3-881e-4f30c7645fa5.jpg?1562378946"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Pyroclasm", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/4/34ec6e8f-a8be-4efe-8082-d807378066b1.jpg?1562905712", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/4/34ec6e8f-a8be-4efe-8082-d807378066b1.jpg?1562905712"}, "reprint": true, "digital": false, "set_type": "core"}, {"name": "Pyroclasm", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/a/7afce33f-2ead-4943-9655-bff6eaa9fe6b.jpg?1562241054", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/a/7afce33f-2ead-4943-9655-bff6eaa9fe6b.jpg?1562241054"}, "reprint": true, "digital": false, "set_type": "core"}, {"name": "Pyroclasm", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/e/de214247-e5e3-4d8f-935a-797218416be1.jpg?1562448294", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/e/de214247-e5e3-4d8f-935a-797218416be1.jpg?1562448294"}, "reprint": true, "digital": false, "set_type": "starter"}, {"name": "Pyroclasm", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/8/88040748-ad76-4b9a-bd4e-87e5980e9816.jpg?1562920179", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/8/88040748-ad76-4b9a-bd4e-87e5980e9816.jpg?1562920179"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Pyroclasm", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/0/e0581322-d901-465e-b22c-cd99ddbb4839.jpg?1561758268", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/0/e0581322-d901-465e-b22c-cd99ddbb4839.jpg?1561758268"}, "reprint": true, "digital": false, "set_type": "promo"}, {"name": "Radiant Flames", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/0/70f4fe69-c541-4320-9074-9c6a3bc70ea3.jpg?1562921619", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/0/70f4fe69-c541-4320-9074-9c6a3bc70ea3.jpg?1562921619"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Radiant Flames", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/5/2548487e-a355-4a05-acbc-3031d98f4289.jpg?1562132516", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/5/2548487e-a355-4a05-acbc-3031d98f4289.jpg?1562132516"}, "reprint": true, "digital": false, "set_type": "promo"}, {"name": "Radiating Lightning", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/4/94454128-92f1-475d-abc4-c235f501eeb6.jpg?1562739709", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/4/94454128-92f1-475d-abc4-c235f501eeb6.jpg?1562739709"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Rain of Daggers", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/b/bb09a5bb-9730-43cd-8dea-3842634c9983.jpg?1562939110", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/b/bb09a5bb-9730-43cd-8dea-3842634c9983.jpg?1562939110"}, "reprint": false, "digital": false, "set_type": "starter"}, {"name": "Rain of Embers", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/d/2d5391a9-6c30-4f9b-b746-a4427a3e63fc.jpg?1598915805", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/d/2d5391a9-6c30-4f9b-b746-a4427a3e63fc.jpg?1598915805"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Rancid Earth", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/3/23d07a96-85ba-4714-94a5-4a8125954f58.jpg?1562628959", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/3/23d07a96-85ba-4714-94a5-4a8125954f58.jpg?1562628959"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Reckless Endeavor", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/a/ba98a4bd-e217-4dba-aee9-315b4f843cdf.jpg?1631585239", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/a/ba98a4bd-e217-4dba-aee9-315b4f843cdf.jpg?1631585239"}, "reprint": false, "digital": false, "set_type": "commander"}, {"name": "Reign of Terror", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/b/7bd83049-aec1-4911-bc70-39adba04b174.jpg?1587856923", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/b/7bd83049-aec1-4911-bc70-39adba04b174.jpg?1587856923"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Retaliate", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/8/58acdda6-6754-46f2-ad68-f1580b8ab0dd.jpg?1562877159", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/8/58acdda6-6754-46f2-ad68-f1580b8ab0dd.jpg?1562877159"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Retribution of the Meek", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/6/860b8633-1bfc-426a-8666-5e6a584d4525.jpg?1587857186", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/6/860b8633-1bfc-426a-8666-5e6a584d4525.jpg?1587857186"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Righteous Fury", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/4/c408f43e-9092-440d-a15f-bef4ad58bcc6.jpg?1562941331", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/4/c408f43e-9092-440d-a15f-bef4ad58bcc6.jpg?1562941331"}, "reprint": false, "digital": false, "set_type": "starter"}, {"name": "Rising Miasma", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/f/4f9a8e87-3b8b-4dbf-9c1e-0a3290a33a0b.jpg?1562913657", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/f/4f9a8e87-3b8b-4dbf-9c1e-0a3290a33a0b.jpg?1562913657"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Ritual of Soot", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/6/269af993-4894-4bf1-b55a-af4d736cb3cc.jpg?1572893045", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/6/269af993-4894-4bf1-b55a-af4d736cb3cc.jpg?1572893045"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Riveteers Confluence", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/b/eb15ba71-c3b3-4a9f-b000-bd788514211c.jpg?1650549265", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/b/eb15ba71-c3b3-4a9f-b000-bd788514211c.jpg?1650549265"}, "reprint": false, "digital": false, "set_type": "commander"}, {"name": "Rollick of Abandon", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/f/3f1a80c4-8119-437d-bf5b-549c5679c90a.jpg?1593096073", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/f/3f1a80c4-8119-437d-bf5b-549c5679c90a.jpg?1593096073"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Rolling Earthquake", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/c/3c1bf210-ecdb-4b49-8504-51360c269e66.jpg?1562256070", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/c/3c1bf210-ecdb-4b49-8504-51360c269e66.jpg?1562256070"}, "reprint": false, "digital": false, "set_type": "starter"}, {"name": "Rolling Spoil", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/6/e6c5546f-2429-4099-a9bd-eda3f52779b7.jpg?1598916497", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/6/e6c5546f-2429-4099-a9bd-eda3f52779b7.jpg?1598916497"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Rolling Temblor", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/6/060ce982-94dd-4b9e-b240-15da297e29f9.jpg?1562825667", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/6/060ce982-94dd-4b9e-b240-15da297e29f9.jpg?1562825667"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Rout", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/c/6c3da3f0-bf90-461a-b62d-5c00d5c9aebd.jpg?1562865454", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/c/6c3da3f0-bf90-461a-b62d-5c00d5c9aebd.jpg?1562865454"}, "reprint": true, "digital": false, "set_type": "draft_innovation"}, {"name": "Rout", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/4/94bc55ed-b89b-4e22-b3f1-4ce0f8d180d7.jpg?1562924999", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/4/94bc55ed-b89b-4e22-b3f1-4ce0f8d180d7.jpg?1562924999"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Rupture", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/b/db53c1fb-3641-44a3-b0b4-b7b2ba993646.jpg?1562632349", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/b/db53c1fb-3641-44a3-b0b4-b7b2ba993646.jpg?1562632349"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Rupture", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/2/d2a2a4e7-3173-4b73-8898-2c668f9eebf9.jpg?1562548310", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/2/d2a2a4e7-3173-4b73-8898-2c668f9eebf9.jpg?1562548310"}, "reprint": true, "digital": true, "set_type": "promo"}, {"name": "Sagittars' Volley", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/3/d3104cad-e684-4bd7-b26b-5aa862f7a2b3.jpg?1584831248", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/3/d3104cad-e684-4bd7-b26b-5aa862f7a2b3.jpg?1584831248"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Savage Alliance", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/5/b5255da8-8511-48a7-98e5-ba43ca6e8681.jpg?1576384658", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/5/b5255da8-8511-48a7-98e5-ba43ca6e8681.jpg?1576384658"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Savage Twister", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/9/99d22b83-381d-47da-b983-8f77d19b0c01.jpg?1562927484", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/9/99d22b83-381d-47da-b983-8f77d19b0c01.jpg?1562927484"}, "reprint": true, "digital": false, "set_type": "commander"}, {"name": "Savage Twister", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/8/682ee5a9-2995-4868-b7ea-8735b2aee77e.jpg?1593272763", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/8/682ee5a9-2995-4868-b7ea-8735b2aee77e.jpg?1593272763"}, "reprint": true, "digital": false, "set_type": "expansion"}, {"name": "Savage Twister", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/b/eb73313b-d39a-46ab-abfc-76f94a75dfca.jpg?1593014734", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/b/eb73313b-d39a-46ab-abfc-76f94a75dfca.jpg?1593014734"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Scouring Sands", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/7/273f25fc-9c9f-4b73-a28b-1461d8fcd443.jpg?1593092358", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/7/273f25fc-9c9f-4b73-a28b-1461d8fcd443.jpg?1593092358"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Sculpted Sunburst", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/d/2d16d8fe-a770-4bbd-bf20-447c0165de5a.jpg?1654291825", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/d/2d16d8fe-a770-4bbd-bf20-447c0165de5a.jpg?1654291825"}, "reprint": false, "digital": false, "set_type": "draft_innovation"}, {"name": "Seismic Rupture", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/b/9b952e4e-c1ed-4455-90d5-46b56478e6b0.jpg?1562790481", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/b/9b952e4e-c1ed-4455-90d5-46b56478e6b0.jpg?1562790481"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Seismic Shudder", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/0/20365082-6102-4e3b-8791-c9b66846270d.jpg?1562610483", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/0/20365082-6102-4e3b-8791-c9b66846270d.jpg?1562610483"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Seismic Wave", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/5/e55b8ffb-c2e4-4676-9051-ff6c686cad0b.jpg?1654567822", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/5/e55b8ffb-c2e4-4676-9051-ff6c686cad0b.jpg?1654567822"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Settle the Wreckage", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/c/9cbd346e-098a-4cf6-a72f-468376fd2e8f.jpg?1562560853", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/c/9cbd346e-098a-4cf6-a72f-468376fd2e8f.jpg?1562560853"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Shadowstorm", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/6/367c4ad6-973d-47ba-9431-312f9f2996f6.jpg?1562053739", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/6/367c4ad6-973d-47ba-9431-312f9f2996f6.jpg?1562053739"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Shadows' Verdict", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/2/52470883-b44d-415b-9324-8074e66f79ae.jpg?1604196514", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/2/52470883-b44d-415b-9324-8074e66f79ae.jpg?1604196514"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Shake the Foundations", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/5/b5bd4bdd-3a2a-40d9-9f86-fefe0a462cd2.jpg?1555040519", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/5/b5bd4bdd-3a2a-40d9-9f86-fefe0a462cd2.jpg?1555040519"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Shatter the Sky", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/7/b706977b-db8e-4810-882d-ed3745404489.jpg?1581479244", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/7/b706977b-db8e-4810-882d-ed3745404489.jpg?1581479244"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Shrivel", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/8/a87c80a1-5818-45fd-9a37-a2ee3396626e.jpg?1562707116", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/8/a87c80a1-5818-45fd-9a37-a2ee3396626e.jpg?1562707116"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Sickening Dreams", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/3/9396ac77-9f53-46bd-b126-02441a0f5594.jpg?1562630974", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/3/9396ac77-9f53-46bd-b126-02441a0f5594.jpg?1562630974"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Simoon", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/4/84b1930d-2e4b-472f-98a9-008fd632f3be.jpg?1562921826", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/4/84b1930d-2e4b-472f-98a9-008fd632f3be.jpg?1562921826"}, "reprint": true, "digital": false, "set_type": "expansion"}, {"name": "Simoon", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/4/642d9239-82e0-4696-ad99-10796042d1f8.jpg?1587913163", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/4/642d9239-82e0-4696-ad99-10796042d1f8.jpg?1587913163"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Single Combat", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/e/ce0e7c6a-e628-4327-a16f-2062c5a662df.jpg?1557576066", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/e/ce0e7c6a-e628-4327-a16f-2062c5a662df.jpg?1557576066"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Skyreaping", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/0/40eb76b3-b527-4ed8-8ce3-d3de48562b6e.jpg?1593092666", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/0/40eb76b3-b527-4ed8-8ce3-d3de48562b6e.jpg?1593092666"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Slagstorm", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/e/9e318b03-2aad-462b-a2a9-8b6bdf0e93d6.jpg?1562613393", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/e/9e318b03-2aad-462b-a2a9-8b6bdf0e93d6.jpg?1562613393"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Slash the Ranks", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/9/0913a5e8-7f77-44f2-a7cf-c8c0d6270a86.jpg?1608909011", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/9/0913a5e8-7f77-44f2-a7cf-c8c0d6270a86.jpg?1608909011"}, "reprint": false, "digital": false, "set_type": "draft_innovation"}, {"name": "Slaughter the Strong", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/c/6c9f8aea-0c9a-4686-b551-35e2a72ef701.jpg?1653521934", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/c/6c9f8aea-0c9a-4686-b551-35e2a72ef701.jpg?1653521934"}, "reprint": true, "digital": false, "set_type": "draft_innovation"}, {"name": "Slaughter the Strong", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/2/4217ab21-181e-4c32-97c3-d8bd441287e0.jpg?1555039791", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/2/4217ab21-181e-4c32-97c3-d8bd441287e0.jpg?1555039791"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Slice and Dice", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/9/59262684-86e3-4485-9e35-202771c3eaa6.jpg?1562916006", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/9/59262684-86e3-4485-9e35-202771c3eaa6.jpg?1562916006"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Solar Blaze", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/b/eb72ba0f-ab3a-41e6-906d-a84039efa0af.jpg?1557577261", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/b/eb72ba0f-ab3a-41e6-906d-a84039efa0af.jpg?1557577261"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Solar Tide", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/7/57ce33b6-267f-4ee8-a3f7-f41c619d0cfa.jpg?1562144484", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/7/57ce33b6-267f-4ee8-a3f7-f41c619d0cfa.jpg?1562144484"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Soulquake", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/b/4b3a7470-b93e-4c3a-ab1c-0a4dd401e95a.jpg?1562641103", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/b/4b3a7470-b93e-4c3a-ab1c-0a4dd401e95a.jpg?1562641103"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Spectral Deluge", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/2/7238c46e-6338-4aca-96f2-934c44c8cc36.jpg?1631233619", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/2/7238c46e-6338-4aca-96f2-934c44c8cc36.jpg?1631233619"}, "reprint": false, "digital": false, "set_type": "commander"}, {"name": "Spontaneous Combustion", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/5/55d50177-736a-44d6-a2a3-f6892d7037b3.jpg?1562865429", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/5/55d50177-736a-44d6-a2a3-f6892d7037b3.jpg?1562865429"}, "reprint": true, "digital": false, "set_type": "draft_innovation"}, {"name": "Spontaneous Combustion", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/4/34e6c04f-9d1a-497b-bc96-a0e48a1c1904.jpg?1562053293", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/4/34e6c04f-9d1a-497b-bc96-a0e48a1c1904.jpg?1562053293"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Squall", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/6/46460e5f-2756-486b-99a6-c3a9a209bfaa.jpg?1594065372", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/6/46460e5f-2756-486b-99a6-c3a9a209bfaa.jpg?1594065372"}, "reprint": true, "digital": false, "set_type": "core"}, {"name": "Squall", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/5/e5409b54-66ed-4add-bf43-cfeb074b1c50.jpg?1562383517", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/5/e5409b54-66ed-4add-bf43-cfeb074b1c50.jpg?1562383517"}, "reprint": true, "digital": false, "set_type": "expansion"}, {"name": "Squall", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/3/63c1b2f6-e47f-4f18-a94a-1d08eb009ef3.jpg?1594065383", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/3/63c1b2f6-e47f-4f18-a94a-1d08eb009ef3.jpg?1594065383"}, "reprint": false, "digital": false, "set_type": "starter"}, {"name": "Squall Line", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/f/3f368729-a6f2-4bf7-8b06-39c551f0b24a.jpg?1562908127", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/f/3f368729-a6f2-4bf7-8b06-39c551f0b24a.jpg?1562908127"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Star of Extinction", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/2/021f57dc-80f3-4ede-99d5-4a44aade44e2.jpg?1562549822", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/2/021f57dc-80f3-4ede-99d5-4a44aade44e2.jpg?1562549822"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Starstorm", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/3/439aa3eb-fa1f-46b2-a13a-369b6a88d97c.jpg?1562908992", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/3/439aa3eb-fa1f-46b2-a13a-369b6a88d97c.jpg?1562908992"}, "reprint": true, "digital": false, "set_type": "commander"}, {"name": "Starstorm", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/5/b54d72ba-05ce-4299-a7c3-a9e9f126fffb.jpg?1562937719", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/5/b54d72ba-05ce-4299-a7c3-a9e9f126fffb.jpg?1562937719"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Steam Blast", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/4/144a1b4e-d960-4c3a-810b-11a0c78635ad.jpg?1562899291", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/4/144a1b4e-d960-4c3a-810b-11a0c78635ad.jpg?1562899291"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Stench of Decay", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/9/f9a45644-549a-4eaa-8367-b170027bd5a2.jpg?1562770859", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/9/f9a45644-549a-4eaa-8367-b170027bd5a2.jpg?1562770859"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Stench of Decay", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/4/b4b93845-f17a-4892-a1ce-a4630dced218.jpg?1562770150", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/4/b4b93845-f17a-4892-a1ce-a4630dced218.jpg?1562770150"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Stick Together", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/d/8d77a57a-e30b-46d7-acb8-1d164c7dff78.jpg?1654036983", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/d/8d77a57a-e30b-46d7-acb8-1d164c7dff78.jpg?1654036983"}, "reprint": false, "digital": false, "set_type": "draft_innovation"}, {"name": "Storm's Wrath", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/b/4bc9ecd2-7664-471b-90f2-2d0dd1acec80.jpg?1581480444", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/b/4bc9ecd2-7664-471b-90f2-2d0dd1acec80.jpg?1581480444"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Strategy, Schmategy", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/2/a2996a63-9fb6-4455-906d-13f917a8bb29.jpg?1562799134", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/2/a2996a63-9fb6-4455-906d-13f917a8bb29.jpg?1562799134"}, "reprint": false, "digital": false, "set_type": "funny"}, {"name": "Street Spasm", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/5/f599948f-1561-415f-b415-c9c991896704.jpg?1592713487", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/5/f599948f-1561-415f-b415-c9c991896704.jpg?1592713487"}, "reprint": true, "digital": false, "set_type": "duel_deck"}, {"name": "Structural Assault", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/b/cbdb50e3-fe15-4431-b9bd-c4de65820734.jpg?1650025267", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/b/cbdb50e3-fe15-4431-b9bd-c4de65820734.jpg?1650025267"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Sublime Exhalation", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/c/ac6d4a9e-a7fd-480e-96cf-5cf6d2390189.jpg?1562414946", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/c/ac6d4a9e-a7fd-480e-96cf-5cf6d2390189.jpg?1562414946"}, "reprint": false, "digital": false, "set_type": "commander"}, {"name": "Subterranean Tremors", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/b/1b9510b8-6601-4116-8713-ff7649c000eb.jpg?1576381980", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/b/1b9510b8-6601-4116-8713-ff7649c000eb.jpg?1576381980"}, "reprint": false, "digital": false, "set_type": "draft_innovation"}]} \ No newline at end of file diff --git a/web/public/mtg/jsons/wrath3.json b/web/public/mtg/jsons/wrath3.json index 1ee8b687..19e27341 100644 --- a/web/public/mtg/jsons/wrath3.json +++ b/web/public/mtg/jsons/wrath3.json @@ -1 +1 @@ -{"object": "list", "total_cards": 422, "has_more": false, "data": [{"object": "card", "id": "7217afaa-00e1-45a7-bb7f-66a770487b77", "oracle_id": "b34b5b3f-7f17-4292-814e-634408a5d7a5", "multiverse_ids": [376528], "mtgo_id": 51346, "mtgo_foil_id": 51347, "tcgplayer_id": 71882, "cardmarket_id": 264746, "name": "Sudden Demise", "lang": "en", "released_at": "2013-11-01", "uri": "https://api.scryfall.com/cards/7217afaa-00e1-45a7-bb7f-66a770487b77", "scryfall_uri": "https://scryfall.com/card/c13/124/sudden-demise?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/7/2/7217afaa-00e1-45a7-bb7f-66a770487b77.jpg?1562918949", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/2/7217afaa-00e1-45a7-bb7f-66a770487b77.jpg?1562918949", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/7/2/7217afaa-00e1-45a7-bb7f-66a770487b77.jpg?1562918949", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/7/2/7217afaa-00e1-45a7-bb7f-66a770487b77.png?1562918949", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/2/7217afaa-00e1-45a7-bb7f-66a770487b77.jpg?1562918949", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/7/2/7217afaa-00e1-45a7-bb7f-66a770487b77.jpg?1562918949"}, "mana_cost": "{X}{R}", "cmc": 1.0, "type_line": "Sorcery", "oracle_text": "Choose a color. Sudden Demise deals X damage to each creature of the chosen color.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "c62e6d4f-af8c-4f27-9bc8-361291890146", "set": "c13", "set_name": "Commander 2013", "set_type": "commander", "set_uri": "https://api.scryfall.com/sets/c62e6d4f-af8c-4f27-9bc8-361291890146", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ac13&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/c13?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/7217afaa-00e1-45a7-bb7f-66a770487b77/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ab34b5b3f-7f17-4292-814e-634408a5d7a5&unique=prints", "collector_number": "124", "digital": false, "rarity": "rare", "flavor_text": "In the Skyfang Mountains, one misstep can mean the end of an entire clan.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Dan Scott", "artist_ids": ["f852fa13-137e-40f2-bbc1-0f01df09c0e0"], "illustration_id": "c1bac015-52f7-4b97-9c38-aa1d30df88f8", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "edhrec_rank": 7850, "penny_rank": 7659, "prices": {"usd": "0.25", "usd_foil": null, "usd_etched": null, "eur": "0.20", "eur_foil": null, "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=376528", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Sudden+Demise&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Sudden+Demise&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Sudden+Demise"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/71882?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Sudden+Demise&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/51346?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "66b562e4-35df-4aee-848d-ceb4204bbe58", "oracle_id": "80c7b1b4-4e37-4aef-9432-d629d71b7045", "multiverse_ids": [479620], "mtgo_id": 80209, "arena_id": 71167, "tcgplayer_id": 212763, "cardmarket_id": 455238, "name": "Suffocating Fumes", "lang": "en", "released_at": "2020-04-24", "uri": "https://api.scryfall.com/cards/66b562e4-35df-4aee-848d-ceb4204bbe58", "scryfall_uri": "https://scryfall.com/card/iko/100/suffocating-fumes?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/6/6/66b562e4-35df-4aee-848d-ceb4204bbe58.jpg?1591226972", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/6/66b562e4-35df-4aee-848d-ceb4204bbe58.jpg?1591226972", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/6/6/66b562e4-35df-4aee-848d-ceb4204bbe58.jpg?1591226972", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/6/6/66b562e4-35df-4aee-848d-ceb4204bbe58.png?1591226972", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/6/66b562e4-35df-4aee-848d-ceb4204bbe58.jpg?1591226972", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/6/6/66b562e4-35df-4aee-848d-ceb4204bbe58.jpg?1591226972"}, "mana_cost": "{2}{B}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Creatures your opponents control get -1/-1 until end of turn.\nCycling {2} ({2}, Discard this card: Draw a card.)", "colors": ["B"], "color_identity": ["B"], "keywords": ["Cycling"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "19feda43-15ab-427e-a0e4-148a4bf2b03a", "set": "iko", "set_name": "Ikoria: Lair of Behemoths", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/19feda43-15ab-427e-a0e4-148a4bf2b03a", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aiko&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/iko?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/66b562e4-35df-4aee-848d-ceb4204bbe58/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A80c7b1b4-4e37-4aef-9432-d629d71b7045&unique=prints", "collector_number": "100", "digital": false, "rarity": "common", "flavor_text": "\"Yesterday it was flying tigers and crumbling bridges. Who knows what today will bring?\"\n\u2014Dol, Lavabrink quartermaster", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Anastasia Ovchinnikova", "artist_ids": ["3605d81f-5c97-4958-9dcc-d44a85e10305"], "illustration_id": "02506ef6-55f2-44ca-806f-e7baa7d4fc93", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 14378, "penny_rank": 4807, "prices": {"usd": "0.16", "usd_foil": "0.28", "usd_etched": null, "eur": "0.18", "eur_foil": "0.10", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=479620", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Suffocating+Fumes&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Suffocating+Fumes&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Suffocating+Fumes"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/212763?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Suffocating+Fumes&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/80209?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "67511e0e-be09-4f4e-9949-b9ecbdc7f536", "oracle_id": "f2b4f37b-270b-4746-83b3-51ff88ee3491", "multiverse_ids": [109685], "mtgo_id": 25495, "mtgo_foil_id": 25496, "tcgplayer_id": 14384, "cardmarket_id": 14003, "name": "Sulfurous Blast", "lang": "en", "released_at": "2006-10-06", "uri": "https://api.scryfall.com/cards/67511e0e-be09-4f4e-9949-b9ecbdc7f536", "scryfall_uri": "https://scryfall.com/card/tsp/180/sulfurous-blast?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/6/7/67511e0e-be09-4f4e-9949-b9ecbdc7f536.jpg?1562916599", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/7/67511e0e-be09-4f4e-9949-b9ecbdc7f536.jpg?1562916599", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/6/7/67511e0e-be09-4f4e-9949-b9ecbdc7f536.jpg?1562916599", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/6/7/67511e0e-be09-4f4e-9949-b9ecbdc7f536.png?1562916599", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/7/67511e0e-be09-4f4e-9949-b9ecbdc7f536.jpg?1562916599", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/6/7/67511e0e-be09-4f4e-9949-b9ecbdc7f536.jpg?1562916599"}, "mana_cost": "{2}{R}{R}", "cmc": 4.0, "type_line": "Instant", "oracle_text": "Sulfurous Blast deals 2 damage to each creature and each player. If you cast this spell during your main phase, Sulfurous Blast deals 3 damage to each creature and each player instead.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "c1d109bc-ffd8-428f-8d7d-3f8d7e648046", "set": "tsp", "set_name": "Time Spiral", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/c1d109bc-ffd8-428f-8d7d-3f8d7e648046", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Atsp&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/tsp?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/67511e0e-be09-4f4e-9949-b9ecbdc7f536/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Af2b4f37b-270b-4746-83b3-51ff88ee3491&unique=prints", "collector_number": "180", "digital": false, "rarity": "uncommon", "flavor_text": "The Keldons used the toxic vents in the cracked earth to bolster their home's defenses.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Jeff Miracola", "artist_ids": ["9b465bde-3656-4495-ace4-af4ce29999ed"], "illustration_id": "f2f7e691-2170-4da0-8edb-321076e4ed67", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 10684, "penny_rank": 5479, "prices": {"usd": "0.10", "usd_foil": "0.62", "usd_etched": null, "eur": "0.10", "eur_foil": "0.20", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=109685", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Sulfurous+Blast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Sulfurous+Blast&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Sulfurous+Blast"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/14384?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Sulfurous+Blast&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/25495?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "44c726db-a30a-4e76-9fbf-ec6d5cd7a1ba", "oracle_id": "155f14dd-1516-4b9f-ae39-0a6172c69a66", "multiverse_ids": [121251], "mtgo_id": 24727, "mtgo_foil_id": 24728, "tcgplayer_id": 14126, "cardmarket_id": 13733, "name": "Sunscour", "lang": "en", "released_at": "2006-07-21", "uri": "https://api.scryfall.com/cards/44c726db-a30a-4e76-9fbf-ec6d5cd7a1ba", "scryfall_uri": "https://scryfall.com/card/csp/19/sunscour?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/4/4/44c726db-a30a-4e76-9fbf-ec6d5cd7a1ba.jpg?1593274832", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/4/44c726db-a30a-4e76-9fbf-ec6d5cd7a1ba.jpg?1593274832", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/4/4/44c726db-a30a-4e76-9fbf-ec6d5cd7a1ba.jpg?1593274832", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/4/4/44c726db-a30a-4e76-9fbf-ec6d5cd7a1ba.png?1593274832", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/4/44c726db-a30a-4e76-9fbf-ec6d5cd7a1ba.jpg?1593274832", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/4/4/44c726db-a30a-4e76-9fbf-ec6d5cd7a1ba.jpg?1593274832"}, "mana_cost": "{5}{W}{W}", "cmc": 7.0, "type_line": "Sorcery", "oracle_text": "You may exile two white cards from your hand rather than pay this spell's mana cost.\nDestroy all creatures.", "colors": ["W"], "color_identity": ["W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "1f4f105f-73e4-4f03-849e-82a204807847", "set": "csp", "set_name": "Coldsnap", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/1f4f105f-73e4-4f03-849e-82a204807847", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Acsp&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/csp?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/44c726db-a30a-4e76-9fbf-ec6d5cd7a1ba/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A155f14dd-1516-4b9f-ae39-0a6172c69a66&unique=prints", "collector_number": "19", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Jim Murray", "artist_ids": ["1c906f9b-5bbe-4643-8f5c-90eb1c7f0c43"], "illustration_id": "eabf5984-0f29-45c8-8130-3d501034c638", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 14119, "penny_rank": 1952, "prices": {"usd": "1.01", "usd_foil": "16.45", "usd_etched": null, "eur": "0.63", "eur_foil": "1.10", "tix": "0.01"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=121251", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Sunscour&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Sunscour&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Sunscour"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/14126?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Sunscour&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/24727?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "4e9648f9-7a67-4717-bca1-861d1f7fed43", "oracle_id": "0230de18-8d15-4cfa-9d42-7ccddd9f9570", "multiverse_ids": [253512], "mtgo_id": 46483, "mtgo_foil_id": 46484, "tcgplayer_id": 66459, "cardmarket_id": 258293, "name": "Supreme Verdict", "lang": "en", "released_at": "2012-10-05", "uri": "https://api.scryfall.com/cards/4e9648f9-7a67-4717-bca1-861d1f7fed43", "scryfall_uri": "https://scryfall.com/card/rtr/201/supreme-verdict?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/4/e/4e9648f9-7a67-4717-bca1-861d1f7fed43.jpg?1562786100", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/e/4e9648f9-7a67-4717-bca1-861d1f7fed43.jpg?1562786100", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/4/e/4e9648f9-7a67-4717-bca1-861d1f7fed43.jpg?1562786100", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/4/e/4e9648f9-7a67-4717-bca1-861d1f7fed43.png?1562786100", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/e/4e9648f9-7a67-4717-bca1-861d1f7fed43.jpg?1562786100", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/4/e/4e9648f9-7a67-4717-bca1-861d1f7fed43.jpg?1562786100"}, "mana_cost": "{1}{W}{W}{U}", "cmc": 4.0, "type_line": "Sorcery", "oracle_text": "This spell can't be countered.\nDestroy all creatures.", "colors": ["U", "W"], "color_identity": ["U", "W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "80b2374d-c5f1-403e-9772-f6c806fd275e", "set": "rtr", "set_name": "Return to Ravnica", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/80b2374d-c5f1-403e-9772-f6c806fd275e", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Artr&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/rtr?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/4e9648f9-7a67-4717-bca1-861d1f7fed43/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A0230de18-8d15-4cfa-9d42-7ccddd9f9570&unique=prints", "collector_number": "201", "digital": false, "rarity": "rare", "watermark": "azorius", "flavor_text": "Leonos had no second thoughts about the abolishment edict. He'd left skyrunes warning of the eviction, even though it was cloudy.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Sam Burley", "artist_ids": ["f89f4b78-cefb-41f7-b7cb-4f4d28de0c4f"], "illustration_id": "aebd8eba-21c7-481f-aad7-38a2101952eb", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 433, "prices": {"usd": "8.93", "usd_foil": "18.45", "usd_etched": null, "eur": "6.44", "eur_foil": "17.90", "tix": "1.35"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=253512", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Supreme+Verdict&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Supreme+Verdict&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Supreme+Verdict"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/66459?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Supreme+Verdict&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/46483?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "a2b760cc-800a-48a3-97d9-316e1eeafd4c", "oracle_id": "0230de18-8d15-4cfa-9d42-7ccddd9f9570", "multiverse_ids": [573050], "tcgplayer_id": 276475, "cardmarket_id": 664397, "name": "Supreme Verdict", "lang": "en", "released_at": "2022-07-08", "uri": "https://api.scryfall.com/cards/a2b760cc-800a-48a3-97d9-316e1eeafd4c", "scryfall_uri": "https://scryfall.com/card/2x2/388/supreme-verdict?utm_source=api", "layout": "normal", "highres_image": false, "image_status": "lowres", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/a/2/a2b760cc-800a-48a3-97d9-316e1eeafd4c.jpg?1655619437", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/2/a2b760cc-800a-48a3-97d9-316e1eeafd4c.jpg?1655619437", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/a/2/a2b760cc-800a-48a3-97d9-316e1eeafd4c.jpg?1655619437", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/a/2/a2b760cc-800a-48a3-97d9-316e1eeafd4c.png?1655619437", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/2/a2b760cc-800a-48a3-97d9-316e1eeafd4c.jpg?1655619437", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/a/2/a2b760cc-800a-48a3-97d9-316e1eeafd4c.jpg?1655619437"}, "mana_cost": "{1}{W}{W}{U}", "cmc": 4.0, "type_line": "Sorcery", "oracle_text": "This spell can't be countered.\nDestroy all creatures.", "colors": ["U", "W"], "color_identity": ["U", "W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "5a645837-b050-449f-ac90-1e7ccbf45031", "set": "2x2", "set_name": "Double Masters 2022", "set_type": "masters", "set_uri": "https://api.scryfall.com/sets/5a645837-b050-449f-ac90-1e7ccbf45031", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3A2x2&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/2x2?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/a2b760cc-800a-48a3-97d9-316e1eeafd4c/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A0230de18-8d15-4cfa-9d42-7ccddd9f9570&unique=prints", "collector_number": "388", "digital": false, "rarity": "rare", "flavor_text": "\"I'll grant that the siege engines are gone, but do you think that might have been a bit of overkill?\"\n\u2014Sergeant Malsworth", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Ron Spears", "artist_ids": ["fce9030b-86bd-4439-b06a-920a1eeb184c"], "illustration_id": "92fc0b35-4118-44dc-879b-a1b47e220e74", "border_color": "borderless", "frame": "2015", "frame_effects": ["inverted"], "security_stamp": "oval", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "promo_types": ["boosterfun"], "edhrec_rank": 433, "preview": {"source": "ESL Australia", "source_uri": "https://twitter.com/ESLAustralia/status/1538454991073169409", "previewed_at": "2022-06-19"}, "prices": {"usd": "7.73", "usd_foil": "10.96", "usd_etched": null, "eur": "6.57", "eur_foil": "9.89", "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=573050", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Supreme+Verdict&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Supreme+Verdict&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Supreme+Verdict"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/276475?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Supreme+Verdict&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Supreme+Verdict&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "35e3b17c-1af9-4a6d-9cbe-e9d23ea52c53", "oracle_id": "0230de18-8d15-4cfa-9d42-7ccddd9f9570", "multiverse_ids": [], "tcgplayer_id": 71223, "cardmarket_id": 259161, "name": "Supreme Verdict", "lang": "en", "released_at": "2012-10-05", "uri": "https://api.scryfall.com/cards/35e3b17c-1af9-4a6d-9cbe-e9d23ea52c53", "scryfall_uri": "https://scryfall.com/card/prtr/*201/supreme-verdict?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/3/5/35e3b17c-1af9-4a6d-9cbe-e9d23ea52c53.jpg?1562497060", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/5/35e3b17c-1af9-4a6d-9cbe-e9d23ea52c53.jpg?1562497060", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/3/5/35e3b17c-1af9-4a6d-9cbe-e9d23ea52c53.jpg?1562497060", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/3/5/35e3b17c-1af9-4a6d-9cbe-e9d23ea52c53.png?1562497060", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/5/35e3b17c-1af9-4a6d-9cbe-e9d23ea52c53.jpg?1562497060", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/3/5/35e3b17c-1af9-4a6d-9cbe-e9d23ea52c53.jpg?1562497060"}, "mana_cost": "{1}{W}{W}{U}", "cmc": 4.0, "type_line": "Sorcery", "oracle_text": "This spell can't be countered.\nDestroy all creatures.", "colors": ["U", "W"], "color_identity": ["U", "W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": true, "nonfoil": false, "finishes": ["foil"], "oversized": false, "promo": true, "reprint": true, "variation": false, "set_id": "4e3ab176-9a9c-41cf-8b74-8c7d5e6731f7", "set": "prtr", "set_name": "Return to Ravnica Promos", "set_type": "promo", "set_uri": "https://api.scryfall.com/sets/4e3ab176-9a9c-41cf-8b74-8c7d5e6731f7", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aprtr&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/prtr?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/35e3b17c-1af9-4a6d-9cbe-e9d23ea52c53/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A0230de18-8d15-4cfa-9d42-7ccddd9f9570&unique=prints", "collector_number": "*201", "digital": false, "rarity": "rare", "watermark": "azorius", "flavor_text": "Leonos had no second thoughts about the abolishment edict. He'd left skyrunes warning of the eviction, even though it was cloudy.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "John Avon", "artist_ids": ["798f3932-30e0-4420-aa3f-db4d613f89ca"], "illustration_id": "e092cb2b-ac4a-4039-a1fb-21db37508e97", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "promo_types": ["setpromo", "buyabox"], "edhrec_rank": 433, "prices": {"usd": null, "usd_foil": "22.47", "usd_etched": null, "eur": null, "eur_foil": "2.50", "tix": null}, "related_uris": {"tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Supreme+Verdict&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Supreme+Verdict&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Supreme+Verdict"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/71223?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Supreme+Verdict&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Supreme+Verdict&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "f11cd406-c6ae-4018-ae45-4e5577aa82ae", "oracle_id": "526cd570-046e-402a-986c-f6ece68eec47", "multiverse_ids": [426851], "mtgo_id": 63900, "mtgo_foil_id": 63901, "tcgplayer_id": 130169, "cardmarket_id": 297127, "name": "Sweltering Suns", "lang": "en", "released_at": "2017-04-28", "uri": "https://api.scryfall.com/cards/f11cd406-c6ae-4018-ae45-4e5577aa82ae", "scryfall_uri": "https://scryfall.com/card/akh/149/sweltering-suns?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/f/1/f11cd406-c6ae-4018-ae45-4e5577aa82ae.jpg?1543675701", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/1/f11cd406-c6ae-4018-ae45-4e5577aa82ae.jpg?1543675701", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/f/1/f11cd406-c6ae-4018-ae45-4e5577aa82ae.jpg?1543675701", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/f/1/f11cd406-c6ae-4018-ae45-4e5577aa82ae.png?1543675701", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/1/f11cd406-c6ae-4018-ae45-4e5577aa82ae.jpg?1543675701", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/f/1/f11cd406-c6ae-4018-ae45-4e5577aa82ae.jpg?1543675701"}, "mana_cost": "{1}{R}{R}", "cmc": 3.0, "type_line": "Sorcery", "oracle_text": "Sweltering Suns deals 3 damage to each creature.\nCycling {3} ({3}, Discard this card: Draw a card.)", "colors": ["R"], "color_identity": ["R"], "keywords": ["Cycling"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "02d1c536-68bc-4208-9b65-7741ef1f9da8", "set": "akh", "set_name": "Amonkhet", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/02d1c536-68bc-4208-9b65-7741ef1f9da8", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aakh&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/akh?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/f11cd406-c6ae-4018-ae45-4e5577aa82ae/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A526cd570-046e-402a-986c-f6ece68eec47&unique=prints", "collector_number": "149", "digital": false, "rarity": "rare", "flavor_text": "The Hekma may repel storms and monsters, but nothing holds back the heat of the suns.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Raymond Swanland", "artist_ids": ["e956bacc-077d-4c12-b6bc-ba798b718af9"], "illustration_id": "dd13eeba-e616-4563-aa43-6ca8a063e26e", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 4889, "penny_rank": 104, "prices": {"usd": "0.29", "usd_foil": "1.63", "usd_etched": null, "eur": "0.58", "eur_foil": "1.31", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=426851", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Sweltering+Suns&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Sweltering+Suns&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Sweltering+Suns"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/130169?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Sweltering+Suns&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/63900?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "4d757ec3-c15f-4d6e-8e18-36ebae985448", "oracle_id": "dc5cb229-82c9-4a87-9a10-490350cbdfc0", "multiverse_ids": [29762], "mtgo_id": 17518, "mtgo_foil_id": 17519, "tcgplayer_id": 10262, "cardmarket_id": 2228, "name": "Swirling Sandstorm", "lang": "en", "released_at": "2002-05-27", "uri": "https://api.scryfall.com/cards/4d757ec3-c15f-4d6e-8e18-36ebae985448", "scryfall_uri": "https://scryfall.com/card/jud/102/swirling-sandstorm?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/4/d/4d757ec3-c15f-4d6e-8e18-36ebae985448.jpg?1562629788", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/d/4d757ec3-c15f-4d6e-8e18-36ebae985448.jpg?1562629788", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/4/d/4d757ec3-c15f-4d6e-8e18-36ebae985448.jpg?1562629788", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/4/d/4d757ec3-c15f-4d6e-8e18-36ebae985448.png?1562629788", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/d/4d757ec3-c15f-4d6e-8e18-36ebae985448.jpg?1562629788", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/4/d/4d757ec3-c15f-4d6e-8e18-36ebae985448.jpg?1562629788"}, "mana_cost": "{3}{R}", "cmc": 4.0, "type_line": "Sorcery", "oracle_text": "Threshold \u2014 Swirling Sandstorm deals 5 damage to each creature without flying if seven or more cards are in your graveyard.", "colors": ["R"], "color_identity": ["R"], "keywords": ["Threshold"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "cd82de1a-36fd-4618-bfe8-b45532a582d9", "set": "jud", "set_name": "Judgment", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/cd82de1a-36fd-4618-bfe8-b45532a582d9", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ajud&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/jud?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/4d757ec3-c15f-4d6e-8e18-36ebae985448/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Adc5cb229-82c9-4a87-9a10-490350cbdfc0&unique=prints", "collector_number": "102", "digital": false, "rarity": "common", "flavor_text": "As dust swept out, vultures swept in.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Tony Szczudlo", "artist_ids": ["1952c90b-a5a7-4328-9f7c-e11064f59daf"], "illustration_id": "88bb8e2d-7dcc-49fe-a479-19af62fbbe03", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 16868, "prices": {"usd": "0.24", "usd_foil": "4.64", "usd_etched": null, "eur": "0.04", "eur_foil": "2.95", "tix": "0.17"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=29762", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Swirling+Sandstorm&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Swirling+Sandstorm&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Swirling+Sandstorm"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/10262?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Swirling+Sandstorm&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/17518?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "6ab025e6-9ee7-45f0-b829-199637eb0038", "oracle_id": "640a7d2c-42c4-4ea7-bd5b-72f12a65785e", "multiverse_ids": [405409], "tcgplayer_id": 107848, "cardmarket_id": 285800, "name": "Synthetic Destiny", "lang": "en", "released_at": "2015-11-13", "uri": "https://api.scryfall.com/cards/6ab025e6-9ee7-45f0-b829-199637eb0038", "scryfall_uri": "https://scryfall.com/card/c15/15/synthetic-destiny?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/6/a/6ab025e6-9ee7-45f0-b829-199637eb0038.jpg?1562705395", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/a/6ab025e6-9ee7-45f0-b829-199637eb0038.jpg?1562705395", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/6/a/6ab025e6-9ee7-45f0-b829-199637eb0038.jpg?1562705395", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/6/a/6ab025e6-9ee7-45f0-b829-199637eb0038.png?1562705395", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/a/6ab025e6-9ee7-45f0-b829-199637eb0038.jpg?1562705395", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/6/a/6ab025e6-9ee7-45f0-b829-199637eb0038.jpg?1562705395"}, "mana_cost": "{4}{U}{U}", "cmc": 6.0, "type_line": "Instant", "oracle_text": "Exile all creatures you control. At the beginning of the next end step, reveal cards from the top of your library until you reveal that many creature cards, put all creature cards revealed this way onto the battlefield, then shuffle the rest of the revealed cards into your library.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "ea6c99f9-5489-4504-b30c-c819fa3b1fd3", "set": "c15", "set_name": "Commander 2015", "set_type": "commander", "set_uri": "https://api.scryfall.com/sets/ea6c99f9-5489-4504-b30c-c819fa3b1fd3", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ac15&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/c15?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/6ab025e6-9ee7-45f0-b829-199637eb0038/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A640a7d2c-42c4-4ea7-bd5b-72f12a65785e&unique=prints", "collector_number": "15", "digital": false, "rarity": "rare", "flavor_text": "To Jin-Gitaxias, perfection is not a goal, but a process.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Dave Kendall", "artist_ids": ["8a5540a8-18c9-4fa9-802c-59d6866114d5"], "illustration_id": "f9622dad-8142-48c9-8291-e49590186a47", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "edhrec_rank": 5641, "prices": {"usd": "0.21", "usd_foil": null, "usd_etched": null, "eur": "0.30", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=405409", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Synthetic+Destiny&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Synthetic+Destiny&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Synthetic+Destiny"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/107848?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Synthetic+Destiny&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Synthetic+Destiny&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "f8e702db-8c73-4947-9c13-5dcb50f4efab", "oracle_id": "0925e112-c089-4aa4-9878-6d6fb0a263c8", "multiverse_ids": [417743], "mtgo_id": 61727, "mtgo_foil_id": 61728, "tcgplayer_id": 123172, "cardmarket_id": 292859, "name": "Take Down", "lang": "en", "released_at": "2016-09-30", "uri": "https://api.scryfall.com/cards/f8e702db-8c73-4947-9c13-5dcb50f4efab", "scryfall_uri": "https://scryfall.com/card/kld/170/take-down?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/f/8/f8e702db-8c73-4947-9c13-5dcb50f4efab.jpg?1576382690", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/8/f8e702db-8c73-4947-9c13-5dcb50f4efab.jpg?1576382690", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/f/8/f8e702db-8c73-4947-9c13-5dcb50f4efab.jpg?1576382690", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/f/8/f8e702db-8c73-4947-9c13-5dcb50f4efab.png?1576382690", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/8/f8e702db-8c73-4947-9c13-5dcb50f4efab.jpg?1576382690", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/f/8/f8e702db-8c73-4947-9c13-5dcb50f4efab.jpg?1576382690"}, "mana_cost": "{G}", "cmc": 1.0, "type_line": "Sorcery", "oracle_text": "Choose one \u2014\n\u2022 Take Down deals 4 damage to target creature with flying.\n\u2022 Take Down deals 1 damage to each creature with flying.", "colors": ["G"], "color_identity": ["G"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "d667e468-be8f-411f-a030-473d148deb74", "set": "kld", "set_name": "Kaladesh", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/d667e468-be8f-411f-a030-473d148deb74", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Akld&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/kld?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/f8e702db-8c73-4947-9c13-5dcb50f4efab/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A0925e112-c089-4aa4-9878-6d6fb0a263c8&unique=prints", "collector_number": "170", "digital": false, "rarity": "common", "flavor_text": "The drake flew true. The arrow flew truer.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Izzy", "artist_ids": ["2c3d2473-ff5d-4309-8194-e0b2def2ab65"], "illustration_id": "49c38171-f55d-4108-8b08-6b62ad690cd4", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 19696, "penny_rank": 12293, "prices": {"usd": "0.03", "usd_foil": "0.04", "usd_etched": null, "eur": "0.17", "eur_foil": "0.09", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=417743", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Take+Down&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Take+Down&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Take+Down"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/123172?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Take+Down&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/61727?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "0982ea7e-05a4-4e40-98ab-ea9aa6c7342e", "oracle_id": "3dd196b6-a85a-4e3e-bb57-ec34241f8117", "multiverse_ids": [262703], "mtgo_id": 43815, "mtgo_foil_id": 43816, "tcgplayer_id": 58368, "cardmarket_id": 254453, "name": "Terminus", "lang": "en", "released_at": "2012-05-04", "uri": "https://api.scryfall.com/cards/0982ea7e-05a4-4e40-98ab-ea9aa6c7342e", "scryfall_uri": "https://scryfall.com/card/avr/38/terminus?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/0/9/0982ea7e-05a4-4e40-98ab-ea9aa6c7342e.jpg?1592708421", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/9/0982ea7e-05a4-4e40-98ab-ea9aa6c7342e.jpg?1592708421", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/0/9/0982ea7e-05a4-4e40-98ab-ea9aa6c7342e.jpg?1592708421", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/0/9/0982ea7e-05a4-4e40-98ab-ea9aa6c7342e.png?1592708421", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/9/0982ea7e-05a4-4e40-98ab-ea9aa6c7342e.jpg?1592708421", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/0/9/0982ea7e-05a4-4e40-98ab-ea9aa6c7342e.jpg?1592708421"}, "mana_cost": "{4}{W}{W}", "cmc": 6.0, "type_line": "Sorcery", "oracle_text": "Put all creatures on the bottom of their owners' libraries.\nMiracle {W} (You may cast this card for its miracle cost when you draw it if it's the first card you drew this turn.)", "colors": ["W"], "color_identity": ["W"], "keywords": ["Miracle"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "039810a9-92d7-4f2d-b2d0-ca661ac586c0", "set": "avr", "set_name": "Avacyn Restored", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/039810a9-92d7-4f2d-b2d0-ca661ac586c0", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aavr&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/avr?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/0982ea7e-05a4-4e40-98ab-ea9aa6c7342e/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A3dd196b6-a85a-4e3e-bb57-ec34241f8117&unique=prints", "collector_number": "38", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "James Paick", "artist_ids": ["1a7be0a2-d8ac-45c7-b0a0-eb0886f47b5f"], "illustration_id": "6f725a67-7aa7-48f5-9855-5c75dfe5a453", "border_color": "black", "frame": "2003", "frame_effects": ["miracle"], "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 2832, "penny_rank": 499, "prices": {"usd": "1.55", "usd_foil": "10.73", "usd_etched": null, "eur": "1.94", "eur_foil": "10.00", "tix": "0.01"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=262703", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Terminus&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Terminus&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Terminus"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/58368?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Terminus&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/43815?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "9e4f796a-6831-4d83-824d-88fd2148b4c1", "oracle_id": "4b505a4c-ccc3-4461-bbc4-ad5d39f9b879", "multiverse_ids": [39847], "mtgo_id": 18051, "mtgo_foil_id": 18052, "tcgplayer_id": 10627, "cardmarket_id": 1873, "name": "Thunder of Hooves", "lang": "en", "released_at": "2002-10-07", "uri": "https://api.scryfall.com/cards/9e4f796a-6831-4d83-824d-88fd2148b4c1", "scryfall_uri": "https://scryfall.com/card/ons/242/thunder-of-hooves?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/9/e/9e4f796a-6831-4d83-824d-88fd2148b4c1.jpg?1562932440", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/e/9e4f796a-6831-4d83-824d-88fd2148b4c1.jpg?1562932440", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/9/e/9e4f796a-6831-4d83-824d-88fd2148b4c1.jpg?1562932440", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/9/e/9e4f796a-6831-4d83-824d-88fd2148b4c1.png?1562932440", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/e/9e4f796a-6831-4d83-824d-88fd2148b4c1.jpg?1562932440", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/9/e/9e4f796a-6831-4d83-824d-88fd2148b4c1.jpg?1562932440"}, "mana_cost": "{3}{R}", "cmc": 4.0, "type_line": "Sorcery", "oracle_text": "Thunder of Hooves deals X damage to each creature without flying and each player, where X is the number of Beasts on the battlefield.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "914a6c6d-cb3b-45e8-a2db-9978a2339faf", "set": "ons", "set_name": "Onslaught", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/914a6c6d-cb3b-45e8-a2db-9978a2339faf", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aons&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ons?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/9e4f796a-6831-4d83-824d-88fd2148b4c1/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A4b505a4c-ccc3-4461-bbc4-ad5d39f9b879&unique=prints", "collector_number": "242", "digital": false, "rarity": "uncommon", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Jim Nelson", "artist_ids": ["aa9f64d1-29e1-4c82-877e-44c18183f40b"], "illustration_id": "d0136c80-9cfe-4901-a539-70d16be1f631", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 21492, "prices": {"usd": "0.08", "usd_foil": "0.67", "usd_etched": null, "eur": "0.25", "eur_foil": "0.50", "tix": "0.05"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=39847", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Thunder+of+Hooves&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Thunder+of+Hooves&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Thunder+of+Hooves"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/10627?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Thunder+of+Hooves&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/18051?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "e9531098-63ea-4568-81e9-80e00a5f8995", "oracle_id": "43de944b-e630-45f0-bce4-c66803e8b5c1", "multiverse_ids": [563084], "tcgplayer_id": 273025, "cardmarket_id": 660277, "name": "Thunderwave", "lang": "en", "released_at": "2022-06-10", "uri": "https://api.scryfall.com/cards/e9531098-63ea-4568-81e9-80e00a5f8995", "scryfall_uri": "https://scryfall.com/card/clb/201/thunderwave?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/e/9/e9531098-63ea-4568-81e9-80e00a5f8995.jpg?1653417329", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/9/e9531098-63ea-4568-81e9-80e00a5f8995.jpg?1653417329", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/e/9/e9531098-63ea-4568-81e9-80e00a5f8995.jpg?1653417329", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/e/9/e9531098-63ea-4568-81e9-80e00a5f8995.png?1653417329", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/9/e9531098-63ea-4568-81e9-80e00a5f8995.jpg?1653417329", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/e/9/e9531098-63ea-4568-81e9-80e00a5f8995.jpg?1653417329"}, "mana_cost": "{2}{R}{R}", "cmc": 4.0, "type_line": "Sorcery", "oracle_text": "Roll a d20.\n1\u20149 | Thunderwave deals 3 damage to each creature.\n10\u201419 | You may choose a creature. Thunderwave deals 3 damage to each creature not chosen this way.\n20 | Thunderwave deals 6 damage to each creature your opponents control.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "5e4c3fe8-fd57-4b20-ad56-c03790a16cea", "set": "clb", "set_name": "Commander Legends: Battle for Baldur's Gate", "set_type": "draft_innovation", "set_uri": "https://api.scryfall.com/sets/5e4c3fe8-fd57-4b20-ad56-c03790a16cea", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aclb&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/clb?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/e9531098-63ea-4568-81e9-80e00a5f8995/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A43de944b-e630-45f0-bce4-c66803e8b5c1&unique=prints", "collector_number": "201", "digital": false, "rarity": "uncommon", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Durion", "artist_ids": ["8c824995-c4bd-49f2-84b6-f42e39357c87"], "illustration_id": "aa238c70-bbdf-4023-b589-b2ab07b462ec", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 11142, "preview": {"source": "Wizards of the Coast", "source_uri": "https://magic.wizards.com/en/articles/archive/card-image-gallery/commander-legends-battle-for-baldurs-gate", "previewed_at": "2022-05-24"}, "prices": {"usd": "0.05", "usd_foil": "0.10", "usd_etched": null, "eur": "0.09", "eur_foil": "0.15", "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=563084", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Thunderwave&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Thunderwave&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Thunderwave"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/273025?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Thunderwave&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Thunderwave&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "62c59475-6f15-48d2-b105-f49901f20d44", "oracle_id": "36c78a5f-0148-4596-a346-f8e35037b694", "multiverse_ids": [461150], "mtgo_id": 72052, "arena_id": 69672, "tcgplayer_id": 187113, "cardmarket_id": 371815, "name": "Time Wipe", "lang": "en", "released_at": "2019-05-03", "uri": "https://api.scryfall.com/cards/62c59475-6f15-48d2-b105-f49901f20d44", "scryfall_uri": "https://scryfall.com/card/war/223/time-wipe?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/6/2/62c59475-6f15-48d2-b105-f49901f20d44.jpg?1557577308", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/2/62c59475-6f15-48d2-b105-f49901f20d44.jpg?1557577308", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/6/2/62c59475-6f15-48d2-b105-f49901f20d44.jpg?1557577308", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/6/2/62c59475-6f15-48d2-b105-f49901f20d44.png?1557577308", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/2/62c59475-6f15-48d2-b105-f49901f20d44.jpg?1557577308", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/6/2/62c59475-6f15-48d2-b105-f49901f20d44.jpg?1557577308"}, "mana_cost": "{2}{W}{W}{U}", "cmc": 5.0, "type_line": "Sorcery", "oracle_text": "Return a creature you control to its owner's hand, then destroy all creatures.", "colors": ["U", "W"], "color_identity": ["U", "W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "ee044f0b-e101-4ead-8d0e-aa510aad4277", "set": "war", "set_name": "War of the Spark", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/ee044f0b-e101-4ead-8d0e-aa510aad4277", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Awar&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/war?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/62c59475-6f15-48d2-b105-f49901f20d44/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A36c78a5f-0148-4596-a346-f8e35037b694&unique=prints", "collector_number": "223", "digital": false, "rarity": "rare", "flavor_text": "\"To comprehend the full answer requires years of temporal study. In short, they were now never born in the first place.\"\n\u2014Teferi", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Svetlin Velinov", "artist_ids": ["ffd063ae-c097-4f26-b2e6-b1e2137708bc"], "illustration_id": "3d002ffd-69af-48d8-8ffb-58c0743414ff", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 712, "penny_rank": 2511, "preview": {"source": "Wizards of the Coast", "source_uri": "https://www.twitch.tv/videos/404095372", "previewed_at": "2019-03-31"}, "prices": {"usd": "0.31", "usd_foil": "1.89", "usd_etched": null, "eur": "0.20", "eur_foil": "1.15", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=461150", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Time+Wipe&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Time+Wipe&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Time+Wipe"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/187113?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Time+Wipe&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/72052?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "6ab4b490-67d8-4f13-86cb-858a8012a46a", "oracle_id": "36c78a5f-0148-4596-a346-f8e35037b694", "multiverse_ids": [], "tcgplayer_id": 187191, "cardmarket_id": 371839, "name": "Time Wipe", "lang": "en", "released_at": "2019-05-03", "uri": "https://api.scryfall.com/cards/6ab4b490-67d8-4f13-86cb-858a8012a46a", "scryfall_uri": "https://scryfall.com/card/pwar/223/time-wipe?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/6/a/6ab4b490-67d8-4f13-86cb-858a8012a46a.jpg?1558324717", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/a/6ab4b490-67d8-4f13-86cb-858a8012a46a.jpg?1558324717", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/6/a/6ab4b490-67d8-4f13-86cb-858a8012a46a.jpg?1558324717", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/6/a/6ab4b490-67d8-4f13-86cb-858a8012a46a.png?1558324717", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/a/6ab4b490-67d8-4f13-86cb-858a8012a46a.jpg?1558324717", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/6/a/6ab4b490-67d8-4f13-86cb-858a8012a46a.jpg?1558324717"}, "mana_cost": "{2}{W}{W}{U}", "cmc": 5.0, "type_line": "Sorcery", "oracle_text": "Return a creature you control to its owner's hand, then destroy all creatures.", "colors": ["U", "W"], "color_identity": ["U", "W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": true, "nonfoil": false, "finishes": ["foil"], "oversized": false, "promo": true, "reprint": true, "variation": false, "set_id": "9981777b-983e-4f17-b9b1-fe32cf243e23", "set": "pwar", "set_name": "War of the Spark Promos", "set_type": "promo", "set_uri": "https://api.scryfall.com/sets/9981777b-983e-4f17-b9b1-fe32cf243e23", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Apwar&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/pwar?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/6ab4b490-67d8-4f13-86cb-858a8012a46a/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A36c78a5f-0148-4596-a346-f8e35037b694&unique=prints", "collector_number": "223", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Heonhwa Choe", "artist_ids": ["ce415f9e-8a20-4d64-bcba-2b1b7e94012e"], "illustration_id": "6e476865-e846-488e-b3a9-a1ec68cb2397", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": true, "textless": false, "booster": false, "story_spotlight": false, "promo_types": ["setpromo", "instore"], "edhrec_rank": 712, "penny_rank": 2511, "preview": {"source": "Wizards of the Coast", "source_uri": "https://magic.wizards.com/en/articles/archive/card-preview/war-spark-promos-and-packaging-2019-04-01", "previewed_at": "2019-04-01"}, "prices": {"usd": null, "usd_foil": "1.95", "usd_etched": null, "eur": null, "eur_foil": "0.73", "tix": null}, "related_uris": {"tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Time+Wipe&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Time+Wipe&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Time+Wipe"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/187191?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Time+Wipe&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Time+Wipe&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "8b6da540-6803-47e5-9af0-7ae8e2f84b6c", "oracle_id": "5cf4d98e-f2f4-435b-a633-990b2e654f3a", "multiverse_ids": [1818], "tcgplayer_id": 3582, "cardmarket_id": 7372, "name": "Tivadar's Crusade", "lang": "en", "released_at": "1994-08-01", "uri": "https://api.scryfall.com/cards/8b6da540-6803-47e5-9af0-7ae8e2f84b6c", "scryfall_uri": "https://scryfall.com/card/drk/18/tivadars-crusade?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/8/b/8b6da540-6803-47e5-9af0-7ae8e2f84b6c.jpg?1562927916", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/b/8b6da540-6803-47e5-9af0-7ae8e2f84b6c.jpg?1562927916", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/8/b/8b6da540-6803-47e5-9af0-7ae8e2f84b6c.jpg?1562927916", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/8/b/8b6da540-6803-47e5-9af0-7ae8e2f84b6c.png?1562927916", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/b/8b6da540-6803-47e5-9af0-7ae8e2f84b6c.jpg?1562927916", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/8/b/8b6da540-6803-47e5-9af0-7ae8e2f84b6c.jpg?1562927916"}, "mana_cost": "{1}{W}{W}", "cmc": 3.0, "type_line": "Sorcery", "oracle_text": "Destroy all Goblins.", "colors": ["W"], "color_identity": ["W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "a21c6836-c435-459a-81e3-22d2da174549", "set": "drk", "set_name": "The Dark", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/a21c6836-c435-459a-81e3-22d2da174549", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Adrk&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/drk?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/8b6da540-6803-47e5-9af0-7ae8e2f84b6c/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A5cf4d98e-f2f4-435b-a633-990b2e654f3a&unique=prints", "collector_number": "18", "digital": false, "rarity": "uncommon", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Dennis Detwiller", "artist_ids": ["4c20a200-b013-4646-99ca-78680056bd21"], "illustration_id": "bca44a6c-a6c8-4bdf-8faa-0b4439806f43", "border_color": "black", "frame": "1993", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 21064, "penny_rank": 12194, "prices": {"usd": "2.21", "usd_foil": null, "usd_etched": null, "eur": "4.75", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=1818", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Tivadar%27s+Crusade&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Tivadar%27s+Crusade&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Tivadar%27s+Crusade"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/3582?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Tivadar%27s+Crusade&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Tivadar%27s+Crusade&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "19528a24-4968-4742-a2d1-06f94e60f290", "oracle_id": "f467ec85-ffe2-4963-82e0-509a7873fd63", "multiverse_ids": [3470], "mtgo_id": 7383, "mtgo_foil_id": 7384, "tcgplayer_id": 5269, "cardmarket_id": 8250, "name": "Torrent of Lava", "lang": "en", "released_at": "1996-10-08", "uri": "https://api.scryfall.com/cards/19528a24-4968-4742-a2d1-06f94e60f290", "scryfall_uri": "https://scryfall.com/card/mir/199/torrent-of-lava?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/1/9/19528a24-4968-4742-a2d1-06f94e60f290.jpg?1562718298", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/9/19528a24-4968-4742-a2d1-06f94e60f290.jpg?1562718298", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/1/9/19528a24-4968-4742-a2d1-06f94e60f290.jpg?1562718298", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/1/9/19528a24-4968-4742-a2d1-06f94e60f290.png?1562718298", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/9/19528a24-4968-4742-a2d1-06f94e60f290.jpg?1562718298", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/1/9/19528a24-4968-4742-a2d1-06f94e60f290.jpg?1562718298"}, "mana_cost": "{X}{R}{R}", "cmc": 2.0, "type_line": "Sorcery", "oracle_text": "Torrent of Lava deals X damage to each creature without flying.\nAs long as Torrent of Lava is on the stack, each creature has \"{T}: Prevent the next 1 damage that would be dealt to this creature by Torrent of Lava this turn.\"", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": true, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "5f06acf3-8123-4a78-b2e7-089b0b775a4a", "set": "mir", "set_name": "Mirage", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/5f06acf3-8123-4a78-b2e7-089b0b775a4a", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Amir&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/mir?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/19528a24-4968-4742-a2d1-06f94e60f290/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Af467ec85-ffe2-4963-82e0-509a7873fd63&unique=prints", "collector_number": "199", "digital": false, "rarity": "rare", "flavor_text": "The mountain's voice shouts us all down.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Kathryn Rathke", "artist_ids": ["6547d7c0-51a4-4e0f-ac83-beaf5857ddbf"], "illustration_id": "529baf25-d619-4242-9012-25492a91d0b2", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 20661, "prices": {"usd": "1.07", "usd_foil": null, "usd_etched": null, "eur": "1.49", "eur_foil": null, "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=3470", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Torrent+of+Lava&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Torrent+of+Lava&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Torrent+of+Lava"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/5269?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Torrent+of+Lava&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/7383?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "db34617f-b04f-4b65-84cf-5c5be1eb7226", "oracle_id": "afaef788-34d1-460b-b884-9d7ae6ddeb18", "multiverse_ids": [], "tcgplayer_id": 247526, "cardmarket_id": 577310, "name": "Toxic Deluge", "lang": "en", "released_at": "2022-01-28", "uri": "https://api.scryfall.com/cards/db34617f-b04f-4b65-84cf-5c5be1eb7226", "scryfall_uri": "https://scryfall.com/card/cc2/6/toxic-deluge?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/d/b/db34617f-b04f-4b65-84cf-5c5be1eb7226.jpg?1651951814", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/b/db34617f-b04f-4b65-84cf-5c5be1eb7226.jpg?1651951814", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/d/b/db34617f-b04f-4b65-84cf-5c5be1eb7226.jpg?1651951814", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/d/b/db34617f-b04f-4b65-84cf-5c5be1eb7226.png?1651951814", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/b/db34617f-b04f-4b65-84cf-5c5be1eb7226.jpg?1651951814", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/d/b/db34617f-b04f-4b65-84cf-5c5be1eb7226.jpg?1651951814"}, "mana_cost": "{2}{B}", "cmc": 3.0, "type_line": "Sorcery", "oracle_text": "As an additional cost to cast this spell, pay X life.\nAll creatures get -X/-X until end of turn.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "78a7f4da-4838-4011-9f58-de8020d1fd2d", "set": "cc2", "set_name": "Commander Collection: Black", "set_type": "arsenal", "set_uri": "https://api.scryfall.com/sets/78a7f4da-4838-4011-9f58-de8020d1fd2d", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Acc2&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/cc2?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/db34617f-b04f-4b65-84cf-5c5be1eb7226/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aafaef788-34d1-460b-b884-9d7ae6ddeb18&unique=prints", "collector_number": "6", "digital": false, "rarity": "rare", "flavor_text": "\"I am greater than rain and nourishment. I am glistening oil and perfection.\"\n\u2014Yawgmoth", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Yeong-Hao Han", "artist_ids": ["f8e7f8d6-6dde-4059-973c-30f1fd1bbe4e"], "illustration_id": "021a968d-5be5-4847-b9e1-2a558cd4d049", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "edhrec_rank": 98, "prices": {"usd": "14.96", "usd_foil": "19.67", "usd_etched": null, "eur": "12.00", "eur_foil": "15.59", "tix": null}, "related_uris": {"tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Toxic+Deluge&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Toxic+Deluge&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Toxic+Deluge"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/247526?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Toxic+Deluge&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Toxic+Deluge&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "564caf57-4ba5-4993-a35e-945699c94eb7", "oracle_id": "afaef788-34d1-460b-b884-9d7ae6ddeb18", "multiverse_ids": [376559], "mtgo_id": 51366, "mtgo_foil_id": 51367, "tcgplayer_id": 71880, "cardmarket_id": 264743, "name": "Toxic Deluge", "lang": "en", "released_at": "2013-11-01", "uri": "https://api.scryfall.com/cards/564caf57-4ba5-4993-a35e-945699c94eb7", "scryfall_uri": "https://scryfall.com/card/c13/96/toxic-deluge?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/5/6/564caf57-4ba5-4993-a35e-945699c94eb7.jpg?1562913020", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/6/564caf57-4ba5-4993-a35e-945699c94eb7.jpg?1562913020", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/5/6/564caf57-4ba5-4993-a35e-945699c94eb7.jpg?1562913020", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/5/6/564caf57-4ba5-4993-a35e-945699c94eb7.png?1562913020", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/6/564caf57-4ba5-4993-a35e-945699c94eb7.jpg?1562913020", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/5/6/564caf57-4ba5-4993-a35e-945699c94eb7.jpg?1562913020"}, "mana_cost": "{2}{B}", "cmc": 3.0, "type_line": "Sorcery", "oracle_text": "As an additional cost to cast this spell, pay X life.\nAll creatures get -X/-X until end of turn.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "c62e6d4f-af8c-4f27-9bc8-361291890146", "set": "c13", "set_name": "Commander 2013", "set_type": "commander", "set_uri": "https://api.scryfall.com/sets/c62e6d4f-af8c-4f27-9bc8-361291890146", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ac13&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/c13?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/564caf57-4ba5-4993-a35e-945699c94eb7/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aafaef788-34d1-460b-b884-9d7ae6ddeb18&unique=prints", "collector_number": "96", "digital": false, "rarity": "rare", "flavor_text": "\"It's a difficult task to quarantine a plague that moves with the clouds.\"\n\u2014Esara, healer adept", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Svetlin Velinov", "artist_ids": ["ffd063ae-c097-4f26-b2e6-b1e2137708bc"], "illustration_id": "4951cae4-b597-4449-bea0-1de81980f568", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "edhrec_rank": 98, "prices": {"usd": "15.73", "usd_foil": null, "usd_etched": null, "eur": "11.99", "eur_foil": null, "tix": "1.99"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=376559", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Toxic+Deluge&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Toxic+Deluge&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Toxic+Deluge"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/71880?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Toxic+Deluge&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/51366?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "73731e45-51bb-4188-a54d-fdaa4bdfaf1f", "oracle_id": "afaef788-34d1-460b-b884-9d7ae6ddeb18", "multiverse_ids": [491354], "tcgplayer_id": 219499, "cardmarket_id": 486919, "name": "Toxic Deluge", "lang": "en", "released_at": "2020-08-07", "uri": "https://api.scryfall.com/cards/73731e45-51bb-4188-a54d-fdaa4bdfaf1f", "scryfall_uri": "https://scryfall.com/card/2xm/345/toxic-deluge?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/7/3/73731e45-51bb-4188-a54d-fdaa4bdfaf1f.jpg?1599711037", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/3/73731e45-51bb-4188-a54d-fdaa4bdfaf1f.jpg?1599711037", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/7/3/73731e45-51bb-4188-a54d-fdaa4bdfaf1f.jpg?1599711037", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/7/3/73731e45-51bb-4188-a54d-fdaa4bdfaf1f.png?1599711037", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/3/73731e45-51bb-4188-a54d-fdaa4bdfaf1f.jpg?1599711037", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/7/3/73731e45-51bb-4188-a54d-fdaa4bdfaf1f.jpg?1599711037"}, "mana_cost": "{2}{B}", "cmc": 3.0, "type_line": "Sorcery", "oracle_text": "As an additional cost to cast this spell, pay X life.\nAll creatures get -X/-X until end of turn.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": true, "reprint": true, "variation": false, "set_id": "372dafe8-b5d1-4b81-998f-3ae96b59498a", "set": "2xm", "set_name": "Double Masters", "set_type": "masters", "set_uri": "https://api.scryfall.com/sets/372dafe8-b5d1-4b81-998f-3ae96b59498a", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3A2xm&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/2xm?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/73731e45-51bb-4188-a54d-fdaa4bdfaf1f/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aafaef788-34d1-460b-b884-9d7ae6ddeb18&unique=prints", "collector_number": "345", "digital": false, "rarity": "rare", "flavor_text": "Armor dissolved into flesh. Flesh melted to bone. Bone fell away to nothing.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Richard Kane Ferguson", "artist_ids": ["191620ed-2361-444e-96a6-1fe7ce32ef3b"], "illustration_id": "8229ce03-1754-467c-a244-4ddc58048222", "border_color": "borderless", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "promo_types": ["boxtopper", "boosterfun"], "edhrec_rank": 98, "preview": {"source": "AfterOfficeTTV", "source_uri": "https://twitter.com/AfterTtv/status/1288942513747890177", "previewed_at": "2020-07-30"}, "prices": {"usd": "33.19", "usd_foil": "32.87", "usd_etched": null, "eur": "30.00", "eur_foil": "32.49", "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=491354", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Toxic+Deluge&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Toxic+Deluge&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Toxic+Deluge"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/219499?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Toxic+Deluge&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Toxic+Deluge&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "b281c013-b35a-4c4a-aaee-b6f93968485c", "oracle_id": "4281a153-665b-44cf-bcff-9cf88c14c2b5", "multiverse_ids": [12988], "mtgo_id": 15938, "mtgo_foil_id": 15939, "tcgplayer_id": 3127, "cardmarket_id": 2987, "name": "Tremor", "lang": "en", "released_at": "2001-04-11", "uri": "https://api.scryfall.com/cards/b281c013-b35a-4c4a-aaee-b6f93968485c", "scryfall_uri": "https://scryfall.com/card/7ed/225/tremor?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/b/2/b281c013-b35a-4c4a-aaee-b6f93968485c.jpg?1562246219", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/2/b281c013-b35a-4c4a-aaee-b6f93968485c.jpg?1562246219", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/b/2/b281c013-b35a-4c4a-aaee-b6f93968485c.jpg?1562246219", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/b/2/b281c013-b35a-4c4a-aaee-b6f93968485c.png?1562246219", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/2/b281c013-b35a-4c4a-aaee-b6f93968485c.jpg?1562246219", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/b/2/b281c013-b35a-4c4a-aaee-b6f93968485c.jpg?1562246219"}, "mana_cost": "{R}", "cmc": 1.0, "type_line": "Sorcery", "oracle_text": "Tremor deals 1 damage to each creature without flying.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "230f38aa-9511-4db8-a3aa-aeddbc3f7bb9", "set": "7ed", "set_name": "Seventh Edition", "set_type": "core", "set_uri": "https://api.scryfall.com/sets/230f38aa-9511-4db8-a3aa-aeddbc3f7bb9", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3A7ed&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/7ed?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/b281c013-b35a-4c4a-aaee-b6f93968485c/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A4281a153-665b-44cf-bcff-9cf88c14c2b5&unique=prints", "collector_number": "225", "digital": false, "rarity": "common", "flavor_text": "Where do you run when the earth becomes your enemy?", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Michael Koelsch", "artist_ids": ["f078bd61-b54a-4fa7-94d5-1efe362b34f2"], "illustration_id": "4b6c8332-97f4-4cba-b370-4ce275df9071", "border_color": "white", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 15883, "penny_rank": 9700, "prices": {"usd": "0.09", "usd_foil": "25.75", "usd_etched": null, "eur": "0.05", "eur_foil": "3.55", "tix": "0.09"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=12988", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Tremor&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Tremor&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Tremor"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/3127?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Tremor&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/15938?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "8531efb1-d77d-451a-8621-424fc278ccf9", "oracle_id": "4281a153-665b-44cf-bcff-9cf88c14c2b5", "multiverse_ids": [19614], "mtgo_id": 13047, "mtgo_foil_id": 13048, "tcgplayer_id": 6747, "cardmarket_id": 11593, "name": "Tremor", "lang": "en", "released_at": "1999-10-04", "uri": "https://api.scryfall.com/cards/8531efb1-d77d-451a-8621-424fc278ccf9", "scryfall_uri": "https://scryfall.com/card/mmq/220/tremor?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/8/5/8531efb1-d77d-451a-8621-424fc278ccf9.jpg?1562381834", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/5/8531efb1-d77d-451a-8621-424fc278ccf9.jpg?1562381834", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/8/5/8531efb1-d77d-451a-8621-424fc278ccf9.jpg?1562381834", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/8/5/8531efb1-d77d-451a-8621-424fc278ccf9.png?1562381834", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/5/8531efb1-d77d-451a-8621-424fc278ccf9.jpg?1562381834", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/8/5/8531efb1-d77d-451a-8621-424fc278ccf9.jpg?1562381834"}, "mana_cost": "{R}", "cmc": 1.0, "type_line": "Sorcery", "oracle_text": "Tremor deals 1 damage to each creature without flying.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "385e11a4-492b-4d07-b4a6-a1409ef829b8", "set": "mmq", "set_name": "Mercadian Masques", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/385e11a4-492b-4d07-b4a6-a1409ef829b8", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ammq&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/mmq?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/8531efb1-d77d-451a-8621-424fc278ccf9/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A4281a153-665b-44cf-bcff-9cf88c14c2b5&unique=prints", "collector_number": "220", "digital": false, "rarity": "common", "flavor_text": "Without a word, Gerrard and Sisay ran deeper into the mountain. Neither of them intended to leave Mercadia without the *Weatherlight* and its crew.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Mark Romanoski", "artist_ids": ["4ec62588-d6cc-41a2-a9be-a0f95b9613cc"], "illustration_id": "8867ba83-9978-43b7-9e38-9dc52e78681c", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 15883, "penny_rank": 9700, "prices": {"usd": "0.13", "usd_foil": "3.25", "usd_etched": null, "eur": "0.02", "eur_foil": "1.20", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=19614", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Tremor&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Tremor&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Tremor"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/6747?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Tremor&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/13047?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "e2509285-a88e-4f5c-86c1-c0386da0f0c5", "oracle_id": "4281a153-665b-44cf-bcff-9cf88c14c2b5", "multiverse_ids": [6592], "tcgplayer_id": 238, "cardmarket_id": 9938, "name": "Tremor", "lang": "en", "released_at": "1998-06-24", "uri": "https://api.scryfall.com/cards/e2509285-a88e-4f5c-86c1-c0386da0f0c5", "scryfall_uri": "https://scryfall.com/card/p02/118/tremor?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/e/2/e2509285-a88e-4f5c-86c1-c0386da0f0c5.jpg?1562948885", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/2/e2509285-a88e-4f5c-86c1-c0386da0f0c5.jpg?1562948885", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/e/2/e2509285-a88e-4f5c-86c1-c0386da0f0c5.jpg?1562948885", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/e/2/e2509285-a88e-4f5c-86c1-c0386da0f0c5.png?1562948885", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/2/e2509285-a88e-4f5c-86c1-c0386da0f0c5.jpg?1562948885", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/e/2/e2509285-a88e-4f5c-86c1-c0386da0f0c5.jpg?1562948885"}, "mana_cost": "{R}", "cmc": 1.0, "type_line": "Sorcery", "oracle_text": "Tremor deals 1 damage to each creature without flying.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "ac67f18a-4f0e-407e-bab1-a9fe4f659565", "set": "p02", "set_name": "Portal Second Age", "set_type": "starter", "set_uri": "https://api.scryfall.com/sets/ac67f18a-4f0e-407e-bab1-a9fe4f659565", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ap02&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/p02?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/e2509285-a88e-4f5c-86c1-c0386da0f0c5/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A4281a153-665b-44cf-bcff-9cf88c14c2b5&unique=prints", "collector_number": "118", "digital": false, "rarity": "common", "flavor_text": "One little goblin shook up the ground. When the dust cleared, no one was found.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Pete Venters", "artist_ids": ["d54c4a1a-c0c5-4834-84db-125d341f3ad8"], "illustration_id": "19f6306c-07a0-4ecf-a74f-b6d90db1f2c7", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 15883, "penny_rank": 9700, "prices": {"usd": "0.17", "usd_foil": null, "usd_etched": null, "eur": "0.12", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=6592", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Tremor&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Tremor&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Tremor"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/238?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Tremor&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Tremor&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "a9d64665-c1e0-40ab-a358-247f82966379", "oracle_id": "4281a153-665b-44cf-bcff-9cf88c14c2b5", "multiverse_ids": [3706], "mtgo_id": 7765, "mtgo_foil_id": 7766, "tcgplayer_id": 5948, "cardmarket_id": 8500, "name": "Tremor", "lang": "en", "released_at": "1997-02-03", "uri": "https://api.scryfall.com/cards/a9d64665-c1e0-40ab-a358-247f82966379", "scryfall_uri": "https://scryfall.com/card/vis/99/tremor?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/a/9/a9d64665-c1e0-40ab-a358-247f82966379.jpg?1562278171", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/9/a9d64665-c1e0-40ab-a358-247f82966379.jpg?1562278171", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/a/9/a9d64665-c1e0-40ab-a358-247f82966379.jpg?1562278171", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/a/9/a9d64665-c1e0-40ab-a358-247f82966379.png?1562278171", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/9/a9d64665-c1e0-40ab-a358-247f82966379.jpg?1562278171", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/a/9/a9d64665-c1e0-40ab-a358-247f82966379.jpg?1562278171"}, "mana_cost": "{R}", "cmc": 1.0, "type_line": "Sorcery", "oracle_text": "Tremor deals 1 damage to each creature without flying.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "2c32f1a9-7921-4826-bea0-80bbac70532c", "set": "vis", "set_name": "Visions", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/2c32f1a9-7921-4826-bea0-80bbac70532c", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Avis&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/vis?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/a9d64665-c1e0-40ab-a358-247f82966379/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A4281a153-665b-44cf-bcff-9cf88c14c2b5&unique=prints", "collector_number": "99", "digital": false, "rarity": "common", "flavor_text": "\"Where do you run when the earth becomes your enemy?\"\n\u2014Naimah, Femeref philosopher", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Michael Danza", "artist_ids": ["e4a116a8-650e-4dba-bd2c-e94f2abc17ef"], "illustration_id": "3cc1d45b-7eb5-499b-9bd8-851d9dc3f04b", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 15883, "penny_rank": 9700, "prices": {"usd": "0.03", "usd_foil": null, "usd_etched": null, "eur": "0.02", "eur_foil": null, "tix": "0.11"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=3706", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Tremor&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Tremor&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Tremor"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/5948?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Tremor&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/7765?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "cd5f473c-e11e-4047-91f9-81b80f0a3562", "oracle_id": "9b3b0bef-cdbb-41c2-b8f1-ddda9903b43a", "multiverse_ids": [3415], "mtgo_id": 7387, "mtgo_foil_id": 7388, "tcgplayer_id": 5271, "cardmarket_id": 8195, "name": "Tropical Storm", "lang": "en", "released_at": "1996-10-08", "uri": "https://api.scryfall.com/cards/cd5f473c-e11e-4047-91f9-81b80f0a3562", "scryfall_uri": "https://scryfall.com/card/mir/246/tropical-storm?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/c/d/cd5f473c-e11e-4047-91f9-81b80f0a3562.jpg?1587912688", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/d/cd5f473c-e11e-4047-91f9-81b80f0a3562.jpg?1587912688", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/c/d/cd5f473c-e11e-4047-91f9-81b80f0a3562.jpg?1587912688", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/c/d/cd5f473c-e11e-4047-91f9-81b80f0a3562.png?1587912688", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/d/cd5f473c-e11e-4047-91f9-81b80f0a3562.jpg?1587912688", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/c/d/cd5f473c-e11e-4047-91f9-81b80f0a3562.jpg?1587912688"}, "mana_cost": "{X}{G}", "cmc": 1.0, "type_line": "Sorcery", "oracle_text": "Tropical Storm deals X damage to each creature with flying and 1 additional damage to each blue creature.", "colors": ["G"], "color_identity": ["G"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "5f06acf3-8123-4a78-b2e7-089b0b775a4a", "set": "mir", "set_name": "Mirage", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/5f06acf3-8123-4a78-b2e7-089b0b775a4a", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Amir&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/mir?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/cd5f473c-e11e-4047-91f9-81b80f0a3562/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A9b3b0bef-cdbb-41c2-b8f1-ddda9903b43a&unique=prints", "collector_number": "246", "digital": false, "rarity": "uncommon", "flavor_text": "\"After the storm, I found a sea turtle dying on the sands, a blade of grass driven through its shell.\"\n\u2014*Travelogue of Najat*", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Richard Kane Ferguson", "artist_ids": ["191620ed-2361-444e-96a6-1fe7ce32ef3b"], "illustration_id": "c845b572-bff4-4ca4-8410-81451a504fbf", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 20765, "prices": {"usd": "0.17", "usd_foil": null, "usd_etched": null, "eur": "0.49", "eur_foil": null, "tix": "0.05"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=3415", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Tropical+Storm&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Tropical+Storm&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Tropical+Storm"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/5271?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Tropical+Storm&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/7387?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "0c1a0ebd-1add-49e6-b5e6-5b26abb1de88", "oracle_id": "4e0de4d9-7a30-4a2b-94ba-8239baad2a0a", "multiverse_ids": [26380], "mtgo_id": 14989, "mtgo_foil_id": 14990, "tcgplayer_id": 7719, "cardmarket_id": 3711, "name": "Tsabo's Decree", "lang": "en", "released_at": "2000-10-02", "uri": "https://api.scryfall.com/cards/0c1a0ebd-1add-49e6-b5e6-5b26abb1de88", "scryfall_uri": "https://scryfall.com/card/inv/129/tsabos-decree?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/0/c/0c1a0ebd-1add-49e6-b5e6-5b26abb1de88.jpg?1562897461", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/c/0c1a0ebd-1add-49e6-b5e6-5b26abb1de88.jpg?1562897461", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/0/c/0c1a0ebd-1add-49e6-b5e6-5b26abb1de88.jpg?1562897461", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/0/c/0c1a0ebd-1add-49e6-b5e6-5b26abb1de88.png?1562897461", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/c/0c1a0ebd-1add-49e6-b5e6-5b26abb1de88.jpg?1562897461", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/0/c/0c1a0ebd-1add-49e6-b5e6-5b26abb1de88.jpg?1562897461"}, "mana_cost": "{5}{B}", "cmc": 6.0, "type_line": "Instant", "oracle_text": "Choose a creature type. Target player reveals their hand and discards all creature cards of that type. Then destroy all creatures of that type that player controls. They can't be regenerated.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "b9ae5e02-7726-47ca-b5e4-5ec402b41cd1", "set": "inv", "set_name": "Invasion", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/b9ae5e02-7726-47ca-b5e4-5ec402b41cd1", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ainv&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/inv?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/0c1a0ebd-1add-49e6-b5e6-5b26abb1de88/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A4e0de4d9-7a30-4a2b-94ba-8239baad2a0a&unique=prints", "collector_number": "129", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Thomas M. Baxa", "artist_ids": ["ff346569-557d-4043-ae44-97c2c7cabd7d"], "illustration_id": "d027091d-bf08-49eb-a0e4-e99c47281c13", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 16053, "prices": {"usd": "1.06", "usd_foil": "49.99", "usd_etched": null, "eur": "0.50", "eur_foil": "20.00", "tix": "0.07"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=26380", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Tsabo%27s+Decree&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Tsabo%27s+Decree&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Tsabo%27s+Decree"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/7719?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Tsabo%27s+Decree&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/14989?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "0fe616c4-dcb0-4284-ba10-6fbf7cecd217", "oracle_id": "ed3d113d-f2c3-4ef3-8bdd-ed4824a22ab0", "multiverse_ids": [476413], "mtgo_id": 79448, "arena_id": 70673, "tcgplayer_id": 207150, "cardmarket_id": 432344, "name": "Underworld Fires", "lang": "en", "released_at": "2020-01-24", "uri": "https://api.scryfall.com/cards/0fe616c4-dcb0-4284-ba10-6fbf7cecd217", "scryfall_uri": "https://scryfall.com/card/thb/162/underworld-fires?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/0/f/0fe616c4-dcb0-4284-ba10-6fbf7cecd217.jpg?1581480512", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/f/0fe616c4-dcb0-4284-ba10-6fbf7cecd217.jpg?1581480512", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/0/f/0fe616c4-dcb0-4284-ba10-6fbf7cecd217.jpg?1581480512", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/0/f/0fe616c4-dcb0-4284-ba10-6fbf7cecd217.png?1581480512", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/f/0fe616c4-dcb0-4284-ba10-6fbf7cecd217.jpg?1581480512", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/0/f/0fe616c4-dcb0-4284-ba10-6fbf7cecd217.jpg?1581480512"}, "mana_cost": "{1}{R}", "cmc": 2.0, "type_line": "Sorcery", "oracle_text": "Underworld Fires deals 1 damage to each creature and each planeswalker. If a permanent dealt damage this way would die this turn, exile it instead.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "5f23a78d-cda1-462a-8be3-a62b40c34913", "set": "thb", "set_name": "Theros Beyond Death", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/5f23a78d-cda1-462a-8be3-a62b40c34913", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Athb&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/thb?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/0fe616c4-dcb0-4284-ba10-6fbf7cecd217/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aed3d113d-f2c3-4ef3-8bdd-ed4824a22ab0&unique=prints", "collector_number": "162", "digital": false, "rarity": "uncommon", "flavor_text": "The Underworld is anything but a resting place.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Bayard Wu", "artist_ids": ["b089963c-610a-4d50-9206-d64b7caedef1"], "illustration_id": "7cef8ae3-36ff-4b4a-8655-ab6923c01de6", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 15702, "penny_rank": 11020, "prices": {"usd": "0.04", "usd_foil": "0.05", "usd_etched": null, "eur": "0.02", "eur_foil": "0.15", "tix": "0.04"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=476413", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Underworld+Fires&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Underworld+Fires&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Underworld+Fires"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/207150?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Underworld+Fires&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/79448?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "39f322ff-0b04-41ce-90cd-9896f941e703", "oracle_id": "d8e2dea9-0e96-4ce4-a070-9893f44cf0cc", "multiverse_ids": [4472], "mtgo_id": 9283, "mtgo_foil_id": 9284, "tcgplayer_id": 6123, "cardmarket_id": 8594, "name": "Urborg Justice", "lang": "en", "released_at": "1997-06-09", "uri": "https://api.scryfall.com/cards/39f322ff-0b04-41ce-90cd-9896f941e703", "scryfall_uri": "https://scryfall.com/card/wth/84/urborg-justice?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/3/9/39f322ff-0b04-41ce-90cd-9896f941e703.jpg?1562800263", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/9/39f322ff-0b04-41ce-90cd-9896f941e703.jpg?1562800263", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/3/9/39f322ff-0b04-41ce-90cd-9896f941e703.jpg?1562800263", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/3/9/39f322ff-0b04-41ce-90cd-9896f941e703.png?1562800263", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/9/39f322ff-0b04-41ce-90cd-9896f941e703.jpg?1562800263", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/3/9/39f322ff-0b04-41ce-90cd-9896f941e703.jpg?1562800263"}, "mana_cost": "{B}{B}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Target opponent sacrifices a creature for each creature put into your graveyard from the battlefield this turn.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": true, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "700997ac-add2-4ce2-992e-5efa0fdfc0e9", "set": "wth", "set_name": "Weatherlight", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/700997ac-add2-4ce2-992e-5efa0fdfc0e9", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Awth&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/wth?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/39f322ff-0b04-41ce-90cd-9896f941e703/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ad8e2dea9-0e96-4ce4-a070-9893f44cf0cc&unique=prints", "collector_number": "84", "digital": false, "rarity": "rare", "flavor_text": "\"It is a narrow line between justice and vengeance.\"\n\u2014Crovax", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Gary Leach", "artist_ids": ["fb608209-fd37-435a-b2fb-a158aeb3f927"], "illustration_id": "0c261135-46e5-4ea9-b870-3caf041418b0", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 13816, "prices": {"usd": "12.05", "usd_foil": null, "usd_etched": null, "eur": "7.00", "eur_foil": null, "tix": "0.13"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=4472", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Urborg+Justice&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Urborg+Justice&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Urborg+Justice"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/6123?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Urborg+Justice&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/9283?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "0445def0-8921-4579-912f-035d9fbce3c0", "oracle_id": "4ba1f2c5-6456-4809-a563-fd5bd311869a", "multiverse_ids": [531918], "tcgplayer_id": 243761, "cardmarket_id": 572191, "name": "Valiant Endeavor", "lang": "en", "released_at": "2021-07-23", "uri": "https://api.scryfall.com/cards/0445def0-8921-4579-912f-035d9fbce3c0", "scryfall_uri": "https://scryfall.com/card/afc/13/valiant-endeavor?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/0/4/0445def0-8921-4579-912f-035d9fbce3c0.jpg?1631584806", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/4/0445def0-8921-4579-912f-035d9fbce3c0.jpg?1631584806", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/0/4/0445def0-8921-4579-912f-035d9fbce3c0.jpg?1631584806", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/0/4/0445def0-8921-4579-912f-035d9fbce3c0.png?1631584806", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/4/0445def0-8921-4579-912f-035d9fbce3c0.jpg?1631584806", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/0/4/0445def0-8921-4579-912f-035d9fbce3c0.jpg?1631584806"}, "mana_cost": "{4}{W}{W}", "cmc": 6.0, "type_line": "Sorcery", "oracle_text": "Roll two d6 and choose one result. Destroy each creature with power greater than or equal to that result. Then create a number of 2/2 white Knight creature tokens with vigilance equal to the other result.", "colors": ["W"], "color_identity": ["W"], "keywords": [], "all_parts": [{"object": "related_card", "id": "0445def0-8921-4579-912f-035d9fbce3c0", "component": "combo_piece", "name": "Valiant Endeavor", "type_line": "Sorcery", "uri": "https://api.scryfall.com/cards/0445def0-8921-4579-912f-035d9fbce3c0"}, {"object": "related_card", "id": "26b128a3-1bb5-4bd7-a8c6-d33d5bf130aa", "component": "token", "name": "Knight", "type_line": "Token Creature \u2014 Knight", "uri": "https://api.scryfall.com/cards/26b128a3-1bb5-4bd7-a8c6-d33d5bf130aa"}], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "db1b46f9-893c-4623-9465-985ff6e4472c", "set": "afc", "set_name": "Forgotten Realms Commander", "set_type": "commander", "set_uri": "https://api.scryfall.com/sets/db1b46f9-893c-4623-9465-985ff6e4472c", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aafc&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/afc?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/0445def0-8921-4579-912f-035d9fbce3c0/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A4ba1f2c5-6456-4809-a563-fd5bd311869a&unique=prints", "collector_number": "13", "digital": false, "rarity": "rare", "flavor_text": "\"Only victory shall stop our charge!\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Antonio Jos\u00e9 Manzanedo", "artist_ids": ["74986d28-0001-4a78-827c-e490b325d0e3"], "illustration_id": "816d2eb3-13a0-439e-9e9a-2c7f79fe8c10", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "edhrec_rank": 8828, "prices": {"usd": "0.08", "usd_foil": null, "usd_etched": null, "eur": "0.34", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=531918", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Valiant+Endeavor&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Valiant+Endeavor&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Valiant+Endeavor"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/243761?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Valiant+Endeavor&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Valiant+Endeavor&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "20d2d886-13a2-44f1-966a-ec674622fd01", "oracle_id": "3a82e724-28f6-430f-a474-ab4276197963", "multiverse_ids": [541038], "mtgo_id": 94704, "arena_id": 78986, "tcgplayer_id": 252967, "cardmarket_id": 581392, "name": "Vampires' Vengeance", "lang": "en", "released_at": "2021-11-19", "uri": "https://api.scryfall.com/cards/20d2d886-13a2-44f1-966a-ec674622fd01", "scryfall_uri": "https://scryfall.com/card/vow/180/vampires-vengeance?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/2/0/20d2d886-13a2-44f1-966a-ec674622fd01.jpg?1643592028", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/0/20d2d886-13a2-44f1-966a-ec674622fd01.jpg?1643592028", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/2/0/20d2d886-13a2-44f1-966a-ec674622fd01.jpg?1643592028", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/2/0/20d2d886-13a2-44f1-966a-ec674622fd01.png?1643592028", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/0/20d2d886-13a2-44f1-966a-ec674622fd01.jpg?1643592028", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/2/0/20d2d886-13a2-44f1-966a-ec674622fd01.jpg?1643592028"}, "mana_cost": "{2}{R}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Vampires' Vengeance deals 2 damage to each non-Vampire creature. Create a Blood token. (It's an artifact with \"{1}, {T}, Discard a card, Sacrifice this artifact: Draw a card.\")", "colors": ["R"], "color_identity": ["R"], "keywords": [], "all_parts": [{"object": "related_card", "id": "20d2d886-13a2-44f1-966a-ec674622fd01", "component": "combo_piece", "name": "Vampires' Vengeance", "type_line": "Instant", "uri": "https://api.scryfall.com/cards/20d2d886-13a2-44f1-966a-ec674622fd01"}, {"object": "related_card", "id": "a6f374bc-cd29-469f-808a-6a6c004ee8aa", "component": "token", "name": "Blood", "type_line": "Token Artifact \u2014 Blood", "uri": "https://api.scryfall.com/cards/a6f374bc-cd29-469f-808a-6a6c004ee8aa"}], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "8144b676-569f-4716-8005-bc8f0778f3fa", "set": "vow", "set_name": "Innistrad: Crimson Vow", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/8144b676-569f-4716-8005-bc8f0778f3fa", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Avow&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/vow?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/20d2d886-13a2-44f1-966a-ec674622fd01/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A3a82e724-28f6-430f-a474-ab4276197963&unique=prints", "collector_number": "180", "digital": false, "rarity": "uncommon", "flavor_text": "Olivia was quick to make an example of any village that refused to pay her blood tithe.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Chris Cold", "artist_ids": ["2622d22b-3fd8-4831-9b2b-adc5fac01b85"], "illustration_id": "a4396231-010f-4058-86f3-e3487bad4958", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 7119, "penny_rank": 6567, "preview": {"source": "The Games Capital", "source_uri": "https://thegamescapital.com.au/pages/exclusive-innistrad-crimson-vow-preview", "previewed_at": "2021-10-28"}, "prices": {"usd": "0.12", "usd_foil": "0.15", "usd_etched": null, "eur": "0.03", "eur_foil": "0.15", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=541038", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Vampires%27+Vengeance&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Vampires%27+Vengeance&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Vampires%27+Vengeance"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/252967?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Vampires%27+Vengeance&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/94704?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "9f4ba693-0323-415d-ad91-c083fbbab7f7", "oracle_id": "3a82e724-28f6-430f-a474-ab4276197963", "multiverse_ids": [544477], "arena_id": 79143, "tcgplayer_id": 253016, "cardmarket_id": 581393, "name": "Vampires' Vengeance", "flavor_name": "Mysterious Blood Illness", "lang": "en", "released_at": "2021-11-19", "uri": "https://api.scryfall.com/cards/9f4ba693-0323-415d-ad91-c083fbbab7f7", "scryfall_uri": "https://scryfall.com/card/vow/339/vampires-vengeance?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/9/f/9f4ba693-0323-415d-ad91-c083fbbab7f7.jpg?1645228860", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/f/9f4ba693-0323-415d-ad91-c083fbbab7f7.jpg?1645228860", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/9/f/9f4ba693-0323-415d-ad91-c083fbbab7f7.jpg?1645228860", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/9/f/9f4ba693-0323-415d-ad91-c083fbbab7f7.png?1645228860", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/f/9f4ba693-0323-415d-ad91-c083fbbab7f7.jpg?1645228860", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/9/f/9f4ba693-0323-415d-ad91-c083fbbab7f7.jpg?1645228860"}, "mana_cost": "{2}{R}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Vampires' Vengeance deals 2 damage to each non-Vampire creature. Create a Blood token. (It's an artifact with \"{1}, {T}, Discard a card, Sacrifice this artifact: Draw a card.\")", "colors": ["R"], "color_identity": ["R"], "keywords": [], "all_parts": [{"object": "related_card", "id": "20d2d886-13a2-44f1-966a-ec674622fd01", "component": "combo_piece", "name": "Vampires' Vengeance", "type_line": "Instant", "uri": "https://api.scryfall.com/cards/20d2d886-13a2-44f1-966a-ec674622fd01"}, {"object": "related_card", "id": "a6f374bc-cd29-469f-808a-6a6c004ee8aa", "component": "token", "name": "Blood", "type_line": "Token Artifact \u2014 Blood", "uri": "https://api.scryfall.com/cards/a6f374bc-cd29-469f-808a-6a6c004ee8aa"}], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "8144b676-569f-4716-8005-bc8f0778f3fa", "set": "vow", "set_name": "Innistrad: Crimson Vow", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/8144b676-569f-4716-8005-bc8f0778f3fa", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Avow&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/vow?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/9f4ba693-0323-415d-ad91-c083fbbab7f7/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A3a82e724-28f6-430f-a474-ab4276197963&unique=prints", "collector_number": "339", "digital": false, "rarity": "uncommon", "flavor_text": "She was ghastly, chalkily pale; the red seemed to have gone even from her lips and gums, and the bones of her face stood out prominently; her breathing was painful to see or hear.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Dave Kendall", "artist_ids": ["8a5540a8-18c9-4fa9-802c-59d6866114d5"], "illustration_id": "0fbfd36b-d86b-444a-9ee0-c610f4b35f9b", "border_color": "borderless", "frame": "2015", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "promo_types": ["draculaseries", "boosterfun"], "edhrec_rank": 7119, "penny_rank": 6567, "preview": {"source": "The Games Capital", "source_uri": "https://thegamescapital.com.au/pages/exclusive-innistrad-crimson-vow-preview", "previewed_at": "2021-10-28"}, "prices": {"usd": "0.11", "usd_foil": "0.16", "usd_etched": null, "eur": "0.50", "eur_foil": "0.28", "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=544477", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Vampires%27+Vengeance&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Vampires%27+Vengeance&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Vampires%27+Vengeance"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/253016?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Vampires%27+Vengeance&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Vampires%27+Vengeance&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "e264615c-eb99-4cb3-844a-2b4a94ba5203", "oracle_id": "a332e80a-dc51-4dc6-bc85-e114a1c6fdb8", "multiverse_ids": [534799], "mtgo_id": 93012, "arena_id": 78370, "tcgplayer_id": 248136, "cardmarket_id": 574941, "name": "Vanquish the Horde", "lang": "en", "released_at": "2021-09-24", "uri": "https://api.scryfall.com/cards/e264615c-eb99-4cb3-844a-2b4a94ba5203", "scryfall_uri": "https://scryfall.com/card/mid/41/vanquish-the-horde?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/e/2/e264615c-eb99-4cb3-844a-2b4a94ba5203.jpg?1634348651", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/2/e264615c-eb99-4cb3-844a-2b4a94ba5203.jpg?1634348651", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/e/2/e264615c-eb99-4cb3-844a-2b4a94ba5203.jpg?1634348651", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/e/2/e264615c-eb99-4cb3-844a-2b4a94ba5203.png?1634348651", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/2/e264615c-eb99-4cb3-844a-2b4a94ba5203.jpg?1634348651", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/e/2/e264615c-eb99-4cb3-844a-2b4a94ba5203.jpg?1634348651"}, "mana_cost": "{6}{W}{W}", "cmc": 8.0, "type_line": "Sorcery", "oracle_text": "This spell costs {1} less to cast for each creature on the battlefield.\nDestroy all creatures.", "colors": ["W"], "color_identity": ["W"], "keywords": [], "legalities": {"standard": "legal", "future": "legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "legal", "historicbrawl": "legal", "alchemy": "legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "44b8eb8f-fa23-401a-98b5-1fbb9871128e", "set": "mid", "set_name": "Innistrad: Midnight Hunt", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/44b8eb8f-fa23-401a-98b5-1fbb9871128e", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Amid&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/mid?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/e264615c-eb99-4cb3-844a-2b4a94ba5203/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aa332e80a-dc51-4dc6-bc85-e114a1c6fdb8&unique=prints", "collector_number": "41", "digital": false, "rarity": "rare", "flavor_text": "Odric took no joy in violence but neither did he mourn for the twisted things he dispatched. All that mattered were the lives he had saved.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Grzegorz Rutkowski", "artist_ids": ["b5f49d0d-8056-48e3-b614-090e656b4f9c"], "illustration_id": "74184d63-3225-4fa9-9ae8-493dde4e2e03", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 602, "preview": {"source": "Wizards of the Coast", "source_uri": "https://twitter.com/mtgjp/status/1435075597911265280", "previewed_at": "2021-09-06"}, "prices": {"usd": "3.43", "usd_foil": "3.80", "usd_etched": null, "eur": "3.45", "eur_foil": "4.20", "tix": "0.12"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=534799", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Vanquish+the+Horde&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Vanquish+the+Horde&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Vanquish+the+Horde"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/248136?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Vanquish+the+Horde&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/93012?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "7854928a-d467-4616-b96b-de7e5fe7303e", "oracle_id": "fc070e97-73ac-4028-9432-ff2012f2e778", "multiverse_ids": [4245], "tcgplayer_id": 811, "cardmarket_id": 10024, "name": "Virtue's Ruin", "lang": "en", "released_at": "1997-05-01", "uri": "https://api.scryfall.com/cards/7854928a-d467-4616-b96b-de7e5fe7303e", "scryfall_uri": "https://scryfall.com/card/por/116/virtues-ruin?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/7/8/7854928a-d467-4616-b96b-de7e5fe7303e.jpg?1562446869", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/8/7854928a-d467-4616-b96b-de7e5fe7303e.jpg?1562446869", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/7/8/7854928a-d467-4616-b96b-de7e5fe7303e.jpg?1562446869", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/7/8/7854928a-d467-4616-b96b-de7e5fe7303e.png?1562446869", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/8/7854928a-d467-4616-b96b-de7e5fe7303e.jpg?1562446869", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/7/8/7854928a-d467-4616-b96b-de7e5fe7303e.jpg?1562446869"}, "mana_cost": "{2}{B}", "cmc": 3.0, "type_line": "Sorcery", "oracle_text": "Destroy all white creatures.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "478c47df-5058-4ce6-830e-7e80732b2ca9", "set": "por", "set_name": "Portal", "set_type": "starter", "set_uri": "https://api.scryfall.com/sets/478c47df-5058-4ce6-830e-7e80732b2ca9", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Apor&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/por?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/7854928a-d467-4616-b96b-de7e5fe7303e/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Afc070e97-73ac-4028-9432-ff2012f2e778&unique=prints", "collector_number": "116", "digital": false, "rarity": "uncommon", "flavor_text": "All must fall, and those who stand highest fall hardest.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Mike Dringenberg", "artist_ids": ["a1407afa-0f54-43f8-938b-88b268074f91"], "illustration_id": "c3dd95e1-7823-4401-8410-3e5deacd54fe", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 18240, "prices": {"usd": "0.63", "usd_foil": null, "usd_etched": null, "eur": "1.00", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=4245", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Virtue%27s+Ruin&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Virtue%27s+Ruin&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Virtue%27s+Ruin"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/811?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Virtue%27s+Ruin&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Virtue%27s+Ruin&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "c0b3e320-a85c-4d92-944e-0a5e78a066a5", "oracle_id": "fdb28fd3-70fb-43c3-b367-9cf0d2c46e06", "multiverse_ids": [413753], "mtgo_id": 60961, "mtgo_foil_id": 60962, "tcgplayer_id": 118455, "cardmarket_id": 290220, "name": "Void", "lang": "en", "released_at": "2016-06-10", "uri": "https://api.scryfall.com/cards/c0b3e320-a85c-4d92-944e-0a5e78a066a5", "scryfall_uri": "https://scryfall.com/card/ema/211/void?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/c/0/c0b3e320-a85c-4d92-944e-0a5e78a066a5.jpg?1580015114", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/0/c0b3e320-a85c-4d92-944e-0a5e78a066a5.jpg?1580015114", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/c/0/c0b3e320-a85c-4d92-944e-0a5e78a066a5.jpg?1580015114", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/c/0/c0b3e320-a85c-4d92-944e-0a5e78a066a5.png?1580015114", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/0/c0b3e320-a85c-4d92-944e-0a5e78a066a5.jpg?1580015114", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/c/0/c0b3e320-a85c-4d92-944e-0a5e78a066a5.jpg?1580015114"}, "mana_cost": "{3}{B}{R}", "cmc": 5.0, "type_line": "Sorcery", "oracle_text": "Choose a number. Destroy all artifacts and creatures with mana value equal to that number. Then target player reveals their hand and discards all nonland cards with mana value equal to the number.", "colors": ["B", "R"], "color_identity": ["B", "R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "1f29f022-3ace-4c96-85e8-1f7b63aadf7e", "set": "ema", "set_name": "Eternal Masters", "set_type": "masters", "set_uri": "https://api.scryfall.com/sets/1f29f022-3ace-4c96-85e8-1f7b63aadf7e", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aema&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ema?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/c0b3e320-a85c-4d92-944e-0a5e78a066a5/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Afdb28fd3-70fb-43c3-b367-9cf0d2c46e06&unique=prints", "collector_number": "211", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Jakub Kasper", "artist_ids": ["36901417-ce61-4636-8b77-6db14a9cb68a"], "illustration_id": "1b60e4a9-dd2f-475d-b060-2dfd012bbc96", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 13003, "penny_rank": 2849, "prices": {"usd": "0.23", "usd_foil": "0.47", "usd_etched": null, "eur": "0.25", "eur_foil": "0.39", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=413753", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Void&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Void&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Void"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/118455?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Void&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/60961?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "62dc1df7-b9db-4f5f-a340-08287cd3d9e5", "oracle_id": "fdb28fd3-70fb-43c3-b367-9cf0d2c46e06", "multiverse_ids": [23200], "mtgo_id": 14845, "mtgo_foil_id": 14846, "tcgplayer_id": 7743, "cardmarket_id": 3735, "name": "Void", "lang": "en", "released_at": "2000-10-02", "uri": "https://api.scryfall.com/cards/62dc1df7-b9db-4f5f-a340-08287cd3d9e5", "scryfall_uri": "https://scryfall.com/card/inv/287/void?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/6/2/62dc1df7-b9db-4f5f-a340-08287cd3d9e5.jpg?1562915020", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/2/62dc1df7-b9db-4f5f-a340-08287cd3d9e5.jpg?1562915020", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/6/2/62dc1df7-b9db-4f5f-a340-08287cd3d9e5.jpg?1562915020", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/6/2/62dc1df7-b9db-4f5f-a340-08287cd3d9e5.png?1562915020", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/2/62dc1df7-b9db-4f5f-a340-08287cd3d9e5.jpg?1562915020", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/6/2/62dc1df7-b9db-4f5f-a340-08287cd3d9e5.jpg?1562915020"}, "mana_cost": "{3}{B}{R}", "cmc": 5.0, "type_line": "Sorcery", "oracle_text": "Choose a number. Destroy all artifacts and creatures with mana value equal to that number. Then target player reveals their hand and discards all nonland cards with mana value equal to the number.", "colors": ["B", "R"], "color_identity": ["B", "R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "b9ae5e02-7726-47ca-b5e4-5ec402b41cd1", "set": "inv", "set_name": "Invasion", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/b9ae5e02-7726-47ca-b5e4-5ec402b41cd1", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ainv&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/inv?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/62dc1df7-b9db-4f5f-a340-08287cd3d9e5/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Afdb28fd3-70fb-43c3-b367-9cf0d2c46e06&unique=prints", "collector_number": "287", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Kev Walker", "artist_ids": ["f366a0ee-a0cd-466d-ba6a-90058c7a31a6"], "illustration_id": "2cc5d5d5-bd87-44b5-896b-2d59f8d05f96", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 13003, "penny_rank": 2849, "prices": {"usd": "0.48", "usd_foil": "30.00", "usd_etched": null, "eur": "0.40", "eur_foil": "5.00", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=23200", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Void&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Void&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Void"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/7743?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Void&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/14845?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "a80582b1-09db-45f8-b362-0e5207a5a8e6", "oracle_id": "4c15889e-3172-413b-b805-a2b7ad05f636", "multiverse_ids": [136], "tcgplayer_id": 1300, "cardmarket_id": 5322, "name": "Volcanic Eruption", "lang": "en", "released_at": "1993-08-05", "uri": "https://api.scryfall.com/cards/a80582b1-09db-45f8-b362-0e5207a5a8e6", "scryfall_uri": "https://scryfall.com/card/lea/88/volcanic-eruption?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/a/8/a80582b1-09db-45f8-b362-0e5207a5a8e6.jpg?1559591541", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/8/a80582b1-09db-45f8-b362-0e5207a5a8e6.jpg?1559591541", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/a/8/a80582b1-09db-45f8-b362-0e5207a5a8e6.jpg?1559591541", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/a/8/a80582b1-09db-45f8-b362-0e5207a5a8e6.png?1559591541", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/8/a80582b1-09db-45f8-b362-0e5207a5a8e6.jpg?1559591541", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/a/8/a80582b1-09db-45f8-b362-0e5207a5a8e6.jpg?1559591541"}, "mana_cost": "{X}{U}{U}{U}", "cmc": 3.0, "type_line": "Sorcery", "oracle_text": "Destroy X target Mountains. Volcanic Eruption deals damage to each creature and each player equal to the number of Mountains put into a graveyard this way.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "legal", "premodern": "legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "288bd996-960e-448b-a187-9504c1930c2c", "set": "lea", "set_name": "Limited Edition Alpha", "set_type": "core", "set_uri": "https://api.scryfall.com/sets/288bd996-960e-448b-a187-9504c1930c2c", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Alea&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/lea?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/a80582b1-09db-45f8-b362-0e5207a5a8e6/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A4c15889e-3172-413b-b805-a2b7ad05f636&unique=prints", "collector_number": "88", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Douglas Shuler", "artist_ids": ["a9ddb513-51c7-455c-ab8f-5b90aae9f75b"], "illustration_id": "b29b65cc-6ad8-4464-a9e2-d0a8f99f4f0a", "border_color": "black", "frame": "1993", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 19242, "prices": {"usd": null, "usd_foil": null, "usd_etched": null, "eur": "1200.00", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=136", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Volcanic+Eruption&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Volcanic+Eruption&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Volcanic+Eruption"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/1300?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Volcanic+Eruption&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Volcanic+Eruption&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "65536d12-e75c-42b5-b592-a3ad4f550a71", "oracle_id": "bd6ce147-c991-40ac-b276-65b630fad8b6", "multiverse_ids": [180274], "mtgo_id": 31913, "mtgo_foil_id": 31914, "tcgplayer_id": 28629, "cardmarket_id": 20717, "name": "Volcanic Fallout", "lang": "en", "released_at": "2009-02-06", "uri": "https://api.scryfall.com/cards/65536d12-e75c-42b5-b592-a3ad4f550a71", "scryfall_uri": "https://scryfall.com/card/con/74/volcanic-fallout?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/6/5/65536d12-e75c-42b5-b592-a3ad4f550a71.jpg?1592485188", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/5/65536d12-e75c-42b5-b592-a3ad4f550a71.jpg?1592485188", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/6/5/65536d12-e75c-42b5-b592-a3ad4f550a71.jpg?1592485188", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/6/5/65536d12-e75c-42b5-b592-a3ad4f550a71.png?1592485188", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/5/65536d12-e75c-42b5-b592-a3ad4f550a71.jpg?1592485188", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/6/5/65536d12-e75c-42b5-b592-a3ad4f550a71.jpg?1592485188"}, "mana_cost": "{1}{R}{R}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "This spell can't be countered.\nVolcanic Fallout deals 2 damage to each creature and each player.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "76b2db58-904c-4e49-8580-9f62f7b3cca4", "set": "con", "set_name": "Conflux", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/76b2db58-904c-4e49-8580-9f62f7b3cca4", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Acon&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/con?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/65536d12-e75c-42b5-b592-a3ad4f550a71/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Abd6ce147-c991-40ac-b276-65b630fad8b6&unique=prints", "collector_number": "74", "digital": false, "rarity": "uncommon", "flavor_text": "\"How can we outrun the sky?\"\n\u2014Hadran, sunseeder of Naya", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Zoltan Boros & Gabor Szikszai", "artist_ids": ["1885e6cb-c827-4896-994e-3d0a027d602f", "44c3877f-8771-43dc-9e40-f4c765f59d2e"], "illustration_id": "adca87ed-ee51-460b-9ebc-346597307238", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 4704, "penny_rank": 3434, "prices": {"usd": "0.17", "usd_foil": "0.64", "usd_etched": null, "eur": "0.19", "eur_foil": "0.75", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=180274", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Volcanic+Fallout&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Volcanic+Fallout&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Volcanic+Fallout"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/28629?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Volcanic+Fallout&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/31913?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "8d3a69d2-518d-4b70-a03e-6d02a525f9ad", "oracle_id": "bd6ce147-c991-40ac-b276-65b630fad8b6", "multiverse_ids": [], "tcgplayer_id": 38343, "cardmarket_id": 22117, "name": "Volcanic Fallout", "lang": "en", "released_at": "2010-01-01", "uri": "https://api.scryfall.com/cards/8d3a69d2-518d-4b70-a03e-6d02a525f9ad", "scryfall_uri": "https://scryfall.com/card/p10/5/volcanic-fallout?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/8/d/8d3a69d2-518d-4b70-a03e-6d02a525f9ad.jpg?1561757550", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/d/8d3a69d2-518d-4b70-a03e-6d02a525f9ad.jpg?1561757550", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/8/d/8d3a69d2-518d-4b70-a03e-6d02a525f9ad.jpg?1561757550", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/8/d/8d3a69d2-518d-4b70-a03e-6d02a525f9ad.png?1561757550", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/d/8d3a69d2-518d-4b70-a03e-6d02a525f9ad.jpg?1561757550", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/8/d/8d3a69d2-518d-4b70-a03e-6d02a525f9ad.jpg?1561757550"}, "mana_cost": "{1}{R}{R}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "This spell can't be countered.\nVolcanic Fallout deals 2 damage to each creature and each player.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": true, "reprint": true, "variation": false, "set_id": "d871e33b-7086-4549-89d6-fedd4422161f", "set": "p10", "set_name": "Magic Player Rewards 2010", "set_type": "promo", "set_uri": "https://api.scryfall.com/sets/d871e33b-7086-4549-89d6-fedd4422161f", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ap10&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/p10?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/8d3a69d2-518d-4b70-a03e-6d02a525f9ad/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Abd6ce147-c991-40ac-b276-65b630fad8b6&unique=prints", "collector_number": "5", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Jim Pavelec", "artist_ids": ["1431bdd4-c187-40ea-847a-e1dcd835598a"], "illustration_id": "b66d7940-699e-4b3b-bab2-db833ceb8996", "border_color": "black", "frame": "2003", "full_art": true, "textless": true, "booster": false, "story_spotlight": false, "promo_types": ["playerrewards"], "edhrec_rank": 4704, "penny_rank": 3434, "prices": {"usd": "1.03", "usd_foil": null, "usd_etched": null, "eur": "0.75", "eur_foil": null, "tix": null}, "related_uris": {"tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Volcanic+Fallout&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Volcanic+Fallout&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Volcanic+Fallout"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/38343?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Volcanic+Fallout&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Volcanic+Fallout&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "97daab4b-d934-4a3f-a043-f7c9c1dd32bf", "oracle_id": "dcf3cd72-3c3d-4847-83be-105966b0cd6a", "multiverse_ids": [29768], "mtgo_id": 16713, "mtgo_foil_id": 16714, "tcgplayer_id": 9501, "cardmarket_id": 2638, "name": "Volcanic Spray", "lang": "en", "released_at": "2001-10-01", "uri": "https://api.scryfall.com/cards/97daab4b-d934-4a3f-a043-f7c9c1dd32bf", "scryfall_uri": "https://scryfall.com/card/ody/226/volcanic-spray?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/9/7/97daab4b-d934-4a3f-a043-f7c9c1dd32bf.jpg?1562923217", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/7/97daab4b-d934-4a3f-a043-f7c9c1dd32bf.jpg?1562923217", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/9/7/97daab4b-d934-4a3f-a043-f7c9c1dd32bf.jpg?1562923217", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/9/7/97daab4b-d934-4a3f-a043-f7c9c1dd32bf.png?1562923217", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/7/97daab4b-d934-4a3f-a043-f7c9c1dd32bf.jpg?1562923217", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/9/7/97daab4b-d934-4a3f-a043-f7c9c1dd32bf.jpg?1562923217"}, "mana_cost": "{1}{R}", "cmc": 2.0, "type_line": "Sorcery", "oracle_text": "Volcanic Spray deals 1 damage to each creature without flying and each player.\nFlashback {1}{R} (You may cast this card from your graveyard for its flashback cost. Then exile it.)", "colors": ["R"], "color_identity": ["R"], "keywords": ["Flashback"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "b0d90d2d-494a-4224-bfa0-36ce5ee281b1", "set": "ody", "set_name": "Odyssey", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/b0d90d2d-494a-4224-bfa0-36ce5ee281b1", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aody&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ody?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/97daab4b-d934-4a3f-a043-f7c9c1dd32bf/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Adcf3cd72-3c3d-4847-83be-105966b0cd6a&unique=prints", "collector_number": "226", "digital": false, "rarity": "uncommon", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Matt Cavotta", "artist_ids": ["2e6a0611-9411-4ba4-98e3-c0e18cbf9f83"], "illustration_id": "a2cd6d41-a4c3-48f8-907e-b04c2abf00c1", "border_color": "black", "frame": "1997", "frame_effects": ["tombstone"], "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 11884, "penny_rank": 3756, "prices": {"usd": "0.15", "usd_foil": "2.57", "usd_etched": null, "eur": "0.06", "eur_foil": "0.15", "tix": "0.06"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=29768", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Volcanic+Spray&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Volcanic+Spray&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Volcanic+Spray"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/9501?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Volcanic+Spray&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/16713?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "eb586da6-670d-4c50-9d9b-f320f1c288d7", "oracle_id": "ec2968fb-163d-4907-862b-b84a1f167833", "multiverse_ids": [497728], "mtgo_id": 85198, "tcgplayer_id": 227199, "cardmarket_id": 514115, "name": "Volcanic Torrent", "lang": "en", "released_at": "2020-11-20", "uri": "https://api.scryfall.com/cards/eb586da6-670d-4c50-9d9b-f320f1c288d7", "scryfall_uri": "https://scryfall.com/card/cmr/208/volcanic-torrent?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/e/b/eb586da6-670d-4c50-9d9b-f320f1c288d7.jpg?1608910472", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/b/eb586da6-670d-4c50-9d9b-f320f1c288d7.jpg?1608910472", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/e/b/eb586da6-670d-4c50-9d9b-f320f1c288d7.jpg?1608910472", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/e/b/eb586da6-670d-4c50-9d9b-f320f1c288d7.png?1608910472", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/b/eb586da6-670d-4c50-9d9b-f320f1c288d7.jpg?1608910472", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/e/b/eb586da6-670d-4c50-9d9b-f320f1c288d7.jpg?1608910472"}, "mana_cost": "{4}{R}", "cmc": 5.0, "type_line": "Sorcery", "oracle_text": "Cascade (When you cast this spell, exile cards from the top of your library until you exile a nonland card that costs less. You may cast it without paying its mana cost. Put the exiled cards on the bottom of your library in a random order.)\nVolcanic Torrent deals X damage to each creature and planeswalker your opponents control, where X is the number of spells you've cast this turn.", "colors": ["R"], "color_identity": ["R"], "keywords": ["Cascade"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "39de6fbf-1f11-48d0-8f04-f0407f6a0732", "set": "cmr", "set_name": "Commander Legends", "set_type": "draft_innovation", "set_uri": "https://api.scryfall.com/sets/39de6fbf-1f11-48d0-8f04-f0407f6a0732", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Acmr&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/cmr?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/eb586da6-670d-4c50-9d9b-f320f1c288d7/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aec2968fb-163d-4907-862b-b84a1f167833&unique=prints", "collector_number": "208", "digital": false, "rarity": "uncommon", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Grzegorz Rutkowski", "artist_ids": ["b5f49d0d-8056-48e3-b614-090e656b4f9c"], "illustration_id": "6fa4c7e7-68d1-4944-9763-2525f43d9d57", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 3709, "prices": {"usd": "0.15", "usd_foil": "0.35", "usd_etched": null, "eur": "0.11", "eur_foil": "0.15", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=497728", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Volcanic+Torrent&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Volcanic+Torrent&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Volcanic+Torrent"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/227199?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Volcanic+Torrent&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/85198?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "f973e1a6-c6f9-47f5-9bf0-b7fa06959bd4", "oracle_id": "fe3b4c74-2bf8-464a-8f55-9de401a8c4b9", "multiverse_ids": [519217], "mtgo_id": 89465, "tcgplayer_id": 236195, "cardmarket_id": 558793, "name": "Volcanic Vision", "lang": "en", "released_at": "2021-04-23", "uri": "https://api.scryfall.com/cards/f973e1a6-c6f9-47f5-9bf0-b7fa06959bd4", "scryfall_uri": "https://scryfall.com/card/c21/182/volcanic-vision?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/f/9/f973e1a6-c6f9-47f5-9bf0-b7fa06959bd4.jpg?1625194143", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/9/f973e1a6-c6f9-47f5-9bf0-b7fa06959bd4.jpg?1625194143", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/f/9/f973e1a6-c6f9-47f5-9bf0-b7fa06959bd4.jpg?1625194143", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/f/9/f973e1a6-c6f9-47f5-9bf0-b7fa06959bd4.png?1625194143", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/9/f973e1a6-c6f9-47f5-9bf0-b7fa06959bd4.jpg?1625194143", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/f/9/f973e1a6-c6f9-47f5-9bf0-b7fa06959bd4.jpg?1625194143"}, "mana_cost": "{5}{R}{R}", "cmc": 7.0, "type_line": "Sorcery", "oracle_text": "Return target instant or sorcery card from your graveyard to your hand. Volcanic Vision deals damage equal to that card's mana value to each creature your opponents control. Exile Volcanic Vision.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "27bf6dbd-a9e1-4904-afa7-d28fc7745c4f", "set": "c21", "set_name": "Commander 2021", "set_type": "commander", "set_uri": "https://api.scryfall.com/sets/27bf6dbd-a9e1-4904-afa7-d28fc7745c4f", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ac21&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/c21?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/f973e1a6-c6f9-47f5-9bf0-b7fa06959bd4/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Afe3b4c74-2bf8-464a-8f55-9de401a8c4b9&unique=prints", "collector_number": "182", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Liiga Smilshkalne", "artist_ids": ["5a50ced2-b301-4195-8af4-f7e1bae07d28"], "illustration_id": "1ef829fe-4b69-429e-a01b-36d79faa497d", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "edhrec_rank": 2526, "penny_rank": 9002, "prices": {"usd": "0.20", "usd_foil": null, "usd_etched": null, "eur": "0.19", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=519217", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Volcanic+Vision&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Volcanic+Vision&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Volcanic+Vision"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/236195?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Volcanic+Vision&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/89465?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "979da13b-9be6-49cc-a62c-67eeea289612", "oracle_id": "fe3b4c74-2bf8-464a-8f55-9de401a8c4b9", "multiverse_ids": [394742], "mtgo_id": 56374, "mtgo_foil_id": 56375, "tcgplayer_id": 96721, "cardmarket_id": 273381, "name": "Volcanic Vision", "lang": "en", "released_at": "2015-03-27", "uri": "https://api.scryfall.com/cards/979da13b-9be6-49cc-a62c-67eeea289612", "scryfall_uri": "https://scryfall.com/card/dtk/167/volcanic-vision?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/9/7/979da13b-9be6-49cc-a62c-67eeea289612.jpg?1562790292", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/7/979da13b-9be6-49cc-a62c-67eeea289612.jpg?1562790292", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/9/7/979da13b-9be6-49cc-a62c-67eeea289612.jpg?1562790292", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/9/7/979da13b-9be6-49cc-a62c-67eeea289612.png?1562790292", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/7/979da13b-9be6-49cc-a62c-67eeea289612.jpg?1562790292", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/9/7/979da13b-9be6-49cc-a62c-67eeea289612.jpg?1562790292"}, "mana_cost": "{5}{R}{R}", "cmc": 7.0, "type_line": "Sorcery", "oracle_text": "Return target instant or sorcery card from your graveyard to your hand. Volcanic Vision deals damage equal to that card's mana value to each creature your opponents control. Exile Volcanic Vision.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "7e72625f-f320-4552-a719-d11e2f1853bd", "set": "dtk", "set_name": "Dragons of Tarkir", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/7e72625f-f320-4552-a719-d11e2f1853bd", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Adtk&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/dtk?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/979da13b-9be6-49cc-a62c-67eeea289612/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Afe3b4c74-2bf8-464a-8f55-9de401a8c4b9&unique=prints", "collector_number": "167", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Noah Bradley", "artist_ids": ["81995d11-da98-4f8b-89bd-b88ca2ddb06b"], "illustration_id": "967e8b0b-ba79-45fc-8a57-3f8434cb3dd2", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 2526, "penny_rank": 9002, "prices": {"usd": "0.23", "usd_foil": "1.48", "usd_etched": null, "eur": "0.10", "eur_foil": "0.87", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=394742", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Volcanic+Vision&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Volcanic+Vision&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Volcanic+Vision"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/96721?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Volcanic+Vision&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/56374?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "a8c32faa-c6d1-418a-aed6-ccc5849daa1f", "oracle_id": "dcf503b5-c7ef-49e5-87ed-3b8758197446", "multiverse_ids": [48105], "mtgo_id": 19865, "mtgo_foil_id": 19866, "tcgplayer_id": 11402, "cardmarket_id": 81, "name": "Wail of the Nim", "lang": "en", "released_at": "2003-10-02", "uri": "https://api.scryfall.com/cards/a8c32faa-c6d1-418a-aed6-ccc5849daa1f", "scryfall_uri": "https://scryfall.com/card/mrd/81/wail-of-the-nim?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/a/8/a8c32faa-c6d1-418a-aed6-ccc5849daa1f.jpg?1562153645", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/8/a8c32faa-c6d1-418a-aed6-ccc5849daa1f.jpg?1562153645", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/a/8/a8c32faa-c6d1-418a-aed6-ccc5849daa1f.jpg?1562153645", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/a/8/a8c32faa-c6d1-418a-aed6-ccc5849daa1f.png?1562153645", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/8/a8c32faa-c6d1-418a-aed6-ccc5849daa1f.jpg?1562153645", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/a/8/a8c32faa-c6d1-418a-aed6-ccc5849daa1f.jpg?1562153645"}, "mana_cost": "{2}{B}", "cmc": 3.0, "type_line": "Instant", "oracle_text": "Choose one \u2014\n\u2022 Regenerate each creature you control.\n\u2022 Wail of the Nim deals 1 damage to each creature and each player.\nEntwine {B} (Choose both if you pay the entwine cost.)", "colors": ["B"], "color_identity": ["B"], "keywords": ["Entwine"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "1d4f90ba-8d4a-4ee5-bc2f-e2d6bffe4955", "set": "mrd", "set_name": "Mirrodin", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/1d4f90ba-8d4a-4ee5-bc2f-e2d6bffe4955", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Amrd&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/mrd?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/a8c32faa-c6d1-418a-aed6-ccc5849daa1f/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Adcf503b5-c7ef-49e5-87ed-3b8758197446&unique=prints", "collector_number": "81", "digital": false, "rarity": "common", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "John Matson", "artist_ids": ["a1685587-4b55-446b-b420-c37b202ed3f1"], "illustration_id": "38ba84aa-2c1b-4ecc-bd94-cd9d873fee37", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 10964, "prices": {"usd": "0.14", "usd_foil": "0.67", "usd_etched": null, "eur": "0.05", "eur_foil": "0.03", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=48105", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Wail+of+the+Nim&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Wail+of+the+Nim&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Wail+of+the+Nim"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/11402?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Wail+of+the+Nim&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/19865?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "27d6655d-f55c-4bfc-a9c6-10232ebc707b", "oracle_id": "24f7143c-d43a-4120-baa0-0235b15d8186", "multiverse_ids": [420696], "tcgplayer_id": 124681, "cardmarket_id": 293578, "name": "Wave of Reckoning", "lang": "en", "released_at": "2016-11-11", "uri": "https://api.scryfall.com/cards/27d6655d-f55c-4bfc-a9c6-10232ebc707b", "scryfall_uri": "https://scryfall.com/card/c16/79/wave-of-reckoning?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/2/7/27d6655d-f55c-4bfc-a9c6-10232ebc707b.jpg?1562392689", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/7/27d6655d-f55c-4bfc-a9c6-10232ebc707b.jpg?1562392689", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/2/7/27d6655d-f55c-4bfc-a9c6-10232ebc707b.jpg?1562392689", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/2/7/27d6655d-f55c-4bfc-a9c6-10232ebc707b.png?1562392689", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/7/27d6655d-f55c-4bfc-a9c6-10232ebc707b.jpg?1562392689", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/2/7/27d6655d-f55c-4bfc-a9c6-10232ebc707b.jpg?1562392689"}, "mana_cost": "{4}{W}", "cmc": 5.0, "type_line": "Sorcery", "oracle_text": "Each creature deals damage to itself equal to its power.", "colors": ["W"], "color_identity": ["W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "3e0d713a-b5cb-4287-81b9-a57d4dcaf415", "set": "c16", "set_name": "Commander 2016", "set_type": "commander", "set_uri": "https://api.scryfall.com/sets/3e0d713a-b5cb-4287-81b9-a57d4dcaf415", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ac16&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/c16?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/27d6655d-f55c-4bfc-a9c6-10232ebc707b/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A24f7143c-d43a-4120-baa0-0235b15d8186&unique=prints", "collector_number": "79", "digital": false, "rarity": "rare", "flavor_text": "We shall suffer turmoil equal to that which we have wrought, whether in this life or the next.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Josh Hass", "artist_ids": ["8fa1fdf0-96d6-46f4-a7ff-b1c0257c3735"], "illustration_id": "479fc474-77a6-4f59-9d89-b35e3b99e7cb", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "edhrec_rank": 4586, "prices": {"usd": "4.60", "usd_foil": null, "usd_etched": null, "eur": "2.49", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=420696", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Wave+of+Reckoning&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Wave+of+Reckoning&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Wave+of+Reckoning"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/124681?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Wave+of+Reckoning&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Wave+of+Reckoning&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "0b101b5e-d478-4686-b3cf-bdc545f089e5", "oracle_id": "24f7143c-d43a-4120-baa0-0235b15d8186", "multiverse_ids": [19659], "mtgo_id": 13667, "mtgo_foil_id": 13668, "tcgplayer_id": 6766, "cardmarket_id": 11429, "name": "Wave of Reckoning", "lang": "en", "released_at": "1999-10-04", "uri": "https://api.scryfall.com/cards/0b101b5e-d478-4686-b3cf-bdc545f089e5", "scryfall_uri": "https://scryfall.com/card/mmq/56/wave-of-reckoning?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/0/b/0b101b5e-d478-4686-b3cf-bdc545f089e5.jpg?1562378964", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/b/0b101b5e-d478-4686-b3cf-bdc545f089e5.jpg?1562378964", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/0/b/0b101b5e-d478-4686-b3cf-bdc545f089e5.jpg?1562378964", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/0/b/0b101b5e-d478-4686-b3cf-bdc545f089e5.png?1562378964", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/b/0b101b5e-d478-4686-b3cf-bdc545f089e5.jpg?1562378964", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/0/b/0b101b5e-d478-4686-b3cf-bdc545f089e5.jpg?1562378964"}, "mana_cost": "{4}{W}", "cmc": 5.0, "type_line": "Sorcery", "oracle_text": "Each creature deals damage to itself equal to its power.", "colors": ["W"], "color_identity": ["W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "385e11a4-492b-4d07-b4a6-a1409ef829b8", "set": "mmq", "set_name": "Mercadian Masques", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/385e11a4-492b-4d07-b4a6-a1409ef829b8", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ammq&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/mmq?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/0b101b5e-d478-4686-b3cf-bdc545f089e5/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A24f7143c-d43a-4120-baa0-0235b15d8186&unique=prints", "collector_number": "56", "digital": false, "rarity": "rare", "flavor_text": "Inner conflict can defeat a soldier more quickly than any army.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Bradley Williams", "artist_ids": ["24d81dfa-3745-4386-93f8-7e67dddb3c8a"], "illustration_id": "13b0062d-005e-46ca-91b7-5eaf69a3e198", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 4586, "prices": {"usd": "6.30", "usd_foil": "42.79", "usd_etched": null, "eur": "3.18", "eur_foil": "14.00", "tix": "4.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=19659", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Wave+of+Reckoning&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Wave+of+Reckoning&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Wave+of+Reckoning"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/6766?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Wave+of+Reckoning&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/13667?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "fcabd4c7-093f-4ef6-8b89-b08565c48e3c", "oracle_id": "e510eaaf-6497-480f-baa8-f4796b5f1086", "multiverse_ids": [378429], "mtgo_id": 51797, "mtgo_foil_id": 51798, "tcgplayer_id": 78966, "cardmarket_id": 265849, "name": "Whelming Wave", "lang": "en", "released_at": "2014-02-07", "uri": "https://api.scryfall.com/cards/fcabd4c7-093f-4ef6-8b89-b08565c48e3c", "scryfall_uri": "https://scryfall.com/card/bng/57/whelming-wave?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/f/c/fcabd4c7-093f-4ef6-8b89-b08565c48e3c.jpg?1593091836", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/c/fcabd4c7-093f-4ef6-8b89-b08565c48e3c.jpg?1593091836", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/f/c/fcabd4c7-093f-4ef6-8b89-b08565c48e3c.jpg?1593091836", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/f/c/fcabd4c7-093f-4ef6-8b89-b08565c48e3c.png?1593091836", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/c/fcabd4c7-093f-4ef6-8b89-b08565c48e3c.jpg?1593091836", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/f/c/fcabd4c7-093f-4ef6-8b89-b08565c48e3c.jpg?1593091836"}, "mana_cost": "{2}{U}{U}", "cmc": 4.0, "type_line": "Sorcery", "oracle_text": "Return all creatures to their owners' hands except for Krakens, Leviathans, Octopuses, and Serpents.", "colors": ["U"], "color_identity": ["U"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "50a80fe4-a757-408f-ad23-52c5cc5f45cc", "set": "bng", "set_name": "Born of the Gods", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/50a80fe4-a757-408f-ad23-52c5cc5f45cc", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Abng&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/bng?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/fcabd4c7-093f-4ef6-8b89-b08565c48e3c/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ae510eaaf-6497-480f-baa8-f4796b5f1086&unique=prints", "collector_number": "57", "digital": false, "rarity": "rare", "flavor_text": "\"I can see why this appeals to Thassa.\"\n\u2014Kiora", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Slawomir Maniak", "artist_ids": ["d887bc66-2779-416c-a1ff-d8720242063e"], "illustration_id": "d1388f0b-03ed-4760-9df8-0387a87ca4ee", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 1168, "penny_rank": 2669, "prices": {"usd": "0.27", "usd_foil": "5.31", "usd_etched": null, "eur": "0.19", "eur_foil": "0.49", "tix": "0.01"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=378429", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Whelming+Wave&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Whelming+Wave&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Whelming+Wave"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/78966?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Whelming+Wave&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/51797?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "5a7e6c10-d066-4967-932f-5b6c8d74568b", "oracle_id": "a6b599db-8d45-4a11-9765-ae7eb235b4b2", "multiverse_ids": [194383], "mtgo_id": 39694, "mtgo_foil_id": 39695, "tcgplayer_id": 39608, "cardmarket_id": 245928, "name": "Whipflare", "lang": "en", "released_at": "2011-05-13", "uri": "https://api.scryfall.com/cards/5a7e6c10-d066-4967-932f-5b6c8d74568b", "scryfall_uri": "https://scryfall.com/card/nph/102/whipflare?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/5/a/5a7e6c10-d066-4967-932f-5b6c8d74568b.jpg?1562877860", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/a/5a7e6c10-d066-4967-932f-5b6c8d74568b.jpg?1562877860", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/5/a/5a7e6c10-d066-4967-932f-5b6c8d74568b.jpg?1562877860", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/5/a/5a7e6c10-d066-4967-932f-5b6c8d74568b.png?1562877860", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/a/5a7e6c10-d066-4967-932f-5b6c8d74568b.jpg?1562877860", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/5/a/5a7e6c10-d066-4967-932f-5b6c8d74568b.jpg?1562877860"}, "mana_cost": "{1}{R}", "cmc": 2.0, "type_line": "Sorcery", "oracle_text": "Whipflare deals 2 damage to each nonartifact creature.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "e8e356d8-6d01-4dab-aa07-d0999dc9359f", "set": "nph", "set_name": "New Phyrexia", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/e8e356d8-6d01-4dab-aa07-d0999dc9359f", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Anph&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/nph?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/5a7e6c10-d066-4967-932f-5b6c8d74568b/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aa6b599db-8d45-4a11-9765-ae7eb235b4b2&unique=prints", "collector_number": "102", "digital": false, "rarity": "uncommon", "watermark": "mirran", "flavor_text": "The slag-workers wasted no time in creating their own flare pulses to cleanse the area of the *incompleat*.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Johann Bodin", "artist_ids": ["d92e2dd9-9ef6-43f6-81f8-df87f9066983"], "illustration_id": "68d1e8a6-6b0c-46e7-9a57-6aeefc458425", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 10068, "penny_rank": 6118, "prices": {"usd": "0.15", "usd_foil": "1.92", "usd_etched": null, "eur": "0.19", "eur_foil": "1.48", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=194383", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Whipflare&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Whipflare&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Whipflare"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/39608?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Whipflare&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/39694?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "8101bab4-ef93-451a-a24f-e1456c82837c", "oracle_id": "d3946df7-cb24-47c0-a8b0-1bdf95d99926", "multiverse_ids": [8849], "mtgo_id": 12311, "mtgo_foil_id": 12312, "tcgplayer_id": 7107, "cardmarket_id": 10490, "name": "Whirlwind", "lang": "en", "released_at": "1998-10-12", "uri": "https://api.scryfall.com/cards/8101bab4-ef93-451a-a24f-e1456c82837c", "scryfall_uri": "https://scryfall.com/card/usg/283/whirlwind?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/8/1/8101bab4-ef93-451a-a24f-e1456c82837c.jpg?1562922208", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/1/8101bab4-ef93-451a-a24f-e1456c82837c.jpg?1562922208", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/8/1/8101bab4-ef93-451a-a24f-e1456c82837c.jpg?1562922208", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/8/1/8101bab4-ef93-451a-a24f-e1456c82837c.png?1562922208", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/1/8101bab4-ef93-451a-a24f-e1456c82837c.jpg?1562922208", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/8/1/8101bab4-ef93-451a-a24f-e1456c82837c.jpg?1562922208"}, "mana_cost": "{2}{G}{G}", "cmc": 4.0, "type_line": "Sorcery", "oracle_text": "Destroy all creatures with flying.", "colors": ["G"], "color_identity": ["G"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "c330df40-51db-4caf-bde6-48df6c181001", "set": "usg", "set_name": "Urza's Saga", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/c330df40-51db-4caf-bde6-48df6c181001", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ausg&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/usg?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/8101bab4-ef93-451a-a24f-e1456c82837c/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Ad3946df7-cb24-47c0-a8b0-1bdf95d99926&unique=prints", "collector_number": "283", "digital": false, "rarity": "rare", "flavor_text": "Urza tried to rule the air, but Gaea taught him that she controlled all the elements.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "John Matson", "artist_ids": ["a1685587-4b55-446b-b420-c37b202ed3f1"], "illustration_id": "3c0f2d4b-86c2-45e9-9054-88feae518035", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 8981, "prices": {"usd": "0.67", "usd_foil": null, "usd_etched": null, "eur": "0.45", "eur_foil": null, "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=8849", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Whirlwind&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Whirlwind&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Whirlwind"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/7107?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Whirlwind&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/12311?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "97715d22-f432-4f67-b4ea-47b8fe6edca5", "oracle_id": "3a06f4c1-2af1-495f-914f-1ac4e26f87d4", "multiverse_ids": [461153], "mtgo_id": 72058, "arena_id": 69677, "tcgplayer_id": 187118, "cardmarket_id": 371801, "name": "Widespread Brutality", "lang": "en", "released_at": "2019-05-03", "uri": "https://api.scryfall.com/cards/97715d22-f432-4f67-b4ea-47b8fe6edca5", "scryfall_uri": "https://scryfall.com/card/war/226/widespread-brutality?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/9/7/97715d22-f432-4f67-b4ea-47b8fe6edca5.jpg?1557577331", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/7/97715d22-f432-4f67-b4ea-47b8fe6edca5.jpg?1557577331", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/9/7/97715d22-f432-4f67-b4ea-47b8fe6edca5.jpg?1557577331", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/9/7/97715d22-f432-4f67-b4ea-47b8fe6edca5.png?1557577331", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/7/97715d22-f432-4f67-b4ea-47b8fe6edca5.jpg?1557577331", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/9/7/97715d22-f432-4f67-b4ea-47b8fe6edca5.jpg?1557577331"}, "mana_cost": "{1}{B}{R}{R}", "cmc": 4.0, "type_line": "Sorcery", "oracle_text": "Amass 2, then the Army you amassed deals damage equal to its power to each non-Army creature. (To amass 2, put two +1/+1 counters on an Army you control. If you don't control one, create a 0/0 black Zombie Army creature token first.)", "colors": ["B", "R"], "color_identity": ["B", "R"], "keywords": ["Amass"], "all_parts": [{"object": "related_card", "id": "97715d22-f432-4f67-b4ea-47b8fe6edca5", "component": "combo_piece", "name": "Widespread Brutality", "type_line": "Sorcery", "uri": "https://api.scryfall.com/cards/97715d22-f432-4f67-b4ea-47b8fe6edca5"}, {"object": "related_card", "id": "2f4b7c63-8430-4ca4-baee-dc958d5bd22f", "component": "token", "name": "Zombie Army", "type_line": "Token Creature \u2014 Zombie Army", "uri": "https://api.scryfall.com/cards/2f4b7c63-8430-4ca4-baee-dc958d5bd22f"}], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "ee044f0b-e101-4ead-8d0e-aa510aad4277", "set": "war", "set_name": "War of the Spark", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/ee044f0b-e101-4ead-8d0e-aa510aad4277", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Awar&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/war?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/97715d22-f432-4f67-b4ea-47b8fe6edca5/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A3a06f4c1-2af1-495f-914f-1ac4e26f87d4&unique=prints", "collector_number": "226", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Victor Adame Minguez", "artist_ids": ["bd8f7368-5b10-4554-b6b8-d052c6aca89f"], "illustration_id": "fa40daaf-d0fc-4f29-8246-895a58372440", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 10257, "penny_rank": 9105, "preview": {"source": "Wizards of the Coast", "source_uri": "https://www.twitch.tv/videos/404095372", "previewed_at": "2019-03-31"}, "prices": {"usd": "0.09", "usd_foil": "0.24", "usd_etched": null, "eur": "0.12", "eur_foil": "0.17", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=461153", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Widespread+Brutality&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Widespread+Brutality&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Widespread+Brutality"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/187118?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Widespread+Brutality&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/72058?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "826fd527-9356-4eec-8542-781116f23eb7", "oracle_id": "0da68ca2-07fd-4359-95a9-fb2f815e6ed0", "multiverse_ids": [25685], "mtgo_id": 15980, "mtgo_foil_id": 15981, "tcgplayer_id": 3149, "cardmarket_id": 2990, "name": "Wildfire", "lang": "en", "released_at": "2001-04-11", "uri": "https://api.scryfall.com/cards/826fd527-9356-4eec-8542-781116f23eb7", "scryfall_uri": "https://scryfall.com/card/7ed/228/wildfire?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/8/2/826fd527-9356-4eec-8542-781116f23eb7.jpg?1562241689", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/2/826fd527-9356-4eec-8542-781116f23eb7.jpg?1562241689", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/8/2/826fd527-9356-4eec-8542-781116f23eb7.jpg?1562241689", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/8/2/826fd527-9356-4eec-8542-781116f23eb7.png?1562241689", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/2/826fd527-9356-4eec-8542-781116f23eb7.jpg?1562241689", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/8/2/826fd527-9356-4eec-8542-781116f23eb7.jpg?1562241689"}, "mana_cost": "{4}{R}{R}", "cmc": 6.0, "type_line": "Sorcery", "oracle_text": "Each player sacrifices four lands. Wildfire deals 4 damage to each creature.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "230f38aa-9511-4db8-a3aa-aeddbc3f7bb9", "set": "7ed", "set_name": "Seventh Edition", "set_type": "core", "set_uri": "https://api.scryfall.com/sets/230f38aa-9511-4db8-a3aa-aeddbc3f7bb9", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3A7ed&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/7ed?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/826fd527-9356-4eec-8542-781116f23eb7/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A0da68ca2-07fd-4359-95a9-fb2f815e6ed0&unique=prints", "collector_number": "228", "digital": false, "rarity": "rare", "flavor_text": "Fire is always at the top of the food chain, and it has a *big* appetite.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Ron Spencer", "artist_ids": ["dab52c11-0564-4207-a4a1-c1735c946a65"], "illustration_id": "7e070120-1a50-46e6-9143-c0879fe9cae6", "border_color": "white", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 6517, "penny_rank": 708, "prices": {"usd": "0.43", "usd_foil": "145.00", "usd_etched": null, "eur": "0.25", "eur_foil": "125.00", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=25685", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Wildfire&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Wildfire&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Wildfire"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/3149?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Wildfire&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/15980?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "72d50972-4549-40cd-9c33-4b341333803f", "oracle_id": "0da68ca2-07fd-4359-95a9-fb2f815e6ed0", "multiverse_ids": [5566], "mtgo_id": 12115, "mtgo_foil_id": 12116, "tcgplayer_id": 7109, "cardmarket_id": 10435, "name": "Wildfire", "lang": "en", "released_at": "1998-10-12", "uri": "https://api.scryfall.com/cards/72d50972-4549-40cd-9c33-4b341333803f", "scryfall_uri": "https://scryfall.com/card/usg/228/wildfire?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/7/2/72d50972-4549-40cd-9c33-4b341333803f.jpg?1562919111", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/2/72d50972-4549-40cd-9c33-4b341333803f.jpg?1562919111", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/7/2/72d50972-4549-40cd-9c33-4b341333803f.jpg?1562919111", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/7/2/72d50972-4549-40cd-9c33-4b341333803f.png?1562919111", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/2/72d50972-4549-40cd-9c33-4b341333803f.jpg?1562919111", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/7/2/72d50972-4549-40cd-9c33-4b341333803f.jpg?1562919111"}, "mana_cost": "{4}{R}{R}", "cmc": 6.0, "type_line": "Sorcery", "oracle_text": "Each player sacrifices four lands. Wildfire deals 4 damage to each creature.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "c330df40-51db-4caf-bde6-48df6c181001", "set": "usg", "set_name": "Urza's Saga", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/c330df40-51db-4caf-bde6-48df6c181001", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ausg&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/usg?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/72d50972-4549-40cd-9c33-4b341333803f/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A0da68ca2-07fd-4359-95a9-fb2f815e6ed0&unique=prints", "collector_number": "228", "digital": false, "rarity": "rare", "flavor_text": "\"Shiv hatched from a shell of stone around a yolk of flame.\"\n\u2014Viashino myth", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Carl Critchlow", "artist_ids": ["17948f16-611a-44b8-8d10-9895a0bdfff1"], "illustration_id": "d1f393c2-d208-48bc-a795-3582efc23905", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 6517, "penny_rank": 708, "prices": {"usd": "0.88", "usd_foil": null, "usd_etched": null, "eur": "1.02", "eur_foil": null, "tix": "0.07"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=5566", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Wildfire&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Wildfire&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Wildfire"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/7109?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Wildfire&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/12115?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "b69cfcb0-db68-4494-a3e1-7c2ca279fcf5", "oracle_id": "0da68ca2-07fd-4359-95a9-fb2f815e6ed0", "multiverse_ids": [6610], "tcgplayer_id": 249, "cardmarket_id": 9940, "name": "Wildfire", "lang": "en", "released_at": "1998-06-24", "uri": "https://api.scryfall.com/cards/b69cfcb0-db68-4494-a3e1-7c2ca279fcf5", "scryfall_uri": "https://scryfall.com/card/p02/120/wildfire?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/b/6/b69cfcb0-db68-4494-a3e1-7c2ca279fcf5.jpg?1562938018", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/6/b69cfcb0-db68-4494-a3e1-7c2ca279fcf5.jpg?1562938018", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/b/6/b69cfcb0-db68-4494-a3e1-7c2ca279fcf5.jpg?1562938018", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/b/6/b69cfcb0-db68-4494-a3e1-7c2ca279fcf5.png?1562938018", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/6/b69cfcb0-db68-4494-a3e1-7c2ca279fcf5.jpg?1562938018", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/b/6/b69cfcb0-db68-4494-a3e1-7c2ca279fcf5.jpg?1562938018"}, "mana_cost": "{4}{R}{R}", "cmc": 6.0, "type_line": "Sorcery", "oracle_text": "Each player sacrifices four lands. Wildfire deals 4 damage to each creature.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "ac67f18a-4f0e-407e-bab1-a9fe4f659565", "set": "p02", "set_name": "Portal Second Age", "set_type": "starter", "set_uri": "https://api.scryfall.com/sets/ac67f18a-4f0e-407e-bab1-a9fe4f659565", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ap02&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/p02?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/b69cfcb0-db68-4494-a3e1-7c2ca279fcf5/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A0da68ca2-07fd-4359-95a9-fb2f815e6ed0&unique=prints", "collector_number": "120", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Rob Alexander", "artist_ids": ["35906871-6c78-4ab2-9ed1-e6792c8efb74"], "illustration_id": "cc5f3d10-bc15-445c-84f6-073e4ecf261e", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 6517, "penny_rank": 708, "prices": {"usd": "2.80", "usd_foil": null, "usd_etched": null, "eur": "0.92", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=6610", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Wildfire&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Wildfire&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Wildfire"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/249?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Wildfire&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Wildfire&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "3bb17913-fe4d-4acd-9b75-71f5a90f898b", "oracle_id": "499a4715-6776-461b-bee4-22ed172d455e", "multiverse_ids": [463986], "mtgo_id": 72446, "tcgplayer_id": 190986, "cardmarket_id": 374715, "name": "Winds of Abandon", "lang": "en", "released_at": "2019-06-14", "uri": "https://api.scryfall.com/cards/3bb17913-fe4d-4acd-9b75-71f5a90f898b", "scryfall_uri": "https://scryfall.com/card/mh1/37/winds-of-abandon?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/3/b/3bb17913-fe4d-4acd-9b75-71f5a90f898b.jpg?1562201278", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/b/3bb17913-fe4d-4acd-9b75-71f5a90f898b.jpg?1562201278", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/3/b/3bb17913-fe4d-4acd-9b75-71f5a90f898b.jpg?1562201278", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/3/b/3bb17913-fe4d-4acd-9b75-71f5a90f898b.png?1562201278", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/b/3bb17913-fe4d-4acd-9b75-71f5a90f898b.jpg?1562201278", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/3/b/3bb17913-fe4d-4acd-9b75-71f5a90f898b.jpg?1562201278"}, "mana_cost": "{1}{W}", "cmc": 2.0, "type_line": "Sorcery", "oracle_text": "Exile target creature you don't control. For each creature exiled this way, its controller searches their library for a basic land card. Those players put those cards onto the battlefield tapped, then shuffle.\nOverload {4}{W}{W} (You may cast this spell for its overload cost. If you do, change its text by replacing all instances of \"target\" with \"each.\")", "colors": ["W"], "color_identity": ["W"], "keywords": ["Overload"], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "d7efccd6-55bc-4fb8-9138-e72577510a99", "set": "mh1", "set_name": "Modern Horizons", "set_type": "draft_innovation", "set_uri": "https://api.scryfall.com/sets/d7efccd6-55bc-4fb8-9138-e72577510a99", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Amh1&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/mh1?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/3bb17913-fe4d-4acd-9b75-71f5a90f898b/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A499a4715-6776-461b-bee4-22ed172d455e&unique=prints", "collector_number": "37", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Noah Bradley", "artist_ids": ["81995d11-da98-4f8b-89bd-b88ca2ddb06b"], "illustration_id": "6016e8a9-2056-4448-b02b-938987f626c8", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 970, "penny_rank": 294, "preview": {"source": "Grzegorz Kowalski", "source_uri": "https://twitter.com/urlichmtg/status/1131850264045072384", "previewed_at": "2019-05-24"}, "prices": {"usd": "1.86", "usd_foil": "10.36", "usd_etched": null, "eur": "2.27", "eur_foil": "8.99", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=463986", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Winds+of+Abandon&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Winds+of+Abandon&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Winds+of+Abandon"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/190986?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Winds+of+Abandon&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/72446?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "a6d731b2-0113-4fd5-8b78-1aa1064bb4f5", "oracle_id": "a6fd90dc-0ec3-4dce-a77a-4d04f5e254bf", "multiverse_ids": [4910], "mtgo_id": 9933, "mtgo_foil_id": 9934, "tcgplayer_id": 5796, "cardmarket_id": 8999, "name": "Winds of Rath", "lang": "en", "released_at": "1997-10-14", "uri": "https://api.scryfall.com/cards/a6d731b2-0113-4fd5-8b78-1aa1064bb4f5", "scryfall_uri": "https://scryfall.com/card/tmp/52/winds-of-rath?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/a/6/a6d731b2-0113-4fd5-8b78-1aa1064bb4f5.jpg?1562055907", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/6/a6d731b2-0113-4fd5-8b78-1aa1064bb4f5.jpg?1562055907", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/a/6/a6d731b2-0113-4fd5-8b78-1aa1064bb4f5.jpg?1562055907", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/a/6/a6d731b2-0113-4fd5-8b78-1aa1064bb4f5.png?1562055907", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/6/a6d731b2-0113-4fd5-8b78-1aa1064bb4f5.jpg?1562055907", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/a/6/a6d731b2-0113-4fd5-8b78-1aa1064bb4f5.jpg?1562055907"}, "mana_cost": "{3}{W}{W}", "cmc": 5.0, "type_line": "Sorcery", "oracle_text": "Destroy all creatures that aren't enchanted. They can't be regenerated.", "colors": ["W"], "color_identity": ["W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "10df3a67-178e-4363-8668-34f0e6edf2a7", "set": "tmp", "set_name": "Tempest", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/10df3a67-178e-4363-8668-34f0e6edf2a7", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Atmp&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/tmp?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/a6d731b2-0113-4fd5-8b78-1aa1064bb4f5/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Aa6fd90dc-0ec3-4dce-a77a-4d04f5e254bf&unique=prints", "collector_number": "52", "digital": false, "rarity": "rare", "flavor_text": "\"There shall be a vast shout and then a vaster silence.\"\n\u2014Oracle *en*-Vec", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Drew Tucker", "artist_ids": ["22eef389-7b21-4dda-95dc-4c9a0f1bf4dd"], "illustration_id": "c6c0ecf9-2d45-4e56-b602-70c0229e6c69", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 1096, "penny_rank": 1298, "prices": {"usd": "2.35", "usd_foil": null, "usd_etched": null, "eur": "0.69", "eur_foil": null, "tix": "0.13"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=4910", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Winds+of+Rath&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Winds+of+Rath&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Winds+of+Rath"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/5796?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Winds+of+Rath&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/9933?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "154dc31c-ac9d-4b78-b92b-e7bacc532915", "oracle_id": "9969b822-2ead-4956-bac2-875ffd90e872", "multiverse_ids": [386724], "mtgo_id": 54124, "mtgo_foil_id": 54125, "tcgplayer_id": 93212, "cardmarket_id": 269526, "name": "Windstorm", "lang": "en", "released_at": "2014-09-26", "uri": "https://api.scryfall.com/cards/154dc31c-ac9d-4b78-b92b-e7bacc532915", "scryfall_uri": "https://scryfall.com/card/ktk/157/windstorm?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/1/5/154dc31c-ac9d-4b78-b92b-e7bacc532915.jpg?1562782948", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/5/154dc31c-ac9d-4b78-b92b-e7bacc532915.jpg?1562782948", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/1/5/154dc31c-ac9d-4b78-b92b-e7bacc532915.jpg?1562782948", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/1/5/154dc31c-ac9d-4b78-b92b-e7bacc532915.png?1562782948", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/5/154dc31c-ac9d-4b78-b92b-e7bacc532915.jpg?1562782948", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/1/5/154dc31c-ac9d-4b78-b92b-e7bacc532915.jpg?1562782948"}, "mana_cost": "{X}{G}", "cmc": 1.0, "type_line": "Instant", "oracle_text": "Windstorm deals X damage to each creature with flying.", "colors": ["G"], "color_identity": ["G"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "6c7a715c-ded9-449e-89b0-c665773e9c3c", "set": "ktk", "set_name": "Khans of Tarkir", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/6c7a715c-ded9-449e-89b0-c665773e9c3c", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aktk&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/ktk?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/154dc31c-ac9d-4b78-b92b-e7bacc532915/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A9969b822-2ead-4956-bac2-875ffd90e872&unique=prints", "collector_number": "157", "digital": false, "rarity": "uncommon", "flavor_text": "\"When the last dragon fell, its spirit escaped as a roar into the wind.\"\n\u2014Temur tale", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Jonas De Ro", "artist_ids": ["561ebf9e-8d93-4b57-8156-8826d0c19601"], "illustration_id": "2dbb7d69-3c65-4d1c-9f08-0493e362bee3", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 11787, "penny_rank": 10427, "prices": {"usd": "0.08", "usd_foil": "0.23", "usd_etched": null, "eur": "0.19", "eur_foil": "1.10", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=386724", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Windstorm&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Windstorm&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Windstorm"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/93212?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Windstorm&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/54124?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "ee3768ec-bb3b-44dc-9fa3-7cb3d3ee9f8c", "oracle_id": "9969b822-2ead-4956-bac2-875ffd90e872", "multiverse_ids": [191596], "mtgo_id": 32905, "mtgo_foil_id": 32906, "tcgplayer_id": 32768, "cardmarket_id": 21251, "name": "Windstorm", "lang": "en", "released_at": "2009-07-17", "uri": "https://api.scryfall.com/cards/ee3768ec-bb3b-44dc-9fa3-7cb3d3ee9f8c", "scryfall_uri": "https://scryfall.com/card/m10/205/windstorm?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/e/e/ee3768ec-bb3b-44dc-9fa3-7cb3d3ee9f8c.jpg?1562000543", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/e/ee3768ec-bb3b-44dc-9fa3-7cb3d3ee9f8c.jpg?1562000543", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/e/e/ee3768ec-bb3b-44dc-9fa3-7cb3d3ee9f8c.jpg?1562000543", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/e/e/ee3768ec-bb3b-44dc-9fa3-7cb3d3ee9f8c.png?1562000543", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/e/ee3768ec-bb3b-44dc-9fa3-7cb3d3ee9f8c.jpg?1562000543", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/e/e/ee3768ec-bb3b-44dc-9fa3-7cb3d3ee9f8c.jpg?1562000543"}, "mana_cost": "{X}{G}", "cmc": 1.0, "type_line": "Instant", "oracle_text": "Windstorm deals X damage to each creature with flying.", "colors": ["G"], "color_identity": ["G"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "0dba38a9-6b9d-4768-9831-4e03e8970a0b", "set": "m10", "set_name": "Magic 2010", "set_type": "core", "set_uri": "https://api.scryfall.com/sets/0dba38a9-6b9d-4768-9831-4e03e8970a0b", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Am10&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/m10?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/ee3768ec-bb3b-44dc-9fa3-7cb3d3ee9f8c/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A9969b822-2ead-4956-bac2-875ffd90e872&unique=prints", "collector_number": "205", "digital": false, "rarity": "uncommon", "flavor_text": "\"We don't like interlopers and thieves cluttering our skies.\"\n\u2014Dionus, elvish archdruid", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Rob Alexander", "artist_ids": ["35906871-6c78-4ab2-9ed1-e6792c8efb74"], "illustration_id": "828a61a7-29d9-4f17-8867-934efb2b5259", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 11787, "penny_rank": 10427, "prices": {"usd": "0.12", "usd_foil": "0.45", "usd_etched": null, "eur": "0.21", "eur_foil": "0.15", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=191596", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Windstorm&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Windstorm&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Windstorm"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/32768?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Windstorm&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/32905?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "af1035f3-3027-4a41-834c-55222b13c2bc", "oracle_id": "fb150d6a-5f81-4fd8-92b2-22a9615bfd4f", "multiverse_ids": [3009], "tcgplayer_id": 4572, "cardmarket_id": 7812, "name": "Winter Sky", "lang": "en", "released_at": "1995-10-01", "uri": "https://api.scryfall.com/cards/af1035f3-3027-4a41-834c-55222b13c2bc", "scryfall_uri": "https://scryfall.com/card/hml/80/winter-sky?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/a/f/af1035f3-3027-4a41-834c-55222b13c2bc.jpg?1562588224", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/f/af1035f3-3027-4a41-834c-55222b13c2bc.jpg?1562588224", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/a/f/af1035f3-3027-4a41-834c-55222b13c2bc.jpg?1562588224", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/a/f/af1035f3-3027-4a41-834c-55222b13c2bc.png?1562588224", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/f/af1035f3-3027-4a41-834c-55222b13c2bc.jpg?1562588224", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/a/f/af1035f3-3027-4a41-834c-55222b13c2bc.jpg?1562588224"}, "mana_cost": "{R}", "cmc": 1.0, "type_line": "Sorcery", "oracle_text": "Flip a coin. If you win the flip, Winter Sky deals 1 damage to each creature and each player. If you lose the flip, each player draws a card.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "not_legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "not_legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper"], "reserved": true, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "5ac1f606-e682-46e9-ad0f-122a3783581b", "set": "hml", "set_name": "Homelands", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/5ac1f606-e682-46e9-ad0f-122a3783581b", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ahml&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/hml?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/af1035f3-3027-4a41-834c-55222b13c2bc/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Afb150d6a-5f81-4fd8-92b2-22a9615bfd4f&unique=prints", "collector_number": "80", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Mike Kimble", "artist_ids": ["06235390-cfc9-4418-827c-02d890bf54e5"], "illustration_id": "c7edcbd8-6966-4742-8835-21873a126f7f", "border_color": "black", "frame": "1993", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 12486, "prices": {"usd": "2.42", "usd_foil": null, "usd_etched": null, "eur": "1.75", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=3009", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Winter+Sky&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Winter+Sky&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Winter+Sky"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/4572?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Winter+Sky&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Winter+Sky&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "dbf16457-3444-4130-b220-834b69d9faa3", "oracle_id": "7b0d9139-b3ad-4065-9b55-aeeda8950bee", "multiverse_ids": [473073], "mtgo_id": 78344, "arena_id": 70258, "tcgplayer_id": 198750, "cardmarket_id": 400039, "name": "Witch's Vengeance", "lang": "en", "released_at": "2019-10-04", "uri": "https://api.scryfall.com/cards/dbf16457-3444-4130-b220-834b69d9faa3", "scryfall_uri": "https://scryfall.com/card/eld/111/witchs-vengeance?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/d/b/dbf16457-3444-4130-b220-834b69d9faa3.jpg?1572490276", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/b/dbf16457-3444-4130-b220-834b69d9faa3.jpg?1572490276", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/d/b/dbf16457-3444-4130-b220-834b69d9faa3.jpg?1572490276", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/d/b/dbf16457-3444-4130-b220-834b69d9faa3.png?1572490276", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/b/dbf16457-3444-4130-b220-834b69d9faa3.jpg?1572490276", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/d/b/dbf16457-3444-4130-b220-834b69d9faa3.jpg?1572490276"}, "mana_cost": "{1}{B}{B}", "cmc": 3.0, "type_line": "Sorcery", "oracle_text": "Creatures of the creature type of your choice get -3/-3 until end of turn.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["arena", "paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "a90a7b2f-9dd8-4fc7-9f7d-8ea2797ec782", "set": "eld", "set_name": "Throne of Eldraine", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/a90a7b2f-9dd8-4fc7-9f7d-8ea2797ec782", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aeld&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/eld?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/dbf16457-3444-4130-b220-834b69d9faa3/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A7b0d9139-b3ad-4065-9b55-aeeda8950bee&unique=prints", "collector_number": "111", "digital": false, "rarity": "rare", "flavor_text": "The hex swept through the village, its citizens falling one by one.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Titus Lunter", "artist_ids": ["b11e6b3a-f4ca-4cf1-8fd7-475696de5f5c"], "illustration_id": "b1dd6eae-ff27-4cd2-9623-0fdf2946f1c0", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 12276, "penny_rank": 7134, "preview": {"source": "The Masters of Modern", "source_uri": "https://twitter.com/theMMcast/status/1171115818630828033", "previewed_at": "2019-09-09"}, "prices": {"usd": "0.14", "usd_foil": "0.19", "usd_etched": null, "eur": "0.11", "eur_foil": "0.20", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=473073", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Witch%27s+Vengeance&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Witch%27s+Vengeance&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Witch%27s+Vengeance"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/198750?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Witch%27s+Vengeance&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/78344?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "0d223e83-0d3c-459e-96f5-ba9227fe49dd", "oracle_id": "34515b16-c9a4-4f98-8c77-416a7a523407", "multiverse_ids": [11581], "mtgo_id": 15994, "mtgo_foil_id": 15995, "tcgplayer_id": 3156, "cardmarket_id": 2819, "name": "Wrath of God", "lang": "en", "released_at": "2001-04-11", "uri": "https://api.scryfall.com/cards/0d223e83-0d3c-459e-96f5-ba9227fe49dd", "scryfall_uri": "https://scryfall.com/card/7ed/57/wrath-of-god?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/0/d/0d223e83-0d3c-459e-96f5-ba9227fe49dd.jpg?1562232378", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/d/0d223e83-0d3c-459e-96f5-ba9227fe49dd.jpg?1562232378", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/0/d/0d223e83-0d3c-459e-96f5-ba9227fe49dd.jpg?1562232378", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/0/d/0d223e83-0d3c-459e-96f5-ba9227fe49dd.png?1562232378", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/d/0d223e83-0d3c-459e-96f5-ba9227fe49dd.jpg?1562232378", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/0/d/0d223e83-0d3c-459e-96f5-ba9227fe49dd.jpg?1562232378"}, "mana_cost": "{2}{W}{W}", "cmc": 4.0, "type_line": "Sorcery", "oracle_text": "Destroy all creatures. They can't be regenerated.", "colors": ["W"], "color_identity": ["W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "230f38aa-9511-4db8-a3aa-aeddbc3f7bb9", "set": "7ed", "set_name": "Seventh Edition", "set_type": "core", "set_uri": "https://api.scryfall.com/sets/230f38aa-9511-4db8-a3aa-aeddbc3f7bb9", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3A7ed&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/7ed?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/0d223e83-0d3c-459e-96f5-ba9227fe49dd/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A34515b16-c9a4-4f98-8c77-416a7a523407&unique=prints", "collector_number": "57", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Kev Walker", "artist_ids": ["f366a0ee-a0cd-466d-ba6a-90058c7a31a6"], "illustration_id": "b57c4db3-b71b-4780-b4a3-81dd1e085e26", "border_color": "white", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 274, "penny_rank": 100, "prices": {"usd": "8.28", "usd_foil": null, "usd_etched": null, "eur": "5.25", "eur_foil": "425.00", "tix": "0.68"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=11581", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Wrath+of+God&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Wrath+of+God&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Wrath+of+God"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/3156?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Wrath+of+God&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/15994?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "d75d8204-6f9d-4a7a-bb8b-d51ac65a30fa", "oracle_id": "34515b16-c9a4-4f98-8c77-416a7a523407", "multiverse_ids": [4408], "tcgplayer_id": 826, "cardmarket_id": 10187, "name": "Wrath of God", "lang": "en", "released_at": "1997-05-01", "uri": "https://api.scryfall.com/cards/d75d8204-6f9d-4a7a-bb8b-d51ac65a30fa", "scryfall_uri": "https://scryfall.com/card/por/39/wrath-of-god?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/d/7/d75d8204-6f9d-4a7a-bb8b-d51ac65a30fa.jpg?1562447853", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/7/d75d8204-6f9d-4a7a-bb8b-d51ac65a30fa.jpg?1562447853", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/d/7/d75d8204-6f9d-4a7a-bb8b-d51ac65a30fa.jpg?1562447853", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/d/7/d75d8204-6f9d-4a7a-bb8b-d51ac65a30fa.png?1562447853", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/7/d75d8204-6f9d-4a7a-bb8b-d51ac65a30fa.jpg?1562447853", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/d/7/d75d8204-6f9d-4a7a-bb8b-d51ac65a30fa.jpg?1562447853"}, "mana_cost": "{2}{W}{W}", "cmc": 4.0, "type_line": "Sorcery", "oracle_text": "Destroy all creatures. They can't be regenerated.", "colors": ["W"], "color_identity": ["W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "478c47df-5058-4ce6-830e-7e80732b2ca9", "set": "por", "set_name": "Portal", "set_type": "starter", "set_uri": "https://api.scryfall.com/sets/478c47df-5058-4ce6-830e-7e80732b2ca9", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Apor&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/por?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/d75d8204-6f9d-4a7a-bb8b-d51ac65a30fa/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A34515b16-c9a4-4f98-8c77-416a7a523407&unique=prints", "collector_number": "39", "digital": false, "rarity": "rare", "flavor_text": "\"As flies to wanton boys, are we to the gods. They kill us for their sport.\"\n\u2014William Shakespeare, *King Lear*", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Mike Raabe", "artist_ids": ["d29cd67f-30a7-4fb9-a081-36c3d5982442"], "illustration_id": "bbdc2354-293b-4a4c-96b1-0770a32aeba7", "border_color": "black", "frame": "1997", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 274, "penny_rank": 100, "prices": {"usd": "19.45", "usd_foil": null, "usd_etched": null, "eur": "8.74", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=4408", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Wrath+of+God&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Wrath+of+God&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Wrath+of+God"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/826?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Wrath+of+God&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Wrath+of+God&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "a2788d69-6a3a-42f0-8736-cc6b57755ecd", "oracle_id": "34515b16-c9a4-4f98-8c77-416a7a523407", "multiverse_ids": [276], "tcgplayer_id": 1325, "cardmarket_id": 5462, "name": "Wrath of God", "lang": "en", "released_at": "1993-08-05", "uri": "https://api.scryfall.com/cards/a2788d69-6a3a-42f0-8736-cc6b57755ecd", "scryfall_uri": "https://scryfall.com/card/lea/45/wrath-of-god?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/a/2/a2788d69-6a3a-42f0-8736-cc6b57755ecd.jpg?1559591620", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/2/a2788d69-6a3a-42f0-8736-cc6b57755ecd.jpg?1559591620", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/a/2/a2788d69-6a3a-42f0-8736-cc6b57755ecd.jpg?1559591620", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/a/2/a2788d69-6a3a-42f0-8736-cc6b57755ecd.png?1559591620", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/2/a2788d69-6a3a-42f0-8736-cc6b57755ecd.jpg?1559591620", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/a/2/a2788d69-6a3a-42f0-8736-cc6b57755ecd.jpg?1559591620"}, "mana_cost": "{2}{W}{W}", "cmc": 4.0, "type_line": "Sorcery", "oracle_text": "Destroy all creatures. They can't be regenerated.", "colors": ["W"], "color_identity": ["W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "legal", "premodern": "legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "288bd996-960e-448b-a187-9504c1930c2c", "set": "lea", "set_name": "Limited Edition Alpha", "set_type": "core", "set_uri": "https://api.scryfall.com/sets/288bd996-960e-448b-a187-9504c1930c2c", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Alea&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/lea?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/a2788d69-6a3a-42f0-8736-cc6b57755ecd/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A34515b16-c9a4-4f98-8c77-416a7a523407&unique=prints", "collector_number": "45", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Quinton Hoover", "artist_ids": ["1a2db619-92a5-431a-822b-101cdcc5bd5d"], "illustration_id": "e87a70b0-4485-4362-9a1d-7c320cd7755e", "border_color": "black", "frame": "1993", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 274, "penny_rank": 100, "prices": {"usd": null, "usd_foil": null, "usd_etched": null, "eur": "3.85", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=276", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Wrath+of+God&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Wrath+of+God&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Wrath+of+God"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/1325?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Wrath+of+God&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Wrath+of+God&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "0adf3831-93d9-4995-b8c8-0d8c03fee872", "oracle_id": "34515b16-c9a4-4f98-8c77-416a7a523407", "multiverse_ids": [], "name": "Wrath of God", "flavor_name": "Shrinking Storm", "lang": "en", "released_at": "2022-07-07", "uri": "https://api.scryfall.com/cards/0adf3831-93d9-4995-b8c8-0d8c03fee872", "scryfall_uri": "https://scryfall.com/card/sld/441/wrath-of-god?utm_source=api", "layout": "normal", "highres_image": false, "image_status": "lowres", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/0/a/0adf3831-93d9-4995-b8c8-0d8c03fee872.jpg?1657809849", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/a/0adf3831-93d9-4995-b8c8-0d8c03fee872.jpg?1657809849", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/0/a/0adf3831-93d9-4995-b8c8-0d8c03fee872.jpg?1657809849", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/0/a/0adf3831-93d9-4995-b8c8-0d8c03fee872.png?1657809849", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/a/0adf3831-93d9-4995-b8c8-0d8c03fee872.jpg?1657809849", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/0/a/0adf3831-93d9-4995-b8c8-0d8c03fee872.jpg?1657809849"}, "mana_cost": "{2}{W}{W}", "cmc": 4.0, "type_line": "Sorcery", "oracle_text": "Destroy all creatures. They can't be regenerated.", "colors": ["W"], "color_identity": ["W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "4d92a8a7-ccb0-437d-abdc-9d70fc5ed672", "set": "sld", "set_name": "Secret Lair Drop", "set_type": "box", "set_uri": "https://api.scryfall.com/sets/4d92a8a7-ccb0-437d-abdc-9d70fc5ed672", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Asld&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/sld?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/0adf3831-93d9-4995-b8c8-0d8c03fee872/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A34515b16-c9a4-4f98-8c77-416a7a523407&unique=prints", "collector_number": "441", "digital": false, "rarity": "rare", "flavor_text": "Watch the skies.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Kevin Gnutzmans", "artist_ids": ["4a172a28-528d-4d7e-95b4-6020775264cf"], "illustration_id": "3690d35f-9222-4f82-8196-04534f16bb88", "border_color": "black", "frame": "2015", "security_stamp": "triangle", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "edhrec_rank": 274, "penny_rank": 100, "prices": {"usd": null, "usd_foil": null, "usd_etched": null, "eur": null, "eur_foil": null, "tix": null}, "related_uris": {"tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Wrath+of+God&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Wrath+of+God&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Wrath+of+God"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/search/magic/product?productLineName=magic&q=Wrath+of+God&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall&view=grid", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Wrath+of+God&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Wrath+of+God&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "a91be77a-bd5b-485f-b5ca-0e6148c236ca", "oracle_id": "34515b16-c9a4-4f98-8c77-416a7a523407", "multiverse_ids": [], "tcgplayer_id": 220131, "cardmarket_id": 484444, "name": "Wrath of God", "lang": "en", "released_at": "2020-08-07", "uri": "https://api.scryfall.com/cards/a91be77a-bd5b-485f-b5ca-0e6148c236ca", "scryfall_uri": "https://scryfall.com/card/2xm/383/wrath-of-god?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/a/9/a91be77a-bd5b-485f-b5ca-0e6148c236ca.jpg?1619340331", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/9/a91be77a-bd5b-485f-b5ca-0e6148c236ca.jpg?1619340331", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/a/9/a91be77a-bd5b-485f-b5ca-0e6148c236ca.jpg?1619340331", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/a/9/a91be77a-bd5b-485f-b5ca-0e6148c236ca.png?1619340331", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/9/a91be77a-bd5b-485f-b5ca-0e6148c236ca.jpg?1619340331", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/a/9/a91be77a-bd5b-485f-b5ca-0e6148c236ca.jpg?1619340331"}, "mana_cost": "{2}{W}{W}", "cmc": 4.0, "type_line": "Sorcery", "oracle_text": "Destroy all creatures. They can't be regenerated.", "colors": ["W"], "color_identity": ["W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": false, "finishes": ["foil"], "oversized": false, "promo": true, "reprint": true, "variation": false, "set_id": "372dafe8-b5d1-4b81-998f-3ae96b59498a", "set": "2xm", "set_name": "Double Masters", "set_type": "masters", "set_uri": "https://api.scryfall.com/sets/372dafe8-b5d1-4b81-998f-3ae96b59498a", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3A2xm&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/2xm?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/a91be77a-bd5b-485f-b5ca-0e6148c236ca/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A34515b16-c9a4-4f98-8c77-416a7a523407&unique=prints", "collector_number": "383", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Thomas M. Baxa", "artist_ids": ["ff346569-557d-4043-ae44-97c2c7cabd7d"], "illustration_id": "286e5be3-3628-4f09-8d34-63bbad4c1410", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "promo_types": ["release", "buyabox"], "edhrec_rank": 274, "penny_rank": 100, "preview": {"source": "Wizards of the Coast", "source_uri": "https://magic.wizards.com/en/articles/archive/card-preview/three-small-words-one-great-effect-2020-07-22", "previewed_at": "2020-07-22"}, "prices": {"usd": null, "usd_foil": "4.92", "usd_etched": null, "eur": null, "eur_foil": "2.55", "tix": null}, "related_uris": {"tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Wrath+of+God&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Wrath+of+God&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Wrath+of+God"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/220131?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Wrath+of+God&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Wrath+of+God&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "4351bf97-0b9e-44a5-bb7c-1098a683b18d", "oracle_id": "34515b16-c9a4-4f98-8c77-416a7a523407", "multiverse_ids": [429866], "mtgo_id": 64368, "mtgo_foil_id": 64369, "tcgplayer_id": 129552, "cardmarket_id": 296601, "name": "Wrath of God", "lang": "en", "released_at": "2017-04-28", "uri": "https://api.scryfall.com/cards/4351bf97-0b9e-44a5-bb7c-1098a683b18d", "scryfall_uri": "https://scryfall.com/card/mp2/7/wrath-of-god?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/4/3/4351bf97-0b9e-44a5-bb7c-1098a683b18d.jpg?1562908574", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/3/4351bf97-0b9e-44a5-bb7c-1098a683b18d.jpg?1562908574", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/4/3/4351bf97-0b9e-44a5-bb7c-1098a683b18d.jpg?1562908574", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/4/3/4351bf97-0b9e-44a5-bb7c-1098a683b18d.png?1562908574", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/3/4351bf97-0b9e-44a5-bb7c-1098a683b18d.jpg?1562908574", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/4/3/4351bf97-0b9e-44a5-bb7c-1098a683b18d.jpg?1562908574"}, "mana_cost": "{2}{W}{W}", "cmc": 4.0, "type_line": "Sorcery", "oracle_text": "Destroy all creatures. They can't be regenerated.", "colors": ["W"], "color_identity": ["W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": false, "finishes": ["foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "c26402e7-838e-48db-a4b2-7abfc305998a", "set": "mp2", "set_name": "Amonkhet Invocations", "set_type": "masterpiece", "set_uri": "https://api.scryfall.com/sets/c26402e7-838e-48db-a4b2-7abfc305998a", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Amp2&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/mp2?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/4351bf97-0b9e-44a5-bb7c-1098a683b18d/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A34515b16-c9a4-4f98-8c77-416a7a523407&unique=prints", "collector_number": "7", "digital": false, "rarity": "mythic", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Titus Lunter", "artist_ids": ["b11e6b3a-f4ca-4cf1-8fd7-475696de5f5c"], "illustration_id": "46a797f7-2ddd-4065-a94f-c3962e5c365d", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 274, "penny_rank": 100, "prices": {"usd": null, "usd_foil": "83.43", "usd_etched": null, "eur": null, "eur_foil": "61.56", "tix": "0.46"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=429866", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Wrath+of+God&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Wrath+of+God&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Wrath+of+God"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/129552?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Wrath+of+God&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/64368?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "98890cd7-ebd5-4fea-814e-4f612abfe3a5", "oracle_id": "34515b16-c9a4-4f98-8c77-416a7a523407", "multiverse_ids": [386298], "mtgo_id": 53943, "mtgo_foil_id": 53944, "tcgplayer_id": 91641, "cardmarket_id": 268643, "name": "Wrath of God", "lang": "en", "released_at": "2014-08-22", "uri": "https://api.scryfall.com/cards/98890cd7-ebd5-4fea-814e-4f612abfe3a5", "scryfall_uri": "https://scryfall.com/card/v14/15/wrath-of-god?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/9/8/98890cd7-ebd5-4fea-814e-4f612abfe3a5.jpg?1560576455", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/8/98890cd7-ebd5-4fea-814e-4f612abfe3a5.jpg?1560576455", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/9/8/98890cd7-ebd5-4fea-814e-4f612abfe3a5.jpg?1560576455", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/9/8/98890cd7-ebd5-4fea-814e-4f612abfe3a5.png?1560576455", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/8/98890cd7-ebd5-4fea-814e-4f612abfe3a5.jpg?1560576455", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/9/8/98890cd7-ebd5-4fea-814e-4f612abfe3a5.jpg?1560576455"}, "mana_cost": "{2}{W}{W}", "cmc": 4.0, "type_line": "Sorcery", "oracle_text": "Destroy all creatures. They can't be regenerated.", "colors": ["W"], "color_identity": ["W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": false, "finishes": ["foil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "21dd7ae2-1196-46d4-9acf-4ff9d82797be", "set": "v14", "set_name": "From the Vault: Annihilation", "set_type": "from_the_vault", "set_uri": "https://api.scryfall.com/sets/21dd7ae2-1196-46d4-9acf-4ff9d82797be", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Av14&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/v14?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/98890cd7-ebd5-4fea-814e-4f612abfe3a5/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A34515b16-c9a4-4f98-8c77-416a7a523407&unique=prints", "collector_number": "15", "digital": false, "rarity": "mythic", "flavor_text": "Legend speaks of the lost coastal polis of Olantin, whose inhabitants' hubris enraged the sun god Heliod.", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Willian Murai", "artist_ids": ["5a553c8e-e3b9-40e0-bde5-1db621c53939"], "illustration_id": "df89f423-53ca-4b31-a17b-5ff8059440a8", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "edhrec_rank": 274, "penny_rank": 100, "prices": {"usd": null, "usd_foil": "5.68", "usd_etched": null, "eur": null, "eur_foil": "3.50", "tix": "0.33"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=386298", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Wrath+of+God&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Wrath+of+God&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Wrath+of+God"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/91641?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Wrath+of+God&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/53943?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "10c5810f-83f6-43bf-8ece-047be42d7d58", "oracle_id": "34515b16-c9a4-4f98-8c77-416a7a523407", "multiverse_ids": [], "tcgplayer_id": 38345, "cardmarket_id": 17581, "name": "Wrath of God", "lang": "en", "released_at": "2007-01-01", "uri": "https://api.scryfall.com/cards/10c5810f-83f6-43bf-8ece-047be42d7d58", "scryfall_uri": "https://scryfall.com/card/p07/1/wrath-of-god?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/1/0/10c5810f-83f6-43bf-8ece-047be42d7d58.jpg?1561756672", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/0/10c5810f-83f6-43bf-8ece-047be42d7d58.jpg?1561756672", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/1/0/10c5810f-83f6-43bf-8ece-047be42d7d58.jpg?1561756672", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/1/0/10c5810f-83f6-43bf-8ece-047be42d7d58.png?1561756672", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/0/10c5810f-83f6-43bf-8ece-047be42d7d58.jpg?1561756672", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/1/0/10c5810f-83f6-43bf-8ece-047be42d7d58.jpg?1561756672"}, "mana_cost": "{2}{W}{W}", "cmc": 4.0, "type_line": "Sorcery", "oracle_text": "Destroy all creatures. They can't be regenerated.", "colors": ["W"], "color_identity": ["W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "legal"}, "games": ["paper"], "reserved": false, "foil": true, "nonfoil": false, "finishes": ["foil"], "oversized": false, "promo": true, "reprint": true, "variation": false, "set_id": "c1a38fe6-73f4-4414-897b-f1215a7c948f", "set": "p07", "set_name": "Magic Player Rewards 2007", "set_type": "promo", "set_uri": "https://api.scryfall.com/sets/c1a38fe6-73f4-4414-897b-f1215a7c948f", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ap07&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/p07?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/10c5810f-83f6-43bf-8ece-047be42d7d58/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A34515b16-c9a4-4f98-8c77-416a7a523407&unique=prints", "collector_number": "1", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Ron Spencer", "artist_ids": ["dab52c11-0564-4207-a4a1-c1735c946a65"], "illustration_id": "6813bd80-fa6c-4919-ac40-e719ae1235f6", "border_color": "black", "frame": "2003", "full_art": true, "textless": true, "booster": false, "story_spotlight": false, "promo_types": ["playerrewards"], "edhrec_rank": 274, "penny_rank": 100, "prices": {"usd": null, "usd_foil": "31.05", "usd_etched": null, "eur": null, "eur_foil": "9.90", "tix": null}, "related_uris": {"tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Wrath+of+God&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Wrath+of+God&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Wrath+of+God"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/38345?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Wrath+of+God&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Wrath+of+God&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "f2f28735-122c-45ba-bde5-decfd9b11b32", "oracle_id": "692babfa-9b74-415e-a560-abae4ccb006b", "multiverse_ids": [423742], "mtgo_id": 62707, "mtgo_foil_id": 62708, "tcgplayer_id": 125848, "cardmarket_id": 294563, "name": "Yahenni's Expertise", "lang": "en", "released_at": "2017-01-20", "uri": "https://api.scryfall.com/cards/f2f28735-122c-45ba-bde5-decfd9b11b32", "scryfall_uri": "https://scryfall.com/card/aer/75/yahennis-expertise?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/f/2/f2f28735-122c-45ba-bde5-decfd9b11b32.jpg?1576381752", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/2/f2f28735-122c-45ba-bde5-decfd9b11b32.jpg?1576381752", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/f/2/f2f28735-122c-45ba-bde5-decfd9b11b32.jpg?1576381752", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/f/2/f2f28735-122c-45ba-bde5-decfd9b11b32.png?1576381752", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/2/f2f28735-122c-45ba-bde5-decfd9b11b32.jpg?1576381752", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/f/2/f2f28735-122c-45ba-bde5-decfd9b11b32.jpg?1576381752"}, "mana_cost": "{2}{B}{B}", "cmc": 4.0, "type_line": "Sorcery", "oracle_text": "All creatures get -3/-3 until end of turn.\nYou may cast a spell with mana value 3 or less from your hand without paying its mana cost.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "a4a0db50-8826-4e73-833c-3fd934375f96", "set": "aer", "set_name": "Aether Revolt", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/a4a0db50-8826-4e73-833c-3fd934375f96", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aaer&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/aer?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/f2f28735-122c-45ba-bde5-decfd9b11b32/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A692babfa-9b74-415e-a560-abae4ccb006b&unique=prints", "collector_number": "75", "digital": false, "rarity": "rare", "flavor_text": "\"The Consulate pushed me to my limit, darling, and this is the result.\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Daarken", "artist_ids": ["e607a0d4-fc12-4c01-9e3f-501f5269b9cb"], "illustration_id": "28d1d881-5a9f-4df5-b866-1a7caf2d6af3", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 6643, "penny_rank": 420, "prices": {"usd": "0.23", "usd_foil": "0.75", "usd_etched": null, "eur": "0.25", "eur_foil": "0.74", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=423742", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Yahenni%27s+Expertise&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Yahenni%27s+Expertise&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Yahenni%27s+Expertise"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/125848?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Yahenni%27s+Expertise&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/62707?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "0f4ddbb7-b317-44dc-bb3d-52f52c0a8f96", "oracle_id": "692babfa-9b74-415e-a560-abae4ccb006b", "multiverse_ids": [], "tcgplayer_id": 125844, "cardmarket_id": 294553, "name": "Yahenni's Expertise", "lang": "en", "released_at": "2017-01-20", "uri": "https://api.scryfall.com/cards/0f4ddbb7-b317-44dc-bb3d-52f52c0a8f96", "scryfall_uri": "https://scryfall.com/card/paer/75/yahennis-expertise?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/0/f/0f4ddbb7-b317-44dc-bb3d-52f52c0a8f96.jpg?1562270938", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/f/0f4ddbb7-b317-44dc-bb3d-52f52c0a8f96.jpg?1562270938", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/0/f/0f4ddbb7-b317-44dc-bb3d-52f52c0a8f96.jpg?1562270938", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/0/f/0f4ddbb7-b317-44dc-bb3d-52f52c0a8f96.png?1562270938", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/f/0f4ddbb7-b317-44dc-bb3d-52f52c0a8f96.jpg?1562270938", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/0/f/0f4ddbb7-b317-44dc-bb3d-52f52c0a8f96.jpg?1562270938"}, "mana_cost": "{2}{B}{B}", "cmc": 4.0, "type_line": "Sorcery", "oracle_text": "All creatures get -3/-3 until end of turn.\nYou may cast a spell with mana value 3 or less from your hand without paying its mana cost.", "colors": ["B"], "color_identity": ["B"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "legal", "gladiator": "legal", "pioneer": "legal", "explorer": "legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": true, "nonfoil": false, "finishes": ["foil"], "oversized": false, "promo": true, "reprint": true, "variation": false, "set_id": "2acdb824-7cac-4858-a77e-ac868eed5270", "set": "paer", "set_name": "Aether Revolt Promos", "set_type": "promo", "set_uri": "https://api.scryfall.com/sets/2acdb824-7cac-4858-a77e-ac868eed5270", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Apaer&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/paer?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/0f4ddbb7-b317-44dc-bb3d-52f52c0a8f96/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A692babfa-9b74-415e-a560-abae4ccb006b&unique=prints", "collector_number": "75", "digital": false, "rarity": "rare", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Jason A. Engle", "artist_ids": ["02e2b5de-4341-464c-8fdb-a1adbf873bc0"], "illustration_id": "2732073b-dd78-445f-8559-f4fc69e082cc", "border_color": "black", "frame": "2015", "security_stamp": "oval", "full_art": true, "textless": false, "booster": false, "story_spotlight": false, "promo_types": ["setpromo", "gameday"], "edhrec_rank": 6643, "penny_rank": 420, "prices": {"usd": null, "usd_foil": "1.23", "usd_etched": null, "eur": null, "eur_foil": "0.60", "tix": null}, "related_uris": {"tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Yahenni%27s+Expertise&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Yahenni%27s+Expertise&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Yahenni%27s+Expertise"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/125844?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Yahenni%27s+Expertise&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Yahenni%27s+Expertise&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "0a5a930d-ae59-47e2-9b98-f703e308b5c0", "oracle_id": "3dfeb0c5-85d6-48fb-b924-d7b77f4b89d6", "multiverse_ids": [50346], "mtgo_id": 21031, "mtgo_foil_id": 21032, "tcgplayer_id": 12224, "cardmarket_id": 12243, "name": "Yamabushi's Storm", "lang": "en", "released_at": "2004-10-01", "uri": "https://api.scryfall.com/cards/0a5a930d-ae59-47e2-9b98-f703e308b5c0", "scryfall_uri": "https://scryfall.com/card/chk/199/yamabushis-storm?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/0/a/0a5a930d-ae59-47e2-9b98-f703e308b5c0.jpg?1562757474", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/a/0a5a930d-ae59-47e2-9b98-f703e308b5c0.jpg?1562757474", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/0/a/0a5a930d-ae59-47e2-9b98-f703e308b5c0.jpg?1562757474", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/0/a/0a5a930d-ae59-47e2-9b98-f703e308b5c0.png?1562757474", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/a/0a5a930d-ae59-47e2-9b98-f703e308b5c0.jpg?1562757474", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/0/a/0a5a930d-ae59-47e2-9b98-f703e308b5c0.jpg?1562757474"}, "mana_cost": "{1}{R}", "cmc": 2.0, "type_line": "Sorcery", "oracle_text": "Yamabushi's Storm deals 1 damage to each creature. If a creature dealt damage this way would die this turn, exile it instead.", "colors": ["R"], "color_identity": ["R"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "6183d21f-a0af-4118-ba58-aca1d8719c01", "set": "chk", "set_name": "Champions of Kamigawa", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/6183d21f-a0af-4118-ba58-aca1d8719c01", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Achk&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/chk?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/0a5a930d-ae59-47e2-9b98-f703e308b5c0/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3A3dfeb0c5-85d6-48fb-b924-d7b77f4b89d6&unique=prints", "collector_number": "199", "digital": false, "rarity": "common", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Wayne England", "artist_ids": ["62dc90c0-4bc2-4d42-ad76-59cad9243566"], "illustration_id": "8d307f6a-dd50-4349-aadd-5c2873dfe493", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 19655, "penny_rank": 11343, "prices": {"usd": "0.09", "usd_foil": "0.33", "usd_etched": null, "eur": "0.02", "eur_foil": "0.09", "tix": "0.03"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=50346", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Yamabushi%27s+Storm&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Yamabushi%27s+Storm&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Yamabushi%27s+Storm"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/12224?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Yamabushi%27s+Storm&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/21031?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "07d8ae46-14ec-4878-ba8a-a47d4508c6d7", "oracle_id": "ccf8d919-1399-4bef-94ac-04c67f122828", "multiverse_ids": [179575], "mtgo_id": 32300, "mtgo_foil_id": 32301, "tcgplayer_id": 31839, "cardmarket_id": 20964, "name": "Zealous Persecution", "lang": "en", "released_at": "2009-04-30", "uri": "https://api.scryfall.com/cards/07d8ae46-14ec-4878-ba8a-a47d4508c6d7", "scryfall_uri": "https://scryfall.com/card/arb/85/zealous-persecution?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/0/7/07d8ae46-14ec-4878-ba8a-a47d4508c6d7.jpg?1562639500", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/7/07d8ae46-14ec-4878-ba8a-a47d4508c6d7.jpg?1562639500", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/0/7/07d8ae46-14ec-4878-ba8a-a47d4508c6d7.jpg?1562639500", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/0/7/07d8ae46-14ec-4878-ba8a-a47d4508c6d7.png?1562639500", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/7/07d8ae46-14ec-4878-ba8a-a47d4508c6d7.jpg?1562639500", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/0/7/07d8ae46-14ec-4878-ba8a-a47d4508c6d7.jpg?1562639500"}, "mana_cost": "{W}{B}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Until end of turn, creatures you control get +1/+1 and creatures your opponents control get -1/-1.", "colors": ["B", "W"], "color_identity": ["B", "W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper", "mtgo"], "reserved": false, "foil": true, "nonfoil": true, "finishes": ["nonfoil", "foil"], "oversized": false, "promo": false, "reprint": false, "variation": false, "set_id": "db486ec5-141d-4781-9ee5-5456926934c1", "set": "arb", "set_name": "Alara Reborn", "set_type": "expansion", "set_uri": "https://api.scryfall.com/sets/db486ec5-141d-4781-9ee5-5456926934c1", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Aarb&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/arb?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/07d8ae46-14ec-4878-ba8a-a47d4508c6d7/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Accf8d919-1399-4bef-94ac-04c67f122828&unique=prints", "collector_number": "85", "digital": false, "rarity": "uncommon", "flavor_text": "\"Jharic returned from Grixis changed, a haunted look in her eyes. She destroyed them with an unholy glee that made me shudder.\"\n\u2014Knight-Captain Wyhorn", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Christopher Moeller", "artist_ids": ["21e10012-06ae-44f2-b38d-3824dd2e73d4"], "illustration_id": "d3933b44-e357-4a93-b8f1-37eec203bfee", "border_color": "black", "frame": "2003", "full_art": false, "textless": false, "booster": true, "story_spotlight": false, "edhrec_rank": 11963, "penny_rank": 2964, "prices": {"usd": "0.20", "usd_foil": "0.71", "usd_etched": null, "eur": "0.12", "eur_foil": "1.95", "tix": "0.02"}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=179575", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Zealous+Persecution&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Zealous+Persecution&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Zealous+Persecution"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/31839?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Zealous+Persecution&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards/32300?affiliate_id=scryfall&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}, {"object": "card", "id": "00963993-ff4d-4cc6-a7e0-ed8adac40bfd", "oracle_id": "ccf8d919-1399-4bef-94ac-04c67f122828", "multiverse_ids": [439383], "tcgplayer_id": 151655, "cardmarket_id": 312829, "name": "Zealous Persecution", "lang": "en", "released_at": "2017-11-24", "uri": "https://api.scryfall.com/cards/00963993-ff4d-4cc6-a7e0-ed8adac40bfd", "scryfall_uri": "https://scryfall.com/card/e02/41/zealous-persecution?utm_source=api", "layout": "normal", "highres_image": true, "image_status": "highres_scan", "image_uris": {"small": "https://c1.scryfall.com/file/scryfall-cards/small/front/0/0/00963993-ff4d-4cc6-a7e0-ed8adac40bfd.jpg?1562895154", "normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/0/00963993-ff4d-4cc6-a7e0-ed8adac40bfd.jpg?1562895154", "large": "https://c1.scryfall.com/file/scryfall-cards/large/front/0/0/00963993-ff4d-4cc6-a7e0-ed8adac40bfd.jpg?1562895154", "png": "https://c1.scryfall.com/file/scryfall-cards/png/front/0/0/00963993-ff4d-4cc6-a7e0-ed8adac40bfd.png?1562895154", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/0/00963993-ff4d-4cc6-a7e0-ed8adac40bfd.jpg?1562895154", "border_crop": "https://c1.scryfall.com/file/scryfall-cards/border_crop/front/0/0/00963993-ff4d-4cc6-a7e0-ed8adac40bfd.jpg?1562895154"}, "mana_cost": "{W}{B}", "cmc": 2.0, "type_line": "Instant", "oracle_text": "Until end of turn, creatures you control get +1/+1 and creatures your opponents control get -1/-1.", "colors": ["B", "W"], "color_identity": ["B", "W"], "keywords": [], "legalities": {"standard": "not_legal", "future": "not_legal", "historic": "not_legal", "gladiator": "not_legal", "pioneer": "not_legal", "explorer": "not_legal", "modern": "legal", "legacy": "legal", "pauper": "not_legal", "vintage": "legal", "penny": "legal", "commander": "legal", "brawl": "not_legal", "historicbrawl": "not_legal", "alchemy": "not_legal", "paupercommander": "not_legal", "duel": "legal", "oldschool": "not_legal", "premodern": "not_legal"}, "games": ["paper"], "reserved": false, "foil": false, "nonfoil": true, "finishes": ["nonfoil"], "oversized": false, "promo": false, "reprint": true, "variation": false, "set_id": "a5531353-3534-4882-8802-0304e5c2bf64", "set": "e02", "set_name": "Explorers of Ixalan", "set_type": "box", "set_uri": "https://api.scryfall.com/sets/a5531353-3534-4882-8802-0304e5c2bf64", "set_search_uri": "https://api.scryfall.com/cards/search?order=set&q=e%3Ae02&unique=prints", "scryfall_set_uri": "https://scryfall.com/sets/e02?utm_source=api", "rulings_uri": "https://api.scryfall.com/cards/00963993-ff4d-4cc6-a7e0-ed8adac40bfd/rulings", "prints_search_uri": "https://api.scryfall.com/cards/search?order=released&q=oracleid%3Accf8d919-1399-4bef-94ac-04c67f122828&unique=prints", "collector_number": "41", "digital": false, "rarity": "uncommon", "flavor_text": "\"Rejoice! Your vile blood will help fulfill our righteous cause.\"", "card_back_id": "0aeebaf5-8c7d-4636-9e82-8c27447861f7", "artist": "Sara Winters", "artist_ids": ["56be33dc-a2da-40e9-a4f7-94077dcea31e"], "illustration_id": "14176355-4d07-49e0-b54e-1bb11c775902", "border_color": "black", "frame": "2015", "full_art": false, "textless": false, "booster": false, "story_spotlight": false, "edhrec_rank": 11963, "penny_rank": 2964, "prices": {"usd": "0.10", "usd_foil": null, "usd_etched": null, "eur": "0.25", "eur_foil": null, "tix": null}, "related_uris": {"gatherer": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=439383", "tcgplayer_infinite_articles": "https://infinite.tcgplayer.com/search?contentMode=article&game=magic&partner=scryfall&q=Zealous+Persecution&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "tcgplayer_infinite_decks": "https://infinite.tcgplayer.com/search?contentMode=deck&game=magic&partner=scryfall&q=Zealous+Persecution&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "edhrec": "https://edhrec.com/route/?cc=Zealous+Persecution"}, "purchase_uris": {"tcgplayer": "https://www.tcgplayer.com/product/151655?page=1&utm_campaign=affiliate&utm_medium=api&utm_source=scryfall", "cardmarket": "https://www.cardmarket.com/en/Magic/Products/Search?referrer=scryfall&searchString=Zealous+Persecution&utm_campaign=card_prices&utm_medium=text&utm_source=scryfall", "cardhoarder": "https://www.cardhoarder.com/cards?affiliate_id=scryfall&data%5Bsearch%5D=Zealous+Persecution&ref=card-profile&utm_campaign=affiliate&utm_medium=card&utm_source=scryfall"}}]} \ No newline at end of file +{"has_more": false, "data": [{"name": "Sudden Demise", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/2/7217afaa-00e1-45a7-bb7f-66a770487b77.jpg?1562918949", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/2/7217afaa-00e1-45a7-bb7f-66a770487b77.jpg?1562918949"}, "reprint": false, "digital": false, "set_type": "commander"}, {"name": "Suffocating Fumes", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/6/66b562e4-35df-4aee-848d-ceb4204bbe58.jpg?1591226972", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/6/66b562e4-35df-4aee-848d-ceb4204bbe58.jpg?1591226972"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Sulfurous Blast", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/7/67511e0e-be09-4f4e-9949-b9ecbdc7f536.jpg?1562916599", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/7/67511e0e-be09-4f4e-9949-b9ecbdc7f536.jpg?1562916599"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Sunscour", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/4/44c726db-a30a-4e76-9fbf-ec6d5cd7a1ba.jpg?1593274832", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/4/44c726db-a30a-4e76-9fbf-ec6d5cd7a1ba.jpg?1593274832"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Supreme Verdict", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/e/4e9648f9-7a67-4717-bca1-861d1f7fed43.jpg?1562786100", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/e/4e9648f9-7a67-4717-bca1-861d1f7fed43.jpg?1562786100"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Supreme Verdict", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/2/a2b760cc-800a-48a3-97d9-316e1eeafd4c.jpg?1655619437", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/2/a2b760cc-800a-48a3-97d9-316e1eeafd4c.jpg?1655619437"}, "reprint": true, "frame_effects": ["inverted"], "digital": false, "set_type": "masters"}, {"name": "Supreme Verdict", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/5/35e3b17c-1af9-4a6d-9cbe-e9d23ea52c53.jpg?1562497060", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/5/35e3b17c-1af9-4a6d-9cbe-e9d23ea52c53.jpg?1562497060"}, "reprint": true, "digital": false, "set_type": "promo"}, {"name": "Sweltering Suns", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/1/f11cd406-c6ae-4018-ae45-4e5577aa82ae.jpg?1543675701", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/1/f11cd406-c6ae-4018-ae45-4e5577aa82ae.jpg?1543675701"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Swirling Sandstorm", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/d/4d757ec3-c15f-4d6e-8e18-36ebae985448.jpg?1562629788", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/d/4d757ec3-c15f-4d6e-8e18-36ebae985448.jpg?1562629788"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Synthetic Destiny", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/a/6ab025e6-9ee7-45f0-b829-199637eb0038.jpg?1562705395", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/a/6ab025e6-9ee7-45f0-b829-199637eb0038.jpg?1562705395"}, "reprint": false, "digital": false, "set_type": "commander"}, {"name": "Take Down", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/8/f8e702db-8c73-4947-9c13-5dcb50f4efab.jpg?1576382690", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/8/f8e702db-8c73-4947-9c13-5dcb50f4efab.jpg?1576382690"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Terminus", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/9/0982ea7e-05a4-4e40-98ab-ea9aa6c7342e.jpg?1592708421", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/9/0982ea7e-05a4-4e40-98ab-ea9aa6c7342e.jpg?1592708421"}, "reprint": false, "frame_effects": ["miracle"], "digital": false, "set_type": "expansion"}, {"name": "Thunder of Hooves", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/e/9e4f796a-6831-4d83-824d-88fd2148b4c1.jpg?1562932440", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/e/9e4f796a-6831-4d83-824d-88fd2148b4c1.jpg?1562932440"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Thunderwave", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/9/e9531098-63ea-4568-81e9-80e00a5f8995.jpg?1653417329", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/9/e9531098-63ea-4568-81e9-80e00a5f8995.jpg?1653417329"}, "reprint": false, "digital": false, "set_type": "draft_innovation"}, {"name": "Time Wipe", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/2/62c59475-6f15-48d2-b105-f49901f20d44.jpg?1557577308", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/2/62c59475-6f15-48d2-b105-f49901f20d44.jpg?1557577308"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Time Wipe", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/a/6ab4b490-67d8-4f13-86cb-858a8012a46a.jpg?1558324717", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/a/6ab4b490-67d8-4f13-86cb-858a8012a46a.jpg?1558324717"}, "reprint": true, "digital": false, "set_type": "promo"}, {"name": "Tivadar's Crusade", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/b/8b6da540-6803-47e5-9af0-7ae8e2f84b6c.jpg?1562927916", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/b/8b6da540-6803-47e5-9af0-7ae8e2f84b6c.jpg?1562927916"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Torrent of Lava", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/9/19528a24-4968-4742-a2d1-06f94e60f290.jpg?1562718298", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/9/19528a24-4968-4742-a2d1-06f94e60f290.jpg?1562718298"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Toxic Deluge", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/b/db34617f-b04f-4b65-84cf-5c5be1eb7226.jpg?1651951814", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/b/db34617f-b04f-4b65-84cf-5c5be1eb7226.jpg?1651951814"}, "reprint": true, "digital": false, "set_type": "arsenal"}, {"name": "Toxic Deluge", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/6/564caf57-4ba5-4993-a35e-945699c94eb7.jpg?1562913020", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/6/564caf57-4ba5-4993-a35e-945699c94eb7.jpg?1562913020"}, "reprint": false, "digital": false, "set_type": "commander"}, {"name": "Toxic Deluge", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/3/73731e45-51bb-4188-a54d-fdaa4bdfaf1f.jpg?1599711037", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/3/73731e45-51bb-4188-a54d-fdaa4bdfaf1f.jpg?1599711037"}, "reprint": true, "digital": false, "set_type": "masters"}, {"name": "Tremor", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/2/b281c013-b35a-4c4a-aaee-b6f93968485c.jpg?1562246219", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/2/b281c013-b35a-4c4a-aaee-b6f93968485c.jpg?1562246219"}, "reprint": true, "digital": false, "set_type": "core"}, {"name": "Tremor", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/5/8531efb1-d77d-451a-8621-424fc278ccf9.jpg?1562381834", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/5/8531efb1-d77d-451a-8621-424fc278ccf9.jpg?1562381834"}, "reprint": true, "digital": false, "set_type": "expansion"}, {"name": "Tremor", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/2/e2509285-a88e-4f5c-86c1-c0386da0f0c5.jpg?1562948885", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/2/e2509285-a88e-4f5c-86c1-c0386da0f0c5.jpg?1562948885"}, "reprint": true, "digital": false, "set_type": "starter"}, {"name": "Tremor", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/9/a9d64665-c1e0-40ab-a358-247f82966379.jpg?1562278171", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/9/a9d64665-c1e0-40ab-a358-247f82966379.jpg?1562278171"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Tropical Storm", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/d/cd5f473c-e11e-4047-91f9-81b80f0a3562.jpg?1587912688", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/d/cd5f473c-e11e-4047-91f9-81b80f0a3562.jpg?1587912688"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Tsabo's Decree", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/c/0c1a0ebd-1add-49e6-b5e6-5b26abb1de88.jpg?1562897461", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/c/0c1a0ebd-1add-49e6-b5e6-5b26abb1de88.jpg?1562897461"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Underworld Fires", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/f/0fe616c4-dcb0-4284-ba10-6fbf7cecd217.jpg?1581480512", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/f/0fe616c4-dcb0-4284-ba10-6fbf7cecd217.jpg?1581480512"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Urborg Justice", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/9/39f322ff-0b04-41ce-90cd-9896f941e703.jpg?1562800263", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/9/39f322ff-0b04-41ce-90cd-9896f941e703.jpg?1562800263"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Valiant Endeavor", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/4/0445def0-8921-4579-912f-035d9fbce3c0.jpg?1631584806", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/4/0445def0-8921-4579-912f-035d9fbce3c0.jpg?1631584806"}, "reprint": false, "digital": false, "set_type": "commander"}, {"name": "Vampires' Vengeance", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/0/20d2d886-13a2-44f1-966a-ec674622fd01.jpg?1643592028", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/0/20d2d886-13a2-44f1-966a-ec674622fd01.jpg?1643592028"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Vampires' Vengeance", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/f/9f4ba693-0323-415d-ad91-c083fbbab7f7.jpg?1645228860", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/f/9f4ba693-0323-415d-ad91-c083fbbab7f7.jpg?1645228860"}, "flavor_name": "Mysterious Blood Illness", "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Vanquish the Horde", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/2/e264615c-eb99-4cb3-844a-2b4a94ba5203.jpg?1634348651", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/2/e264615c-eb99-4cb3-844a-2b4a94ba5203.jpg?1634348651"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Virtue's Ruin", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/8/7854928a-d467-4616-b96b-de7e5fe7303e.jpg?1562446869", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/8/7854928a-d467-4616-b96b-de7e5fe7303e.jpg?1562446869"}, "reprint": false, "digital": false, "set_type": "starter"}, {"name": "Void", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/c/0/c0b3e320-a85c-4d92-944e-0a5e78a066a5.jpg?1580015114", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/c/0/c0b3e320-a85c-4d92-944e-0a5e78a066a5.jpg?1580015114"}, "reprint": true, "digital": false, "set_type": "masters"}, {"name": "Void", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/2/62dc1df7-b9db-4f5f-a340-08287cd3d9e5.jpg?1562915020", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/2/62dc1df7-b9db-4f5f-a340-08287cd3d9e5.jpg?1562915020"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Volcanic Eruption", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/8/a80582b1-09db-45f8-b362-0e5207a5a8e6.jpg?1559591541", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/8/a80582b1-09db-45f8-b362-0e5207a5a8e6.jpg?1559591541"}, "reprint": false, "digital": false, "set_type": "core"}, {"name": "Volcanic Fallout", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/6/5/65536d12-e75c-42b5-b592-a3ad4f550a71.jpg?1592485188", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/6/5/65536d12-e75c-42b5-b592-a3ad4f550a71.jpg?1592485188"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Volcanic Fallout", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/d/8d3a69d2-518d-4b70-a03e-6d02a525f9ad.jpg?1561757550", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/d/8d3a69d2-518d-4b70-a03e-6d02a525f9ad.jpg?1561757550"}, "reprint": true, "digital": false, "set_type": "promo"}, {"name": "Volcanic Spray", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/7/97daab4b-d934-4a3f-a043-f7c9c1dd32bf.jpg?1562923217", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/7/97daab4b-d934-4a3f-a043-f7c9c1dd32bf.jpg?1562923217"}, "reprint": false, "frame_effects": ["tombstone"], "digital": false, "set_type": "expansion"}, {"name": "Volcanic Torrent", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/b/eb586da6-670d-4c50-9d9b-f320f1c288d7.jpg?1608910472", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/b/eb586da6-670d-4c50-9d9b-f320f1c288d7.jpg?1608910472"}, "reprint": false, "digital": false, "set_type": "draft_innovation"}, {"name": "Volcanic Vision", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/9/f973e1a6-c6f9-47f5-9bf0-b7fa06959bd4.jpg?1625194143", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/9/f973e1a6-c6f9-47f5-9bf0-b7fa06959bd4.jpg?1625194143"}, "reprint": true, "digital": false, "set_type": "commander"}, {"name": "Volcanic Vision", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/7/979da13b-9be6-49cc-a62c-67eeea289612.jpg?1562790292", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/7/979da13b-9be6-49cc-a62c-67eeea289612.jpg?1562790292"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Wail of the Nim", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/8/a8c32faa-c6d1-418a-aed6-ccc5849daa1f.jpg?1562153645", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/8/a8c32faa-c6d1-418a-aed6-ccc5849daa1f.jpg?1562153645"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Wave of Reckoning", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/2/7/27d6655d-f55c-4bfc-a9c6-10232ebc707b.jpg?1562392689", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/2/7/27d6655d-f55c-4bfc-a9c6-10232ebc707b.jpg?1562392689"}, "reprint": true, "digital": false, "set_type": "commander"}, {"name": "Wave of Reckoning", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/b/0b101b5e-d478-4686-b3cf-bdc545f089e5.jpg?1562378964", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/b/0b101b5e-d478-4686-b3cf-bdc545f089e5.jpg?1562378964"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Whelming Wave", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/c/fcabd4c7-093f-4ef6-8b89-b08565c48e3c.jpg?1593091836", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/c/fcabd4c7-093f-4ef6-8b89-b08565c48e3c.jpg?1593091836"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Whipflare", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/5/a/5a7e6c10-d066-4967-932f-5b6c8d74568b.jpg?1562877860", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/5/a/5a7e6c10-d066-4967-932f-5b6c8d74568b.jpg?1562877860"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Whirlwind", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/1/8101bab4-ef93-451a-a24f-e1456c82837c.jpg?1562922208", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/1/8101bab4-ef93-451a-a24f-e1456c82837c.jpg?1562922208"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Widespread Brutality", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/7/97715d22-f432-4f67-b4ea-47b8fe6edca5.jpg?1557577331", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/7/97715d22-f432-4f67-b4ea-47b8fe6edca5.jpg?1557577331"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Wildfire", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/8/2/826fd527-9356-4eec-8542-781116f23eb7.jpg?1562241689", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/8/2/826fd527-9356-4eec-8542-781116f23eb7.jpg?1562241689"}, "reprint": true, "digital": false, "set_type": "core"}, {"name": "Wildfire", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/7/2/72d50972-4549-40cd-9c33-4b341333803f.jpg?1562919111", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/7/2/72d50972-4549-40cd-9c33-4b341333803f.jpg?1562919111"}, "reprint": true, "digital": false, "set_type": "expansion"}, {"name": "Wildfire", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/b/6/b69cfcb0-db68-4494-a3e1-7c2ca279fcf5.jpg?1562938018", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/b/6/b69cfcb0-db68-4494-a3e1-7c2ca279fcf5.jpg?1562938018"}, "reprint": false, "digital": false, "set_type": "starter"}, {"name": "Winds of Abandon", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/3/b/3bb17913-fe4d-4acd-9b75-71f5a90f898b.jpg?1562201278", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/3/b/3bb17913-fe4d-4acd-9b75-71f5a90f898b.jpg?1562201278"}, "reprint": false, "digital": false, "set_type": "draft_innovation"}, {"name": "Winds of Rath", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/6/a6d731b2-0113-4fd5-8b78-1aa1064bb4f5.jpg?1562055907", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/6/a6d731b2-0113-4fd5-8b78-1aa1064bb4f5.jpg?1562055907"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Windstorm", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/5/154dc31c-ac9d-4b78-b92b-e7bacc532915.jpg?1562782948", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/5/154dc31c-ac9d-4b78-b92b-e7bacc532915.jpg?1562782948"}, "reprint": true, "digital": false, "set_type": "expansion"}, {"name": "Windstorm", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/e/e/ee3768ec-bb3b-44dc-9fa3-7cb3d3ee9f8c.jpg?1562000543", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/e/e/ee3768ec-bb3b-44dc-9fa3-7cb3d3ee9f8c.jpg?1562000543"}, "reprint": false, "digital": false, "set_type": "core"}, {"name": "Winter Sky", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/f/af1035f3-3027-4a41-834c-55222b13c2bc.jpg?1562588224", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/f/af1035f3-3027-4a41-834c-55222b13c2bc.jpg?1562588224"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Witch's Vengeance", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/b/dbf16457-3444-4130-b220-834b69d9faa3.jpg?1572490276", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/b/dbf16457-3444-4130-b220-834b69d9faa3.jpg?1572490276"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Wrath of God", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/d/0d223e83-0d3c-459e-96f5-ba9227fe49dd.jpg?1562232378", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/d/0d223e83-0d3c-459e-96f5-ba9227fe49dd.jpg?1562232378"}, "reprint": true, "digital": false, "set_type": "core"}, {"name": "Wrath of God", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/d/7/d75d8204-6f9d-4a7a-bb8b-d51ac65a30fa.jpg?1562447853", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/d/7/d75d8204-6f9d-4a7a-bb8b-d51ac65a30fa.jpg?1562447853"}, "reprint": true, "digital": false, "set_type": "starter"}, {"name": "Wrath of God", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/2/a2788d69-6a3a-42f0-8736-cc6b57755ecd.jpg?1559591620", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/2/a2788d69-6a3a-42f0-8736-cc6b57755ecd.jpg?1559591620"}, "reprint": false, "digital": false, "set_type": "core"}, {"name": "Wrath of God", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/a/0adf3831-93d9-4995-b8c8-0d8c03fee872.jpg?1657809849", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/a/0adf3831-93d9-4995-b8c8-0d8c03fee872.jpg?1657809849"}, "flavor_name": "Shrinking Storm", "reprint": true, "digital": false, "set_type": "box"}, {"name": "Wrath of God", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/a/9/a91be77a-bd5b-485f-b5ca-0e6148c236ca.jpg?1619340331", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/a/9/a91be77a-bd5b-485f-b5ca-0e6148c236ca.jpg?1619340331"}, "reprint": true, "digital": false, "set_type": "masters"}, {"name": "Wrath of God", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/4/3/4351bf97-0b9e-44a5-bb7c-1098a683b18d.jpg?1562908574", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/4/3/4351bf97-0b9e-44a5-bb7c-1098a683b18d.jpg?1562908574"}, "reprint": true, "digital": false, "set_type": "masterpiece"}, {"name": "Wrath of God", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/9/8/98890cd7-ebd5-4fea-814e-4f612abfe3a5.jpg?1560576455", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/9/8/98890cd7-ebd5-4fea-814e-4f612abfe3a5.jpg?1560576455"}, "reprint": true, "digital": false, "set_type": "from_the_vault"}, {"name": "Wrath of God", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/1/0/10c5810f-83f6-43bf-8ece-047be42d7d58.jpg?1561756672", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/1/0/10c5810f-83f6-43bf-8ece-047be42d7d58.jpg?1561756672"}, "reprint": true, "digital": false, "set_type": "promo"}, {"name": "Yahenni's Expertise", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/f/2/f2f28735-122c-45ba-bde5-decfd9b11b32.jpg?1576381752", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/f/2/f2f28735-122c-45ba-bde5-decfd9b11b32.jpg?1576381752"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Yahenni's Expertise", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/f/0f4ddbb7-b317-44dc-bb3d-52f52c0a8f96.jpg?1562270938", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/f/0f4ddbb7-b317-44dc-bb3d-52f52c0a8f96.jpg?1562270938"}, "reprint": true, "digital": false, "set_type": "promo"}, {"name": "Yamabushi's Storm", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/a/0a5a930d-ae59-47e2-9b98-f703e308b5c0.jpg?1562757474", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/a/0a5a930d-ae59-47e2-9b98-f703e308b5c0.jpg?1562757474"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Zealous Persecution", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/7/07d8ae46-14ec-4878-ba8a-a47d4508c6d7.jpg?1562639500", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/7/07d8ae46-14ec-4878-ba8a-a47d4508c6d7.jpg?1562639500"}, "reprint": false, "digital": false, "set_type": "expansion"}, {"name": "Zealous Persecution", "image_uris": {"normal": "https://c1.scryfall.com/file/scryfall-cards/normal/front/0/0/00963993-ff4d-4cc6-a7e0-ed8adac40bfd.jpg?1562895154", "art_crop": "https://c1.scryfall.com/file/scryfall-cards/art_crop/front/0/0/00963993-ff4d-4cc6-a7e0-ed8adac40bfd.jpg?1562895154"}, "reprint": true, "digital": false, "set_type": "box"}]} \ No newline at end of file